input
stringlengths
159
2.05k
output
stringlengths
5
10.3k
task
stringclasses
1 value
schema
stringlengths
100
1.99k
Using the following JSON schema, generate a compatible JSON instance: {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "gempId": {"type": "string"}, "side": {"type": "string"}, "rarity": {"type": "string"}, "set": {"type": "string"}, "printings": {"type": "array", "items": {"type": "object", "properties": {"set": {"type": "string"}}, "required": ["set"]}}, "front": {"type": "object", "properties": {"title": {"type": "string"}, "imageUrl": {"type": "string"}, "type": {"type": "string"}, "subType": {"type": "string"}, "uniqueness": {"type": "string"}, "destiny": {"type": "string"}, "power": {"type": "string"}, "ability": {"type": "string"}, "deploy": {"type": "string"}, "forfeit": {"type": "string"}, "icons": {"type": "array", "items": {"type": "string"}}, "characteristics": {"type": "array", "items": {"type": "string"}}, "gametext": {"type": "string"}, "lore": {"type": "string"}}, "required": ["title", "imageUrl", "type", "subType", "uniqueness", "destiny", "power", "ability", "deploy", "forfeit", "icons", "characteristics", "gametext", "lore"]}, "pulledBy": {"type": "array", "items": {"type": "string"}}, "legacy": {"type": "boolean"}}, "required": ["id", "gempId", "side", "rarity", "set", "printings", "front", "pulledBy", "legacy"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"id" : 2228, "gempId" : "7_41", "side" : "Light", "rarity" : "U", "set" : "7", "printings" : [{"set" : "7"}], "front" : {"title" : "\u2022Sergeant Edian", "imageUrl" : "https://res.starwarsccg.org/cards/SpecialEdition-Light/large/sergeantedian.gif", "type" : "Character", "subType" : "Alien", "uniqueness" : "*", "destiny" : "3", "power" : "2", "ability" : "1", "deploy" : "2", "forfeit" : "3", "icons" : ["Warrior"], "characteristics" : ["Cloud City trooper", "trooper"], "gametext" : "Deploys free on Cloud City if your Lando is at a related location. Power +2 on Cloud City. When in a battle at a Cloud City site, adds 1 to your total battle destiny for each of your other Cloud City troopers in that battle.", "lore" : "Veteran of the Cloud City security forces. Loyal to Administrator Calrissian. Disdainful of the corruption of other Cloud City troopers."}, "pulledBy" : ["Lando Calrissian (V)"], "legacy" : false}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "gempId": {"type": "string"}, "side": {"type": "string"}, "rarity": {"type": "string"}, "set": {"type": "string"}, "printings": {"type": "array", "items": {"type": "object", "properties": {"set": {"type": "string"}}, "required": ["set"]}}, "front": {"type": "object", "properties": {"title": {"type": "string"}, "imageUrl": {"type": "string"}, "type": {"type": "string"}, "subType": {"type": "string"}, "uniqueness": {"type": "string"}, "destiny": {"type": "string"}, "power": {"type": "string"}, "ability": {"type": "string"}, "deploy": {"type": "string"}, "forfeit": {"type": "string"}, "icons": {"type": "array", "items": {"type": "string"}}, "characteristics": {"type": "array", "items": {"type": "string"}}, "gametext": {"type": "string"}, "lore": {"type": "string"}}, "required": ["title", "imageUrl", "type", "subType", "uniqueness", "destiny", "power", "ability", "deploy", "forfeit", "icons", "characteristics", "gametext", "lore"]}, "pulledBy": {"type": "array", "items": {"type": "string"}}, "legacy": {"type": "boolean"}}, "required": ["id", "gempId", "side", "rarity", "set", "printings", "front", "pulledBy", "legacy"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"manufacturer": {"type": "string"}, "devices": {"type": "array", "items": {"type": "object", "properties": {"manufacturer": {"type": "string"}, "market_name": {"type": "string"}, "codename": {"type": "string"}, "model": {"type": "string"}}, "required": ["manufacturer", "market_name", "codename", "model"]}}}, "required": ["manufacturer", "devices"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"manufacturer" : "Crema", "devices" : [{"manufacturer" : "", "market_name" : "CREMA0810T", "codename" : "crema0810t", "model" : "CREMA0810T"}]}
json_instruct
{"type": "object", "properties": {"manufacturer": {"type": "string"}, "devices": {"type": "array", "items": {"type": "object", "properties": {"manufacturer": {"type": "string"}, "market_name": {"type": "string"}, "codename": {"type": "string"}, "model": {"type": "string"}}, "required": ["manufacturer", "market_name", "codename", "model"]}}}, "required": ["manufacturer", "devices"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}}, "required": ["id", "name"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : 1073967641, "name" : "\u691c\u8a0e"}
json_instruct
{"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}}, "required": ["id", "name"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"name": {"type": "string"}, "keywords": {"type": "string"}, "description": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "version": {"type": "string"}, "frameworks": {"type": "string"}, "platforms": {"type": "string"}}, "required": ["name", "keywords", "description", "repository", "version", "frameworks", "platforms"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "TLI493D-Magnetic-Sensor", "keywords" : "3D, magnetic, sensor2go", "description" : "This library provides an Interface for Infineon's TLI493D Magnetic Sensor", "repository" : {"type" : "git", "url" : "https://github.com/Infineon/TLI493D-W2BW.git"}, "version" : "1.0.0", "frameworks" : "arduino", "platforms" : "infineonxmc"}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "keywords": {"type": "string"}, "description": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "version": {"type": "string"}, "frameworks": {"type": "string"}, "platforms": {"type": "string"}}, "required": ["name", "keywords", "description", "repository", "version", "frameworks", "platforms"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"code": {"type": "string"}, "messages": {"type": "string"}, "value": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "id_kecamatan": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "id_kecamatan", "name"]}}}, "required": ["code", "messages", "value"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"code" : "200", "messages" : "Successfully received data", "value" : [{"id" : "5316031001", "id_kecamatan" : "531603", "name" : "Natanage"}, {"id" : "5316031003", "id_kecamatan" : "531603", "name" : "Nagesapadhi"}, {"id" : "5316031005", "id_kecamatan" : "531603", "name" : "Nageoga"}, {"id" : "5316031007", "id_kecamatan" : "531603", "name" : "Wolopogo"}, {"id" : "5316031009", "id_kecamatan" : "531603", "name" : "Rega"}, {"id" : "5316031011", "id_kecamatan" : "531603", "name" : "Ratongamobo"}, {"id" : "5316031013", "id_kecamatan" : "531603", "name" : "Olakile"}, {"id" : "5316031021", "id_kecamatan" : "531603", "name" : "Natanage Timur"}, {"id" : "5316032002", "id_kecamatan" : "531603", "name" : "Rowa"}, {"id" : "5316032004", "id_kecamatan" : "531603", "name" : "Solo"}, {"id" : "5316032006", "id_kecamatan" : "531603", "name" : "Legederu"}, {"id" : "5316032008", "id_kecamatan" : "531603", "name" : "Nagerawe"}, {"id" : "5316032010", "id_kecamatan" : "531603", "name" : "Kelewae"}, {"id" : "5316032012", "id_kecamatan" : "531603", "name" : "Kelimado"}, {"id" : "5316032014", "id_kecamatan" : "531603", "name" : "Mulakoli"}, {"id" : "5316032015", "id_kecamatan" : "531603", "name" : "Wea Au"}, {"id" : "5316032016", "id_kecamatan" : "531603", "name" : "Raja"}, {"id" : "5316032017", "id_kecamatan" : "531603", "name" : "Wolowea"}, {"id" : "5316032018", "id_kecamatan" : "531603", "name" : "Gerodhere"}, {"id" : "5316032019", "id_kecamatan" : "531603", "name" : "Dhereisa"}, {"id" : "5316032020", "id_kecamatan" : "531603", "name" : "Rigi"}, {"id" : "5316032022", "id_kecamatan" : "531603", "name" : "Alorawe"}, {"id" : "5316032023", "id_kecamatan" : "531603", "name" : "Focolodorawe"}, {"id" : "5316032024", "id_kecamatan" : "531603", "name" : "Wolowea Timur"}, {"id" : "5316032025", "id_kecamatan" : "531603", "name" : "Wolowea Barat"}, {"id" : "5316032026", "id_kecamatan" : "531603", "name" : "Raja Timur"}, {"id" : "5316032027", "id_kecamatan" : "531603", "name" : "Raja Selatan"}]}
json_instruct
{"type": "object", "properties": {"code": {"type": "string"}, "messages": {"type": "string"}, "value": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "id_kecamatan": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "id_kecamatan", "name"]}}}, "required": ["code", "messages", "value"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"title": {"type": "string"}, "author": {"type": "string"}, "description": {"type": "string"}, "thumb": {"type": "string"}, "download": {"type": "string"}, "origin": {"type": "string"}}, "required": ["title", "author", "description", "thumb", "download", "origin"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"title" : "ReimuHakurei Hai Phut Hon Dance\uff11\uff18\u6b73\u4ee5\u4e0a\uff01", "author" : "maloxx", "description" : "\u970a\u5922\u3055\u3093\u304c\u8170\u3092\u304f\u306d\u304f\u306d\u3055\u305b\u306a\u304c\u3089\u7d33\u58eb\u30cf\u30f3\u30c9\u306b\u306a\u3093\u3084\u304b\u3093\u3084\u3055\u308c\u308b\u52d5\u753b\u3067\u3059\uff01<br>\u90e8\u5c4b\u3092\u660e\u308b\u304f\u3057\u3066\u96e2\u308c\u3066\u898b\u3066\u306d\uff01", "thumb" : "//i.iwara.tv/sites/default/files/styles/thumbnail/public/videos/thumbnails/2330242/thumbnail-2330242_0005.jpg?itok=4T1-49Uq", "download" : "https://ecchi.iwara.tv/api/video/bljr7uzr7mu3ldv0x", "origin" : "https://ecchi.iwara.tv/videos/bljr7uzr7mu3ldv0x"}
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#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"default.css": {"type": "string"}, "default.min.css": {"type": "string"}, "react-select.js": {"type": "string"}, "react-select.min.js": {"type": "string"}}, "required": ["default.css", "default.min.css", "react-select.js", "react-select.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"default.css" : "sha512-+5G8KzO0+A9M7NnaA8ZeiPjcsT0wAR+hO0WEX3MSSeHVBjtZ1EmCqYWQ+8hjC1zNBjSq0wXl/QTLGODZk6LPPg==", "default.min.css" : "sha512-kmsUkiabYLZybZP07qHMrHmwGtVmAgyAPRG+bsjrpZAkLoJI2M9lmNDkP5hcLZXQH4Hdc+4TZY80iodHHYQUaw==", "react-select.js" : "sha512-Z+8UPyNvVRH9PPuQv47AbtZHw4o9bjW2awuuHqvyd2SL13sYRF7OmBIrVjYqVrWRgDktVmqamYw+Bkr2e1gZZA==", "react-select.min.js" : "sha512-d6yiKbEUprOCeQLL/mSGpswqftLyLabmMb7tJEgSaIUGWeg1vLVXf79dPEsMw+ssmXLQtiAP2iGxXxpmypUGBQ=="}
json_instruct
{"type": "object", "properties": {"default.css": {"type": "string"}, "default.min.css": {"type": "string"}, "react-select.js": {"type": "string"}, "react-select.min.js": {"type": "string"}}, "required": ["default.css", "default.min.css", "react-select.js", "react-select.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"values": {"type": "array", "items": {"type": "string"}}}, "required": ["values"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"values" : ["#manic:air", "#minecraft:flowers", "#minecraft:leaves", "minecraft:tall_grass", "minecraft:grass", "minecraft:large_fern", "minecraft:fern", "minecraft:red_mushroom", "minecraft:brown_mushroom", "minecraft:crimson_fungus", "minecraft:warped_fungus", "minecraft:twisting_vines", "minecraft:twisting_vines_plant", "minecraft:weeping_vines", "minecraft:weeping_vines_plant", "minecraft:cave_vines", "minecraft:cave_vines_plant", "minecraft:vine", "minecraft:glow_lichen", "minecraft:mangrove_roots"]}
json_instruct
{"type": "object", "properties": {"values": {"type": "array", "items": {"type": "string"}}}, "required": ["values"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"id": {"type": "integer"}, "title": {"type": "array", "items": {"type": "string"}}, "description": {"type": "array", "items": {"type": "string"}}, "paths": {"type": "array", "items": {"type": "string"}}, "location": {"type": "string"}, "wayto": {"type": "object", "properties": {"5592": {"type": "string"}, "5593": {"type": "string"}, "5586": {"type": "string"}}, "required": ["5592", "5593", "5586"]}, "timeto": {"type": "object", "properties": {"5592": {"type": "number"}, "5593": {"type": "number"}, "5586": {"type": "number"}}, "required": ["5592", "5593", "5586"]}, "image": {"type": "string"}, "image_coords": {"type": "array", "items": {"type": "integer"}}, "tags": {"type": "array", "items": {"type": "string"}}}, "required": ["id", "title", "description", "paths", "location", "wayto", "timeto", "image", "image_coords", "tags"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : 5589, "title" : ["[Vornavis Caravansary, The Row]"], "description" : ["A large skin-covered wagon stands here with a short set of wooden stairs leading up to its door. It appears that the wagon has been here for some time, since morning-glories completely hide the wheels beneath a shroud of blossoms and greenery."], "paths" : ["Obvious paths: east, west"], "location" : "Solhaven", "wayto" : {"5592" : "climb stairs", "5593" : "east", "5586" : "west"}, "timeto" : {"5592" : 0.2, "5593" : 0.2, "5586" : 0.2}, "image" : "vo-caravansary-1264234799.png", "image_coords" : [486, 1052, 496, 1062], "tags" : ["some acantha leaf"]}
json_instruct
{"type": "object", "properties": {"id": {"type": "integer"}, "title": {"type": "array", "items": {"type": "string"}}, "description": {"type": "array", "items": {"type": "string"}}, "paths": {"type": "array", "items": {"type": "string"}}, "location": {"type": "string"}, "wayto": {"type": "object", "properties": {"5592": {"type": "string"}, "5593": {"type": "string"}, "5586": {"type": "string"}}, "required": ["5592", "5593", "5586"]}, "timeto": {"type": "object", "properties": {"5592": {"type": "number"}, "5593": {"type": "number"}, "5586": {"type": "number"}}, "required": ["5592", "5593", "5586"]}, "image": {"type": "string"}, "image_coords": {"type": "array", "items": {"type": "integer"}}, "tags": {"type": "array", "items": {"type": "string"}}}, "required": ["id", "title", "description", "paths", "location", "wayto", "timeto", "image", "image_coords", "tags"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "homepage": {"type": "string"}, "license": {"type": "string"}, "version": {"type": "string"}, "dependencies": {"type": "object", "properties": {"bootstrap": {"type": "string"}, "angular-bootstrap": {"type": "string"}, "jquery": {"type": "string"}, "angular-animate": {"type": "string"}, "angular-cookies": {"type": "string"}, "angular-touch": {"type": "string"}, "angular-sanitize": {"type": "string"}, "angular-route": {"type": "string"}, "angular-resource": {"type": "string"}, "angular-update-meta": {"type": "string"}, "angular-ui-notification": {"type": "string"}, "ngclipboard": {"type": "string"}, "summernote": {"type": "string"}, "angular-summernote": {"type": "string"}, "angular-ui-router": {"type": "string"}, "angular": {"type": "string"}, "angular-nvd3": {"type": "string"}, "angular-material": {"type": "string"}, "angular-mocks": {"type": "string"}, "ngstorage": {"type": "string"}}, "required": ["bootstrap", "angular-bootstrap", "jquery", "angular-animate", "angular-cookies", "angular-touch", "angular-sanitize", "angular-route", "angular-resource", "angular-update-meta", "angular-ui-notification", "ngclipboard", "summernote", "angular-summernote", "angular-ui-router", "angular", "angular-nvd3", "angular-material", "angular-mocks", "ngstorage"]}, "devDependencies": {"type": "object", "properties": {}, "required": []}, "resolutions": {"type": "object", "properties": {"angular": {"type": "string"}}, "required": ["angular"]}}, "required": ["name", "description", "homepage", "license", "version", "dependencies", "devDependencies", "resolutions"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "angular-material-dashboard", "description" : "Material Design Angular Admin Dashboard", "homepage" : "https://github.com/ihure/slackchat", "license" : "MIT", "version" : "1.3.0", "dependencies" : {"bootstrap" : "3", "angular-bootstrap" : "^2.2.0", "jquery" : "~2.1.1", "angular-animate" : "^1.5.0", "angular-cookies" : "^1.5.0", "angular-touch" : "^1.5.0", "angular-sanitize" : "^1.5.0", "angular-route" : "^1.4.0", "angular-resource" : "^1.4.0", "angular-update-meta" : "^1.9.0", "angular-ui-notification" : "^0.2.0", "ngclipboard" : "^1.1.1", "summernote" : "^0.8.2", "angular-summernote" : "^0.8.1", "angular-ui-router" : "^0.2.18", "angular" : "^1.5.0", "angular-nvd3" : "1.0.0-rc.2", "angular-material" : "^1.0.6", "angular-mocks" : "^1.5.0", "ngstorage" : "^0.3.11"}, "devDependencies" : {}, "resolutions" : {"angular" : "1.5.8"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "homepage": {"type": "string"}, "license": {"type": "string"}, "version": {"type": "string"}, "dependencies": {"type": "object", "properties": {"bootstrap": {"type": "string"}, "angular-bootstrap": {"type": "string"}, "jquery": {"type": "string"}, "angular-animate": {"type": "string"}, "angular-cookies": {"type": "string"}, "angular-touch": {"type": "string"}, "angular-sanitize": {"type": "string"}, "angular-route": {"type": "string"}, "angular-resource": {"type": "string"}, "angular-update-meta": {"type": "string"}, "angular-ui-notification": {"type": "string"}, "ngclipboard": {"type": "string"}, "summernote": {"type": "string"}, "angular-summernote": {"type": "string"}, "angular-ui-router": {"type": "string"}, "angular": {"type": "string"}, "angular-nvd3": {"type": "string"}, "angular-material": {"type": "string"}, "angular-mocks": {"type": "string"}, "ngstorage": {"type": "string"}}, "required": ["bootstrap", "angular-bootstrap", "jquery", "angular-animate", "angular-cookies", "angular-touch", "angular-sanitize", "angular-route", "angular-resource", "angular-update-meta", "angular-ui-notification", "ngclipboard", "summernote", "angular-summernote", "angular-ui-router", "angular", "angular-nvd3", "angular-material", "angular-mocks", "ngstorage"]}, "devDependencies": {"type": "object", "properties": {}, "required": []}, "resolutions": {"type": "object", "properties": {"angular": {"type": "string"}}, "required": ["angular"]}}, "required": ["name", "description", "homepage", "license", "version", "dependencies", "devDependencies", "resolutions"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "array", "items": {"type": "object", "properties": {"namaKab": {"type": "string"}, "originalFilename": {"type": "string"}, "namaPartai": {"type": "string"}, "id": {"type": "integer"}, "noUrut": {"type": "integer"}, "nama": {"type": "string"}, "stringJenisKelamin": {"type": "string"}}, "required": ["namaKab", "originalFilename", "namaPartai", "id", "noUrut", "nama", "stringJenisKelamin"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"namaKab" : "MINAHASA TENGGARA", "originalFilename" : "1 Drs.Tavif Watuseke.jpg", "namaPartai" : "PARTAI DEMOKRASI INDONESIA PERJUANGAN", "id" : 245316, "noUrut" : 1, "nama" : "Drs. TAVIF WATUSEKE", "stringJenisKelamin" : "Laki-Laki"}, {"namaKab" : "MINAHASA TENGGARA", "originalFilename" : "ARTLY KOUNTUR, S.Sos.jpg", "namaPartai" : "PARTAI DEMOKRASI INDONESIA PERJUANGAN", "id" : 246272, "noUrut" : 2, "nama" : "ARTLY KOUNTUR, S.Sos", "stringJenisKelamin" : "Laki-Laki"}, {"namaKab" : "MINAHASA TENGGARA", "originalFilename" : "MEISKE MANDANG.jpg", "namaPartai" : "PARTAI DEMOKRASI INDONESIA PERJUANGAN", "id" : 246679, "noUrut" : 3, "nama" : "MEISKE MANDANG, Amd.Kep", "stringJenisKelamin" : "Perempuan"}, {"namaKab" : "MINAHASA TENGGARA", "originalFilename" : "71.JPG", "namaPartai" : "PARTAI DEMOKRASI INDONESIA PERJUANGAN", "id" : 247315, "noUrut" : 4, "nama" : "CHRIS S. RUMANSI, SP. M.Si", "stringJenisKelamin" : "Laki-Laki"}, {"namaKab" : "MINAHASA TENGGARA", "originalFilename" : "WAHYUNI LAKODI.jpg", "namaPartai" : "PARTAI DEMOKRASI INDONESIA PERJUANGAN", "id" : 247812, "noUrut" : 5, "nama" : "WAHYUNI LAKODI", "stringJenisKelamin" : "Perempuan"}, {"namaKab" : "MINAHASA TENGGARA", "originalFilename" : "_DSC0358 $02.jpg", "namaPartai" : "PARTAI DEMOKRASI INDONESIA PERJUANGAN", "id" : 248120, "noUrut" : 6, "nama" : "STERY WURANGIAN, S.Pd", "stringJenisKelamin" : "Perempuan"}, {"namaKab" : "MINAHASA TENGGARA", "originalFilename" : "DSCF6271.JPG", "namaPartai" : "PARTAI DEMOKRASI INDONESIA PERJUANGAN", "id" : 248663, "noUrut" : 7, "nama" : "RAKIMIN IBRAHIM", "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#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"schema_version": {"type": "string"}, "id": {"type": "string"}, "modified": {"type": "string"}, "published": {"type": "string"}, "aliases": {"type": "array", "items": {"type": "string"}}, "summary": {"type": "string"}, "details": {"type": "string"}, "severity": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "score": {"type": "string"}}, "required": ["type", "score"]}}, "affected": {"type": "array", "items": {"type": "object", "properties": {"package": {"type": "object", "properties": {"ecosystem": {"type": "string"}, "name": {"type": "string"}}, "required": ["ecosystem", "name"]}, "ranges": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "events": {"type": "array", "items": {"type": "object", "properties": {"introduced": {"type": "string"}}, "required": ["introduced"]}}}, "required": ["type", "events"]}}}, "required": ["package", "ranges"]}}, "references": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}}, "database_specific": {"type": "object", "properties": {"cwe_ids": {"type": "array", "items": {"type": "string"}}, "severity": {"type": "string"}, "github_reviewed": {"type": "boolean"}}, "required": ["cwe_ids", "severity", "github_reviewed"]}}, "required": ["schema_version", "id", "modified", "published", "aliases", "summary", "details", "severity", "affected", "references", "database_specific"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"schema_version" : "1.2.0", "id" : "GHSA-44g9-w23c-5rw7", "modified" : "2021-09-23T20:57:48Z", "published" : "2020-08-31T22:53:54Z", "aliases" : ["CVE-2014-8883"], "summary" : "Directory Traversal in nhouston", "details" : "All versions of the static file server module nhouston are vulnerable to directory traversal. An attacker can provide input such as `../` to read files outside of the served directory.\n\n\n## Recommendation\n\nIt is recommended that a different module be used, as we have been unable to reacher the maintainer of this module. We will continue to reach out to them, and if an update becomes available that fixes the issue, we will update this advisory accordingly.", "severity" : [{"type" : "CVSS_V3", "score" : "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:N/A:N"}], "affected" : [{"package" : {"ecosystem" : "npm", "name" : "nhouston"}, "ranges" : [{"type" : "ECOSYSTEM", "events" : [{"introduced" : "0.0.0"}]}]}], "references" : [{"type" : "ADVISORY", "url" : "https://nvd.nist.gov/vuln/detail/CVE-2014-8883"}, {"type" : "WEB", "url" : "https://snyk.io/vuln/npm:nhouston:20141114"}, {"type" : "WEB", "url" : "https://www.npmjs.com/advisories/25"}, {"type" : "WEB", "url" : "http://en.wikipedia.org/wiki/Directory_traversal_attack"}], "database_specific" : {"cwe_ids" : ["CWE-23"], "severity" : "MODERATE", "github_reviewed" : true}}
json_instruct
{"type": "object", "properties": {"schema_version": {"type": "string"}, "id": {"type": "string"}, "modified": {"type": "string"}, "published": {"type": "string"}, "aliases": {"type": "array", "items": {"type": "string"}}, "summary": {"type": "string"}, "details": {"type": "string"}, "severity": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "score": {"type": "string"}}, "required": ["type", "score"]}}, "affected": {"type": "array", "items": {"type": "object", "properties": {"package": {"type": "object", "properties": {"ecosystem": {"type": "string"}, "name": {"type": "string"}}, "required": ["ecosystem", "name"]}, "ranges": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "events": {"type": "array", "items": {"type": "object", "properties": {"introduced": {"type": "string"}}, "required": ["introduced"]}}}, "required": ["type", "events"]}}}, "required": ["package", "ranges"]}}, "references": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}}, "database_specific": {"type": "object", "properties": {"cwe_ids": {"type": "array", "items": {"type": "string"}}, "severity": {"type": "string"}, "github_reviewed": {"type": "boolean"}}, "required": ["cwe_ids", "severity", "github_reviewed"]}}, "required": ["schema_version", "id", "modified", "published", "aliases", "summary", "details", "severity", "affected", "references", "database_specific"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"timeago.full.min.js": {"type": "string"}, "timeago.min.js": {"type": "string"}}, "required": ["timeago.full.min.js", "timeago.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"timeago.full.min.js" : "sha256-20gY8yKYM7Q/NsIIx1qMRmkin6RW7IWOVoo+uQiWqWo=", "timeago.min.js" : "sha256-hTBN9RO1MU9jK9jck3m2TFmHAfuKM5Ijd9cwWfVqQOk="}
json_instruct
{"type": "object", "properties": {"timeago.full.min.js": {"type": "string"}, "timeago.min.js": {"type": "string"}}, "required": ["timeago.full.min.js", "timeago.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"APP_NAME": {"type": "string"}, "RPC": {"type": "object", "properties": {}, "required": []}, "SIGNER_URL": {"type": "string"}, "MIN_REQUIRED_SIGNER_VERSION": {"type": "string"}}, "required": ["APP_NAME", "RPC", "SIGNER_URL", "MIN_REQUIRED_SIGNER_VERSION"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"APP_NAME" : "manta-web-app", "RPC" : {}, "SIGNER_URL" : "http://localhost:29987/", "MIN_REQUIRED_SIGNER_VERSION" : "0.5.0"}
json_instruct
{"type": "object", "properties": {"APP_NAME": {"type": "string"}, "RPC": {"type": "object", "properties": {}, "required": []}, "SIGNER_URL": {"type": "string"}, "MIN_REQUIRED_SIGNER_VERSION": {"type": "string"}}, "required": ["APP_NAME", "RPC", "SIGNER_URL", "MIN_REQUIRED_SIGNER_VERSION"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"args": {"type": "array", "items": {"type": "string"}}, "kwargs": {"type": "object", "properties": {"update": {"type": "boolean"}, "upgrade": {"type": "boolean"}}, "required": ["update", "upgrade"]}, "facts": {"type": "object", "properties": {"pkgin.PkginPackages": {"type": "object", "properties": {"curl": {"type": "array", "items": {"type": "string"}}}, "required": ["curl"]}}, "required": ["pkgin.PkginPackages"]}, "commands": {"type": "array", "items": {"type": "string"}}, "idempotent": {"type": "boolean"}, "disable_idempotent_warning_reason": {"type": "string"}}, "required": ["args", "kwargs", "facts", "commands", "idempotent", "disable_idempotent_warning_reason"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"args" : ["curl"], "kwargs" : {"update" : true, "upgrade" : true}, "facts" : {"pkgin.PkginPackages" : {"curl" : ["1"]}}, "commands" : ["pkgin -y update", "pkgin -y upgrade"], "idempotent" : false, "disable_idempotent_warning_reason" : "package upgrades are always executed"}
json_instruct
{"type": "object", "properties": {"args": {"type": "array", "items": {"type": "string"}}, "kwargs": {"type": "object", "properties": {"update": {"type": "boolean"}, "upgrade": {"type": "boolean"}}, "required": ["update", "upgrade"]}, "facts": {"type": "object", "properties": {"pkgin.PkginPackages": {"type": "object", "properties": {"curl": {"type": "array", "items": {"type": "string"}}}, "required": ["curl"]}}, "required": ["pkgin.PkginPackages"]}, "commands": {"type": "array", "items": {"type": "string"}}, "idempotent": {"type": "boolean"}, "disable_idempotent_warning_reason": {"type": "string"}}, "required": ["args", "kwargs", "facts", "commands", "idempotent", "disable_idempotent_warning_reason"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"id": {"type": "string"}, "expression": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}}, "required": ["id"]}}}, "required": ["id", "expression"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : "http://data.doremus.org/performance/1a6b7c42-883a-37f4-b763-e8d3015b91df", "expression" : [{"id" : "http://data.doremus.org/expression/46682d6b-c0e1-3017-b854-8c1429d35b85"}, {"id" : "http://data.doremus.org/expression/9f803572-217e-3682-8cdc-48678a6f9086"}, {"id" : "http://data.doremus.org/expression/79f0ec77-04c3-3efa-aa1d-9a328cfab5ef"}, {"id" : "http://data.doremus.org/expression/8ee764e3-73f8-3c9a-a0c4-9e4088f3063a"}, {"id" : "http://data.doremus.org/expression/153d9c2b-750f-3a1c-a5fd-6b2f9eb8e852"}, {"id" : "http://data.doremus.org/expression/700abeae-b636-38a9-ac22-acb8ae084a2e"}, {"id" : "http://data.doremus.org/expression/7b84370d-367f-3561-bb23-9da1613f7a4e"}, {"id" : "http://data.doremus.org/expression/8cd6772a-9608-3231-bb5a-6a5d32ef5860"}, {"id" : "http://data.doremus.org/expression/552049f9-3b75-300b-9d36-2fd1c04da8bc"}, {"id" : "http://data.doremus.org/expression/731b90de-6741-3ea5-b542-f90df20cd456"}, {"id" : "http://data.doremus.org/expression/064eb93f-ce0e-303e-96ca-6ba376ebc346"}, {"id" : "http://data.doremus.org/expression/5e1ca19c-300e-3aaa-afce-5a2de3bb517b"}, {"id" : "http://data.doremus.org/expression/1b14c292-a577-3bad-bc3e-e552dcfd0e97"}, {"id" : "http://data.doremus.org/expression/841670e2-be9e-3849-aa69-fb7637a5494f"}, {"id" : "http://data.doremus.org/expression/b9b8864d-ed82-356d-96e9-ae4bc920ec08"}, {"id" : "http://data.doremus.org/expression/9251c513-dfb6-3c18-a65d-85c0c4ff5bcf"}]}
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "expression": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}}, "required": ["id"]}}}, "required": ["id", "expression"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "directories": {"type": "object", "properties": {"lib": {"type": "string"}, "test": {"type": "string"}}, "required": ["lib", "test"]}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}}, "required": ["name", "version", "description", "main", "directories", "scripts", "repository", "keywords", "author", "license"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "regexp-stack", "version" : "1.0.0", "description" : "This library allows to run regular expressions.", "main" : "lib/index.js", "directories" : {"lib" : "lib", "test" : "test"}, "scripts" : {"test" : "node test/run-all.js"}, "repository" : {"type" : "git", "url" : "github.com/ezaca/regexp-stack"}, "keywords" : ["RegExp", "regular-expression", "stack"], "author" : "Eliakim Zacarias", "license" : "MIT"}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "directories": {"type": "object", "properties": {"lib": {"type": "string"}, "test": {"type": "string"}}, "required": ["lib", "test"]}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}}, "required": ["name", "version", "description", "main", "directories", "scripts", "repository", "keywords", "author", "license"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"courseCode": {"type": "string"}, "courseCredit": {"type": "string"}, "description": {"type": "string"}, "faculty": {"type": "string"}, "prereqTree": {"type": "object", "properties": {"or": {"type": "array", "items": {"type": "object", "properties": {"and": {"type": "array", "items": {"type": "object", "properties": {"or": {"type": "array", "items": {"type": "string"}}}, "required": ["or"]}}}, "required": ["and"]}}}, "required": ["or"]}, "title": {"type": "string"}}, "required": ["courseCode", "courseCredit", "description", "faculty", "prereqTree", "title"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"courseCode" : "LL6283V", "courseCredit" : "5", "description" : "Advancements in computer science have made it possible to deploy information technology to address legal problems. Improved legal searches, fraud detection, electronic discovery, digital rights management, and automated takedowns are only the beginning. We are beginning to see natural language processing, machine learning and data mining technologies deployed in contract formation, electronic surveillance, autonomous machines and even decision making. This course examines the basis behind these technologies, deploys them in basic scenarios, studies the reasons for their acceptance or rejection, and analyses them for their benefits, limitations and dangers.", "faculty" : "Law", "prereqTree" : {"or" : [{"and" : [{"or" : ["LL4076", "LL5076", "LL6076"]}, {"or" : ["LL4076V", "LL5076V", "LL6076V"]}]}, {"and" : [{"or" : ["LL4077", "LL5077", "LL6077"]}, {"or" : ["LL4077V", "LL5077V", "LL6077V"]}]}]}, "title" : "Artificial Intelligence, Information Science & Law"}
json_instruct
{"type": "object", "properties": {"courseCode": {"type": "string"}, "courseCredit": {"type": "string"}, "description": {"type": "string"}, "faculty": {"type": "string"}, "prereqTree": {"type": "object", "properties": {"or": {"type": "array", "items": {"type": "object", "properties": {"and": {"type": "array", "items": {"type": "object", "properties": {"or": {"type": "array", "items": {"type": "string"}}}, "required": ["or"]}}}, "required": ["and"]}}}, "required": ["or"]}, "title": {"type": "string"}}, "required": ["courseCode", "courseCredit", "description", "faculty", "prereqTree", "title"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"titletag": {"type": "string"}, "metadescription": {"type": "string"}, "content": {"type": "string"}, "team": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "position": {"type": "string"}, "photo": {"type": "string"}}, "required": ["name", "position", "photo"]}}, "body": {"type": "string"}}, "required": ["titletag", "metadescription", "content", "team", "body"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"titletag" : "Impressum Title Crazy", "metadescription" : "Impressum description dasdasd dasdasd asdas dasdasd dasd asd dasd asdasdsd sdf sdfsdf sdfsd dfdfd df fdf sdfgdfsg dsfgd sgdsg dfgdf gdfgdffffffffgdfgdfg dfgdsfds fsd,f bsfmnsdbfm nsdbfmsdn bsm,dfnb m,fnbasm,fb as,mfb ,mn mdbfdnsbfmnsdbf smnfbsn bdndfds fsd f", "content" : "# Impressum Content\n\n## Cooler Inhalt hier\n\n\n\n```html\n<a href=\"#\" target=\"_blank\">lol</a>\n```", "team" : [{"name" : "David Schubert", "position" : "St\u00fcrmer", "photo" : "/img/uploads/david_schubert.jpg"}, {"name" : "Mischa Kowisk", "position" : "Abwehr", "photo" : "/img/uploads/68da12fa1df4c876004b04b8b47c419a228d8500.png"}], "body" : "# Traurige Welt\n## Wieso?\nNa weil hier alles so krass ist"}
json_instruct
{"type": "object", "properties": {"titletag": {"type": "string"}, "metadescription": {"type": "string"}, "content": {"type": "string"}, "team": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "position": {"type": "string"}, "photo": {"type": "string"}}, "required": ["name", "position", "photo"]}}, "body": {"type": "string"}}, "required": ["titletag", "metadescription", "content", "team", "body"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following 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": {"start-date": {"type": "string"}, "name": {"type": "string"}, "point": {"type": "string"}, "listed-building": {"type": "string"}, "documentation-url": {"type": "string"}, "listed-building-grade": {"type": "string"}, "slug": {"type": "string"}, "entry-date": {"type": "string"}}, "required": ["start-date", "name", "point", "listed-building", "documentation-url", "listed-building-grade", "slug", "entry-date"]}}, "required": ["type", "geometry", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"type" : "Feature", "geometry" : {"type" : "Point", "coordinates" : [-0.648905, 51.29438]}, "properties" : {"start-date" : "1984-12-13", "name" : "STANLEY MEMORIAL, 60 YARDS EAST OF CHURCH OF ST MICHAEL AND ALL ANGELS", "point" : "POINT (-0.648905 51.294380)", "listed-building" : "1029623", "documentation-url" : "https://historicengland.org.uk/listing/the-list/list-entry/1029623", "listed-building-grade" : "II", "slug" : "/listed-building/1029623", "entry-date" : "2021-05-28"}}
json_instruct
{"type": "object", "properties": {"type": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "number"}}}, "required": ["type", "coordinates"]}, "properties": {"type": "object", "properties": {"start-date": {"type": "string"}, "name": {"type": "string"}, "point": {"type": "string"}, "listed-building": {"type": "string"}, "documentation-url": {"type": "string"}, "listed-building-grade": {"type": "string"}, "slug": {"type": "string"}, "entry-date": {"type": "string"}}, "required": ["start-date", "name", "point", "listed-building", "documentation-url", "listed-building-grade", "slug", "entry-date"]}}, "required": ["type", "geometry", "properties"], "$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"}, "type": {"type": "string"}, "description": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}}}, "required": ["name", "type", "description", "authors"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "what3words/what3words", "type" : "magento-module", "description" : "What3Words Magento1 Integration", "authors" : [{"name" : "Vicki Tingle", "email" : "vicki@gene.co.uk"}]}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "type": {"type": "string"}, "description": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}}}, "required": ["name", "type", "description", "authors"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"contacts": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}, "designation": {"type": "string"}, "mobile": {"type": "array", "items": {}}}, "required": ["name", "email", "designation", "mobile"]}}, "guideStarURL": {"type": "string"}, "name": {"type": "string"}, "primaryEmail": {"type": "string"}, "website": {"type": "string"}, "organisationType": {"type": "array", "items": {"type": "string"}}, "telephone": {"type": "array", "items": {"type": "string"}}, "mainAddrress": {"type": "object", "properties": {"state": {"type": "string"}, "address": {"type": "array", "items": {"type": "string"}}}, "required": ["state", "address"]}}, "required": ["contacts", "guideStarURL", "name", "primaryEmail", "website", "organisationType", "telephone", "mainAddrress"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"contacts" : [{"name" : "SOORADA NOOKARAJU", "email" : "", "designation" : "", "mobile" : []}], "guideStarURL" : "http://www.guidestarindia.org/Summary.aspx?CCReg=7108", "name" : "RURAL YOUTH DEVELOPMENT SOCIETY", "primaryEmail" : "rydsrambilli@gmail.com", "website" : "www.ryds", "organisationType" : ["Direct Service"], "telephone" : ["918499911409"], "mainAddrress" : {"state" : "Andhra Pradesh", "address" : ["Vadanarasapuram", "Rambilli", "Visakhapatnam", "Andhra Pradesh", "531035"]}}
json_instruct
{"type": "object", "properties": {"contacts": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}, "designation": {"type": "string"}, "mobile": {"type": "array", "items": {}}}, "required": ["name", "email", "designation", "mobile"]}}, "guideStarURL": {"type": "string"}, "name": {"type": "string"}, "primaryEmail": {"type": "string"}, "website": {"type": "string"}, "organisationType": {"type": "array", "items": {"type": "string"}}, "telephone": {"type": "array", "items": {"type": "string"}}, "mainAddrress": {"type": "object", "properties": {"state": {"type": "string"}, "address": {"type": "array", "items": {"type": "string"}}}, "required": ["state", "address"]}}, "required": ["contacts", "guideStarURL", "name", "primaryEmail", "website", "organisationType", "telephone", "mainAddrress"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "array", "items": {"type": "object", "properties": {"fees": {"type": "integer"}, "ts": {"type": "string"}, "txid": {"type": "string"}, "block": {"type": "integer"}, "in": {"type": "array", "items": {"type": "object", "properties": {"coinbase": {"type": "string"}}, "required": ["coinbase"]}}, "sent": {"type": "integer"}, "out": {"type": "array", "items": {"type": "object", "properties": {"addr": {"type": "string"}, "value": {"type": "integer"}, "spent": {"type": "string"}}, "required": ["addr", "value", "spent"]}}}, "required": ["fees", "ts", "txid", "block", "in", "sent", "out"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"fees" : -2500000000, "ts" : "1535598565", "txid" : "449c0d771caacf86b5d5c52925945207b6849d92032f1a5f0317ce42acaf558f", "block" : 1425200, "in" : [{"coinbase" : "0330bf1504e55f875b08fabe6d6d868bfe8feea5af1fba6c461ca6759e9e1a2659a3da214b86000000000000010001000000000000005800050c3e036c0c0d2f6e6f64655374726174756d2f"}], "sent" : 2500000000, "out" : [{"addr" : "MKTpKytcNxunXXQFAr1iNvkHWTNLog6oGn", "value" : 2500000000, "spent" : "c8677cda2769197dbaab8338db4aa3472cb1a49e25b2bb4a8d2665d78b6f3527"}]}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"fees": {"type": "integer"}, "ts": {"type": "string"}, "txid": {"type": "string"}, "block": {"type": "integer"}, "in": {"type": "array", "items": {"type": "object", "properties": {"coinbase": {"type": "string"}}, "required": ["coinbase"]}}, "sent": {"type": "integer"}, "out": {"type": "array", "items": {"type": "object", "properties": {"addr": {"type": "string"}, "value": {"type": "integer"}, "spent": {"type": "string"}}, "required": ["addr", "value", "spent"]}}}, "required": ["fees", "ts", "txid", "block", "in", "sent", "out"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"city": {"type": "string"}, "name": {"type": "string"}, "age": {"type": "string"}}, "required": ["city", "name", "age"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"city" : "paris", "name" : "jon doe paris", "age" : "20"}
json_instruct
{"type": "object", "properties": {"city": {"type": "string"}, "name": {"type": "string"}, "age": {"type": "string"}}, "required": ["city", "name", "age"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"id": {"type": "string"}, "expression": {"type": "array", "items": {"type": "object", "properties": {"composer": {"type": "string"}, "id": {"type": "string"}}, "required": ["composer", "id"]}}}, "required": ["id", "expression"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : "http://data.doremus.org/performance/2d93dff3-e9a4-3c47-88f9-bb3b9bf543c2", "expression" : [{"composer" : "http://data.doremus.org/artist/34943da5-d068-3ada-bd4d-3db0c66c8a7d", "id" : "http://data.doremus.org/expression/b6a96021-bc31-3232-804b-b6ce54042762"}, {"composer" : "http://data.doremus.org/artist/34943da5-d068-3ada-bd4d-3db0c66c8a7d", "id" : "http://data.doremus.org/expression/35d61bdc-d8eb-3ae7-933e-b599f85ce9e2"}, {"composer" : "http://data.doremus.org/artist/34943da5-d068-3ada-bd4d-3db0c66c8a7d", "id" : "http://data.doremus.org/expression/53323a89-208f-395e-b87f-f72d1be57091"}, {"composer" : "http://data.doremus.org/artist/34943da5-d068-3ada-bd4d-3db0c66c8a7d", "id" : "http://data.doremus.org/expression/fa34e6c4-4b21-35d2-b015-75eafc63349e"}, {"composer" : "http://data.doremus.org/artist/34943da5-d068-3ada-bd4d-3db0c66c8a7d", "id" : "http://data.doremus.org/expression/54b3c0d9-7a19-35d5-af92-b29964b1a1e8"}, {"composer" : "http://data.doremus.org/artist/34943da5-d068-3ada-bd4d-3db0c66c8a7d", "id" : "http://data.doremus.org/expression/dedb395d-49ba-3997-b205-ad4612031e7c"}, {"composer" : "http://data.doremus.org/artist/34943da5-d068-3ada-bd4d-3db0c66c8a7d", "id" : "http://data.doremus.org/expression/81d2ec7f-a6e7-3a6b-aabb-32501b7cc0c3"}]}
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "expression": {"type": "array", "items": {"type": "object", "properties": {"composer": {"type": "string"}, "id": {"type": "string"}}, "required": ["composer", "id"]}}}, "required": ["id", "expression"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"source": {"type": "string"}, "app": {"type": "string"}, "targets": {"type": "object", "properties": {"app": {"type": "object", "properties": {}, "required": []}}, "required": ["app"]}}, "required": ["source", "app", "targets"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"source" : "index.html", "app" : "dist/index.html", "targets" : {"app" : {}}}
json_instruct
{"type": "object", "properties": {"source": {"type": "string"}, "app": {"type": "string"}, "targets": {"type": "object", "properties": {"app": {"type": "object", "properties": {}, "required": []}}, "required": ["app"]}}, "required": ["source", "app", "targets"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"localities": {"type": "array", "items": {"type": "string"}}, "state": {"type": "string"}, "postal_code": {"type": "string"}, "locality": {"type": "string"}, "lat": {"type": "number"}, "region": {"type": "object", "properties": {"fips": {"type": "string"}, "abbr": {"type": "string"}, "name": {"type": "string"}}, "required": ["fips", "abbr", "name"]}, "city": {"type": "string"}, "type": {"type": "string"}, "lng": {"type": "number"}, "counties": {"type": "array", "items": {"type": "object", "properties": {"fips": {"type": "string"}, "name": {"type": "string"}}, "required": ["fips", "name"]}}}, "required": ["localities", "state", "postal_code", "locality", "lat", "region", "city", "type", "lng", "counties"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"localities" : ["Newton, IL", "Wakefield, IL", "Bogota, IL", "Wendelin, IL"], "state" : "IL", "postal_code" : "62448", "locality" : "Newton, IL", "lat" : 38.968356, "region" : {"fips" : "17", "abbr" : "IL", "name" : "Illinois"}, "city" : "Newton", "type" : "STANDARD", "lng" : -88.179181, "counties" : [{"fips" : "025", "name" : "Clay County"}, {"fips" : "079", "name" : "Jasper County"}, {"fips" : "159", "name" : "Richland County"}]}
json_instruct
{"type": "object", "properties": {"localities": {"type": "array", "items": {"type": "string"}}, "state": {"type": "string"}, "postal_code": {"type": "string"}, "locality": {"type": "string"}, "lat": {"type": "number"}, "region": {"type": "object", "properties": {"fips": {"type": "string"}, "abbr": {"type": "string"}, "name": {"type": "string"}}, "required": ["fips", "abbr", "name"]}, "city": {"type": "string"}, "type": {"type": "string"}, "lng": {"type": "number"}, "counties": {"type": "array", "items": {"type": "object", "properties": {"fips": {"type": "string"}, "name": {"type": "string"}}, "required": ["fips", "name"]}}}, "required": ["localities", "state", "postal_code", "locality", "lat", "region", "city", "type", "lng", "counties"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"nom": {"type": "string"}, "dpt": {"type": "string"}, "inscrits": {"type": "integer"}, "abs": {"type": "integer"}, "votants": {"type": "integer"}, "blancs": {"type": "integer"}, "nuls": {"type": "integer"}, "exp": {"type": "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" : "Estigarde", "dpt" : "Landes", "inscrits" : 81, "abs" : 15, "votants" : 66, "blancs" : 8, "nuls" : 4, "exp" : 54, "res" : [{"panneau" : "1", "voix" : 32}, {"panneau" : "2", "voix" : 22}]}
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#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"app": {"type": "string"}, "fs-license": {"type": "string"}, "img": {"type": "string"}, "freesurfer-dir": {"type": "string"}, "bidsargs": {"type": "object", "properties": {"nthreads": {"type": "integer"}, "omp-nthreads": {"type": "integer"}, "use-syn-sdc": {"type": "string"}}, "required": ["nthreads", "omp-nthreads", "use-syn-sdc"]}}, "required": ["app", "fs-license", "img", "freesurfer-dir", "bidsargs"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"app" : "FMRIPREP", "fs-license" : "/KIMEL/tigrlab/quarantine/freesurfer/6.0.0/build/license.txt", "img" : "/KIMEL/tigrlab/archive/code/containers/FMRIPREP/poldracklab_fmriprep_1.1.1-2018-06-07-2f08547a0732.img", "freesurfer-dir" : "/KIMEL/tigrlab/scratch/jjeyachandra/test_env/archive/data/SPINS/pipelines/freesurfer", "bidsargs" : {"nthreads" : 8, "omp-nthreads" : 4, "use-syn-sdc" : "True"}}
json_instruct
{"type": "object", "properties": {"app": {"type": "string"}, "fs-license": {"type": "string"}, "img": {"type": "string"}, "freesurfer-dir": {"type": "string"}, "bidsargs": {"type": "object", "properties": {"nthreads": {"type": "integer"}, "omp-nthreads": {"type": "integer"}, "use-syn-sdc": {"type": "string"}}, "required": ["nthreads", "omp-nthreads", "use-syn-sdc"]}}, "required": ["app", "fs-license", "img", "freesurfer-dir", "bidsargs"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"Ruby": {"type": "integer"}, "C++": {"type": "integer"}}, "required": ["Ruby", "C++"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"Ruby" : 45469, "C++" : 4356}
json_instruct
{"type": "object", "properties": {"Ruby": {"type": "integer"}, "C++": {"type": "integer"}}, "required": ["Ruby", "C++"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"authors": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "username": {"type": "string"}}, "required": ["id", "name", "username"]}}, "articles": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "title": {"type": "string"}, "slug": {"type": "string"}, "authorId": {"type": "integer"}}, "required": ["id", "title", "slug", "authorId"]}}}, "required": ["authors", "articles"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"authors" : [{"id" : 1, "name" : "Joe Black", "username" : "joe-black"}, {"id" : 2, "name" : "Linda Dinda", "username" : "linda-dinda"}, {"id" : 3, "name" : "Tony Bony", "username" : "martin-pemel"}, {"id" : 4, "name" : "Lucy Pucy", "username" : "lucy-pucy"}, {"id" : 5, "name" : "Mark Fark", "username" : "mark-fark"}], "articles" : [{"id" : 1, "title" : "How to find your first gold treasure?", "slug" : "how-to-find-your-first-gold-treasure", "authorId" : 1}, {"id" : 2, "title" : "How to be a better human?", "slug" : "how-to-be-a-better-human", "authorId" : 2}, {"id" : 3, "title" : "The most dangerous places to live in 2020", "slug" : "the-most-dangerous-places-to-live-in-2020", "authorId" : 3}, {"id" : 4, "title" : "Top 5 colors which make your day better", "slug" : "top-5-colors-which-make-your-day-better", "authorId" : 4}, {"id" : 5, "title" : "Do not read this article at all!", "slug" : "do-not-read-this-article-at-all", "authorId" : 5}]}
json_instruct
{"type": "object", "properties": {"authors": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "username": {"type": "string"}}, "required": ["id", "name", "username"]}}, "articles": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "title": {"type": "string"}, "slug": {"type": "string"}, "authorId": {"type": "integer"}}, "required": ["id", "title", "slug", "authorId"]}}}, "required": ["authors", "articles"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"type": {"type": "string"}, "id": {"type": "string"}, "properties": {"type": "object", "properties": {"amenity": {"type": "string"}, "name": {"type": "string"}, "opening_hours": {"type": "string"}, "id": {"type": "string"}}, "required": ["amenity", "name", "opening_hours", "id"]}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "number"}}}, "required": ["type", "coordinates"]}}, "required": ["type", "id", "properties", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"type" : "Feature", "id" : "node/6957244447", "properties" : {"amenity" : "marketplace", "name" : "Weilheimer Wochenmarkt", "opening_hours" : "Fr 08:00-13:30", "id" : "node/6957244447"}, "geometry" : {"type" : "Point", "coordinates" : [11.1418047, 47.8394761]}}
json_instruct
{"type": "object", "properties": {"type": {"type": "string"}, "id": {"type": "string"}, "properties": {"type": "object", "properties": {"amenity": {"type": "string"}, "name": {"type": "string"}, "opening_hours": {"type": "string"}, "id": {"type": "string"}}, "required": ["amenity", "name", "opening_hours", "id"]}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "number"}}}, "required": ["type", "coordinates"]}}, "required": ["type", "id", "properties", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"scope.version": {"type": "string"}, "timeline.animationMode": {"type": "string"}, "viewport.width": {"type": "integer"}, "viewport.height": {"type": "integer"}, "library.openDirectories": {"type": "array", "items": {}}, "library.GroupsPath": {"type": "object", "properties": {}, "required": []}, "library.downloadedAssets": {"type": "object", "properties": {}, "required": []}, "ruler.guides.horizontal": {"type": "array", "items": {"type": "integer"}}, "ruler.guides.vertical": {"type": "array", "items": {"type": "integer"}}, "ruler.guides.show": {"type": "boolean"}, "ruler.guides.lock": {"type": "boolean"}}, "required": ["scope.version", "timeline.animationMode", "viewport.width", "viewport.height", "library.openDirectories", "library.GroupsPath", "library.downloadedAssets", "ruler.guides.horizontal", "ruler.guides.vertical", "ruler.guides.show", "ruler.guides.lock"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"scope.version" : "2", "timeline.animationMode" : "proMode", "viewport.width" : 300, "viewport.height" : 250, "library.openDirectories" : [], "library.GroupsPath" : {}, "library.downloadedAssets" : {}, "ruler.guides.horizontal" : [250], "ruler.guides.vertical" : [300], "ruler.guides.show" : true, "ruler.guides.lock" : false}
json_instruct
{"type": "object", "properties": {"scope.version": {"type": "string"}, "timeline.animationMode": {"type": "string"}, "viewport.width": {"type": "integer"}, "viewport.height": {"type": "integer"}, "library.openDirectories": {"type": "array", "items": {}}, "library.GroupsPath": {"type": "object", "properties": {}, "required": []}, "library.downloadedAssets": {"type": "object", "properties": {}, "required": []}, "ruler.guides.horizontal": {"type": "array", "items": {"type": "integer"}}, "ruler.guides.vertical": {"type": "array", "items": {"type": "integer"}}, "ruler.guides.show": {"type": "boolean"}, "ruler.guides.lock": {"type": "boolean"}}, "required": ["scope.version", "timeline.animationMode", "viewport.width", "viewport.height", "library.openDirectories", "library.GroupsPath", "library.downloadedAssets", "ruler.guides.horizontal", "ruler.guides.vertical", "ruler.guides.show", "ruler.guides.lock"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"name": {"type": "string"}, "homepage": {"type": "string"}, "version": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "main": {"type": "array", "items": {"type": "string"}}, "ignore": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "homepage", "version", "repository", "main", "ignore"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "smooth-scroll", "homepage" : "https://github.com/GabrielDelepine/smooth-scroll", "version" : "1.4.0", "repository" : {"type" : "git", "url" : "git://github.com/GabrielDelepine/smooth-scroll.git"}, "main" : ["./smooth-scroll.js"], "ignore" : ["*.min.js"]}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "homepage": {"type": "string"}, "version": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "main": {"type": "array", "items": {"type": "string"}}, "ignore": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "homepage", "version", "repository", "main", "ignore"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"id": {"type": "string"}}, "required": ["id"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : "39f75e933add99557933d3c3dcf37b652cbe4e24"}
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": {"body": {"type": "string"}, "user": {"type": "string"}, "url": {"type": "string"}, "updated_at": {"type": "string"}, "created_at": {"type": "string"}, "closed_at": {"type": "string"}, "state": {"type": "string"}, "title": {"type": "string"}, "number": {"type": "integer"}, "milestone": {"type": "null"}, "labels": {"type": "array", "items": {}}, "id": {"type": "integer"}, "html_url": {"type": "string"}, "assignees": {"type": "array", "items": {}}, "comments": {"type": "integer"}}, "required": ["body", "user", "url", "updated_at", "created_at", "closed_at", "state", "title", "number", "milestone", "labels", "id", "html_url", "assignees", "comments"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"body" : "Includes up through the current release, 3.2.1.\r\n\r\nFixes #16930", "user" : "shanedsnyder", "url" : "https://api.github.com/repos/spack/spack/issues/16934", "updated_at" : "2020-06-04 01:05:47", "created_at" : "2020-06-03 16:41:03", "closed_at" : "2020-06-04 01:05:47", "state" : "closed", "title" : "update darshan-runtime & darshan-util versions", "number" : 16934, "milestone" : null, "labels" : [], "id" : 630152597, "html_url" : "https://github.com/spack/spack/pull/16934", "assignees" : [], "comments" : 3}
json_instruct
{"type": "object", "properties": {"body": {"type": "string"}, "user": {"type": "string"}, "url": {"type": "string"}, "updated_at": {"type": "string"}, "created_at": {"type": "string"}, "closed_at": {"type": "string"}, "state": {"type": "string"}, "title": {"type": "string"}, "number": {"type": "integer"}, "milestone": {"type": "null"}, "labels": {"type": "array", "items": {}}, "id": {"type": "integer"}, "html_url": {"type": "string"}, "assignees": {"type": "array", "items": {}}, "comments": {"type": "integer"}}, "required": ["body", "user", "url", "updated_at", "created_at", "closed_at", "state", "title", "number", "milestone", "labels", "id", "html_url", "assignees", "comments"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"t": {"type": "string"}, "h": {"type": "array", "items": {"type": "object", "properties": {"d": {"type": "array", "items": {"type": "object", "properties": {"f": {"type": "string"}, "e": {"type": "array", "items": {"type": "string"}}}, "required": ["f", "e"]}}}, "required": ["d"]}}, "stem": {"type": "string"}}, "required": ["t", "h", "stem"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"t" : "mafuti'", "h" : [{"d" : [{"f" : "\u7761\u89ba\u3002", "e" : ["\ufff9`Icowa~ `a~ `ma~`f~u`ti'~ `kiso~ `saw~?\ufffa\ufffb\u4f60\u5728\u54ea\u88e1\u7761\u89ba\u5462\uff1f", "\ufff9`Halafinay~ `to~ `ko~ `dadaya~ , `ma~`f~u`ti'~ `to~ `kita~.\ufffa\ufffb\u6642\u9593\u5f88\u665a\u4e86\uff0c\u6211\u5011\u7761\u89ba\u5427\u3002"]}]}], "stem" : "futi'"}
json_instruct
{"type": "object", "properties": {"t": {"type": "string"}, "h": {"type": "array", "items": {"type": "object", "properties": {"d": {"type": "array", "items": {"type": "object", "properties": {"f": {"type": "string"}, "e": {"type": "array", "items": {"type": "string"}}}, "required": ["f", "e"]}}}, "required": ["d"]}}, "stem": {"type": "string"}}, "required": ["t", "h", "stem"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "provinceId": {"type": "string"}, "regencyId": {"type": "string"}, "districtId": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "provinceId", "regencyId", "districtId", "name"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"id" : "1005", "provinceId" : "74", "regencyId" : "04", "districtId" : "23", "name" : "Kamaru"}, {"id" : "2001", "provinceId" : "74", "regencyId" : "04", "districtId" : "23", "name" : "Kakenauwe"}, {"id" : "2002", "provinceId" : "74", "regencyId" : "04", "districtId" : "23", "name" : "Waoleona"}, {"id" : "2003", "provinceId" : "74", "regencyId" : "04", "districtId" : "23", "name" : "Lawele"}, {"id" : "2004", "provinceId" : "74", "regencyId" : "04", "districtId" : "23", "name" : "Suandala"}, {"id" : "2006", "provinceId" : "74", "regencyId" : "04", "districtId" : "23", "name" : "Lasembangi"}, {"id" : "2007", "provinceId" : "74", "regencyId" : "04", "districtId" : "23", "name" : "Bonelalo"}, {"id" : "2008", "provinceId" : "74", "regencyId" : "04", "districtId" : "23", "name" : "Wasuamba"}, {"id" : "2009", "provinceId" : "74", "regencyId" : "04", "districtId" : "23", "name" : "Wagari"}, {"id" : "2010", "provinceId" : "74", "regencyId" : "04", "districtId" : "23", "name" : "Sribatara"}, {"id" : "2011", "provinceId" : "74", "regencyId" : "04", "districtId" : "23", "name" : "Togomangura"}, {"id" : "2012", "provinceId" : "74", "regencyId" : "04", "districtId" : "23", "name" : "Wasambaa"}, {"id" : "2013", "provinceId" : "74", "regencyId" : "04", "districtId" : "23", "name" : "Benteng"}, {"id" : "2014", "provinceId" : "74", "regencyId" : "04", "districtId" : "23", "name" : "Talaga Baru"}, {"id" : "2015", "provinceId" : "74", "regencyId" : "04", "districtId" : "23", "name" : "Nambo"}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "provinceId": {"type": "string"}, "regencyId": {"type": "string"}, "districtId": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "provinceId", "regencyId", "districtId", "name"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"categories": {"type": "array", "items": {}}, "equivalent": {"type": "array", "items": {}}, "manufacturer": {"type": "string"}, "name": {"type": "string"}, "replacement": {"type": "array", "items": {}}, "subpart": {"type": "array", "items": {}}, "urls": {"type": "object", "properties": {"manufacturer": {"type": "array", "items": {}}, "related": {"type": "array", "items": {}}}, "required": ["manufacturer", "related"]}, "variants": {"type": "array", "items": {"type": "object", "properties": {"location": {"type": "string"}, "price": {"type": "string"}, "stock_state": {"type": "string"}, "stock_text": {"type": "string"}, "url": {"type": "string"}}, "required": ["location", "price", "stock_state", "stock_text", "url"]}}, "version": {"type": "integer"}, "weight": {"type": "string"}}, "required": ["categories", "equivalent", "manufacturer", "name", "replacement", "subpart", "urls", "variants", "version", "weight"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"categories" : [], "equivalent" : [], "manufacturer" : "Zippy", "name" : "Compact 3300mAh 5S 35C Lipo Pack", "replacement" : [], "subpart" : [], "urls" : {"manufacturer" : [], "related" : []}, "variants" : [{"location" : "International Warehouse", "price" : "$51.33", "stock_state" : "in_stock", "stock_text" : "5", "url" : "http://www.hobbyking.com/hobbyking/store/__21405__ZIPPY_Compact_3300mAh_5S_35C_Lipo_Pack.html"}, {"location" : "Australia Warehouse", "price" : "$41.84", "stock_state" : "out_of_stock", "stock_text" : "0", "url" : "http://www.hobbyking.com/hobbyking/store/uh_viewItem.asp?idProduct=33025"}, {"location" : "USA West Warehouse", "price" : "$42.84", "stock_state" : "in_stock", "stock_text" : "10+", "url" : "http://www.hobbyking.com/hobbyking/store/uh_viewItem.asp?idProduct=33185"}, {"location" : "European Warehouse", "price" : "$42.53", "stock_state" : "in_stock", "stock_text" : "10+", "url" : "http://www.hobbyking.com/hobbyking/store/uh_viewItem.asp?idProduct=36144"}, {"location" : "UK Warehouse", "price" : "$42.04", "stock_state" : "in_stock", "stock_text" : "10+", "url" : "http://www.hobbyking.com/hobbyking/store/uh_viewItem.asp?idProduct=40108"}, {"location" : "USA East Warehouse", "price" : "$42.84", "stock_state" : "in_stock", "stock_text" : "4", "url" : "http://www.hobbyking.com/hobbyking/store/uh_viewItem.asp?idProduct=58872"}, {"location" : "Russia Warehouse", "price" : "$52.62", "stock_state" : "in_stock", "stock_text" : "4", "url" : "http://www.hobbyking.com/hobbyking/store/uh_viewItem.asp?idProduct=59791"}], "version" : 2, "weight" : "433"}
json_instruct
{"type": "object", "properties": {"categories": {"type": "array", "items": {}}, "equivalent": {"type": "array", "items": {}}, "manufacturer": {"type": "string"}, "name": {"type": "string"}, "replacement": {"type": "array", "items": {}}, "subpart": {"type": "array", "items": {}}, "urls": {"type": "object", "properties": {"manufacturer": {"type": "array", "items": {}}, "related": {"type": "array", "items": {}}}, "required": ["manufacturer", "related"]}, "variants": {"type": "array", "items": {"type": "object", "properties": {"location": {"type": "string"}, "price": {"type": "string"}, "stock_state": {"type": "string"}, "stock_text": {"type": "string"}, "url": {"type": "string"}}, "required": ["location", "price", "stock_state", "stock_text", "url"]}}, "version": {"type": "integer"}, "weight": {"type": "string"}}, "required": ["categories", "equivalent", "manufacturer", "name", "replacement", "subpart", "urls", "variants", "version", "weight"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"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-06-07T11:00:00Z", "Temp" : 30.5, "RelHum" : 38, "WindSpeed" : 3.1, "WindDir" : 285}
json_instruct
{"type": "object", "properties": {"Time": {"type": "string"}, "Temp": {"type": "number"}, "RelHum": {"type": "integer"}, "WindSpeed": {"type": "number"}, "WindDir": {"type": "integer"}}, "required": ["Time", "Temp", "RelHum", "WindSpeed", "WindDir"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"task_meta": {"type": "object", "properties": {}, "required": []}, "annotations": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "new": {"type": "boolean"}, "parent_id": {"type": "null"}, "created_by": {"type": "string"}, "created_at": {"type": "string"}, "deprecated": {"type": "boolean"}, "spatial_type": {"type": "string"}, "spatial_payload": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}, "classification_payloads": {"type": "array", "items": {"type": "object", "properties": {"class_id": {"type": "integer"}, "confidence": {"type": "number"}}, "required": ["class_id", "confidence"]}}, "line_size": {"type": "integer"}, "containing_box": {"type": "null"}, "frame": {"type": "null"}, "text_payload": {"type": "string"}}, "required": ["id", "new", "parent_id", "created_by", "created_at", "deprecated", "spatial_type", "spatial_payload", "classification_payloads", "line_size", "containing_box", "frame", "text_payload"]}}, "import_fname": {"type": "string"}}, "required": ["task_meta", "annotations", "import_fname"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"task_meta" : {}, "annotations" : [{"id" : "20868605-ab6d-43d8-98ae-4eeae14fa285", "new" : true, "parent_id" : null, "created_by" : "christian_hannah", "created_at" : "2020-07-03T12:53:06Z", "deprecated" : false, "spatial_type" : "bbox3", "spatial_payload" : [[17.872340425531917, 165.95744680851064, 57.0], [315.95744680851067, 406.27659574468083, 78.0]], "classification_payloads" : [{"class_id" : 2, "confidence" : 1.0}], "line_size" : 4, "containing_box" : null, "frame" : null, "text_payload" : ""}], "import_fname" : "1593780786_christian_hannah.json"}
json_instruct
{"type": "object", "properties": {"task_meta": {"type": "object", "properties": {}, "required": []}, "annotations": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "new": {"type": "boolean"}, "parent_id": {"type": "null"}, "created_by": {"type": "string"}, "created_at": {"type": "string"}, "deprecated": {"type": "boolean"}, "spatial_type": {"type": "string"}, "spatial_payload": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}, "classification_payloads": {"type": "array", "items": {"type": "object", "properties": {"class_id": {"type": "integer"}, "confidence": {"type": "number"}}, "required": ["class_id", "confidence"]}}, "line_size": {"type": "integer"}, "containing_box": {"type": "null"}, "frame": {"type": "null"}, "text_payload": {"type": "string"}}, "required": ["id", "new", "parent_id", "created_by", "created_at", "deprecated", "spatial_type", "spatial_payload", "classification_payloads", "line_size", "containing_box", "frame", "text_payload"]}}, "import_fname": {"type": "string"}}, "required": ["task_meta", "annotations", "import_fname"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "object", "properties": {"en": {"type": "string"}}, "required": ["en"]}, "country": {"type": "string"}, "region": {"type": "string"}, "identifiers": {"type": "object", "properties": {"national": {"type": "null"}, "wmo": {"type": "null"}, "ghcn": {"type": "null"}, "wban": {"type": "null"}, "usaf": {"type": "null"}, "mosmix": {"type": "null"}, "icao": {"type": "string"}, "iata": {"type": "null"}}, "required": ["national", "wmo", "ghcn", "wban", "usaf", "mosmix", "icao", "iata"]}, "location": {"type": "object", "properties": {"latitude": {"type": "number"}, "longitude": {"type": "number"}, "elevation": {"type": "integer"}}, "required": ["latitude", "longitude", "elevation"]}, "timezone": {"type": "string"}, "history": {"type": "array", "items": {}}}, "required": ["id", "name", "country", "region", "identifiers", "location", "timezone", "history"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : "K1M90", "name" : {"en" : "Cadiz / Blue Spring"}, "country" : "US", "region" : "KY", "identifiers" : {"national" : null, "wmo" : null, "ghcn" : null, "wban" : null, "usaf" : null, "mosmix" : null, "icao" : "K1M9", "iata" : null}, "location" : {"latitude" : 36.8177, "longitude" : -87.9074, "elevation" : 174}, "timezone" : "America/Chicago", "history" : []}
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "object", "properties": {"en": {"type": "string"}}, "required": ["en"]}, "country": {"type": "string"}, "region": {"type": "string"}, "identifiers": {"type": "object", "properties": {"national": {"type": "null"}, "wmo": {"type": "null"}, "ghcn": {"type": "null"}, "wban": {"type": "null"}, "usaf": {"type": "null"}, "mosmix": {"type": "null"}, "icao": {"type": "string"}, "iata": {"type": "null"}}, "required": ["national", "wmo", "ghcn", "wban", "usaf", "mosmix", "icao", "iata"]}, "location": {"type": "object", "properties": {"latitude": {"type": "number"}, "longitude": {"type": "number"}, "elevation": {"type": "integer"}}, "required": ["latitude", "longitude", "elevation"]}, "timezone": {"type": "string"}, "history": {"type": "array", "items": {}}}, "required": ["id", "name", "country", "region", "identifiers", "location", "timezone", "history"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"cSpell.words": {"type": "array", "items": {"type": "string"}}}, "required": ["cSpell.words"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"cSpell.words" : ["Buruburu", "Fairlane", "Kenrail", "Mfuko", "Misericordiae", "Shivachi", "Shujaa", "Thika", "Uyoma", "Westlands"]}
json_instruct
{"type": "object", "properties": {"cSpell.words": {"type": "array", "items": {"type": "string"}}}, "required": ["cSpell.words"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"version": {"type": "string"}, "links": {"type": "array", "items": {"type": "object", "properties": {"href": {"type": "string"}, "rel": {"type": "string"}, "type": {"type": "string"}}, "required": ["href", "rel", "type"]}}}, "required": ["version", "links"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"version" : "2.8.1", "links" : [{"href" : "https://localhost:8443/web-server/v1/groups/1/", "rel" : "group", "type" : "application/json; charset=utf-8"}, {"href" : "https://localhost:8443/web-server/v1/groups/1/instances/4/", "rel" : "group-instance", "type" : "application/json; charset=utf-8"}, {"href" : "https://localhost:8443/web-server/v1/groups/1/instances/3/", "rel" : "group-instance", "type" : "application/json; charset=utf-8"}, {"href" : "https://localhost:8443/web-server/v1/installation-images/0/", "rel" : "installation-image", "type" : "application/json; charset=utf-8"}, {"href" : "https://localhost:8443/web-server/v1/groups/1/installations/2/", "rel" : "self", "type" : "application/json; charset=utf-8"}, {"href" : "https://localhost:8443/vfabric/v1/security/5/", "rel" : "security", "type" : "application/json; charset=utf-8"}]}
json_instruct
{"type": "object", "properties": {"version": {"type": "string"}, "links": {"type": "array", "items": {"type": "object", "properties": {"href": {"type": "string"}, "rel": {"type": "string"}, "type": {"type": "string"}}, "required": ["href", "rel", "type"]}}}, "required": ["version", "links"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}, "build": {"type": "string"}}, "required": ["start", "build"]}, "author": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "homepage": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "license": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"babel-core": {"type": "string"}, "babel-loader": {"type": "string"}, "babel-polyfill": {"type": "string"}, "babel-preset-env": {"type": "string"}, "babel-preset-es2015": {"type": "string"}, "css-loader": {"type": "string"}, "extract-text-webpack-plugin": {"type": "string"}, "node-sass": {"type": "string"}, "postcss-import": {"type": "string"}, "postcss-loader": {"type": "string"}, "sass-loader": {"type": "string"}, "style-loader": {"type": "string"}, "url-loader": {"type": "string"}, "webpack": {"type": "string"}, "webpack-cli": {"type": "string"}}, "required": ["babel-core", "babel-loader", "babel-polyfill", "babel-preset-env", "babel-preset-es2015", "css-loader", "extract-text-webpack-plugin", "node-sass", "postcss-import", "postcss-loader", "sass-loader", "style-loader", "url-loader", "webpack", "webpack-cli"]}}, "required": ["name", "version", "description", "main", "scripts", "author", "repository", "homepage", "keywords", "license", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "WebpackStarterKit", "version" : "1.0.0", "description" : "A readable webpack starter configuration.", "main" : "src/js/index.js", "scripts" : {"start" : "webpack -w --mode development --config=webpack/dev.config.js", "build" : "webpack -p --mode production --config=webpack/prod.config.js"}, "author" : "Darren Cooney (Connekt)", "repository" : {"type" : "git", "url" : "https://github.com/dcooney/webpack-starter-kit"}, "homepage" : "https://github.com/dcooney/webpack-starter-kit", "keywords" : ["webpack", "javascript"], "license" : "MIT", "devDependencies" : {"babel-core" : "^6.25.0", "babel-loader" : "^7.1.1", "babel-polyfill" : "^6.26.0", "babel-preset-env" : "^1.6.0", "babel-preset-es2015" : "^6.24.1", "css-loader" : "^0.28.7", "extract-text-webpack-plugin" : "4.0.0-alpha.0", "node-sass" : "^4.5.3", "postcss-import" : "^10.0.0", "postcss-loader" : "^2.0.6", "sass-loader" : "^6.0.6", "style-loader" : "^0.18.2", "url-loader" : "^1.1.2", "webpack" : "^4.23.1", "webpack-cli" : "^3.1.2"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}, "build": {"type": "string"}}, "required": ["start", "build"]}, "author": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "homepage": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "license": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"babel-core": {"type": "string"}, "babel-loader": {"type": "string"}, "babel-polyfill": {"type": "string"}, "babel-preset-env": {"type": "string"}, "babel-preset-es2015": {"type": "string"}, "css-loader": {"type": "string"}, "extract-text-webpack-plugin": {"type": "string"}, "node-sass": {"type": "string"}, "postcss-import": {"type": "string"}, "postcss-loader": {"type": "string"}, "sass-loader": {"type": "string"}, "style-loader": {"type": "string"}, "url-loader": {"type": "string"}, "webpack": {"type": "string"}, "webpack-cli": {"type": "string"}}, "required": ["babel-core", "babel-loader", "babel-polyfill", "babel-preset-env", "babel-preset-es2015", "css-loader", "extract-text-webpack-plugin", "node-sass", "postcss-import", "postcss-loader", "sass-loader", "style-loader", "url-loader", "webpack", "webpack-cli"]}}, "required": ["name", "version", "description", "main", "scripts", "author", "repository", "homepage", "keywords", "license", "devDependencies"], "$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"}}, "required": ["id"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : "31b29fcd7f16c13d8cfd65aee9b9867c08ef78cd"}
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": {"votes": {"type": "object", "properties": {"diff": {"type": "integer"}, "dem": {"type": "integer"}, "tot": {"type": "integer"}, "gop": {"type": "integer"}}, "required": ["diff", "dem", "tot", "gop"]}, "for": {"type": "string"}, "pct": {"type": "object", "properties": {"dem": {"type": "number"}, "per_point_diff": {"type": "number"}, "gop": {"type": "number"}}, "required": ["dem", "per_point_diff", "gop"]}}, "required": ["votes", "for", "pct"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"votes" : {"diff" : 2354, "dem" : 601, "tot" : 3698, "gop" : 2955}, "for" : "AR/Searcy County/5129", "pct" : {"dem" : 16.25, "per_point_diff" : 63.66, "gop" : 79.91}}
json_instruct
{"type": "object", "properties": {"votes": {"type": "object", "properties": {"diff": {"type": "integer"}, "dem": {"type": "integer"}, "tot": {"type": "integer"}, "gop": {"type": "integer"}}, "required": ["diff", "dem", "tot", "gop"]}, "for": {"type": "string"}, "pct": {"type": "object", "properties": {"dem": {"type": "number"}, "per_point_diff": {"type": "number"}, "gop": {"type": "number"}}, "required": ["dem", "per_point_diff", "gop"]}}, "required": ["votes", "for", "pct"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"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" : "BOJONEGORO", "originalFilename" : "SYAMSUL ARIFIN_PHOTO.jpg", "namaPartai" : "Partai Solidaritas Indonesia", "id" : 60471, "noUrut" : 1, "nama" : "SAMSUL ARIFIN", "stringJenisKelamin" : "Laki-Laki"}, {"namaKab" : "TUBAN", "originalFilename" : "ARIS BUDI SANTOSO_FOTO 4 X 6.jpg", "namaPartai" : "Partai Solidaritas Indonesia", "id" : 14582, "noUrut" : 2, "nama" : "ARIS BUDI SANTOSO", "stringJenisKelamin" : "Laki-Laki"}, {"namaKab" : "KOTA SURABAYA", "originalFilename" : "AJU WIDJAHNARTI_PHOTO.jpg", "namaPartai" : "Partai Solidaritas Indonesia", "id" : 61606, "noUrut" : 3, "nama" : "AJU WIDJAHNARTI", "stringJenisKelamin" : "Perempuan"}]
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#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"specificationVersion": {"type": "string"}, "type": {"type": "string"}, "name": {"type": "string"}, "displayName": {"type": "string"}, "author": {"type": "string"}, "version": {"type": "string"}, "agentVersion": {"type": "string"}, "facets": {"type": "array", "items": {"type": "string"}}, "dependencies": {"type": "array", "items": {}}, "enhances": {"type": "array", "items": {}}, "compatibility": {"type": "object", "properties": {"osName": {"type": "array", "items": {"type": "string"}}, "agentVersion": {"type": "string"}}, "required": ["osName", "agentVersion"]}, "dynamic": {"type": "string"}}, "required": ["specificationVersion", "type", "name", "displayName", "author", "version", "agentVersion", "facets", "dependencies", "enhances", "compatibility", "dynamic"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"specificationVersion" : "2", "type" : "java", "name" : "CA APM For Webservers", "displayName" : "Webserver Monitor", "author" : "CA Technologies", "version" : "10.7", "agentVersion" : "10.7", "facets" : ["custom", "fieldpack"], "dependencies" : [], "enhances" : [], "compatibility" : {"osName" : ["windows", "unix"], "agentVersion" : ">=10.7"}, "dynamic" : "true"}
json_instruct
{"type": "object", "properties": {"specificationVersion": {"type": "string"}, "type": {"type": "string"}, "name": {"type": "string"}, "displayName": {"type": "string"}, "author": {"type": "string"}, "version": {"type": "string"}, "agentVersion": {"type": "string"}, "facets": {"type": "array", "items": {"type": "string"}}, "dependencies": {"type": "array", "items": {}}, "enhances": {"type": "array", "items": {}}, "compatibility": {"type": "object", "properties": {"osName": {"type": "array", "items": {"type": "string"}}, "agentVersion": {"type": "string"}}, "required": ["osName", "agentVersion"]}, "dynamic": {"type": "string"}}, "required": ["specificationVersion", "type", "name", "displayName", "author", "version", "agentVersion", "facets", "dependencies", "enhances", "compatibility", "dynamic"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
[[1986, 7], [1990, 7], [1993, 9], [1994, 12], [1996, 15], [1997, 8], [1998, 19], [1999, 9], [2000, 14], [2001, 11], [2002, 13], [2003, 7], [2004, 11], [2005, 11], [2006, 9], [2007, 13], [2008, 12], [2009, 6], [2010, 12], [2011, 11], [2012, 11], [2013, 16], [2014, 17]]
json_instruct
{"type": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "code": {"type": "string"}, "address": {"type": "object", "properties": {"addressLine1": {"type": "string"}, "addressLine2": {"type": "string"}, "town": {"type": "string"}, "postcode": {"type": "string"}}, "required": ["addressLine1", "addressLine2", "town", "postcode"]}, "organisation": {"type": "object", "properties": {"id": {"type": "string"}, "code": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "code", "name"]}}, "required": ["id", "name", "code", "address", "organisation"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : "eba1f622-85cc-4662-843b-b51787cc2eac", "name" : "Mayhill Junior School", "code" : "J", "address" : {"addressLine1" : "The Bury", "addressLine2" : "Odiham", "town" : "Hook", "postcode" : "RG29 1NB"}, "organisation" : {"id" : "829f9f39-4a5b-416a-bf01-8673634f6164", "code" : "175", "name" : "Newport Junior School"}}
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "code": {"type": "string"}, "address": {"type": "object", "properties": {"addressLine1": {"type": "string"}, "addressLine2": {"type": "string"}, "town": {"type": "string"}, "postcode": {"type": "string"}}, "required": ["addressLine1", "addressLine2", "town", "postcode"]}, "organisation": {"type": "object", "properties": {"id": {"type": "string"}, "code": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "code", "name"]}}, "required": ["id", "name", "code", "address", "organisation"], "$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"}, "title": {"type": "string"}, "body": {"type": "string"}, "choices": {"type": "array", "items": {"type": "string"}}, "start": {"type": "integer"}, "end": {"type": "integer"}, "snapshot": {"type": "string"}, "state": {"type": "string"}, "author": {"type": "string"}, "space": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "name"]}, "votes": {"type": "integer"}, "votes_data": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "voter": {"type": "string"}, "created": {"type": "integer"}, "choice": {"type": "integer"}, "space": {"type": "object", "properties": {"id": {"type": "string"}}, "required": ["id"]}}, "required": ["id", "voter", "created", "choice", "space"]}}}, "required": ["id", "title", "body", "choices", "start", "end", "snapshot", "state", "author", "space", "votes", "votes_data"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : "QmSU2enefKUfzpVEpLiKWY5iRB8oqz8hZxT5HjK6igeWZ7", "title" : "Add the location -34,53 to the Points of Interest", "body" : "> by 0xcd15d83f42179b9a5b515eea0975f554444a9646\n\n## Amusement Park with Carnival Games\n\n![Amusement Park with Carnival Games](https://api.decentraland.org/v1/parcels/-34/53/map.png)\n\nShould the scene located at -34,53 be added to the Point of Interest list?\n\n## Description\n\npoi test descriptionpoi test description\n\n**[Vote on this proposal on the Decentraland DAO](https://localhost:8000/proposal/?id=a832af20-3b27-11ec-b872-1d04c8e66e27)**", "choices" : ["yes", "no"], "start" : 1635780180, "end" : 1635780780, "snapshot" : "13531939", "state" : "closed", "author" : "0x2Ba0352480bd1Ea073A83e6639b06362131894CE", "space" : {"id" : "frami.eth", "name" : "frami y otras hierbas"}, "votes" : 1, "votes_data" : [{"id" : "QmPBR6wFNBrWFXxsVkYR7e4F55eS3MmbA7KEeTXN4uHYAJ", "voter" : "0xcD15d83f42179b9A5B515eea0975f554444a9646", "created" : 1635780232, "choice" : 1, "space" : {"id" : "frami.eth"}}]}
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "title": {"type": "string"}, "body": {"type": "string"}, "choices": {"type": "array", "items": {"type": "string"}}, "start": {"type": "integer"}, "end": {"type": "integer"}, "snapshot": {"type": "string"}, "state": {"type": "string"}, "author": {"type": "string"}, "space": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "name"]}, "votes": {"type": "integer"}, "votes_data": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "voter": {"type": "string"}, "created": {"type": "integer"}, "choice": {"type": "integer"}, "space": {"type": "object", "properties": {"id": {"type": "string"}}, "required": ["id"]}}, "required": ["id", "voter", "created", "choice", "space"]}}}, "required": ["id", "title", "body", "choices", "start", "end", "snapshot", "state", "author", "space", "votes", "votes_data"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"open": {"type": "string"}, "high": {"type": "string"}, "low": {"type": "string"}, "volume": {"type": "string"}, "last": {"type": "string"}, "volume_30day": {"type": "string"}}, "required": ["open", "high", "low", "volume", "last", "volume_30day"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"open" : "0.235", "high" : "0.2361", "low" : "0.2242", "volume" : "838930.8", "last" : "0.2334", "volume_30day" : "37809074.2"}
json_instruct
{"type": "object", "properties": {"open": {"type": "string"}, "high": {"type": "string"}, "low": {"type": "string"}, "volume": {"type": "string"}, "last": {"type": "string"}, "volume_30day": {"type": "string"}}, "required": ["open", "high", "low", "volume", "last", "volume_30day"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"arXiv": {"type": "string"}, "title": {"type": "string"}, "pdf": {"type": "string"}, "authors": {"type": "array", "items": {"type": "string"}}, "abstract": {"type": "string"}, "s2id": {"type": "string"}, "citations": {"type": "integer"}, "posterSession": {"type": "string"}}, "required": ["arXiv", "title", "pdf", "authors", "abstract", "s2id", "citations", "posterSession"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"arXiv" : "http://arxiv.org/abs/2104.06574", "title" : "Joint Negative and Positive Learning for Noisy Labels", "pdf" : "https://openaccess.thecvf.com/content/CVPR2021/papers/Kim_Joint_Negative_and_Positive_Learning_for_Noisy_Labels_CVPR_2021_paper.pdf", "authors" : ["Youngdong Kim", "Juseung Yun", "Hyounguk Shon", "Junmo Kim"], "abstract" : "Training of Convolutional Neural Networks (CNNs) with data with noisy labels is known to be a challenge. Based on the fact that directly providing the label to the data (Positive Learning; PL) has a risk of allowing CNNs to memorize the contaminated labels for the case of noisy data, the indirect learning approach that uses complementary labels (Negative Learning for Noisy Labels; NLNL) has proven to be highly effective in preventing overfitting to noisy data as it reduces the risk of providing faulty target. NLNL further employs a three-stage pipeline to improve convergence. As a result, filtering noisy data through the NLNL pipeline is cumbersome, increasing the training cost. In this study, we propose a novel improvement of NLNL, named Joint Negative and Positive Learning (JNPL), that unifies the filtering pipeline into a single stage. JNPL trains CNN via two losses, NL+ and PL+, which are improved upon NL and PL loss functions, respectively. We analyze the fundamental issue of NL loss function and develop new NL+ loss function producing gradient that enhances the convergence of noisy data. Furthermore, PL+ loss function is designed to enable faster convergence to expected-to-be-clean data. We show that the NL+ and PL+ train CNN simultaneously, significantly simplifying the pipeline, allowing greater ease of practical use compared to NLNL. With a simple semi-supervised training technique, our method achieves state-of-the-art accuracy for noisy data classification based on the superior filtering ability.", "s2id" : "e34608bd8565008c3b5692d2519f197eb15ab0db", "citations" : 0, "posterSession" : "Wednesday"}
json_instruct
{"type": "object", "properties": {"arXiv": {"type": "string"}, "title": {"type": "string"}, "pdf": {"type": "string"}, "authors": {"type": "array", "items": {"type": "string"}}, "abstract": {"type": "string"}, "s2id": {"type": "string"}, "citations": {"type": "integer"}, "posterSession": {"type": "string"}}, "required": ["arXiv", "title", "pdf", "authors", "abstract", "s2id", "citations", "posterSession"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"required": {"type": "boolean"}, "minVersion": {"type": "string"}, "package": {"type": "string"}, "plugin": {"type": "string"}, "compatibilityLevel": {"type": "string"}, "refmap": {"type": "string"}, "mixins": {"type": "array", "items": {"type": "string"}}, "client": {"type": "array", "items": {}}, "server": {"type": "array", "items": {}}, "injectors": {"type": "object", "properties": {"defaultRequire": {"type": "integer"}}, "required": ["defaultRequire"]}}, "required": ["required", "minVersion", "package", "plugin", "compatibilityLevel", "refmap", "mixins", "client", "server", "injectors"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"required" : true, "minVersion" : "0.8", "package" : "me.thonk.croptopia.mixin", "plugin" : "me.thonk.croptopia.plugin.MixinConfig", "compatibilityLevel" : "JAVA_16", "refmap" : "Croptopia-refmap.json", "mixins" : ["AxeAccess", "AxeMixin", "ChickenAccess", "FarmerVillagerTaskMixin", "ItemMixin", "ParrotAccess", "VillagerAccess", "VillagerMixin"], "client" : [], "server" : [], "injectors" : {"defaultRequire" : 1}}
json_instruct
{"type": "object", "properties": {"required": {"type": "boolean"}, "minVersion": {"type": "string"}, "package": {"type": "string"}, "plugin": {"type": "string"}, "compatibilityLevel": {"type": "string"}, "refmap": {"type": "string"}, "mixins": {"type": "array", "items": {"type": "string"}}, "client": {"type": "array", "items": {}}, "server": {"type": "array", "items": {}}, "injectors": {"type": "object", "properties": {"defaultRequire": {"type": "integer"}}, "required": ["defaultRequire"]}}, "required": ["required", "minVersion", "package", "plugin", "compatibilityLevel", "refmap", "mixins", "client", "server", "injectors"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "author": {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"]}}, "required": ["name", "version", "description", "main", "author"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "02.-inches-to-centimeters", "version" : "0.0.0", "description" : "02. Inches to Centimeters", "main" : "app.js", "author" : {"name" : "LENOVO G500S"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "author": {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"]}}, "required": ["name", "version", "description", "main", "author"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"hermeneutApp": {"type": "object", "properties": {"questionnaireStatus": {"type": "object", "properties": {"home": {"type": "object", "properties": {"title": {"type": "string"}, "createLabel": {"type": "string"}, "createOrEditLabel": {"type": "string"}, "search": {"type": "string"}}, "required": ["title", "createLabel", "createOrEditLabel", "search"]}, "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"}}, "required": ["title"]}, "status": {"type": "string"}, "modified": {"type": "string"}, "role": {"type": "string"}, "selfAssessment": {"type": "string"}, "questionnaire": {"type": "string"}, "user": {"type": "string"}, "answers": {"type": "string"}}, "required": ["home", "created", "updated", "deleted", "delete", "detail", "status", "modified", "role", "selfAssessment", "questionnaire", "user", "answers"]}}, "required": ["questionnaireStatus"]}}, "required": ["hermeneutApp"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"hermeneutApp" : {"questionnaireStatus" : {"home" : {"title" : "Questionnaire Statuses", "createLabel" : "Crear nuevo Questionnaire Status", "createOrEditLabel" : "Crear o editar Questionnaire Status", "search" : "Search for Questionnaire Status"}, "created" : "Created", "updated" : "Un Questionnaire Status ha sido actualizado con el identificador {{ param }}", "deleted" : "Un Questionnaire Status ha sido eliminado con el identificador {{ param }}", "delete" : {"question" : "\u00bfSeguro que quiere eliminar Questionnaire Status {{ id }}?"}, "detail" : {"title" : "Questionnaire Status"}, "status" : "Status", "modified" : "Modified", "role" : "Role", "selfAssessment" : "Self Assessment", "questionnaire" : "Questionnaire", "user" : "User", "answers" : "Answers"}}}
json_instruct
{"type": "object", "properties": {"hermeneutApp": {"type": "object", "properties": {"questionnaireStatus": {"type": "object", "properties": {"home": {"type": "object", "properties": {"title": {"type": "string"}, "createLabel": {"type": "string"}, "createOrEditLabel": {"type": "string"}, "search": {"type": "string"}}, "required": ["title", "createLabel", "createOrEditLabel", "search"]}, "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"}}, "required": ["title"]}, "status": {"type": "string"}, "modified": {"type": "string"}, "role": {"type": "string"}, "selfAssessment": {"type": "string"}, "questionnaire": {"type": "string"}, "user": {"type": "string"}, "answers": {"type": "string"}}, "required": ["home", "created", "updated", "deleted", "delete", "detail", "status", "modified", "role", "selfAssessment", "questionnaire", "user", "answers"]}}, "required": ["questionnaireStatus"]}}, "required": ["hermeneutApp"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"}
["funcxyzserver"]
json_instruct
{"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"buildDate": {"type": "string"}, "buildNumber": {"type": "string"}, "moduleList": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "hash": {"type": "string"}, "type": {"type": "string"}}, "required": ["name", "hash", "type"]}}, "chunkList": {"type": "array", "items": {"type": "object", "properties": {"chunkname": {"type": "string"}, "chunkid": {"type": "integer"}, "chunkids": {"type": "array", "items": {"type": "integer"}}, "chunkFullHash": {"type": "string"}, "chunkRenderedHash": {"type": "string"}}, "required": ["chunkname", "chunkid", "chunkids", "chunkFullHash", "chunkRenderedHash"]}}}, "required": ["buildDate", "buildNumber", "moduleList", "chunkList"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"buildDate" : "5/4/2017, 5:48:15 PM", "buildNumber" : "20161107v1", "moduleList" : [{"name" : "load", "hash" : "ffe070ec734de0b3b4e3", "type" : "js"}, {"name" : "app", "hash" : "258d8df02b73e9789831", "type" : "js"}, {"name" : "baselib", "hash" : "1041c834a07467391d5d", "type" : "js"}], "chunkList" : [{"chunkname" : "config", "chunkid" : 0, "chunkids" : [0, 1], "chunkFullHash" : "9e5a4921e5c8fe76ce569561e3a2376f", "chunkRenderedHash" : "9e5a4921e5c8fe76ce56"}, {"chunkname" : "load", "chunkid" : 1, "chunkids" : [1], "chunkFullHash" : "ffe070ec734de0b3b4e3b7b6ea729513", "chunkRenderedHash" : "ffe070ec734de0b3b4e3"}, {"chunkname" : "baselib", "chunkid" : 2, "chunkids" : [2, 1], "chunkFullHash" : "1041c834a07467391d5d1939c7206a0b", "chunkRenderedHash" : "1041c834a07467391d5d"}, {"chunkname" : "app", "chunkid" : 3, "chunkids" : [3, 1], "chunkFullHash" : "258d8df02b73e97898310d345629d401", "chunkRenderedHash" : "258d8df02b73e9789831"}]}
json_instruct
{"type": "object", "properties": {"buildDate": {"type": "string"}, "buildNumber": {"type": "string"}, "moduleList": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "hash": {"type": "string"}, "type": {"type": "string"}}, "required": ["name", "hash", "type"]}}, "chunkList": {"type": "array", "items": {"type": "object", "properties": {"chunkname": {"type": "string"}, "chunkid": {"type": "integer"}, "chunkids": {"type": "array", "items": {"type": "integer"}}, "chunkFullHash": {"type": "string"}, "chunkRenderedHash": {"type": "string"}}, "required": ["chunkname", "chunkid", "chunkids", "chunkFullHash", "chunkRenderedHash"]}}}, "required": ["buildDate", "buildNumber", "moduleList", "chunkList"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"name": {"type": "string"}, "type": {"type": "string"}, "description": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "homepage": {"type": "string"}, "license": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}, "homepage": {"type": "string"}}, "required": ["name", "email", "homepage"]}}, "require": {"type": "object", "properties": {"php": {"type": "string"}, "katzgrau/klogger": {"type": "string"}, "league/flysystem-aws-s3-v3": {"type": "string"}}, "required": ["php", "katzgrau/klogger", "league/flysystem-aws-s3-v3"]}}, "required": ["name", "type", "description", "keywords", "homepage", "license", "authors", "require"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "riipandi/s3-spaces", "type" : "plugin", "description" : "Synchronize your WordPress media library with DigitalOcean Spaces.", "keywords" : ["aws", "s3", "digitalocean", "spaces", "storage", "wordpress"], "homepage" : "https://github.com/riipandi/s3-spaces", "license" : "MIT", "authors" : [{"name" : "Aris Ripandi", "email" : "ripandi@pm.me", "homepage" : "https://github.com/riipandi"}], "require" : {"php" : ">=5.6.0", "katzgrau/klogger" : "^1.2", "league/flysystem-aws-s3-v3" : "^1.0"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "type": {"type": "string"}, "description": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "homepage": {"type": "string"}, "license": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}, "homepage": {"type": "string"}}, "required": ["name", "email", "homepage"]}}, "require": {"type": "object", "properties": {"php": {"type": "string"}, "katzgrau/klogger": {"type": "string"}, "league/flysystem-aws-s3-v3": {"type": "string"}}, "required": ["php", "katzgrau/klogger", "league/flysystem-aws-s3-v3"]}}, "required": ["name", "type", "description", "keywords", "homepage", "license", "authors", "require"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}, "test": {"type": "string"}}, "required": ["start", "test"]}, "author": {"type": "string"}, "license": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"electron": {"type": "string"}}, "required": ["electron"]}, "dependencies": {"type": "object", "properties": {"bootstrap": {"type": "string"}, "jquery": {"type": "string"}, "libxmljs": {"type": "string"}, "popper.js": {"type": "string"}}, "required": ["bootstrap", "jquery", "libxmljs", "popper.js"]}}, "required": ["name", "version", "description", "main", "scripts", "author", "license", "devDependencies", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "zadanie4", "version" : "1.0.0", "description" : "Zadanie 4 w elektronie", "main" : "main.js", "scripts" : {"start" : "electron .", "test" : "echo \"Error: no test specified\" && exit 1"}, "author" : "", "license" : "ISC", "devDependencies" : {"electron" : "^2.0.2"}, "dependencies" : {"bootstrap" : "^4.1.1", "jquery" : "^3.3.1", "libxmljs" : "^0.18.9-pre0", "popper.js" : "^1.14.3"}}
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"]}, "author": {"type": "string"}, "license": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"electron": {"type": "string"}}, "required": ["electron"]}, "dependencies": {"type": "object", "properties": {"bootstrap": {"type": "string"}, "jquery": {"type": "string"}, "libxmljs": {"type": "string"}, "popper.js": {"type": "string"}}, "required": ["bootstrap", "jquery", "libxmljs", "popper.js"]}}, "required": ["name", "version", "description", "main", "scripts", "author", "license", "devDependencies", "dependencies"], "$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#"}
["002747", "002407", "300484", "300153", "002845", "002709", "300450", "000807", "300141", "002850", "002847", "603993", "603096", "300566", "603959", "002074", "600338", "000717", "300323", "601600", "601015", "002249", "600110", "603787", "300409", "002048", "300274", "002887", "603978", "000933", "002171", "300424", "600595", "603027", "603269", "002340", "300116", "002121", "002883", "300611", "002738"]
json_instruct
{"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"manifest_version": {"type": "integer"}, "name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "icons": {"type": "object", "properties": {"16": {"type": "string"}, "48": {"type": "string"}, "128": {"type": "string"}}, "required": ["16", "48", "128"]}, "author": {"type": "string"}, "homepage_url": {"type": "string"}, "permissions": {"type": "array", "items": {"type": "string"}}, "browser_action": {"type": "object", "properties": {"default_icon": {"type": "object", "properties": {"16": {"type": "string"}, "24": {"type": "string"}, "32": {"type": "string"}}, "required": ["16", "24", "32"]}}, "required": ["default_icon"]}, "optional_permissions": {"type": "array", "items": {"type": "string"}}, "background": {"type": "object", "properties": {"scripts": {"type": "array", "items": {"type": "string"}}, "persistent": {"type": "boolean"}}, "required": ["scripts", "persistent"]}, "content_scripts": {"type": "array", "items": {"type": "object", "properties": {"matches": {"type": "array", "items": {"type": "string"}}, "run_at": {"type": "string"}, "js": {"type": "array", "items": {"type": "string"}}}, "required": ["matches", "run_at", "js"]}}}, "required": ["manifest_version", "name", "version", "description", "icons", "author", "homepage_url", "permissions", "browser_action", "optional_permissions", "background", "content_scripts"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"manifest_version" : 2, "name" : "Squashed Merge Message", "version" : "2.2", "description" : "Use Pull Request description as Squashed and Merged commit messages", "icons" : {"16" : "squash-16x16.png", "48" : "squash-48x48.png", "128" : "squash-128x128.png"}, "author" : "Zach Whaley <zachbwhaley@gmail.com>", "homepage_url" : "https://github.com/zachwhaley/squashed-merge-message", "permissions" : ["https://github.com/*", "contextMenus", "activeTab"], "browser_action" : {"default_icon" : {"16" : "squash-16x16.png", "24" : "squash-24x24.png", "32" : "squash-32x32.png"}}, "optional_permissions" : ["http://*/*", "https://*/*"], "background" : {"scripts" : ["webext-domain-permission-toggle.js", "webext-dynamic-content-scripts.js", "background.js"], "persistent" : false}, "content_scripts" : [{"matches" : ["https://github.com/*"], "run_at" : "document_end", "js" : ["content.js"]}]}
json_instruct
{"type": "object", "properties": {"manifest_version": {"type": "integer"}, "name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "icons": {"type": "object", "properties": {"16": {"type": "string"}, "48": {"type": "string"}, "128": {"type": "string"}}, "required": ["16", "48", "128"]}, "author": {"type": "string"}, "homepage_url": {"type": "string"}, "permissions": {"type": "array", "items": {"type": "string"}}, "browser_action": {"type": "object", "properties": {"default_icon": {"type": "object", "properties": {"16": {"type": "string"}, "24": {"type": "string"}, "32": {"type": "string"}}, "required": ["16", "24", "32"]}}, "required": ["default_icon"]}, "optional_permissions": {"type": "array", "items": {"type": "string"}}, "background": {"type": "object", "properties": {"scripts": {"type": "array", "items": {"type": "string"}}, "persistent": {"type": "boolean"}}, "required": ["scripts", "persistent"]}, "content_scripts": {"type": "array", "items": {"type": "object", "properties": {"matches": {"type": "array", "items": {"type": "string"}}, "run_at": {"type": "string"}, "js": {"type": "array", "items": {"type": "string"}}}, "required": ["matches", "run_at", "js"]}}}, "required": ["manifest_version", "name", "version", "description", "icons", "author", "homepage_url", "permissions", "browser_action", "optional_permissions", "background", "content_scripts"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"name": {"type": "string"}, "displayName": {"type": "string"}, "author": {"type": "string"}, "version": {"type": "string"}, "unity": {"type": "string"}, "description": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "category": {"type": "string"}}, "required": ["name", "displayName", "author", "version", "unity", "description", "repository", "keywords", "category"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "com.guidoarkesteijn.monkey.tester", "displayName" : "Monkey Tester", "author" : "Guido Arkesteijn", "version" : "0.0.1", "unity" : "2019.1", "description" : "Package for executing monkey test in your project.", "repository" : {"type" : "git", "url" : "https://github.com/guidoarkesteijn/com.guidoarkesteijn.monkey.tester"}, "keywords" : ["monkey", "tester"], "category" : "Unity"}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "displayName": {"type": "string"}, "author": {"type": "string"}, "version": {"type": "string"}, "unity": {"type": "string"}, "description": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "category": {"type": "string"}}, "required": ["name", "displayName", "author", "version", "unity", "description", "repository", "keywords", "category"], "$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" : "f2ee1bcc36b8ee8f3fc8a2895425e03db49e0cd6"}
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}}, "required": ["id"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "array", "items": {"type": "object", "properties": {"errors": {"type": "array", "items": {}}, "file": {"type": "string"}, "name": {"type": "string"}}, "required": ["errors", "file", "name"]}}}, "required": ["contract", "tool", "start", "end", "duration", "analysis"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"contract" : "0x0e27989dcec91ac4ac0ae0591ed17ffaba007fa5", "tool" : "honeybadger", "start" : 1565841111.7323537, "end" : 1565841171.8998294, "duration" : 60.16747570037842, "analysis" : [{"errors" : [], "file" : "/unique_chucks/31/0x0e27989dcec91ac4ac0ae0591ed17ffaba007fa5.sol", "name" : "Fee"}, {"errors" : [], "file" : "/unique_chucks/31/0x0e27989dcec91ac4ac0ae0591ed17ffaba007fa5.sol", "name" : "PantheonEcoSystemNew"}, {"errors" : [], "file" : "/unique_chucks/31/0x0e27989dcec91ac4ac0ae0591ed17ffaba007fa5.sol", "name" : "SafeMath"}, {"errors" : [], "file" : "/unique_chucks/31/0x0e27989dcec91ac4ac0ae0591ed17ffaba007fa5.sol", "name" : "SafeMathInt"}, {"errors" : [], "file" : "/unique_chucks/31/0x0e27989dcec91ac4ac0ae0591ed17ffaba007fa5.sol", "name" : "ToAddress"}]}
json_instruct
{"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "array", "items": {"type": "object", "properties": {"errors": {"type": "array", "items": {}}, "file": {"type": "string"}, "name": {"type": "string"}}, "required": ["errors", "file", "name"]}}}, "required": ["contract", "tool", "start", "end", "duration", "analysis"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "array", "items": {"type": "object", "properties": {"skyblock_id": {"type": "string"}, "quantity": {"type": "string"}, "item_name": {"type": "string"}}, "required": ["skyblock_id", "quantity", "item_name"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"skyblock_id" : "ENCHANTED_PORK", "quantity" : "64", "item_name" : "Enchanted pork"}, {"skyblock_id" : "ENCHANTED_PORK", "quantity" : "64", "item_name" : "Enchanted pork"}, {"skyblock_id" : "ENCHANTED_PORK", "quantity" : "64", "item_name" : "Enchanted pork"}, {"skyblock_id" : "ENCHANTED_PORK", "quantity" : "64", "item_name" : "Enchanted pork"}, {"skyblock_id" : "PIG_GENERATOR_9", "quantity" : "1", "item_name" : "Pig generator 9"}, {"skyblock_id" : "ENCHANTED_PORK", "quantity" : "64", "item_name" : "Enchanted pork"}, {"skyblock_id" : "ENCHANTED_PORK", "quantity" : "64", "item_name" : "Enchanted pork"}, {"skyblock_id" : "ENCHANTED_PORK", "quantity" : "64", "item_name" : "Enchanted pork"}, {"skyblock_id" : "ENCHANTED_PORK", "quantity" : "64", "item_name" : "Enchanted pork"}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"skyblock_id": {"type": "string"}, "quantity": {"type": "string"}, "item_name": {"type": "string"}}, "required": ["skyblock_id", "quantity", "item_name"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"name": {"type": "string"}, "scripts": {"type": "object", "properties": {"jshint": {"type": "string"}, "test": {"type": "string"}}, "required": ["jshint", "test"]}, "pre-commit": {"type": "array", "items": {"type": "string"}}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "license": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"jshint": {"type": "string"}, "mocha": {"type": "string"}}, "required": ["jshint", "mocha"]}, "dependencies": {"type": "object", "properties": {"body-parser": {"type": "string"}, "connect": {"type": "string"}, "graft": {"type": "string"}, "hyperquest": {"type": "string"}, "path-match": {"type": "string"}, "through2": {"type": "string"}}, "required": ["body-parser", "connect", "graft", "hyperquest", "path-match", "through2"]}}, "required": ["name", "scripts", "pre-commit", "repository", "license", "devDependencies", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "graft-http", "scripts" : {"jshint" : "jshint --exclude-path .gitignore .", "test" : "mocha -R spec 2>&1"}, "pre-commit" : ["jshint", "test"], "repository" : {"type" : "git", "url" : "https://github.com/GraftJS/graft-http.git"}, "license" : "MIT", "devDependencies" : {"jshint" : "^2.5.10", "mocha" : "^2.0.1"}, "dependencies" : {"body-parser" : "^1.9.2", "connect" : "^3.3.3", "graft" : "^0.3.1", "hyperquest" : "^1.0.1", "path-match" : "^1.2.2", "through2" : "^0.6.3"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "scripts": {"type": "object", "properties": {"jshint": {"type": "string"}, "test": {"type": "string"}}, "required": ["jshint", "test"]}, "pre-commit": {"type": "array", "items": {"type": "string"}}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "license": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"jshint": {"type": "string"}, "mocha": {"type": "string"}}, "required": ["jshint", "mocha"]}, "dependencies": {"type": "object", "properties": {"body-parser": {"type": "string"}, "connect": {"type": "string"}, "graft": {"type": "string"}, "hyperquest": {"type": "string"}, "path-match": {"type": "string"}, "through2": {"type": "string"}}, "required": ["body-parser", "connect", "graft", "hyperquest", "path-match", "through2"]}}, "required": ["name", "scripts", "pre-commit", "repository", "license", "devDependencies", "dependencies"], "$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"}, "males": {"type": "string"}, "females": {"type": "string"}}, "required": ["name", "frequency", "males", "females"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"name" : "CAROLYN", "frequency" : 561345, "males" : "0.2905521559825063 %", "females" : "99.70944784401749 %"}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "frequency": {"type": "integer"}, "males": {"type": "string"}, "females": {"type": "string"}}, "required": ["name", "frequency", "males", "females"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"extends": {"type": "array", "items": {"type": "string"}}}, "required": ["extends"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"extends" : ["github>tophat/new-project-kit//.github/renovate"]}
json_instruct
{"type": "object", "properties": {"extends": {"type": "array", "items": {"type": "string"}}}, "required": ["extends"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"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" : "9104040004", "district_id" : "9104040", "name" : "MAMURANU"}
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "district_id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "district_id", "name"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"id": {"type": "integer"}, "date": {"type": "string"}, "user": {"type": "string"}, "post": {"type": "string"}}, "required": ["id", "date", "user", "post"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : 9882, "date" : "2013-04-21 07:38:33", "user" : "BlueVM", "post" : "Now through Monday BlueVM is having a sale on it's OpenVZ VPS in Illinois. Deals include:\r\n\r\n**BLUE1** - Normally $28.00 /Yr NOW: $20 /Yr (**Coupon Code:** ILLINOIS1)\r\n256 MB of Guaranteed RAM\r\n512 MB of Burstable RAM\r\n1 CPU @ 2.0+ Ghz\r\n1 IP Address\r\n10 GB of Disk\r\n500 GB of Bandwidth\r\n&lt;a href=\"https://www.bluevm.com/cart.php?a=add&amp;pid=159\"&gt;Click Here To Order&lt;/a&gt;\r\n\r\n**BLUE3** - Normally $80.00 /Yr NOW: $39 /Yr (**Coupon Code:** ILLINOIS3)\r\n1024 MB of Guaranteed RAM\r\n2048 MB of Burstable RAM\r\n3 CPU @ 2.0+ Ghz\r\n1 IP Address\r\n50 GB of Disk\r\n2 TB of Bandwidth\r\n&lt;a href=\"https://www.bluevm.com/cart.php?a=add&amp;pid=169\"&gt;Click Here To Order&lt;/a&gt;\r\n\r\n**Quick FAQ:**\r\nQ: Why does this deal only apply to Illinois?\r\nA: We have some extra space on our Illinois nodes that we'd like to fill.\r\n\r\nQ: Can I transfer this VPS to another one of your locations?\r\nA: Yes you can, simply submit a ticket after purchasing and we will move your VPS.\r\n\r\nQ: Will the price be the same next year?\r\nA: Yes as always our prices are locked in for the life of your VPS.\r\n\r\nQ: What is your network speed? Can I have some test files or IPs?\r\nA: Our network is at 1 Gbps and here's the test information:\r\n\r\nTest IP: s3.c56.il.bluevm.com\r\nTest File: http://s3.c56.il.bluevm.com/100mb.test"}
json_instruct
{"type": "object", "properties": {"id": {"type": "integer"}, "date": {"type": "string"}, "user": {"type": "string"}, "post": {"type": "string"}}, "required": ["id", "date", "user", "post"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"}
["from math import sqrt\nclass pro(object):\n def __init__(self,dif,sc):\n self.dif=dif\n self.sc=sc\n\n def __lt__(self,other):\n return self.dif>other.dif\n\nT=int(input())\nmul=[1]\nfor i in range(100):\n mul.append(mul[i]*10/9)\ninf=1000000007\nfor t in range(T):\n n=int(input())\n effi,tim=list(map(float,input().split()))\n prob=[]\n for i in range(n):\n x,y=list(map(int,input().split()))\n prob.append(pro(x,y))\n prob.sort()\n f=[[inf for i in range(n+1)] for j in range(1001)]\n f[0][0]=0\n totsc=0\n for i in range(n):\n totsc+=prob[i].sc\n for j in range(totsc,prob[i].sc-1,-1):\n for k in range(1,i+2):\n f[j][k]=min(f[j][k],f[j-prob[i].sc][k-1]+prob[i].dif*mul[k])\n for i in range(totsc,-1,-1):\n flag=False\n for j in range(n+1):\n if sqrt(effi*f[i][j])>=1:\n res=2*sqrt(f[i][j]/effi)-1/effi+10*j\n else:\n res=f[i][j]+10*j\n if res<=tim:\n print(i)\n flag=True\n break\n if flag==True:\n break\n"]
json_instruct
{"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "properties": {"type": "object", "properties": {"id": {"type": "string"}, "type": {"type": "string"}, "name": {"type": "string"}, "code": {"type": "string"}}, "required": ["id", "type", "name", "code"]}}, "required": ["type", "coordinates", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"type" : "MultiPolygon", "coordinates" : [[[[-80.141685, 26.647868], [-80.141657, 26.645086], [-80.14195705399996, 26.645036646000047], [-80.14227685399997, 26.644990960000023], [-80.14258523199996, 26.645002381000033], [-80.14381874499995, 26.645265074000058], [-80.14410427999994, 26.64528791700007], [-80.14469819299994, 26.64521938800004], [-80.14512078599994, 26.645196545000026], [-80.14555479899995, 26.645242231000047], [-80.14546342799994, 26.647572199000017], [-80.14545200699995, 26.64891992600007], [-80.14171891399995, 26.648805038000027], [-80.141712, 26.648553], [-80.141685, 26.647868]]]], "properties" : {"id" : "usa-fl-greenacres-the-pines-neighborhood", "type" : "neighborhood", "name" : "The Pines", "code" : "763337"}}
json_instruct
{"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "properties": {"type": "object", "properties": {"id": {"type": "string"}, "type": {"type": "string"}, "name": {"type": "string"}, "code": {"type": "string"}}, "required": ["id", "type", "name", "code"]}}, "required": ["type", "coordinates", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "array", "items": {"type": "object", "properties": {"date": {"type": "string"}, "sloc": {"type": "integer"}, "lloc": {"type": "integer"}, "functions": {"type": "integer"}, "deliveredBugs": {"type": "number"}, "difficulty": {"type": "number"}, "maintainability": {"type": "number"}, "lintErrors": {"type": "array", "items": {}}}, "required": ["date", "sloc", "lloc", "functions", "deliveredBugs", "difficulty", "maintainability", "lintErrors"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"date" : "Wed, 12 Sep 2018 05:58:42 GMT", "sloc" : 24, "lloc" : 10, "functions" : 1, "deliveredBugs" : 0.083, "difficulty" : 13.594, "maintainability" : 63.484, "lintErrors" : []}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"date": {"type": "string"}, "sloc": {"type": "integer"}, "lloc": {"type": "integer"}, "functions": {"type": "integer"}, "deliveredBugs": {"type": "number"}, "difficulty": {"type": "number"}, "maintainability": {"type": "number"}, "lintErrors": {"type": "array", "items": {}}}, "required": ["date", "sloc", "lloc", "functions", "deliveredBugs", "difficulty", "maintainability", "lintErrors"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"brief": {"type": "string"}, "long": {"type": "string"}}, "required": ["brief", "long"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"brief" : "become pale", "long" : "<i>Meaning:</i> properly, to \"become pale\", i.e. (by implication) to \"pine after\"; also to \"fear\".<br/><i>Usage:</i> (have) desire, be greedy, long, sore.<br/><i>Source:</i> a primitive root;"}
json_instruct
{"type": "object", "properties": {"brief": {"type": "string"}, "long": {"type": "string"}}, "required": ["brief", "long"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"n_dim": {"type": "integer"}, "n_trials": {"type": "integer"}, "objective": {"type": "string"}, "white": {"type": "string"}, "black": {"type": "string"}, "traceback": {"type": "array", "items": {"type": "string"}}, "best_val": {"type": "array", "items": {"type": "number"}}, "best_x": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}, "feval_count": {"type": "array", "items": {"type": "integer"}}, "n_trials_instructed": {"type": "array", "items": {"type": "integer"}}, "passing": {"type": "array", "items": {"type": "boolean"}}, "completed": {"type": "boolean"}, "points": {"type": "number"}, "winner": {"type": "string"}, "loser": {"type": "string"}}, "required": ["n_dim", "n_trials", "objective", "white", "black", "traceback", "best_val", "best_x", "feval_count", "n_trials_instructed", "passing", "completed", "points", "winner", "loser"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"n_dim" : 5, "n_trials" : 130, "objective" : "griewank_on_cube", "white" : "optuna_cmaes", "black" : "platypus_epsmoea", "traceback" : ["passing", "passing"], "best_val" : [1.4174068403031126, 45.97506675957648], "best_x" : [[0.5306504719075806, 0.5186384499512122, 0.5151744691737082, 0.5229360258945461, 0.5391858692329957], [0.5204699588165181, 0.5292804969703372, 0.5399024178398073, 0.7194080645172848, 0.3725859362012308]], "feval_count" : [130, 130], "n_trials_instructed" : [130, 130], "passing" : [true, true], "completed" : true, "points" : 1.0, "winner" : "optuna_cmaes", "loser" : "platypus_epsmoea"}
json_instruct
{"type": "object", "properties": {"n_dim": {"type": "integer"}, "n_trials": {"type": "integer"}, "objective": {"type": "string"}, "white": {"type": "string"}, "black": {"type": "string"}, "traceback": {"type": "array", "items": {"type": "string"}}, "best_val": {"type": "array", "items": {"type": "number"}}, "best_x": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}, "feval_count": {"type": "array", "items": {"type": "integer"}}, "n_trials_instructed": {"type": "array", "items": {"type": "integer"}}, "passing": {"type": "array", "items": {"type": "boolean"}}, "completed": {"type": "boolean"}, "points": {"type": "number"}, "winner": {"type": "string"}, "loser": {"type": "string"}}, "required": ["n_dim", "n_trials", "objective", "white", "black", "traceback", "best_val", "best_x", "feval_count", "n_trials_instructed", "passing", "completed", "points", "winner", "loser"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"lastUpdated": {"type": "integer"}, "username": {"type": "string"}, "scores": {"type": "array", "items": {"type": "object", "properties": {"xp": {"type": "integer"}, "rank": {"type": "integer"}, "cardId": {"type": "integer"}}, "required": ["xp", "rank", "cardId"]}}}, "required": ["lastUpdated", "username", "scores"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"lastUpdated" : 1655019279666, "username" : "demonking022608", "scores" : [{"xp" : 2934, "rank" : 303, "cardId" : 587}]}
json_instruct
{"type": "object", "properties": {"lastUpdated": {"type": "integer"}, "username": {"type": "string"}, "scores": {"type": "array", "items": {"type": "object", "properties": {"xp": {"type": "integer"}, "rank": {"type": "integer"}, "cardId": {"type": "integer"}}, "required": ["xp", "rank", "cardId"]}}}, "required": ["lastUpdated", "username", "scores"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "dependencies": {"type": "object", "properties": {}, "required": []}, "devDependencies": {"type": "object", "properties": {"gulp": {"type": "string"}, "gulp-concat": {"type": "string"}, "gulp-csso": {"type": "string"}, "gulp-image": {"type": "string"}, "gulp-minify": {"type": "string"}, "gulp-order": {"type": "string"}, "gulp-sass": {"type": "string"}, "gulp-sourcemaps": {"type": "string"}, "node-sass": {"type": "string"}}, "required": ["gulp", "gulp-concat", "gulp-csso", "gulp-image", "gulp-minify", "gulp-order", "gulp-sass", "gulp-sourcemaps", "node-sass"]}, "scripts": {"type": "object", "properties": {"build": {"type": "string"}, "test": {"type": "string"}}, "required": ["build", "test"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "keywords": {"type": "array", "items": {}}, "author": {"type": "string"}, "license": {"type": "string"}, "homepage": {"type": "string"}}, "required": ["name", "version", "description", "main", "dependencies", "devDependencies", "scripts", "repository", "keywords", "author", "license", "homepage"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "pcgw-assignments", "version" : "1.0.0", "description" : "[PCGW Assignments](https://assignments.pcgamingwiki.com) is a CMS platform for PC video game assignments, as well as handling allocation and facilitating the process of applying for assignments by end-users.", "main" : "index.js", "dependencies" : {}, "devDependencies" : {"gulp" : "^3.9.1", "gulp-concat" : "^2.6.1", "gulp-csso" : "^3.0.1", "gulp-image" : "^4.3.0", "gulp-minify" : "^3.1.0", "gulp-order" : "^1.1.1", "gulp-sass" : "^4.0.1", "gulp-sourcemaps" : "^2.6.4", "node-sass" : "^4.9.3"}, "scripts" : {"build" : "gulp", "test" : "echo \"Error: no test specified\" && exit 1"}, "repository" : {"type" : "git", "url" : "git+ssh://git@bitbucket.org/Pridit/pcgw-assignments.git"}, "keywords" : [], "author" : "", "license" : "ISC", "homepage" : "https://bitbucket.org/Pridit/pcgw-assignments#readme"}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "dependencies": {"type": "object", "properties": {}, "required": []}, "devDependencies": {"type": "object", "properties": {"gulp": {"type": "string"}, "gulp-concat": {"type": "string"}, "gulp-csso": {"type": "string"}, "gulp-image": {"type": "string"}, "gulp-minify": {"type": "string"}, "gulp-order": {"type": "string"}, "gulp-sass": {"type": "string"}, "gulp-sourcemaps": {"type": "string"}, "node-sass": {"type": "string"}}, "required": ["gulp", "gulp-concat", "gulp-csso", "gulp-image", "gulp-minify", "gulp-order", "gulp-sass", "gulp-sourcemaps", "node-sass"]}, "scripts": {"type": "object", "properties": {"build": {"type": "string"}, "test": {"type": "string"}}, "required": ["build", "test"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "keywords": {"type": "array", "items": {}}, "author": {"type": "string"}, "license": {"type": "string"}, "homepage": {"type": "string"}}, "required": ["name", "version", "description", "main", "dependencies", "devDependencies", "scripts", "repository", "keywords", "author", "license", "homepage"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"builtin": {"type": "object", "properties": {"__set__": {"type": "boolean"}, "elements": {"type": "array", "items": {"type": "string"}}}, "required": ["__set__", "elements"]}, "required": {"type": "object", "properties": {"__set__": {"type": "boolean"}, "elements": {"type": "array", "items": {"type": "string"}}}, "required": ["__set__", "elements"]}}, "required": ["builtin", "required"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"builtin" : {"__set__" : true, "elements" : ["abc", "distutils", "os", "sys"]}, "required" : {"__set__" : true, "elements" : ["astropy", "matplotlib", "numpy", "portion", "pytest", "satmad", "scipy", "sgp4"]}}
json_instruct
{"type": "object", "properties": {"builtin": {"type": "object", "properties": {"__set__": {"type": "boolean"}, "elements": {"type": "array", "items": {"type": "string"}}}, "required": ["__set__", "elements"]}, "required": {"type": "object", "properties": {"__set__": {"type": "boolean"}, "elements": {"type": "array", "items": {"type": "string"}}}, "required": ["__set__", "elements"]}}, "required": ["builtin", "required"], "$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"}, "queryName": {"type": "string"}, "severity": {"type": "string"}, "category": {"type": "string"}, "descriptionText": {"type": "string"}, "descriptionUrl": {"type": "string"}, "platform": {"type": "string"}}, "required": ["id", "queryName", "severity", "category", "descriptionText", "descriptionUrl", "platform"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : "682fe378-c180-4bd5-8a14-95fc285fb269", "queryName" : "Run Using Upgrade Commands", "severity" : "HIGH", "category" : "Package Management", "descriptionText" : "Commands 'apt-get upgrade' and 'apt-get dist-upgrade' should not be used", "descriptionUrl" : "https://docs.docker.com/develop/develop-images/dockerfile_best-practices/", "platform" : "Dockerfile"}
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "queryName": {"type": "string"}, "severity": {"type": "string"}, "category": {"type": "string"}, "descriptionText": {"type": "string"}, "descriptionUrl": {"type": "string"}, "platform": {"type": "string"}}, "required": ["id", "queryName", "severity", "category", "descriptionText", "descriptionUrl", "platform"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"": {"type": "object", "properties": {"title": {"type": "string"}, "description": {"type": "string"}, "keywords": {"type": "string"}}, "required": ["title", "description", "keywords"]}, "404": {"type": "object", "properties": {"title": {"type": "string"}, "description": {"type": "string"}}, "required": ["title", "description"]}, "getting-started/quick-start": {"type": "object", "properties": {"title": {"type": "string"}, "keywords": {"type": "string"}}, "required": ["title", "keywords"]}, "getting-started/pre-made-layouts": {"type": "object", "properties": {"title": {"type": "string"}, "keywords": {"type": "string"}}, "required": ["title", "keywords"]}, "getting-started/unit-testing": {"type": "object", "properties": {"title": {"type": "string"}, "description": {"type": "string"}}, "required": ["title", "description"]}, "introduction/why-vuetify": {"type": "object", "properties": {"title": {"type": "string"}, "description": {"type": "string"}}, "required": ["title", "description"]}, "customization/theme": {"type": "object", "properties": {"description": {"type": "string"}}, "required": ["description"]}}, "required": ["", "404", "getting-started/quick-start", "getting-started/pre-made-layouts", "getting-started/unit-testing", "introduction/why-vuetify", "customization/theme"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"" : {"title" : "\u30de\u30c6\u30ea\u30a2\u30eb\u30c7\u30b6\u30a4\u30f3\u30b3\u30f3\u30dd\u30fc\u30cd\u30f3\u30c8\u30d5\u30ec\u30fc\u30e0\u30ef\u30fc\u30af", "description" : "Vuetify\u306fVue.js\u306e\u30de\u30c6\u30ea\u30a2\u30eb\u30c7\u30b6\u30a4\u30f3\u30b3\u30f3\u30dd\u30fc\u30cd\u30f3\u30c8\u30d5\u30ec\u30fc\u30e0\u30ef\u30fc\u30af\u3067\u3059\u3002\u7f8e\u3057\u3044\u30b3\u30f3\u30c6\u30f3\u30c4\u3092\u6301\u3064\u30ea\u30c3\u30c1\u30a2\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3\u3092\u4f5c\u6210\u3059\u308b\u306e\u306b\u5fc5\u8981\u4e0d\u53ef\u6b20\u306a\u30c4\u30fc\u30eb\u3092\u63d0\u4f9b\u3059\u308b\u3053\u3068\u3092\u76ee\u7684\u3068\u3057\u3066\u3044\u307e\u3059\u3002", "keywords" : "vue, material design components, vue components, material design components, vuetify, vuetify.js, component framework"}, "404" : {"title" : "\u304a\u3063\u3068\u3001404\u306e\u3088\u3046\u3067\u3059\u3002", "description" : "\u304a\u3063\u3068\u3001\u3042\u306a\u305f\u304c\u63a2\u3057\u3066\u3044\u308b\u3082\u306e\u306f\u3053\u3053\u306b\u306f\u306a\u3044\u3088\u3046\u3067\u3059\u3002"}, "getting-started/quick-start" : {"title" : "\u30af\u30a4\u30c3\u30af\u30b9\u30bf\u30fc\u30c8", "keywords" : "quick start, vuetify templates, get started"}, "getting-started/pre-made-layouts" : {"title" : "\u30a2\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3\u30ec\u30a4\u30a2\u30a6\u30c8", "keywords" : "\u4e8b\u524d\u5b9a\u7fa9\u3055\u308c\u305f\u30ec\u30a4\u30a2\u30a6\u30c8\u3001\u30ec\u30a4\u30a2\u30a6\u30c8\u3001\u30a2\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3\u30ec\u30a4\u30a2\u30a6\u30c8\u3001\u30de\u30c6\u30ea\u30a2\u30eb\u30c7\u30b6\u30a4\u30f3\u30ec\u30a4\u30a2\u30a6\u30c8"}, "getting-started/unit-testing" : {"title" : "\u30e6\u30cb\u30c3\u30c8\u30c6\u30b9\u30c8", "description" : "\u3042\u306a\u305f\u306eVue\u30a2\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3\u5185\u3067Vuetify\u30b3\u30f3\u30dd\u30fc\u30cd\u30f3\u30c8\u3068vue-test-utils\u3092\u4f7f\u3063\u3066\u30e6\u30cb\u30c3\u30c8\u30c6\u30b9\u30c8\u3092\u66f8\u304f\u65b9\u6cd5\u3092\u5b66\u3076\u3002"}, "introduction/why-vuetify" : {"title" : "Vuetify\u3092\u9078\u3076\u7406\u7531", "description" : "Vuetify\u306f\u3068\u3066\u3082\u30a2\u30af\u30c6\u30a3\u30d6\u306a\u30b3\u30df\u30e5\u30cb\u30c6\u30a3\u304c\u3042\u308a\u3001\u30de\u30c6\u30ea\u30a2\u30eb\u30c7\u30b6\u30a4\u30f3\u30b3\u30f3\u30dd\u30fc\u30cd\u30f3\u30c8\u306e\u7c21\u5358\u306a\u4f7f\u3044\u65b9\u3092\u63d0\u4f9b\u3057\u3066\u3044\u307e\u3059\u3002\u307e\u305f\u3001\u305d\u308c\u306f\u7d99\u7d9a\u7684\u306b\u30a2\u30c3\u30d7\u30c7\u30fc\u30c8\u3055\u308c\u307e\u3059\u3002"}, "customization/theme" : {"description" : "Setup your custom application theme by changing a few variables."}}
json_instruct
{"type": "object", "properties": {"": {"type": "object", "properties": {"title": {"type": "string"}, "description": {"type": "string"}, "keywords": {"type": "string"}}, "required": ["title", "description", "keywords"]}, "404": {"type": "object", "properties": {"title": {"type": "string"}, "description": {"type": "string"}}, "required": ["title", "description"]}, "getting-started/quick-start": {"type": "object", "properties": {"title": {"type": "string"}, "keywords": {"type": "string"}}, "required": ["title", "keywords"]}, "getting-started/pre-made-layouts": {"type": "object", "properties": {"title": {"type": "string"}, "keywords": {"type": "string"}}, "required": ["title", "keywords"]}, "getting-started/unit-testing": {"type": "object", "properties": {"title": {"type": "string"}, "description": {"type": "string"}}, "required": ["title", "description"]}, "introduction/why-vuetify": {"type": "object", "properties": {"title": {"type": "string"}, "description": {"type": "string"}}, "required": ["title", "description"]}, "customization/theme": {"type": "object", "properties": {"description": {"type": "string"}}, "required": ["description"]}}, "required": ["", "404", "getting-started/quick-start", "getting-started/pre-made-layouts", "getting-started/unit-testing", "introduction/why-vuetify", "customization/theme"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"blockedDays": {"type": "integer"}, "punishTime": {"type": "integer"}, "id": {"type": "integer"}, "blockedForever": {"type": "boolean"}, "uid": {"type": "integer"}, "uname": {"type": "string"}, "moralNum": {"type": "integer"}, "originContentModify": {"type": "string"}, "blockedType": {"type": "integer"}, "punishType": {"type": "integer"}, "originType": {"type": "integer"}, "reasonTypeName": {"type": "string"}, "punishTitle": {"type": "string"}, "commentSum": {"type": "integer"}, "reasonType": {"type": "integer"}}, "required": ["blockedDays", "punishTime", "id", "blockedForever", "uid", "uname", "moralNum", "originContentModify", "blockedType", "punishType", "originType", "reasonTypeName", "punishTitle", "commentSum", "reasonType"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"blockedDays" : 7, "punishTime" : 1502347475000, "id" : 52591, "blockedForever" : false, "uid" : 49307812, "uname" : "", "moralNum" : 20, "originContentModify" : "<p>*\u8bed\u5341\u7ea7<br></p><p><br></p><p>\u6279\u6ce8\uff1a\u5f15\u6218\u4e00\u7ea7</p><p>\uff08\u5982\u679c\u4e0d\u6d89\u53ca\u7a7a\u8033\u76f8\u5173\u5185\u5bb9\uff0c\u8bf7\u52ff\u5728\u5ba0\u7269\u533a\u53d1\u5e03\u8bf8\u5982\u6c49\u8bed/\u65e5\u8bed/\u97e9\u8bedX\u7ea7\u7b49\u53ef\u80fd\u6d89\u53ca\u4fae\u8fb1\u6027\u63cf\u8ff0\u7684\u5f39\u5e55\u5185\u5bb9\uff09</p>", "blockedType" : 0, "punishType" : 2, "originType" : 2, "reasonTypeName" : "\u53d1\u5e03\u5f15\u6218\u8a00\u8bba", "punishTitle" : "\u5728\u5f39\u5e55\u4e2d\u53d1\u5e03\u5f15\u6218\u8a00\u8bba", "commentSum" : 282, "reasonType" : 9}
json_instruct
{"type": "object", "properties": {"blockedDays": {"type": "integer"}, "punishTime": {"type": "integer"}, "id": {"type": "integer"}, "blockedForever": {"type": "boolean"}, "uid": {"type": "integer"}, "uname": {"type": "string"}, "moralNum": {"type": "integer"}, "originContentModify": {"type": "string"}, "blockedType": {"type": "integer"}, "punishType": {"type": "integer"}, "originType": {"type": "integer"}, "reasonTypeName": {"type": "string"}, "punishTitle": {"type": "string"}, "commentSum": {"type": "integer"}, "reasonType": {"type": "integer"}}, "required": ["blockedDays", "punishTime", "id", "blockedForever", "uid", "uname", "moralNum", "originContentModify", "blockedType", "punishType", "originType", "reasonTypeName", "punishTitle", "commentSum", "reasonType"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"commandDescription": {"type": "string"}, "nameFlagDescription": {"type": "string"}, "forceFlagDescription": {"type": "string"}, "errorNoOrgResults": {"type": "string"}, "dataIdDescription": {"type": "string"}, "webstoreIdDescription": {"type": "string"}, "nameDescription": {"type": "string"}}, "required": ["commandDescription", "nameFlagDescription", "forceFlagDescription", "errorNoOrgResults", "dataIdDescription", "webstoreIdDescription", "nameDescription"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"commandDescription" : "print a greeting and your org IDs", "nameFlagDescription" : "name to print", "forceFlagDescription" : "example boolean flag", "errorNoOrgResults" : "No results found for the org '%s'.", "dataIdDescription" : "ID of a file in FFX; CSV only for 230; JSON and XML (?) planned for the future. To be imported into the store", "webstoreIdDescription" : "the ID of the webstore to import to, will fetch/create the defaults associated with this webstore if needed. This is or the name is required.", "nameDescription" : "The name of the webstore to import to that was created. This or the webstoreId is required"}
json_instruct
{"type": "object", "properties": {"commandDescription": {"type": "string"}, "nameFlagDescription": {"type": "string"}, "forceFlagDescription": {"type": "string"}, "errorNoOrgResults": {"type": "string"}, "dataIdDescription": {"type": "string"}, "webstoreIdDescription": {"type": "string"}, "nameDescription": {"type": "string"}}, "required": ["commandDescription", "nameFlagDescription", "forceFlagDescription", "errorNoOrgResults", "dataIdDescription", "webstoreIdDescription", "nameDescription"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"loss": {"type": "number"}, "elapsed_time": {"type": "number"}, "epoch": {"type": "integer"}, "worker": {"type": "integer"}}, "required": ["loss", "elapsed_time", "epoch", "worker"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"loss" : 2.018842935562134, "elapsed_time" : 114.302595, "epoch" : 2, "worker" : 2}
json_instruct
{"type": "object", "properties": {"loss": {"type": "number"}, "elapsed_time": {"type": "number"}, "epoch": {"type": "integer"}, "worker": {"type": "integer"}}, "required": ["loss", "elapsed_time", "epoch", "worker"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"formly-material.js": {"type": "string"}, "formly-material.min.js": {"type": "string"}}, "required": ["formly-material.js", "formly-material.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"formly-material.js" : "sha256-mgaoNJtBybrd0liQf2wlTeimaDo+73Pq8sIsEqUXYJo=", "formly-material.min.js" : "sha256-LrqXyJo+c0uPnWkJ9OUGr+JqHX6o91MnoKOOBgPmHZM="}
json_instruct
{"type": "object", "properties": {"formly-material.js": {"type": "string"}, "formly-material.min.js": {"type": "string"}}, "required": ["formly-material.js", "formly-material.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"id": {"type": "string"}, "variable1": {"type": "number"}, "variable2": {"type": "number"}, "variable3": {"type": "string"}}, "required": ["id", "variable1", "variable2", "variable3"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : "170402070304", "variable1" : 0.2795, "variable2" : 0.0986, "variable3" : "B"}
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "variable1": {"type": "number"}, "variable2": {"type": "number"}, "variable3": {"type": "string"}}, "required": ["id", "variable1", "variable2", "variable3"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"GLSL": {"type": "integer"}, "Python": {"type": "integer"}, "Shell": {"type": "integer"}, "C++": {"type": "integer"}}, "required": ["GLSL", "Python", "Shell", "C++"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"GLSL" : 808846, "Python" : 65310, "Shell" : 39647, "C++" : 7651}
json_instruct
{"type": "object", "properties": {"GLSL": {"type": "integer"}, "Python": {"type": "integer"}, "Shell": {"type": "integer"}, "C++": {"type": "integer"}}, "required": ["GLSL", "Python", "Shell", "C++"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"plot": {"type": "object", "properties": {"type": {"type": "string"}, "title": {"type": "string"}, "style": {"type": "string"}, "downloadTypes": {"type": "array", "items": {"type": "object", "properties": {"key": {"type": "string"}, "label": {"type": "string"}}, "required": ["key", "label"]}}, "xAxis": {"type": "object", "properties": {"scale": {"type": "string"}, "label": {"type": "string"}, "ticks": {"type": "string"}, "weight": {"type": "string"}, "tickFormat": {"type": "string"}}, "required": ["scale", "label", "ticks", "weight", "tickFormat"]}, "y1Axis": {"type": "object", "properties": {"scale": {"type": "string"}, "label": {"type": "string"}, "ticks": {"type": "string"}, "weight": {"type": "string"}, "tickFormat": {"type": "string"}}, "required": ["scale", "label", "ticks", "weight", "tickFormat"]}, "data": {"type": "object", "properties": {"series": {"type": "array", "items": {"type": "object", "properties": {"data_source": {"type": "object", "properties": {"observed_property": {"type": "string"}, "offering": {"type": "string"}, "feature": {"type": "string"}, "t_bounds": {"type": "array", "items": {"type": "string"}}, "threddsUrl": {"type": "string"}}, "required": ["observed_property", "offering", "feature", "t_bounds", "threddsUrl"]}, "label": {"type": "string"}, "yAxis": {"type": "integer"}, "type": {"type": "string"}, "meta": {"type": "string"}}, "required": ["data_source", "label", "yAxis", "type", "meta"]}}}, "required": ["series"]}, "is_standalone": {"type": "boolean"}}, "required": ["type", "title", "style", "downloadTypes", "xAxis", "y1Axis", "data", "is_standalone"]}, "style": {"type": "object", "properties": {"logos": {"type": "array", "items": {}}}, "required": ["logos"]}}, "required": ["plot", "style"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"plot" : {"type" : "timeseries-sos", "title" : "Penlee Point Air Temperature (test)", "style" : "boxfill/rainbow", "downloadTypes" : [{"key" : "csv", "label" : "CSV"}, {"key" : "png", "label" : "PNG"}, {"key" : "meta-data", "label" : "Meta Data"}, {"key" : "logos", "label" : "Logos"}, {"key" : "svg", "label" : "SVG"}], "xAxis" : {"scale" : "linear", "label" : "Date/Time", "ticks" : "auto", "weight" : "auto", "tickFormat" : "%d/%m/%Y"}, "y1Axis" : {"scale" : "linear", "label" : "Air Pressure (millibars)", "ticks" : "auto", "weight" : "auto", "tickFormat" : "auto"}, "data" : {"series" : [{"data_source" : {"observed_property" : "http://mmisw.org/ont/cf/parameter/air_pressure", "offering" : "PenleeMetData", "feature" : "penlee", "t_bounds" : ["2015-01-02T13:50:00.000Z", "2016-09-08T11:00:00.000Z"], "threddsUrl" : "http://10.7.0.36:8080/sensorweb/service"}, "label" : "1) Penlee Point Air Temperature (deg C)", "yAxis" : 1, "type" : "line", "meta" : "Metadata goes here"}]}, "is_standalone" : true}, "style" : {"logos" : []}}
json_instruct
{"type": "object", "properties": {"plot": {"type": "object", "properties": {"type": {"type": "string"}, "title": {"type": "string"}, "style": {"type": "string"}, "downloadTypes": {"type": "array", "items": {"type": "object", "properties": {"key": {"type": "string"}, "label": {"type": "string"}}, "required": ["key", "label"]}}, "xAxis": {"type": "object", "properties": {"scale": {"type": "string"}, "label": {"type": "string"}, "ticks": {"type": "string"}, "weight": {"type": "string"}, "tickFormat": {"type": "string"}}, "required": ["scale", "label", "ticks", "weight", "tickFormat"]}, "y1Axis": {"type": "object", "properties": {"scale": {"type": "string"}, "label": {"type": "string"}, "ticks": {"type": "string"}, "weight": {"type": "string"}, "tickFormat": {"type": "string"}}, "required": ["scale", "label", "ticks", "weight", "tickFormat"]}, "data": {"type": "object", "properties": {"series": {"type": "array", "items": {"type": "object", "properties": {"data_source": {"type": "object", "properties": {"observed_property": {"type": "string"}, "offering": {"type": "string"}, "feature": {"type": "string"}, "t_bounds": {"type": "array", "items": {"type": "string"}}, "threddsUrl": {"type": "string"}}, "required": ["observed_property", "offering", "feature", "t_bounds", "threddsUrl"]}, "label": {"type": "string"}, "yAxis": {"type": "integer"}, "type": {"type": "string"}, "meta": {"type": "string"}}, "required": ["data_source", "label", "yAxis", "type", "meta"]}}}, "required": ["series"]}, "is_standalone": {"type": "boolean"}}, "required": ["type", "title", "style", "downloadTypes", "xAxis", "y1Axis", "data", "is_standalone"]}, "style": {"type": "object", "properties": {"logos": {"type": "array", "items": {}}}, "required": ["logos"]}}, "required": ["plot", "style"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "friendlyName": {"type": "string"}, "description": {"type": "string"}, "author": {"type": "string"}, "helpMarkDown": {"type": "string"}, "category": {"type": "string"}, "demands": {"type": "array", "items": {}}, "version": {"type": "object", "properties": {"Major": {"type": "string"}, "Minor": {"type": "string"}, "Patch": {"type": "string"}}, "required": ["Major", "Minor", "Patch"]}, "minimumAgentVersion": {"type": "string"}, "execution": {"type": "object", "properties": {"Node": {"type": "object", "properties": {"target": {"type": "string"}, "argumentFormat": {"type": "string"}, "workingDirectory": {"type": "string"}}, "required": ["target", "argumentFormat", "workingDirectory"]}}, "required": ["Node"]}, "instanceNameFormat": {"type": "string"}, "inputs": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "type": {"type": "string"}, "label": {"type": "string"}, "defaultValue": {"type": "string"}, "required": {"type": "boolean"}, "helpMarkDown": {"type": "string"}}, "required": ["name", "type", "label", "defaultValue", "required", "helpMarkDown"]}}}, "required": ["id", "name", "friendlyName", "description", "author", "helpMarkDown", "category", "demands", "version", "minimumAgentVersion", "execution", "instanceNameFormat", "inputs"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : "a06c02ae-7b9a-4082-90dc-fe27b500e54f", "name" : "gitversion/setup", "friendlyName" : "Setup GitVersion Task", "description" : "Easy Semantic Versioning (http://semver.org) for projects using Git", "author" : "GitTools Contributors", "helpMarkDown" : "See the [documentation](https://gitversion.net/docs/) for help", "category" : "Build", "demands" : [], "version" : {"Major" : "1", "Minor" : "0", "Patch" : "0"}, "minimumAgentVersion" : "2.115.0", "execution" : {"Node" : {"target" : "bundle.js", "argumentFormat" : "", "workingDirectory" : "."}}, "instanceNameFormat" : "gitversion/setup", "inputs" : [{"name" : "versionSpec", "type" : "string", "label" : "The version spec", "defaultValue" : "", "required" : true, "helpMarkDown" : "Required version in the form of 5.x or exact version like 5.0.0"}, {"name" : "includePrerelease", "type" : "boolean", "label" : "Include pre-release versions", "defaultValue" : "false", "required" : false, "helpMarkDown" : "Include pre-release versions when matching a version"}]}
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "friendlyName": {"type": "string"}, "description": {"type": "string"}, "author": {"type": "string"}, "helpMarkDown": {"type": "string"}, "category": {"type": "string"}, "demands": {"type": "array", "items": {}}, "version": {"type": "object", "properties": {"Major": {"type": "string"}, "Minor": {"type": "string"}, "Patch": {"type": "string"}}, "required": ["Major", "Minor", "Patch"]}, "minimumAgentVersion": {"type": "string"}, "execution": {"type": "object", "properties": {"Node": {"type": "object", "properties": {"target": {"type": "string"}, "argumentFormat": {"type": "string"}, "workingDirectory": {"type": "string"}}, "required": ["target", "argumentFormat", "workingDirectory"]}}, "required": ["Node"]}, "instanceNameFormat": {"type": "string"}, "inputs": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "type": {"type": "string"}, "label": {"type": "string"}, "defaultValue": {"type": "string"}, "required": {"type": "boolean"}, "helpMarkDown": {"type": "string"}}, "required": ["name", "type", "label", "defaultValue", "required", "helpMarkDown"]}}}, "required": ["id", "name", "friendlyName", "description", "author", "helpMarkDown", "category", "demands", "version", "minimumAgentVersion", "execution", "instanceNameFormat", "inputs"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"label": {"type": "string"}, "u2f": {"type": "string"}}, "required": ["label", "u2f"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"label" : "GitHub", "u2f" : "https://github.com/u2f/trusted_facets"}
json_instruct
{"type": "object", "properties": {"label": {"type": "string"}, "u2f": {"type": "string"}}, "required": ["label", "u2f"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "district_id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "district_id", "name"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"id" : "3374160001", "district_id" : "3374160", "name" : "PODOREJO"}, {"id" : "3374160002", "district_id" : "3374160", "name" : "WATES"}, {"id" : "3374160003", "district_id" : "3374160", "name" : "BRINGIN"}, {"id" : "3374160004", "district_id" : "3374160", "name" : "NGALIYAN"}, {"id" : "3374160005", "district_id" : "3374160", "name" : "BAMBANKEREP"}, {"id" : "3374160006", "district_id" : "3374160", "name" : "KALIPANCUR"}, {"id" : "3374160007", "district_id" : "3374160", "name" : "PURWOYOSO"}, {"id" : "3374160008", "district_id" : "3374160", "name" : "TAMBAKAJI"}, {"id" : "3374160009", "district_id" : "3374160", "name" : "GONDORIYO"}, {"id" : "3374160010", "district_id" : "3374160", "name" : "WONOSARI"}]
json_instruct
{"type": "array", "items": {"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#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"id": {"type": "string"}, "symbol": {"type": "string"}, "name": {"type": "string"}, "platforms": {"type": "object", "properties": {"ethereum": {"type": "string"}}, "required": ["ethereum"]}, "hashing_algorithm": {"type": "string"}, "categories": {"type": "array", "items": {"type": "string"}}, "description": {"type": "object", "properties": {"en": {"type": "string"}}, "required": ["en"]}, "country_origin": {"type": "string"}, "genesis_date": {"type": "string"}, "contract_address": {"type": "string"}, "url": {"type": "string"}, "explorers": {"type": "array", "items": {"type": "string"}}, "twitter": {"type": "string"}, "facebook": {"type": "string"}, "telegram": {"type": "string"}, "reddit": {"type": "string"}}, "required": ["id", "symbol", "name", "platforms", "hashing_algorithm", "categories", "description", "country_origin", "genesis_date", "contract_address", "url", "explorers", "twitter", "facebook", "telegram", "reddit"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : "tokok", "symbol" : "tok", "name" : "Tokok", "platforms" : {"ethereum" : "0x9a49f02e128a8e989b443a8f94843c0918bf45e7"}, "hashing_algorithm" : "Ethash", "categories" : ["Centralized Exchange Token (CEX)", "Exchange-based Tokens"], "description" : {"en" : "TOK is a token issued by TOKOK. Users holding TOK enjoy \u00a0discounts when using TOK to pay for transaction fees and get dividends with development of the platform.\r\n"}, "country_origin" : "VG", "genesis_date" : "2018-04-02", "contract_address" : "0x9a49f02e128a8e989b443a8f94843c0918bf45e7", "url" : "http://www.tokok.com", "explorers" : ["https://etherscan.io/token/0x9a49f02e128a8e989b443a8f94843c0918bf45e7", "https://ethplorer.io/address/0x9a49f02e128a8e989b443a8f94843c0918bf45e7"], "twitter" : "Tokokcom", "facebook" : "tokok.exchange", "telegram" : "https://t.me/tokokenglish", "reddit" : "tokok"}
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "symbol": {"type": "string"}, "name": {"type": "string"}, "platforms": {"type": "object", "properties": {"ethereum": {"type": "string"}}, "required": ["ethereum"]}, "hashing_algorithm": {"type": "string"}, "categories": {"type": "array", "items": {"type": "string"}}, "description": {"type": "object", "properties": {"en": {"type": "string"}}, "required": ["en"]}, "country_origin": {"type": "string"}, "genesis_date": {"type": "string"}, "contract_address": {"type": "string"}, "url": {"type": "string"}, "explorers": {"type": "array", "items": {"type": "string"}}, "twitter": {"type": "string"}, "facebook": {"type": "string"}, "telegram": {"type": "string"}, "reddit": {"type": "string"}}, "required": ["id", "symbol", "name", "platforms", "hashing_algorithm", "categories", "description", "country_origin", "genesis_date", "contract_address", "url", "explorers", "twitter", "facebook", "telegram", "reddit"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"parent": {"type": "string"}}, "required": ["parent"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"parent" : "create:block/oxidized_copper_tile_slab"}
json_instruct
{"type": "object", "properties": {"parent": {"type": "string"}}, "required": ["parent"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"}
["domain.js"]
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": {"templmd5": {"type": "string"}, "number": {"type": "string"}, "title": {"type": "string"}, "BACKCOLOR": {"type": "string"}, "FRONTCOLOR": {"type": "string"}, "filemd5": {"type": "string"}}, "required": ["templmd5", "number", "title", "BACKCOLOR", "FRONTCOLOR", "filemd5"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"templmd5" : "0f5f718e7703eaa46b1a36127cb4199f", "number" : "266", "title" : "Libera Universit\u00e0 di #Bolzano: accesso ai corsi di studio e all\u2019insegnamento per i rifugiati dall\u2019Ucraina", "BACKCOLOR" : "white", "FRONTCOLOR" : "black", "filemd5" : "072b06a1894d849e7742d801a845e4b2"}
json_instruct
{"type": "object", "properties": {"templmd5": {"type": "string"}, "number": {"type": "string"}, "title": {"type": "string"}, "BACKCOLOR": {"type": "string"}, "FRONTCOLOR": {"type": "string"}, "filemd5": {"type": "string"}}, "required": ["templmd5", "number", "title", "BACKCOLOR", "FRONTCOLOR", "filemd5"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "types": {"type": "string"}, "module": {"type": "string"}, "scripts": {"type": "object", "properties": {"tsc": {"type": "string"}, "build": {"type": "string"}, "build:cjs": {"type": "string"}, "build:esm": {"type": "string"}, "build:types": {"type": "string"}, "prepare": {"type": "string"}, "test": {"type": "string"}}, "required": ["tsc", "build", "build:cjs", "build:esm", "build:types", "prepare", "test"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "keywords": {"type": "array", "items": {}}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"@types/ws": {"type": "string"}, "chai": {"type": "string"}, "dotenv": {"type": "string"}, "mocha": {"type": "string"}, "typescript": {"type": "string"}}, "required": ["@types/ws", "chai", "dotenv", "mocha", "typescript"]}, "dependencies": {"type": "object", "properties": {"@types/crypto-js": {"type": "string"}, "axios": {"type": "string"}, "crypto-js": {"type": "string"}, "module_name": {"type": "string"}, "ws": {"type": "string"}}, "required": ["@types/crypto-js", "axios", "crypto-js", "module_name", "ws"]}}, "required": ["name", "version", "description", "main", "types", "module", "scripts", "repository", "keywords", "author", "license", "bugs", "homepage", "devDependencies", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "@wazirx/node-client", "version" : "1.0.0", "description" : "node sdk for wazirx", "main" : "lib/cjs/index.js", "types" : "lib/types/index.d.ts", "module" : "lib/esm/index.js", "scripts" : {"tsc" : "tsc", "build" : "npm run build:cjs && npm run build:esm && npm run build:types", "build:cjs" : "node tools/cleanup cjs && tsc -p config/tsconfig.cjs.json", "build:esm" : "node tools/cleanup esm && tsc -p config/tsconfig.esm.json", "build:types" : "node tools/cleanup types && tsc -p config/tsconfig.types.json", "prepare" : "npm run build", "test" : "mocha test/test.js -r dotenv/config --timeout 10000"}, "repository" : {"type" : "git", "url" : "git+https://github.com/arunnattarayan/wazirx-connector-node.git"}, "keywords" : [], "author" : "", "license" : "ISC", "bugs" : {"url" : "https://github.com/WazirX/wazirx-connector-node/issues"}, "homepage" : "https://github.com/WazirX/wazirx-connector-node#readme", "devDependencies" : {"@types/ws" : "^8.5.3", "chai" : "^4.3.4", "dotenv" : "^10.0.0", "mocha" : "^9.1.3", "typescript" : "^4.5.4"}, "dependencies" : {"@types/crypto-js" : "^4.1.0", "axios" : "^0.24.0", "crypto-js" : "^4.1.1", "module_name" : "^1.0.0", "ws" : "^8.5.0"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "types": {"type": "string"}, "module": {"type": "string"}, "scripts": {"type": "object", "properties": {"tsc": {"type": "string"}, "build": {"type": "string"}, "build:cjs": {"type": "string"}, "build:esm": {"type": "string"}, "build:types": {"type": "string"}, "prepare": {"type": "string"}, "test": {"type": "string"}}, "required": ["tsc", "build", "build:cjs", "build:esm", "build:types", "prepare", "test"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "keywords": {"type": "array", "items": {}}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"@types/ws": {"type": "string"}, "chai": {"type": "string"}, "dotenv": {"type": "string"}, "mocha": {"type": "string"}, "typescript": {"type": "string"}}, "required": ["@types/ws", "chai", "dotenv", "mocha", "typescript"]}, "dependencies": {"type": "object", "properties": {"@types/crypto-js": {"type": "string"}, "axios": {"type": "string"}, "crypto-js": {"type": "string"}, "module_name": {"type": "string"}, "ws": {"type": "string"}}, "required": ["@types/crypto-js", "axios", "crypto-js", "module_name", "ws"]}}, "required": ["name", "version", "description", "main", "types", "module", "scripts", "repository", "keywords", "author", "license", "bugs", "homepage", "devDependencies", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"name": {"type": "string"}, "specialname": {"type": "string"}, "type": {"type": "string"}, "category": {"type": "string"}, "description": {"type": "string"}}, "required": ["name", "specialname", "type", "category", "description"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "Grande Slime Dendro", "specialname" : "Elemento Rolante", "type" : "COMMON", "category" : "Vida Elemental", "description" : "Um tipo de Slime formado por transforma\u00e7\u00e3o devido ao seu elemento Dendro.\nAlgumas pessoas acreditam que eles talvez sejam Slimes parasitados por uma planta especial, visto que eles se disfar\u00e7am para enganar e atacar as ca\u00e7as, como as Flores Gigantes. Neste sentido, em certas culturas, os Slimes Dentro possuem o seu valor medicinal...?"}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "specialname": {"type": "string"}, "type": {"type": "string"}, "category": {"type": "string"}, "description": {"type": "string"}}, "required": ["name", "specialname", "type", "category", "description"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"index": {"type": "integer"}, "redacted": {"type": "boolean"}, "hash": {"type": "integer"}, "blacklisted": {"type": "boolean"}}, "required": ["index", "redacted", "hash", "blacklisted"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"index" : 4862, "redacted" : false, "hash" : 1846685740, "blacklisted" : false}
json_instruct
{"type": "object", "properties": {"index": {"type": "integer"}, "redacted": {"type": "boolean"}, "hash": {"type": "integer"}, "blacklisted": {"type": "boolean"}}, "required": ["index", "redacted", "hash", "blacklisted"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "array", "items": {"type": "object", "properties": {"review": {"type": "string"}, "date": {"type": "string"}, "rating": {"type": "string"}, "author": {"type": "string"}, "review_id": {"type": "string"}, "movie_id": {"type": "string"}}, "required": ["review", "date", "rating", "author", "review_id", "movie_id"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"review" : "\ud638\ud61c\uc911 \uc9f1\uc774\ub2e4..\uadf8\ub7f0\ub370 \uc5ec\uae30 \uad50\uc721\uc0dd\ub4e4 \uc0c1\ub2f9\ud788 \uc774\ubfcc\uad70\uc694..\u314e\u314e", "date" : "15.08.02", "rating" : "6", "author" : "do11****", "review_id" : "10177226", "movie_id" : "15613"}, {"review" : "\uc5b4\uc81c \ubd24\ub294\ub370 \uc815\ub9d0 \uc7bc\ub0a8.\u314b\u314b\u314b\u314b", "date" : "14.10.21", "rating" : "10", "author" : "hiph****", "review_id" : "9305995", "movie_id" : "15613"}, {"review" : "\ud0ac\ub9c1\ud0c0\uc784\uc6a9\uc73c\ub85c \uc801\uc808\ud558\uad70", "date" : "14.05.19", "rating" : "6", "author" : "guev****", "review_id" : "8746600", "movie_id" : "15613"}, {"review" : "\uc608\uc2a4\ub9c8\ub2f4\uacfc \ud3f4\ub9ac\uc2a4\ub9c8\ub2f4 \uadf8\ub9ac\uace0 \ub561\ud050\ub9c8\ub2f4 \ub2f9\uc2dc \uc778\uae30\ub294 \uc815\ub9d0 \uc5c4\uccad\ub0ac\ub2e4", "date" : "14.05.18", "rating" : "7", "author" : "deff****", "review_id" : "8745221", "movie_id" : "15613"}, {"review" : "\uc774\uc81c\ubcf4\ub2c8 \uc61b\ub0a0\uaebc \uc7ac\uac1c\ubd09\ud558\ub294\uad6c\ub9cc", "date" : "14.05.17", "rating" : "8", "author" : "534k****", "review_id" : "8737938", "movie_id" : "15613"}, {"review" : "\ud30c\ub834\uce58\ud55c \uc54c\ubc14\ub188\ub4e4...", "date" : "14.05.16", "rating" : "1", "author" : "21ho****", "review_id" : "8735170", "movie_id" : "15613"}, {"review" : "\ucd94\uc5b5\uc744 \ub418\uc0c8\uaca8\uc8fc\ub294 \uc791\ud488... \ucc38 \uc7ac\ubc0c\uac8c \ubd24\uc5c8\ub294\ub370 \uc7ac\uac1c\ubd09\ud588\ub124\uc694! \uaf2d \ub2e4\uc2dc \ubd10\uc57c\uaca0\uc5b4\uc694", "date" : "14.05.15", "rating" : "10", "author" : "kaye****", "review_id" : "8732279", "movie_id" : "15613"}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"review": {"type": "string"}, "date": {"type": "string"}, "rating": {"type": "string"}, "author": {"type": "string"}, "review_id": {"type": "string"}, "movie_id": {"type": "string"}}, "required": ["review", "date", "rating", "author", "review_id", "movie_id"]}, "$schema": "http://json-schema.org/draft-07/schema#"}