input
stringlengths
159
2.05k
output
stringlengths
5
10.3k
task
stringclasses
1 value
schema
stringlengths
100
1.99k
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"parent": {"type": "string"}, "textures": {"type": "object", "properties": {"texture": {"type": "string"}, "texture2": {"type": "string"}}, "required": ["texture", "texture2"]}}, "required": ["parent", "textures"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"parent" : "glassdoor:block/template/template_trapdoor_top", "textures" : {"texture" : "glassdoor:block/birch_glasstrapdoor", "texture2" : "minecraft:block/birch_trapdoor"}}
json_instruct
{"type": "object", "properties": {"parent": {"type": "string"}, "textures": {"type": "object", "properties": {"texture": {"type": "string"}, "texture2": {"type": "string"}}, "required": ["texture", "texture2"]}}, "required": ["parent", "textures"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"display-name": {"type": "string"}, "package-name": {"type": "string"}, "is-portable": {"type": "boolean"}, "portable": {"type": "object", "properties": {"display-name": {"type": "string"}, "package-name": {"type": "string"}, "latest-version": {"type": "string"}, "1.11.1": {"type": "object", "properties": {"url": {"type": "string"}, "file-type": {"type": "string"}, "bin": {"type": "array", "items": {"type": "string"}}, "shortcuts": {"type": "array", "items": {"type": "object", "properties": {"shortcut-name": {"type": "string"}, "file-name": {"type": "string"}}, "required": ["shortcut-name", "file-name"]}}, "persist": {"type": "string"}}, "required": ["url", "file-type", "bin", "shortcuts", "persist"]}, "auto-update": {"type": "object", "properties": {"checkver": {"type": "string"}}, "required": ["checkver"]}}, "required": ["display-name", "package-name", "latest-version", "1.11.1", "auto-update"]}}, "required": ["display-name", "package-name", "is-portable", "portable"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"display-name" : "", "package-name" : "pass-winmenu-nogpg", "is-portable" : true, "portable" : {"display-name" : "", "package-name" : "pass-winmenu-nogpg", "latest-version" : "1.11.1", "1.11.1" : {"url" : "https://github.com/Baggykiin/pass-winmenu/releases/download/v1.11.1/pass-winmenu-nogpg.zip", "file-type" : ".zip", "bin" : ["pass-winmenu.exe"], "shortcuts" : [{"shortcut-name" : "Pass-winmenu", "file-name" : "pass-winmenu.exe"}], "persist" : "pass-winmenu.yaml"}, "auto-update" : {"checkver" : ""}}}
json_instruct
{"type": "object", "properties": {"display-name": {"type": "string"}, "package-name": {"type": "string"}, "is-portable": {"type": "boolean"}, "portable": {"type": "object", "properties": {"display-name": {"type": "string"}, "package-name": {"type": "string"}, "latest-version": {"type": "string"}, "1.11.1": {"type": "object", "properties": {"url": {"type": "string"}, "file-type": {"type": "string"}, "bin": {"type": "array", "items": {"type": "string"}}, "shortcuts": {"type": "array", "items": {"type": "object", "properties": {"shortcut-name": {"type": "string"}, "file-name": {"type": "string"}}, "required": ["shortcut-name", "file-name"]}}, "persist": {"type": "string"}}, "required": ["url", "file-type", "bin", "shortcuts", "persist"]}, "auto-update": {"type": "object", "properties": {"checkver": {"type": "string"}}, "required": ["checkver"]}}, "required": ["display-name", "package-name", "latest-version", "1.11.1", "auto-update"]}}, "required": ["display-name", "package-name", "is-portable", "portable"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}}, "required": ["name", "version", "description", "main", "scripts", "repository", "author", "license", "bugs", "homepage"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "augment", "version" : "1.0.0", "description" : "Hiring made easy for teams", "main" : "index.js", "scripts" : {"test" : "echo \"Error: no test specified\" && exit 1"}, "repository" : {"type" : "git", "url" : "git+https://github.com/umangty/augment.git"}, "author" : "Umang Tiwary", "license" : "MIT", "bugs" : {"url" : "https://github.com/umangty/augment/issues"}, "homepage" : "https://github.com/umangty/augment#readme"}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}}, "required": ["name", "version", "description", "main", "scripts", "repository", "author", "license", "bugs", "homepage"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"self": {"type": "array", "items": {"type": "string"}}, "type": {"type": "string"}, "title": {"type": "string"}, "children": {"type": "array", "items": {"type": "object", "properties": {"title": {"type": "string"}, "href": {"type": "string"}}, "required": ["title", "href"]}}}, "required": ["self", "type", "title", "children"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"self" : ["browsers", "firefox"], "type" : "listing", "title" : "firefox", "children" : [{"title" : "accepts_webextensions", "href" : "/browsers/firefox/accepts_webextensions"}, {"title" : "name", "href" : "/browsers/firefox/name"}, {"title" : "pref_url", "href" : "/browsers/firefox/pref_url"}, {"title" : "preview_name", "href" : "/browsers/firefox/preview_name"}, {"title" : "releases", "href" : "/browsers/firefox/releases"}, {"title" : "type", "href" : "/browsers/firefox/type"}]}
json_instruct
{"type": "object", "properties": {"self": {"type": "array", "items": {"type": "string"}}, "type": {"type": "string"}, "title": {"type": "string"}, "children": {"type": "array", "items": {"type": "object", "properties": {"title": {"type": "string"}, "href": {"type": "string"}}, "required": ["title", "href"]}}}, "required": ["self", "type", "title", "children"], "$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"}, "district_id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "district_id", "name"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : "7306020012", "district_id" : "7306020", "name" : "BONE"}
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": {"name": {"type": "string"}, "version": {"type": "string"}, "scripts": {"type": "object", "properties": {"dev": {"type": "string"}, "build": {"type": "string"}, "preview": {"type": "string"}}, "required": ["dev", "build", "preview"]}, "devDependencies": {"type": "object", "properties": {"standard": {"type": "string"}, "vite": {"type": "string"}}, "required": ["standard", "vite"]}, "eslintConfig": {"type": "object", "properties": {"extends": {"type": "array", "items": {"type": "string"}}}, "required": ["extends"]}}, "required": ["name", "version", "scripts", "devDependencies", "eslintConfig"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "eiao-pet-store", "version" : "0.0.0", "scripts" : {"dev" : "vite", "build" : "vite build", "preview" : "vite preview"}, "devDependencies" : {"standard" : "16.0.4", "vite" : "2.7.2"}, "eslintConfig" : {"extends" : ["./node_modules/standard/eslintrc.json"]}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "scripts": {"type": "object", "properties": {"dev": {"type": "string"}, "build": {"type": "string"}, "preview": {"type": "string"}}, "required": ["dev", "build", "preview"]}, "devDependencies": {"type": "object", "properties": {"standard": {"type": "string"}, "vite": {"type": "string"}}, "required": ["standard", "vite"]}, "eslintConfig": {"type": "object", "properties": {"extends": {"type": "array", "items": {"type": "string"}}}, "required": ["extends"]}}, "required": ["name", "version", "scripts", "devDependencies", "eslintConfig"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"/js/app.js": {"type": "string"}, "/css/app.css": {"type": "string"}}, "required": ["/js/app.js", "/css/app.css"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"/js/app.js" : "/js/app.js?id=0fffff84f5df1ff92e84", "/css/app.css" : "/css/app.css?id=d910365117d1cb12cc80"}
json_instruct
{"type": "object", "properties": {"/js/app.js": {"type": "string"}, "/css/app.css": {"type": "string"}}, "required": ["/js/app.js", "/css/app.css"], "$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"}, "desc": {"type": "string"}, "url": {"type": "string"}, "type": {"type": "string"}, "edition": {"type": "string"}, "path": {"type": "string"}, "update_log": {"type": "string"}}, "required": ["id", "name", "desc", "url", "type", "edition", "path", "update_log"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : "181", "name" : "SwipeAction", "desc" : "\u6ed1\u52a8\u64cd\u4f5c", "url" : "swipe-action", "type" : "\u529f\u80fd\u7ec4\u4ef6", "edition" : "1.1.5", "path" : "https://ext.dcloud.net.cn/plugin?id=181", "update_log" : "- \u4fee\u590d \u5fae\u4fe1\u5c0f\u7a0b\u5e8f wxs \u62a5\u9519\u7684 Bug"}
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "desc": {"type": "string"}, "url": {"type": "string"}, "type": {"type": "string"}, "edition": {"type": "string"}, "path": {"type": "string"}, "update_log": {"type": "string"}}, "required": ["id", "name", "desc", "url", "type", "edition", "path", "update_log"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"perfect-scrollbar.jquery.min.js": {"type": "string"}, "perfect-scrollbar.min.css": {"type": "string"}, "perfect-scrollbar.min.js": {"type": "string"}}, "required": ["perfect-scrollbar.jquery.min.js", "perfect-scrollbar.min.css", "perfect-scrollbar.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"perfect-scrollbar.jquery.min.js" : "sha512-MpN3O0ExQGmBREFy1RnE5gIkSZiTi9FZ5K1eYiF9gNvvWqPpz8e7ihwtJlTyOU7abkRK43FjbZfmv6T5qXfUSw==", "perfect-scrollbar.min.css" : "sha512-qHyQzaL+rj4TUTbDzxiSwOKFDfy1Zw2P/+o1RJHuYuTN++gfxbH4nweBM66dBCUXF5rPZsrYfxS441pvjDUqOQ==", "perfect-scrollbar.min.js" : "sha512-MpN3O0ExQGmBREFy1RnE5gIkSZiTi9FZ5K1eYiF9gNvvWqPpz8e7ihwtJlTyOU7abkRK43FjbZfmv6T5qXfUSw=="}
json_instruct
{"type": "object", "properties": {"perfect-scrollbar.jquery.min.js": {"type": "string"}, "perfect-scrollbar.min.css": {"type": "string"}, "perfect-scrollbar.min.js": {"type": "string"}}, "required": ["perfect-scrollbar.jquery.min.js", "perfect-scrollbar.min.css", "perfect-scrollbar.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"900662182": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900662183": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900662184": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}}, "required": ["900662182", "900662183", "900662184"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"900662182" : {"nama" : "TPS 1", "dapil" : [6102, 16107, 2611003]}, "900662183" : {"nama" : "TPS 2", "dapil" : [6102, 16107, 2611003]}, "900662184" : {"nama" : "TPS 3", "dapil" : [6102, 16107, 2611003]}}
json_instruct
{"type": "object", "properties": {"900662182": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900662183": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900662184": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}}, "required": ["900662182", "900662183", "900662184"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"class": {"type": "object", "properties": {}, "required": []}, "instance": {"type": "object", "properties": {"maxMessageSize": {"type": "string"}, "readArguments": {"type": "string"}, "readSimpleFields": {"type": "string"}, "startOfMessage": {"type": "string"}, "structSize": {"type": "string"}}, "required": ["maxMessageSize", "readArguments", "readSimpleFields", "startOfMessage", "structSize"]}}, "required": ["class", "instance"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"class" : {}, "instance" : {"maxMessageSize" : "JGF 4/13/2007 13:34", "readArguments" : "JGF 4/13/2007 13:39", "readSimpleFields" : "JGF 4/13/2007 14:03", "startOfMessage" : "JGF 4/13/2007 14:01", "structSize" : "JGF 4/13/2007 13:35"}}
json_instruct
{"type": "object", "properties": {"class": {"type": "object", "properties": {}, "required": []}, "instance": {"type": "object", "properties": {"maxMessageSize": {"type": "string"}, "readArguments": {"type": "string"}, "readSimpleFields": {"type": "string"}, "startOfMessage": {"type": "string"}, "structSize": {"type": "string"}}, "required": ["maxMessageSize", "readArguments", "readSimpleFields", "startOfMessage", "structSize"]}}, "required": ["class", "instance"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"version": {"type": "number"}, "people": {"type": "array", "items": {"type": "object", "properties": {"person_id": {"type": "array", "items": {"type": "integer"}}, "pose_keypoints_2d": {"type": "array", "items": {"type": "number"}}, "face_keypoints_2d": {"type": "array", "items": {}}, "hand_left_keypoints_2d": {"type": "array", "items": {}}, "hand_right_keypoints_2d": {"type": "array", "items": {}}, "pose_keypoints_3d": {"type": "array", "items": {}}, "face_keypoints_3d": {"type": "array", "items": {}}, "hand_left_keypoints_3d": {"type": "array", "items": {}}, "hand_right_keypoints_3d": {"type": "array", "items": {}}}, "required": ["person_id", "pose_keypoints_2d", "face_keypoints_2d", "hand_left_keypoints_2d", "hand_right_keypoints_2d", "pose_keypoints_3d", "face_keypoints_3d", "hand_left_keypoints_3d", "hand_right_keypoints_3d"]}}}, "required": ["version", "people"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"version" : 1.3, "people" : [{"person_id" : [-1], "pose_keypoints_2d" : [33.4338, 53.5925, 0.32301, 39.643, 57.4755, 0.734694, 41.5722, 57.4687, 0.618862, 44.6699, 64.8305, 0.0903256, 0, 0, 0, 38.8775, 57.8453, 0.824323, 42.3672, 65.6017, 0.625539, 39.2745, 72.1949, 0.587147, 46.2295, 75.6857, 0.598738, 47.7766, 75.2984, 0.510339, 45.4547, 90.4032, 0.463689, 45.0722, 103.975, 0.386334, 45.4606, 76.0664, 0.693778, 44.6746, 90.7974, 0.701555, 45.0722, 104.744, 0.706491, 0, 0, 0, 33.8321, 51.6728, 0.381735, 0, 0, 0, 36.1475, 51.6743, 0.697347, 39.6427, 106.685, 0.642894, 41.5846, 107.447, 0.667225, 45.8484, 107.075, 0.630806, 39.6438, 105.53, 0.179575, 39.6479, 105.131, 0.177752, 47.3822, 106.297, 0.165704], "face_keypoints_2d" : [], "hand_left_keypoints_2d" : [], "hand_right_keypoints_2d" : [], "pose_keypoints_3d" : [], "face_keypoints_3d" : [], "hand_left_keypoints_3d" : [], "hand_right_keypoints_3d" : []}]}
json_instruct
{"type": "object", "properties": {"version": {"type": "number"}, "people": {"type": "array", "items": {"type": "object", "properties": {"person_id": {"type": "array", "items": {"type": "integer"}}, "pose_keypoints_2d": {"type": "array", "items": {"type": "number"}}, "face_keypoints_2d": {"type": "array", "items": {}}, "hand_left_keypoints_2d": {"type": "array", "items": {}}, "hand_right_keypoints_2d": {"type": "array", "items": {}}, "pose_keypoints_3d": {"type": "array", "items": {}}, "face_keypoints_3d": {"type": "array", "items": {}}, "hand_left_keypoints_3d": {"type": "array", "items": {}}, "hand_right_keypoints_3d": {"type": "array", "items": {}}}, "required": ["person_id", "pose_keypoints_2d", "face_keypoints_2d", "hand_left_keypoints_2d", "hand_right_keypoints_2d", "pose_keypoints_3d", "face_keypoints_3d", "hand_left_keypoints_3d", "hand_right_keypoints_3d"]}}}, "required": ["version", "people"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"status": {"type": "integer"}, "data": {"type": "object", "properties": {"totalSubs": {"type": "integer"}, "subsInEachSource": {"type": "object", "properties": {"feedly": {"type": "integer"}, "inoreader": {"type": "integer"}, "feedsPub": {"type": "integer"}}, "required": ["feedly", "inoreader", "feedsPub"]}, "failedSources": {"type": "object", "properties": {"inoreader": {"type": "string"}}, "required": ["inoreader"]}}, "required": ["totalSubs", "subsInEachSource", "failedSources"]}, "lastModified": {"type": "integer"}}, "required": ["status", "data", "lastModified"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"status" : 200, "data" : {"totalSubs" : 187, "subsInEachSource" : {"feedly" : 120, "inoreader" : 0, "feedsPub" : 67}, "failedSources" : {"inoreader" : "RSS feed not found on Inoreader"}}, "lastModified" : 1644369950230}
json_instruct
{"type": "object", "properties": {"status": {"type": "integer"}, "data": {"type": "object", "properties": {"totalSubs": {"type": "integer"}, "subsInEachSource": {"type": "object", "properties": {"feedly": {"type": "integer"}, "inoreader": {"type": "integer"}, "feedsPub": {"type": "integer"}}, "required": ["feedly", "inoreader", "feedsPub"]}, "failedSources": {"type": "object", "properties": {"inoreader": {"type": "string"}}, "required": ["inoreader"]}}, "required": ["totalSubs", "subsInEachSource", "failedSources"]}, "lastModified": {"type": "integer"}}, "required": ["status", "data", "lastModified"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "array", "items": {"type": "object", "properties": {"namaKab": {"type": "string"}, "originalFilename": {"type": "string"}, "namaPartai": {"type": "string"}, "id": {"type": "integer"}, "noUrut": {"type": "integer"}, "nama": {"type": "string"}, "stringJenisKelamin": {"type": "string"}}, "required": ["namaKab", "originalFilename", "namaPartai", "id", "noUrut", "nama", "stringJenisKelamin"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"namaKab" : "MAGELANG", "originalFilename" : "KH. MUSLICH ZAINAL ABIDIN.jpg", "namaPartai" : "Partai Persatuan pembangunan", "id" : 85494, "noUrut" : 1, "nama" : "KH. MUSLICH ZAINAL ABIDIN", "stringJenisKelamin" : "Laki-Laki"}, {"namaKab" : "BOGOR", "originalFilename" : "IDY MUZAYYAD.jpg", "namaPartai" : "Partai Persatuan pembangunan", "id" : 254472, "noUrut" : 2, "nama" : "IDY MUZAYYAD", "stringJenisKelamin" : "Laki-Laki"}, {"namaKab" : "TEMANGGUNG", "originalFilename" : "Siti Arifah.jpg", "namaPartai" : "Partai Persatuan pembangunan", "id" : 211978, "noUrut" : 3, "nama" : "SITI ARIFAH", "stringJenisKelamin" : "Perempuan"}, {"namaKab" : "KOTA SEMARANG", "originalFilename" : "Drs. ARIF RACHMAN HAKIM.jpg", "namaPartai" : "Partai Persatuan pembangunan", "id" : 274642, "noUrut" : 4, "nama" : "Drs. ARIF RACHMAN HAKIM", "stringJenisKelamin" : "Laki-Laki"}, {"namaKab" : "PURWOREJO", "originalFilename" : "MUHAMMAD MUN?AM.jpg", "namaPartai" : "Partai Persatuan pembangunan", "id" : 214411, "noUrut" : 5, "nama" : "MUHAMMAD MUN'AM", "stringJenisKelamin" : "Laki-Laki"}, {"namaKab" : "MAGELANG", "originalFilename" : "NUrul HIdayati.jpg", "namaPartai" : "Partai Persatuan pembangunan", "id" : 213754, "noUrut" : 6, "nama" : "NURUL HIDAYATI", "stringJenisKelamin" : "Perempuan"}, {"namaKab" : "KOTA MAGELANG", "originalFilename" : "DISTA RAHMAJANATI.jpg", "namaPartai" : "Partai Persatuan pembangunan", "id" : 251105, "noUrut" : 7, "nama" : "DISTA RAHMAJANATI", "stringJenisKelamin" : "Perempuan"}, {"namaKab" : "SUMENEP", "originalFilename" : "SURAHMAN, S.Psi.jpg", "namaPartai" : "Partai Persatuan pembangunan", "id" : 121532, "noUrut" : 8, "nama" : "SURAHMAN, S.Psi", "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#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"author": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "name"]}, "date": {"type": "object", "properties": {"day": {"type": "integer"}, "full": {"type": "integer"}, "month": {"type": "integer"}, "week": {"type": "integer"}}, "required": ["day", "full", "month", "week"]}, "id": {"type": "string"}, "misc": {"type": "object", "properties": {"postHint": {"type": "string"}}, "required": ["postHint"]}, "picture": {"type": "object", "properties": {"filesize": {"type": "integer"}, "fullUrl": {"type": "string"}, "hash": {"type": "string"}, "height": {"type": "integer"}, "lqip": {"type": "string"}, "thumbnailUrl": {"type": "string"}, "url": {"type": "string"}, "width": {"type": "integer"}}, "required": ["filesize", "fullUrl", "hash", "height", "lqip", "thumbnailUrl", "url", "width"]}, "score": {"type": "object", "properties": {"comments": {"type": "integer"}, "downs": {"type": "integer"}, "isCurated": {"type": "boolean"}, "ratio": {"type": "number"}, "ups": {"type": "integer"}, "value": {"type": "integer"}}, "required": ["comments", "downs", "isCurated", "ratio", "ups", "value"]}, "subreddit": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "name"]}, "tags": {"type": "array", "items": {}}, "title": {"type": "string"}, "url": {"type": "string"}}, "required": ["author", "date", "id", "misc", "picture", "score", "subreddit", "tags", "title", "url"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"author" : {"id" : "t2_12ffn1", "name" : "south2012"}, "date" : {"day" : 1525046400, "full" : 1525116433, "month" : 1522540800, "week" : 1524960000}, "id" : "t3_8g25e4", "misc" : {"postHint" : "image"}, "picture" : {"filesize" : 196850, "fullUrl" : "https://external-preview.redd.it/KeKLJCyU3Fr2uzKwAkIm_rkRhWk1VP1pzbfgiHK_uuc.jpg?auto=webp&s=6eab342e8f5d8e79abfbe83f33df6e9abb8cc0f7", "hash" : "7c714e8fcd", "height" : 986, "lqip" : "data:image/jpg;base64,/9j/2wBDAAYEBQYFBAYGBQYHBwYIChAKCgkJChQODwwQFxQYGBcUFhYaHSUfGhsjHBYWICwgIyYnKSopGR8tMC0oMCUoKSj/2wBDAQcHBwoIChMKChMoGhYaKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCj/wAARCAAQAAoDASIAAhEBAxEB/8QAFgABAQEAAAAAAAAAAAAAAAAABwUI/8QAIRAAAQQCAgIDAAAAAAAAAAAAAQIEBREAAyExE0EGEiL/xAAVAQEBAAAAAAAAAAAAAAAAAAACBP/EABkRAAMAAwAAAAAAAAAAAAAAAAABAgQREv/aAAwDAQACEQMRAD8Apy0m/wB8o9Wt+8UFONgrzKFCz6vgdChmgo+PXrYNkJeuSE6kgErsngez3gTJfHp/Y6deSHeFR3rNp1H9kqJ+wIuxRPVd44xkg6VGtFLjHGtR1IJQoi0mhwcgxG+q2GT/2Q==", "thumbnailUrl" : "https://b.thumbs.redditmedia.com/_0i1zdZPHfYyx5qS3LLJ0ThAUAIU0gHxDOCefjZ7c7Y.jpg", "url" : "https://external-preview.redd.it/KeKLJCyU3Fr2uzKwAkIm_rkRhWk1VP1pzbfgiHK_uuc.jpg?width=640&crop=smart&auto=webp&s=abacfe5d66b862618b721015e19dfba1464a9cd8", "width" : 640}, "score" : {"comments" : 2, "downs" : 0, "isCurated" : false, "ratio" : 0.94, "ups" : 61, "value" : 61}, "subreddit" : {"id" : "t5_3isai", "name" : "dndmaps"}, "tags" : [], "title" : "Colorized Mimic Map!", "url" : "https://www.reddit.com/r/dndmaps/comments/8g25e4/colorized_mimic_map/"}
json_instruct
{"type": "object", "properties": {"author": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "name"]}, "date": {"type": "object", "properties": {"day": {"type": "integer"}, "full": {"type": "integer"}, "month": {"type": "integer"}, "week": {"type": "integer"}}, "required": ["day", "full", "month", "week"]}, "id": {"type": "string"}, "misc": {"type": "object", "properties": {"postHint": {"type": "string"}}, "required": ["postHint"]}, "picture": {"type": "object", "properties": {"filesize": {"type": "integer"}, "fullUrl": {"type": "string"}, "hash": {"type": "string"}, "height": {"type": "integer"}, "lqip": {"type": "string"}, "thumbnailUrl": {"type": "string"}, "url": {"type": "string"}, "width": {"type": "integer"}}, "required": ["filesize", "fullUrl", "hash", "height", "lqip", "thumbnailUrl", "url", "width"]}, "score": {"type": "object", "properties": {"comments": {"type": "integer"}, "downs": {"type": "integer"}, "isCurated": {"type": "boolean"}, "ratio": {"type": "number"}, "ups": {"type": "integer"}, "value": {"type": "integer"}}, "required": ["comments", "downs", "isCurated", "ratio", "ups", "value"]}, "subreddit": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "name"]}, "tags": {"type": "array", "items": {}}, "title": {"type": "string"}, "url": {"type": "string"}}, "required": ["author", "date", "id", "misc", "picture", "score", "subreddit", "tags", "title", "url"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "author": {"type": "string"}, "contributors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"]}}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"jsonwebtoken": {"type": "string"}, "jwk-to-pem": {"type": "string"}, "request": {"type": "string"}}, "required": ["jsonwebtoken", "jwk-to-pem", "request"]}}, "required": ["name", "version", "description", "main", "scripts", "author", "contributors", "license", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "API-Gateway-Cognito-Custom-Authorizer", "version" : "1.0.0", "description" : "", "main" : "index.js", "scripts" : {"test" : "echo \"Error: no test specified\" && exit 1"}, "author" : "Amazon Web Services", "contributors" : [{"name" : "Tod Golding"}, {"name" : "Judah Bernstein"}], "license" : "Apache-2.0", "dependencies" : {"jsonwebtoken" : "^7.3.0", "jwk-to-pem" : "^1.2.6", "request" : "^2.81.0"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "author": {"type": "string"}, "contributors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"]}}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"jsonwebtoken": {"type": "string"}, "jwk-to-pem": {"type": "string"}, "request": {"type": "string"}}, "required": ["jsonwebtoken", "jwk-to-pem", "request"]}}, "required": ["name", "version", "description", "main", "scripts", "author", "contributors", "license", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"financialInstrumentFinancialInstrumentServiceDescription": {"type": "string"}, "financialInstrumentInstanceStatus": {"type": "string"}, "financialInstrumentPreconditions": {"type": "string"}, "financialInstrumentInitiateActionReference": {"type": "string"}, "financialInstrumentInitiateActionRecord": {"type": "object", "properties": {}, "required": []}, "financialInstrumentFeatureSchedule": {"type": "string"}, "financialInstrumentFinancialInstrumentServiceInputsandOuputs": {"type": "string"}, "financialInstrumentFinancialInstrumentServiceWorkProduct": {"type": "string"}, "financialInstrumentPostconditions": {"type": "string"}, "financialInstrumentFinancialInstrumentServiceType": {"type": "string"}, "financialInstrumentInstanceReference": {"type": "string"}}, "required": ["financialInstrumentFinancialInstrumentServiceDescription", "financialInstrumentInstanceStatus", "financialInstrumentPreconditions", "financialInstrumentInitiateActionReference", "financialInstrumentInitiateActionRecord", "financialInstrumentFeatureSchedule", "financialInstrumentFinancialInstrumentServiceInputsandOuputs", "financialInstrumentFinancialInstrumentServiceWorkProduct", "financialInstrumentPostconditions", "financialInstrumentFinancialInstrumentServiceType", "financialInstrumentInstanceReference"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"financialInstrumentFinancialInstrumentServiceDescription" : "financialInstrumentFinancialInstrumentServiceDescription", "financialInstrumentInstanceStatus" : "financialInstrumentInstanceStatus", "financialInstrumentPreconditions" : "financialInstrumentPreconditions", "financialInstrumentInitiateActionReference" : "FIIAR705160", "financialInstrumentInitiateActionRecord" : {}, "financialInstrumentFeatureSchedule" : "financialInstrumentFeatureSchedule", "financialInstrumentFinancialInstrumentServiceInputsandOuputs" : "financialInstrumentFinancialInstrumentServiceInputsandOuputs", "financialInstrumentFinancialInstrumentServiceWorkProduct" : "financialInstrumentFinancialInstrumentServiceWorkProduct", "financialInstrumentPostconditions" : "financialInstrumentPostconditions", "financialInstrumentFinancialInstrumentServiceType" : "financialInstrumentFinancialInstrumentServiceType", "financialInstrumentInstanceReference" : "FIIR736784"}
json_instruct
{"type": "object", "properties": {"financialInstrumentFinancialInstrumentServiceDescription": {"type": "string"}, "financialInstrumentInstanceStatus": {"type": "string"}, "financialInstrumentPreconditions": {"type": "string"}, "financialInstrumentInitiateActionReference": {"type": "string"}, "financialInstrumentInitiateActionRecord": {"type": "object", "properties": {}, "required": []}, "financialInstrumentFeatureSchedule": {"type": "string"}, "financialInstrumentFinancialInstrumentServiceInputsandOuputs": {"type": "string"}, "financialInstrumentFinancialInstrumentServiceWorkProduct": {"type": "string"}, "financialInstrumentPostconditions": {"type": "string"}, "financialInstrumentFinancialInstrumentServiceType": {"type": "string"}, "financialInstrumentInstanceReference": {"type": "string"}}, "required": ["financialInstrumentFinancialInstrumentServiceDescription", "financialInstrumentInstanceStatus", "financialInstrumentPreconditions", "financialInstrumentInitiateActionReference", "financialInstrumentInitiateActionRecord", "financialInstrumentFeatureSchedule", "financialInstrumentFinancialInstrumentServiceInputsandOuputs", "financialInstrumentFinancialInstrumentServiceWorkProduct", "financialInstrumentPostconditions", "financialInstrumentFinancialInstrumentServiceType", "financialInstrumentInstanceReference"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"locationData": {"type": "object", "properties": {"relativeBoundingBox": {"type": "object", "properties": {"xmin": {"type": "number"}, "width": {"type": "number"}, "ymin": {"type": "number"}, "height": {"type": "number"}}, "required": ["xmin", "width", "ymin", "height"]}, "relativeKeypoints": {"type": "array", "items": {"type": "object", "properties": {"y": {"type": "number"}, "x": {"type": "number"}}, "required": ["y", "x"]}}, "format": {"type": "string"}}, "required": ["relativeBoundingBox", "relativeKeypoints", "format"]}, "score": {"type": "array", "items": {"type": "number"}}, "label": {"type": "array", "items": {"type": "string"}}}, "required": ["locationData", "score", "label"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"locationData" : {"relativeBoundingBox" : {"xmin" : 0.098979004, "width" : 0.07090529, "ymin" : 0.4722891, "height" : 0.12605381}, "relativeKeypoints" : [{"y" : 0.5793473, "x" : 0.11084947}, {"y" : 0.49177667, "x" : 0.16028558}, {"y" : 0.48964384, "x" : 0.14839065}, {"y" : 0.4998188, "x" : 0.13607892}, {"y" : 0.51581085, "x" : 0.12421612}, {"y" : 0.5842582, "x" : 0.13100648}, {"y" : 0.5667851, "x" : 0.15821312}], "format" : "RELATIVE_BOUNDING_BOX"}, "score" : [0.9856076], "label" : ["Palm"]}
json_instruct
{"type": "object", "properties": {"locationData": {"type": "object", "properties": {"relativeBoundingBox": {"type": "object", "properties": {"xmin": {"type": "number"}, "width": {"type": "number"}, "ymin": {"type": "number"}, "height": {"type": "number"}}, "required": ["xmin", "width", "ymin", "height"]}, "relativeKeypoints": {"type": "array", "items": {"type": "object", "properties": {"y": {"type": "number"}, "x": {"type": "number"}}, "required": ["y", "x"]}}, "format": {"type": "string"}}, "required": ["relativeBoundingBox", "relativeKeypoints", "format"]}, "score": {"type": "array", "items": {"type": "number"}}, "label": {"type": "array", "items": {"type": "string"}}}, "required": ["locationData", "score", "label"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"eNumber": {"type": "string"}, "batch": {"type": "string"}, "department": {"type": "string"}, "current_affiliation": {"type": "string"}, "honorific": {"type": "string"}, "full_name": {"type": "string"}, "name_with_initials": {"type": "string"}, "preferred_short_name": {"type": "string"}, "preferred_long_name": {"type": "string"}, "emails": {"type": "object", "properties": {"personal": {"type": "object", "properties": {"name": {"type": "string"}, "domain": {"type": "string"}}, "required": ["name", "domain"]}, "faculty": {"type": "object", "properties": {"name": {"type": "string"}, "domain": {"type": "string"}}, "required": ["name", "domain"]}}, "required": ["personal", "faculty"]}, "location": {"type": "string"}, "interests": {"type": "array", "items": {}}, "profile_image": {"type": "string"}, "urls": {"type": "object", "properties": {"cv": {"type": "string"}, "website": {"type": "string"}, "linkedin": {"type": "string"}, "github": {"type": "string"}, "facebook": {"type": "string"}, "researchgate": {"type": "string"}, "twitter": {"type": "string"}}, "required": ["cv", "website", "linkedin", "github", "facebook", "researchgate", "twitter"]}, "profile_page": {"type": "string"}}, "required": ["eNumber", "batch", "department", "current_affiliation", "honorific", "full_name", "name_with_initials", "preferred_short_name", "preferred_long_name", "emails", "location", "interests", "profile_image", "urls", "profile_page"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"eNumber" : "E/14/228", "batch" : "E14", "department" : "Computer Engineering", "current_affiliation" : "Evonsys pvt", "honorific" : "Mr.", "full_name" : "Shanaka Munasinghe", "name_with_initials" : "S.L.Munasinghe", "preferred_short_name" : "Shanaka", "preferred_long_name" : "Shanaka Munasinghe", "emails" : {"personal" : {"name" : "shanakamunasingheplay", "domain" : "gmail.com"}, "faculty" : {"name" : "shanaka.munasinghe", "domain" : "eng.pdn.ac.lk"}}, "location" : "Colombo", "interests" : [], "profile_image" : "https://people.ce.pdn.ac.lk/images/students/e14/e14228.jpg", "urls" : {"cv" : "", "website" : "", "linkedin" : "https://www.linkedin.com/in/shanaka-munasinghe-97b15815a", "github" : "Https://github.com/shanakamunasinghe", "facebook" : "", "researchgate" : "", "twitter" : ""}, "profile_page" : "https://people.ce.pdn.ac.lk/students/e14/228/"}
json_instruct
{"type": "object", "properties": {"eNumber": {"type": "string"}, "batch": {"type": "string"}, "department": {"type": "string"}, "current_affiliation": {"type": "string"}, "honorific": {"type": "string"}, "full_name": {"type": "string"}, "name_with_initials": {"type": "string"}, "preferred_short_name": {"type": "string"}, "preferred_long_name": {"type": "string"}, "emails": {"type": "object", "properties": {"personal": {"type": "object", "properties": {"name": {"type": "string"}, "domain": {"type": "string"}}, "required": ["name", "domain"]}, "faculty": {"type": "object", "properties": {"name": {"type": "string"}, "domain": {"type": "string"}}, "required": ["name", "domain"]}}, "required": ["personal", "faculty"]}, "location": {"type": "string"}, "interests": {"type": "array", "items": {}}, "profile_image": {"type": "string"}, "urls": {"type": "object", "properties": {"cv": {"type": "string"}, "website": {"type": "string"}, "linkedin": {"type": "string"}, "github": {"type": "string"}, "facebook": {"type": "string"}, "researchgate": {"type": "string"}, "twitter": {"type": "string"}}, "required": ["cv", "website", "linkedin", "github", "facebook", "researchgate", "twitter"]}, "profile_page": {"type": "string"}}, "required": ["eNumber", "batch", "department", "current_affiliation", "honorific", "full_name", "name_with_initials", "preferred_short_name", "preferred_long_name", "emails", "location", "interests", "profile_image", "urls", "profile_page"], "$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"}, "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": "object", "properties": {"name": {"type": "string"}, "url": {"type": "string"}}, "required": ["name", "url"]}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"chai": {"type": "string"}, "mocha": {"type": "string"}}, "required": ["chai", "mocha"]}}, "required": ["name", "version", "description", "main", "scripts", "repository", "keywords", "author", "license", "bugs", "homepage", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "CDSA", "version" : "1.0.0", "description" : "The Collection of Data Structures and Algorithms (CDSA)", "main" : "index.js", "scripts" : {"test" : "node_modules/.bin/mocha -R spec --recursive src/test"}, "repository" : {"type" : "git", "url" : "git+https://github.com/vikramcse/CDSA.git"}, "keywords" : ["datastructure", "algorithms", "stack"], "author" : {"name" : "Vikram jadhav", "url" : "http://github.com/vikramcse"}, "license" : "MIT", "bugs" : {"url" : "https://github.com/vikramcse/CDSA/issues"}, "homepage" : "https://github.com/vikramcse/CDSA#readme", "devDependencies" : {"chai" : "^3.5.0", "mocha" : "^3.2.0"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "object", "properties": {"name": {"type": "string"}, "url": {"type": "string"}}, "required": ["name", "url"]}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"chai": {"type": "string"}, "mocha": {"type": "string"}}, "required": ["chai", "mocha"]}}, "required": ["name", "version", "description", "main", "scripts", "repository", "keywords", "author", "license", "bugs", "homepage", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"id": {"type": "integer"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"src:alt_label": {"type": "string"}, "src:geom": {"type": "string"}, "wof:geomhash": {"type": "string"}, "wof:id": {"type": "integer"}, "wof:repo": {"type": "string"}}, "required": ["src:alt_label", "src:geom", "wof:geomhash", "wof:id", "wof:repo"]}, "bbox": {"type": "array", "items": {"type": "number"}}, "geometry": {"type": "object", "properties": {"coordinates": {"type": "array", "items": {"type": "number"}}, "type": {"type": "string"}}, "required": ["coordinates", "type"]}}, "required": ["id", "type", "properties", "bbox", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : 85895313, "type" : "Feature", "properties" : {"src:alt_label" : "quattroshapes_pg", "src:geom" : "quattroshapes_pg", "wof:geomhash" : "ae27e65b432bdacb8a9bb271840d51f2", "wof:id" : 85895313, "wof:repo" : "whosonfirst-data-admin-ca"}, "bbox" : [-79.64899, 43.54594, -79.64899, 43.54594], "geometry" : {"coordinates" : [-79.64899, 43.54594], "type" : "Point"}}
json_instruct
{"type": "object", "properties": {"id": {"type": "integer"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"src:alt_label": {"type": "string"}, "src:geom": {"type": "string"}, "wof:geomhash": {"type": "string"}, "wof:id": {"type": "integer"}, "wof:repo": {"type": "string"}}, "required": ["src:alt_label", "src:geom", "wof:geomhash", "wof:id", "wof:repo"]}, "bbox": {"type": "array", "items": {"type": "number"}}, "geometry": {"type": "object", "properties": {"coordinates": {"type": "array", "items": {"type": "number"}}, "type": {"type": "string"}}, "required": ["coordinates", "type"]}}, "required": ["id", "type", "properties", "bbox", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"asset": {"type": "object", "properties": {"format": {"type": "string"}, "id": {"type": "string"}, "name": {"type": "string"}, "path": {"type": "string"}, "size": {"type": "object", "properties": {"width": {"type": "integer"}, "height": {"type": "integer"}}, "required": ["width", "height"]}, "state": {"type": "integer"}, "type": {"type": "integer"}}, "required": ["format", "id", "name", "path", "size", "state", "type"]}, "regions": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "type": {"type": "string"}, "tags": {"type": "array", "items": {"type": "string"}}, "boundingBox": {"type": "object", "properties": {"height": {"type": "number"}, "width": {"type": "number"}, "left": {"type": "number"}, "top": {"type": "number"}}, "required": ["height", "width", "left", "top"]}, "points": {"type": "array", "items": {"type": "object", "properties": {"x": {"type": "number"}, "y": {"type": "number"}}, "required": ["x", "y"]}}}, "required": ["id", "type", "tags", "boundingBox", "points"]}}, "version": {"type": "string"}}, "required": ["asset", "regions", "version"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"asset" : {"format" : "jpg", "id" : "82bf28f43ac49d6fe446c81b7a67c8cf", "name" : "05102009219.jpg", "path" : "file:/Users/michaeltang/Downloads/TrainYourOwnTOLO/Data/Source%20Images/Training_Images/05102009219.jpg", "size" : {"width" : 1600, "height" : 1200}, "state" : 2, "type" : 1}, "regions" : [{"id" : "KbXQeTpG0", "type" : "RECTANGLE", "tags" : ["bar"], "boundingBox" : {"height" : 582.586690109909, "width" : 853.5022972239454, "left" : 401.0882734956576, "top" : 267.89876481532525}, "points" : [{"x" : 401.0882734956576, "y" : 267.89876481532525}, {"x" : 1254.590570719603, "y" : 267.89876481532525}, {"x" : 1254.590570719603, "y" : 850.4854549252343}, {"x" : 401.0882734956576, "y" : 850.4854549252343}]}], "version" : "2.2.0"}
json_instruct
{"type": "object", "properties": {"asset": {"type": "object", "properties": {"format": {"type": "string"}, "id": {"type": "string"}, "name": {"type": "string"}, "path": {"type": "string"}, "size": {"type": "object", "properties": {"width": {"type": "integer"}, "height": {"type": "integer"}}, "required": ["width", "height"]}, "state": {"type": "integer"}, "type": {"type": "integer"}}, "required": ["format", "id", "name", "path", "size", "state", "type"]}, "regions": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "type": {"type": "string"}, "tags": {"type": "array", "items": {"type": "string"}}, "boundingBox": {"type": "object", "properties": {"height": {"type": "number"}, "width": {"type": "number"}, "left": {"type": "number"}, "top": {"type": "number"}}, "required": ["height", "width", "left", "top"]}, "points": {"type": "array", "items": {"type": "object", "properties": {"x": {"type": "number"}, "y": {"type": "number"}}, "required": ["x", "y"]}}}, "required": ["id", "type", "tags", "boundingBox", "points"]}}, "version": {"type": "string"}}, "required": ["asset", "regions", "version"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"id": {"type": "string"}, "author": {"type": "string"}, "subject": {"type": "string"}, "body": {"type": "string"}, "message_date": {"type": "string"}}, "required": ["id", "author", "subject", "body", "message_date"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : "25", "author" : "Michael Post", "subject" : "New Lupin Webpage", "body" : "Hey everyone. \r\nJust completed my own personal Lupin III \r\nwebpage, at \r\n\r\nhttp://www-personal.umich.edu/~postm/lupin/lupin.html \r\n\r\nStill kinda under construction, as the image gallery \r\nisn't quite up yet. I'll accept fanart (scanned of course) \r\nand comments from everyone. Stop on by if yer \r\ninterested. \r\n\r\nThanks, \r\nMike Post \r\npostm@umich.edu", "message_date" : "November 23 1999 1:53 AM"}
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "author": {"type": "string"}, "subject": {"type": "string"}, "body": {"type": "string"}, "message_date": {"type": "string"}}, "required": ["id", "author", "subject", "body", "message_date"], "$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"}, "devDependencies": {"type": "object", "properties": {"@semantic-release/exec": {"type": "string"}, "@semantic-release/git": {"type": "string"}, "@semantic-release/github": {"type": "string"}, "semantic-release": {"type": "string"}}, "required": ["@semantic-release/exec", "@semantic-release/git", "@semantic-release/github", "semantic-release"]}}, "required": ["name", "version", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "perun", "version" : "0.0.0-development", "devDependencies" : {"@semantic-release/exec" : "^5.0.0", "@semantic-release/git" : "^9.0.0", "@semantic-release/github" : "^7.2.3", "semantic-release" : "^17.4.4"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"@semantic-release/exec": {"type": "string"}, "@semantic-release/git": {"type": "string"}, "@semantic-release/github": {"type": "string"}, "semantic-release": {"type": "string"}}, "required": ["@semantic-release/exec", "@semantic-release/git", "@semantic-release/github", "semantic-release"]}}, "required": ["name", "version", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"json-stats-version": {"type": "string"}, "boot-time": {"type": "string"}, "config-time": {"type": "string"}, "current-time": {"type": "string"}, "version": {"type": "string"}, "traffic": {"type": "object", "properties": {"dns-udp-requests-sizes-received-ipv4": {"type": "object", "properties": {}, "required": []}, "dns-udp-responses-sizes-sent-ipv4": {"type": "object", "properties": {}, "required": []}, "dns-tcp-requests-sizes-received-ipv4": {"type": "object", "properties": {}, "required": []}, "dns-tcp-responses-sizes-sent-ipv4": {"type": "object", "properties": {}, "required": []}, "dns-udp-requests-sizes-received-ipv6": {"type": "object", "properties": {}, "required": []}, "dns-udp-responses-sizes-sent-ipv6": {"type": "object", "properties": {}, "required": []}, "dns-tcp-requests-sizes-received-ipv6": {"type": "object", "properties": {}, "required": []}, "dns-tcp-responses-sizes-sent-ipv6": {"type": "object", "properties": {}, "required": []}}, "required": ["dns-udp-requests-sizes-received-ipv4", "dns-udp-responses-sizes-sent-ipv4", "dns-tcp-requests-sizes-received-ipv4", "dns-tcp-responses-sizes-sent-ipv4", "dns-udp-requests-sizes-received-ipv6", "dns-udp-responses-sizes-sent-ipv6", "dns-tcp-requests-sizes-received-ipv6", "dns-tcp-responses-sizes-sent-ipv6"]}}, "required": ["json-stats-version", "boot-time", "config-time", "current-time", "version", "traffic"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"json-stats-version" : "1.5", "boot-time" : "2020-11-12T09:22:28.109Z", "config-time" : "2020-11-12T09:22:28.149Z", "current-time" : "2020-11-12T11:57:39.437Z", "version" : "9.16.6", "traffic" : {"dns-udp-requests-sizes-received-ipv4" : {}, "dns-udp-responses-sizes-sent-ipv4" : {}, "dns-tcp-requests-sizes-received-ipv4" : {}, "dns-tcp-responses-sizes-sent-ipv4" : {}, "dns-udp-requests-sizes-received-ipv6" : {}, "dns-udp-responses-sizes-sent-ipv6" : {}, "dns-tcp-requests-sizes-received-ipv6" : {}, "dns-tcp-responses-sizes-sent-ipv6" : {}}}
json_instruct
{"type": "object", "properties": {"json-stats-version": {"type": "string"}, "boot-time": {"type": "string"}, "config-time": {"type": "string"}, "current-time": {"type": "string"}, "version": {"type": "string"}, "traffic": {"type": "object", "properties": {"dns-udp-requests-sizes-received-ipv4": {"type": "object", "properties": {}, "required": []}, "dns-udp-responses-sizes-sent-ipv4": {"type": "object", "properties": {}, "required": []}, "dns-tcp-requests-sizes-received-ipv4": {"type": "object", "properties": {}, "required": []}, "dns-tcp-responses-sizes-sent-ipv4": {"type": "object", "properties": {}, "required": []}, "dns-udp-requests-sizes-received-ipv6": {"type": "object", "properties": {}, "required": []}, "dns-udp-responses-sizes-sent-ipv6": {"type": "object", "properties": {}, "required": []}, "dns-tcp-requests-sizes-received-ipv6": {"type": "object", "properties": {}, "required": []}, "dns-tcp-responses-sizes-sent-ipv6": {"type": "object", "properties": {}, "required": []}}, "required": ["dns-udp-requests-sizes-received-ipv4", "dns-udp-responses-sizes-sent-ipv4", "dns-tcp-requests-sizes-received-ipv4", "dns-tcp-responses-sizes-sent-ipv4", "dns-udp-requests-sizes-received-ipv6", "dns-udp-responses-sizes-sent-ipv6", "dns-tcp-requests-sizes-received-ipv6", "dns-tcp-responses-sizes-sent-ipv6"]}}, "required": ["json-stats-version", "boot-time", "config-time", "current-time", "version", "traffic"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"id": {"type": "string"}, "class": {"type": "string"}, "promotion": {"type": "string"}, "name": {"type": "string"}, "unlocks": {"type": "array", "items": {}}, "modifies": {"type": "array", "items": {"type": "string"}}, "maxPips": {"type": "integer"}, "prerequisite": {"type": "object", "properties": {"precursors": {"type": "array", "items": {"type": "string"}}, "spentPips": {"type": "integer"}, "levelRequired": {"type": "integer"}}, "required": ["precursors", "spentPips", "levelRequired"]}, "details": {"type": "string"}}, "required": ["id", "class", "promotion", "name", "unlocks", "modifies", "maxPips", "prerequisite", "details"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : "fortified-shield-slam", "class" : "Knight", "promotion" : "Swordsman", "name" : "Fortified Shield Slam", "unlocks" : [], "modifies" : ["shield-slam"], "maxPips" : 1, "prerequisite" : {"precursors" : ["commanding-vow"], "spentPips" : 0, "levelRequired" : 0}, "details" : "Fortified Shield Slam enhances Shield Slam so you are considered Blocking while charging."}
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "class": {"type": "string"}, "promotion": {"type": "string"}, "name": {"type": "string"}, "unlocks": {"type": "array", "items": {}}, "modifies": {"type": "array", "items": {"type": "string"}}, "maxPips": {"type": "integer"}, "prerequisite": {"type": "object", "properties": {"precursors": {"type": "array", "items": {"type": "string"}}, "spentPips": {"type": "integer"}, "levelRequired": {"type": "integer"}}, "required": ["precursors", "spentPips", "levelRequired"]}, "details": {"type": "string"}}, "required": ["id", "class", "promotion", "name", "unlocks", "modifies", "maxPips", "prerequisite", "details"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"TODO": {"type": "array", "items": {"type": "object", "properties": {"TODO": {"type": "string"}}, "required": ["TODO"]}}}, "required": ["TODO"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"TODO" : [{"TODO" : "OBCallbackUrl1(OBCallbackUrl1)"}]}
json_instruct
{"type": "object", "properties": {"TODO": {"type": "array", "items": {"type": "object", "properties": {"TODO": {"type": "string"}}, "required": ["TODO"]}}}, "required": ["TODO"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"profiles": {"type": "object", "properties": {"sipcmdline": {"type": "object", "properties": {"commandName": {"type": "string"}, "commandLineArgs": {"type": "string"}}, "required": ["commandName", "commandLineArgs"]}, "Docker": {"type": "object", "properties": {"commandName": {"type": "string"}}, "required": ["commandName"]}}, "required": ["sipcmdline", "Docker"]}}, "required": ["profiles"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"profiles" : {"sipcmdline" : {"commandName" : "Project", "commandLineArgs" : "-d 100@sipsorcery.cloud -s uac -v -u user --password password"}, "Docker" : {"commandName" : "Docker"}}}
json_instruct
{"type": "object", "properties": {"profiles": {"type": "object", "properties": {"sipcmdline": {"type": "object", "properties": {"commandName": {"type": "string"}, "commandLineArgs": {"type": "string"}}, "required": ["commandName", "commandLineArgs"]}, "Docker": {"type": "object", "properties": {"commandName": {"type": "string"}}, "required": ["commandName"]}}, "required": ["sipcmdline", "Docker"]}}, "required": ["profiles"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"nom": {"type": "string"}, "circ": {"type": "string"}, "dpt": {"type": "string"}, "inscrits": {"type": "integer"}, "abs": {"type": "integer"}, "votants": {"type": "integer"}, "blancs": {"type": "integer"}, "nuls": {"type": "integer"}, "exp": {"type": "integer"}, "res": {"type": "array", "items": {"type": "object", "properties": {"nuance": {"type": "string"}, "nom": {"type": "string"}, "voix": {"type": "integer"}}, "required": ["nuance", "nom", "voix"]}}}, "required": ["nom", "circ", "dpt", "inscrits", "abs", "votants", "blancs", "nuls", "exp", "res"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"nom" : "Villiers", "circ" : "1\u00e8re circonscription", "dpt" : "Indre", "inscrits" : 139, "abs" : 49, "votants" : 90, "blancs" : 8, "nuls" : 4, "exp" : 78, "res" : [{"nuance" : "REM", "nom" : "M. Fran\u00e7ois JOLIVET", "voix" : 44}, {"nuance" : "FN", "nom" : "Mme Myl\u00e8ne WUNSCH", "voix" : 34}]}
json_instruct
{"type": "object", "properties": {"nom": {"type": "string"}, "circ": {"type": "string"}, "dpt": {"type": "string"}, "inscrits": {"type": "integer"}, "abs": {"type": "integer"}, "votants": {"type": "integer"}, "blancs": {"type": "integer"}, "nuls": {"type": "integer"}, "exp": {"type": "integer"}, "res": {"type": "array", "items": {"type": "object", "properties": {"nuance": {"type": "string"}, "nom": {"type": "string"}, "voix": {"type": "integer"}}, "required": ["nuance", "nom", "voix"]}}}, "required": ["nom", "circ", "dpt", "inscrits", "abs", "votants", "blancs", "nuls", "exp", "res"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"type": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["type", "coordinates"]}, "properties": {"type": "object", "properties": {"code": {"type": "integer"}, "url": {"type": "string"}, "view": {"type": "string"}}, "required": ["code", "url", "view"]}}, "required": ["type", "geometry", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"type" : "Feature", "geometry" : {"type" : "Polygon", "coordinates" : [[[142.875, 26.833333333333332], [142.875, 26.916666666666668], [143.0, 26.916666666666668], [143.0, 26.833333333333332], [142.875, 26.833333333333332]]]}, "properties" : {"code" : 404227, "url" : "http://madefor.github.io/0410/api/v1/404227.geojson", "view" : "https://github.com/madefor/0410/blob/gh-pages/api/v1/404227.geojson"}}
json_instruct
{"type": "object", "properties": {"type": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["type", "coordinates"]}, "properties": {"type": "object", "properties": {"code": {"type": "integer"}, "url": {"type": "string"}, "view": {"type": "string"}}, "required": ["code", "url", "view"]}}, "required": ["type", "geometry", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "path": {"type": "string"}, "value": {"type": "number"}}, "required": ["name", "path", "value"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"name" : "Minerals", "path" : "Minerals", "value" : 2.459}, {"name" : "Capital goods", "path" : "Capital goods", "value" : 234.729}, {"name" : "Consumer goods", "path" : "Consumer goods", "value" : 154.617}, {"name" : "Intermediate goods", "path" : "Intermediate goods", "value" : 0.0}, {"name" : "Mach and Elec", "path" : "Mach and Elec", "value" : 208.107}, {"name" : "Metals", "path" : "Metals", "value" : 0.0}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "path": {"type": "string"}, "value": {"type": "number"}}, "required": ["name", "path", "value"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
[[2001, 10], [2002, 8], [2003, 18], [2004, 17], [2005, 21], [2006, 36], [2007, 70], [2008, 83], [2009, 106], [2010, 134], [2011, 142], [2012, 178], [2013, 167], [2014, 193]]
json_instruct
{"type": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}}, "required": ["name", "version", "description", "main", "scripts", "repository", "author", "license", "bugs", "homepage"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "timelinejs", "version" : "1.0.0", "description" : "Dotted visualisation to see trends in large quantities of data", "main" : "timeline.js", "scripts" : {"test" : "test"}, "repository" : {"type" : "git", "url" : "git+https://github.com/eleven-i/Timeline.git"}, "author" : "", "license" : "ISC", "bugs" : {"url" : "https://github.com/eleven-i/Timeline/issues"}, "homepage" : "https://github.com/eleven-i/Timeline#readme"}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}}, "required": ["name", "version", "description", "main", "scripts", "repository", "author", "license", "bugs", "homepage"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"author": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "name"]}, "date": {"type": "object", "properties": {"day": {"type": "integer"}, "full": {"type": "integer"}, "month": {"type": "integer"}, "week": {"type": "integer"}}, "required": ["day", "full", "month", "week"]}, "id": {"type": "string"}, "misc": {"type": "object", "properties": {"postHint": {"type": "string"}}, "required": ["postHint"]}, "picture": {"type": "object", "properties": {"filesize": {"type": "integer"}, "fullUrl": {"type": "string"}, "hash": {"type": "string"}, "height": {"type": "integer"}, "lqip": {"type": "string"}, "thumbnailUrl": {"type": "string"}, "url": {"type": "string"}, "width": {"type": "integer"}}, "required": ["filesize", "fullUrl", "hash", "height", "lqip", "thumbnailUrl", "url", "width"]}, "score": {"type": "object", "properties": {"comments": {"type": "integer"}, "downs": {"type": "integer"}, "isCurated": {"type": "boolean"}, "ratio": {"type": "integer"}, "ups": {"type": "integer"}, "value": {"type": "integer"}}, "required": ["comments", "downs", "isCurated", "ratio", "ups", "value"]}, "subreddit": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "name"]}, "tags": {"type": "array", "items": {"type": "string"}}, "title": {"type": "string"}, "url": {"type": "string"}}, "required": ["author", "date", "id", "misc", "picture", "score", "subreddit", "tags", "title", "url"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"author" : {"id" : "t2_1fumq1yk", "name" : "Czepeku"}, "date" : {"day" : 1595030400, "full" : 1595089470, "month" : 1593561600, "week" : 1594512000}, "id" : "t3_htjcje", "misc" : {"postHint" : "image"}, "picture" : {"filesize" : 169421, "fullUrl" : "https://preview.redd.it/owlddo6e6nb51.jpg?auto=webp&s=49d0df3361ba6c93c71c04e71c3318eba349d0ff", "hash" : "ac90a007cd", "height" : 950, "lqip" : "data:image/jpg;base64,/9j/2wBDAAYEBQYFBAYGBQYHBwYIChAKCgkJChQODwwQFxQYGBcUFhYaHSUfGhsjHBYWICwgIyYnKSopGR8tMC0oMCUoKSj/2wBDAQcHBwoIChMKChMoGhYaKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCj/wAARCAAQAAsDASIAAhEBAxEB/8QAFQABAQAAAAAAAAAAAAAAAAAABQP/xAAiEAACAgEDBAMAAAAAAAAAAAABAgMEBQARIRIiMUETI2H/xAAVAQEBAAAAAAAAAAAAAAAAAAADBf/EABwRAAICAgMAAAAAAAAAAAAAAAECAAMREiFRkf/aAAwDAQACEQMRAD8AQyaT4bGV2cwNJYQRxGRlKF9z1H2BxsOToW9YsVLclebBW/kiPQ31b7ke+NJYGWTG4GeJ7Fa03bGlaxAHRCzDdtj+b+NQzmJydjK2Jly90ByG7AwXwPHOpC6KStnvcRssM1nmf//Z", "thumbnailUrl" : "https://b.thumbs.redditmedia.com/VnSdw8Ov2wMdPcHrv0R_rPsaFvEzMdX_YvWxKtTj2yY.jpg", "url" : "https://preview.redd.it/owlddo6e6nb51.jpg?width=640&crop=smart&auto=webp&s=59261ecaebaea94f051e0a72504d6774c7f7f721", "width" : 640}, "score" : {"comments" : 2, "downs" : 0, "isCurated" : true, "ratio" : 1, "ups" : 59, "value" : 59}, "subreddit" : {"id" : "t5_3isai", "name" : "dndmaps"}, "tags" : ["Encounter"], "title" : "Crossroads at the Windmill Farm", "url" : "https://www.reddit.com/r/dndmaps/comments/htjcje/crossroads_at_the_windmill_farm_31x46/"}
json_instruct
{"type": "object", "properties": {"author": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "name"]}, "date": {"type": "object", "properties": {"day": {"type": "integer"}, "full": {"type": "integer"}, "month": {"type": "integer"}, "week": {"type": "integer"}}, "required": ["day", "full", "month", "week"]}, "id": {"type": "string"}, "misc": {"type": "object", "properties": {"postHint": {"type": "string"}}, "required": ["postHint"]}, "picture": {"type": "object", "properties": {"filesize": {"type": "integer"}, "fullUrl": {"type": "string"}, "hash": {"type": "string"}, "height": {"type": "integer"}, "lqip": {"type": "string"}, "thumbnailUrl": {"type": "string"}, "url": {"type": "string"}, "width": {"type": "integer"}}, "required": ["filesize", "fullUrl", "hash", "height", "lqip", "thumbnailUrl", "url", "width"]}, "score": {"type": "object", "properties": {"comments": {"type": "integer"}, "downs": {"type": "integer"}, "isCurated": {"type": "boolean"}, "ratio": {"type": "integer"}, "ups": {"type": "integer"}, "value": {"type": "integer"}}, "required": ["comments", "downs", "isCurated", "ratio", "ups", "value"]}, "subreddit": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "name"]}, "tags": {"type": "array", "items": {"type": "string"}}, "title": {"type": "string"}, "url": {"type": "string"}}, "required": ["author", "date", "id", "misc", "picture", "score", "subreddit", "tags", "title", "url"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"channel": {"type": "string"}, "name": {"type": "string"}, "meta_data": {"type": "object", "properties": {"camera": {"type": "string"}}, "required": ["camera"]}, "default_view": {"type": "string"}}, "required": ["channel", "name", "meta_data", "default_view"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"channel" : "summary", "name" : "vid_per_uid_counts_agg_total", "meta_data" : {"camera" : "living room 1:A"}, "default_view" : "bar"}
json_instruct
{"type": "object", "properties": {"channel": {"type": "string"}, "name": {"type": "string"}, "meta_data": {"type": "object", "properties": {"camera": {"type": "string"}}, "required": ["camera"]}, "default_view": {"type": "string"}}, "required": ["channel", "name", "meta_data", "default_view"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"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" : "Ligny-en-Cambr\u00e9sis", "dpt" : "Nord", "inscrits" : 1364, "abs" : 266, "votants" : 1098, "blancs" : 23, "nuls" : 11, "exp" : 1064, "res" : [{"panneau" : "2", "voix" : 454}, {"panneau" : "3", "voix" : 166}, {"panneau" : "9", "voix" : 153}, {"panneau" : "11", "voix" : 150}, {"panneau" : "1", "voix" : 56}, {"panneau" : "4", "voix" : 44}, {"panneau" : "8", "voix" : 11}, {"panneau" : "10", "voix" : 11}, {"panneau" : "5", "voix" : 10}, {"panneau" : "6", "voix" : 7}, {"panneau" : "7", "voix" : 2}]}
json_instruct
{"type": "object", "properties": {"nom": {"type": "string"}, "dpt": {"type": "string"}, "inscrits": {"type": "integer"}, "abs": {"type": "integer"}, "votants": {"type": "integer"}, "blancs": {"type": "integer"}, "nuls": {"type": "integer"}, "exp": {"type": "integer"}, "res": {"type": "array", "items": {"type": "object", "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#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {"type": "integer"}}, "productReviews": {"type": "array", "items": {"type": "object", "properties": {"productId": {"type": "integer"}, "reviewText": {"type": "string"}, "reviewDate": {"type": "string"}}, "required": ["productId", "reviewText", "reviewDate"]}}}, "required": ["userId", "cartId", "preferredProducts", "productReviews"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"userId" : 63795, "cartId" : "5293e6e0-9fa8-4e74-b259-caf9a2eb9108", "preferredProducts" : [4801, 542, 3790, 1990, 3728, 4686, 4803, 1954], "productReviews" : [{"productId" : 4262, "reviewText" : "this blue is slurpee.", "reviewDate" : "2016-08-01T05:52:00.3069222+03:00"}, {"productId" : 3466, "reviewText" : "My co-worker Erick has one of these. He says it looks fluffy.", "reviewDate" : "2017-06-15T20:05:58.8028451+03:00"}, {"productId" : 4294, "reviewText" : "My neighbor Lonnie has one of these. She works as a hobbit and she says it looks microscopic.", "reviewDate" : "2018-09-09T00:09:50.2522813+03:00"}, {"productId" : 4121, "reviewText" : "I saw one of these in Barbados and I bought one.", "reviewDate" : "2018-03-10T04:30:43.8253237+02:00"}]}
json_instruct
{"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {"type": "integer"}}, "productReviews": {"type": "array", "items": {"type": "object", "properties": {"productId": {"type": "integer"}, "reviewText": {"type": "string"}, "reviewDate": {"type": "string"}}, "required": ["productId", "reviewText", "reviewDate"]}}}, "required": ["userId", "cartId", "preferredProducts", "productReviews"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"values": {"type": "array", "items": {"type": "string"}}}, "required": ["values"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"values" : ["coordinates_hud:uninstall"]}
json_instruct
{"type": "object", "properties": {"values": {"type": "array", "items": {"type": "string"}}}, "required": ["values"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"Entries": {"type": "array", "items": {"type": "object", "properties": {"RequestUri": {"type": "string"}, "RequestMethod": {"type": "string"}, "RequestHeaders": {"type": "object", "properties": {"Accept": {"type": "string"}, "Accept-Encoding": {"type": "string"}, "Authorization": {"type": "string"}, "Connection": {"type": "string"}, "User-Agent": {"type": "string"}, "x-ms-client-request-id": {"type": "string"}}, "required": ["Accept", "Accept-Encoding", "Authorization", "Connection", "User-Agent", "x-ms-client-request-id"]}, "RequestBody": {"type": "null"}, "StatusCode": {"type": "integer"}, "ResponseHeaders": {"type": "object", "properties": {"Cache-Control": {"type": "string"}, "Content-Length": {"type": "string"}, "Date": {"type": "string"}, "Expires": {"type": "string"}, "Pragma": {"type": "string"}, "Server": {"type": "string"}, "Strict-Transport-Security": {"type": "string"}, "X-Content-Type-Options": {"type": "string"}, "x-ms-correlation-request-id": {"type": "string"}, "x-ms-ratelimit-remaining-subscription-deletes": {"type": "string"}, "x-ms-request-id": {"type": "string"}, "x-ms-routing-request-id": {"type": "string"}}, "required": ["Cache-Control", "Content-Length", "Date", "Expires", "Pragma", "Server", "Strict-Transport-Security", "X-Content-Type-Options", "x-ms-correlation-request-id", "x-ms-ratelimit-remaining-subscription-deletes", "x-ms-request-id", "x-ms-routing-request-id"]}, "ResponseBody": {"type": "null"}}, "required": ["RequestUri", "RequestMethod", "RequestHeaders", "RequestBody", "StatusCode", "ResponseHeaders", "ResponseBody"]}}, "Variables": {"type": "object", "properties": {}, "required": []}}, "required": ["Entries", "Variables"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"Entries" : [{"RequestUri" : "https://management.azure.com/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Logic/workflows/myworkflowxxx/providers/Microsoft.Insights/diagnosticSettings/mydiagnosticxxxx?api-version=2017-05-01-preview", "RequestMethod" : "DELETE", "RequestHeaders" : {"Accept" : "application/json", "Accept-Encoding" : "gzip,deflate", "Authorization" : "Sanitized", "Connection" : "keep-alive", "User-Agent" : "azsdk-js-arm-monitor/8.0.0-beta.1 core-rest-pipeline/1.9.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.19044)", "x-ms-client-request-id" : "9c0ab5fd-4c37-4821-8e8c-c7d29e7910c8"}, "RequestBody" : null, "StatusCode" : 200, "ResponseHeaders" : {"Cache-Control" : "no-cache", "Content-Length" : "0", "Date" : "Tue, 14 Jun 2022 07:44:21 GMT", "Expires" : "-1", "Pragma" : "no-cache", "Server" : "Microsoft-IIS/10.0", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", "X-Content-Type-Options" : "nosniff", "x-ms-correlation-request-id" : "e7d35548-143f-41c5-bac9-67714dddd643", "x-ms-ratelimit-remaining-subscription-deletes" : "14999", "x-ms-request-id" : "a0879495-a29e-43c5-b7e7-8ccbfd290f66", "x-ms-routing-request-id" : "SOUTHEASTASIA:20220614T074421Z:e7d35548-143f-41c5-bac9-67714dddd643"}, "ResponseBody" : null}], "Variables" : {}}
json_instruct
{"type": "object", "properties": {"Entries": {"type": "array", "items": {"type": "object", "properties": {"RequestUri": {"type": "string"}, "RequestMethod": {"type": "string"}, "RequestHeaders": {"type": "object", "properties": {"Accept": {"type": "string"}, "Accept-Encoding": {"type": "string"}, "Authorization": {"type": "string"}, "Connection": {"type": "string"}, "User-Agent": {"type": "string"}, "x-ms-client-request-id": {"type": "string"}}, "required": ["Accept", "Accept-Encoding", "Authorization", "Connection", "User-Agent", "x-ms-client-request-id"]}, "RequestBody": {"type": "null"}, "StatusCode": {"type": "integer"}, "ResponseHeaders": {"type": "object", "properties": {"Cache-Control": {"type": "string"}, "Content-Length": {"type": "string"}, "Date": {"type": "string"}, "Expires": {"type": "string"}, "Pragma": {"type": "string"}, "Server": {"type": "string"}, "Strict-Transport-Security": {"type": "string"}, "X-Content-Type-Options": {"type": "string"}, "x-ms-correlation-request-id": {"type": "string"}, "x-ms-ratelimit-remaining-subscription-deletes": {"type": "string"}, "x-ms-request-id": {"type": "string"}, "x-ms-routing-request-id": {"type": "string"}}, "required": ["Cache-Control", "Content-Length", "Date", "Expires", "Pragma", "Server", "Strict-Transport-Security", "X-Content-Type-Options", "x-ms-correlation-request-id", "x-ms-ratelimit-remaining-subscription-deletes", "x-ms-request-id", "x-ms-routing-request-id"]}, "ResponseBody": {"type": "null"}}, "required": ["RequestUri", "RequestMethod", "RequestHeaders", "RequestBody", "StatusCode", "ResponseHeaders", "ResponseBody"]}}, "Variables": {"type": "object", "properties": {}, "required": []}}, "required": ["Entries", "Variables"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "array", "items": {"type": "object", "properties": {"metagame_event_state_list": {"type": "array", "items": {"type": "object", "properties": {"metagame_event_state_id": {"type": "string"}, "name": {"type": "string"}}, "required": ["metagame_event_state_id", "name"]}}, "returned": {"type": "integer"}}, "required": ["metagame_event_state_list", "returned"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"metagame_event_state_list" : [{"metagame_event_state_id" : "135", "name" : "started"}], "returned" : 1}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"metagame_event_state_list": {"type": "array", "items": {"type": "object", "properties": {"metagame_event_state_id": {"type": "string"}, "name": {"type": "string"}}, "required": ["metagame_event_state_id", "name"]}}, "returned": {"type": "integer"}}, "required": ["metagame_event_state_list", "returned"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"Firebase": {"type": "string"}, "FirebaseCore": {"type": "string"}, "FirebaseCrashlytics": {"type": "string"}, "FirebaseDynamicLinks": {"type": "string"}, "FirebaseFirestore": {"type": "string"}, "FirebaseInstanceID": {"type": "string"}, "FirebaseMessaging": {"type": "string"}, "FirebaseRemoteConfig": {"type": "string"}, "GoogleDataTransport": {"type": "string"}, "GoogleDataTransportCCTSupport": {"type": "string"}}, "required": ["Firebase", "FirebaseCore", "FirebaseCrashlytics", "FirebaseDynamicLinks", "FirebaseFirestore", "FirebaseInstanceID", "FirebaseMessaging", "FirebaseRemoteConfig", "GoogleDataTransport", "GoogleDataTransportCCTSupport"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"Firebase" : "6.17.0", "FirebaseCore" : "6.6.2", "FirebaseCrashlytics" : "4.0.0-beta.4", "FirebaseDynamicLinks" : "4.0.7", "FirebaseFirestore" : "1.10.2", "FirebaseInstanceID" : "4.3.1", "FirebaseMessaging" : "4.2.1", "FirebaseRemoteConfig" : "4.4.7", "GoogleDataTransport" : "4.0.0", "GoogleDataTransportCCTSupport" : "1.4.0"}
json_instruct
{"type": "object", "properties": {"Firebase": {"type": "string"}, "FirebaseCore": {"type": "string"}, "FirebaseCrashlytics": {"type": "string"}, "FirebaseDynamicLinks": {"type": "string"}, "FirebaseFirestore": {"type": "string"}, "FirebaseInstanceID": {"type": "string"}, "FirebaseMessaging": {"type": "string"}, "FirebaseRemoteConfig": {"type": "string"}, "GoogleDataTransport": {"type": "string"}, "GoogleDataTransportCCTSupport": {"type": "string"}}, "required": ["Firebase", "FirebaseCore", "FirebaseCrashlytics", "FirebaseDynamicLinks", "FirebaseFirestore", "FirebaseInstanceID", "FirebaseMessaging", "FirebaseRemoteConfig", "GoogleDataTransport", "GoogleDataTransportCCTSupport"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"900146106": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900146107": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900146108": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900146109": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}}, "required": ["900146106", "900146107", "900146108", "900146109"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"900146106" : {"nama" : "TPS 1", "dapil" : [1802, 11805, 2180805]}, "900146107" : {"nama" : "TPS 2", "dapil" : [1802, 11805, 2180805]}, "900146108" : {"nama" : "TPS 3", "dapil" : [1802, 11805, 2180805]}, "900146109" : {"nama" : "TPS 4", "dapil" : [1802, 11805, 2180805]}}
json_instruct
{"type": "object", "properties": {"900146106": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900146107": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900146108": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900146109": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}}, "required": ["900146106", "900146107", "900146108", "900146109"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"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" : [[[[-72.141873, 43.378871], [-72.141628, 43.379012], [-72.141434, 43.379134], [-72.141373, 43.379177], [-72.140933, 43.379566], [-72.140693, 43.379745], [-72.135642, 43.377075], [-72.136435, 43.374854], [-72.136479, 43.374889], [-72.136837, 43.375131], [-72.136959, 43.375218], [-72.137635, 43.375742], [-72.138541, 43.376452], [-72.138866, 43.37672], [-72.139498, 43.377215], [-72.139798, 43.377451], [-72.140365, 43.377887], [-72.140607, 43.378067], [-72.140745, 43.378183], [-72.141005, 43.378366], [-72.141249, 43.378523], [-72.141491, 43.378663], [-72.141668, 43.378772], [-72.141873, 43.378871]]]], "properties" : {"id" : "usa-03754-zip", "type" : "zip", "name" : "03754", "code" : "03754"}}
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#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"backtest": {"type": "array", "items": {"type": "object", "properties": {"strategies": {"type": "array", "items": {"type": "object", "properties": {"strategy_name": {"type": "string"}, "params": {"type": "object", "properties": {"macdFastMa": {"type": "integer"}, "macdSlowMa": {"type": "integer"}, "macdSignal": {"type": "integer"}, "aoFastMa": {"type": "integer"}, "aoSlowMa": {"type": "integer"}}, "required": ["macdFastMa", "macdSlowMa", "macdSignal", "aoFastMa", "aoSlowMa"]}}, "required": ["strategy_name", "params"]}}, "pairs": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}, "interval": {"type": "string"}, "start_tmstmp": {"type": "string"}, "end_tmstmp": {"type": "string"}, "portfolio": {"type": "array", "items": {"type": "object", "properties": {"asset": {"type": "string"}, "quantity": {"type": "integer"}}, "required": ["asset", "quantity"]}}}, "required": ["strategies", "pairs", "interval", "start_tmstmp", "end_tmstmp", "portfolio"]}}}, "required": ["backtest"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"backtest" : [{"strategies" : [{"strategy_name" : "MACD_AOStrategy", "params" : {"macdFastMa" : 12, "macdSlowMa" : 26, "macdSignal" : 9, "aoFastMa" : 5, "aoSlowMa" : 34}}], "pairs" : [["BTC", "USDT"]], "interval" : "1DAY", "start_tmstmp" : "20090901000000", "end_tmstmp" : "20180801000000", "portfolio" : [{"asset" : "USDT", "quantity" : 0}]}]}
json_instruct
{"type": "object", "properties": {"backtest": {"type": "array", "items": {"type": "object", "properties": {"strategies": {"type": "array", "items": {"type": "object", "properties": {"strategy_name": {"type": "string"}, "params": {"type": "object", "properties": {"macdFastMa": {"type": "integer"}, "macdSlowMa": {"type": "integer"}, "macdSignal": {"type": "integer"}, "aoFastMa": {"type": "integer"}, "aoSlowMa": {"type": "integer"}}, "required": ["macdFastMa", "macdSlowMa", "macdSignal", "aoFastMa", "aoSlowMa"]}}, "required": ["strategy_name", "params"]}}, "pairs": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}, "interval": {"type": "string"}, "start_tmstmp": {"type": "string"}, "end_tmstmp": {"type": "string"}, "portfolio": {"type": "array", "items": {"type": "object", "properties": {"asset": {"type": "string"}, "quantity": {"type": "integer"}}, "required": ["asset", "quantity"]}}}, "required": ["strategies", "pairs", "interval", "start_tmstmp", "end_tmstmp", "portfolio"]}}}, "required": ["backtest"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"word" : "edify", "definition" : "1. To build; to construct. [Archaic] There was a holy chapel edified. Spenser. 2. To instruct and improve, especially in moral and religious knowledge; to teach. It does not appear probable that our dispute [about miracles] would either edify or enlighten the public. Gibbon. 3. To teach or persuade. [Obs.] Bacon.\n\nTo improve. [R.] Swift."}
json_instruct
{"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"name": {"type": "string"}, "area": {"type": "string"}, "description": {"type": "string"}, "region": {"type": "string"}, "sortorder": {"type": "integer"}}, "required": ["name", "area", "description", "region", "sortorder"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "Encosta de Feiyun", "area" : "Porto de Liyue", "description" : "Aqui vivem os mercadores que o fizeram. Aqui, os residentes s\u00e3o pr\u00f3speros e despreocupados. Aqui, as luzes s\u00e3o fortes e nunca se apagam.", "region" : "Liyue", "sortorder" : 102}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "area": {"type": "string"}, "description": {"type": "string"}, "region": {"type": "string"}, "sortorder": {"type": "integer"}}, "required": ["name", "area", "description", "region", "sortorder"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"id": {"type": "integer"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"src:alt_label": {"type": "string"}, "src:geom": {"type": "string"}, "wof:geomhash": {"type": "string"}, "wof:id": {"type": "integer"}, "wof:repo": {"type": "string"}}, "required": ["src:alt_label", "src:geom", "wof:geomhash", "wof:id", "wof:repo"]}, "bbox": {"type": "array", "items": {"type": "number"}}, "geometry": {"type": "object", "properties": {"coordinates": {"type": "array", "items": {"type": "number"}}, "type": {"type": "string"}}, "required": ["coordinates", "type"]}}, "required": ["id", "type", "properties", "bbox", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : 404434221, "type" : "Feature", "properties" : {"src:alt_label" : "quattroshapes_pg", "src:geom" : "quattroshapes_pg", "wof:geomhash" : "36f6659152639b7dda17e068384bce6f", "wof:id" : 404434221, "wof:repo" : "whosonfirst-data-admin-gb"}, "bbox" : [-4.47667, 50.41885, -4.47667, 50.41885], "geometry" : {"coordinates" : [-4.47667, 50.41885], "type" : "Point"}}
json_instruct
{"type": "object", "properties": {"id": {"type": "integer"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"src:alt_label": {"type": "string"}, "src:geom": {"type": "string"}, "wof:geomhash": {"type": "string"}, "wof:id": {"type": "integer"}, "wof:repo": {"type": "string"}}, "required": ["src:alt_label", "src:geom", "wof:geomhash", "wof:id", "wof:repo"]}, "bbox": {"type": "array", "items": {"type": "number"}}, "geometry": {"type": "object", "properties": {"coordinates": {"type": "array", "items": {"type": "number"}}, "type": {"type": "string"}}, "required": ["coordinates", "type"]}}, "required": ["id", "type", "properties", "bbox", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"variants": {"type": "object", "properties": {"normal": {"type": "object", "properties": {"model": {"type": "string"}}, "required": ["model"]}}, "required": ["normal"]}}, "required": ["variants"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"variants" : {"normal" : {"model" : "PlastiTech:plastic_block"}}}
json_instruct
{"type": "object", "properties": {"variants": {"type": "object", "properties": {"normal": {"type": "object", "properties": {"model": {"type": "string"}}, "required": ["model"]}}, "required": ["normal"]}}, "required": ["variants"], "$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#"}
["docto"]
json_instruct
{"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"commentStamp": {"type": "string"}, "super": {"type": "string"}, "category": {"type": "string"}, "classinstvars": {"type": "array", "items": {}}, "pools": {"type": "array", "items": {}}, "classvars": {"type": "array", "items": {}}, "instvars": {"type": "array", "items": {"type": "string"}}, "name": {"type": "string"}, "type": {"type": "string"}}, "required": ["commentStamp", "super", "category", "classinstvars", "pools", "classvars", "instvars", "name", "type"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"commentStamp" : "<historical>", "super" : "UndefinedObject", "category" : "Voyage-JSON", "classinstvars" : [], "pools" : [], "classvars" : [], "instvars" : ["objectClass", "objectId"], "name" : "VOMissingObject", "type" : "normal"}
json_instruct
{"type": "object", "properties": {"commentStamp": {"type": "string"}, "super": {"type": "string"}, "category": {"type": "string"}, "classinstvars": {"type": "array", "items": {}}, "pools": {"type": "array", "items": {}}, "classvars": {"type": "array", "items": {}}, "instvars": {"type": "array", "items": {"type": "string"}}, "name": {"type": "string"}, "type": {"type": "string"}}, "required": ["commentStamp", "super", "category", "classinstvars", "pools", "classvars", "instvars", "name", "type"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "array", "items": {"type": "array", "items": {"type": "string"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
[["620822108201", "\u5173\u5e84\u6751\u6751\u59d4\u4f1a", "220", "0"], ["620822108202", "\u5b81\u5b50\u6751\u6751\u59d4\u4f1a", "220", "0"], ["620822108203", "\u4efb\u5bb6\u5761\u6751\u6751\u59d4\u4f1a", "220", "0"], ["620822108204", "\u97e9\u5bb6\u6d3c\u6751\u6751\u59d4\u4f1a", "220", "0"], ["620822108205", "\u4e94\u661f\u6751\u6751\u59d4\u4f1a", "121", "0"], ["620822108206", "\u90d1\u5bb6\u6d3c\u6751\u6751\u59d4\u4f1a", "220", "0"], ["620822108207", "\u9752\u5c71\u6751\u6751\u59d4\u4f1a", "220", "0"], ["620822108208", "\u5854\u8d24\u6751\u6751\u59d4\u4f1a", "220", "0"], ["620822108209", "\u84b2\u7a9d\u6751\u6751\u59d4\u4f1a", "220", "0"], ["620822108210", "\u65b0\u5e99\u6751\u6751\u59d4\u4f1a", "220", "0"]]
json_instruct
{"type": "array", "items": {"type": "array", "items": {"type": "string"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"PREVALENCE_BY_GENDER_AGE_YEAR": {"type": "object", "properties": {"TRELLIS_NAME": {"type": "array", "items": {}}, "SERIES_NAME": {"type": "array", "items": {}}, "X_CALENDAR_YEAR": {"type": "array", "items": {}}, "Y_PREVALENCE_1000PP": {"type": "array", "items": {}}}, "required": ["TRELLIS_NAME", "SERIES_NAME", "X_CALENDAR_YEAR", "Y_PREVALENCE_1000PP"]}, "PREVALENCE_BY_MONTH": {"type": "object", "properties": {"X_CALENDAR_MONTH": {"type": "array", "items": {}}, "Y_PREVALENCE_1000PP": {"type": "array", "items": {}}}, "required": ["X_CALENDAR_MONTH", "Y_PREVALENCE_1000PP"]}, "PROCEDURE_FREQUENCY_DISTRIBUTION": {"type": "object", "properties": {"Y_NUM_PERSONS": {"type": "array", "items": {"type": "integer"}}, "X_COUNT": {"type": "array", "items": {"type": "integer"}}}, "required": ["Y_NUM_PERSONS", "X_COUNT"]}, "PROCEDURES_BY_TYPE": {"type": "object", "properties": {"CONCEPT_NAME": {"type": "string"}, "COUNT_VALUE": {"type": "integer"}}, "required": ["CONCEPT_NAME", "COUNT_VALUE"]}, "AGE_AT_FIRST_OCCURRENCE": {"type": "object", "properties": {"CATEGORY": {"type": "array", "items": {"type": "string"}}, "MIN_VALUE": {"type": "array", "items": {"type": "integer"}}, "P10_VALUE": {"type": "array", "items": {"type": "integer"}}, "P25_VALUE": {"type": "array", "items": {"type": "integer"}}, "MEDIAN_VALUE": {"type": "array", "items": {"type": "integer"}}, "P75_VALUE": {"type": "array", "items": {"type": "integer"}}, "P90_VALUE": {"type": "array", "items": {"type": "integer"}}, "MAX_VALUE": {"type": "array", "items": {"type": "integer"}}}, "required": ["CATEGORY", "MIN_VALUE", "P10_VALUE", "P25_VALUE", "MEDIAN_VALUE", "P75_VALUE", "P90_VALUE", "MAX_VALUE"]}}, "required": ["PREVALENCE_BY_GENDER_AGE_YEAR", "PREVALENCE_BY_MONTH", "PROCEDURE_FREQUENCY_DISTRIBUTION", "PROCEDURES_BY_TYPE", "AGE_AT_FIRST_OCCURRENCE"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"PREVALENCE_BY_GENDER_AGE_YEAR" : {"TRELLIS_NAME" : [], "SERIES_NAME" : [], "X_CALENDAR_YEAR" : [], "Y_PREVALENCE_1000PP" : []}, "PREVALENCE_BY_MONTH" : {"X_CALENDAR_MONTH" : [], "Y_PREVALENCE_1000PP" : []}, "PROCEDURE_FREQUENCY_DISTRIBUTION" : {"Y_NUM_PERSONS" : [0, 0], "X_COUNT" : [1, 2]}, "PROCEDURES_BY_TYPE" : {"CONCEPT_NAME" : "EHR order list entry", "COUNT_VALUE" : 258}, "AGE_AT_FIRST_OCCURRENCE" : {"CATEGORY" : ["MALE", "FEMALE"], "MIN_VALUE" : [1, 1], "P10_VALUE" : [4, 11], "P25_VALUE" : [24, 46], "MEDIAN_VALUE" : [57, 58], "P75_VALUE" : [68, 73], "P90_VALUE" : [79, 82], "MAX_VALUE" : [94, 89]}}
json_instruct
{"type": "object", "properties": {"PREVALENCE_BY_GENDER_AGE_YEAR": {"type": "object", "properties": {"TRELLIS_NAME": {"type": "array", "items": {}}, "SERIES_NAME": {"type": "array", "items": {}}, "X_CALENDAR_YEAR": {"type": "array", "items": {}}, "Y_PREVALENCE_1000PP": {"type": "array", "items": {}}}, "required": ["TRELLIS_NAME", "SERIES_NAME", "X_CALENDAR_YEAR", "Y_PREVALENCE_1000PP"]}, "PREVALENCE_BY_MONTH": {"type": "object", "properties": {"X_CALENDAR_MONTH": {"type": "array", "items": {}}, "Y_PREVALENCE_1000PP": {"type": "array", "items": {}}}, "required": ["X_CALENDAR_MONTH", "Y_PREVALENCE_1000PP"]}, "PROCEDURE_FREQUENCY_DISTRIBUTION": {"type": "object", "properties": {"Y_NUM_PERSONS": {"type": "array", "items": {"type": "integer"}}, "X_COUNT": {"type": "array", "items": {"type": "integer"}}}, "required": ["Y_NUM_PERSONS", "X_COUNT"]}, "PROCEDURES_BY_TYPE": {"type": "object", "properties": {"CONCEPT_NAME": {"type": "string"}, "COUNT_VALUE": {"type": "integer"}}, "required": ["CONCEPT_NAME", "COUNT_VALUE"]}, "AGE_AT_FIRST_OCCURRENCE": {"type": "object", "properties": {"CATEGORY": {"type": "array", "items": {"type": "string"}}, "MIN_VALUE": {"type": "array", "items": {"type": "integer"}}, "P10_VALUE": {"type": "array", "items": {"type": "integer"}}, "P25_VALUE": {"type": "array", "items": {"type": "integer"}}, "MEDIAN_VALUE": {"type": "array", "items": {"type": "integer"}}, "P75_VALUE": {"type": "array", "items": {"type": "integer"}}, "P90_VALUE": {"type": "array", "items": {"type": "integer"}}, "MAX_VALUE": {"type": "array", "items": {"type": "integer"}}}, "required": ["CATEGORY", "MIN_VALUE", "P10_VALUE", "P25_VALUE", "MEDIAN_VALUE", "P75_VALUE", "P90_VALUE", "MAX_VALUE"]}}, "required": ["PREVALENCE_BY_GENDER_AGE_YEAR", "PREVALENCE_BY_MONTH", "PROCEDURE_FREQUENCY_DISTRIBUTION", "PROCEDURES_BY_TYPE", "AGE_AT_FIRST_OCCURRENCE"], "$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"}, "license": {"type": "string"}, "url": {"type": "array", "items": {"type": "string"}}, "homepage": {"type": "string"}, "env_set": {"type": "object", "properties": {"KRE_HOME": {"type": "string"}, "KRE_USER_HOME": {"type": "string"}}, "required": ["KRE_HOME", "KRE_USER_HOME"]}, "bin": {"type": "string"}, "post_install": {"type": "string"}}, "required": ["version", "license", "url", "homepage", "env_set", "bin", "post_install"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"version" : "latest", "license" : "Apache 2.0", "url" : ["https://raw.githubusercontent.com/aspnet/Home/master/kvm.ps1"], "homepage" : "https://github.com/aspnet/Home", "env_set" : {"KRE_HOME" : "$dir\\.k", "KRE_USER_HOME" : "$dir\\.k"}, "bin" : "kvm.ps1", "post_install" : "iex \"kvm upgrade\""}
json_instruct
{"type": "object", "properties": {"version": {"type": "string"}, "license": {"type": "string"}, "url": {"type": "array", "items": {"type": "string"}}, "homepage": {"type": "string"}, "env_set": {"type": "object", "properties": {"KRE_HOME": {"type": "string"}, "KRE_USER_HOME": {"type": "string"}}, "required": ["KRE_HOME", "KRE_USER_HOME"]}, "bin": {"type": "string"}, "post_install": {"type": "string"}}, "required": ["version", "license", "url", "homepage", "env_set", "bin", "post_install"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"h": {"type": "array", "items": {"type": "object", "properties": {"d": {"type": "array", "items": {"type": "object", "properties": {"e": {"type": "array", "items": {"type": "string"}}, "f": {"type": "string"}}, "required": ["e", "f"]}}}, "required": ["d"]}}, "stem": {"type": "string"}, "t": {"type": "string"}}, "required": ["h", "stem", "t"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"h" : [{"d" : [{"e" : ["\ufff9`Sapipaso'elin~ `to~ `demak~ `ira~.\ufffa\ufffb\u4fe1\u4efb\u4ed6\u5de5\u4f5c\u7684\u65b9\u5f0f\u3002"], "f" : "\u4fe1\u4efb\u3001\u4fe1\u8cf4\u4ed6\u4eba\u6191\u85c9\u7684\u624b\u6bb5\u3002"}]}], "stem" : "so'elin", "t" : "sapipaso'elin"}
json_instruct
{"type": "object", "properties": {"h": {"type": "array", "items": {"type": "object", "properties": {"d": {"type": "array", "items": {"type": "object", "properties": {"e": {"type": "array", "items": {"type": "string"}}, "f": {"type": "string"}}, "required": ["e", "f"]}}}, "required": ["d"]}}, "stem": {"type": "string"}, "t": {"type": "string"}}, "required": ["h", "stem", "t"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"title": {"type": "string"}, "fields": {"type": "array", "items": {"type": "string"}}, "abstract": {"type": "string"}, "citation": {"type": "string"}, "year": {"type": "string"}, "departments": {"type": "array", "items": {"type": "string"}}, "conf": {"type": "string"}, "authors": {"type": "array", "items": {"type": "string"}}, "pages": {"type": "integer"}}, "required": ["title", "fields", "abstract", "citation", "year", "departments", "conf", "authors", "pages"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"title" : "Parameter-Free Auto-Weighted Multiple Graph Learning: A Framework for Multiview Clustering and Semi-Supervised Classification.", "fields" : ["data set", "graph", "cluster analysis", "manifold", "machine learning"], "abstract" : "Graph-based approaches have been successful in unsupervised and semi-supervised learning. In this paper, we focus on the real-world applications where the same instance can be represented by multiple heterogeneous features. The key point of utilizing the graph-based knowledge to deal with this kind of data is to reasonably integrate the different representations and obtain the most consistent manifold with the real data distributions. In this paper, we propose a novel framework via the reformulation of the standard spectral learning model, which can be used for multiview clustering and semisupervised tasks. Unlike other methods in the literature, the proposed methods can learn an optimal weight for each graph automatically without introducing an additive parameter as previous methods do. Furthermore, our objective under semisupervised learning is convex and the global optimal result will be obtained. Extensive empirical results on different real-world data sets demonstrate that the proposed methods achieve comparable performance with the state-of-the-art approaches and can be used more practically.", "citation" : "Citations (23)", "year" : "2016", "departments" : ["Northwestern Polytechnical University", "Northwestern Polytechnical University", "Chinese Academy of Sciences"], "conf" : "ijcai", "authors" : ["Feiping Nie.....http://dblp.org/pers/hd/n/Nie:Feiping", "Jing Li.....http://dblp.org/pers/hd/l/Li_0009:Jing", "Xuelong Li.....http://dblp.org/pers/hd/l/Li:Xuelong"], "pages" : 7}
json_instruct
{"type": "object", "properties": {"title": {"type": "string"}, "fields": {"type": "array", "items": {"type": "string"}}, "abstract": {"type": "string"}, "citation": {"type": "string"}, "year": {"type": "string"}, "departments": {"type": "array", "items": {"type": "string"}}, "conf": {"type": "string"}, "authors": {"type": "array", "items": {"type": "string"}}, "pages": {"type": "integer"}}, "required": ["title", "fields", "abstract", "citation", "year", "departments", "conf", "authors", "pages"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"type": {"type": "string"}, "features": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "id": {"type": "string"}, "properties": {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"]}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["type", "coordinates"]}}, "required": ["type", "id", "properties", "geometry"]}}, "ISO3": {"type": "string"}, "ISO2": {"type": "string"}}, "required": ["type", "features", "ISO3", "ISO2"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"type" : "FeatureCollection", "features" : [{"type" : "Feature", "id" : "PSE", "properties" : {"name" : "West Bank"}, "geometry" : {"type" : "Polygon", "coordinates" : [[[35.545665, 32.393992], [35.545252, 31.782505], [35.397561, 31.489086], [34.927408, 31.353435], [34.970507, 31.616778], [35.225892, 31.754341], [34.974641, 31.866582], [35.18393, 32.532511], [35.545665, 32.393992]]]}}], "ISO3" : "PSE", "ISO2" : "PS"}
json_instruct
{"type": "object", "properties": {"type": {"type": "string"}, "features": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "id": {"type": "string"}, "properties": {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"]}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["type", "coordinates"]}}, "required": ["type", "id", "properties", "geometry"]}}, "ISO3": {"type": "string"}, "ISO2": {"type": "string"}}, "required": ["type", "features", "ISO3", "ISO2"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "null"}}, "required": ["contract", "tool", "start", "end", "duration", "analysis"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"contract" : "0x012259fdb06c0f5fe189a6f4afcd962a4057dd62", "tool" : "securify", "start" : 1563289435.1457129, "end" : 1563289441.3546708, "duration" : 6.20895791053772, "analysis" : null}
json_instruct
{"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "null"}}, "required": ["contract", "tool", "start", "end", "duration", "analysis"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"parent": {"type": "string"}, "textures": {"type": "object", "properties": {"layer0": {"type": "string"}}, "required": ["layer0"]}}, "required": ["parent", "textures"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"parent" : "serider:shield", "textures" : {"layer0" : "serider:item/glowing_obsidian_shield"}}
json_instruct
{"type": "object", "properties": {"parent": {"type": "string"}, "textures": {"type": "object", "properties": {"layer0": {"type": "string"}}, "required": ["layer0"]}}, "required": ["parent", "textures"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "array", "items": {"type": "object", "properties": {"DeniedAlternatives": {"type": "array", "items": {}}, "Files": {"type": "object", "properties": {"items/active/weapons/melee/spear/radienspear.activeitem": {"type": "array", "items": {"type": "string"}}}, "required": ["items/active/weapons/melee/spear/radienspear.activeitem"]}, "Texts": {"type": "object", "properties": {"Chs": {"type": "string"}, "Eng": {"type": "string"}}, "required": ["Chs", "Eng"]}}, "required": ["DeniedAlternatives", "Files", "Texts"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"DeniedAlternatives" : [], "Files" : {"items/active/weapons/melee/spear/radienspear.activeitem" : ["/description"]}, "Texts" : {"Chs" : "\u4ee5\u5df1\u4e4b\u8eab\u94f8\u6210\uff0c\u53ef\u9760\u800c\u53c8\u5371\u9669\u3002\n^cyan;\u72e9\u730e\u6b66\u5668^reset;", "Eng" : "Made from your own parts. Sturdy and dangerous.\n^cyan;Hunting weapon^reset;"}}, {"DeniedAlternatives" : [], "Files" : {"items/active/weapons/melee/spear/radienspear.activeitem" : ["/altAbility/name"]}, "Texts" : {"Chs" : "\u8f90\u5c04\u51b2\u51fb", "Eng" : "Rad Blast"}}, {"DeniedAlternatives" : [], "Files" : {"items/active/weapons/melee/spear/radienspear.activeitem" : ["/shortdescription"]}, "Texts" : {"Chs" : "\u827e\u80af\u957f\u77db", "Eng" : "X'ian Spear"}}, {"DeniedAlternatives" : [], "Files" : {"items/active/weapons/melee/spear/radienspear.activeitem" : ["/upgradeParameters/shortdescription"]}, "Texts" : {"Chs" : "^white;\u751f\u7269\u6001\u957f\u77db^reset; ^cyan;\ue024^reset;", "Eng" : "^white;Bio-Spear^reset; ^cyan;\ue024^reset;"}}, {"DeniedAlternatives" : [], "Files" : {"items/active/weapons/melee/spear/radienspear.activeitem" : ["/upgradeParameters2/shortdescription"]}, "Texts" : {"Chs" : "^white;\u65e0\u5b83\u957f\u77db^reset; ^#d472ff;\ue024^reset;", "Eng" : "^white;Muta-Spear^reset; ^#d472ff;\ue024^reset;"}}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"DeniedAlternatives": {"type": "array", "items": {}}, "Files": {"type": "object", "properties": {"items/active/weapons/melee/spear/radienspear.activeitem": {"type": "array", "items": {"type": "string"}}}, "required": ["items/active/weapons/melee/spear/radienspear.activeitem"]}, "Texts": {"type": "object", "properties": {"Chs": {"type": "string"}, "Eng": {"type": "string"}}, "required": ["Chs", "Eng"]}}, "required": ["DeniedAlternatives", "Files", "Texts"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"type": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "number"}}}, "required": ["type", "coordinates"]}, "properties": {"type": "object", "properties": {"maximum-net-dwellings": {"type": "string"}, "minimum-net-dwellings": {"type": "string"}, "planning-permission-status": {"type": "string"}, "name": {"type": "string"}, "start-date": {"type": "string"}, "site-plan-url": {"type": "string"}, "organisation": {"type": "string"}, "ownership-status": {"type": "string"}, "hectares": {"type": "string"}, "point": {"type": "string"}, "site": {"type": "string"}, "site-address": {"type": "string"}, "slug": {"type": "string"}, "entity": {"type": "integer"}, "entry-date": {"type": "string"}}, "required": ["maximum-net-dwellings", "minimum-net-dwellings", "planning-permission-status", "name", "start-date", "site-plan-url", "organisation", "ownership-status", "hectares", "point", "site", "site-address", "slug", "entity", "entry-date"]}}, "required": ["type", "geometry", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"type" : "Feature", "geometry" : {"type" : "Point", "coordinates" : [-3.52516, 50.4623]}, "properties" : {"maximum-net-dwellings" : "25", "minimum-net-dwellings" : "13", "planning-permission-status" : "not permissioned", "name" : "TNPH43", "start-date" : "2016-06-24", "site-plan-url" : "http://torbay.addresscafe.com/app/exploreit/default.aspx", "organisation" : "local-authority-eng:TOB", "ownership-status" : "not owned by a public authority", "hectares" : "0.81", "point" : "POINT(-3.52516 50.4623)", "site" : "TNPH43", "site-address" : "Fleet Walk Shopping Centre, Torquay", "slug" : "/brownfield-land/local-authority-eng/TOB/TNPH43", "entity" : 496868, "entry-date" : "2017-12-20"}}
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": {"maximum-net-dwellings": {"type": "string"}, "minimum-net-dwellings": {"type": "string"}, "planning-permission-status": {"type": "string"}, "name": {"type": "string"}, "start-date": {"type": "string"}, "site-plan-url": {"type": "string"}, "organisation": {"type": "string"}, "ownership-status": {"type": "string"}, "hectares": {"type": "string"}, "point": {"type": "string"}, "site": {"type": "string"}, "site-address": {"type": "string"}, "slug": {"type": "string"}, "entity": {"type": "integer"}, "entry-date": {"type": "string"}}, "required": ["maximum-net-dwellings", "minimum-net-dwellings", "planning-permission-status", "name", "start-date", "site-plan-url", "organisation", "ownership-status", "hectares", "point", "site", "site-address", "slug", "entity", "entry-date"]}}, "required": ["type", "geometry", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"text": {"type": "string"}, "historical": {"type": "string"}, "credits": {"type": "string"}, "sections": {"type": "array", "items": {"type": "object", "properties": {"prefix": {"type": "string"}, "text": {"type": "string"}}, "required": ["prefix", "text"]}}, "division": {"type": "object", "properties": {"identifier": {"type": "string"}, "text": {"type": "string"}}, "required": ["identifier", "text"]}, "title": {"type": "object", "properties": {"identifier": {"type": "string"}, "text": {"type": "string"}}, "required": ["identifier", "text"]}, "subtitle": {"type": "object", "properties": {"prefix": {"type": "string"}, "text": {"type": "string"}}, "required": ["prefix", "text"]}, "chapter": {"type": "object", "properties": {"identifier": {"type": "string"}, "text": {"type": "string"}}, "required": ["identifier", "text"]}, "heading": {"type": "object", "properties": {"title": {"type": "string"}, "chaptersection": {"type": "string"}, "identifier": {"type": "string"}, "catch_text": {"type": "string"}}, "required": ["title", "chaptersection", "identifier", "catch_text"]}}, "required": ["text", "historical", "credits", "sections", "division", "title", "subtitle", "chapter", "heading"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"text" : "", "historical" : "Legislative History of Laws\n\nFor Law 13-281, see notes following \u00a7 42-3131.05.\n\nDC CODE \u00a7 42-3651.03\n\nCurrent through December 11, 2012", "credits" : "(Apr. 27, 2001, D.C. Law 13-281, \u00a7 503, 48 DCR 1888.)", "sections" : [{"prefix" : "a", "text" : " Notwithstanding the availability of any other remedy, the Corporation Counsel may, in the name of the District of Columbia and based on the grounds set forth in \u00a7 42-3651.02, petition the Superior Court of the District of Columbia (\"Court\") to appoint a receiver of the rents or payments for use and occupancy for the affected rental housing accommodation."}, {"prefix" : "b", "text" : " Notwithstanding the availability of any other remedy, a majority of the tenants in the rental housing accommodation may, based on the grounds set forth in \u00a7 42-3651.02, submit a written request asking the Corporation Counsel to petition the Court to appoint a receiver of the rents or payments for use and occupancy of the affected rental housing accommodation. If the Corporation Counsel denies the request or does not file a petition within 5 days, excluding Saturdays, Sundays, and legal holidays, after receiving a request, the requestor may file with the Court a petition for the appointment of a receiver."}, {"prefix" : "c", "text" : " Except as provided in \u00a7 42-3651.04(b), the Court shall set a date for a hearing on the petition no later than 30 days after the filing of the petition."}], "division" : {"identifier" : "VII", "text" : "Property."}, "title" : {"identifier" : "42", "text" : "Real Property. (Refs & Annos)"}, "subtitle" : {"prefix" : "VII", "text" : " Rental Housing."}, "chapter" : {"identifier" : "36A", "text" : "Tenant Receivership."}, "heading" : {"title" : "42", "chaptersection" : "3651", "identifier" : "42-3651.03", "catch_text" : "Petition for receivership."}}
json_instruct
{"type": "object", "properties": {"text": {"type": "string"}, "historical": {"type": "string"}, "credits": {"type": "string"}, "sections": {"type": "array", "items": {"type": "object", "properties": {"prefix": {"type": "string"}, "text": {"type": "string"}}, "required": ["prefix", "text"]}}, "division": {"type": "object", "properties": {"identifier": {"type": "string"}, "text": {"type": "string"}}, "required": ["identifier", "text"]}, "title": {"type": "object", "properties": {"identifier": {"type": "string"}, "text": {"type": "string"}}, "required": ["identifier", "text"]}, "subtitle": {"type": "object", "properties": {"prefix": {"type": "string"}, "text": {"type": "string"}}, "required": ["prefix", "text"]}, "chapter": {"type": "object", "properties": {"identifier": {"type": "string"}, "text": {"type": "string"}}, "required": ["identifier", "text"]}, "heading": {"type": "object", "properties": {"title": {"type": "string"}, "chaptersection": {"type": "string"}, "identifier": {"type": "string"}, "catch_text": {"type": "string"}}, "required": ["title", "chaptersection", "identifier", "catch_text"]}}, "required": ["text", "historical", "credits", "sections", "division", "title", "subtitle", "chapter", "heading"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"manifest_version": {"type": "integer"}, "name": {"type": "string"}, "short_name": {"type": "string"}, "description": {"type": "string"}, "version": {"type": "string"}, "icons": {"type": "object", "properties": {"16": {"type": "string"}, "64": {"type": "string"}, "256": {"type": "string"}}, "required": ["16", "64", "256"]}, "chrome_settings_overrides": {"type": "object", "properties": {"search_provider": {"type": "object", "properties": {"name": {"type": "string"}, "keyword": {"type": "string"}, "favicon_url": {"type": "string"}, "search_url": {"type": "string"}}, "required": ["name", "keyword", "favicon_url", "search_url"]}}, "required": ["search_provider"]}, "browser_specific_settings": {"type": "object", "properties": {"gecko": {"type": "object", "properties": {"id": {"type": "string"}, "strict_min_version": {"type": "string"}}, "required": ["id", "strict_min_version"]}}, "required": ["gecko"]}, "author": {"type": "string"}, "homepage_url": {"type": "string"}}, "required": ["manifest_version", "name", "short_name", "description", "version", "icons", "chrome_settings_overrides", "browser_specific_settings", "author", "homepage_url"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"manifest_version" : 2, "name" : "ArchLinux AUR Search", "short_name" : "archlinux_search_aur", "description" : "Adds ArchLinux AUR as a search engine.", "version" : "1.0.1", "icons" : {"16" : "icons/arch.svg", "64" : "icons/arch.svg", "256" : "icons/arch.svg"}, "chrome_settings_overrides" : {"search_provider" : {"name" : "ArchLinux User Repository (AUR)", "keyword" : "alaur", "favicon_url" : "https://aur.archlinux.org/images/favicon.ico", "search_url" : "https://aur.archlinux.org/packages.php?K={searchTerms}"}}, "browser_specific_settings" : {"gecko" : {"id" : "ArchAur@archlinux.org", "strict_min_version" : "55.0"}}, "author" : "noraj", "homepage_url" : "https://github.com/noraj/firefox-extension-arch-search"}
json_instruct
{"type": "object", "properties": {"manifest_version": {"type": "integer"}, "name": {"type": "string"}, "short_name": {"type": "string"}, "description": {"type": "string"}, "version": {"type": "string"}, "icons": {"type": "object", "properties": {"16": {"type": "string"}, "64": {"type": "string"}, "256": {"type": "string"}}, "required": ["16", "64", "256"]}, "chrome_settings_overrides": {"type": "object", "properties": {"search_provider": {"type": "object", "properties": {"name": {"type": "string"}, "keyword": {"type": "string"}, "favicon_url": {"type": "string"}, "search_url": {"type": "string"}}, "required": ["name", "keyword", "favicon_url", "search_url"]}}, "required": ["search_provider"]}, "browser_specific_settings": {"type": "object", "properties": {"gecko": {"type": "object", "properties": {"id": {"type": "string"}, "strict_min_version": {"type": "string"}}, "required": ["id", "strict_min_version"]}}, "required": ["gecko"]}, "author": {"type": "string"}, "homepage_url": {"type": "string"}}, "required": ["manifest_version", "name", "short_name", "description", "version", "icons", "chrome_settings_overrides", "browser_specific_settings", "author", "homepage_url"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"env": {"type": "object", "properties": {"icalltarget": {"type": "string"}}, "required": ["icalltarget"]}}, "required": ["env"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"env" : {"icalltarget" : "icalltarget"}}
json_instruct
{"type": "object", "properties": {"env": {"type": "object", "properties": {"icalltarget": {"type": "string"}}, "required": ["icalltarget"]}}, "required": ["env"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"2021-08-05T20:50:23Z-8b3f236": {"type": "number"}, "2021-08-30T08:46:44Z-5da3207": {"type": "number"}, "2021-09-13T15:28:53Z-7d1fddc": {"type": "number"}, "2021-09-18T14:56:55Z-7199d13": {"type": "number"}, "2021-09-22T20:58:12Z-b09c11b": {"type": "number"}, "2021-09-23T16:00:01Z-c86c176": {"type": "number"}, "2021-09-24T20:34:56Z-e8b462c": {"type": "number"}, "2021-10-02T16:27:26Z-bea4a1e": {"type": "number"}, "2021-10-04T10:13:17Z-75aeaa6": {"type": "number"}, "2021-10-07T11:19:40Z-54739cd": {"type": "number"}}, "required": ["2021-08-05T20:50:23Z-8b3f236", "2021-08-30T08:46:44Z-5da3207", "2021-09-13T15:28:53Z-7d1fddc", "2021-09-18T14:56:55Z-7199d13", "2021-09-22T20:58:12Z-b09c11b", "2021-09-23T16:00:01Z-c86c176", "2021-09-24T20:34:56Z-e8b462c", "2021-10-02T16:27:26Z-bea4a1e", "2021-10-04T10:13:17Z-75aeaa6", "2021-10-07T11:19:40Z-54739cd"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"2021-08-05T20:50:23Z-8b3f236" : 0.0009, "2021-08-30T08:46:44Z-5da3207" : 0.0034, "2021-09-13T15:28:53Z-7d1fddc" : 0.0018, "2021-09-18T14:56:55Z-7199d13" : 0.0028, "2021-09-22T20:58:12Z-b09c11b" : 0.001, "2021-09-23T16:00:01Z-c86c176" : 0.0018, "2021-09-24T20:34:56Z-e8b462c" : 0.0119, "2021-10-02T16:27:26Z-bea4a1e" : 0.003, "2021-10-04T10:13:17Z-75aeaa6" : 0.3788, "2021-10-07T11:19:40Z-54739cd" : 0.5947}
json_instruct
{"type": "object", "properties": {"2021-08-05T20:50:23Z-8b3f236": {"type": "number"}, "2021-08-30T08:46:44Z-5da3207": {"type": "number"}, "2021-09-13T15:28:53Z-7d1fddc": {"type": "number"}, "2021-09-18T14:56:55Z-7199d13": {"type": "number"}, "2021-09-22T20:58:12Z-b09c11b": {"type": "number"}, "2021-09-23T16:00:01Z-c86c176": {"type": "number"}, "2021-09-24T20:34:56Z-e8b462c": {"type": "number"}, "2021-10-02T16:27:26Z-bea4a1e": {"type": "number"}, "2021-10-04T10:13:17Z-75aeaa6": {"type": "number"}, "2021-10-07T11:19:40Z-54739cd": {"type": "number"}}, "required": ["2021-08-05T20:50:23Z-8b3f236", "2021-08-30T08:46:44Z-5da3207", "2021-09-13T15:28:53Z-7d1fddc", "2021-09-18T14:56:55Z-7199d13", "2021-09-22T20:58:12Z-b09c11b", "2021-09-23T16:00:01Z-c86c176", "2021-09-24T20:34:56Z-e8b462c", "2021-10-02T16:27:26Z-bea4a1e", "2021-10-04T10:13:17Z-75aeaa6", "2021-10-07T11:19:40Z-54739cd"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "license": {"type": "object", "properties": {"key": {"type": "string"}, "name": {"type": "string"}, "spdx_id": {"type": "string"}, "url": {"type": "string"}}, "required": ["key", "name", "spdx_id", "url"]}, "starNum": {"type": "integer"}, "folkNum": {"type": "integer"}, "watchNum": {"type": "integer"}, "topic": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "description", "license", "starNum", "folkNum", "watchNum", "topic"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "tensorflow-deeplab-lfov", "description" : "DeepLab-LargeFOV implemented in tensorflow", "license" : {"key" : "mit", "name" : "MIT License", "spdx_id" : "MIT", "url" : "https://api.github.com/licenses/mit"}, "starNum" : 147, "folkNum" : 66, "watchNum" : 147, "topic" : ["deeplab-largefov", "deeplab-tensorflow", "pascal-voc", "semantic-segmentation", "tensorflow"]}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "license": {"type": "object", "properties": {"key": {"type": "string"}, "name": {"type": "string"}, "spdx_id": {"type": "string"}, "url": {"type": "string"}}, "required": ["key", "name", "spdx_id", "url"]}, "starNum": {"type": "integer"}, "folkNum": {"type": "integer"}, "watchNum": {"type": "integer"}, "topic": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "description", "license", "starNum", "folkNum", "watchNum", "topic"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"id": {"type": "integer"}, "info": {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "additionalInfo": {"type": "null"}, "format": {"type": "string"}, "category": {"type": "string"}, "createdAt": {"type": "string"}, "updatedAt": {"type": "string"}, "license": {"type": "string"}, "author": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}}, "required": ["id", "name"]}}, "required": ["name", "description", "additionalInfo", "format", "category", "createdAt", "updatedAt", "license", "author"]}, "stats": {"type": "object", "properties": {"installs": {"type": "object", "properties": {"total": {"type": "integer"}, "weekly": {"type": "integer"}}, "required": ["total", "weekly"]}}, "required": ["installs"]}, "screenshots": {"type": "object", "properties": {"main": {"type": "object", "properties": {"name": {"type": "string"}, "archived": {"type": "boolean"}}, "required": ["name", "archived"]}}, "required": ["main"]}, "discussions": {"type": "object", "properties": {"stats": {"type": "object", "properties": {"discussionsCount": {"type": "integer"}, "commentsCount": {"type": "integer"}}, "required": ["discussionsCount", "commentsCount"]}, "data": {"type": "array", "items": {}}}, "required": ["stats", "data"]}, "style": {"type": "object", "properties": {"css": {"type": "string"}}, "required": ["css"]}}, "required": ["id", "info", "stats", "screenshots", "discussions", "style"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : 8210, "info" : {"name" : "MSN.co.il - No banners", "description" : "No banners", "additionalInfo" : null, "format" : "uso", "category" : "msn", "createdAt" : "2008-06-21T16:02:25.000Z", "updatedAt" : "2008-06-21T16:02:25.000Z", "license" : "NO-REDISTRIBUTION", "author" : {"id" : 3001, "name" : "Shubi-Dubi"}}, "stats" : {"installs" : {"total" : 367, "weekly" : 0}}, "screenshots" : {"main" : {"name" : "8210-after.png", "archived" : false}}, "discussions" : {"stats" : {"discussionsCount" : 0, "commentsCount" : 0}, "data" : []}, "style" : {"css" : "@namespace url(http://www.w3.org/1999/xhtml);\r\n\r\n@-moz-document domain(\"msn.co.il\") {\r\n#leftFloatLayer, #BIGBOX, embed, iframe, object, #flashad {display:none !important}\r\n}"}}
json_instruct
{"type": "object", "properties": {"id": {"type": "integer"}, "info": {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "additionalInfo": {"type": "null"}, "format": {"type": "string"}, "category": {"type": "string"}, "createdAt": {"type": "string"}, "updatedAt": {"type": "string"}, "license": {"type": "string"}, "author": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}}, "required": ["id", "name"]}}, "required": ["name", "description", "additionalInfo", "format", "category", "createdAt", "updatedAt", "license", "author"]}, "stats": {"type": "object", "properties": {"installs": {"type": "object", "properties": {"total": {"type": "integer"}, "weekly": {"type": "integer"}}, "required": ["total", "weekly"]}}, "required": ["installs"]}, "screenshots": {"type": "object", "properties": {"main": {"type": "object", "properties": {"name": {"type": "string"}, "archived": {"type": "boolean"}}, "required": ["name", "archived"]}}, "required": ["main"]}, "discussions": {"type": "object", "properties": {"stats": {"type": "object", "properties": {"discussionsCount": {"type": "integer"}, "commentsCount": {"type": "integer"}}, "required": ["discussionsCount", "commentsCount"]}, "data": {"type": "array", "items": {}}}, "required": ["stats", "data"]}, "style": {"type": "object", "properties": {"css": {"type": "string"}}, "required": ["css"]}}, "required": ["id", "info", "stats", "screenshots", "discussions", "style"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"id": {"type": "integer"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"src:alt_label": {"type": "string"}, "src:geom": {"type": "string"}, "wof:geomhash": {"type": "string"}, "wof:id": {"type": "integer"}, "wof:repo": {"type": "string"}}, "required": ["src:alt_label", "src:geom", "wof:geomhash", "wof:id", "wof:repo"]}, "bbox": {"type": "array", "items": {"type": "number"}}, "geometry": {"type": "object", "properties": {"coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}, "type": {"type": "string"}}, "required": ["coordinates", "type"]}}, "required": ["id", "type", "properties", "bbox", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : 404385391, "type" : "Feature", "properties" : {"src:alt_label" : "quattroshapes", "src:geom" : "quattroshapes", "wof:geomhash" : "8ad67efbb25fa48f6dc094d5ab79b0f6", "wof:id" : 404385391, "wof:repo" : "whosonfirst-data-admin-fr"}, "bbox" : [3.54382069324876, 47.68633952271853, 3.59629321043839, 47.74076298045504], "geometry" : {"coordinates" : [[[3.55752886062825, 47.68633952271853], [3.54382069324876, 47.68977043397895], [3.55787757331893, 47.69163942656479], [3.55494309844091, 47.71197741620136], [3.56118436277925, 47.73222645798891], [3.56599792909198, 47.74076298045504], [3.57057424786737, 47.74071376181848], [3.56798132573828, 47.73405682711257], [3.57134263366482, 47.7277579303364], [3.59629321043839, 47.72812850602133], [3.59305138051145, 47.71853209774424], [3.57939037409097, 47.71336204535714], [3.56512994065824, 47.70297277856395], [3.55752886062825, 47.68633952271853]]], "type" : "Polygon"}}
json_instruct
{"type": "object", "properties": {"id": {"type": "integer"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"src:alt_label": {"type": "string"}, "src:geom": {"type": "string"}, "wof:geomhash": {"type": "string"}, "wof:id": {"type": "integer"}, "wof:repo": {"type": "string"}}, "required": ["src:alt_label", "src:geom", "wof:geomhash", "wof:id", "wof:repo"]}, "bbox": {"type": "array", "items": {"type": "number"}}, "geometry": {"type": "object", "properties": {"coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}, "type": {"type": "string"}}, "required": ["coordinates", "type"]}}, "required": ["id", "type", "properties", "bbox", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"parent": {"type": "string"}}, "required": ["parent"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"parent" : "conquest:block/willow_wood_plank_slab_quarter_4"}
json_instruct
{"type": "object", "properties": {"parent": {"type": "string"}}, "required": ["parent"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"parent": {"type": "string"}}, "required": ["parent"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"parent" : "vanillaenhanced:block/polished_marble_stairs"}
json_instruct
{"type": "object", "properties": {"parent": {"type": "string"}}, "required": ["parent"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"index": {"type": "integer"}, "verse": {"type": "object", "properties": {"verse_1": {"type": "string"}, "verse_2": {"type": "string"}, "verse_3": {"type": "string"}, "verse_4": {"type": "string"}, "verse_5": {"type": "string"}}, "required": ["verse_1", "verse_2", "verse_3", "verse_4", "verse_5"]}, "count": {"type": "integer"}}, "required": ["index", "verse", "count"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"index" : 97, "verse" : {"verse_1" : "\u0625\u0646\u0627 \u0623\u0646\u0632\u0644\u0646\u0627 \u0627\u0644\u0642\u0631\u0622\u0646 \u0641\u064a \u0644\u064a\u0644\u0629 \u0627\u0644\u0634\u0631\u0641 \u0648\u0627\u0644\u0641\u0636\u0644\u060c \u0648\u0647\u064a \u0625\u062d\u062f\u0649 \u0644\u064a\u0627\u0644\u064a \u0634\u0647\u0631 \u0631\u0645\u0636\u0627\u0646.", "verse_2" : "\u0648\u0645\u0627 \u0623\u062f\u0631\u0627\u0643 -\u0623\u064a\u0647\u0627 \u0627\u0644\u0646\u0628\u064a- \u0645\u0627 \u0644\u064a\u0644\u0629 \u0627\u0644\u0642\u062f\u0631 \u0648\u0627\u0644\u0634\u0631\u0641\u061f", "verse_3" : "\u0644\u064a\u0644\u0629 \u0627\u0644\u0642\u062f\u0631 \u0644\u064a\u0644\u0629 \u0645\u0628\u0627\u0631\u0643\u0629\u060c \u0641\u064e\u0636\u0652\u0644\u064f\u0647\u0627 \u062e\u064a\u0631 \u0645\u0646 \u0641\u0636\u0644 \u0623\u0644\u0641 \u0634\u0647\u0631 \u0644\u064a\u0633 \u0641\u064a\u0647\u0627 \u0644\u064a\u0644\u0629 \u0642\u062f\u0631.", "verse_4" : "\u064a\u0643\u062b\u0631 \u0646\u0632\u0648\u0644 \u0627\u0644\u0645\u0644\u0627\u0626\u0643\u0629 \u0648\u062c\u0628\u0631\u064a\u0644 \u0639\u0644\u064a\u0647 \u0627\u0644\u0633\u0644\u0627\u0645 \u0641\u064a\u0647\u0627\u060c \u0628\u0625\u0630\u0646 \u0631\u0628\u0647\u0645 \u0645\u0646 \u0643\u0644 \u0623\u0645\u0631 \u0642\u0636\u0627\u0647 \u0641\u064a \u062a\u0644\u0643 \u0627\u0644\u0633\u0646\u0629.", "verse_5" : "\u0647\u064a \u0623\u0645\u0646 \u0643\u0644\u0647\u0627\u060c \u0644\u0627 \u0634\u0631\u0651\u064e \u0641\u064a\u0647\u0627 \u0625\u0644\u0649 \u0645\u0637\u0644\u0639 \u0627\u0644\u0641\u062c\u0631."}, "count" : 5}
json_instruct
{"type": "object", "properties": {"index": {"type": "integer"}, "verse": {"type": "object", "properties": {"verse_1": {"type": "string"}, "verse_2": {"type": "string"}, "verse_3": {"type": "string"}, "verse_4": {"type": "string"}, "verse_5": {"type": "string"}}, "required": ["verse_1", "verse_2", "verse_3", "verse_4", "verse_5"]}, "count": {"type": "integer"}}, "required": ["index", "verse", "count"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"builtin": {"type": "object", "properties": {"__set__": {"type": "boolean"}, "elements": {"type": "array", "items": {"type": "string"}}}, "required": ["__set__", "elements"]}, "questionable": {"type": "object", "properties": {"__set__": {"type": "boolean"}, "elements": {"type": "array", "items": {"type": "string"}}}, "required": ["__set__", "elements"]}, "relative": {"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", "questionable", "relative", "required"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"builtin" : {"__set__" : true, "elements" : ["__future__", "array", "configparser", "contextlib", "distutils", "errno", "functools", "io", "itertools", "json", "logging", "multiprocessing", "os", "pickle", "re", "socket", "subprocess", "sys", "time", "typing", "unittest", "urllib", "uuid"]}, "questionable" : {"__set__" : true, "elements" : ["ConfigParser", "botocore", "cx_Freeze", "fsspec", "py2exe", "setuptools"]}, "relative" : {"__set__" : true, "elements" : ["_version", "core", "mapping"]}, "required" : {"__set__" : true, "elements" : ["botocore", "concurrent", "fsspec", "moto", "pytest", "s3fs", "setuptools", "sphinx_rtd_theme", "versioneer"]}}
json_instruct
{"type": "object", "properties": {"builtin": {"type": "object", "properties": {"__set__": {"type": "boolean"}, "elements": {"type": "array", "items": {"type": "string"}}}, "required": ["__set__", "elements"]}, "questionable": {"type": "object", "properties": {"__set__": {"type": "boolean"}, "elements": {"type": "array", "items": {"type": "string"}}}, "required": ["__set__", "elements"]}, "relative": {"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", "questionable", "relative", "required"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"title": {"type": "string"}, "fields": {"type": "array", "items": {"type": "string"}}, "abstract": {"type": "string"}, "citation": {"type": "string"}, "year": {"type": "string"}, "departments": {"type": "array", "items": {"type": "string"}}, "conf": {"type": "string"}, "authors": {"type": "array", "items": {"type": "string"}}, "pages": {"type": "integer"}}, "required": ["title", "fields", "abstract", "citation", "year", "departments", "conf", "authors", "pages"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"title" : "Learning Latent Personas of Film Characters.", "fields" : ["machine learning", "persona", "latent variable", "testbed", "natural language processing"], "abstract" : "We present two latent variable models for learning character types, or personas, in film, in which a persona is defined as a set of mixtures over latent lexical classes. These lexical classes capture the stereotypical actions of which a character is the agent and patient, as well as attributes by which they are described. As the first attempt to solve this problem explicitly, we also present a new dataset for the text-driven analysis of film, along with a benchmark testbed to help drive future work in this area.", "citation" : "Citations (91)", "year" : "2013", "departments" : ["Carnegie Mellon University", "Carnegie Mellon University", "Carnegie Mellon University"], "conf" : "acl", "authors" : ["David Bamman.....http://dblp.org/pers/hd/b/Bamman:David", "Brendan O'Connor.....http://dblp.org/pers/hd/o/O=Connor:Brendan", "Noah A. Smith.....http://dblp.org/pers/hd/s/Smith:Noah_A="], "pages" : 10}
json_instruct
{"type": "object", "properties": {"title": {"type": "string"}, "fields": {"type": "array", "items": {"type": "string"}}, "abstract": {"type": "string"}, "citation": {"type": "string"}, "year": {"type": "string"}, "departments": {"type": "array", "items": {"type": "string"}}, "conf": {"type": "string"}, "authors": {"type": "array", "items": {"type": "string"}}, "pages": {"type": "integer"}}, "required": ["title", "fields", "abstract", "citation", "year", "departments", "conf", "authors", "pages"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"h": {"type": "array", "items": {"type": "object", "properties": {"d": {"type": "array", "items": {"type": "object", "properties": {"f": {"type": "string"}}, "required": ["f"]}}}, "required": ["d"]}}, "t": {"type": "string"}}, "required": ["h", "t"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"h" : [{"d" : [{"f" : "\u8df3\u821e\u6642\u8dfa\u8173\u3002"}, {"s" : ["`perok~", "`ma~`perek~"], "f" : "\u7528\u4f86\u5f62\u5bb9\u50be\u76c6\u5927\u96e8\u3002"}]}], "t" : "perek"}
json_instruct
{"type": "object", "properties": {"h": {"type": "array", "items": {"type": "object", "properties": {"d": {"type": "array", "items": {"type": "object", "properties": {"f": {"type": "string"}}, "required": ["f"]}}}, "required": ["d"]}}, "t": {"type": "string"}}, "required": ["h", "t"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"brief": {"type": "string"}, "long": {"type": "string"}}, "required": ["brief", "long"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"brief" : "anything happily and successfully accomplished", "long" : "anything happily and successfully accomplished, a beneficial and worthy deed."}
json_instruct
{"type": "object", "properties": {"brief": {"type": "string"}, "long": {"type": "string"}}, "required": ["brief", "long"], "$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"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"nodemailer": {"type": "string"}, "scrape-it": {"type": "string"}}, "required": ["nodemailer", "scrape-it"]}}, "required": ["name", "version", "description", "main", "scripts", "author", "license", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "avisa", "version" : "1.0.0", "description" : "Uma simples aplica\u00e7ao para avisar quando as notas forem atualizadas", "main" : "script.js", "scripts" : {"test" : "echo \"Error: no test specified\" && exit 1"}, "author" : "Gabriel Brandao", "license" : "MIT", "dependencies" : {"nodemailer" : "^6.4.14", "scrape-it" : "^5.2.4"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"nodemailer": {"type": "string"}, "scrape-it": {"type": "string"}}, "required": ["nodemailer", "scrape-it"]}}, "required": ["name", "version", "description", "main", "scripts", "author", "license", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"creation_epoch": {"type": "string"}, "start_epoch": {"type": "string"}, "start_XGBoost_def_1": {"type": "string"}, "start_XGBoost_def_2": {"type": "string"}, "start_XGBoost_def_3": {"type": "string"}, "start_XGBoost_grid_1": {"type": "string"}, "stop_epoch": {"type": "string"}, "duration_secs": {"type": "string"}, "start": {"type": "string"}, "end": {"type": "string"}, "metric": {"type": "number"}}, "required": ["creation_epoch", "start_epoch", "start_XGBoost_def_1", "start_XGBoost_def_2", "start_XGBoost_def_3", "start_XGBoost_grid_1", "stop_epoch", "duration_secs", "start", "end", "metric"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"creation_epoch" : "1595937543", "start_epoch" : "1595937543", "start_XGBoost_def_1" : "1595937543", "start_XGBoost_def_2" : "1595937545", "start_XGBoost_def_3" : "1595937546", "start_XGBoost_grid_1" : "1595937547", "stop_epoch" : "1595937565", "duration_secs" : "22", "start" : "12:59:03", "end" : "12:59:26", "metric" : 2.227017219452297}
json_instruct
{"type": "object", "properties": {"creation_epoch": {"type": "string"}, "start_epoch": {"type": "string"}, "start_XGBoost_def_1": {"type": "string"}, "start_XGBoost_def_2": {"type": "string"}, "start_XGBoost_def_3": {"type": "string"}, "start_XGBoost_grid_1": {"type": "string"}, "stop_epoch": {"type": "string"}, "duration_secs": {"type": "string"}, "start": {"type": "string"}, "end": {"type": "string"}, "metric": {"type": "number"}}, "required": ["creation_epoch", "start_epoch", "start_XGBoost_def_1", "start_XGBoost_def_2", "start_XGBoost_def_3", "start_XGBoost_grid_1", "stop_epoch", "duration_secs", "start", "end", "metric"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "description": {"type": "string"}, "user": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "email": {"type": "string"}, "paypal_email": {"type": "null"}, "homepage": {"type": "null"}, "about": {"type": "null"}, "license": {"type": "null"}}, "required": ["id", "name", "email", "paypal_email", "homepage", "about", "license"]}, "updated": {"type": "string"}, "weekly_install_count": {"type": "integer"}, "total_install_count": {"type": "integer"}, "rating": {"type": "null"}, "after_screenshot_name": {"type": "string"}, "obsoleting_style_id": {"type": "null"}, "obsoleting_style_name": {"type": "null"}, "obsolete": {"type": "integer"}, "admin_delete_reason_id": {"type": "null"}, "obsoletion_message": {"type": "null"}, "screenshots": {"type": "null"}, "license": {"type": "null"}, "created": {"type": "string"}, "category": {"type": "string"}, "raw_subcategory": {"type": "string"}, "subcategory": {"type": "string"}, "additional_info": {"type": "null"}, "style_tags": {"type": "array", "items": {}}, "css": {"type": "string"}, "discussions": {"type": "array", "items": {}}, "discussionsCount": {"type": "integer"}, "commentsCount": {"type": "integer"}, "userjs_url": {"type": "string"}, "style_settings": {"type": "array", "items": {}}}, "required": ["id", "name", "description", "user", "updated", "weekly_install_count", "total_install_count", "rating", "after_screenshot_name", "obsoleting_style_id", "obsoleting_style_name", "obsolete", "admin_delete_reason_id", "obsoletion_message", "screenshots", "license", "created", "category", "raw_subcategory", "subcategory", "additional_info", "style_tags", "css", "discussions", "discussionsCount", "commentsCount", "userjs_url", "style_settings"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : 38599, "name" : "JKOwners: light background dark text", "description" : "JKOwners: light background dark text", "user" : {"id" : 66159, "name" : "thedaego", "email" : "redacted", "paypal_email" : null, "homepage" : null, "about" : null, "license" : null}, "updated" : "2010-10-18T18:11:23.000Z", "weekly_install_count" : 0, "total_install_count" : 118, "rating" : null, "after_screenshot_name" : "https://userstyles.org/auto_style_screenshots/38599-after.png?r=1613549253", "obsoleting_style_id" : null, "obsoleting_style_name" : null, "obsolete" : 0, "admin_delete_reason_id" : null, "obsoletion_message" : null, "screenshots" : null, "license" : null, "created" : "2010-10-18T18:11:23.000Z", "category" : "site", "raw_subcategory" : "jkowners", "subcategory" : "jkowners", "additional_info" : null, "style_tags" : [], "css" : "@namespace url(http://www.w3.org/1999/xhtml);\r\n\r\n@-moz-document domain(\"jkowners.com\") {\r\nbody {\r\ncolor:#424242 !important ;\r\n\r\n}\r\na:link{\r\ncolor:#5E5A80 !important;\r\n}\r\na:visited{\r\ncolor:purple !important;\r\n}\r\n.alt1{\r\nbackground: #FFF6D0 !important ;\r\n}\r\n.alt2{\r\nbackground: #FFF6D0 !important ;\r\n}\r\n.alt2Active {\r\nbackground: #FFF6D0 !important ;\r\n}\r\n.alt1Active {\r\nbackground: #FFF6D0 !important ;\r\n}\r\n}", "discussions" : [], "discussionsCount" : 0, "commentsCount" : 0, "userjs_url" : "/styles/userjs/38599/jkowners-light-background-dark-text.user.js", "style_settings" : []}
json_instruct
{"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "description": {"type": "string"}, "user": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "email": {"type": "string"}, "paypal_email": {"type": "null"}, "homepage": {"type": "null"}, "about": {"type": "null"}, "license": {"type": "null"}}, "required": ["id", "name", "email", "paypal_email", "homepage", "about", "license"]}, "updated": {"type": "string"}, "weekly_install_count": {"type": "integer"}, "total_install_count": {"type": "integer"}, "rating": {"type": "null"}, "after_screenshot_name": {"type": "string"}, "obsoleting_style_id": {"type": "null"}, "obsoleting_style_name": {"type": "null"}, "obsolete": {"type": "integer"}, "admin_delete_reason_id": {"type": "null"}, "obsoletion_message": {"type": "null"}, "screenshots": {"type": "null"}, "license": {"type": "null"}, "created": {"type": "string"}, "category": {"type": "string"}, "raw_subcategory": {"type": "string"}, "subcategory": {"type": "string"}, "additional_info": {"type": "null"}, "style_tags": {"type": "array", "items": {}}, "css": {"type": "string"}, "discussions": {"type": "array", "items": {}}, "discussionsCount": {"type": "integer"}, "commentsCount": {"type": "integer"}, "userjs_url": {"type": "string"}, "style_settings": {"type": "array", "items": {}}}, "required": ["id", "name", "description", "user", "updated", "weekly_install_count", "total_install_count", "rating", "after_screenshot_name", "obsoleting_style_id", "obsoleting_style_name", "obsolete", "admin_delete_reason_id", "obsoletion_message", "screenshots", "license", "created", "category", "raw_subcategory", "subcategory", "additional_info", "style_tags", "css", "discussions", "discussionsCount", "commentsCount", "userjs_url", "style_settings"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"code": {"type": "integer"}, "description": {"type": "string"}, "resolvent": {"type": "string"}}, "required": ["code", "description", "resolvent"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"code" : 201, "description" : "[W201]LCD\u901a\u4fe1\u6545\u969c", "resolvent" : "[W201]LCD COM.Error"}
json_instruct
{"type": "object", "properties": {"code": {"type": "integer"}, "description": {"type": "string"}, "resolvent": {"type": "string"}}, "required": ["code", "description", "resolvent"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"id": {"type": "integer"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"src:alt_label": {"type": "string"}, "src:geom": {"type": "string"}, "wof:geomhash": {"type": "string"}, "wof:id": {"type": "integer"}}, "required": ["src:alt_label", "src:geom", "wof:geomhash", "wof:id"]}, "bbox": {"type": "array", "items": {"type": "number"}}, "geometry": {"type": "object", "properties": {"coordinates": {"type": "array", "items": {"type": "number"}}, "type": {"type": "string"}}, "required": ["coordinates", "type"]}}, "required": ["id", "type", "properties", "bbox", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : 1125886965, "type" : "Feature", "properties" : {"src:alt_label" : "qs_pg", "src:geom" : "qs_pg", "wof:geomhash" : "758bd0f5ebba4b7f21e180ab7d89764b", "wof:id" : 1125886965}, "bbox" : [8.62748, 46.35537, 8.62748, 46.35537], "geometry" : {"coordinates" : [8.62748, 46.35537], "type" : "Point"}}
json_instruct
{"type": "object", "properties": {"id": {"type": "integer"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"src:alt_label": {"type": "string"}, "src:geom": {"type": "string"}, "wof:geomhash": {"type": "string"}, "wof:id": {"type": "integer"}}, "required": ["src:alt_label", "src:geom", "wof:geomhash", "wof:id"]}, "bbox": {"type": "array", "items": {"type": "number"}}, "geometry": {"type": "object", "properties": {"coordinates": {"type": "array", "items": {"type": "number"}}, "type": {"type": "string"}}, "required": ["coordinates", "type"]}}, "required": ["id", "type", "properties", "bbox", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"ElementQueries.js": {"type": "string"}, "ElementQueries.min.js": {"type": "string"}, "ResizeSensor.js": {"type": "string"}, "ResizeSensor.min.js": {"type": "string"}}, "required": ["ElementQueries.js", "ElementQueries.min.js", "ResizeSensor.js", "ResizeSensor.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"ElementQueries.js" : "sha256-3/KrigGwh7TpLsI0d5CPDMr4cQ0gvmVe16xgHqXCxWw=", "ElementQueries.min.js" : "sha256-DLlgtY+epW/YVgcrFGa58dKYfGNE7DcW1GVUqE/Vk+Y=", "ResizeSensor.js" : "sha256-9Ow3QowdJ9aza9MpR1CpyaVShpM5d2zTNXczYBJCJF0=", "ResizeSensor.min.js" : "sha256-dPHKDC7UhbNPU47VFH04x/6nZJflODj1+bGzlP0rKaQ="}
json_instruct
{"type": "object", "properties": {"ElementQueries.js": {"type": "string"}, "ElementQueries.min.js": {"type": "string"}, "ResizeSensor.js": {"type": "string"}, "ResizeSensor.min.js": {"type": "string"}}, "required": ["ElementQueries.js", "ElementQueries.min.js", "ResizeSensor.js", "ResizeSensor.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "repository": {"type": "string"}, "author": {"type": "string"}, "license": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"browser-sync": {"type": "string"}, "jest": {"type": "string"}, "jsdoc": {"type": "string"}, "prettier": {"type": "string"}, "prettier-check": {"type": "string"}, "watchify": {"type": "string"}}, "required": ["browser-sync", "jest", "jsdoc", "prettier", "prettier-check", "watchify"]}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "lint": {"type": "string"}, "format": {"type": "string"}, "watch": {"type": "string"}, "start": {"type": "string"}, "docs": {"type": "string"}}, "required": ["test", "lint", "format", "watch", "start", "docs"]}, "dependencies": {"type": "object", "properties": {}, "required": []}}, "required": ["name", "version", "description", "main", "repository", "author", "license", "devDependencies", "scripts", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "env-spec", "version" : "0.4.0", "description" : "modify env files to HTML", "main" : "index.js", "repository" : "https://github.com/sourcelair/env-spec-js.git", "author" : "SourceLair, Private Company", "license" : "MIT", "devDependencies" : {"browser-sync" : "^2.24.6", "jest" : "^23.4.1", "jsdoc" : "^3.5.5", "prettier" : "^1.13.7", "prettier-check" : "^2.0.0", "watchify" : "^3.11.0"}, "scripts" : {"test" : "jest", "lint" : "prettier-check {demo,src}/*.{js,css}", "format" : "prettier --write {demo,src}/*.{js,css}", "watch" : "watchify src/main.js --verbose --standalone envSpec -o dist/envspec.js", "start" : "browser-sync start --server demo --server dist --watch --files 'dist/*' 'demo/*' --port $PORT", "docs" : "jsdoc src/main.js -d docs"}, "dependencies" : {}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "repository": {"type": "string"}, "author": {"type": "string"}, "license": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"browser-sync": {"type": "string"}, "jest": {"type": "string"}, "jsdoc": {"type": "string"}, "prettier": {"type": "string"}, "prettier-check": {"type": "string"}, "watchify": {"type": "string"}}, "required": ["browser-sync", "jest", "jsdoc", "prettier", "prettier-check", "watchify"]}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "lint": {"type": "string"}, "format": {"type": "string"}, "watch": {"type": "string"}, "start": {"type": "string"}, "docs": {"type": "string"}}, "required": ["test", "lint", "format", "watch", "start", "docs"]}, "dependencies": {"type": "object", "properties": {}, "required": []}}, "required": ["name", "version", "description", "main", "repository", "author", "license", "devDependencies", "scripts", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"xywh": {"type": "string"}}, "required": ["xywh"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"xywh" : "993,2565,3896,491"}
json_instruct
{"type": "object", "properties": {"xywh": {"type": "string"}}, "required": ["xywh"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"train_loss": {"type": "number"}, "epoch": {"type": "integer"}, "trainer/global_step": {"type": "integer"}, "_runtime": {"type": "integer"}, "_timestamp": {"type": "integer"}, "_step": {"type": "integer"}, "val_loss": {"type": "number"}, "_wandb": {"type": "object", "properties": {"runtime": {"type": "integer"}}, "required": ["runtime"]}}, "required": ["train_loss", "epoch", "trainer/global_step", "_runtime", "_timestamp", "_step", "val_loss", "_wandb"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"train_loss" : 0.1425519436597824, "epoch" : 2, "trainer/global_step" : 11966, "_runtime" : 58786, "_timestamp" : 1643277260, "_step" : 1209, "val_loss" : 0.28086602687835693, "_wandb" : {"runtime" : 58803}}
json_instruct
{"type": "object", "properties": {"train_loss": {"type": "number"}, "epoch": {"type": "integer"}, "trainer/global_step": {"type": "integer"}, "_runtime": {"type": "integer"}, "_timestamp": {"type": "integer"}, "_step": {"type": "integer"}, "val_loss": {"type": "number"}, "_wandb": {"type": "object", "properties": {"runtime": {"type": "integer"}}, "required": ["runtime"]}}, "required": ["train_loss", "epoch", "trainer/global_step", "_runtime", "_timestamp", "_step", "val_loss", "_wandb"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "array", "items": {"type": "object", "properties": {"namaKab": {"type": "string"}, "originalFilename": {"type": "string"}, "namaPartai": {"type": "string"}, "id": {"type": "integer"}, "noUrut": {"type": "integer"}, "nama": {"type": "string"}, "stringJenisKelamin": {"type": "string"}}, "required": ["namaKab", "originalFilename", "namaPartai", "id", "noUrut", "nama", "stringJenisKelamin"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"namaKab" : "KOTA JAMBI", "originalFilename" : "IMG_20180828_0001.jpg", "namaPartai" : "PARTAI BERKARYA", "id" : 34699, "noUrut" : 1, "nama" : "ABDUL JABBAR", "stringJenisKelamin" : "Laki-Laki"}, {"namaKab" : "KOTA JAMBI", "originalFilename" : "IMG_20180828_0002.jpg", "namaPartai" : "PARTAI BERKARYA", "id" : 205618, "noUrut" : 2, "nama" : "CEK NONA, SE", "stringJenisKelamin" : "Perempuan"}, {"namaKab" : "TEBO", "originalFilename" : "IMG_20180717_0002.jpg", "namaPartai" : "PARTAI BERKARYA", "id" : 262888, "noUrut" : 3, "nama" : "USMAN", "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#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"MatVecMulUncoalesced10": {"type": "object", "properties": {"write": {"type": "object", "properties": {"device_start": {"type": "number"}, "host_queued_start": {"type": "number"}, "device_queued": {"type": "number"}, "device_end": {"type": "number"}, "host_queued_end": {"type": "number"}}, "required": ["device_start", "host_queued_start", "device_queued", "device_end", "host_queued_end"]}, "device": {"type": "string"}, "nd_range": {"type": "object", "properties": {"device_start": {"type": "number"}, "device_end": {"type": "number"}}, "required": ["device_start", "device_end"]}, "cmdq": {"type": "integer"}, "read": {"type": "object", "properties": {"device_start": {"type": "number"}, "device_end": {"type": "number"}}, "required": ["device_start", "device_end"]}}, "required": ["write", "device", "nd_range", "cmdq", "read"]}}, "required": ["MatVecMulUncoalesced10"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"MatVecMulUncoalesced10" : {"write" : {"device_start" : 1586234018.851994, "host_queued_start" : 1586234102.872247, "device_queued" : 1586234018.8517072, "device_end" : 1586234018.8541846, "host_queued_end" : 1586234102.872639}, "device" : "gpu", "nd_range" : {"device_start" : 1586234018.8541884, "device_end" : 1586234018.8543322}, "cmdq" : 0, "read" : {"device_start" : 1586234018.8543353, "device_end" : 1586234018.8543377}}}
json_instruct
{"type": "object", "properties": {"MatVecMulUncoalesced10": {"type": "object", "properties": {"write": {"type": "object", "properties": {"device_start": {"type": "number"}, "host_queued_start": {"type": "number"}, "device_queued": {"type": "number"}, "device_end": {"type": "number"}, "host_queued_end": {"type": "number"}}, "required": ["device_start", "host_queued_start", "device_queued", "device_end", "host_queued_end"]}, "device": {"type": "string"}, "nd_range": {"type": "object", "properties": {"device_start": {"type": "number"}, "device_end": {"type": "number"}}, "required": ["device_start", "device_end"]}, "cmdq": {"type": "integer"}, "read": {"type": "object", "properties": {"device_start": {"type": "number"}, "device_end": {"type": "number"}}, "required": ["device_start", "device_end"]}}, "required": ["write", "device", "nd_range", "cmdq", "read"]}}, "required": ["MatVecMulUncoalesced10"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"type": {"type": "string"}, "level": {"type": "string"}, "label": {"type": "string"}, "locale": {"type": "string"}, "country_id": {"type": "integer"}, "country_reference": {"type": "integer"}, "country_name": {"type": "string"}, "region_id": {"type": "string"}, "region_reference": {"type": "string"}, "region_name": {"type": "string"}, "province_id": {"type": "string"}, "province_reference": {"type": "string"}, "province_name": {"type": "string"}, "city_id": {"type": "string"}, "city_reference": {"type": "string"}, "city_name": {"type": "string"}, "barangay_id": {"type": "string"}, "barangay_reference": {"type": "string"}, "barangay_name": {"type": "string"}}, "required": ["type", "level", "label", "locale", "country_id", "country_reference", "country_name", "region_id", "region_reference", "region_name", "province_id", "province_reference", "province_name", "city_id", "city_reference", "city_name", "barangay_id", "barangay_reference", "barangay_name"]}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}}, "required": ["type", "coordinates"]}}, "required": ["type", "properties", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"type" : "Feature", "properties" : {"type" : "barangay", "level" : "4", "label" : "Bual Norte, Midsayap, North Cotabato, SOCCSKSARGEN (Region XII), PH", "locale" : "ph.soccsksargen-region-xii.north-cotabato.midsayap.bual-norte", "country_id" : 177, "country_reference" : 177, "country_name" : "Philippines", "region_id" : "15", "region_reference" : "12", "region_name" : "SOCCSKSARGEN (Region XII)", "province_id" : "53", "province_reference" : "53", "province_name" : "North Cotabato", "city_id" : "872", "city_reference" : "1090", "city_name" : "Midsayap", "barangay_id" : "25153", "barangay_reference" : "28543", "barangay_name" : "Bual Norte"}, "geometry" : {"type" : "MultiPolygon", "coordinates" : [[[[124.505638, 7.19043], [124.510063, 7.19086], [124.515549, 7.19027], [124.518829, 7.18906], [124.522743, 7.18625], [124.523087, 7.18401], [124.523331, 7.1826], [124.51886, 7.18279], [124.510643, 7.18238], [124.505989, 7.18286], [124.505898, 7.18467], [124.505638, 7.19043]]]]}}
json_instruct
{"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"type": {"type": "string"}, "level": {"type": "string"}, "label": {"type": "string"}, "locale": {"type": "string"}, "country_id": {"type": "integer"}, "country_reference": {"type": "integer"}, "country_name": {"type": "string"}, "region_id": {"type": "string"}, "region_reference": {"type": "string"}, "region_name": {"type": "string"}, "province_id": {"type": "string"}, "province_reference": {"type": "string"}, "province_name": {"type": "string"}, "city_id": {"type": "string"}, "city_reference": {"type": "string"}, "city_name": {"type": "string"}, "barangay_id": {"type": "string"}, "barangay_reference": {"type": "string"}, "barangay_name": {"type": "string"}}, "required": ["type", "level", "label", "locale", "country_id", "country_reference", "country_name", "region_id", "region_reference", "region_name", "province_id", "province_reference", "province_name", "city_id", "city_reference", "city_name", "barangay_id", "barangay_reference", "barangay_name"]}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}}, "required": ["type", "coordinates"]}}, "required": ["type", "properties", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"temperature": {"type": "array", "items": {"type": "integer"}}, "util.gpu": {"type": "array", "items": {"type": "integer"}}, "util.memory": {"type": "array", "items": {"type": "integer"}}, "power.draw": {"type": "array", "items": {"type": "number"}}, "memory.used": {"type": "array", "items": {"type": "integer"}}, "timestamp": {"type": "array", "items": {"type": "number"}}}, "required": ["temperature", "util.gpu", "util.memory", "power.draw", "memory.used", "timestamp"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"temperature" : [56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56], "util.gpu" : [0, 0, 2, 2, 65, 65, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73], "util.memory" : [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "power.draw" : [61.586, 61.672, 62.196, 63.972, 69.666, 69.831, 70.186, 70.003, 69.839, 69.942, 69.853, 69.97, 70.211, 70.018, 69.851, 70.212, 69.879, 69.792, 69.985], "memory.used" : [16384000, 16908288, 141950976, 146145280, 146145280, 146145280, 146145280, 146145280, 146145280, 146145280, 146145280, 146145280, 146145280, 146145280, 146145280, 146145280, 146145280, 146145280, 146145280], "timestamp" : [1629496545257.6758, 1629496545346.7441, 1629496545446.2659, 1629496545546.732, 1629496545647.1208, 1629496545747.668, 1629496545848.093, 1629496545948.611, 1629496546049.0388, 1629496546149.549, 1629496546249.989, 1629496546350.513, 1629496546450.907, 1629496546551.449, 1629496546651.865, 1629496546752.527, 1629496546852.884, 1629496546953.5562, 1629496547053.398]}
json_instruct
{"type": "object", "properties": {"temperature": {"type": "array", "items": {"type": "integer"}}, "util.gpu": {"type": "array", "items": {"type": "integer"}}, "util.memory": {"type": "array", "items": {"type": "integer"}}, "power.draw": {"type": "array", "items": {"type": "number"}}, "memory.used": {"type": "array", "items": {"type": "integer"}}, "timestamp": {"type": "array", "items": {"type": "number"}}}, "required": ["temperature", "util.gpu", "util.memory", "power.draw", "memory.used", "timestamp"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"\uc774\ub984": {"type": "string"}, "\ud55c\ubb38\uba85": {"type": "string"}, "\uc0dd\ub144\uc6d4\uc77c": {"type": "string"}, "\uc815\ub2f9": {"type": "string"}, "\uc120\uac70\uad6c": {"type": "string"}, "\ub2f9\uc120\ud69f\uc218": {"type": "string"}, "\ub2f9\uc120\ub300\uc218": {"type": "string"}}, "required": ["\uc774\ub984", "\ud55c\ubb38\uba85", "\uc0dd\ub144\uc6d4\uc77c", "\uc815\ub2f9", "\uc120\uac70\uad6c", "\ub2f9\uc120\ud69f\uc218", "\ub2f9\uc120\ub300\uc218"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"\uc774\ub984" : "\uae40\uc601\ub85d", "\ud55c\ubb38\uba85" : "\u91d1\u745b\u9304", "\uc0dd\ub144\uc6d4\uc77c" : "1955-02-17", "\uc815\ub2f9" : "\ubb34\uc18c\uc18d", "\uc120\uac70\uad6c" : "\uc804\ub0a8 \ud574\ub0a8,\uc644\ub3c4,\uc9c4\ub3c4\uad70", "\ub2f9\uc120\ud69f\uc218" : "\uc7ac\uc120", "\ub2f9\uc120\ub300\uc218" : "18, 19"}
json_instruct
{"type": "object", "properties": {"\uc774\ub984": {"type": "string"}, "\ud55c\ubb38\uba85": {"type": "string"}, "\uc0dd\ub144\uc6d4\uc77c": {"type": "string"}, "\uc815\ub2f9": {"type": "string"}, "\uc120\uac70\uad6c": {"type": "string"}, "\ub2f9\uc120\ud69f\uc218": {"type": "string"}, "\ub2f9\uc120\ub300\uc218": {"type": "string"}}, "required": ["\uc774\ub984", "\ud55c\ubb38\uba85", "\uc0dd\ub144\uc6d4\uc77c", "\uc815\ub2f9", "\uc120\uac70\uad6c", "\ub2f9\uc120\ud69f\uc218", "\ub2f9\uc120\ub300\uc218"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
[[1959, 6], [1964, 5], [1968, 5]]
json_instruct
{"type": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"scripts": {"type": "object", "properties": {"custom": {"type": "string"}, "db-connect:dev": {"type": "string"}}, "required": ["custom", "db-connect:dev"]}}, "required": ["scripts"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"scripts" : {"custom" : "echo 'Custom npm command OK'", "db-connect:dev" : "echo 'Overridden taito-cli command OK'"}}
json_instruct
{"type": "object", "properties": {"scripts": {"type": "object", "properties": {"custom": {"type": "string"}, "db-connect:dev": {"type": "string"}}, "required": ["custom", "db-connect:dev"]}}, "required": ["scripts"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"package": {"type": "string"}, "testCase": {"type": "string"}}, "required": ["package", "testCase"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"package" : "{\"manifest\":\"xsefpm/3\",\"sources\":{\"MyContract.sol\":{\"content\":\"pragma solidity >=0.5.0 <0.7.0;\\ncontract MyContract {\\n}\"}}}", "testCase" : "valid"}
json_instruct
{"type": "object", "properties": {"package": {"type": "string"}, "testCase": {"type": "string"}}, "required": ["package", "testCase"], "$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"}, "version": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "contributors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}, "url": {"type": "string"}}, "required": ["name", "email", "url"]}}, "license": {"type": "string"}, "bugs": {"type": "string"}, "homepage": {"type": "string"}, "dependencies": {"type": "object", "properties": {"audero-lsg": {"type": "string"}}, "required": ["audero-lsg"]}, "devDependencies": {"type": "object", "properties": {"grunt": {"type": "string"}, "grunt-contrib-clean": {"type": "string"}, "grunt-contrib-jshint": {"type": "string"}, "grunt-jscs": {"type": "string"}}, "required": ["grunt", "grunt-contrib-clean", "grunt-contrib-jshint", "grunt-jscs"]}}, "required": ["name", "description", "version", "repository", "scripts", "keywords", "author", "contributors", "license", "bugs", "homepage", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "grunt-audero-lsg", "description" : "Grunt task for Audero LSG", "version" : "0.1.0", "repository" : {"type" : "git", "url" : "git://github.com/AurelioDeRosa/grunt-audero-lsg.git"}, "scripts" : {"test" : "grunt test"}, "keywords" : ["gruntplugin", "living", "style", "guide", "styleguide", "css", "html", "library"], "author" : "Aurelio De Rosa <a.derosa@audero.it> (https://www.audero.it)", "contributors" : [{"name" : "Aurelio De Rosa", "email" : "a.derosa@audero.it", "url" : "https://www.audero.it"}], "license" : "(MIT OR GPL-3.0)", "bugs" : "https://github.com/AurelioDeRosa/grunt-audero-lsg/issues", "homepage" : "https://github.com/AurelioDeRosa/grunt-audero-lsg", "dependencies" : {"audero-lsg" : "^0.1.1"}, "devDependencies" : {"grunt" : "~0.4.5", "grunt-contrib-clean" : "^1.0.0", "grunt-contrib-jshint" : "^1.0.0", "grunt-jscs" : "^2.8.0"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "version": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "contributors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}, "url": {"type": "string"}}, "required": ["name", "email", "url"]}}, "license": {"type": "string"}, "bugs": {"type": "string"}, "homepage": {"type": "string"}, "dependencies": {"type": "object", "properties": {"audero-lsg": {"type": "string"}}, "required": ["audero-lsg"]}, "devDependencies": {"type": "object", "properties": {"grunt": {"type": "string"}, "grunt-contrib-clean": {"type": "string"}, "grunt-contrib-jshint": {"type": "string"}, "grunt-jscs": {"type": "string"}}, "required": ["grunt", "grunt-contrib-clean", "grunt-contrib-jshint", "grunt-jscs"]}}, "required": ["name", "description", "version", "repository", "scripts", "keywords", "author", "contributors", "license", "bugs", "homepage", "dependencies", "devDependencies"], "$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"}, "devDependencies": {"type": "object", "properties": {"gulp-concat": {"type": "string"}, "gulp-plumber": {"type": "string"}, "gulp-minify": {"type": "string"}, "gulp": {"type": "string"}, "gulp-watch": {"type": "string"}, "gulp-batch": {"type": "string"}}, "required": ["gulp-concat", "gulp-plumber", "gulp-minify", "gulp", "gulp-watch", "gulp-batch"]}}, "required": ["name", "version", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "vektor-telekom", "version" : "0.1.0", "devDependencies" : {"gulp-concat" : "~2.4.3", "gulp-plumber" : "~0.6.6", "gulp-minify" : "0.0.5", "gulp" : "~3.8.10", "gulp-watch" : "~4.1.0", "gulp-batch" : "~1.0.5"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"gulp-concat": {"type": "string"}, "gulp-plumber": {"type": "string"}, "gulp-minify": {"type": "string"}, "gulp": {"type": "string"}, "gulp-watch": {"type": "string"}, "gulp-batch": {"type": "string"}}, "required": ["gulp-concat", "gulp-plumber", "gulp-minify", "gulp", "gulp-watch", "gulp-batch"]}}, "required": ["name", "version", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"wokwiComponents.arduinoUno.description": {"type": "string"}, "wokwiComponents.led.description": {"type": "string"}, "wokwiComponents.rgbLed.description": {"type": "string"}, "wokwiComponents.ledBar.description": {"type": "string"}}, "required": ["wokwiComponents.arduinoUno.description", "wokwiComponents.led.description", "wokwiComponents.rgbLed.description", "wokwiComponents.ledBar.description"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"wokwiComponents.arduinoUno.description" : "Carte Arduino Uno", "wokwiComponents.led.description" : "Diode \u00c9lectroluminescente", "wokwiComponents.rgbLed.description" : "Diode \u00c9lectroluminescente de couleur contr\u00f4llable", "wokwiComponents.ledBar.description" : "Barre de 10 Diodes \u00c9lectroluminescentes"}
json_instruct
{"type": "object", "properties": {"wokwiComponents.arduinoUno.description": {"type": "string"}, "wokwiComponents.led.description": {"type": "string"}, "wokwiComponents.rgbLed.description": {"type": "string"}, "wokwiComponents.ledBar.description": {"type": "string"}}, "required": ["wokwiComponents.arduinoUno.description", "wokwiComponents.led.description", "wokwiComponents.rgbLed.description", "wokwiComponents.ledBar.description"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"ast": {"type": "null"}, "code": {"type": "string"}, "map": {"type": "object", "properties": {"version": {"type": "integer"}, "sources": {"type": "array", "items": {"type": "string"}}, "names": {"type": "array", "items": {"type": "string"}}, "mappings": {"type": "string"}, "sourcesContent": {"type": "array", "items": {"type": "string"}}}, "required": ["version", "sources", "names", "mappings", "sourcesContent"]}, "metadata": {"type": "object", "properties": {}, "required": []}, "sourceType": {"type": "string"}}, "required": ["ast", "code", "map", "metadata", "sourceType"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"ast" : null, "code" : "import React from 'react';\nimport { Card, Icon } from 'semantic-ui-react';\n\nfunction About() {\n re;\n}\n\n_c = About;\n\nvar _c;\n\n$RefreshReg$(_c, \"About\");", "map" : {"version" : 3, "sources" : ["/Users/genet/Desktop/Final-Portfolio/src/components/About/index.js"], "names" : ["React", "Card", "Icon", "About", "re"], "mappings" : "AAAA,OAAOA,KAAP,MAAkB,OAAlB;AACA,SAASC,IAAT,EAAeC,IAAf,QAA2B,mBAA3B;;AAEA,SAASC,KAAT,GAAiB;AACbC,EAAAA,EAAE;AACL;;KAFQD,K", "sourcesContent" : ["import React from 'react'\nimport { Card, Icon } from 'semantic-ui-react'\n\nfunction About (){\n re\n}\n\n"]}, "metadata" : {}, "sourceType" : "module"}
json_instruct
{"type": "object", "properties": {"ast": {"type": "null"}, "code": {"type": "string"}, "map": {"type": "object", "properties": {"version": {"type": "integer"}, "sources": {"type": "array", "items": {"type": "string"}}, "names": {"type": "array", "items": {"type": "string"}}, "mappings": {"type": "string"}, "sourcesContent": {"type": "array", "items": {"type": "string"}}}, "required": ["version", "sources", "names", "mappings", "sourcesContent"]}, "metadata": {"type": "object", "properties": {}, "required": []}, "sourceType": {"type": "string"}}, "required": ["ast", "code", "map", "metadata", "sourceType"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"/css/books.css": {"type": "string"}}, "required": ["/css/books.css"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"/css/books.css" : "/css/books.css?id=b9ee151c0c128227af36"}
json_instruct
{"type": "object", "properties": {"/css/books.css": {"type": "string"}}, "required": ["/css/books.css"], "$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"}, "symbol": {"type": "string"}, "name": {"type": "string"}, "platforms": {"type": "object", "properties": {"ethereum": {"type": "string"}}, "required": ["ethereum"]}, "hashing_algorithm": {"type": "null"}, "categories": {"type": "array", "items": {}}, "description": {"type": "object", "properties": {"en": {"type": "string"}}, "required": ["en"]}, "country_origin": {"type": "string"}, "genesis_date": {"type": "null"}, "contract_address": {"type": "string"}, "url": {"type": "string"}, "explorers": {"type": "array", "items": {"type": "string"}}, "twitter": {"type": "string"}, "telegram": {"type": "string"}, "github_org": {"type": "string"}}, "required": ["id", "symbol", "name", "platforms", "hashing_algorithm", "categories", "description", "country_origin", "genesis_date", "contract_address", "url", "explorers", "twitter", "telegram", "github_org"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : "nice", "symbol" : "nice", "name" : "Nice", "platforms" : {"ethereum" : "0x53f64be99da00fec224eaf9f8ce2012149d2fc88"}, "hashing_algorithm" : null, "categories" : [], "description" : {"en" : "NICE is a SushiSwap fork with total supply pegged between 69 and 420."}, "country_origin" : "", "genesis_date" : null, "contract_address" : "0x53f64be99da00fec224eaf9f8ce2012149d2fc88", "url" : "https://niceee.org", "explorers" : ["https://etherscan.io/token/0x53f64be99da00fec224eaf9f8ce2012149d2fc88", "https://ethplorer.io/address/0x53f64be99da00fec224eaf9f8ce2012149d2fc88"], "twitter" : "TheTimTempleton", "telegram" : "niiiiceeeeee", "github_org" : "niceeeeeeeeeee"}
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": "null"}, "categories": {"type": "array", "items": {}}, "description": {"type": "object", "properties": {"en": {"type": "string"}}, "required": ["en"]}, "country_origin": {"type": "string"}, "genesis_date": {"type": "null"}, "contract_address": {"type": "string"}, "url": {"type": "string"}, "explorers": {"type": "array", "items": {"type": "string"}}, "twitter": {"type": "string"}, "telegram": {"type": "string"}, "github_org": {"type": "string"}}, "required": ["id", "symbol", "name", "platforms", "hashing_algorithm", "categories", "description", "country_origin", "genesis_date", "contract_address", "url", "explorers", "twitter", "telegram", "github_org"], "$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#"}
[[1880, 60], [1881, 52], [1882, 60], [1883, 58], [1884, 69], [1885, 68], [1886, 73], [1887, 74], [1888, 63], [1889, 76], [1890, 77], [1891, 64], [1892, 59], [1893, 78], [1894, 63], [1895, 86], [1896, 102], [1897, 75], [1898, 87], [1899, 61], [1900, 118], [1901, 72], [1902, 97], [1903, 85], [1904, 96], [1905, 110], [1906, 100], [1907, 108], [1908, 134], [1909, 137], [1910, 159], [1911, 203], [1912, 346], [1913, 381], [1914, 563], [1915, 699], [1916, 753], [1917, 759], [1918, 877], [1919, 901], [1920, 961], [1921, 952], [1922, 978], [1923, 989], [1924, 1039], [1925, 932], [1926, 956], [1927, 919], [1928, 830], [1929, 856], [1930, 800], [1931, 831], [1932, 788], [1933, 654], [1934, 718], [1935, 700], [1936, 705], [1937, 700], [1938, 639], [1939, 633], [1940, 603], [1941, 662], [1942, 700], [1943, 766], [1944, 658], [1945, 636], [1946, 752], [1947, 813], [1948, 721], [1949, 749], [1950, 754], [1951, 813], [1952, 863], [1953, 869], [1954, 845], [1955, 919], [1956, 966], [1957, 1019], [1958, 1126], [1959, 1128], [1960, 1248], [1961, 1161], [1962, 974], [1963, 1022], [1964, 934], [1965, 884], [1966, 776], [1967, 745], [1968, 758], [1969, 798], [1970, 835], [1971, 969], [1972, 931], [1973, 1108], [1974, 1097], [1975, 1178], [1976, 1190], [1977, 1167], [1978, 1084], [1979, 1209], [1980, 1275], [1981, 1349], [1982, 1707], [1983, 1727], [1984, 1816], [1985, 1718], [1986, 1667], [1987, 1812], [1988, 1887], [1989, 1962], [1990, 2029], [1991, 1846], [1992, 1908], [1993, 2031], [1994, 2369], [1995, 2360], [1996, 2338], [1997, 2319], [1998, 2265], [1999, 2343], [2000, 2564], [2001, 2351], [2002, 2160], [2003, 2127], [2004, 1920], [2005, 1660], [2006, 1594], [2007, 1443], [2008, 1574], [2009, 1260], [2010, 1359], [2011, 1340], [2012, 1361], [2013, 1380], [2014, 1349]]
json_instruct
{"type": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "array", "items": {"type": "object", "properties": {"comment": {"type": "string"}, "definition": {"type": "string"}, "orthologs": {"type": "object", "properties": {}, "required": []}, "name": {"type": "string"}, "product_stoichiometries": {"type": "array", "items": {"type": "string"}}, "enzymes": {"type": "array", "items": {"type": "string"}}, "equation": {"type": "string"}, "glycans": {"type": "boolean"}, "substrate_stoichiometries": {"type": "array", "items": {"type": "string"}}, "rpairs": {"type": "object", "properties": {}, "required": []}, "entry_id": {"type": "string"}, "pathways": {"type": "object", "properties": {}, "required": []}, "products": {"type": "array", "items": {"type": "string"}}, "substrates": {"type": "array", "items": {"type": "string"}}}, "required": ["comment", "definition", "orthologs", "name", "product_stoichiometries", "enzymes", "equation", "glycans", "substrate_stoichiometries", "rpairs", "entry_id", "pathways", "products", "substrates"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"comment" : "", "definition" : "Protein-L-arginine + H2O <=> Protein L-citrulline + Ammonia", "orthologs" : {}, "name" : "Protein arginine iminohydrolase", "product_stoichiometries" : ["1", "1"], "enzymes" : ["3.5.3.15"], "equation" : "C00613 + C00001 <=> C03022 + C00014", "glycans" : false, "substrate_stoichiometries" : ["1", "1"], "rpairs" : {}, "entry_id" : "R02621", "pathways" : {}, "products" : ["C03022", "C00014"], "substrates" : ["C00613", "C00001"]}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"comment": {"type": "string"}, "definition": {"type": "string"}, "orthologs": {"type": "object", "properties": {}, "required": []}, "name": {"type": "string"}, "product_stoichiometries": {"type": "array", "items": {"type": "string"}}, "enzymes": {"type": "array", "items": {"type": "string"}}, "equation": {"type": "string"}, "glycans": {"type": "boolean"}, "substrate_stoichiometries": {"type": "array", "items": {"type": "string"}}, "rpairs": {"type": "object", "properties": {}, "required": []}, "entry_id": {"type": "string"}, "pathways": {"type": "object", "properties": {}, "required": []}, "products": {"type": "array", "items": {"type": "string"}}, "substrates": {"type": "array", "items": {"type": "string"}}}, "required": ["comment", "definition", "orthologs", "name", "product_stoichiometries", "enzymes", "equation", "glycans", "substrate_stoichiometries", "rpairs", "entry_id", "pathways", "products", "substrates"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"template_parameters": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "value": {"type": "string"}}, "required": ["name", "value"]}}}, "required": ["template_parameters"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"template_parameters" : [{"name" : "num_ps", "value" : "1"}, {"name" : "num_workers", "value" : "2"}]}
json_instruct
{"type": "object", "properties": {"template_parameters": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "value": {"type": "string"}}, "required": ["name", "value"]}}}, "required": ["template_parameters"], "$schema": "http://json-schema.org/draft-07/schema#"}