input
stringlengths 159
2.05k
| output
stringlengths 5
10.3k
| task
stringclasses 1
value | schema
stringlengths 100
1.99k
|
---|---|---|---|
Generate sample JSON data that conforms to the following schema definition:
{"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "Name": {"type": "string"}, "state_id": {"type": "integer"}, "state_code": {"type": "string"}, "state_name": {"type": "string"}, "country_id": {"type": "integer"}, "country_code": {"type": "string"}, "country_name": {"type": "string"}, "latitude": {"type": "string"}, "longitude": {"type": "string"}, "wikiDataId": {"type": "string"}}, "required": ["id", "Name", "state_id", "state_code", "state_name", "country_id", "country_code", "country_name", "latitude", "longitude", "wikiDataId"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"id" : 53809, "Name" : "Bolama", "state_id" : 2722, "state_code" : "BL", "state_name" : "Bolama Region", "country_id" : 93, "country_code" : "GW", "country_name" : "Guinea-Bissau", "latitude" : "11.57694000", "longitude" : "-15.47611000", "wikiDataId" : "Q681802"}, {"id" : 53811, "Name" : "Bubaque", "state_id" : 2722, "state_code" : "BL", "state_name" : "Bolama Region", "country_id" : 93, "country_code" : "GW", "country_name" : "Guinea-Bissau", "latitude" : "11.28333000", "longitude" : "-15.83333000", "wikiDataId" : "Q997407"}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "Name": {"type": "string"}, "state_id": {"type": "integer"}, "state_code": {"type": "string"}, "state_name": {"type": "string"}, "country_id": {"type": "integer"}, "country_code": {"type": "string"}, "country_name": {"type": "string"}, "latitude": {"type": "string"}, "longitude": {"type": "string"}, "wikiDataId": {"type": "string"}}, "required": ["id", "Name", "state_id", "state_code", "state_name", "country_id", "country_code", "country_name", "latitude", "longitude", "wikiDataId"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"version": {"type": "number"}, "people": {"type": "array", "items": {"type": "object", "properties": {"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": ["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.2, "people" : [{"pose_keypoints_2d" : [666.866, 235.208, 1, 714.534, 247.944, 1, 705.221, 253.206, 1, 716.32, 303.136, 1, 684.547, 325.7, 1, 731.782, 244.549, 1, 754.77, 278.825, 1, 748.402, 314.678, 1, 745.821, 323.42, 1, 716.907, 385.215, 1, 733.421, 460.214, 1, 761.501, 330.263, 1, 790.25, 424.388, 1, 812.901, 447.647, 1, 662.995, 233.687, 1, 666.398, 232.644, 1, 664.544, 214.286, 0, 703.623, 217.961, 1], "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": {"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": ["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": {"unversionedId": {"type": "string"}, "id": {"type": "string"}, "isDocsHomePage": {"type": "boolean"}, "title": {"type": "string"}, "description": {"type": "string"}, "source": {"type": "string"}, "slug": {"type": "string"}, "permalink": {"type": "string"}, "editUrl": {"type": "string"}, "version": {"type": "string"}, "lastUpdatedAt": {"type": "integer"}, "sidebar": {"type": "string"}, "previous": {"type": "object", "properties": {"title": {"type": "string"}, "permalink": {"type": "string"}}, "required": ["title", "permalink"]}, "next": {"type": "object", "properties": {"title": {"type": "string"}, "permalink": {"type": "string"}}, "required": ["title", "permalink"]}}, "required": ["unversionedId", "id", "isDocsHomePage", "title", "description", "source", "slug", "permalink", "editUrl", "version", "lastUpdatedAt", "sidebar", "previous", "next"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"unversionedId" : "more-resources", "id" : "version-0.62/more-resources", "isDocsHomePage" : false, "title" : "More Resources", "description" : "Congratulations! You built your first React Native app. But there\u2019s more to learn: developer workflows, shipping to app stores, internationalization, security and more.", "source" : "@site/versioned_docs/version-0.62/more-resources.md", "slug" : "/more-resources", "permalink" : "/docs/0.62/more-resources", "editUrl" : "https://github.com/facebook/react-native-website/blob/master/website/versioned_docs/version-0.62/more-resources.md", "version" : "0.62", "lastUpdatedAt" : 1539502055, "sidebar" : "version-0.62/docs", "previous" : {"title" : "Platform Specific Code", "permalink" : "/docs/0.62/platform-specific-code"}, "next" : {"title" : "Setting up the development environment", "permalink" : "/docs/0.62/environment-setup"}} | json_instruct | {"type": "object", "properties": {"unversionedId": {"type": "string"}, "id": {"type": "string"}, "isDocsHomePage": {"type": "boolean"}, "title": {"type": "string"}, "description": {"type": "string"}, "source": {"type": "string"}, "slug": {"type": "string"}, "permalink": {"type": "string"}, "editUrl": {"type": "string"}, "version": {"type": "string"}, "lastUpdatedAt": {"type": "integer"}, "sidebar": {"type": "string"}, "previous": {"type": "object", "properties": {"title": {"type": "string"}, "permalink": {"type": "string"}}, "required": ["title", "permalink"]}, "next": {"type": "object", "properties": {"title": {"type": "string"}, "permalink": {"type": "string"}}, "required": ["title", "permalink"]}}, "required": ["unversionedId", "id", "isDocsHomePage", "title", "description", "source", "slug", "permalink", "editUrl", "version", "lastUpdatedAt", "sidebar", "previous", "next"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"lastUpdated": {"type": "integer"}, "username": {"type": "string"}, "scores": {"type": "array", "items": {"type": "object", "properties": {"xp": {"type": "integer"}, "rank": {"type": "integer"}, "cardId": {"type": "integer"}}, "required": ["xp", "rank", "cardId"]}}}, "required": ["lastUpdated", "username", "scores"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"lastUpdated" : 1655019279666, "username" : "Yaja 87", "scores" : [{"xp" : 4997, "rank" : 490, "cardId" : 501}]} | json_instruct | {"type": "object", "properties": {"lastUpdated": {"type": "integer"}, "username": {"type": "string"}, "scores": {"type": "array", "items": {"type": "object", "properties": {"xp": {"type": "integer"}, "rank": {"type": "integer"}, "cardId": {"type": "integer"}}, "required": ["xp", "rank", "cardId"]}}}, "required": ["lastUpdated", "username", "scores"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"jquery.bxslider.css": {"type": "string"}, "jquery.bxslider.js": {"type": "string"}, "jquery.bxslider.min.css": {"type": "string"}, "jquery.bxslider.min.js": {"type": "string"}, "vendor/jquery.easing.1.3.js": {"type": "string"}, "vendor/jquery.fitvids.js": {"type": "string"}}, "required": ["jquery.bxslider.css", "jquery.bxslider.js", "jquery.bxslider.min.css", "jquery.bxslider.min.js", "vendor/jquery.easing.1.3.js", "vendor/jquery.fitvids.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"jquery.bxslider.css" : "sha256-Vd3R+AzsYn9iS3nOokzNGPs4GAw7/2dX/+Vr58GmRF0=", "jquery.bxslider.js" : "sha256-P4SJfYhPR/nJixZWliR5tB/emZNOajq66BKJlbfYH3s=", "jquery.bxslider.min.css" : "sha256-T8z3BuYYbmF+CrCumP7yv0kpY1pNnTB0ZWOvbEdlsxA=", "jquery.bxslider.min.js" : "sha256-dzHVd8XfpfOOm/gt7a5RF0yd3U09RmjuqdHlHWzhPWY=", "vendor/jquery.easing.1.3.js" : "sha256-B1f3/25falgZIqXi1CxeDPdHXYgIhamALovdXkGI3TQ=", "vendor/jquery.fitvids.js" : "sha256-27tcJdjXa054P2SK67ylYXfxE0KPmlJoxBQti92lhaM="} | json_instruct | {"type": "object", "properties": {"jquery.bxslider.css": {"type": "string"}, "jquery.bxslider.js": {"type": "string"}, "jquery.bxslider.min.css": {"type": "string"}, "jquery.bxslider.min.js": {"type": "string"}, "vendor/jquery.easing.1.3.js": {"type": "string"}, "vendor/jquery.fitvids.js": {"type": "string"}}, "required": ["jquery.bxslider.css", "jquery.bxslider.js", "jquery.bxslider.min.css", "jquery.bxslider.min.js", "vendor/jquery.easing.1.3.js", "vendor/jquery.fitvids.js"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"type": {"type": "string"}, "config": {"type": "object", "properties": {"fluid": {"type": "object", "properties": {"type": {"type": "string"}, "state": {"type": "object", "properties": {"Name": {"type": "string"}, "Properties": {"type": "object", "properties": {"level": {"type": "string"}}, "required": ["level"]}}, "required": ["Name", "Properties"]}}, "required": ["type", "state"]}, "barrier": {"type": "object", "properties": {"type": {"type": "string"}, "state": {"type": "object", "properties": {"Name": {"type": "string"}}, "required": ["Name"]}}, "required": ["type", "state"]}}, "required": ["fluid", "barrier"]}}, "required": ["type", "config"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"type" : "minecraft:lake", "config" : {"fluid" : {"type" : "minecraft:simple_state_provider", "state" : {"Name" : "minecraft:water", "Properties" : {"level" : "0"}}}, "barrier" : {"type" : "minecraft:simple_state_provider", "state" : {"Name" : "minecraft:nether_wart_block"}}}} | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "config": {"type": "object", "properties": {"fluid": {"type": "object", "properties": {"type": {"type": "string"}, "state": {"type": "object", "properties": {"Name": {"type": "string"}, "Properties": {"type": "object", "properties": {"level": {"type": "string"}}, "required": ["level"]}}, "required": ["Name", "Properties"]}}, "required": ["type", "state"]}, "barrier": {"type": "object", "properties": {"type": {"type": "string"}, "state": {"type": "object", "properties": {"Name": {"type": "string"}}, "required": ["Name"]}}, "required": ["type", "state"]}}, "required": ["fluid", "barrier"]}}, "required": ["type", "config"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"manifest_version": {"type": "integer"}, "name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "theme": {"type": "object", "properties": {"images": {"type": "object", "properties": {"theme_frame": {"type": "string"}, "theme_toolbar": {"type": "string"}, "theme_tab_background": {"type": "string"}, "theme_ntp_background": {"type": "string"}, "theme_frame_overlay": {"type": "string"}, "theme_ntp_attribution": {"type": "string"}}, "required": ["theme_frame", "theme_toolbar", "theme_tab_background", "theme_ntp_background", "theme_frame_overlay", "theme_ntp_attribution"]}, "colors": {"type": "object", "properties": {"frame": {"type": "array", "items": {"type": "integer"}}, "toolbar": {"type": "array", "items": {"type": "integer"}}, "tab_text": {"type": "array", "items": {"type": "integer"}}, "tab_background_text": {"type": "array", "items": {"type": "integer"}}, "bookmark_text": {"type": "array", "items": {"type": "integer"}}, "ntp_background": {"type": "array", "items": {"type": "integer"}}, "ntp_text": {"type": "array", "items": {"type": "integer"}}, "button_background": {"type": "array", "items": {"type": "integer"}}}, "required": ["frame", "toolbar", "tab_text", "tab_background_text", "bookmark_text", "ntp_background", "ntp_text", "button_background"]}, "tints": {"type": "object", "properties": {"buttons": {"type": "array", "items": {"type": "number"}}}, "required": ["buttons"]}, "properties": {"type": "object", "properties": {"ntp_background_alignment": {"type": "string"}, "ntp_background_repeat": {"type": "string"}}, "required": ["ntp_background_alignment", "ntp_background_repeat"]}}, "required": ["images", "colors", "tints", "properties"]}}, "required": ["manifest_version", "name", "version", "description", "theme"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"manifest_version" : 2, "name" : "Angel Beats (1920x1080)", "version" : "1.1.3", "description" : "", "theme" : {"images" : {"theme_frame" : "img/theme_frame.png", "theme_toolbar" : "img/theme_toolbar.png", "theme_tab_background" : "img/theme_tab_background.png", "theme_ntp_background" : "img/theme_ntp_background.png", "theme_frame_overlay" : "img/theme_frame_overlay.png", "theme_ntp_attribution" : "img/theme_ntp_attribution.png"}, "colors" : {"frame" : [58, 52, 62], "toolbar" : [225, 193, 154], "tab_text" : [93, 20, 110], "tab_background_text" : [50, 10, 60], "bookmark_text" : [58, 52, 62], "ntp_background" : [255, 255, 255], "ntp_text" : [0, 0, 0], "button_background" : [0, 0, 0, 0]}, "tints" : {"buttons" : [0.8, 0.69, 0.25]}, "properties" : {"ntp_background_alignment" : "top", "ntp_background_repeat" : "no-repeat"}}} | json_instruct | {"type": "object", "properties": {"manifest_version": {"type": "integer"}, "name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "theme": {"type": "object", "properties": {"images": {"type": "object", "properties": {"theme_frame": {"type": "string"}, "theme_toolbar": {"type": "string"}, "theme_tab_background": {"type": "string"}, "theme_ntp_background": {"type": "string"}, "theme_frame_overlay": {"type": "string"}, "theme_ntp_attribution": {"type": "string"}}, "required": ["theme_frame", "theme_toolbar", "theme_tab_background", "theme_ntp_background", "theme_frame_overlay", "theme_ntp_attribution"]}, "colors": {"type": "object", "properties": {"frame": {"type": "array", "items": {"type": "integer"}}, "toolbar": {"type": "array", "items": {"type": "integer"}}, "tab_text": {"type": "array", "items": {"type": "integer"}}, "tab_background_text": {"type": "array", "items": {"type": "integer"}}, "bookmark_text": {"type": "array", "items": {"type": "integer"}}, "ntp_background": {"type": "array", "items": {"type": "integer"}}, "ntp_text": {"type": "array", "items": {"type": "integer"}}, "button_background": {"type": "array", "items": {"type": "integer"}}}, "required": ["frame", "toolbar", "tab_text", "tab_background_text", "bookmark_text", "ntp_background", "ntp_text", "button_background"]}, "tints": {"type": "object", "properties": {"buttons": {"type": "array", "items": {"type": "number"}}}, "required": ["buttons"]}, "properties": {"type": "object", "properties": {"ntp_background_alignment": {"type": "string"}, "ntp_background_repeat": {"type": "string"}}, "required": ["ntp_background_alignment", "ntp_background_repeat"]}}, "required": ["images", "colors", "tints", "properties"]}}, "required": ["manifest_version", "name", "version", "description", "theme"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"name": {"type": "string"}, "harga": {"type": "string"}, "golongan": {"type": "string"}, "kandungan": {"type": "string"}, "indikasi": {"type": "string"}, "kontraindikasi": {"type": "string"}, "perhatian": {"type": "string"}, "efeksamping": {"type": "string"}, "indeksamanwanitahamil": {"type": "string"}, "kemasan": {"type": "string"}, "dosis": {"type": "string"}, "penyajian": {"type": "string"}, "pabrik": {"type": "string"}, "id": {"type": "string"}, "category_id": {"type": "string"}}, "required": ["name", "harga", "golongan", "kandungan", "indikasi", "kontraindikasi", "perhatian", "efeksamping", "indeksamanwanitahamil", "kemasan", "dosis", "penyajian", "pabrik", "id", "category_id"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "ULSICRAL TABLET", "harga" : " Rp. 101.640/ kemasan", "golongan" : "http://medicastore.com/image_banner/obat_keras_dan_psikotropika.gif", "kandungan" : "Sucralfate.", "indikasi" : "Terapi jangka pendek ulkus duodenum ( sampai 8 minggu ).", "kontraindikasi" : "", "perhatian" : "Gagal ginjal kronik dan pasien dialisis, hamil, laktasi, anak.Interaksi Obat: Menurunkan absorpsi simetidin, fluorokuinolon (siprofloksasin, norfloksasin), digoksin, ketokonazol, fenitoin, ranitidin, tetrasiklin, kuinidin, indikasi tiroksin dan teofilin.", "efeksamping" : "", "indeksamanwanitahamil" : "B: Baik penelitian reproduksi hewan tidak menunjukkan risiko pada janin maupun penelitian terkendali pada wanita hamil atau hewan coba tidak memperlihatkan efek merugikan (kecuali penurunan kesuburan) dimana tidak ada penelitian terkendali yang mengkonfirmasi risiko pada wanita hamil semester pertama (dan tidak ada bukti risiko pada trisemester selanjutnya).", "kemasan" : "Tablet 500 mg x 6 x 10 biji.", "dosis" : "4 x sehari 2 sendok makan (10 ml)pada saat perut kosong (1 jam sebelum makan dan tidur. Terapi dapat dilanjutkan untuk 4 - 8 minggu kecuali jika sudah dinyatakan sembuh melalui pemeriksaan sinar X atau endoskopi.", "penyajian" : "Dikonsumsi pada perut kosong (1 atau 2 jam sebelum/sesudah makan)", "pabrik" : "Ikapharmindo.", "id" : "10843", "category_id" : "1"} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "harga": {"type": "string"}, "golongan": {"type": "string"}, "kandungan": {"type": "string"}, "indikasi": {"type": "string"}, "kontraindikasi": {"type": "string"}, "perhatian": {"type": "string"}, "efeksamping": {"type": "string"}, "indeksamanwanitahamil": {"type": "string"}, "kemasan": {"type": "string"}, "dosis": {"type": "string"}, "penyajian": {"type": "string"}, "pabrik": {"type": "string"}, "id": {"type": "string"}, "category_id": {"type": "string"}}, "required": ["name", "harga", "golongan", "kandungan", "indikasi", "kontraindikasi", "perhatian", "efeksamping", "indeksamanwanitahamil", "kemasan", "dosis", "penyajian", "pabrik", "id", "category_id"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"usdThreshold": {"type": "integer"}, "watchIntervalInSeconds": {"type": "integer"}, "numberOfSwapsToFetch": {"type": "integer"}, "twitter": {"type": "object", "properties": {"apiKey": {"type": "string"}, "apiSecretKey": {"type": "string"}, "bearerToken": {"type": "string"}, "accessToken": {"type": "string"}, "accessTokenSecret": {"type": "string"}}, "required": ["apiKey", "apiSecretKey", "bearerToken", "accessToken", "accessTokenSecret"]}}, "required": ["usdThreshold", "watchIntervalInSeconds", "numberOfSwapsToFetch", "twitter"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"usdThreshold" : 50000, "watchIntervalInSeconds" : 30, "numberOfSwapsToFetch" : 100, "twitter" : {"apiKey" : "", "apiSecretKey" : "", "bearerToken" : "", "accessToken" : "", "accessTokenSecret" : ""}} | json_instruct | {"type": "object", "properties": {"usdThreshold": {"type": "integer"}, "watchIntervalInSeconds": {"type": "integer"}, "numberOfSwapsToFetch": {"type": "integer"}, "twitter": {"type": "object", "properties": {"apiKey": {"type": "string"}, "apiSecretKey": {"type": "string"}, "bearerToken": {"type": "string"}, "accessToken": {"type": "string"}, "accessTokenSecret": {"type": "string"}}, "required": ["apiKey", "apiSecretKey", "bearerToken", "accessToken", "accessTokenSecret"]}}, "required": ["usdThreshold", "watchIntervalInSeconds", "numberOfSwapsToFetch", "twitter"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"type": {"type": "string"}, "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": {"name": {"type": "string"}, "iso2": {"type": "string"}, "admin_level": {"type": "integer"}, "osm_id": {"type": "integer"}, "countrylevel_id": {"type": "string"}, "osm_data": {"type": "object", "properties": {"localname": {"type": "string"}, "official_name": {"type": "string"}, "alltags": {"type": "object", "properties": {"name:en": {"type": "string"}, "name:fr": {"type": "string"}, "name:nl": {"type": "string"}, "start_date": {"type": "string"}, "description": {"type": "string"}, "admin_type:CD": {"type": "string"}, "admin_level:-2015-06": {"type": "string"}, "admin_level:2015-06-": {"type": "string"}, "admin_type:CD:-2005-06": {"type": "string"}, "admin_type:CD:2005-06-": {"type": "string"}}, "required": ["name:en", "name:fr", "name:nl", "start_date", "description", "admin_type:CD", "admin_level:-2015-06", "admin_level:2015-06-", "admin_type:CD:-2005-06", "admin_type:CD:2005-06-"]}}, "required": ["localname", "official_name", "alltags"]}, "center_lat": {"type": "number"}, "center_lon": {"type": "number"}, "area_m2": {"type": "integer"}, "timezone": {"type": "string"}, "population": {"type": "integer"}, "wikidata_id": {"type": "string"}}, "required": ["name", "iso2", "admin_level", "osm_id", "countrylevel_id", "osm_data", "center_lat", "center_lon", "area_m2", "timezone", "population", "wikidata_id"]}}, "required": ["type", "geometry", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"type" : "Feature", "geometry" : {"type" : "Polygon", "coordinates" : [[[22.525, -4.202], [22.864, -4.494], [23.125, -4.524], [23.179, -4.737], [22.999, -4.81], [22.967, -4.991], [23.229, -5.302], [23.333, -5.261], [23.714, -5.365], [23.742, -5.659], [23.47, -5.755], [22.964, -5.782], [22.952, -5.958], [23.145, -6.466], [23.017, -6.774], [23.283, -6.924], [23.225, -7.134], [23.262, -7.452], [23.187, -7.774], [23.079, -7.894], [22.665, -7.892], [22.611, -7.745], [22.165, -7.867], [21.829, -7.657], [21.789, -7.283], [21.407, -6.824], [21.693, -6.642], [21.576, -6.035], [21.833, -5.868], [21.979, -5.61], [21.849, -5.421], [21.659, -5.385], [21.689, -5.065], [21.852, -5.023], [22.043, -5.149], [22.311, -4.66], [22.537, -4.455], [22.525, -4.202]]]}, "properties" : {"name" : "Central Kasai", "iso2" : "CD-KC", "admin_level" : 4, "osm_id" : 5646599, "countrylevel_id" : "iso2:CD-KC", "osm_data" : {"localname" : "Kasa\u00ef-Central", "official_name" : "", "alltags" : {"name:en" : "Central Kasai", "name:fr" : "Kasa\u00ef-Central", "name:nl" : "Centraal-Kasa\u00ef", "start_date" : "2015-06", "description" : "ancien district devenu province en juin 2015", "admin_type:CD" : "province", "admin_level:-2015-06" : "5", "admin_level:2015-06-" : "4", "admin_type:CD:-2005-06" : "district", "admin_type:CD:2005-06-" : "province"}}, "center_lat" : -6.23, "center_lon" : 22.5, "area_m2" : 57852081555, "timezone" : "Africa/Lubumbashi", "population" : 2976806, "wikidata_id" : "Q6702952"}} | 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": {"name": {"type": "string"}, "iso2": {"type": "string"}, "admin_level": {"type": "integer"}, "osm_id": {"type": "integer"}, "countrylevel_id": {"type": "string"}, "osm_data": {"type": "object", "properties": {"localname": {"type": "string"}, "official_name": {"type": "string"}, "alltags": {"type": "object", "properties": {"name:en": {"type": "string"}, "name:fr": {"type": "string"}, "name:nl": {"type": "string"}, "start_date": {"type": "string"}, "description": {"type": "string"}, "admin_type:CD": {"type": "string"}, "admin_level:-2015-06": {"type": "string"}, "admin_level:2015-06-": {"type": "string"}, "admin_type:CD:-2005-06": {"type": "string"}, "admin_type:CD:2005-06-": {"type": "string"}}, "required": ["name:en", "name:fr", "name:nl", "start_date", "description", "admin_type:CD", "admin_level:-2015-06", "admin_level:2015-06-", "admin_type:CD:-2005-06", "admin_type:CD:2005-06-"]}}, "required": ["localname", "official_name", "alltags"]}, "center_lat": {"type": "number"}, "center_lon": {"type": "number"}, "area_m2": {"type": "integer"}, "timezone": {"type": "string"}, "population": {"type": "integer"}, "wikidata_id": {"type": "string"}}, "required": ["name", "iso2", "admin_level", "osm_id", "countrylevel_id", "osm_data", "center_lat", "center_lon", "area_m2", "timezone", "population", "wikidata_id"]}}, "required": ["type", "geometry", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"n_dim": {"type": "integer"}, "n_trials": {"type": "integer"}, "objective": {"type": "string"}, "white": {"type": "string"}, "black": {"type": "string"}, "traceback": {"type": "array", "items": {"type": "string"}}, "best_val": {"type": "array", "items": {"type": "number"}}, "best_x": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}, "feval_count": {"type": "array", "items": {"type": "integer"}}, "n_trials_instructed": {"type": "array", "items": {"type": "integer"}}, "passing": {"type": "array", "items": {"type": "boolean"}}, "completed": {"type": "boolean"}, "points": {"type": "number"}, "winner": {"type": "string"}, "loser": {"type": "string"}}, "required": ["n_dim", "n_trials", "objective", "white", "black", "traceback", "best_val", "best_x", "feval_count", "n_trials_instructed", "passing", "completed", "points", "winner", "loser"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"n_dim" : 8, "n_trials" : 80, "objective" : "markowitz_analytic_on_cube", "white" : "pysot_dycors", "black" : "ax_default", "traceback" : ["passing", "passing"], "best_val" : [0.029735974896851786, 0.025074722457543164], "best_x" : [[0.004681844223013043, 0.2383940535718937, 0.04359739773461779, 0.2143938930410864, 0.045226723558956794, 0.17675105298803506, 0.022793253603490306, 0.2602779769137787], [0.028083483255209173, 0.1816781960956207, 0.19214434928863586, 0.20444968952878625, 0.22106269372449353, 0.15993931375072903, 1.0092159013795105e-16, 0.027990633280608298]], "feval_count" : [80, 80], "n_trials_instructed" : [80, 80], "passing" : [true, true], "completed" : true, "points" : 0.0, "winner" : "ax_default_cube", "loser" : "pysot_dycors_cube"} | json_instruct | {"type": "object", "properties": {"n_dim": {"type": "integer"}, "n_trials": {"type": "integer"}, "objective": {"type": "string"}, "white": {"type": "string"}, "black": {"type": "string"}, "traceback": {"type": "array", "items": {"type": "string"}}, "best_val": {"type": "array", "items": {"type": "number"}}, "best_x": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}, "feval_count": {"type": "array", "items": {"type": "integer"}}, "n_trials_instructed": {"type": "array", "items": {"type": "integer"}}, "passing": {"type": "array", "items": {"type": "boolean"}}, "completed": {"type": "boolean"}, "points": {"type": "number"}, "winner": {"type": "string"}, "loser": {"type": "string"}}, "required": ["n_dim", "n_trials", "objective", "white", "black", "traceback", "best_val", "best_x", "feval_count", "n_trials_instructed", "passing", "completed", "points", "winner", "loser"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "engines": {"type": "object", "properties": {"node": {"type": "string"}, "npm": {"type": "string"}, "yarn": {"type": "string"}}, "required": ["node", "npm", "yarn"]}, "devDependencies": {"type": "object", "properties": {"@types/express": {"type": "string"}, "nodemon": {"type": "string"}, "ts-loader": {"type": "string"}, "typescript": {"type": "string"}, "webpack": {"type": "string"}, "webpack-cli": {"type": "string"}, "webpack-node-externals": {"type": "string"}}, "required": ["@types/express", "nodemon", "ts-loader", "typescript", "webpack", "webpack-cli", "webpack-node-externals"]}, "dependencies": {"type": "object", "properties": {"dotenv": {"type": "string"}, "express": {"type": "string"}, "rimraf": {"type": "string"}}, "required": ["dotenv", "express", "rimraf"]}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}, "dev": {"type": "string"}, "build": {"type": "string"}, "clear": {"type": "string"}}, "required": ["start", "dev", "build", "clear"]}}, "required": ["name", "version", "description", "main", "repository", "keywords", "author", "license", "bugs", "homepage", "engines", "devDependencies", "dependencies", "scripts"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "typescript-firebase", "version" : "1.0.0", "description" : "--- Node Express Firebase assessment", "main" : "index.js", "repository" : {"type" : "git", "url" : "git+https://github.com/vd89/node-typescript-firebase.git"}, "keywords" : ["Node Js", "Express ", "TypeScript", "Firebase"], "author" : "", "license" : "ISC", "bugs" : {"url" : "https://github.com/vd89/node-typescript-firebase/issues"}, "homepage" : "https://github.com/vd89/node-typescript-firebase#readme", "engines" : {"node" : "16.4.1", "npm" : "7.19.1", "yarn" : "1.22.5"}, "devDependencies" : {"@types/express" : "^4.17.13", "nodemon" : "^2.0.12", "ts-loader" : "^9.2.3", "typescript" : "^4.3.5", "webpack" : "^5.45.1", "webpack-cli" : "^4.7.2", "webpack-node-externals" : "^3.0.0"}, "dependencies" : {"dotenv" : "^10.0.0", "express" : "^4.17.1", "rimraf" : "^3.0.2"}, "scripts" : {"start" : "NODE_ENV=production node ./dist/server.generated.js", "dev" : "nodemon", "build" : " rimraf dist && webpack --mode=production --config webpack.config.server.js", "clear" : "rimraf dist"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "engines": {"type": "object", "properties": {"node": {"type": "string"}, "npm": {"type": "string"}, "yarn": {"type": "string"}}, "required": ["node", "npm", "yarn"]}, "devDependencies": {"type": "object", "properties": {"@types/express": {"type": "string"}, "nodemon": {"type": "string"}, "ts-loader": {"type": "string"}, "typescript": {"type": "string"}, "webpack": {"type": "string"}, "webpack-cli": {"type": "string"}, "webpack-node-externals": {"type": "string"}}, "required": ["@types/express", "nodemon", "ts-loader", "typescript", "webpack", "webpack-cli", "webpack-node-externals"]}, "dependencies": {"type": "object", "properties": {"dotenv": {"type": "string"}, "express": {"type": "string"}, "rimraf": {"type": "string"}}, "required": ["dotenv", "express", "rimraf"]}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}, "dev": {"type": "string"}, "build": {"type": "string"}, "clear": {"type": "string"}}, "required": ["start", "dev", "build", "clear"]}}, "required": ["name", "version", "description", "main", "repository", "keywords", "author", "license", "bugs", "homepage", "engines", "devDependencies", "dependencies", "scripts"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"items": {"type": "array", "items": {"type": "object", "properties": {"attributes": {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"]}, "value": {"type": "string"}, "scope": {"type": "string"}, "type": {"type": "string"}}, "required": ["attributes", "value", "scope", "type"]}}}, "required": ["items"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"items" : [{"attributes" : {"name" : "another_message"}, "value" : "Only on main", "scope" : "main:main", "type" : "string"}, {"attributes" : {"name" : "app_name"}, "value" : "Strings playground on demo", "scope" : "demo:main", "type" : "string"}, {"attributes" : {"name" : "welcome_message"}, "value" : "Welcome to the app on demoProdDebug", "scope" : "demoProdDebug:main", "type" : "string"}]} | json_instruct | {"type": "object", "properties": {"items": {"type": "array", "items": {"type": "object", "properties": {"attributes": {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"]}, "value": {"type": "string"}, "scope": {"type": "string"}, "type": {"type": "string"}}, "required": ["attributes", "value", "scope", "type"]}}}, "required": ["items"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"xbox": {"type": "integer"}, "ps": {"type": "integer"}}, "required": ["xbox", "ps"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"xbox" : 56148, "ps" : 55928} | json_instruct | {"type": "object", "properties": {"xbox": {"type": "integer"}, "ps": {"type": "integer"}}, "required": ["xbox", "ps"], "$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": {"K08251": {"type": "string"}}, "required": ["K08251"]}, "name": {"type": "string"}, "enzymes": {"type": "array", "items": {}}, "equation": {"type": "string"}, "glycans": {"type": "boolean"}, "rpairs": {"type": "object", "properties": {}, "required": []}, "entry_id": {"type": "string"}, "pathways": {"type": "object", "properties": {}, "required": []}}, "required": ["comment", "definition", "orthologs", "name", "enzymes", "equation", "glycans", "rpairs", "entry_id", "pathways"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"comment" : "", "definition" : "G02047 + 2 UDP-N-acetyl-D-glucosamine <=> G06302 + 2 UDP", "orthologs" : {"K08251" : "alpha 1,4-N-acetylglucosaminyltransferase [EC:2.4.1.-]"}, "name" : "", "enzymes" : [], "equation" : "G02047 + 2 G10610 <=> G06302 + 2 G10619", "glycans" : true, "rpairs" : {}, "entry_id" : "R07131", "pathways" : {}}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"comment": {"type": "string"}, "definition": {"type": "string"}, "orthologs": {"type": "object", "properties": {"K08251": {"type": "string"}}, "required": ["K08251"]}, "name": {"type": "string"}, "enzymes": {"type": "array", "items": {}}, "equation": {"type": "string"}, "glycans": {"type": "boolean"}, "rpairs": {"type": "object", "properties": {}, "required": []}, "entry_id": {"type": "string"}, "pathways": {"type": "object", "properties": {}, "required": []}}, "required": ["comment", "definition", "orthologs", "name", "enzymes", "equation", "glycans", "rpairs", "entry_id", "pathways"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "array", "items": {"type": "object", "properties": {"namaKab": {"type": "string"}, "originalFilename": {"type": "string"}, "namaPartai": {"type": "string"}, "id": {"type": "integer"}, "noUrut": {"type": "integer"}, "nama": {"type": "string"}, "stringJenisKelamin": {"type": "string"}}, "required": ["namaKab", "originalFilename", "namaPartai", "id", "noUrut", "nama", "stringJenisKelamin"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"namaKab" : "SUMENEP", "originalFilename" : "5.jpg", "namaPartai" : "Partai NasDem", "id" : 18624, "noUrut" : 1, "nama" : "FATHORRAFIK, S.Kep. NS", "stringJenisKelamin" : "Laki-Laki"}, {"namaKab" : "SUMENEP", "originalFilename" : "6.jpg", "namaPartai" : "Partai NasDem", "id" : 19134, "noUrut" : 2, "nama" : "MUTA'EM", "stringJenisKelamin" : "Laki-Laki"}, {"namaKab" : "SUMENEP", "originalFilename" : "1.jpg", "namaPartai" : "Partai NasDem", "id" : 19097, "noUrut" : 3, "nama" : "NUR IMAMA", "stringJenisKelamin" : "Perempuan"}, {"namaKab" : "SUMENEP", "originalFilename" : "8.jpg", "namaPartai" : "Partai NasDem", "id" : 19179, "noUrut" : 4, "nama" : "MUH SULTAN M", "stringJenisKelamin" : "Laki-Laki"}, {"namaKab" : "SUMENEP", "originalFilename" : "7.jpg", "namaPartai" : "Partai NasDem", "id" : 19204, "noUrut" : 5, "nama" : "ACHMAD KHATIM", "stringJenisKelamin" : "Laki-Laki"}, {"namaKab" : "SUMENEP", "originalFilename" : "3.jpg", "namaPartai" : "Partai NasDem", "id" : 19245, "noUrut" : 6, "nama" : "UMRAINI", "stringJenisKelamin" : "Perempuan"}, {"namaKab" : "SUMENEP", "originalFilename" : "nurbaya.jpg", "namaPartai" : "Partai NasDem", "id" : 20262, "noUrut" : 7, "nama" : "NURBAYA", "stringJenisKelamin" : "Perempuan"}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"namaKab": {"type": "string"}, "originalFilename": {"type": "string"}, "namaPartai": {"type": "string"}, "id": {"type": "integer"}, "noUrut": {"type": "integer"}, "nama": {"type": "string"}, "stringJenisKelamin": {"type": "string"}}, "required": ["namaKab", "originalFilename", "namaPartai", "id", "noUrut", "nama", "stringJenisKelamin"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"id": {"type": "string"}, "district_id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "district_id", "name"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "3512130002", "district_id" : "3512130", "name" : "CURAH COTOK"} | 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#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"columns": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}, "index": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}, "data": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}, "required": ["columns", "index", "data"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"columns" : [["airplane"], ["bird"], ["car"], ["cat"], ["deer"], ["dog"], ["horse"], ["monkey"], ["ship"], ["truck"]], "index" : [["airplane"], ["bird"], ["car"], ["cat"], ["deer"], ["dog"], ["horse"], ["monkey"], ["ship"], ["truck"]], "data" : [[0.515, 0.086, 0.091, 0.044, 0.025, 0.035, 0.02, 0.019, 0.13, 0.035], [0.146, 0.166, 0.084, 0.146, 0.129, 0.096, 0.072, 0.071, 0.055, 0.034], [0.124, 0.132, 0.328, 0.056, 0.048, 0.059, 0.058, 0.044, 0.058, 0.095], [0.054, 0.13, 0.095, 0.261, 0.116, 0.109, 0.085, 0.065, 0.035, 0.05], [0.082, 0.17, 0.082, 0.165, 0.165, 0.08, 0.104, 0.079, 0.036, 0.036], [0.078, 0.155, 0.104, 0.142, 0.125, 0.138, 0.092, 0.082, 0.035, 0.049], [0.05, 0.15, 0.114, 0.146, 0.124, 0.128, 0.129, 0.06, 0.04, 0.06], [0.048, 0.14, 0.125, 0.151, 0.146, 0.124, 0.088, 0.096, 0.046, 0.036], [0.219, 0.099, 0.148, 0.056, 0.036, 0.046, 0.046, 0.038, 0.262, 0.05], [0.11, 0.108, 0.231, 0.068, 0.068, 0.075, 0.075, 0.061, 0.071, 0.134]]} | json_instruct | {"type": "object", "properties": {"columns": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}, "index": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}, "data": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}, "required": ["columns", "index", "data"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"roleName": {"type": "string"}, "type": {"type": "string"}, "description": {"type": "string"}, "assignableScopes": {"type": "array", "items": {"type": "string"}}, "permissions": {"type": "array", "items": {"type": "object", "properties": {"actions": {"type": "array", "items": {"type": "string"}}, "notActions": {"type": "array", "items": {}}, "dataActions": {"type": "array", "items": {"type": "string"}}, "notDataActions": {"type": "array", "items": {}}}, "required": ["actions", "notActions", "dataActions", "notDataActions"]}}, "createdOn": {"type": "string"}, "updatedOn": {"type": "string"}, "createdBy": {"type": "null"}, "updatedBy": {"type": "null"}}, "required": ["roleName", "type", "description", "assignableScopes", "permissions", "createdOn", "updatedOn", "createdBy", "updatedBy"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"roleName" : "Avere Contributor", "type" : "BuiltInRole", "description" : "Can create and manage an Avere vFXT cluster.", "assignableScopes" : ["/"], "permissions" : [{"actions" : ["Microsoft.Authorization/*/read", "Microsoft.Compute/*/read", "Microsoft.Compute/availabilitySets/*", "Microsoft.Compute/proximityPlacementGroups/*", "Microsoft.Compute/virtualMachines/*", "Microsoft.Compute/disks/*", "Microsoft.Network/*/read", "Microsoft.Network/networkInterfaces/*", "Microsoft.Network/virtualNetworks/read", "Microsoft.Network/virtualNetworks/subnets/read", "Microsoft.Network/virtualNetworks/subnets/join/action", "Microsoft.Network/virtualNetworks/subnets/joinViaServiceEndpoint/action", "Microsoft.Network/networkSecurityGroups/join/action", "Microsoft.Resources/deployments/*", "Microsoft.Insights/alertRules/*", "Microsoft.Resources/subscriptions/resourceGroups/read", "Microsoft.Storage/*/read", "Microsoft.Storage/storageAccounts/*", "Microsoft.Support/*", "Microsoft.Resources/subscriptions/resourceGroups/resources/read"], "notActions" : [], "dataActions" : ["Microsoft.Storage/storageAccounts/blobServices/containers/blobs/delete", "Microsoft.Storage/storageAccounts/blobServices/containers/blobs/read", "Microsoft.Storage/storageAccounts/blobServices/containers/blobs/write"], "notDataActions" : []}], "createdOn" : "2019-03-18T20:00:58.9207889Z", "updatedOn" : "2020-05-27T06:48:54.4896867Z", "createdBy" : null, "updatedBy" : null} | json_instruct | {"type": "object", "properties": {"roleName": {"type": "string"}, "type": {"type": "string"}, "description": {"type": "string"}, "assignableScopes": {"type": "array", "items": {"type": "string"}}, "permissions": {"type": "array", "items": {"type": "object", "properties": {"actions": {"type": "array", "items": {"type": "string"}}, "notActions": {"type": "array", "items": {}}, "dataActions": {"type": "array", "items": {"type": "string"}}, "notDataActions": {"type": "array", "items": {}}}, "required": ["actions", "notActions", "dataActions", "notDataActions"]}}, "createdOn": {"type": "string"}, "updatedOn": {"type": "string"}, "createdBy": {"type": "null"}, "updatedBy": {"type": "null"}}, "required": ["roleName", "type", "description", "assignableScopes", "permissions", "createdOn", "updatedOn", "createdBy", "updatedBy"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"schema_version": {"type": "string"}, "id": {"type": "string"}, "modified": {"type": "string"}, "published": {"type": "string"}, "aliases": {"type": "array", "items": {"type": "string"}}, "details": {"type": "string"}, "severity": {"type": "array", "items": {}}, "affected": {"type": "array", "items": {}}, "references": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}}, "database_specific": {"type": "object", "properties": {"cwe_ids": {"type": "array", "items": {"type": "string"}}, "severity": {"type": "null"}, "github_reviewed": {"type": "boolean"}}, "required": ["cwe_ids", "severity", "github_reviewed"]}}, "required": ["schema_version", "id", "modified", "published", "aliases", "details", "severity", "affected", "references", "database_specific"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"schema_version" : "1.2.0", "id" : "GHSA-vgc6-7rq7-5j57", "modified" : "2021-12-29T00:00:44Z", "published" : "2021-12-29T00:00:44Z", "aliases" : ["CVE-2021-3090"], "details" : "PI Vision could disclose information to a user with insufficient privileges for an AF attribute that is the child of another attribute and is configured as a Limits property.", "severity" : [], "affected" : [], "references" : [{"type" : "ADVISORY", "url" : "https://nvd.nist.gov/vuln/detail/CVE-2021-3090"}, {"type" : "WEB", "url" : "https://us-cert.cisa.gov/ics/advisories/icsa-21-313-05"}], "database_specific" : {"cwe_ids" : ["CWE-863"], "severity" : null, "github_reviewed" : false}} | json_instruct | {"type": "object", "properties": {"schema_version": {"type": "string"}, "id": {"type": "string"}, "modified": {"type": "string"}, "published": {"type": "string"}, "aliases": {"type": "array", "items": {"type": "string"}}, "details": {"type": "string"}, "severity": {"type": "array", "items": {}}, "affected": {"type": "array", "items": {}}, "references": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}}, "database_specific": {"type": "object", "properties": {"cwe_ids": {"type": "array", "items": {"type": "string"}}, "severity": {"type": "null"}, "github_reviewed": {"type": "boolean"}}, "required": ["cwe_ids", "severity", "github_reviewed"]}}, "required": ["schema_version", "id", "modified", "published", "aliases", "details", "severity", "affected", "references", "database_specific"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"350104001": {"type": "string"}, "350104002": {"type": "string"}, "350104003": {"type": "string"}, "350104004": {"type": "string"}, "350104005": {"type": "string"}, "350104006": {"type": "string"}, "350104007": {"type": "string"}, "350104008": {"type": "string"}, "350104100": {"type": "string"}, "350104101": {"type": "string"}, "350104102": {"type": "string"}, "350104103": {"type": "string"}, "350104104": {"type": "string"}, "350104400": {"type": "string"}}, "required": ["350104001", "350104002", "350104003", "350104004", "350104005", "350104006", "350104007", "350104008", "350104100", "350104101", "350104102", "350104103", "350104104", "350104400"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"350104001" : "\u4ed3\u524d\u8857\u9053", "350104002" : "\u4e1c\u5347\u8857\u9053", "350104003" : "\u5bf9\u6e56\u8857\u9053", "350104004" : "\u4e34\u6c5f\u8857\u9053", "350104005" : "\u4e09\u53c9\u8857\u8857\u9053", "350104006" : "\u4e0a\u6e21\u8857\u9053", "350104007" : "\u4e0b\u6e21\u8857\u9053", "350104008" : "\u91d1\u5c71\u8857\u9053", "350104100" : "\u4ed3\u5c71\u9547", "350104101" : "\u57ce\u95e8\u9547", "350104102" : "\u76d6\u5c71\u9547", "350104103" : "\u5efa\u65b0\u9547", "350104104" : "\u87ba\u6d32\u9547", "350104400" : "\u7ea2\u661f\u519c\u573a"} | json_instruct | {"type": "object", "properties": {"350104001": {"type": "string"}, "350104002": {"type": "string"}, "350104003": {"type": "string"}, "350104004": {"type": "string"}, "350104005": {"type": "string"}, "350104006": {"type": "string"}, "350104007": {"type": "string"}, "350104008": {"type": "string"}, "350104100": {"type": "string"}, "350104101": {"type": "string"}, "350104102": {"type": "string"}, "350104103": {"type": "string"}, "350104104": {"type": "string"}, "350104400": {"type": "string"}}, "required": ["350104001", "350104002", "350104003", "350104004", "350104005", "350104006", "350104007", "350104008", "350104100", "350104101", "350104102", "350104103", "350104104", "350104400"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "en": {"type": "string"}, "ru": {"type": "string"}, "iso3": {"type": "string"}, "iso2": {"type": "string"}, "phoneCode": {"type": "string"}, "capital": {"type": "null"}, "currency": {"type": "string"}}, "required": ["id", "en", "ru", "iso3", "iso2", "phoneCode", "capital", "currency"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"id" : "77da0d1a-f3af-45c1-adac-f66f3f528913", "en" : "Liberia", "ru" : "\u041b\u0438\u0431\u0435\u0440\u0438\u044f", "iso3" : "LBR", "iso2" : "LR", "phoneCode" : "231", "capital" : null, "currency" : "LRD"}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "en": {"type": "string"}, "ru": {"type": "string"}, "iso3": {"type": "string"}, "iso2": {"type": "string"}, "phoneCode": {"type": "string"}, "capital": {"type": "null"}, "currency": {"type": "string"}}, "required": ["id", "en", "ru", "iso3", "iso2", "phoneCode", "capital", "currency"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "array", "items": {"type": "object", "properties": {"package": {"type": "string"}, "downloads": {"type": "integer"}, "count": {"type": "integer"}}, "required": ["package", "downloads", "count"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"package" : "bioconductor-rgug4131a.db", "downloads" : 1300, "count" : 1530}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"package": {"type": "string"}, "downloads": {"type": "integer"}, "count": {"type": "integer"}}, "required": ["package", "downloads", "count"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"accountId": {"type": "string"}, "endorsementType": {"type": "string"}, "underwriter": {"type": "string"}, "transactionType": {"type": "string"}, "state": {"type": "string"}}, "required": ["accountId", "endorsementType", "underwriter", "transactionType", "state"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"accountId" : "string", "endorsementType" : "string", "underwriter" : "string", "transactionType" : "string", "state" : "string"} | json_instruct | {"type": "object", "properties": {"accountId": {"type": "string"}, "endorsementType": {"type": "string"}, "underwriter": {"type": "string"}, "transactionType": {"type": "string"}, "state": {"type": "string"}}, "required": ["accountId", "endorsementType", "underwriter", "transactionType", "state"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"variants": {"type": "object", "properties": {"": {"type": "object", "properties": {"model": {"type": "string"}}, "required": ["model"]}}, "required": [""]}}, "required": ["variants"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"variants" : {"" : {"model" : "tech_adventure:block/apple_upgrader_machine"}}} | json_instruct | {"type": "object", "properties": {"variants": {"type": "object", "properties": {"": {"type": "object", "properties": {"model": {"type": "string"}}, "required": ["model"]}}, "required": [""]}}, "required": ["variants"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "array", "items": {"type": "object", "properties": {"errors": {"type": "array", "items": {}}, "file": {"type": "string"}, "name": {"type": "string"}}, "required": ["errors", "file", "name"]}}}, "required": ["contract", "tool", "start", "end", "duration", "analysis"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"contract" : "0x180e35f768eb870962d2dc04cca1a927d206a089", "tool" : "honeybadger", "start" : 1565821790.4167826, "end" : 1565821876.1991322, "duration" : 85.78234958648682, "analysis" : [{"errors" : [], "file" : "/unique_chucks/31/0x180e35f768eb870962d2dc04cca1a927d206a089.sol", "name" : "LuckySeven"}, {"errors" : [], "file" : "/unique_chucks/31/0x180e35f768eb870962d2dc04cca1a927d206a089.sol", "name" : "SafeMath"}]} | json_instruct | {"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "array", "items": {"type": "object", "properties": {"errors": {"type": "array", "items": {}}, "file": {"type": "string"}, "name": {"type": "string"}}, "required": ["errors", "file", "name"]}}}, "required": ["contract", "tool", "start", "end", "duration", "analysis"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"average_occupancy": {"type": "array", "items": {"type": "number"}}}, "required": ["average_occupancy"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"average_occupancy" : [1.4238444068515896, 1.477328012144411, 1.4688440519264725, 1.413515953034099, 1.4525498561964059, 1.3521874854266935, 1.330885974943413, 1.3401946975593604, 1.302015434316926, 1.3955871009284948, 1.385425804003146, 1.386481768404626, 1.329434185454649, 1.3036905544358932, 1.2732017968926412, 1.2759040421817545, 1.3674455269820682, 1.388763521528791, 1.4055632673884477, 1.3820832226228204, 1.385971455309823, 1.3603059290968458, 1.3446321418616942, 1.290844599673279, 1.2787796358340502, 1.339255477531204, 1.2865227634929313, 1.213858562676537, 1.160616400515815, 1.098524661287017, 1.0959597083027892, 1.145913015184982, 1.0798982429290556, 1.1225855690676736, 1.1161023402644052, 1.1581560604955132, 8.153473201011073, 1.1281519115470524, 1.1824108692016437, 1.211128772333819, 1.2390496214020448, 1.2297140491657634, 1.2675173598668874, 1.2858418335384245, 1.2778295238720654, 1.3397318355781966, 1.3298162210419955, 1.2921550563229003, 1.2680248310024849, 1.257320756048352, 1.289563258266542, 1.276670108078107, 1.2458595505627774, 1.2146250172392727, 1.2210134200954836, 1.2707674466410255, 1.2780864860875065, 1.26429533501643, 1.2530392348726929, 1.2761441143879533, 1.2957543270074516, 1.3312920453926984, 1.3192198016020504, 1.3436159700737533, 1.4007714387260592, 1.444220617382793, 1.3801275801185775, 1.4298057449118038, 1.389653922892866, 1.4410655579924687, 1.477056215996274, 1.4644375541605694, 1.423783273940721, 1.4256650527841137, 1.4484278570948175]} | json_instruct | {"type": "object", "properties": {"average_occupancy": {"type": "array", "items": {"type": "number"}}}, "required": ["average_occupancy"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"name": {"type": "string"}, "displayName": {"type": "string"}, "description": {"type": "string"}, "icon": {"type": "string"}, "version": {"type": "string"}, "publisher": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "engines": {"type": "object", "properties": {"vscode": {"type": "string"}}, "required": ["vscode"]}, "categories": {"type": "array", "items": {"type": "string"}}, "contributes": {"type": "object", "properties": {"themes": {"type": "array", "items": {"type": "object", "properties": {"label": {"type": "string"}, "uiTheme": {"type": "string"}, "path": {"type": "string"}}, "required": ["label", "uiTheme", "path"]}}}, "required": ["themes"]}}, "required": ["name", "displayName", "description", "icon", "version", "publisher", "repository", "keywords", "engines", "categories", "contributes"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "real-synth-2-0", "displayName" : "Real Synth 2", "description" : "A theme that gathers the best neon colors from the Synthwave style", "icon" : "themes/img/RealSynthIcon128.png", "version" : "2.0.1", "publisher" : "AdlerRibeiro", "repository" : {"type" : "git", "url" : "git://github.com/adlerRibeiro/RealSynth2"}, "keywords" : ["theme", "dark theme", "synth", "wave", "synthwave", "adler", "ribeiro", "synth theme", "neon"], "engines" : {"vscode" : "^1.65.0"}, "categories" : ["Themes"], "contributes" : {"themes" : [{"label" : "Real Synth", "uiTheme" : "vs-dark", "path" : "./themes/Real Synth 2-color-theme.json"}]}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "displayName": {"type": "string"}, "description": {"type": "string"}, "icon": {"type": "string"}, "version": {"type": "string"}, "publisher": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "engines": {"type": "object", "properties": {"vscode": {"type": "string"}}, "required": ["vscode"]}, "categories": {"type": "array", "items": {"type": "string"}}, "contributes": {"type": "object", "properties": {"themes": {"type": "array", "items": {"type": "object", "properties": {"label": {"type": "string"}, "uiTheme": {"type": "string"}, "path": {"type": "string"}}, "required": ["label", "uiTheme", "path"]}}}, "required": ["themes"]}}, "required": ["name", "displayName", "description", "icon", "version", "publisher", "repository", "keywords", "engines", "categories", "contributes"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"id": {"type": "integer"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"src:alt_label": {"type": "string"}, "src:geom": {"type": "string"}, "wof:geomhash": {"type": "string"}, "wof:id": {"type": "integer"}, "wof:repo": {"type": "string"}}, "required": ["src:alt_label", "src:geom", "wof:geomhash", "wof:id", "wof:repo"]}, "bbox": {"type": "array", "items": {"type": "number"}}, "geometry": {"type": "object", "properties": {"coordinates": {"type": "array", "items": {"type": "number"}}, "type": {"type": "string"}}, "required": ["coordinates", "type"]}}, "required": ["id", "type", "properties", "bbox", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : 1125382295, "type" : "Feature", "properties" : {"src:alt_label" : "qs_pg", "src:geom" : "qs_pg", "wof:geomhash" : "644b3d789f055841b771506d674fda7a", "wof:id" : 1125382295, "wof:repo" : "whosonfirst-data-admin-se"}, "bbox" : [14.1415, 56.30621, 14.1415, 56.30621], "geometry" : {"coordinates" : [14.1415, 56.30621], "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#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"n_dim": {"type": "integer"}, "n_trials": {"type": "integer"}, "objective": {"type": "string"}, "white": {"type": "string"}, "black": {"type": "string"}, "traceback": {"type": "array", "items": {"type": "string"}}, "best_val": {"type": "array", "items": {"type": "number"}}, "best_x": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}, "feval_count": {"type": "array", "items": {"type": "integer"}}, "n_trials_instructed": {"type": "array", "items": {"type": "integer"}}, "passing": {"type": "array", "items": {"type": "boolean"}}, "completed": {"type": "boolean"}, "points": {"type": "number"}, "winner": {"type": "string"}, "loser": {"type": "string"}}, "required": ["n_dim", "n_trials", "objective", "white", "black", "traceback", "best_val", "best_x", "feval_count", "n_trials_instructed", "passing", "completed", "points", "winner", "loser"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"n_dim" : 8, "n_trials" : 130, "objective" : "markowitz_realized_on_cube", "white" : "platypus_epsmoea", "black" : "bobyqa_default", "traceback" : ["passing", "passing"], "best_val" : [0.5586946189171176, -0.07773279945869777], "best_x" : [[0.26538755573471856, 0.10875626921534748, 0.0010979895800309336, 0.7123287416424022, 0.10187001187674682, 0.16411305099862225, 0.008106970936660463, 0.2759389425460872], [0.33061592207277596, 0.3432075251553934, 2.111785990130199e-05, 0.30609368254752983, 0.0, 5.858848976660768e-08, 4.4044913701934894e-05, 0.02001775737564522]], "feval_count" : [130, 130], "n_trials_instructed" : [130, 130], "passing" : [true, true], "completed" : true, "points" : 0.0, "winner" : "bobyqa_default_cube", "loser" : "platypus_epsmoea_cube"} | json_instruct | {"type": "object", "properties": {"n_dim": {"type": "integer"}, "n_trials": {"type": "integer"}, "objective": {"type": "string"}, "white": {"type": "string"}, "black": {"type": "string"}, "traceback": {"type": "array", "items": {"type": "string"}}, "best_val": {"type": "array", "items": {"type": "number"}}, "best_x": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}, "feval_count": {"type": "array", "items": {"type": "integer"}}, "n_trials_instructed": {"type": "array", "items": {"type": "integer"}}, "passing": {"type": "array", "items": {"type": "boolean"}}, "completed": {"type": "boolean"}, "points": {"type": "number"}, "winner": {"type": "string"}, "loser": {"type": "string"}}, "required": ["n_dim", "n_trials", "objective", "white", "black", "traceback", "best_val", "best_x", "feval_count", "n_trials_instructed", "passing", "completed", "points", "winner", "loser"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "license": {"type": "null"}, "starNum": {"type": "integer"}, "folkNum": {"type": "integer"}, "watchNum": {"type": "integer"}, "topic": {"type": "array", "items": {}}}, "required": ["name", "description", "license", "starNum", "folkNum", "watchNum", "topic"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "iops", "description" : "Benchmark disk IOs", "license" : null, "starNum" : 137, "folkNum" : 51, "watchNum" : 137, "topic" : []} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "license": {"type": "null"}, "starNum": {"type": "integer"}, "folkNum": {"type": "integer"}, "watchNum": {"type": "integer"}, "topic": {"type": "array", "items": {}}}, "required": ["name", "description", "license", "starNum", "folkNum", "watchNum", "topic"], "$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"}, "license": {"type": "string"}, "homepage": {"type": "string"}, "bugs": {"type": "string"}, "dependencies": {"type": "object", "properties": {"@types/node": {"type": "string"}, "glob": {"type": "string"}, "handlebars": {"type": "string"}, "lodash": {"type": "string"}, "mkdirp": {"type": "string"}, "typescript": {"type": "string"}, "yargs": {"type": "string"}}, "required": ["@types/node", "glob", "handlebars", "lodash", "mkdirp", "typescript", "yargs"]}, "peerDependencies": {"type": "object", "properties": {"joynr": {"type": "string"}}, "required": ["joynr"]}, "scripts": {"type": "object", "properties": {"build": {"type": "string"}}, "required": ["build"]}, "devDependencies": {"type": "object", "properties": {"@types/lodash": {"type": "string"}, "@types/rimraf": {"type": "string"}, "@types/yargs": {"type": "string"}, "@types/glob": {"type": "string"}, "@types/mkdirp": {"type": "string"}, "rimraf": {"type": "string"}}, "required": ["@types/lodash", "@types/rimraf", "@types/yargs", "@types/glob", "@types/mkdirp", "rimraf"]}, "files": {"type": "array", "items": {"type": "string"}}, "bin": {"type": "object", "properties": {"generate-joynr-sources": {"type": "string"}}, "required": ["generate-joynr-sources"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}}, "required": ["name", "version", "description", "license", "homepage", "bugs", "dependencies", "peerDependencies", "scripts", "devDependencies", "files", "bin", "repository"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "joynr-generator", "version" : "1.17.1", "description" : "Code generator for joynr", "license" : "Apache-2.0", "homepage" : "http://joynr.io", "bugs" : "https://github.com/bmwcarit/joynr/issues", "dependencies" : {"@types/node" : "8.9.5", "glob" : "7.1.3", "handlebars" : "4.1.1", "lodash" : "4.17.12", "mkdirp" : "0.5.1", "typescript" : "3.5.2", "yargs" : "13.2.2"}, "peerDependencies" : {"joynr" : "1.17.1"}, "scripts" : {"build" : " tsc --listFiles --listEmittedFiles"}, "devDependencies" : {"@types/lodash" : "^4.14.123", "@types/rimraf" : "^2.0.2", "@types/yargs" : "^13.0.0", "@types/glob" : "^7.1.1", "@types/mkdirp" : "^0.5.2", "rimraf" : "^2.6.3"}, "files" : ["src/joynrGenerator.js", "jars/joynr-generator-standalone-1.17.1.jar"], "bin" : {"generate-joynr-sources" : "./src/joynrGenerator.js"}, "repository" : {"type" : "git", "url" : "https://github.com/bmwcarit/joynr.git"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "license": {"type": "string"}, "homepage": {"type": "string"}, "bugs": {"type": "string"}, "dependencies": {"type": "object", "properties": {"@types/node": {"type": "string"}, "glob": {"type": "string"}, "handlebars": {"type": "string"}, "lodash": {"type": "string"}, "mkdirp": {"type": "string"}, "typescript": {"type": "string"}, "yargs": {"type": "string"}}, "required": ["@types/node", "glob", "handlebars", "lodash", "mkdirp", "typescript", "yargs"]}, "peerDependencies": {"type": "object", "properties": {"joynr": {"type": "string"}}, "required": ["joynr"]}, "scripts": {"type": "object", "properties": {"build": {"type": "string"}}, "required": ["build"]}, "devDependencies": {"type": "object", "properties": {"@types/lodash": {"type": "string"}, "@types/rimraf": {"type": "string"}, "@types/yargs": {"type": "string"}, "@types/glob": {"type": "string"}, "@types/mkdirp": {"type": "string"}, "rimraf": {"type": "string"}}, "required": ["@types/lodash", "@types/rimraf", "@types/yargs", "@types/glob", "@types/mkdirp", "rimraf"]}, "files": {"type": "array", "items": {"type": "string"}}, "bin": {"type": "object", "properties": {"generate-joynr-sources": {"type": "string"}}, "required": ["generate-joynr-sources"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}}, "required": ["name", "version", "description", "license", "homepage", "bugs", "dependencies", "peerDependencies", "scripts", "devDependencies", "files", "bin", "repository"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "private": {"type": "boolean"}, "scripts": {"type": "object", "properties": {"lint": {"type": "string"}, "start": {"type": "string"}}, "required": ["lint", "start"]}, "dependencies": {"type": "object", "properties": {"json-server": {"type": "string"}}, "required": ["json-server"]}, "devDependencies": {"type": "object", "properties": {"@types/json-server": {"type": "string"}, "@types/node": {"type": "string"}}, "required": ["@types/json-server", "@types/node"]}, "peerDependencies": {"type": "object", "properties": {"dotenv": {"type": "string"}, "typescript": {"type": "string"}, "ts-node": {"type": "string"}}, "required": ["dotenv", "typescript", "ts-node"]}, "prettier": {"type": "string"}}, "required": ["name", "version", "private", "scripts", "dependencies", "devDependencies", "peerDependencies", "prettier"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "@rss/db", "version" : "0.0.0", "private" : true, "scripts" : {"lint" : "eslint ./src/**", "start" : "ts-node ./src/index.ts"}, "dependencies" : {"json-server" : "0.16.3"}, "devDependencies" : {"@types/json-server" : "0.14.4", "@types/node" : "16.4.0"}, "peerDependencies" : {"dotenv" : "10.0.0", "typescript" : "4.3.5", "ts-node" : "10.1.0"}, "prettier" : "@rss/prettier"} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "private": {"type": "boolean"}, "scripts": {"type": "object", "properties": {"lint": {"type": "string"}, "start": {"type": "string"}}, "required": ["lint", "start"]}, "dependencies": {"type": "object", "properties": {"json-server": {"type": "string"}}, "required": ["json-server"]}, "devDependencies": {"type": "object", "properties": {"@types/json-server": {"type": "string"}, "@types/node": {"type": "string"}}, "required": ["@types/json-server", "@types/node"]}, "peerDependencies": {"type": "object", "properties": {"dotenv": {"type": "string"}, "typescript": {"type": "string"}, "ts-node": {"type": "string"}}, "required": ["dotenv", "typescript", "ts-node"]}, "prettier": {"type": "string"}}, "required": ["name", "version", "private", "scripts", "dependencies", "devDependencies", "peerDependencies", "prettier"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"turf.js": {"type": "string"}, "turf.min.js": {"type": "string"}}, "required": ["turf.js", "turf.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"turf.js" : "sha512-QmpcKQyqipIDCJvRHZ/KM+H834IMRi6ZWCe1eImu9w//SMZN2UYekllF+EQEZyCan8Du5alm/SPP5swomYxy3Q==", "turf.min.js" : "sha512-X25WfXgyQF3fV/Ezd4twentHXXxkIWTQr8P5jwwszdCSaxItj+cKQlq86ECZyp2SUd2R3pp4gnBvlGGKv1RITg=="} | json_instruct | {"type": "object", "properties": {"turf.js": {"type": "string"}, "turf.min.js": {"type": "string"}}, "required": ["turf.js", "turf.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"features": {"type": "array", "items": {"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": {"TIMESTAMP UTC": {"type": "string"}, "CLASSIFICATION": {"type": "string"}}, "required": ["TIMESTAMP UTC", "CLASSIFICATION"]}}, "required": ["type", "geometry", "properties"]}}, "type": {"type": "string"}}, "required": ["features", "type"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"features" : [{"type" : "Feature", "geometry" : {"type" : "Point", "coordinates" : [17.6023506464455, 59.32162354092542]}, "properties" : {"TIMESTAMP UTC" : "2018-10-26T10:11:08", "CLASSIFICATION" : "Flying plane"}}, {"type" : "Feature", "geometry" : {"type" : "Point", "coordinates" : [17.883511783886256, 59.43806558944294]}, "properties" : {"TIMESTAMP UTC" : "2018-10-26T10:11:08", "CLASSIFICATION" : "Flying plane"}}, {"type" : "Feature", "geometry" : {"type" : "Point", "coordinates" : [17.753594722274883, 59.41218957866127]}, "properties" : {"TIMESTAMP UTC" : "2018-10-26T10:11:08", "CLASSIFICATION" : "Flying plane"}}, {"type" : "Feature", "geometry" : {"type" : "Point", "coordinates" : [17.758926475829384, 59.41057232798742]}, "properties" : {"TIMESTAMP UTC" : "2018-10-26T10:11:08", "CLASSIFICATION" : "Flying plane"}}, {"type" : "Feature", "geometry" : {"type" : "Point", "coordinates" : [17.946071025592417, 59.61371698207547]}, "properties" : {"TIMESTAMP UTC" : "2018-10-26T10:11:08", "CLASSIFICATION" : "Flying plane"}}, {"type" : "Feature", "geometry" : {"type" : "Point", "coordinates" : [17.909459651184836, 59.51416621837376]}, "properties" : {"TIMESTAMP UTC" : "2018-10-26T10:11:08", "CLASSIFICATION" : "Flying plane"}}], "type" : "FeatureCollection"} | json_instruct | {"type": "object", "properties": {"features": {"type": "array", "items": {"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": {"TIMESTAMP UTC": {"type": "string"}, "CLASSIFICATION": {"type": "string"}}, "required": ["TIMESTAMP UTC", "CLASSIFICATION"]}}, "required": ["type", "geometry", "properties"]}}, "type": {"type": "string"}}, "required": ["features", "type"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"authors": {"type": "array", "items": {"type": "string"}}, "copyright": {"type": "string"}, "dependencies": {"type": "object", "properties": {"bindbc-sdl": {"type": "string"}, "dmoge": {"type": "object", "properties": {"path": {"type": "string"}}, "required": ["path"]}}, "required": ["bindbc-sdl", "dmoge"]}, "description": {"type": "string"}, "license": {"type": "string"}, "name": {"type": "string"}, "targetType": {"type": "string"}}, "required": ["authors", "copyright", "dependencies", "description", "license", "name", "targetType"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"authors" : ["birthggd"], "copyright" : "Copyright \u00a9 2020, birthggd", "dependencies" : {"bindbc-sdl" : "~>0.19.0", "dmoge" : {"path" : "./dmoge"}}, "description" : "A game.", "license" : "MIT", "name" : "bitaliens", "targetType" : "executable"} | json_instruct | {"type": "object", "properties": {"authors": {"type": "array", "items": {"type": "string"}}, "copyright": {"type": "string"}, "dependencies": {"type": "object", "properties": {"bindbc-sdl": {"type": "string"}, "dmoge": {"type": "object", "properties": {"path": {"type": "string"}}, "required": ["path"]}}, "required": ["bindbc-sdl", "dmoge"]}, "description": {"type": "string"}, "license": {"type": "string"}, "name": {"type": "string"}, "targetType": {"type": "string"}}, "required": ["authors", "copyright", "dependencies", "description", "license", "name", "targetType"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"assessment": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "weight": {"type": "string"}}, "required": ["name", "weight"]}}}, "required": ["assessment"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"assessment" : [{"name" : "Interview with simulated patient", "weight" : "Performance hurdle"}, {"name" : "Clinical Coaching Video Examination (CCVE)", "weight" : "Performance hurdle"}, {"name" : "Formative Clinical Coaching Examinations (CCE)", "weight" : "Formative"}, {"name" : "Care of the Deteriorating Patient OLA A and OLA B", "weight" : "Performance hurdle"}, {"name" : "Formative CPA", "weight" : "Formative"}, {"name" : "Summative CPA", "weight" : "Performance hurdle"}, {"name" : "Nutrition masterclass OLA", "weight" : "Performance hurdle"}]} | json_instruct | {"type": "object", "properties": {"assessment": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "weight": {"type": "string"}}, "required": ["name", "weight"]}}}, "required": ["assessment"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "location": {"type": "string"}, "author": {"type": "array", "items": {"type": "string"}}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "URL": {"type": "string"}}, "required": ["type", "URL"]}, "slug": {"type": "string"}, "shortDescription": {"type": "string"}, "type": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "private": {"type": "boolean"}, "license": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "URL": {"type": "string"}}, "required": ["type", "URL"]}}, "dependencies": {"type": "object", "properties": {"cbstorages": {"type": "string"}}, "required": ["cbstorages"]}, "devDependencies": {"type": "object", "properties": {"testbox": {"type": "string"}}, "required": ["testbox"]}, "installPaths": {"type": "object", "properties": {"testbox": {"type": "string"}, "cbstorages": {"type": "string"}}, "required": ["testbox", "cbstorages"]}, "scripts": {"type": "object", "properties": {"format": {"type": "string"}, "format:check": {"type": "string"}, "generateAPIDocs": {"type": "string"}}, "required": ["format", "format:check", "generateAPIDocs"]}, "ignore": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "version", "location", "author", "repository", "slug", "shortDescription", "type", "keywords", "private", "license", "dependencies", "devDependencies", "installPaths", "scripts", "ignore"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "cbauth", "version" : "5.0.3", "location" : "forgeboxStorage", "author" : ["Eric Peterson", "Mike Burt", "Luis Majano"], "repository" : {"type" : "git", "URL" : "https://github.com/coldbox-modules/cbauth"}, "slug" : "cbauth", "shortDescription" : "Authentication services for ColdBox Applications.", "type" : "modules", "keywords" : ["authentication", "sessions"], "private" : false, "license" : [{"type" : "MIT", "URL" : "https://raw.githubusercontent.com/coldbox-modules/cbauth/master/LICENSE"}], "dependencies" : {"cbstorages" : "^2.0.0"}, "devDependencies" : {"testbox" : "^3.0.0"}, "installPaths" : {"testbox" : "testbox/", "cbstorages" : "modules/cbstorages/"}, "scripts" : {"format" : "cfformat run models/**/*.cfc,tests/specs/**/*.cfc --overwrite", "format:check" : "cfformat check models/**/*.cfc,tests/specs/**/*.cfc --verbose", "generateAPIDocs" : "rm .tmp --recurse --force && docbox generate mapping=cbauth excludes=tests|ModuleConfig strategy-outputDir=.tmp/apidocs strategy-projectTitle=cbauth"}, "ignore" : ["**/.*", "test", "tests", "docs/**/*.*", "server.json"]} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "location": {"type": "string"}, "author": {"type": "array", "items": {"type": "string"}}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "URL": {"type": "string"}}, "required": ["type", "URL"]}, "slug": {"type": "string"}, "shortDescription": {"type": "string"}, "type": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "private": {"type": "boolean"}, "license": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "URL": {"type": "string"}}, "required": ["type", "URL"]}}, "dependencies": {"type": "object", "properties": {"cbstorages": {"type": "string"}}, "required": ["cbstorages"]}, "devDependencies": {"type": "object", "properties": {"testbox": {"type": "string"}}, "required": ["testbox"]}, "installPaths": {"type": "object", "properties": {"testbox": {"type": "string"}, "cbstorages": {"type": "string"}}, "required": ["testbox", "cbstorages"]}, "scripts": {"type": "object", "properties": {"format": {"type": "string"}, "format:check": {"type": "string"}, "generateAPIDocs": {"type": "string"}}, "required": ["format", "format:check", "generateAPIDocs"]}, "ignore": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "version", "location", "author", "repository", "slug", "shortDescription", "type", "keywords", "private", "license", "dependencies", "devDependencies", "installPaths", "scripts", "ignore"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"schema_version": {"type": "string"}, "id": {"type": "string"}, "modified": {"type": "string"}, "published": {"type": "string"}, "aliases": {"type": "array", "items": {"type": "string"}}, "details": {"type": "string"}, "severity": {"type": "array", "items": {}}, "affected": {"type": "array", "items": {}}, "references": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}}, "database_specific": {"type": "object", "properties": {"cwe_ids": {"type": "array", "items": {}}, "severity": {"type": "string"}, "github_reviewed": {"type": "boolean"}}, "required": ["cwe_ids", "severity", "github_reviewed"]}}, "required": ["schema_version", "id", "modified", "published", "aliases", "details", "severity", "affected", "references", "database_specific"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"schema_version" : "1.2.0", "id" : "GHSA-6m44-c224-92xx", "modified" : "2022-04-30T18:15:42Z", "published" : "2022-04-30T18:15:42Z", "aliases" : ["CVE-2001-0248"], "details" : "Buffer overflow in FTP server in HPUX 11 allows remote attackers to execute arbitrary commands by creating a long pathname and calling the STAT command, which uses glob to generate long strings.", "severity" : [], "affected" : [], "references" : [{"type" : "ADVISORY", "url" : "https://nvd.nist.gov/vuln/detail/CVE-2001-0248"}, {"type" : "WEB", "url" : "https://exchange.xforce.ibmcloud.com/vulnerabilities/6332"}, {"type" : "WEB", "url" : "http://www.cert.org/advisories/CA-2001-07.html"}, {"type" : "WEB", "url" : "http://www.nai.com/research/covert/advisories/048.asp"}, {"type" : "WEB", "url" : "http://www.securityfocus.com/bid/2552"}], "database_specific" : {"cwe_ids" : [], "severity" : "HIGH", "github_reviewed" : false}} | json_instruct | {"type": "object", "properties": {"schema_version": {"type": "string"}, "id": {"type": "string"}, "modified": {"type": "string"}, "published": {"type": "string"}, "aliases": {"type": "array", "items": {"type": "string"}}, "details": {"type": "string"}, "severity": {"type": "array", "items": {}}, "affected": {"type": "array", "items": {}}, "references": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}}, "database_specific": {"type": "object", "properties": {"cwe_ids": {"type": "array", "items": {}}, "severity": {"type": "string"}, "github_reviewed": {"type": "boolean"}}, "required": ["cwe_ids", "severity", "github_reviewed"]}}, "required": ["schema_version", "id", "modified", "published", "aliases", "details", "severity", "affected", "references", "database_specific"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"to-markdown.js": {"type": "string"}, "to-markdown.min.js": {"type": "string"}}, "required": ["to-markdown.js", "to-markdown.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"to-markdown.js" : "sha256-k3Ad1Ry4NOx17P+A4AUR92hKzat4ShuNu/SqIka+Rbw=", "to-markdown.min.js" : "sha256-s79z5KNQ/z4HGnEiRHARU2snzbNxRkCM7Pv901iTnTY="} | json_instruct | {"type": "object", "properties": {"to-markdown.js": {"type": "string"}, "to-markdown.min.js": {"type": "string"}}, "required": ["to-markdown.js", "to-markdown.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"n_dim": {"type": "integer"}, "n_trials": {"type": "integer"}, "objective": {"type": "string"}, "white": {"type": "string"}, "black": {"type": "string"}, "traceback": {"type": "array", "items": {"type": "string"}}, "best_val": {"type": "array", "items": {"type": "number"}}, "best_x": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}, "feval_count": {"type": "array", "items": {"type": "integer"}}, "n_trials_instructed": {"type": "array", "items": {"type": "integer"}}, "passing": {"type": "array", "items": {"type": "boolean"}}, "completed": {"type": "boolean"}, "winner": {"type": "string"}, "points": {"type": "null"}}, "required": ["n_dim", "n_trials", "objective", "white", "black", "traceback", "best_val", "best_x", "feval_count", "n_trials_instructed", "passing", "completed", "winner", "points"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"n_dim" : 8, "n_trials" : 130, "objective" : "markowitz_return_on_cube", "white" : "pysot_srbf", "black" : "scipy_lbfgsb", "traceback" : ["passing", "passing"], "best_val" : [3493.281686194434, 3618.5871768360125], "best_x" : [[0.33672954885139333, 0.5650729096139999, 0.41099695076218246, 0.34287040350923786, 0.296638139978154, 0.39018035537736345, 0.5570003208669687, 0.99021946920537], [8.530435044174159e-09, 3.26808503220892e-08, 1.1644840116871396e-08, 6.053142943626649e-09, 7.509256512284746e-09, 1.0602562733023717e-08, 3.4001274020018203e-08, 4.140680509779377e-08]], "feval_count" : [130, 532], "n_trials_instructed" : [130, 39], "passing" : [true, true], "completed" : false, "winner" : "incomplete", "points" : null} | json_instruct | {"type": "object", "properties": {"n_dim": {"type": "integer"}, "n_trials": {"type": "integer"}, "objective": {"type": "string"}, "white": {"type": "string"}, "black": {"type": "string"}, "traceback": {"type": "array", "items": {"type": "string"}}, "best_val": {"type": "array", "items": {"type": "number"}}, "best_x": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}, "feval_count": {"type": "array", "items": {"type": "integer"}}, "n_trials_instructed": {"type": "array", "items": {"type": "integer"}}, "passing": {"type": "array", "items": {"type": "boolean"}}, "completed": {"type": "boolean"}, "winner": {"type": "string"}, "points": {"type": "null"}}, "required": ["n_dim", "n_trials", "objective", "white", "black", "traceback", "best_val", "best_x", "feval_count", "n_trials_instructed", "passing", "completed", "winner", "points"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "text": {"type": "string"}}, "required": ["id", "text"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"id" : "520326103001", "text" : "\u6daa\u6d0b\u793e\u533a\u5c45\u59d4\u4f1a"}, {"id" : "520326103002", "text" : "\u5f53\u9633\u793e\u533a\u5c45\u59d4\u4f1a"}, {"id" : "520326103201", "text" : "\u5c0f\u576a\u6751\u59d4\u4f1a"}, {"id" : "520326103202", "text" : "\u6c34\u575d\u6751\u59d4\u4f1a"}, {"id" : "520326103203", "text" : "\u6c38\u548c\u6751\u59d4\u4f1a"}, {"id" : "520326103205", "text" : "\u524d\u8fdb\u6751\u59d4\u4f1a"}, {"id" : "520326103206", "text" : "\u548c\u5e73\u6751\u59d4\u4f1a"}, {"id" : "520326103207", "text" : "\u53cc\u6cb3\u6751\u59d4\u4f1a"}, {"id" : "520326103208", "text" : "\u73cd\u73e0\u6751\u59d4\u4f1a"}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "text": {"type": "string"}}, "required": ["id", "text"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"parents": {"type": "array", "items": {"type": "string"}}, "pick_block": {"type": "string"}}, "required": ["parents", "pick_block"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"parents" : ["minecraft:template/mob_wall_head"], "pick_block" : "minecraft:skeleton_skull"} | json_instruct | {"type": "object", "properties": {"parents": {"type": "array", "items": {"type": "string"}}, "pick_block": {"type": "string"}}, "required": ["parents", "pick_block"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"title": {"type": "string"}, "fields": {"type": "array", "items": {"type": "string"}}, "abstract": {"type": "string"}, "citation": {"type": "string"}, "departments": {"type": "array", "items": {"type": "string"}}, "authors": {"type": "array", "items": {"type": "string"}}, "conf": {"type": "string"}, "year": {"type": "string"}, "pages": {"type": "integer"}}, "required": ["title", "fields", "abstract", "citation", "departments", "authors", "conf", "year", "pages"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"title" : "The Elastic Embedding Algorithm for Dimensionality Reduction.", "fields" : ["laplace operator", "dimensionality reduction", "spectral method", "homotopy", "embedding"], "abstract" : "We propose a new dimensionality reduction method, the elastic embedding (EE), that optimises an intuitive, nonlinear objective function of the low-dimensional coordinates of the data. The method reveals a fundamental relation betwen a spectral method, Laplacian eigenmaps, and a nonlinear method, stochastic neighbour embedding; and shows that EE can be seen as learning both the coordinates and the affinities between data points. We give a homotopy method to train EE, characterise the critical value of the homotopy parameter, and study the method's behaviour. For a fixed homotopy parameter, we give a globally convergent iterative algorithm that is very effective and requires no user parameters. Finally, we give an extension to out-of-sample points. In standard datasets, EE obtains results as good or better than those of SNE, but more efficiently and robustly.", "citation" : "Citations (94)", "departments" : ["University of California, Merced"], "authors" : ["Miguel \u00c1. Carreira-Perpi\u00f1\u00e1n.....http://dblp.org/pers/hd/c/Carreira=Perpi=ntilde==aacute=n:Miguel_=Aacute=="], "conf" : "icml", "year" : "2010", "pages" : 8} | json_instruct | {"type": "object", "properties": {"title": {"type": "string"}, "fields": {"type": "array", "items": {"type": "string"}}, "abstract": {"type": "string"}, "citation": {"type": "string"}, "departments": {"type": "array", "items": {"type": "string"}}, "authors": {"type": "array", "items": {"type": "string"}}, "conf": {"type": "string"}, "year": {"type": "string"}, "pages": {"type": "integer"}}, "required": ["title", "fields", "abstract", "citation", "departments", "authors", "conf", "year", "pages"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"word" : "fuscous", "definition" : "Brown or grayish black; darkish. Sad and fuscous colors, as black or brown, or deep purple and the like. Burke."} | json_instruct | {"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "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" : 404366449, "type" : "Feature", "properties" : {"src:alt_label" : "quattroshapes_pg", "src:geom" : "quattroshapes_pg", "wof:geomhash" : "369383dffcd4276e8f46afbc11178fc9", "wof:id" : 404366449, "wof:repo" : "whosonfirst-data-admin-fr"}, "bbox" : [1.835, 47.86556, 1.835, 47.86556], "geometry" : {"coordinates" : [1.835, 47.86556], "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": {"batch_size": {"type": "integer"}, "depth": {"type": "integer"}, "dropout": {"type": "number"}, "ffn_hidden_size": {"type": "integer"}, "ffn_num_layers": {"type": "integer"}, "final_lr": {"type": "number"}, "hidden_size": {"type": "integer"}, "init_lr": {"type": "number"}, "max_lr": {"type": "number"}, "warmup_epochs": {"type": "integer"}}, "required": ["batch_size", "depth", "dropout", "ffn_hidden_size", "ffn_num_layers", "final_lr", "hidden_size", "init_lr", "max_lr", "warmup_epochs"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"batch_size" : 10, "depth" : 3, "dropout" : 0.3964373696188861, "ffn_hidden_size" : 2400, "ffn_num_layers" : 2, "final_lr" : 3.9930129726176706e-05, "hidden_size" : 504, "init_lr" : 1.0164436655780818e-05, "max_lr" : 0.00028765636362565, "warmup_epochs" : 4} | json_instruct | {"type": "object", "properties": {"batch_size": {"type": "integer"}, "depth": {"type": "integer"}, "dropout": {"type": "number"}, "ffn_hidden_size": {"type": "integer"}, "ffn_num_layers": {"type": "integer"}, "final_lr": {"type": "number"}, "hidden_size": {"type": "integer"}, "init_lr": {"type": "number"}, "max_lr": {"type": "number"}, "warmup_epochs": {"type": "integer"}}, "required": ["batch_size", "depth", "dropout", "ffn_hidden_size", "ffn_num_layers", "final_lr", "hidden_size", "init_lr", "max_lr", "warmup_epochs"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"text": {"type": "string"}, "url": {"type": "string"}}, "required": ["text", "url"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"text" : " How to graph an absolute value inequality with a horizontal compression\n\n[imath]y \\leq|3 x|+1[/imath]\n\n\n", "url" : "https://www.youtube.com/watch?v=fw90EAbAcK0"} | json_instruct | {"type": "object", "properties": {"text": {"type": "string"}, "url": {"type": "string"}}, "required": ["text", "url"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"poem": {"type": "object", "properties": {"title": {"type": "null"}, "author": {"type": "string"}, "text": {"type": "string"}}, "required": ["title", "author", "text"]}}, "required": ["poem"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"poem" : {"title" : null, "author" : "Peter McCarey", "text" : "Glamour appraised by the gram - gold and heroin;\nDust for the long-distance bullet.\nThen the business of killing big game:\nHarpoon cannon for a gam of baleens\nAnd then what of those deeply stupid submarines?"}} | json_instruct | {"type": "object", "properties": {"poem": {"type": "object", "properties": {"title": {"type": "null"}, "author": {"type": "string"}, "text": {"type": "string"}}, "required": ["title", "author", "text"]}}, "required": ["poem"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"id": {"type": "integer"}, "title": {"type": "string"}, "points": {"type": "integer"}, "description": {"type": "string"}, "rewardItems": {"type": "array", "items": {}}, "icon": {"type": "string"}, "criteria": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "description": {"type": "string"}, "orderIndex": {"type": "integer"}, "max": {"type": "integer"}}, "required": ["id", "description", "orderIndex", "max"]}}, "accountWide": {"type": "boolean"}, "factionId": {"type": "integer"}}, "required": ["id", "title", "points", "description", "rewardItems", "icon", "criteria", "accountWide", "factionId"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : 1864, "title" : "What the Eck?", "points" : 10, "description" : "Defeat Gal'darah in Gundrak on Heroic Difficulty while under the effects of Eck Residue.", "rewardItems" : [], "icon" : "achievement_dungeon_gundrak_25man", "criteria" : [{"id" : 7136, "description" : "Kill Gal'darah while under the effects of Eck Residue.", "orderIndex" : 1, "max" : 1}], "accountWide" : false, "factionId" : 2} | json_instruct | {"type": "object", "properties": {"id": {"type": "integer"}, "title": {"type": "string"}, "points": {"type": "integer"}, "description": {"type": "string"}, "rewardItems": {"type": "array", "items": {}}, "icon": {"type": "string"}, "criteria": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "description": {"type": "string"}, "orderIndex": {"type": "integer"}, "max": {"type": "integer"}}, "required": ["id", "description", "orderIndex", "max"]}}, "accountWide": {"type": "boolean"}, "factionId": {"type": "integer"}}, "required": ["id", "title", "points", "description", "rewardItems", "icon", "criteria", "accountWide", "factionId"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"id": {"type": "string"}}, "required": ["id"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "f3ccdb599ec9f14b74e5efe053a3c09dbf89a892"} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}}, "required": ["id"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "types": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "build": {"type": "string"}}, "required": ["test", "build"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "dependencies": {"type": "object", "properties": {"prop-types": {"type": "string"}}, "required": ["prop-types"]}, "devDependencies": {"type": "object", "properties": {"@types/react": {"type": "string"}, "typescript": {"type": "string"}}, "required": ["@types/react", "typescript"]}}, "required": ["name", "version", "description", "main", "types", "scripts", "repository", "keywords", "author", "license", "bugs", "homepage", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "react-native-custom-swiper", "version" : "1.0.16", "description" : "Custom swiper for React Native component.", "main" : "index.js", "types" : "index.d.ts", "scripts" : {"test" : "echo \"Error: no test specified\" && exit 1", "build" : "tsc"}, "repository" : {"type" : "git", "url" : "git+https://github.com/logisticinfotech/react-native-custom-swiper.git"}, "keywords" : ["Swiper", "Custom", "Horizontal", "Flatlist", "Swipe", "View"], "author" : "Logistic Infotech Pvt. Ltd.", "license" : "MIT", "bugs" : {"url" : "https://github.com/logisticinfotech/react-native-custom-swiper/issues"}, "homepage" : "https://www.logisticinfotech.com/blog/custom-swiper-react-native-flatlist/", "dependencies" : {"prop-types" : "^15.7.2"}, "devDependencies" : {"@types/react" : "^16.8.13", "typescript" : "^3.4.3"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "types": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "build": {"type": "string"}}, "required": ["test", "build"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "dependencies": {"type": "object", "properties": {"prop-types": {"type": "string"}}, "required": ["prop-types"]}, "devDependencies": {"type": "object", "properties": {"@types/react": {"type": "string"}, "typescript": {"type": "string"}}, "required": ["@types/react", "typescript"]}}, "required": ["name", "version", "description", "main", "types", "scripts", "repository", "keywords", "author", "license", "bugs", "homepage", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"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" : "0x0d3c62d25a268b262f062a6f2c04265e711f8890", "tool" : "securify", "start" : 1563568692.1976376, "end" : 1563568695.33669, "duration" : 3.139052391052246, "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#"} |
Please provide a valid JSON object following this schema:
{"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" : 74121, "cartId" : "57cc136f-c3fb-4ce4-bec6-77a4e6d2e7ea", "preferredProducts" : [2375, 3635, 4543, 2477], "productReviews" : [{"productId" : 1147, "reviewText" : "My macaroni penguin loves to play with it.", "reviewDate" : "2016-05-30T16:57:25.3303365+03:00"}, {"productId" : 4051, "reviewText" : "My co-worker Aurthur has one of these. He says it looks white.", "reviewDate" : "2019-11-01T16:00:36.6777785+02:00"}, {"productId" : 4524, "reviewText" : "My peacock loves to play with it.", "reviewDate" : "2017-12-26T15:05:00.0915326+02:00"}, {"productId" : 415, "reviewText" : "My demon loves to play with it.", "reviewDate" : "2016-10-24T13:34:19.7627667+03:00"}]} | json_instruct | {"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {"type": "integer"}}, "productReviews": {"type": "array", "items": {"type": "object", "properties": {"productId": {"type": "integer"}, "reviewText": {"type": "string"}, "reviewDate": {"type": "string"}}, "required": ["productId", "reviewText", "reviewDate"]}}}, "required": ["userId", "cartId", "preferredProducts", "productReviews"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"private": {"type": "boolean"}, "sideEffects": {"type": "boolean"}, "main": {"type": "string"}, "module": {"type": "string"}, "types": {"type": "string"}}, "required": ["private", "sideEffects", "main", "module", "types"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"private" : true, "sideEffects" : false, "main" : "./NoNewline.js", "module" : "./NoNewline.esm.js", "types" : "./NoNewline.d.ts"} | json_instruct | {"type": "object", "properties": {"private": {"type": "boolean"}, "sideEffects": {"type": "boolean"}, "main": {"type": "string"}, "module": {"type": "string"}, "types": {"type": "string"}}, "required": ["private", "sideEffects", "main", "module", "types"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "file_url": {"type": "string"}, "custom_fields": {"type": "object", "properties": {"edition": {"type": "integer"}, "date": {"type": "integer"}, "compiler": {"type": "string"}}, "required": ["edition", "date", "compiler"]}, "attributes": {"type": "array", "items": {"type": "object", "properties": {"trait_type": {"type": "string"}, "value": {"type": "string"}}, "required": ["trait_type", "value"]}}}, "required": ["name", "description", "file_url", "custom_fields", "attributes"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "OneForArt #74 - Zest", "description" : "A Zest pixel.", "file_url" : "https://ipfs.io/ipfs/bafkreibc2vlxqfs535ouuud4l6gwtzhf2zceca5ixftijvoidergqlinqa", "custom_fields" : {"edition" : 1, "date" : 1642619894221, "compiler" : "HashLips Art Engine"}, "attributes" : [{"trait_type" : "name", "value" : "Zest"}, {"trait_type" : "color_id", "value" : "74"}, {"trait_type" : "hex", "value" : "#E5841B"}, {"trait_type" : "rgb", "value" : "(229, 132, 27)"}]} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "file_url": {"type": "string"}, "custom_fields": {"type": "object", "properties": {"edition": {"type": "integer"}, "date": {"type": "integer"}, "compiler": {"type": "string"}}, "required": ["edition", "date", "compiler"]}, "attributes": {"type": "array", "items": {"type": "object", "properties": {"trait_type": {"type": "string"}, "value": {"type": "string"}}, "required": ["trait_type", "value"]}}}, "required": ["name", "description", "file_url", "custom_fields", "attributes"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "array", "items": {"type": "object", "properties": {"__symbolic": {"type": "string"}, "version": {"type": "integer"}, "metadata": {"type": "object", "properties": {"TableRowContextExample": {"type": "object", "properties": {"__symbolic": {"type": "string"}, "decorators": {"type": "array", "items": {"type": "object", "properties": {"__symbolic": {"type": "string"}, "expression": {"type": "object", "properties": {"__symbolic": {"type": "string"}, "module": {"type": "string"}, "name": {"type": "string"}, "line": {"type": "integer"}, "character": {"type": "integer"}}, "required": ["__symbolic", "module", "name", "line", "character"]}, "arguments": {"type": "array", "items": {"type": "object", "properties": {"selector": {"type": "string"}, "styleUrls": {"type": "array", "items": {"type": "string"}}, "templateUrl": {"type": "string"}}, "required": ["selector", "styleUrls", "templateUrl"]}}}, "required": ["__symbolic", "expression", "arguments"]}}}, "required": ["__symbolic", "decorators"]}}, "required": ["TableRowContextExample"]}}, "required": ["__symbolic", "version", "metadata"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"__symbolic" : "module", "version" : 4, "metadata" : {"TableRowContextExample" : {"__symbolic" : "class", "decorators" : [{"__symbolic" : "call", "expression" : {"__symbolic" : "reference", "module" : "@angular/core", "name" : "Component", "line" : 5, "character" : 1}, "arguments" : [{"selector" : "table-row-context-example", "styleUrls" : ["table-row-context-example.css"], "templateUrl" : "table-row-context-example.html"}]}]}}}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"__symbolic": {"type": "string"}, "version": {"type": "integer"}, "metadata": {"type": "object", "properties": {"TableRowContextExample": {"type": "object", "properties": {"__symbolic": {"type": "string"}, "decorators": {"type": "array", "items": {"type": "object", "properties": {"__symbolic": {"type": "string"}, "expression": {"type": "object", "properties": {"__symbolic": {"type": "string"}, "module": {"type": "string"}, "name": {"type": "string"}, "line": {"type": "integer"}, "character": {"type": "integer"}}, "required": ["__symbolic", "module", "name", "line", "character"]}, "arguments": {"type": "array", "items": {"type": "object", "properties": {"selector": {"type": "string"}, "styleUrls": {"type": "array", "items": {"type": "string"}}, "templateUrl": {"type": "string"}}, "required": ["selector", "styleUrls", "templateUrl"]}}}, "required": ["__symbolic", "expression", "arguments"]}}}, "required": ["__symbolic", "decorators"]}}, "required": ["TableRowContextExample"]}}, "required": ["__symbolic", "version", "metadata"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {"type": "integer"}}, "productReviews": {"type": "array", "items": {"type": "object", "properties": {"productId": {"type": "integer"}, "reviewText": {"type": "string"}, "reviewDate": {"type": "string"}}, "required": ["productId", "reviewText", "reviewDate"]}}}, "required": ["userId", "cartId", "preferredProducts", "productReviews"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"userId" : 33389, "cartId" : "adae6679-0d15-49b3-a172-be3b32dccedb", "preferredProducts" : [977, 3588, 2258, 4838, 4249, 4868, 2218, 1516], "productReviews" : [{"productId" : 4845, "reviewText" : "I tried to cremate it but got Turkish Delight all over it.", "reviewDate" : "2016-08-21T19:15:14.7414575+03:00"}, {"productId" : 1465, "reviewText" : "My neighbor Lular has one of these. She works as a cake decorator and she says it looks ragged.", "reviewDate" : "2016-08-15T11:32:54.7423766+03:00"}, {"productId" : 2795, "reviewText" : "My co-worker Erick has one of these. He says it looks fluffy.", "reviewDate" : "2020-02-10T19:12:22.4276665+02:00"}, {"productId" : 1146, "reviewText" : "My co-worker Aurthur has one of these. He says it looks white.", "reviewDate" : "2019-09-19T17:57:24.8032992+03:00"}, {"productId" : 3625, "reviewText" : "The box this comes in is 3 kilometer by 5 inch and weights 13 ton.", "reviewDate" : "2018-10-29T09:21:21.8642119+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#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"title": {"type": "string"}, "owner": {"type": "string"}, "namespace": {"type": "string"}, "status": {"type": "string"}}, "required": ["title", "owner", "namespace", "status"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"title" : "Build: Estafet Block Chain Demo", "owner" : "admin", "namespace" : "blockchain-demo-build", "status" : "active"} | json_instruct | {"type": "object", "properties": {"title": {"type": "string"}, "owner": {"type": "string"}, "namespace": {"type": "string"}, "status": {"type": "string"}}, "required": ["title", "owner", "namespace", "status"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"mongoURI": {"type": "string"}, "jwtSecret": {"type": "string"}, "githubToken": {"type": "string"}}, "required": ["mongoURI", "jwtSecret", "githubToken"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"mongoURI" : "mongodb+srv://redmed86:vNAWerj7DyKNwGk4@prod-browserstack-developer-site-sqg9g.mongodb.net/test?retryWrites=true&w=majority", "jwtSecret" : "secret", "githubToken" : "53630d3ba97c09aa9fad10e69278b4ed886711d9"} | json_instruct | {"type": "object", "properties": {"mongoURI": {"type": "string"}, "jwtSecret": {"type": "string"}, "githubToken": {"type": "string"}}, "required": ["mongoURI", "jwtSecret", "githubToken"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"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" : [[[144.25, 23.5], [144.25, 23.583333333333332], [144.375, 23.583333333333332], [144.375, 23.5], [144.25, 23.5]]]}, "properties" : {"code" : 354422, "url" : "http://madefor.github.io/0410/api/v1/354422.geojson", "view" : "https://github.com/madefor/0410/blob/gh-pages/api/v1/354422.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#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"name": {"type": "string"}, "symbol": {"type": "string"}, "decimals": {"type": "integer"}, "address": {"type": "string"}, "chainId": {"type": "integer"}}, "required": ["name", "symbol", "decimals", "address", "chainId"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "Token Hw3L", "symbol" : "Hw3LC", "decimals" : 6, "address" : "Hw3LCt2U1u3kmxnZ5CZQkHSkar6YuFvrcW4d443QmWLV", "chainId" : 103} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "symbol": {"type": "string"}, "decimals": {"type": "integer"}, "address": {"type": "string"}, "chainId": {"type": "integer"}}, "required": ["name", "symbol", "decimals", "address", "chainId"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"id": {"type": "string"}, "expression": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}}, "required": ["id"]}}}, "required": ["id", "expression"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "http://data.doremus.org/performance/f5b9a83f-5d48-3fd4-80e2-9a9b20e1eeb5", "expression" : [{"id" : "http://data.doremus.org/expression/950144f5-a0a9-3323-9496-3cfb6d013d6f"}, {"id" : "http://data.doremus.org/expression/a7f825b9-10d7-307c-a627-8783217627d4"}, {"id" : "http://data.doremus.org/expression/901835c4-0836-30f5-9a86-21d8635a6ddd"}, {"id" : "http://data.doremus.org/expression/1ee0c8ef-d78d-3117-ac39-05af6321de3a"}, {"id" : "http://data.doremus.org/expression/ee7e27c5-a5be-3452-8f8e-da6b8fc02452"}, {"id" : "http://data.doremus.org/expression/b83fb678-e8a8-3e75-952a-24bee3089f11"}, {"id" : "http://data.doremus.org/expression/e6de8522-8c6c-3ae3-bd02-c46efdd5dd95"}, {"id" : "http://data.doremus.org/expression/a31faae9-eea6-325b-a0d9-bab11a15b4ac"}, {"id" : "http://data.doremus.org/expression/2ed471a7-94d9-3640-873a-93a3d3543361"}, {"id" : "http://data.doremus.org/expression/63e23d9b-2506-37af-bb89-eaf3749c04f5"}]} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "expression": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}}, "required": ["id"]}}}, "required": ["id", "expression"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "array", "items": {}}}, "required": ["contract", "tool", "start", "end", "duration", "analysis"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"contract" : "0x8fc420202f43ce952445961c15c5a5b1c80ce50a", "tool" : "solhint", "start" : 1563593624.9009285, "end" : 1563593628.5394506, "duration" : 3.638522148132324, "analysis" : []} | json_instruct | {"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "array", "items": {}}}, "required": ["contract", "tool", "start", "end", "duration", "analysis"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"timestamp": {"type": "string"}, "data": {"type": "array", "items": {"type": "object", "properties": {"data_type": {"type": "string"}, "value": {"type": "string"}, "max": {"type": "string"}, "min": {"type": "string"}, "sd": {"type": "string"}}, "required": ["data_type", "value", "max", "min", "sd"]}}}, "required": ["timestamp", "data"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"timestamp" : "2020-09-24T05:38:07Z", "data" : [{"data_type" : "pm10", "value" : "0.27", "max" : "3.00", "min" : "0.00", "sd" : "0.80"}, {"data_type" : "pm2.5", "value" : "0.13", "max" : "1.00", "min" : "0.00", "sd" : "0.35"}, {"data_type" : "pm1", "value" : "0.00", "max" : "0.00", "min" : "0.00", "sd" : "0.00"}, {"data_type" : "pm10", "value" : "0.00", "max" : "0.00", "min" : "0.00", "sd" : "0.00", "sensor" : 2}, {"data_type" : "pm2.5", "value" : "0.00", "max" : "0.00", "min" : "0.00", "sd" : "0.00", "sensor" : 2}, {"data_type" : "pm1", "value" : "0.00", "max" : "0.00", "min" : "0.00", "sd" : "0.00", "sensor" : 2}, {"data_type" : "noise", "value" : "31.19", "max" : "71.85", "min" : "27.76", "sd" : "1.65"}, {"data_type" : "illuminance", "value" : "51.00", "max" : "51.00", "min" : "51.00", "sd" : "0.00"}, {"data_type" : "irradiance", "value" : "0.00", "max" : "0.00", "min" : "0.00", "sd" : "0.00"}, {"data_type" : "temperature", "value" : "9.34", "max" : "9.41", "min" : "9.25", "sd" : "0.15"}, {"data_type" : "humidity", "value" : "64.95", "max" : "65.83", "min" : "63.98", "sd" : "0.50"}, {"data_type" : "presure", "value" : "692.93", "max" : "693.00", "min" : "692.79", "sd" : "0.16"}, {"data_type" : "voltage", "value" : "5.04", "max" : "5.05", "min" : "5.04", "sd" : "0.03"}, {"data_type" : "batery", "value" : "4.16", "max" : "4.16", "min" : "4.15", "sd" : "0.02"}, {"data_type" : "panel", "value" : "0.00", "max" : "0.00", "min" : "0.00", "sd" : "0.00"}]} | json_instruct | {"type": "object", "properties": {"timestamp": {"type": "string"}, "data": {"type": "array", "items": {"type": "object", "properties": {"data_type": {"type": "string"}, "value": {"type": "string"}, "max": {"type": "string"}, "min": {"type": "string"}, "sd": {"type": "string"}}, "required": ["data_type", "value", "max", "min", "sd"]}}}, "required": ["timestamp", "data"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "array", "items": {"type": "object", "properties": {"color": {"type": "string"}, "height": {"type": "number"}, "mass": {"type": "number"}, "mu": {"type": "number"}, "orientation": {"type": "array", "items": {"type": "number"}}, "position": {"type": "array", "items": {"type": "number"}}, "radius": {"type": "number"}, "shape": {"type": "string"}}, "required": ["color", "height", "mass", "mu", "orientation", "position", "radius", "shape"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"color" : "yellow", "height" : 0.15292427734496872, "mass" : 3.275968662792341, "mu" : 1.185949566980594, "orientation" : [0.0, 0.0, 0.0, 1.0], "position" : [0.2330443812809004, 0.2780053750279763, 0.07646213867248436], "radius" : 0.045441541352145454, "shape" : "cylinder"}, {"color" : "red", "height" : 0.14737624880844774, "mass" : 1.0136954872401924, "mu" : 1.161926987015869, "orientation" : [0.0, 0.0, 0.0, 1.0], "position" : [0.2245294012786724, -0.07996575471636458, 0.07368812440422387], "radius" : 0.038975285034994166, "shape" : "box"}, {"color" : "red", "height" : 0.12429327651262, "mass" : 4.952991848957231, "mu" : 0.8017180570178399, "orientation" : [0.0, 0.0, 0.0, 1.0], "position" : [-0.03523282496429812, -0.07779545502456131, 0.06214663825631], "radius" : 0.06214663825631, "shape" : "sphere"}, {"color" : "green", "height" : 0.1348891879261695, "mass" : 2.8155892559827036, "mu" : 0.8203087996822636, "orientation" : [0.0, 0.0, 0.0, 1.0], "position" : [-0.03467261118198346, 0.18702297093997225, 0.06744459396308475], "radius" : 0.03554833676522947, "shape" : "cylinder"}, {"color" : "blue", "height" : 0.17455376593434266, "mass" : 4.85996730209912, "mu" : 0.8766452876634641, "orientation" : [0.0, 0.0, 0.0, 1.0], "position" : [-0.04245615716876347, 0.4993745946633842, 0.08727688296717133], "radius" : 0.028302311842011076, "shape" : "box"}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"color": {"type": "string"}, "height": {"type": "number"}, "mass": {"type": "number"}, "mu": {"type": "number"}, "orientation": {"type": "array", "items": {"type": "number"}}, "position": {"type": "array", "items": {"type": "number"}}, "radius": {"type": "number"}, "shape": {"type": "string"}}, "required": ["color", "height", "mass", "mu", "orientation", "position", "radius", "shape"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"assume-role-credentials:readIamRoleName": {"type": "string"}, "assume-role-credentials:writeIamRoleName": {"type": "string"}}, "required": ["assume-role-credentials:readIamRoleName", "assume-role-credentials:writeIamRoleName"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"assume-role-credentials:readIamRoleName" : "CdkDeploymentRole", "assume-role-credentials:writeIamRoleName" : "CdkDeploymentRole"} | json_instruct | {"type": "object", "properties": {"assume-role-credentials:readIamRoleName": {"type": "string"}, "assume-role-credentials:writeIamRoleName": {"type": "string"}}, "required": ["assume-role-credentials:readIamRoleName", "assume-role-credentials:writeIamRoleName"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"avatar_url": {"type": "string"}, "html_url": {"type": "string"}, "id": {"type": "string"}, "name": {"type": "string"}}, "required": ["avatar_url", "html_url", "id", "name"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"avatar_url" : "https://twimg0-a.akamaihd.net/profile_images/1707451084/portrait-paulbausch-crop2.png", "html_url" : "http://onfocus.com", "id" : "paul-bausch", "name" : "Paul Bausch"} | json_instruct | {"type": "object", "properties": {"avatar_url": {"type": "string"}, "html_url": {"type": "string"}, "id": {"type": "string"}, "name": {"type": "string"}}, "required": ["avatar_url", "html_url", "id", "name"], "$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"}, "cites": {"type": "integer"}, "cited_by": {"type": "integer"}, "reference": {"type": "array", "items": {"type": "string"}}}, "required": ["id", "cites", "cited_by", "reference"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : 5111, "cites" : 9, "cited_by" : 2, "reference" : ["Robinson, Kenneth J., and Eric F.J. Ochel, 1993. Banks and Mutual Funds: Implications for Banking and Monetary,, Policy, Financial Industry Studies, Federal Reserve Bank of Dallas (December), pp. I - 11.", "Prakash, Snigdha, 1994b. B of As Bailout of Fund Raises No Red Flags at the Fed, American Banker, 159 (July 1), pp. 12- 13.", "Hull, John C., 1993. Options. Futures, alla Other Derivative Securities (Second Ed.), Englewood Cliffs: Prentice Hall.", "Mack, Phillip R., 1993. Recent Trends in the Mutual Fund Industry, Federal Reserve Bulletin, 79 (Nov.), pp. 1 ()() 1 - 12.", "Plasencia, William, 1994. Charter One Offering a Stock-lndexed CD, American Banker, 159 (Aug. 23), p. 13.", "Prakash, Snigdha, 1994a. Impact of Mutual Funds on Banks Bottom Line Has Been Slight So Far, American Banker, 159 (May 2), p. 9.", "Federal Deposit lnsurance Corporation, Oftice of Inspector General, 1994. Audit of FDICs Implementation of the Prompt Corrective Action Provisions of FDICIA, Washington, D.C. (Spetember 93).", "Fein, Melanie L., 1993. Government Policy on Bank Nlr~tual Fund Activities: An Overview, Banking Policv Report, 12 (Nov. 1-1:~) Washington: The Secura Group, p. 1, 96-98.", "DuBay, Keith, 1993. IBAA Worries that Bank Rush into Funds Will Backfire, American Banker, 158 (September 93), pp. 1) and 17."]} | json_instruct | {"type": "object", "properties": {"id": {"type": "integer"}, "cites": {"type": "integer"}, "cited_by": {"type": "integer"}, "reference": {"type": "array", "items": {"type": "string"}}}, "required": ["id", "cites", "cited_by", "reference"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"id": {"type": "string"}, "title": {"type": "string"}, "url": {"type": "string"}, "reasons": {"type": "array", "items": {"type": "string"}}, "status": {"type": "string"}, "risk_level": {"type": "string"}, "start_date": {"type": "string"}, "end_date": {"type": "string"}, "summary": {"type": "string"}, "establishment": {"type": "object", "properties": {"id": {"type": "string"}, "url": {"type": "string"}, "slug": {"type": "string"}, "name": {"type": "string"}, "address": {"type": "string"}, "telephone": {"type": "string"}, "grant_date": {"type": "string"}, "activities": {"type": "array", "items": {"type": "string"}}}, "required": ["id", "url", "slug", "name", "address", "telephone", "grant_date", "activities"]}, "impacted_products": {"type": "array", "items": {}}, "quantity_recovered": {"type": "integer"}, "quantity_unit": {"type": "string"}, "states": {"type": "array", "items": {"type": "string"}}}, "required": ["id", "title", "url", "reasons", "status", "risk_level", "start_date", "end_date", "summary", "establishment", "impacted_products", "quantity_recovered", "quantity_unit", "states"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "016-2018", "title" : "J Bar B Foods Recalls Chicken Sausage Products due to Misbranding and an Undeclared Allergen", "url" : "https://www.fsis.usda.gov/recalls-alerts/j-bar-b-foods-recalls-chicken-sausage-products-due-misbranding-and-undeclared", "reasons" : ["Unreported Allergens"], "status" : "Closed", "risk_level" : "High", "start_date" : "2018-03-01", "end_date" : "2018-05-30", "summary" : "WASHINGTON, March 1, 2018 J Bar B Foods, a Waelder, Texas establishment, is recalling approximately 4,050 pounds of chicken sausage products due to misbranding and an undeclared allergen, the U.S. Department of Agricultures Food Safety and Inspection Service (FSIS) announced today. The product contains milk...", "establishment" : {"id" : "M7066+P7066+V7066", "url" : "http://www.fsis.usda.gov/inspection/fsis-inspected-establishments/j-bar-b-foods", "slug" : "j-bar-b-foods", "name" : "J Bar B Foods", "address" : "100 Main Street \n Waelder, TX 78959", "telephone" : "(830) 788-7511", "grant_date" : "2013-08-06", "activities" : ["Certification - Export", "Meat Processing"]}, "impacted_products" : [], "quantity_recovered" : 2703, "quantity_unit" : "pounds", "states" : ["Arizona", "California", "Colorado", "Utah", "Virginia"]} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "title": {"type": "string"}, "url": {"type": "string"}, "reasons": {"type": "array", "items": {"type": "string"}}, "status": {"type": "string"}, "risk_level": {"type": "string"}, "start_date": {"type": "string"}, "end_date": {"type": "string"}, "summary": {"type": "string"}, "establishment": {"type": "object", "properties": {"id": {"type": "string"}, "url": {"type": "string"}, "slug": {"type": "string"}, "name": {"type": "string"}, "address": {"type": "string"}, "telephone": {"type": "string"}, "grant_date": {"type": "string"}, "activities": {"type": "array", "items": {"type": "string"}}}, "required": ["id", "url", "slug", "name", "address", "telephone", "grant_date", "activities"]}, "impacted_products": {"type": "array", "items": {}}, "quantity_recovered": {"type": "integer"}, "quantity_unit": {"type": "string"}, "states": {"type": "array", "items": {"type": "string"}}}, "required": ["id", "title", "url", "reasons", "status", "risk_level", "start_date", "end_date", "summary", "establishment", "impacted_products", "quantity_recovered", "quantity_unit", "states"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"this.is.a.dummy.sound.to.trigger.other.code.this.file.should.not.be.used": {"type": "object", "properties": {"sounds": {"type": "array", "items": {"type": "string"}}}, "required": ["sounds"]}}, "required": ["this.is.a.dummy.sound.to.trigger.other.code.this.file.should.not.be.used"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"this.is.a.dummy.sound.to.trigger.other.code.this.file.should.not.be.used" : {"sounds" : ["the_aether:misc/silence"]}} | json_instruct | {"type": "object", "properties": {"this.is.a.dummy.sound.to.trigger.other.code.this.file.should.not.be.used": {"type": "object", "properties": {"sounds": {"type": "array", "items": {"type": "string"}}}, "required": ["sounds"]}}, "required": ["this.is.a.dummy.sound.to.trigger.other.code.this.file.should.not.be.used"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"21": {"type": "object", "properties": {"ftp": {"type": "object", "properties": {"banner": {"type": "object", "properties": {"banner": {"type": "string"}}, "required": ["banner"]}}, "required": ["banner"]}}, "required": ["ftp"]}}, "required": ["21"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"21" : {"ftp" : {"banner" : {"banner" : "220 Fullrate FTP version 1.0 ready at Mon Jun 22 02:35:36 2015\r\n"}}}} | json_instruct | {"type": "object", "properties": {"21": {"type": "object", "properties": {"ftp": {"type": "object", "properties": {"banner": {"type": "object", "properties": {"banner": {"type": "string"}}, "required": ["banner"]}}, "required": ["banner"]}}, "required": ["ftp"]}}, "required": ["21"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"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": {"hectares": {"type": "string"}, "planning-permission-history": {"type": "string"}, "notes": {"type": "string"}, "name": {"type": "string"}, "point": {"type": "string"}, "ownership-status": {"type": "string"}, "organisation": {"type": "string"}, "site-address": {"type": "string"}, "deliverable": {"type": "string"}, "minimum-net-dwellings": {"type": "string"}, "site-plan-url": {"type": "string"}, "planning-permission-type": {"type": "string"}, "site": {"type": "string"}, "start-date": {"type": "string"}, "planning-permission-status": {"type": "string"}, "maximum-net-dwellings": {"type": "string"}, "planning-permission-date": {"type": "string"}, "slug": {"type": "string"}, "entity": {"type": "integer"}, "entry-date": {"type": "string"}, "end-date": {"type": "string"}}, "required": ["hectares", "planning-permission-history", "notes", "name", "point", "ownership-status", "organisation", "site-address", "deliverable", "minimum-net-dwellings", "site-plan-url", "planning-permission-type", "site", "start-date", "planning-permission-status", "maximum-net-dwellings", "planning-permission-date", "slug", "entity", "entry-date", "end-date"]}}, "required": ["type", "geometry", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"type" : "Feature", "geometry" : {"type" : "Point", "coordinates" : [-0.082003, 51.334593]}, "properties" : {"hectares" : "0.15", "planning-permission-history" : "https://publicaccess3.croydon.gov.uk/online-applications/applicationDetails.do?keyVal=PHQ5SZJLH0200&activeTab=summary", "notes" : "Demolition of the existing garage and alterations to the existing vehicular access with erection of a two storey building to provide 6 units at the rear including a provision of associated landscaping, parking, cycle and refuse storage. https://publicaccess3.croydon.gov.uk/online-applications/applicationDetails.do?keyVal=PHQ5SZJLH0200&activeTab=summary", "name" : "18/05383/FUL", "point" : "POINT(-0.082003 51.334593)", "ownership-status" : "not owned by a public authority", "organisation" : "local-authority-eng:CRY", "site-address" : "59, Rectory Park", "deliverable" : "yes", "minimum-net-dwellings" : "6", "site-plan-url" : "https://publicaccess3.croydon.gov.uk/online-applications/applicationDetails.do?keyVal=PHQ5SZJLH0200&activeTab=summary", "planning-permission-type" : "full planning permission", "site" : "18/05383/FUL", "start-date" : "2019-12-23", "planning-permission-status" : "permissioned", "maximum-net-dwellings" : "6", "planning-permission-date" : "2019-05-31", "slug" : "/brownfield-land/local-authority-eng/CRY/18-05383-FUL", "entity" : 480907, "entry-date" : "2019-12-23", "end-date" : "2020-12-23"}} | 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": {"hectares": {"type": "string"}, "planning-permission-history": {"type": "string"}, "notes": {"type": "string"}, "name": {"type": "string"}, "point": {"type": "string"}, "ownership-status": {"type": "string"}, "organisation": {"type": "string"}, "site-address": {"type": "string"}, "deliverable": {"type": "string"}, "minimum-net-dwellings": {"type": "string"}, "site-plan-url": {"type": "string"}, "planning-permission-type": {"type": "string"}, "site": {"type": "string"}, "start-date": {"type": "string"}, "planning-permission-status": {"type": "string"}, "maximum-net-dwellings": {"type": "string"}, "planning-permission-date": {"type": "string"}, "slug": {"type": "string"}, "entity": {"type": "integer"}, "entry-date": {"type": "string"}, "end-date": {"type": "string"}}, "required": ["hectares", "planning-permission-history", "notes", "name", "point", "ownership-status", "organisation", "site-address", "deliverable", "minimum-net-dwellings", "site-plan-url", "planning-permission-type", "site", "start-date", "planning-permission-status", "maximum-net-dwellings", "planning-permission-date", "slug", "entity", "entry-date", "end-date"]}}, "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": {"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 TANJUNGPINANG", "originalFilename" : "maria cn.JPG", "namaPartai" : "PARTAI DEMOKRAT", "id" : 148334, "noUrut" : 1, "nama" : "MARIA CONG NENGSI", "stringJenisKelamin" : "Perempuan"}, {"namaKab" : "KOTA TANJUNGPINANG", "originalFilename" : "dicky n.jpg", "namaPartai" : "PARTAI DEMOKRAT", "id" : 149961, "noUrut" : 2, "nama" : "DICKY NOVALINO", "stringJenisKelamin" : "Laki-Laki"}, {"namaKab" : "KOTA TANJUNGPINANG", "originalFilename" : "ashari 2.jpg", "namaPartai" : "PARTAI DEMOKRAT", "id" : 151437, "noUrut" : 3, "nama" : "ASHARI", "stringJenisKelamin" : "Laki-Laki"}, {"namaKab" : "KOTA TANJUNGPINANG", "originalFilename" : "kartini.jpg", "namaPartai" : "PARTAI DEMOKRAT", "id" : 151996, "noUrut" : 4, "nama" : "KARTINI AMBROSIA MAYA ALIM", "stringJenisKelamin" : "Perempuan"}, {"namaKab" : "KOTA TANJUNGPINANG", "originalFilename" : "foto.jpg", "namaPartai" : "PARTAI DEMOKRAT", "id" : 152394, "noUrut" : 5, "nama" : "ANDRY", "stringJenisKelamin" : "Laki-Laki"}, {"namaKab" : "BINTAN", "originalFilename" : "hanasrullah lobo.jpg", "namaPartai" : "PARTAI DEMOKRAT", "id" : 152983, "noUrut" : 6, "nama" : "HANASRULLAH", "stringJenisKelamin" : "Laki-Laki"}, {"namaKab" : "KOTA TANJUNGPINANG", "originalFilename" : "yanoc.jpg", "namaPartai" : "PARTAI DEMOKRAT", "id" : 153396, "noUrut" : 7, "nama" : "Ir. DIANOC RICA", "stringJenisKelamin" : "Laki-Laki"}, {"namaKab" : "KOTA TANJUNGPINANG", "originalFilename" : "toha.jpg", "namaPartai" : "PARTAI DEMOKRAT", "id" : 153712, "noUrut" : 8, "nama" : "TOHAR FAHLEVY", "stringJenisKelamin" : "Laki-Laki"}, {"namaKab" : "KOTA TANJUNGPINANG", "originalFilename" : "diahhh.jpg", "namaPartai" : "PARTAI DEMOKRAT", "id" : 154269, "noUrut" : 9, "nama" : "DIAH SEPTIYANI", "stringJenisKelamin" : "Perempuan"}, {"namaKab" : "KOTA TANJUNGPINANG", "originalFilename" : "enal 2.jpg", "namaPartai" : "PARTAI DEMOKRAT", "id" : 154422, "noUrut" : 10, "nama" : "ZAINAL", "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": {"env": {"type": "object", "properties": {"MONGO_ATLAS_PW": {"type": "string"}, "JWT": {"type": "string"}}, "required": ["MONGO_ATLAS_PW", "JWT"]}}, "required": ["env"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"env" : {"MONGO_ATLAS_PW" : "amdi", "JWT" : "amdy"}} | json_instruct | {"type": "object", "properties": {"env": {"type": "object", "properties": {"MONGO_ATLAS_PW": {"type": "string"}, "JWT": {"type": "string"}}, "required": ["MONGO_ATLAS_PW", "JWT"]}}, "required": ["env"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"lastUpdated": {"type": "integer"}, "username": {"type": "string"}, "scores": {"type": "array", "items": {"type": "object", "properties": {"xp": {"type": "integer"}, "rank": {"type": "integer"}, "cardId": {"type": "integer"}}, "required": ["xp", "rank", "cardId"]}}}, "required": ["lastUpdated", "username", "scores"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"lastUpdated" : 1655019279666, "username" : "zSytrii", "scores" : [{"xp" : 3334, "rank" : 366, "cardId" : 542}, {"xp" : 5828, "rank" : 291, "cardId" : 292}]} | json_instruct | {"type": "object", "properties": {"lastUpdated": {"type": "integer"}, "username": {"type": "string"}, "scores": {"type": "array", "items": {"type": "object", "properties": {"xp": {"type": "integer"}, "rank": {"type": "integer"}, "cardId": {"type": "integer"}}, "required": ["xp", "rank", "cardId"]}}}, "required": ["lastUpdated", "username", "scores"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "publishConfig": {"type": "object", "properties": {"access": {"type": "string"}}, "required": ["access"]}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "test:unit": {"type": "string"}, "test:watch": {"type": "string"}}, "required": ["test", "test:unit", "test:watch"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "licenses": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "homepage": {"type": "string"}, "maintainers": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}}, "dependencies": {"type": "object", "properties": {"glob-all": {"type": "string"}, "js-yaml": {"type": "string"}, "loader-utils": {"type": "string"}, "lodash": {"type": "string"}, "remove-bom-buffer": {"type": "string"}}, "required": ["glob-all", "js-yaml", "loader-utils", "lodash", "remove-bom-buffer"]}, "devDependencies": {"type": "object", "properties": {"chai": {"type": "string"}, "mocha": {"type": "string"}, "yarn": {"type": "string"}}, "required": ["chai", "mocha", "yarn"]}}, "required": ["name", "version", "description", "publishConfig", "main", "scripts", "keywords", "licenses", "repository", "homepage", "maintainers", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "@turtle328/i18next-loader", "version" : "1.0.1", "description" : "Webpack loader for client embedded i18next locales from json or yaml.", "publishConfig" : {"access" : "public"}, "main" : "index.js", "scripts" : {"test" : "yarn test:unit", "test:unit" : "mocha", "test:watch" : "mocha -w"}, "keywords" : ["webpack", "loader", "i18next", "locales", "yaml", "json"], "licenses" : [{"type" : "MIT", "url" : "http://www.opensource.org/licenses/mit-license.php"}], "repository" : {"type" : "git", "url" : "https://github.com/turtle328/i18next-loader"}, "homepage" : "https://github.com/turtle328/i18next-loader", "maintainers" : [{"name" : "Alex Rosenbach", "email" : "[email protected]"}], "dependencies" : {"glob-all" : "^3.1.0", "js-yaml" : "^3.13.1", "loader-utils" : "^1.2.3", "lodash" : "^4.17.15", "remove-bom-buffer" : "^3.0.0"}, "devDependencies" : {"chai" : "^4.2.0", "mocha" : "^9.1.4", "yarn" : "^1.22.17"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "publishConfig": {"type": "object", "properties": {"access": {"type": "string"}}, "required": ["access"]}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "test:unit": {"type": "string"}, "test:watch": {"type": "string"}}, "required": ["test", "test:unit", "test:watch"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "licenses": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "homepage": {"type": "string"}, "maintainers": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}}, "dependencies": {"type": "object", "properties": {"glob-all": {"type": "string"}, "js-yaml": {"type": "string"}, "loader-utils": {"type": "string"}, "lodash": {"type": "string"}, "remove-bom-buffer": {"type": "string"}}, "required": ["glob-all", "js-yaml", "loader-utils", "lodash", "remove-bom-buffer"]}, "devDependencies": {"type": "object", "properties": {"chai": {"type": "string"}, "mocha": {"type": "string"}, "yarn": {"type": "string"}}, "required": ["chai", "mocha", "yarn"]}}, "required": ["name", "version", "description", "publishConfig", "main", "scripts", "keywords", "licenses", "repository", "homepage", "maintainers", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"player_id": {"type": "integer"}, "name": {"type": "string"}, "position": {"type": "string"}, "height": {"type": "string"}, "weight": {"type": "string"}, "current_team": {"type": "null"}, "birth_date": {"type": "string"}, "birth_place": {"type": "string"}, "death_date": {"type": "null"}, "college": {"type": "string"}, "high_school": {"type": "string"}, "draft_team": {"type": "null"}, "draft_round": {"type": "null"}, "draft_position": {"type": "null"}, "draft_year": {"type": "null"}, "current_salary": {"type": "null"}, "hof_induction_year": {"type": "null"}}, "required": ["player_id", "name", "position", "height", "weight", "current_team", "birth_date", "birth_place", "death_date", "college", "high_school", "draft_team", "draft_round", "draft_position", "draft_year", "current_salary", "hof_induction_year"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"player_id" : 1674, "name" : "Beau Benzschawel", "position" : "G", "height" : "6-6", "weight" : "300", "current_team" : null, "birth_date" : "1995-09-10", "birth_place" : "Grafton, WI", "death_date" : null, "college" : "Wisconsin", "high_school" : "Grafton, WI", "draft_team" : null, "draft_round" : null, "draft_position" : null, "draft_year" : null, "current_salary" : null, "hof_induction_year" : null} | json_instruct | {"type": "object", "properties": {"player_id": {"type": "integer"}, "name": {"type": "string"}, "position": {"type": "string"}, "height": {"type": "string"}, "weight": {"type": "string"}, "current_team": {"type": "null"}, "birth_date": {"type": "string"}, "birth_place": {"type": "string"}, "death_date": {"type": "null"}, "college": {"type": "string"}, "high_school": {"type": "string"}, "draft_team": {"type": "null"}, "draft_round": {"type": "null"}, "draft_position": {"type": "null"}, "draft_year": {"type": "null"}, "current_salary": {"type": "null"}, "hof_induction_year": {"type": "null"}}, "required": ["player_id", "name", "position", "height", "weight", "current_team", "birth_date", "birth_place", "death_date", "college", "high_school", "draft_team", "draft_round", "draft_position", "draft_year", "current_salary", "hof_induction_year"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "array", "items": {}}}, "required": ["contract", "tool", "start", "end", "duration", "analysis"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"contract" : "0x67f337baab2691709b9e949f49f250e9ff3166ad", "tool" : "osiris", "start" : 1564595659.6736314, "end" : 1564595662.5322208, "duration" : 2.8585894107818604, "analysis" : []} | json_instruct | {"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "array", "items": {}}}, "required": ["contract", "tool", "start", "end", "duration", "analysis"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"t": {"type": "string"}, "h": {"type": "array", "items": {"type": "object", "properties": {"d": {"type": "array", "items": {"type": "object", "properties": {"f": {"type": "string"}, "e": {"type": "array", "items": {"type": "string"}}}, "required": ["f", "e"]}}}, "required": ["d"]}}, "stem": {"type": "string"}}, "required": ["t", "h", "stem"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"t" : "pararaen", "h" : [{"d" : [{"f" : "\u8b93\u2026\u5148\u884c\u3001\u5148\u8d70\u3002", "e" : ["\ufff9`Parara~`e~`n~ `ca~`nira~ !\ufffa\ufffb\u8b93\u4ed6\u5011\u5148\u8d70\u5427\uff01"]}]}], "stem" : "rara"} | json_instruct | {"type": "object", "properties": {"t": {"type": "string"}, "h": {"type": "array", "items": {"type": "object", "properties": {"d": {"type": "array", "items": {"type": "object", "properties": {"f": {"type": "string"}, "e": {"type": "array", "items": {"type": "string"}}}, "required": ["f", "e"]}}}, "required": ["d"]}}, "stem": {"type": "string"}}, "required": ["t", "h", "stem"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"rules": {"type": "object", "properties": {"user_profiles": {"type": "object", "properties": {".read": {"type": "string"}}, "required": [".read"]}, "user_data": {"type": "object", "properties": {"$userId": {"type": "object", "properties": {".validate": {"type": "string"}, "created_at": {"type": "object", "properties": {".validate": {"type": "string"}, ".write": {"type": "string"}}, "required": [".validate", ".write"]}, "updated_at": {"type": "object", "properties": {".validate": {"type": "string"}, ".write": {"type": "string"}}, "required": [".validate", ".write"]}, "last_signed_in_at": {"type": "object", "properties": {".validate": {"type": "string"}, ".write": {"type": "string"}}, "required": [".validate", ".write"]}, "$other": {"type": "object", "properties": {".validate": {"type": "string"}}, "required": [".validate"]}, ".read": {"type": "string"}}, "required": [".validate", "created_at", "updated_at", "last_signed_in_at", "$other", ".read"]}}, "required": ["$userId"]}}, "required": ["user_profiles", "user_data"]}}, "required": ["rules"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"rules" : {"user_profiles" : {".read" : "true"}, "user_data" : {"$userId" : {".validate" : "newData.hasChildren(['created_at', 'updated_at'])", "created_at" : {".validate" : "newData.isNumber()", ".write" : "auth != null && auth.uid == $userId && newData.val() == now && data.val() == null"}, "updated_at" : {".validate" : "newData.isNumber()", ".write" : "auth != null && auth.uid == $userId && newData.val() == now"}, "last_signed_in_at" : {".validate" : "newData.isNumber() || newData.val() == null", ".write" : "auth != null && auth.uid == $userId && newData.val() == now"}, "$other" : {".validate" : "false"}, ".read" : "auth != null && auth.uid == $userId"}}}} | json_instruct | {"type": "object", "properties": {"rules": {"type": "object", "properties": {"user_profiles": {"type": "object", "properties": {".read": {"type": "string"}}, "required": [".read"]}, "user_data": {"type": "object", "properties": {"$userId": {"type": "object", "properties": {".validate": {"type": "string"}, "created_at": {"type": "object", "properties": {".validate": {"type": "string"}, ".write": {"type": "string"}}, "required": [".validate", ".write"]}, "updated_at": {"type": "object", "properties": {".validate": {"type": "string"}, ".write": {"type": "string"}}, "required": [".validate", ".write"]}, "last_signed_in_at": {"type": "object", "properties": {".validate": {"type": "string"}, ".write": {"type": "string"}}, "required": [".validate", ".write"]}, "$other": {"type": "object", "properties": {".validate": {"type": "string"}}, "required": [".validate"]}, ".read": {"type": "string"}}, "required": [".validate", "created_at", "updated_at", "last_signed_in_at", "$other", ".read"]}}, "required": ["$userId"]}}, "required": ["user_profiles", "user_data"]}}, "required": ["rules"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"id": {"type": "string"}}, "required": ["id"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "3d1d2f210d84795592eaa26daaebb87688f820de"} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}}, "required": ["id"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "publishConfig": {"type": "object", "properties": {"access": {"type": "string"}}, "required": ["access"]}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}, "postinstall": {"type": "string"}}, "required": ["start", "postinstall"]}, "bin": {"type": "object", "properties": {"i18next-inspector": {"type": "string"}}, "required": ["i18next-inspector"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"chalk": {"type": "string"}, "clear": {"type": "string"}, "clui": {"type": "string"}, "configstore": {"type": "string"}, "convert-array-to-csv": {"type": "string"}, "deepmerge": {"type": "string"}, "esm": {"type": "string"}, "figlet": {"type": "string"}, "find-in-files": {"type": "string"}, "flat": {"type": "string"}, "inquirer": {"type": "string"}, "minimist": {"type": "string"}, "request": {"type": "string"}, "request-promise": {"type": "string"}}, "required": ["chalk", "clear", "clui", "configstore", "convert-array-to-csv", "deepmerge", "esm", "figlet", "find-in-files", "flat", "inquirer", "minimist", "request", "request-promise"]}}, "required": ["name", "version", "description", "publishConfig", "scripts", "bin", "keywords", "author", "license", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "@david-bulte/i18next-inspector", "version" : "1.0.7", "description" : "cli tool to inspect your files for translation keys and sync them with locize", "publishConfig" : {"access" : "public"}, "scripts" : {"start" : "node index", "postinstall" : "node ./lib/setup/copy-files.js"}, "bin" : {"i18next-inspector" : "./index.js"}, "keywords" : ["i18next-inspector"], "author" : "david bulte", "license" : "MIT", "dependencies" : {"chalk" : "^3.0.0", "clear" : "^0.1.0", "clui" : "^0.3.6", "configstore" : "^5.0.1", "convert-array-to-csv" : "^1.0.11", "deepmerge" : "^4.2.2", "esm" : "^3.2.25", "figlet" : "^1.3.0", "find-in-files" : "^0.5.0", "flat" : "^5.0.0", "inquirer" : "^7.1.0", "minimist" : "^1.2.5", "request" : "^2.88.2", "request-promise" : "^4.2.5"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "publishConfig": {"type": "object", "properties": {"access": {"type": "string"}}, "required": ["access"]}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}, "postinstall": {"type": "string"}}, "required": ["start", "postinstall"]}, "bin": {"type": "object", "properties": {"i18next-inspector": {"type": "string"}}, "required": ["i18next-inspector"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"chalk": {"type": "string"}, "clear": {"type": "string"}, "clui": {"type": "string"}, "configstore": {"type": "string"}, "convert-array-to-csv": {"type": "string"}, "deepmerge": {"type": "string"}, "esm": {"type": "string"}, "figlet": {"type": "string"}, "find-in-files": {"type": "string"}, "flat": {"type": "string"}, "inquirer": {"type": "string"}, "minimist": {"type": "string"}, "request": {"type": "string"}, "request-promise": {"type": "string"}}, "required": ["chalk", "clear", "clui", "configstore", "convert-array-to-csv", "deepmerge", "esm", "figlet", "find-in-files", "flat", "inquirer", "minimist", "request", "request-promise"]}}, "required": ["name", "version", "description", "publishConfig", "scripts", "bin", "keywords", "author", "license", "dependencies"], "$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": {"valueWithLayers:": {"type": "string"}, "valueWithOnlyLayers:": {"type": "string"}, "valueWithoutLayers:": {"type": "string"}}, "required": ["valueWithLayers:", "valueWithOnlyLayers:", "valueWithoutLayers:"]}}, "required": ["class", "instance"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"class" : {}, "instance" : {"valueWithLayers:" : "stlu 4/12/2019 13:23", "valueWithOnlyLayers:" : "stlu 4/12/2019 13:24", "valueWithoutLayers:" : "stlu 4/12/2019 13:23"}} | json_instruct | {"type": "object", "properties": {"class": {"type": "object", "properties": {}, "required": []}, "instance": {"type": "object", "properties": {"valueWithLayers:": {"type": "string"}, "valueWithOnlyLayers:": {"type": "string"}, "valueWithoutLayers:": {"type": "string"}}, "required": ["valueWithLayers:", "valueWithOnlyLayers:", "valueWithoutLayers:"]}}, "required": ["class", "instance"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "code": {"type": "string"}, "address": {"type": "object", "properties": {"addressLine1": {"type": "string"}, "addressLine2": {"type": "string"}, "postcode": {"type": "string"}}, "required": ["addressLine1", "addressLine2", "postcode"]}, "organisation": {"type": "object", "properties": {"id": {"type": "string"}, "code": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "code", "name"]}}, "required": ["id", "name", "code", "address", "organisation"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "f1e3fff5-79fd-4deb-b9cf-fe7aca040fce", "name" : "Kidgate Primary Academy", "code" : "G", "address" : {"addressLine1" : "Kidgate", "addressLine2" : "Louth", "postcode" : "LN11 9BX"}, "organisation" : {"id" : "d63dbf19-431b-48e2-9905-17ebff79d484", "code" : "1ES", "name" : "Harbour Learning Trust"}} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "code": {"type": "string"}, "address": {"type": "object", "properties": {"addressLine1": {"type": "string"}, "addressLine2": {"type": "string"}, "postcode": {"type": "string"}}, "required": ["addressLine1", "addressLine2", "postcode"]}, "organisation": {"type": "object", "properties": {"id": {"type": "string"}, "code": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "code", "name"]}}, "required": ["id", "name", "code", "address", "organisation"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"article": {"type": "string"}, "options": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}, "answers": {"type": "array", "items": {"type": "string"}}}, "required": ["article", "options", "answers"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"article" : "It's never easy to admit you are in the wrong. We all _ to know the art of apology. Think how often you've done wrong. Then count how many _ you've expressed clearly you were _ . You can't go to bed with an easy mind if you do _ about it.A doctor friend, Mr. Lied, told me about a man who came to him with different kinds of signs: headaches, heart _ and insomnia . _ some careful exams, Mr. Lied found nothing _ with him and said, If you don't tell me what's _ you, I can't help you. The man admitted he was cheating his brother of his inheritance . Then and there the _ doctor _ the man write to his brother and _ his money. As soon as the _ was put into the post box, the man suddenly cried. Thank you, he said to the doctor, I think I've got _ . An apology can not only save a broken relationship but also make it _ . If you can think of someone who should be _ an apology from you. Do something about it right now.", "options" : [["decide", "have", "need", "try"], ["mistakes", "people", "ways", "times"], ["sorry", "weak", "sad", "wrong"], ["something", "anything", "nothing", "everything"], ["trouble", "matter", "illness", "problem"], ["Before", "After", "Till", "Since"], ["well", "wrong", "good", "bad"], ["hurling", "changing", "touching", "worrying"], ["clever", "silly", "good", "kind"], ["made", "helped", "saw", "let"], ["returned", "gave", "kept", "paid"], ["paper", "box", "money", "letter"], ["better", "well", "sick", "worse"], ["never", "worse", "stronger", "harder"], ["given", "received", "known", "forgotten"]], "answers" : ["C", "D", "A", "C", "A", "B", "B", "D", "A", "D", "A", "D", "B", "C", "A"]} | json_instruct | {"type": "object", "properties": {"article": {"type": "string"}, "options": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}, "answers": {"type": "array", "items": {"type": "string"}}}, "required": ["article", "options", "answers"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "array", "items": {"type": "array", "items": {"type": "string"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [["210504001001", "\u7d2b\u91d1\u793e\u533a\u5c45\u59d4\u4f1a", "111", "0"], ["210504001002", "\u6b66\u5c71\u793e\u533a\u5c45\u59d4\u4f1a", "111", "0"], ["210504001003", "\u80b2\u6c11\u793e\u533a\u5c45\u59d4\u4f1a", "111", "0"], ["210504001004", "\u5854\u5357\u793e\u533a\u5c45\u59d4\u4f1a", "111", "0"], ["210504001005", "\u5854\u897f\u793e\u533a\u5c45\u59d4\u4f1a", "111", "0"], ["210504001006", "\u6c38\u5b89\u793e\u533a\u5c45\u59d4\u4f1a", "111", "0"], ["210504001007", "\u77ff\u9662\u793e\u533a\u5c45\u59d4\u4f1a", "111", "0"], ["210504001008", "\u80b2\u6b23\u793e\u533a\u5c45\u6c11\u59d4\u5458\u4f1a", "111", "0"]] | json_instruct | {"type": "array", "items": {"type": "array", "items": {"type": "string"}}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"place_name": {"type": "string"}, "state_name": {"type": "string"}, "state_abbrv": {"type": "string"}, "lat": {"type": "string"}, "long": {"type": "string"}}, "required": ["place_name", "state_name", "state_abbrv", "lat", "long"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"place_name" : "Umpqua", "state_name" : "Oregon", "state_abbrv" : "OR", "lat" : "43.3745", "long" : "-123.5358"} | json_instruct | {"type": "object", "properties": {"place_name": {"type": "string"}, "state_name": {"type": "string"}, "state_abbrv": {"type": "string"}, "lat": {"type": "string"}, "long": {"type": "string"}}, "required": ["place_name", "state_name", "state_abbrv", "lat", "long"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"type": {"type": "string"}, "features": {"type": "array", "items": {"type": "object", "properties": {"geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["type", "coordinates"]}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"cartodb_id": {"type": "integer"}}, "required": ["cartodb_id"]}}, "required": ["geometry", "type", "properties"]}}}, "required": ["type", "features"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"type" : "FeatureCollection", "features" : [{"geometry" : {"type" : "Polygon", "coordinates" : [[[-89.939211, 35.922765], [-89.93007, 35.927426], [-89.932546, 35.930771], [-89.929737, 35.929322], [-89.918756, 35.929364], [-89.91873, 35.915383], [-89.909895, 35.915374], [-89.909896, 35.916316], [-89.908687, 35.916288], [-89.905818, 35.91485], [-89.905299, 35.871005], [-89.936111, 35.871461], [-89.936939, 35.893129], [-89.936679, 35.91954], [-89.938936, 35.919642], [-89.938994, 35.921071], [-89.936402, 35.922419], [-89.939211, 35.922765]]]}, "type" : "Feature", "properties" : {"cartodb_id" : 3249}}]} | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "features": {"type": "array", "items": {"type": "object", "properties": {"geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["type", "coordinates"]}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"cartodb_id": {"type": "integer"}}, "required": ["cartodb_id"]}}, "required": ["geometry", "type", "properties"]}}}, "required": ["type", "features"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "object", "properties": {"is_lock_vulnerable": {"type": "boolean"}, "is_prodigal_vulnerable": {"type": "boolean"}, "is_suicidal_vulnerable": {"type": "boolean"}}, "required": ["is_lock_vulnerable", "is_prodigal_vulnerable", "is_suicidal_vulnerable"]}}, "required": ["contract", "tool", "start", "end", "duration", "analysis"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"contract" : "0xaeea2ebc48178af826986314280da3d6743e6766", "tool" : "maian", "start" : 1565345395.0690653, "end" : 1565345605.114256, "duration" : 210.04519057273865, "analysis" : {"is_lock_vulnerable" : false, "is_prodigal_vulnerable" : false, "is_suicidal_vulnerable" : false}} | json_instruct | {"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "object", "properties": {"is_lock_vulnerable": {"type": "boolean"}, "is_prodigal_vulnerable": {"type": "boolean"}, "is_suicidal_vulnerable": {"type": "boolean"}}, "required": ["is_lock_vulnerable", "is_prodigal_vulnerable", "is_suicidal_vulnerable"]}}, "required": ["contract", "tool", "start", "end", "duration", "analysis"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"lastUpdated": {"type": "integer"}, "username": {"type": "string"}, "scores": {"type": "array", "items": {"type": "object", "properties": {"xp": {"type": "integer"}, "rank": {"type": "integer"}, "cardId": {"type": "integer"}}, "required": ["xp", "rank", "cardId"]}}}, "required": ["lastUpdated", "username", "scores"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"lastUpdated" : 1655019279666, "username" : "Kir73", "scores" : [{"xp" : 7165, "rank" : 390, "cardId" : 373}, {"xp" : 28252, "rank" : 188, "cardId" : 241}, {"xp" : 40102, "rank" : 225, "cardId" : 32}, {"xp" : 36516, "rank" : 284, "cardId" : 420}, {"xp" : 31767, "rank" : 247, "cardId" : 33}, {"xp" : 23001, "rank" : 449, "cardId" : 289}, {"xp" : 30526, "rank" : 167, "cardId" : 468}, {"xp" : 578, "rank" : 498, "cardId" : 652}, {"xp" : 8521, "rank" : 361, "cardId" : 624}, {"xp" : 40412, "rank" : 341, "cardId" : 667}, {"xp" : 36031, "rank" : 112, "cardId" : 301}, {"xp" : 34132, "rank" : 176, "cardId" : 608}, {"xp" : 2407, "rank" : 478, "cardId" : 683}, {"xp" : 33621, "rank" : 288, "cardId" : 34}, {"xp" : 3955, "rank" : 321, "cardId" : 626}, {"xp" : 29270, "rank" : 435, "cardId" : 466}, {"xp" : 1339, "rank" : 453, "cardId" : 707}, {"xp" : 30157, "rank" : 218, "cardId" : 675}, {"xp" : 29212, "rank" : 358, "cardId" : 109}, {"xp" : 1872, "rank" : 434, "cardId" : 686}, {"xp" : 50599, "rank" : 376, "cardId" : 273}, {"xp" : 53543, "rank" : 309, "cardId" : 65}, {"xp" : 81647, "rank" : 418, "cardId" : 219}, {"xp" : 43222, "rank" : 313, "cardId" : 35}, {"xp" : 66721, "rank" : 363, "cardId" : 265}, {"xp" : 22492, "rank" : 434, "cardId" : 505}, {"xp" : 26242, "rank" : 98, "cardId" : 597}, {"xp" : 52497, "rank" : 259, "cardId" : 263}, {"xp" : 10454, "rank" : 368, "cardId" : 688}]} | json_instruct | {"type": "object", "properties": {"lastUpdated": {"type": "integer"}, "username": {"type": "string"}, "scores": {"type": "array", "items": {"type": "object", "properties": {"xp": {"type": "integer"}, "rank": {"type": "integer"}, "cardId": {"type": "integer"}}, "required": ["xp", "rank", "cardId"]}}}, "required": ["lastUpdated", "username", "scores"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"$schema": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "object", "properties": {"cmd": {"type": "string"}, "desc": {"type": "string"}}, "required": ["cmd", "desc"]}, "start": {"type": "object", "properties": {"cmd": {"type": "string"}, "desc": {"type": "string"}}, "required": ["cmd", "desc"]}, "compile": {"type": "object", "properties": {"cmd": {"type": "string"}, "desc": {"type": "string"}}, "required": ["cmd", "desc"]}}, "required": ["test", "start", "compile"]}, "allow": {"type": "object", "properties": {"env": {"type": "string"}, "net": {"type": "string"}, "read": {"type": "string"}}, "required": ["env", "net", "read"]}, "logger": {"type": "object", "properties": {"quiet": {"type": "boolean"}, "debug": {"type": "boolean"}}, "required": ["quiet", "debug"]}}, "required": ["$schema", "scripts", "allow", "logger"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"$schema" : "https://deno.land/x/[email protected]/schema.json", "scripts" : {"test" : {"cmd" : "deno test", "desc" : "Test Uwuifier-server"}, "start" : {"cmd" : "deno run index.ts", "desc" : "Start Uwuifier-server"}, "compile" : {"cmd" : "deno compile --target=x86_64-unknown-linux-gnu index.ts", "desc" : "Compile Uwuifier-server"}}, "allow" : {"env" : "MYSQL_HOSTNAME,MYSQL_USERNAME,MYSQL_PASSWORD,MYSQL_PORT,MYSQL_DATABASE,_TO,DENO_DEPLOYMENT_ID,DENO_REGION,OVERSIGHT_UUID", "net" : "aristotle-do-user-8895515-0.b.db.ondigitalocean.com:25060,0.0.0.0:8080,api64.ipify.org,ip-api.com", "read" : ".env,.env.defaults"}, "logger" : {"quiet" : true, "debug" : true}} | json_instruct | {"type": "object", "properties": {"$schema": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "object", "properties": {"cmd": {"type": "string"}, "desc": {"type": "string"}}, "required": ["cmd", "desc"]}, "start": {"type": "object", "properties": {"cmd": {"type": "string"}, "desc": {"type": "string"}}, "required": ["cmd", "desc"]}, "compile": {"type": "object", "properties": {"cmd": {"type": "string"}, "desc": {"type": "string"}}, "required": ["cmd", "desc"]}}, "required": ["test", "start", "compile"]}, "allow": {"type": "object", "properties": {"env": {"type": "string"}, "net": {"type": "string"}, "read": {"type": "string"}}, "required": ["env", "net", "read"]}, "logger": {"type": "object", "properties": {"quiet": {"type": "boolean"}, "debug": {"type": "boolean"}}, "required": ["quiet", "debug"]}}, "required": ["$schema", "scripts", "allow", "logger"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "main": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"jsdoc": {"type": "string"}}, "required": ["jsdoc"]}}, "required": ["name", "version", "main", "license", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "eecs448-project-34", "version" : "0.1.0", "main" : "index.js", "license" : "MIT", "dependencies" : {"jsdoc" : "^3.6.5"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "main": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"jsdoc": {"type": "string"}}, "required": ["jsdoc"]}}, "required": ["name", "version", "main", "license", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "object", "properties": {"en": {"type": "string"}}, "required": ["en"]}, "country": {"type": "string"}, "region": {"type": "string"}, "identifiers": {"type": "object", "properties": {"national": {"type": "string"}, "wmo": {"type": "string"}, "icao": {"type": "string"}, "iata": {"type": "string"}, "ghcn": {"type": "string"}, "usaf": {"type": "string"}, "mosmix": {"type": "string"}}, "required": ["national", "wmo", "icao", "iata", "ghcn", "usaf", "mosmix"]}, "location": {"type": "object", "properties": {"latitude": {"type": "number"}, "longitude": {"type": "number"}, "elevation": {"type": "integer"}}, "required": ["latitude", "longitude", "elevation"]}, "timezone": {"type": "string"}}, "required": ["id", "name", "country", "region", "identifiers", "location", "timezone"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "71966", "name" : {"en" : "Dawson"}, "country" : "CA", "region" : "YT", "identifiers" : {"national" : "10194", "wmo" : "71966", "icao" : "CYDA", "iata" : "YDA", "ghcn" : "CA002100402", "usaf" : "719660", "mosmix" : "71966"}, "location" : {"latitude" : 64.06, "longitude" : -139.13, "elevation" : 370}, "timezone" : "America/Dawson"} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "object", "properties": {"en": {"type": "string"}}, "required": ["en"]}, "country": {"type": "string"}, "region": {"type": "string"}, "identifiers": {"type": "object", "properties": {"national": {"type": "string"}, "wmo": {"type": "string"}, "icao": {"type": "string"}, "iata": {"type": "string"}, "ghcn": {"type": "string"}, "usaf": {"type": "string"}, "mosmix": {"type": "string"}}, "required": ["national", "wmo", "icao", "iata", "ghcn", "usaf", "mosmix"]}, "location": {"type": "object", "properties": {"latitude": {"type": "number"}, "longitude": {"type": "number"}, "elevation": {"type": "integer"}}, "required": ["latitude", "longitude", "elevation"]}, "timezone": {"type": "string"}}, "required": ["id", "name", "country", "region", "identifiers", "location", "timezone"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"name": {"type": "string"}, "tel": {"type": "string"}, "fax": {"type": "string"}, "licensee": {"type": "string"}, "licensePeriod": {"type": "string"}, "licenseClass": {"type": "string"}, "hciCode": {"type": "string"}, "address": {"type": "string"}, "doctorInCharge": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "qualifications": {"type": "array", "items": {"type": "string"}}, "specialties": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "qualifications", "specialties"]}}, "detailedServices": {"type": "object", "properties": {"Specialist Medical": {"type": "array", "items": {"type": "string"}}}, "required": ["Specialist Medical"]}, "operatingHours": {"type": "object", "properties": {"Monday to Friday": {"type": "string"}, "Saturday": {"type": "string"}}, "required": ["Monday to Friday", "Saturday"]}}, "required": ["name", "tel", "fax", "licensee", "licensePeriod", "licenseClass", "hciCode", "address", "doctorInCharge", "detailedServices", "operatingHours"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "THE VEIN CENTRE", "tel" : "67330377", "fax" : "62502167", "licensee" : "IMRAN NAWAZ", "licensePeriod" : "03/06/2017 to 02/06/2019", "licenseClass" : "[ 2 Years ( 2A ) ]", "hciCode" : "9404968", "address" : "38 IRRAWADDY ROAD, MOUNT ELIZABETH NOVENA SPECIALIST CENTRE, #10-42 Singapore 329563", "doctorInCharge" : [{"name" : "IMRAN NAWAZ", "qualifications" : ["MBBS (National University of Singapore, Singapore) 1982", "FRCSEd (Gen Surg) (Royal College of Surgeons of Edinburgh, United Kingdom) 1987", "FRCS (Gen Surg) (Royal College of Physicians and Surgeons of Glasgow, United Kingdom) 1987", "FAMS (Gen Surg) (Academy of Medicine, Singapore) 1995"], "specialties" : ["General Surgery"]}], "detailedServices" : {"Specialist Medical" : ["General Surgery"]}, "operatingHours" : {"Monday to Friday" : "09:00 am to 05:00 pm", "Saturday" : "09:00 am to 12:30 pm"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "tel": {"type": "string"}, "fax": {"type": "string"}, "licensee": {"type": "string"}, "licensePeriod": {"type": "string"}, "licenseClass": {"type": "string"}, "hciCode": {"type": "string"}, "address": {"type": "string"}, "doctorInCharge": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "qualifications": {"type": "array", "items": {"type": "string"}}, "specialties": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "qualifications", "specialties"]}}, "detailedServices": {"type": "object", "properties": {"Specialist Medical": {"type": "array", "items": {"type": "string"}}}, "required": ["Specialist Medical"]}, "operatingHours": {"type": "object", "properties": {"Monday to Friday": {"type": "string"}, "Saturday": {"type": "string"}}, "required": ["Monday to Friday", "Saturday"]}}, "required": ["name", "tel", "fax", "licensee", "licensePeriod", "licenseClass", "hciCode", "address", "doctorInCharge", "detailedServices", "operatingHours"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "array", "items": {"type": "object", "properties": {"postal_code": {"type": "string"}, "place_name": {"type": "string"}, "place_type": {"type": "string"}, "county": {"type": "string"}, "state": {"type": "string"}, "city": {"type": "string"}}, "required": ["postal_code", "place_name", "place_type", "county", "state", "city"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"postal_code" : "50264", "place_name" : "San Judas Tadeo", "place_type" : "Colonia", "county" : "Toluca", "state" : "M\u00e9xico", "city" : ""}, {"postal_code" : "50264", "place_name" : "San Pablo", "place_type" : "Colonia", "county" : "Toluca", "state" : "M\u00e9xico", "city" : ""}, {"postal_code" : "50264", "place_name" : "San Jos\u00e9", "place_type" : "Colonia", "county" : "Toluca", "state" : "M\u00e9xico", "city" : ""}, {"postal_code" : "50264", "place_name" : "San Felipe de Jes\u00fas", "place_type" : "Colonia", "county" : "Toluca", "state" : "M\u00e9xico", "city" : ""}, {"postal_code" : "50264", "place_name" : "Las Palmas", "place_type" : "Colonia", "county" : "Toluca", "state" : "M\u00e9xico", "city" : ""}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"postal_code": {"type": "string"}, "place_name": {"type": "string"}, "place_type": {"type": "string"}, "county": {"type": "string"}, "state": {"type": "string"}, "city": {"type": "string"}}, "required": ["postal_code", "place_name", "place_type", "county", "state", "city"]}, "$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"}, "author": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "description", "author", "email"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "Now Playing", "description" : "Displays current track information (track name, artist, and album\u2013\u2013Spotify-only for now), with the album's cover artwork as the backdrop.", "author" : "Levi Figueira", "email" : "[email protected]"} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "author": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "description", "author", "email"], "$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" : 47504, "cartId" : "8de83af7-6da0-4ada-9434-bcbab26baca4", "preferredProducts" : [1047, 2855, 1339, 3858, 644, 3561, 3638], "productReviews" : [{"productId" : 655, "reviewText" : "My baboon loves to play with it.", "reviewDate" : "2016-11-20T16:03:48.302717+02:00"}, {"productId" : 1324, "reviewText" : "This Agent works so well. It imperfectly improves my baseball by a lot.", "reviewDate" : "2019-03-19T11:22:42.4040993+02:00"}, {"productId" : 4241, "reviewText" : "My Shih-Tzu loves to play with it.", "reviewDate" : "2017-12-20T14:15:50.968199+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#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"feed": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "username": {"type": "string"}, "tags": {"type": "string"}, "music": {"type": "string"}, "likes": {"type": "integer"}, "comments": {"type": "integer"}, "uri": {"type": "string"}}, "required": ["id", "username", "tags", "music", "likes", "comments", "uri"]}}}, "required": ["feed"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"feed" : [{"id" : 0, "username" : "@matheuscastroweb", "tags" : "#testvideo #reactnative #tiktok #git #development #github #clone #react", "music" : "Introducing Chromecast. The easiest way to enjoy", "likes" : 9444, "comments" : 6340, "uri" : "https://firebasestorage.googleapis.com/v0/b/desitalent-39759.appspot.com/o/uploads%2Fvideo%2F0.mp4?alt=media"}, {"id" : 1, "username" : "@matheuscastroweb", "tags" : "#reactnative #testvideo #tiktok #git #development #github #clone #react", "music" : "HBO GO now works with Chromecast", "likes" : 8411, "comments" : 2240, "uri" : "https://firebasestorage.googleapis.com/v0/b/desitalent-39759.appspot.com/o/uploads%2Fvideo%2F1.mp4?alt=media"}, {"id" : 2, "uri" : "https://firebasestorage.googleapis.com/v0/b/desitalent-39759.appspot.com/o/uploads%2Fvideo%2F2.mp4?alt=media", "likes" : 1002, "username" : "@matheuscastroweb", "tags" : "#reactnative #testvideo #tiktok #git #development #github #clone #react", "music" : "HBO GO now works with Chromecast", "comments" : 2240}, {"id" : 3, "uri" : "https://firebasestorage.googleapis.com/v0/b/desitalent-39759.appspot.com/o/uploads%2Fvideo%2F3.mp4?alt=media", "likes" : 1002, "username" : "@matheuscastroweb", "tags" : "#reactnative #testvideo #tiktok #git #development #github #clone #react", "music" : "HBO GO now works with Chromecast", "comments" : 2240}, {"id" : 4, "uri" : "https://firebasestorage.googleapis.com/v0/b/desitalent-39759.appspot.com/o/uploads%2Fvideo%2F4.mp4?alt=media", "likes" : 1002, "username" : "@matheuscastroweb", "tags" : "#reactnative #testvideo #tiktok #git #development #github #clone #react", "music" : "HBO GO now works with Chromecast", "comments" : 2240}]} | json_instruct | {"type": "object", "properties": {"feed": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "username": {"type": "string"}, "tags": {"type": "string"}, "music": {"type": "string"}, "likes": {"type": "integer"}, "comments": {"type": "integer"}, "uri": {"type": "string"}}, "required": ["id", "username", "tags", "music", "likes", "comments", "uri"]}}}, "required": ["feed"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "nodes": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "id": {"type": "integer"}, "lat": {"type": "number"}, "lon": {"type": "number"}}, "required": ["type", "id", "lat", "lon"]}}, "volunteer_postcode": {"type": "string"}, "closest_distance": {"type": "integer"}}, "required": ["id", "name", "nodes", "volunteer_postcode", "closest_distance"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "56471925", "name" : "Denford Road", "nodes" : [{"type" : "node", "id" : 708098186, "lat" : 52.499798, "lon" : -0.7207761}, {"type" : "node", "id" : 708098188, "lat" : 52.4998479, "lon" : -0.7214959}], "volunteer_postcode" : "NN17 2GD", "closest_distance" : 169} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "nodes": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "id": {"type": "integer"}, "lat": {"type": "number"}, "lon": {"type": "number"}}, "required": ["type", "id", "lat", "lon"]}}, "volunteer_postcode": {"type": "string"}, "closest_distance": {"type": "integer"}}, "required": ["id", "name", "nodes", "volunteer_postcode", "closest_distance"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.