input
stringlengths 159
2.05k
| output
stringlengths 5
10.3k
| task
stringclasses 1
value | schema
stringlengths 100
1.99k
|
---|---|---|---|
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"id": {"type": "integer"}, "category": {"type": "object", "properties": {"name": {"type": "string"}, "subset": {"type": "string"}}, "required": ["name", "subset"]}, "help": {"type": "object", "properties": {"de": {"type": "string"}, "en": {"type": "string"}, "fr": {"type": "string"}, "jp": {"type": "string"}}, "required": ["de", "en", "fr", "jp"]}, "img": {"type": "string"}}, "required": ["id", "category", "help", "img"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : 1553, "category" : {"name" : "Battle", "subset" : "Treasure Hunt"}, "help" : {"de" : "Die Aquapolis 5 Mal abgeschlossen.", "en" : "Raid the deepest room in the Aquapolis 5 times.", "fr" : "Conqu\u00e9rir 5 fois l'Aquapole.", "jp" : "\u5b9d\u7269\u5eab \u30a2\u30af\u30a2\u30dd\u30ea\u30b9\u3092\u7d2f\u8a085\u56de\u5236\u8987\u3059\u308b"}, "img" : "000000/000116.png"} | json_instruct | {"type": "object", "properties": {"id": {"type": "integer"}, "category": {"type": "object", "properties": {"name": {"type": "string"}, "subset": {"type": "string"}}, "required": ["name", "subset"]}, "help": {"type": "object", "properties": {"de": {"type": "string"}, "en": {"type": "string"}, "fr": {"type": "string"}, "jp": {"type": "string"}}, "required": ["de", "en", "fr", "jp"]}, "img": {"type": "string"}}, "required": ["id", "category", "help", "img"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"IndexId": {"type": "integer"}, "Portraits": {"type": "array", "items": {"type": "object", "properties": {"PortraitId": {"type": "integer"}, "PortraitName": {"type": "string"}, "PortraitImageBase64": {"type": "string"}}, "required": ["PortraitId", "PortraitName", "PortraitImageBase64"]}}}, "required": ["IndexId", "Portraits"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"IndexId" : 935, "Portraits" : [{"PortraitId" : 0, "PortraitName" : "STANDARD", "PortraitImageBase64" : "iVBORw0KGgoAAAANSUhEUgAAACgAAAAoBAMAAAB+0KVeAAAAMFBMVEUA/wAkKDVBRkmci5zHts7r5f8/apVts/JGiMN3x9ePz8ev17fn97fbbXGcPzX///8rkK95AAAB+0lEQVQokW3RMW8TMRQAYP+FA/aK93xJaKIimbuhKlKlF3s7MVzsP5CBZr7FmU9Iubmd2rFMNBvdclub8SbEWoZKjEUCfgA8Xy4BUZ50kv295/ccR5x3cYrnuxA7VP9BpBeP8EwSPsLTlOjwX1Qm17tScdHGGRob0/5mcyE+tKESZ2OnDjc7cRVCoXaOnIV2d9XiJWoT0Fn8g6gD8nlH+1u8TFp0khOqxdVqxYUt8nk3Hi6XS7Fcvpcd5qEHcpWo64+6w9DUqbquGVVAvpJzAenoL+wmuckw4DXgVmmL16AVdg2IExNgVLzYNmgRh7Vo+8gxAJdS+FJVizSMTVT0VDIQGn7YI2EsSL5yFClt5PMnCcQTKThFaZ5EESUao2colWXkujg/jqKfqFS0B6ZF/hkylt/3ZA4vOeOQMQySmB//MG48+aX4/pNRuJJFsA+f3fggvbtXqaNM8F+WK43fvlr4cv9GImpsxC28ArkGNPRwJ6EhgKwRzRheN/B2ivbgE68anTWMTbOGWTmbAvQqrgoRcDqrYFZVJW1UZ4zU90CLqioy6nl+XJBC0sBDduM5ZEODwsKiFEU8LbMGKu/nfJbA9DyKwtLoBgxwaAAeejJH4d9xg0pafvmcB47W/TkIX3JTX5ocJCx4MeoXhfBy4Ctf8AuS5SJf9k+K37eGONYhHuY1AAAAAElFTkSuQmCC"}]} | json_instruct | {"type": "object", "properties": {"IndexId": {"type": "integer"}, "Portraits": {"type": "array", "items": {"type": "object", "properties": {"PortraitId": {"type": "integer"}, "PortraitName": {"type": "string"}, "PortraitImageBase64": {"type": "string"}}, "required": ["PortraitId", "PortraitName", "PortraitImageBase64"]}}}, "required": ["IndexId", "Portraits"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"title": {"type": "string"}, "creation_date": {"type": "null"}, "creation_date_earliest": {"type": "string"}, "creation_date_latest": {"type": "string"}, "medium": {"type": "string"}, "accession_number": {"type": "string"}, "id": {"type": "string"}, "credit_line": {"type": "string"}, "date_acquired": {"type": "string"}, "department": {"type": "string"}, "physical_location": {"type": "string"}, "item_width": {"type": "number"}, "item_height": {"type": "number"}, "item_depth": {"type": "number"}, "item_diameter": {"type": "number"}, "web_url": {"type": "string"}, "provenance_text": {"type": "string"}, "classification": {"type": "string"}, "images": {"type": "array", "items": {"type": "object", "properties": {"image_url": {"type": "string"}}, "required": ["image_url"]}}, "creator": {"type": "array", "items": {"type": "object", "properties": {"artist_id": {"type": "string"}, "party_type": {"type": "string"}, "full_name": {"type": "string"}, "cited_name": {"type": "string"}, "role": {"type": "null"}, "nationality": {"type": "string"}, "birth_date": {"type": "string"}, "death_date": {"type": "string"}, "birth_place": {"type": "string"}, "death_place": {"type": "string"}}, "required": ["artist_id", "party_type", "full_name", "cited_name", "role", "nationality", "birth_date", "death_date", "birth_place", "death_place"]}}}, "required": ["title", "creation_date", "creation_date_earliest", "creation_date_latest", "medium", "accession_number", "id", "credit_line", "date_acquired", "department", "physical_location", "item_width", "item_height", "item_depth", "item_diameter", "web_url", "provenance_text", "classification", "images", "creator"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"title" : "Mender of Shoes-Rabat-Morocco", "creation_date" : null, "creation_date_earliest" : "1921-01-01", "creation_date_latest" : "1946-01-01", "medium" : "etching", "accession_number" : "46.18.4", "id" : "cmoa:things/2ead4993-b47f-4d8c-90f0-2592f103292e", "credit_line" : "Gift of Alfred C. Howell", "date_acquired" : "1946-06-07", "department" : "Fine Arts", "physical_location" : "Not on View", "item_width" : 14.25, "item_height" : 19.25, "item_depth" : 0.0, "item_diameter" : 0.0, "web_url" : "http://collection.cmoa.org/CollectionDetail.aspx?item=1007694", "provenance_text" : "Philip Kappel [1901-1981]. Alfred C. Howell [-1961], Pittsburgh, PA; gift to Department of Fine Arts, Carnegie Institute, Pittsburgh, PA, June 1946.", "classification" : "prints", "images" : [{"image_url" : "http://collection.cmoa.org/CollectionImage.aspx?irn=100351&size=Medium"}], "creator" : [{"artist_id" : "cmoa:parties/c9077150-7e5c-409a-ab24-20e44d1bfab8", "party_type" : "Person", "full_name" : "Philip Kappel", "cited_name" : "Kappel, Philip", "role" : null, "nationality" : "American", "birth_date" : "1901-01-01", "death_date" : "1981-01-01", "birth_place" : "Hartford, CT", "death_place" : "New Milford, CT?"}]} | json_instruct | {"type": "object", "properties": {"title": {"type": "string"}, "creation_date": {"type": "null"}, "creation_date_earliest": {"type": "string"}, "creation_date_latest": {"type": "string"}, "medium": {"type": "string"}, "accession_number": {"type": "string"}, "id": {"type": "string"}, "credit_line": {"type": "string"}, "date_acquired": {"type": "string"}, "department": {"type": "string"}, "physical_location": {"type": "string"}, "item_width": {"type": "number"}, "item_height": {"type": "number"}, "item_depth": {"type": "number"}, "item_diameter": {"type": "number"}, "web_url": {"type": "string"}, "provenance_text": {"type": "string"}, "classification": {"type": "string"}, "images": {"type": "array", "items": {"type": "object", "properties": {"image_url": {"type": "string"}}, "required": ["image_url"]}}, "creator": {"type": "array", "items": {"type": "object", "properties": {"artist_id": {"type": "string"}, "party_type": {"type": "string"}, "full_name": {"type": "string"}, "cited_name": {"type": "string"}, "role": {"type": "null"}, "nationality": {"type": "string"}, "birth_date": {"type": "string"}, "death_date": {"type": "string"}, "birth_place": {"type": "string"}, "death_place": {"type": "string"}}, "required": ["artist_id", "party_type", "full_name", "cited_name", "role", "nationality", "birth_date", "death_date", "birth_place", "death_place"]}}}, "required": ["title", "creation_date", "creation_date_earliest", "creation_date_latest", "medium", "accession_number", "id", "credit_line", "date_acquired", "department", "physical_location", "item_width", "item_height", "item_depth", "item_diameter", "web_url", "provenance_text", "classification", "images", "creator"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"settings": {"type": "object", "properties": {"createApp": {"type": "object", "properties": {"url": {"type": "string"}, "image": {"type": "string"}}, "required": ["url", "image"]}, "copyingKey": {"type": "object", "properties": {"url": {"type": "string"}, "image": {"type": "string"}}, "required": ["url", "image"]}, "install": {"type": "object", "properties": {"href": {"type": "object", "properties": {"provider": {"type": "string"}, "docs": {"type": "string"}}, "required": ["provider", "docs"]}}, "required": ["href"]}}, "required": ["createApp", "copyingKey", "install"]}}, "required": ["settings"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"settings" : {"createApp" : {"url" : "https://www.linkedin.com/secure/developer?newapp=", "image" : "config.png"}, "copyingKey" : {"url" : "https://www.linkedin.com/secure/developer", "image" : "keys.png"}, "install" : {"href" : {"provider" : "http://www.linkedin.com/", "docs" : "https://developer.linkedin.com/documents/linkedin-api-resource-map"}}}} | json_instruct | {"type": "object", "properties": {"settings": {"type": "object", "properties": {"createApp": {"type": "object", "properties": {"url": {"type": "string"}, "image": {"type": "string"}}, "required": ["url", "image"]}, "copyingKey": {"type": "object", "properties": {"url": {"type": "string"}, "image": {"type": "string"}}, "required": ["url", "image"]}, "install": {"type": "object", "properties": {"href": {"type": "object", "properties": {"provider": {"type": "string"}, "docs": {"type": "string"}}, "required": ["provider", "docs"]}}, "required": ["href"]}}, "required": ["createApp", "copyingKey", "install"]}}, "required": ["settings"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"name": {"type": "string"}, "id": {"type": "string"}, "image": {"type": "string"}, "attributes": {"type": "object", "properties": {"No.": {"type": "string"}, "Type": {"type": "string"}, "Rarity": {"type": "string"}, "MP": {"type": "string"}, "Effects": {"type": "string"}}, "required": ["No.", "Type", "Rarity", "MP", "Effects"]}}, "required": ["name", "id", "image", "attributes"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "Irresistible Pleasure", "id" : "MORRIGAN010", "image" : "https://nminchow.github.io/teppen-json/images/morrigan010.png", "attributes" : {"No." : "MORRIGAN 010", "Type" : "Action", "Rarity" : "Common", "MP" : "4", "Effects" : "Inflicts Halt on an enemy unit for 13 seconds."}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "id": {"type": "string"}, "image": {"type": "string"}, "attributes": {"type": "object", "properties": {"No.": {"type": "string"}, "Type": {"type": "string"}, "Rarity": {"type": "string"}, "MP": {"type": "string"}, "Effects": {"type": "string"}}, "required": ["No.", "Type", "Rarity", "MP", "Effects"]}}, "required": ["name", "id", "image", "attributes"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"response_time": {"type": "array", "items": {"type": "integer"}}, "donator": {"type": "array", "items": {"type": "string"}}, "num_deepfakes": {"type": "integer"}, "users": {"type": "array", "items": {}}}, "required": ["response_time", "donator", "num_deepfakes", "users"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"response_time" : [60], "donator" : ["1643932737"], "num_deepfakes" : 0, "users" : []} | json_instruct | {"type": "object", "properties": {"response_time": {"type": "array", "items": {"type": "integer"}}, "donator": {"type": "array", "items": {"type": "string"}}, "num_deepfakes": {"type": "integer"}, "users": {"type": "array", "items": {}}}, "required": ["response_time", "donator", "num_deepfakes", "users"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "array", "items": {"type": "array", "items": {"type": "string"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [["410108003001", "\u8363\u82d1\u793e\u533a\u5c45\u6c11\u59d4\u5458\u4f1a", "111", "0"], ["410108003200", "\u4e0b\u5761\u6768\u6751\u6c11\u59d4\u5458\u4f1a", "111", "0"], ["410108003201", "\u675c\u5e84\u6751\u6c11\u59d4\u5458\u4f1a", "220", "0"], ["410108003202", "\u53cc\u6865\u6751\u6c11\u59d4\u5458\u4f1a", "220", "0"], ["410108003203", "\u82cf\u5c6f\u6751\u6c11\u59d4\u5458\u4f1a", "220", "0"], ["410108003204", "\u859b\u5c97\u6751\u6c11\u59d4\u5458\u4f1a", "112", "0"], ["410108003205", "\u5e08\u5bb6\u6cb3\u6751\u6c11\u59d4\u5458\u4f1a", "220", "0"]] | json_instruct | {"type": "array", "items": {"type": "array", "items": {"type": "string"}}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"id": {"type": "integer"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"src:alt_label": {"type": "string"}, "src:geom": {"type": "string"}, "wof:geomhash": {"type": "string"}, "wof:id": {"type": "integer"}, "wof:repo": {"type": "string"}}, "required": ["src:alt_label", "src:geom", "wof:geomhash", "wof:id", "wof:repo"]}, "bbox": {"type": "array", "items": {"type": "number"}}, "geometry": {"type": "object", "properties": {"coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}, "type": {"type": "string"}}, "required": ["coordinates", "type"]}}, "required": ["id", "type", "properties", "bbox", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : 101788609, "type" : "Feature", "properties" : {"src:alt_label" : "quattroshapes", "src:geom" : "quattroshapes", "wof:geomhash" : "a43e08202b7d20fed15bc10e80828721", "wof:id" : 101788609, "wof:repo" : "whosonfirst-data-admin-ro"}, "bbox" : [24.111864, 46.59687, 24.147961, 46.623126], "geometry" : {"coordinates" : [[[24.12715, 46.622956], [24.126912, 46.622074], [24.128198, 46.621903], [24.12796, 46.621021], [24.131817, 46.620509], [24.131578, 46.619627], [24.132864, 46.619457], [24.132149, 46.616811], [24.136006, 46.616299], [24.136244, 46.617181], [24.13753, 46.61701], [24.137768, 46.617892], [24.141625, 46.617379], [24.142102, 46.619143], [24.143388, 46.618972], [24.143627, 46.619854], [24.144912, 46.619683], [24.145151, 46.620565], [24.146437, 46.620394], [24.146675, 46.621276], [24.147961, 46.621105], [24.147484, 46.619341], [24.146198, 46.619512], [24.145482, 46.616867], [24.144197, 46.617038], [24.143958, 46.616156], [24.142672, 46.616327], [24.14148, 46.611918], [24.140194, 46.612089], [24.140433, 46.61297], [24.134005, 46.613824], [24.133052, 46.610297], [24.130481, 46.610638], [24.127383, 46.599174], [24.128669, 46.599004], [24.12843, 46.598122], [24.124575, 46.598634], [24.124099, 46.59687], [24.121528, 46.597211], [24.121766, 46.598093], [24.120481, 46.598264], [24.120719, 46.599146], [24.119434, 46.599316], [24.119672, 46.600198], [24.122242, 46.599857], [24.12248, 46.600739], [24.123766, 46.600568], [24.124004, 46.60145], [24.125289, 46.601279], [24.126004, 46.603925], [24.119577, 46.604778], [24.119339, 46.603896], [24.118053, 46.604067], [24.118291, 46.604948], [24.111864, 46.605801], [24.11234, 46.607565], [24.113626, 46.607394], [24.113388, 46.606512], [24.117244, 46.606001], [24.117482, 46.606883], [24.118768, 46.606712], [24.119006, 46.607594], [24.120291, 46.607424], [24.121005, 46.610069], [24.11972, 46.61024], [24.121863, 46.618176], [24.120578, 46.618347], [24.120816, 46.619229], [24.122102, 46.619058], [24.123055, 46.622586], [24.125626, 46.622244], [24.125865, 46.623126], [24.12715, 46.622956]]], "type" : "Polygon"}} | json_instruct | {"type": "object", "properties": {"id": {"type": "integer"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"src:alt_label": {"type": "string"}, "src:geom": {"type": "string"}, "wof:geomhash": {"type": "string"}, "wof:id": {"type": "integer"}, "wof:repo": {"type": "string"}}, "required": ["src:alt_label", "src:geom", "wof:geomhash", "wof:id", "wof:repo"]}, "bbox": {"type": "array", "items": {"type": "number"}}, "geometry": {"type": "object", "properties": {"coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}, "type": {"type": "string"}}, "required": ["coordinates", "type"]}}, "required": ["id", "type", "properties", "bbox", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"name": {"type": "string"}, "icon": {"type": "string"}, "category": {"type": "string"}, "flag": {"type": "string"}, "advancement": {"type": "string"}, "pages": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "text": {"type": "string"}}, "required": ["type", "text"]}}}, "required": ["name", "icon", "category", "flag", "advancement", "pages"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "Yaga Hog", "icon" : "minecraft:spawn_egg{EntityTag:{id:'mysticalwildlife:yaga_hog'}}", "category" : "animals", "flag" : "universalbestiary:entity:mysticalwildlife:yaga_hog", "advancement" : "universalbestiary:mysticalwildlife_yaga_hog", "pages" : [{"type" : "text", "text" : "The $(mob)Yaga Hog$() is an animal found in $(thing)Swamps$(). It wanders around and flees when attacked, leaving a cloud of $(thing)Poison$() behind. Its meat is a poor source of food.$(p)It can be bred with $(item)Bread$(), and the $(item)Dirt$() on its back can be brushed off with a $(item)Brush$(). When all $(item)Dirt$() has been removed, it will grow back after several minutes, sped up if it is standing in $(thing)Water$()."}, {"type" : "entity", "entity" : "mysticalwildlife:yaga_hog", "scale" : 0.6, "text" : "$(li)10 Health$()$(li)2 Armor$()"}]} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "icon": {"type": "string"}, "category": {"type": "string"}, "flag": {"type": "string"}, "advancement": {"type": "string"}, "pages": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "text": {"type": "string"}}, "required": ["type", "text"]}}}, "required": ["name", "icon", "category", "flag", "advancement", "pages"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"info": {"type": "object", "properties": {"gameover": {"type": "object", "properties": {"address": {"type": "integer"}, "type": {"type": "string"}}, "required": ["address", "type"]}, "health1": {"type": "object", "properties": {"address": {"type": "integer"}, "type": {"type": "string"}}, "required": ["address", "type"]}, "health2": {"type": "object", "properties": {"address": {"type": "integer"}, "type": {"type": "string"}}, "required": ["address", "type"]}, "health3": {"type": "object", "properties": {"address": {"type": "integer"}, "type": {"type": "string"}}, "required": ["address", "type"]}, "score": {"type": "object", "properties": {"address": {"type": "integer"}, "type": {"type": "string"}}, "required": ["address", "type"]}}, "required": ["gameover", "health1", "health2", "health3", "score"]}}, "required": ["info"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"info" : {"gameover" : {"address" : 1056, "type" : "|u1"}, "health1" : {"address" : 1609, "type" : "|u1"}, "health2" : {"address" : 1611, "type" : "|u1"}, "health3" : {"address" : 1613, "type" : "|u1"}, "score" : {"address" : 1828, "type" : "<u2"}}} | json_instruct | {"type": "object", "properties": {"info": {"type": "object", "properties": {"gameover": {"type": "object", "properties": {"address": {"type": "integer"}, "type": {"type": "string"}}, "required": ["address", "type"]}, "health1": {"type": "object", "properties": {"address": {"type": "integer"}, "type": {"type": "string"}}, "required": ["address", "type"]}, "health2": {"type": "object", "properties": {"address": {"type": "integer"}, "type": {"type": "string"}}, "required": ["address", "type"]}, "health3": {"type": "object", "properties": {"address": {"type": "integer"}, "type": {"type": "string"}}, "required": ["address", "type"]}, "score": {"type": "object", "properties": {"address": {"type": "integer"}, "type": {"type": "string"}}, "required": ["address", "type"]}}, "required": ["gameover", "health1", "health2", "health3", "score"]}}, "required": ["info"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"dialogue": {"type": "array", "items": {"type": "object", "properties": {"speed": {"type": "number"}, "portrait": {"type": "string"}, "boxState": {"type": "string"}, "expression": {"type": "string"}, "text": {"type": "string"}}, "required": ["speed", "portrait", "boxState", "expression", "text"]}}}, "required": ["dialogue"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"dialogue" : [{"speed" : 0.05, "portrait" : "TABI", "boxState" : "normal", "expression" : "talk", "text" : "So We Finally Meet After 1 Year Of Hiding"}, {"speed" : 0.05, "portrait" : "gf", "boxState" : "normal", "expression" : "shocked", "text" : "*Shaking From Fear*"}, {"speed" : 0.05, "portrait" : "TABI", "boxState" : "normal", "expression" : "talk", "text" : "Wait? Who Are YOU?"}, {"speed" : 0.05, "portrait" : "bf", "boxState" : "normal", "expression" : "talk", "text" : "Beep Bop Skbeep"}, {"speed" : 0.05, "portrait" : "TABI", "boxState" : "normal", "expression" : "talk", "text" : "So You Already Started Dating Another Guy, Yet Another Victim Huh?"}, {"speed" : 0.05, "portrait" : "TABI", "boxState" : "normal", "expression" : "talk", "text" : "Listen Dude, This Is My Battle Not Yours Just Let Me End This All, Leave!"}, {"speed" : 0.05, "portrait" : "bf", "boxState" : "normal", "expression" : "talk", "text" : "Beep Bop Dop Skbop"}, {"speed" : 0.05, "portrait" : "TABI", "boxState" : "normal", "expression" : "talk", "text" : "You Do Realize That She Is Just Using You, Right?"}]} | json_instruct | {"type": "object", "properties": {"dialogue": {"type": "array", "items": {"type": "object", "properties": {"speed": {"type": "number"}, "portrait": {"type": "string"}, "boxState": {"type": "string"}, "expression": {"type": "string"}, "text": {"type": "string"}}, "required": ["speed", "portrait", "boxState", "expression", "text"]}}}, "required": ["dialogue"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "text": {"type": "string"}}, "required": ["id", "text"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"id" : "140429101200", "text" : "\u6d2a\u6c34\u6751\u59d4\u4f1a"}, {"id" : "140429101201", "text" : "\u65b0\u4e0a\u5cad\u6751\u59d4\u4f1a"}, {"id" : "140429101202", "text" : "\u5357\u53f0\u6751\u59d4\u4f1a"}, {"id" : "140429101203", "text" : "\u767d\u548c\u6751\u59d4\u4f1a"}, {"id" : "140429101204", "text" : "\u5e84\u91cc\u6751\u59d4\u4f1a"}, {"id" : "140429101205", "text" : "\u9633\u5761\u5e84\u6751\u59d4\u4f1a"}, {"id" : "140429101206", "text" : "\u5f53\u57ce\u6751\u59d4\u4f1a"}, {"id" : "140429101209", "text" : "\u71ac\u57b4\u6751\u59d4\u4f1a"}, {"id" : "140429101210", "text" : "\u5357\u576a\u6751\u59d4\u4f1a"}, {"id" : "140429101211", "text" : "\u8302\u6811\u89d2\u6751\u59d4\u4f1a"}, {"id" : "140429101212", "text" : "\u82cf\u5cea\u6c9f\u6751\u59d4\u4f1a"}, {"id" : "140429101213", "text" : "\u5317\u53cd\u5934\u6751\u59d4\u4f1a"}, {"id" : "140429101214", "text" : "\u82cf\u5cea\u6751\u59d4\u4f1a"}, {"id" : "140429101215", "text" : "\u960e\u5bb6\u5e84\u6751\u59d4\u4f1a"}, {"id" : "140429101216", "text" : "\u5927\u897f\u5cad\u6751\u59d4\u4f1a"}, {"id" : "140429101217", "text" : "\u5be8\u576a\u6751\u59d4\u4f1a"}, {"id" : "140429101218", "text" : "\u767d\u7f8a\u5cad\u6751\u59d4\u4f1a"}, {"id" : "140429101219", "text" : "\u5c0f\u897f\u5cad\u6751\u59d4\u4f1a"}, {"id" : "140429101220", "text" : "\u897f\u6c9f\u6751\u59d4\u4f1a"}, {"id" : "140429101221", "text" : "\u6d1e\u4e0a\u6751\u59d4\u4f1a"}, {"id" : "140429101222", "text" : "\u4e1c\u5e84\u6751\u59d4\u4f1a"}, {"id" : "140429101223", "text" : "\u65b0\u5be8\u6751\u59d4\u4f1a"}, {"id" : "140429101224", "text" : "\u4e0b\u5be8\u6751\u59d4\u4f1a"}, {"id" : "140429101225", "text" : "\u4e2d\u6751\u6751\u59d4\u4f1a"}, {"id" : "140429101226", "text" : "\u7a91\u6e7e\u6751\u59d4\u4f1a"}, {"id" : "140429101227", "text" : "\u67f3\u6811\u5819\u6751\u59d4\u4f1a"}, {"id" : "140429101229", "text" : "\u5de6\u4f1a\u6751\u59d4\u4f1a"}, {"id" : "140429101230", "text" : "\u6e7e\u5219\u6751\u59d4\u4f1a"}, {"id" : "140429101231", "text" : "\u829d\u9ebb\u89d2\u6751\u59d4\u4f1a"}, {"id" : "140429101232", "text" : "\u5317\u54cd\u9ec4\u6751\u59d4\u4f1a"}, {"id" : "140429101234", "text" : "\u65b0\u5e84\u6751\u59d4\u4f1a"}, {"id" : "140429101235", "text" : "\u62f4\u9a6c\u6751\u59d4\u4f1a"}, {"id" : "140429101236", "text" : "\u663e\u738b\u6751\u59d4\u4f1a"}, {"id" : "140429101237", "text" : "\u8096\u5bb6\u5cad\u6751\u59d4\u4f1a"}, {"id" : "140429101238", "text" : "\u80e1\u5bb6\u5cad\u6751\u59d4\u4f1a"}, {"id" : "140429101239", "text" : "\u6768\u674e\u679d\u6751\u59d4\u4f1a"}, {"id" : "140429101240", "text" : "\u6cc9\u6cb3\u6751\u59d4\u4f1a"}, {"id" : "140429101241", "text" : "\u4e0a\u5e7f\u5fd7\u6751\u59d4\u4f1a"}, {"id" : "140429101242", "text" : "\u97e9\u9752\u57b4\u6751\u59d4\u4f1a"}, {"id" : "140429101243", "text" : "\u6731\u5bb6\u57b4\u6751\u59d4\u4f1a"}, {"id" : "140429101244", "text" : "\u957f\u5819\u6751\u59d4\u4f1a"}, {"id" : "140429101245", "text" : "\u4e0b\u5e7f\u5fd7\u6751\u59d4\u4f1a"}, {"id" : "140429101246", "text" : "\u66f9\u5bb6\u5e84\u6751\u59d4\u4f1a"}, {"id" : "140429101247", "text" : "\u534a\u5761\u6751\u59d4\u4f1a"}, {"id" : "140429101248", "text" : "\u4e0b\u9ec4\u5ca9\u6751\u59d4\u4f1a"}, {"id" : "140429101249", "text" : "\u4e0a\u738b\u5cad\u6751\u59d4\u4f1a"}, {"id" : "140429101250", "text" : "\u674f\u6811\u70df\u6751\u59d4\u4f1a"}, {"id" : "140429101251", "text" : "\u897f\u624d\u57b4\u6751\u59d4\u4f1a"}, {"id" : "140429101252", "text" : "\u4e0a\u9ec4\u5ca9\u6751\u59d4\u4f1a"}, {"id" : "140429101253", "text" : "\u4e0b\u77f3\u5899\u6751\u59d4\u4f1a"}, {"id" : "140429101254", "text" : "\u5e84\u6c9f\u6751\u59d4\u4f1a"}, {"id" : "140429101255", "text" : "\u9053\u573a\u6751\u59d4\u4f1a"}, {"id" : "140429101256", "text" : "\u540e\u90dd\u5bb6\u5cad\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#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"instance": {"type": "object", "properties": {"docType": {"type": "string"}, "docId:": {"type": "string"}, "mltFields:": {"type": "string"}, "docType:": {"type": "string"}, "searchUrl": {"type": "string"}, "docId": {"type": "string"}}, "required": ["docType", "docId:", "mltFields:", "docType:", "searchUrl", "docId"]}, "class": {"type": "object", "properties": {}, "required": []}}, "required": ["instance", "class"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"instance" : {"docType" : "PaulDeBruicker 5/8/2013 10:24", "docId:" : "PaulDeBruicker 5/8/2013 10:24", "mltFields:" : "PaulDeBruicker 5/8/2013 10:20", "docType:" : "PaulDeBruicker 5/8/2013 10:24", "searchUrl" : "PaulDeBruicker 5/8/2013 10:37", "docId" : "PaulDeBruicker 5/8/2013 10:24"}, "class" : {}} | json_instruct | {"type": "object", "properties": {"instance": {"type": "object", "properties": {"docType": {"type": "string"}, "docId:": {"type": "string"}, "mltFields:": {"type": "string"}, "docType:": {"type": "string"}, "searchUrl": {"type": "string"}, "docId": {"type": "string"}}, "required": ["docType", "docId:", "mltFields:", "docType:", "searchUrl", "docId"]}, "class": {"type": "object", "properties": {}, "required": []}}, "required": ["instance", "class"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"SNX": {"type": "object", "properties": {"asset": {"type": "string"}, "feed": {"type": "string"}}, "required": ["asset", "feed"]}, "ETH": {"type": "object", "properties": {"asset": {"type": "string"}, "feed": {"type": "string"}}, "required": ["asset", "feed"]}, "BTC": {"type": "object", "properties": {"asset": {"type": "string"}, "feed": {"type": "string"}}, "required": ["asset", "feed"]}, "LINK": {"type": "object", "properties": {"asset": {"type": "string"}, "feed": {"type": "string"}}, "required": ["asset", "feed"]}, "UNI": {"type": "object", "properties": {"asset": {"type": "string"}, "feed": {"type": "string"}}, "required": ["asset", "feed"]}, "AAVE": {"type": "object", "properties": {"asset": {"type": "string"}, "feed": {"type": "string"}}, "required": ["asset", "feed"]}}, "required": ["SNX", "ETH", "BTC", "LINK", "UNI", "AAVE"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"SNX" : {"asset" : "SNX", "feed" : "0x38D2f492B4Ef886E71D111c592c9338374e1bd8d"}, "ETH" : {"asset" : "ETH", "feed" : "0x7f8847242a530E809E17bF2DA5D2f9d2c4A43261"}, "BTC" : {"asset" : "BTC", "feed" : "0xd9BdB42229F1aefe47Cdf028408272686445D3ff"}, "LINK" : {"asset" : "LINK", "feed" : "0x4e5A8fe9d533dec45C7CB57D548B049785BA9861"}, "UNI" : {"asset" : "UNI", "feed" : "0xbac904786e476632e75fC6214C797fA80cce9311"}, "AAVE" : {"asset" : "AAVE", "feed" : "0xc051eCEaFd546e0Eb915a97F4D0643BEd7F98a11"}} | json_instruct | {"type": "object", "properties": {"SNX": {"type": "object", "properties": {"asset": {"type": "string"}, "feed": {"type": "string"}}, "required": ["asset", "feed"]}, "ETH": {"type": "object", "properties": {"asset": {"type": "string"}, "feed": {"type": "string"}}, "required": ["asset", "feed"]}, "BTC": {"type": "object", "properties": {"asset": {"type": "string"}, "feed": {"type": "string"}}, "required": ["asset", "feed"]}, "LINK": {"type": "object", "properties": {"asset": {"type": "string"}, "feed": {"type": "string"}}, "required": ["asset", "feed"]}, "UNI": {"type": "object", "properties": {"asset": {"type": "string"}, "feed": {"type": "string"}}, "required": ["asset", "feed"]}, "AAVE": {"type": "object", "properties": {"asset": {"type": "string"}, "feed": {"type": "string"}}, "required": ["asset", "feed"]}}, "required": ["SNX", "ETH", "BTC", "LINK", "UNI", "AAVE"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"06-2019": {"type": "integer"}, "07-2019": {"type": "integer"}, "08-2019": {"type": "integer"}}, "required": ["06-2019", "07-2019", "08-2019"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"06-2019" : 5414, "07-2019" : 950, "08-2019" : 11} | json_instruct | {"type": "object", "properties": {"06-2019": {"type": "integer"}, "07-2019": {"type": "integer"}, "08-2019": {"type": "integer"}}, "required": ["06-2019", "07-2019", "08-2019"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "private": {"type": "boolean"}, "scripts": {"type": "object", "properties": {"dev": {"type": "string"}, "build": {"type": "string"}, "start": {"type": "string"}}, "required": ["dev", "build", "start"]}, "dependencies": {"type": "object", "properties": {"@apollo/react-hooks": {"type": "string"}, "@types/validator": {"type": "string"}, "apollo-boost": {"type": "string"}, "apollo-server-micro": {"type": "string"}, "class-transformer": {"type": "string"}, "class-validator": {"type": "string"}, "db-migrate": {"type": "string"}, "db-migrate-pg": {"type": "string"}, "graphql": {"type": "string"}, "next": {"type": "string"}, "pg": {"type": "string"}, "react": {"type": "string"}, "react-apollo": {"type": "string"}, "react-dom": {"type": "string"}, "reflect-metadata": {"type": "string"}, "sequelize": {"type": "string"}, "sequelize-typescript": {"type": "string"}}, "required": ["@apollo/react-hooks", "@types/validator", "apollo-boost", "apollo-server-micro", "class-transformer", "class-validator", "db-migrate", "db-migrate-pg", "graphql", "next", "pg", "react", "react-apollo", "react-dom", "reflect-metadata", "sequelize", "sequelize-typescript"]}, "devDependencies": {"type": "object", "properties": {"@babel/core": {"type": "string"}, "@babel/plugin-proposal-decorators": {"type": "string"}, "@types/node": {"type": "string"}, "@types/react": {"type": "string"}, "dotenv-flow": {"type": "string"}, "sequelize-cli": {"type": "string"}, "typescript": {"type": "string"}}, "required": ["@babel/core", "@babel/plugin-proposal-decorators", "@types/node", "@types/react", "dotenv-flow", "sequelize-cli", "typescript"]}}, "required": ["name", "version", "private", "scripts", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "stretchmate", "version" : "0.1.0", "private" : true, "scripts" : {"dev" : "next dev", "build" : "next build", "start" : "next start"}, "dependencies" : {"@apollo/react-hooks" : "^4.0.0", "@types/validator" : "^13.1.3", "apollo-boost" : "^0.4.9", "apollo-server-micro" : "^2.19.2", "class-transformer" : "^0.4.0", "class-validator" : "^0.13.1", "db-migrate" : "^0.11.12", "db-migrate-pg" : "^1.2.2", "graphql" : "^15.5.0", "next" : "10.0.6", "pg" : "^8.5.1", "react" : "17.0.1", "react-apollo" : "^3.1.5", "react-dom" : "17.0.1", "reflect-metadata" : "^0.1.13", "sequelize" : "^6.5.0", "sequelize-typescript" : "^2.1.0"}, "devDependencies" : {"@babel/core" : "^7.12.13", "@babel/plugin-proposal-decorators" : "^7.12.13", "@types/node" : "^14.14.24", "@types/react" : "^17.0.1", "dotenv-flow" : "^3.2.0", "sequelize-cli" : "^6.2.0", "typescript" : "^4.1.3"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "private": {"type": "boolean"}, "scripts": {"type": "object", "properties": {"dev": {"type": "string"}, "build": {"type": "string"}, "start": {"type": "string"}}, "required": ["dev", "build", "start"]}, "dependencies": {"type": "object", "properties": {"@apollo/react-hooks": {"type": "string"}, "@types/validator": {"type": "string"}, "apollo-boost": {"type": "string"}, "apollo-server-micro": {"type": "string"}, "class-transformer": {"type": "string"}, "class-validator": {"type": "string"}, "db-migrate": {"type": "string"}, "db-migrate-pg": {"type": "string"}, "graphql": {"type": "string"}, "next": {"type": "string"}, "pg": {"type": "string"}, "react": {"type": "string"}, "react-apollo": {"type": "string"}, "react-dom": {"type": "string"}, "reflect-metadata": {"type": "string"}, "sequelize": {"type": "string"}, "sequelize-typescript": {"type": "string"}}, "required": ["@apollo/react-hooks", "@types/validator", "apollo-boost", "apollo-server-micro", "class-transformer", "class-validator", "db-migrate", "db-migrate-pg", "graphql", "next", "pg", "react", "react-apollo", "react-dom", "reflect-metadata", "sequelize", "sequelize-typescript"]}, "devDependencies": {"type": "object", "properties": {"@babel/core": {"type": "string"}, "@babel/plugin-proposal-decorators": {"type": "string"}, "@types/node": {"type": "string"}, "@types/react": {"type": "string"}, "dotenv-flow": {"type": "string"}, "sequelize-cli": {"type": "string"}, "typescript": {"type": "string"}}, "required": ["@babel/core", "@babel/plugin-proposal-decorators", "@types/node", "@types/react", "dotenv-flow", "sequelize-cli", "typescript"]}}, "required": ["name", "version", "private", "scripts", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"componentChunkName": {"type": "string"}, "path": {"type": "string"}, "webpackCompilationHash": {"type": "string"}, "result": {"type": "object", "properties": {"data": {"type": "object", "properties": {"allEpraccurCsv": {"type": "object", "properties": {"edges": {"type": "array", "items": {"type": "object", "properties": {"node": {"type": "object", "properties": {"field1": {"type": "string"}, "field2": {"type": "string"}, "field5": {"type": "string"}, "field6": {"type": "string"}, "field7": {"type": "string"}, "field8": {"type": "string"}, "field9": {"type": "string"}, "field10": {"type": "string"}, "field13": {"type": "string"}, "fields": {"type": "object", "properties": {"geocoderGeometry": {"type": "object", "properties": {"lat": {"type": "number"}, "lng": {"type": "number"}}, "required": ["lat", "lng"]}}, "required": ["geocoderGeometry"]}}, "required": ["field1", "field2", "field5", "field6", "field7", "field8", "field9", "field10", "field13", "fields"]}}, "required": ["node"]}}}, "required": ["edges"]}}, "required": ["allEpraccurCsv"]}, "pageContext": {"type": "object", "properties": {"isCreatedByStatefulCreatePages": {"type": "boolean"}, "id": {"type": "string"}}, "required": ["isCreatedByStatefulCreatePages", "id"]}}, "required": ["data", "pageContext"]}}, "required": ["componentChunkName", "path", "webpackCompilationHash", "result"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"componentChunkName" : "component---src-templates-surgery-js", "path" : "/hospital/A81058", "webpackCompilationHash" : "", "result" : {"data" : {"allEpraccurCsv" : {"edges" : [{"node" : {"field1" : "A81058", "field2" : "COULBY MEDICAL PRACTICE", "field5" : "COULBY MEDICAL PRACTICE", "field6" : "CROPTON WAY,COULBY NEWHAM", "field7" : "MIDDLESBROUGH", "field8" : "", "field9" : "", "field10" : "TS8 0TL", "field13" : "A", "fields" : {"geocoderGeometry" : {"lat" : 54.524805, "lng" : -1.213762}}}}]}}, "pageContext" : {"isCreatedByStatefulCreatePages" : false, "id" : "A81058"}}} | json_instruct | {"type": "object", "properties": {"componentChunkName": {"type": "string"}, "path": {"type": "string"}, "webpackCompilationHash": {"type": "string"}, "result": {"type": "object", "properties": {"data": {"type": "object", "properties": {"allEpraccurCsv": {"type": "object", "properties": {"edges": {"type": "array", "items": {"type": "object", "properties": {"node": {"type": "object", "properties": {"field1": {"type": "string"}, "field2": {"type": "string"}, "field5": {"type": "string"}, "field6": {"type": "string"}, "field7": {"type": "string"}, "field8": {"type": "string"}, "field9": {"type": "string"}, "field10": {"type": "string"}, "field13": {"type": "string"}, "fields": {"type": "object", "properties": {"geocoderGeometry": {"type": "object", "properties": {"lat": {"type": "number"}, "lng": {"type": "number"}}, "required": ["lat", "lng"]}}, "required": ["geocoderGeometry"]}}, "required": ["field1", "field2", "field5", "field6", "field7", "field8", "field9", "field10", "field13", "fields"]}}, "required": ["node"]}}}, "required": ["edges"]}}, "required": ["allEpraccurCsv"]}, "pageContext": {"type": "object", "properties": {"isCreatedByStatefulCreatePages": {"type": "boolean"}, "id": {"type": "string"}}, "required": ["isCreatedByStatefulCreatePages", "id"]}}, "required": ["data", "pageContext"]}}, "required": ["componentChunkName", "path", "webpackCompilationHash", "result"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"@openzeppelin/contracts": {"type": "string"}, "@truffle/hdwallet-provider": {"type": "string"}, "web3": {"type": "string"}}, "required": ["@openzeppelin/contracts", "@truffle/hdwallet-provider", "web3"]}}, "required": ["name", "version", "description", "main", "scripts", "keywords", "author", "license", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "erc20browntoken", "version" : "1.0.0", "description" : "The test network for browntoken deployment to the ethereum blockchain network", "main" : "index.js", "scripts" : {"test" : "npm run test"}, "keywords" : ["ethereum", "browntoken"], "author" : "Safelink (Augustine francis)", "license" : "ISC", "dependencies" : {"@openzeppelin/contracts" : "^4.3.2", "@truffle/hdwallet-provider" : "^1.5.1", "web3" : "^1.6.0"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"@openzeppelin/contracts": {"type": "string"}, "@truffle/hdwallet-provider": {"type": "string"}, "web3": {"type": "string"}}, "required": ["@openzeppelin/contracts", "@truffle/hdwallet-provider", "web3"]}}, "required": ["name", "version", "description", "main", "scripts", "keywords", "author", "license", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"compilerOptions": {"type": "object", "properties": {"baseUrl": {"type": "string"}, "paths": {"type": "object", "properties": {"*": {"type": "array", "items": {"type": "string"}}}, "required": ["*"]}}, "required": ["baseUrl", "paths"]}}, "required": ["compilerOptions"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"compilerOptions" : {"baseUrl" : ".", "paths" : {"*" : ["../../../../../../../var/folders/0t/67r6x8ws4j7388yz34hzv1sh0000gn/T/hugo_cache/modules/filecache/modules/pkg/mod/github.com/wowchemy/wowchemy-hugo-modules/[email protected]/assets/*"]}}} | json_instruct | {"type": "object", "properties": {"compilerOptions": {"type": "object", "properties": {"baseUrl": {"type": "string"}, "paths": {"type": "object", "properties": {"*": {"type": "array", "items": {"type": "string"}}}, "required": ["*"]}}, "required": ["baseUrl", "paths"]}}, "required": ["compilerOptions"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"nom": {"type": "string"}, "circ": {"type": "string"}, "dpt": {"type": "string"}, "inscrits": {"type": "integer"}, "abs": {"type": "integer"}, "votants": {"type": "integer"}, "blancs": {"type": "integer"}, "nuls": {"type": "integer"}, "exp": {"type": "integer"}, "res": {"type": "array", "items": {"type": "object", "properties": {"nuance": {"type": "string"}, "nom": {"type": "string"}, "voix": {"type": "integer"}}, "required": ["nuance", "nom", "voix"]}}}, "required": ["nom", "circ", "dpt", "inscrits", "abs", "votants", "blancs", "nuls", "exp", "res"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"nom" : "Ortiporio", "circ" : "2\u00e8me circonscription", "dpt" : "Haute-Corse", "inscrits" : 152, "abs" : 41, "votants" : 111, "blancs" : 0, "nuls" : 0, "exp" : 111, "res" : [{"nuance" : "REG", "nom" : "M. Jean-F\u00e9lix ACQUAVIVA", "voix" : 103}, {"nuance" : "REM", "nom" : "M. Francis GIUDICI", "voix" : 8}]} | json_instruct | {"type": "object", "properties": {"nom": {"type": "string"}, "circ": {"type": "string"}, "dpt": {"type": "string"}, "inscrits": {"type": "integer"}, "abs": {"type": "integer"}, "votants": {"type": "integer"}, "blancs": {"type": "integer"}, "nuls": {"type": "integer"}, "exp": {"type": "integer"}, "res": {"type": "array", "items": {"type": "object", "properties": {"nuance": {"type": "string"}, "nom": {"type": "string"}, "voix": {"type": "integer"}}, "required": ["nuance", "nom", "voix"]}}}, "required": ["nom", "circ", "dpt", "inscrits", "abs", "votants", "blancs", "nuls", "exp", "res"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"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" : "3321010003", "district_id" : "3321010", "name" : "KEBONBATUR"} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "district_id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "district_id", "name"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"version": {"type": "number"}, "people": {"type": "array", "items": {"type": "object", "properties": {"face_keypoints": {"type": "array", "items": {}}, "pose_keypoints": {"type": "array", "items": {"type": "number"}}, "hand_right_keypoints": {"type": "array", "items": {}}, "hand_left_keypoints": {"type": "array", "items": {}}}, "required": ["face_keypoints", "pose_keypoints", "hand_right_keypoints", "hand_left_keypoints"]}}}, "required": ["version", "people"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"version" : 1.0, "people" : [{"face_keypoints" : [], "pose_keypoints" : [114.393700787402, 45.3818181818182, 0.913199439644814, 106.07874015748, 92.6254545454545, 0.592522233724594, 64.503937007874, 94.4872727272727, 0.459842985495925, 52.4094488188976, 182.923636363636, 0.68827123939991, 36.5354330708661, 120.552727272727, 0.788248494267464, 158.236220472441, 87.7381818181818, 0.541028298437595, 165.03937007874, 167.098181818182, 0.736043602228165, 146.141732283465, 210.618181818182, 0.544544279575348, 65.511811023622, 219.927272727273, 0.230918746674433, 0, 0, 0, 0, 0, 0, 118.173228346457, 221.323636363636, 0.231485567055643, 0, 0, 0, 0, 0, 0, 101.543307086614, 37.0036363636364, 0.920523434877396, 121.196850393701, 35.1418181818182, 0.917004972696304, 83.6535433070866, 40.4945454545455, 0.819218620657921, 131.275590551181, 37.7018181818182, 0.184826474636793], "hand_right_keypoints" : [], "hand_left_keypoints" : []}]} | json_instruct | {"type": "object", "properties": {"version": {"type": "number"}, "people": {"type": "array", "items": {"type": "object", "properties": {"face_keypoints": {"type": "array", "items": {}}, "pose_keypoints": {"type": "array", "items": {"type": "number"}}, "hand_right_keypoints": {"type": "array", "items": {}}, "hand_left_keypoints": {"type": "array", "items": {}}}, "required": ["face_keypoints", "pose_keypoints", "hand_right_keypoints", "hand_left_keypoints"]}}}, "required": ["version", "people"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "img": {"type": "string"}, "links": {"type": "object", "properties": {"website": {"type": "string"}, "linkedin": {"type": "string"}, "github": {"type": "string"}}, "required": ["website", "linkedin", "github"]}, "jobTitle": {"type": "string"}, "location": {"type": "object", "properties": {"city": {"type": "string"}, "state": {"type": "string"}, "country": {"type": "string"}}, "required": ["city", "state", "country"]}}, "required": ["id", "name", "img", "links", "jobTitle", "location"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "e7a5e9de-70d8-4a21-8616-c731d41ac5fc", "name" : "Micah Effiong", "img" : "https://media-exp1.licdn.com/dms/image/C4E03AQHiXqHMZKJO2w/profile-displayphoto-shrink_200_200/0?e=1599091200&v=beta&t=AP3H6fvEkCKlCV1fNyBFWU3Wws_iR4Et9g3_ijo7-Sk", "links" : {"website" : "", "linkedin" : "https://ng.linkedin.com/in/micaiah-effiong", "github" : "https://github.com/micaiah-effiong"}, "jobTitle" : "Web-Developer | NodeJs", "location" : {"city" : "Uyo", "state" : "Akwa Ibom", "country" : "Nigeria"}} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "img": {"type": "string"}, "links": {"type": "object", "properties": {"website": {"type": "string"}, "linkedin": {"type": "string"}, "github": {"type": "string"}}, "required": ["website", "linkedin", "github"]}, "jobTitle": {"type": "string"}, "location": {"type": "object", "properties": {"city": {"type": "string"}, "state": {"type": "string"}, "country": {"type": "string"}}, "required": ["city", "state", "country"]}}, "required": ["id", "name", "img", "links", "jobTitle", "location"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"Department": {"type": "string"}, "Region": {"type": "string"}, "Position": {"type": "string"}, "Name": {"type": "string"}, "\u0414\u0435\u043a\u043b\u0430\u0440\u0430\u0446\u0456\u0457 2013": {"type": "string"}, "\u0414\u0435\u043a\u043b\u0430\u0440\u0430\u0446\u0456\u0457 2014": {"type": "string"}, "\u0414\u0435\u043a\u043b\u0430\u0440\u0430\u0446\u0456\u0457 2015": {"type": "string"}, "\u0414\u0435\u043a\u043b\u0430\u0440\u0430\u0446\u0456\u0457 2016": {"type": "string"}, "\u0424\u043e\u0442\u043e": {"type": "string"}, "\u042f\u043a \u0436\u0438\u0432\u0435": {"type": "string"}, "\u0414\u0435\u043a\u043b\u0430\u0440\u0430\u0446\u0456\u0457 \u0434\u043e\u0431\u0440\u043e\u0447\u0435\u0441\u043d\u043e\u0441\u0442\u0456": {"type": "string"}, "type": {"type": "string"}, "key": {"type": "string"}, "analytics": {"type": "array", "items": {"type": "object", "properties": {"y": {"type": "integer"}, "i": {"type": "integer"}, "ff": {"type": "integer"}, "ffa": {"type": "integer"}}, "required": ["y", "i", "ff", "ffa"]}}, "declarationsLinks": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "year": {"type": "integer"}, "provider": {"type": "string"}}, "required": ["id", "year", "provider"]}}}, "required": ["Department", "Region", "Position", "Name", "\u0414\u0435\u043a\u043b\u0430\u0440\u0430\u0446\u0456\u0457 2013", "\u0414\u0435\u043a\u043b\u0430\u0440\u0430\u0446\u0456\u0457 2014", "\u0414\u0435\u043a\u043b\u0430\u0440\u0430\u0446\u0456\u0457 2015", "\u0414\u0435\u043a\u043b\u0430\u0440\u0430\u0446\u0456\u0457 2016", "\u0424\u043e\u0442\u043e", "\u042f\u043a \u0436\u0438\u0432\u0435", "\u0414\u0435\u043a\u043b\u0430\u0440\u0430\u0446\u0456\u0457 \u0434\u043e\u0431\u0440\u043e\u0447\u0435\u0441\u043d\u043e\u0441\u0442\u0456", "type", "key", "analytics", "declarationsLinks"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"Department" : "\u041f\u0440\u043e\u043a\u0443\u0440\u0430\u0442\u0443\u0440\u0430 \u0414\u043e\u043d\u0435\u0446\u044c\u043a\u043e\u0457 \u043e\u0431\u043b\u0430\u0441\u0442\u0456", "Region" : "\u0414\u043e\u043d\u0435\u0446\u044c\u043a\u0430 \u043e\u0431\u043b\u0430\u0441\u0442\u044c", "Position" : "\u0417\u0430\u0441\u0442\u0443\u043f\u043d\u0438\u043a \u043f\u0440\u043e\u043a\u0443\u0440\u043e\u0440\u0430 \u0414\u043e\u043d\u0435\u0446\u044c\u043a\u043e\u0457 \u043e\u0431\u043b\u0430\u0441\u0442\u0456, \u0441\u0442\u0430\u0440\u0448\u0438\u0439 \u0440\u0430\u0434\u043d\u0438\u043a \u044e\u0441\u0442\u0438\u0446\u0456\u0457", "Name" : "\u0420\u043e\u043c\u0430\u0441\u044c\u043a\u043e \u0412\u0456\u0442\u0430\u043b\u0456\u0439 \u041e\u043b\u0435\u043a\u0441\u0430\u043d\u0434\u0440\u043e\u0432\u0438\u0447", "\u0414\u0435\u043a\u043b\u0430\u0440\u0430\u0446\u0456\u0457 2013" : "", "\u0414\u0435\u043a\u043b\u0430\u0440\u0430\u0446\u0456\u0457 2014" : "", "\u0414\u0435\u043a\u043b\u0430\u0440\u0430\u0446\u0456\u0457 2015" : "https://public.nazk.gov.ua/declaration/5c1ab1e8-e413-4295-9282-f912fa43b28b", "\u0414\u0435\u043a\u043b\u0430\u0440\u0430\u0446\u0456\u0457 2016" : "https://public.nazk.gov.ua/declaration/e12b3c25-b529-47e1-bf8f-e9c713e42420", "\u0424\u043e\u0442\u043e" : "", "\u042f\u043a \u0436\u0438\u0432\u0435" : "", "\u0414\u0435\u043a\u043b\u0430\u0440\u0430\u0446\u0456\u0457 \u0434\u043e\u0431\u0440\u043e\u0447\u0435\u0441\u043d\u043e\u0441\u0442\u0456" : "http://www.gp.gov.ua/integrity_profile/files/9f7b266aa34ce0b71dde842e50864703.pdf", "type" : "prosecutor", "key" : "romasko_vitaliy_oleksandrovich", "analytics" : [{"y" : 2015, "i" : 158549, "ff" : 113, "ffa" : 1}, {"y" : 2016, "m" : 70000, "i" : 236163, "ff" : 161, "ffa" : 2}, {"y" : 2017, "m" : 270000, "i" : 513948, "ff" : 161, "ffa" : 2}], "declarationsLinks" : [{"id" : "nacp_5c1ab1e8-e413-4295-9282-f912fa43b28b", "year" : 2015, "provider" : "declarations.com.ua.opendata"}, {"id" : "nacp_e12b3c25-b529-47e1-bf8f-e9c713e42420", "year" : 2016, "provider" : "declarations.com.ua.opendata"}, {"id" : "nacp_199358aa-35b5-488d-bc6e-ac02e489dc37", "year" : 2017, "provider" : "declarations.com.ua.opendata"}]} | json_instruct | {"type": "object", "properties": {"Department": {"type": "string"}, "Region": {"type": "string"}, "Position": {"type": "string"}, "Name": {"type": "string"}, "\u0414\u0435\u043a\u043b\u0430\u0440\u0430\u0446\u0456\u0457 2013": {"type": "string"}, "\u0414\u0435\u043a\u043b\u0430\u0440\u0430\u0446\u0456\u0457 2014": {"type": "string"}, "\u0414\u0435\u043a\u043b\u0430\u0440\u0430\u0446\u0456\u0457 2015": {"type": "string"}, "\u0414\u0435\u043a\u043b\u0430\u0440\u0430\u0446\u0456\u0457 2016": {"type": "string"}, "\u0424\u043e\u0442\u043e": {"type": "string"}, "\u042f\u043a \u0436\u0438\u0432\u0435": {"type": "string"}, "\u0414\u0435\u043a\u043b\u0430\u0440\u0430\u0446\u0456\u0457 \u0434\u043e\u0431\u0440\u043e\u0447\u0435\u0441\u043d\u043e\u0441\u0442\u0456": {"type": "string"}, "type": {"type": "string"}, "key": {"type": "string"}, "analytics": {"type": "array", "items": {"type": "object", "properties": {"y": {"type": "integer"}, "i": {"type": "integer"}, "ff": {"type": "integer"}, "ffa": {"type": "integer"}}, "required": ["y", "i", "ff", "ffa"]}}, "declarationsLinks": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "year": {"type": "integer"}, "provider": {"type": "string"}}, "required": ["id", "year", "provider"]}}}, "required": ["Department", "Region", "Position", "Name", "\u0414\u0435\u043a\u043b\u0430\u0440\u0430\u0446\u0456\u0457 2013", "\u0414\u0435\u043a\u043b\u0430\u0440\u0430\u0446\u0456\u0457 2014", "\u0414\u0435\u043a\u043b\u0430\u0440\u0430\u0446\u0456\u0457 2015", "\u0414\u0435\u043a\u043b\u0430\u0440\u0430\u0446\u0456\u0457 2016", "\u0424\u043e\u0442\u043e", "\u042f\u043a \u0436\u0438\u0432\u0435", "\u0414\u0435\u043a\u043b\u0430\u0440\u0430\u0446\u0456\u0457 \u0434\u043e\u0431\u0440\u043e\u0447\u0435\u0441\u043d\u043e\u0441\u0442\u0456", "type", "key", "analytics", "declarationsLinks"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "qualified_name": {"type": "string"}, "examine": {"type": "string"}, "members": {"type": "boolean"}, "release_date": {"type": "string"}, "quest": {"type": "boolean"}, "weight": {"type": "number"}, "value": {"type": "integer"}, "tradeable": {"type": "boolean"}, "stackable": {"type": "boolean"}, "noteable": {"type": "boolean"}, "equipable": {"type": "boolean"}, "tradeable_ge": {"type": "boolean"}, "icon": {"type": "string"}, "wiki_url": {"type": "string"}}, "required": ["id", "name", "qualified_name", "examine", "members", "release_date", "quest", "weight", "value", "tradeable", "stackable", "noteable", "equipable", "tradeable_ge", "icon", "wiki_url"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : 9941, "name" : "Pink balloon", "qualified_name" : "Origami balloon (Pink)", "examine" : "An origami balloon.", "members" : true, "release_date" : "2006-11-06", "quest" : true, "weight" : 0.001, "value" : 1, "tradeable" : false, "stackable" : false, "noteable" : false, "equipable" : false, "tradeable_ge" : false, "icon" : "iVBORw0KGgoAAAANSUhEUgAAACQAAAAgCAYAAAB6kdqOAAADlElEQVR4Xt2XfUtTYRjGO9+kj9B3iIggIiiKgoII+iuCiggqJHux9xel7GXV1Mz35Vyarrk2Xbrm5txbrrmmzuVbZvgNrp7rPp61zP6IbUfogpvtPDyH+3eu+37unW3a9H9Iw/phuvTE9leN6GhoQKvVKp+8drQ0mwmmJ3pvfQ5v71t8cLng93gwMjiAYbcbPqcTnp4euJ9b0PWgptxgGlzPLBhqasSoowuhoQ+IBAKIhYL5CA8PC1zQ55N9TssT2KrvlwNKw0B9HUZs7Yi9c2J8wItkLIZUPP5HJMJhJNz9so/7eR/v37J5c6mgNHnSsZ5uAZnwDyETCmE6nf5rTHz0I6Uc5H7e562zltIlDYH2NgFJjwR0mGgEuU+JdWMmEcdUZEz2cT/hwt2OUrmkwfeyHiF7J5KqNybDowLzNTmOhUwGi1OTf8RcekLAsvGogNGl8baWPNTaDP8oHYi20yHC0AEmXcpmsbIwj5XFxd/ie24G81/SmP2cFLCkavDPrzuQeNWAiOVRsVCanBY2KEvABHOpFL5NT0tSgSqA4fq38QSWv+bEQYKzlwgUf1mH0UcPii2dBn9zE+L9LukHPrUkUlAsDxMXAhFwSZVToGZnBZAOJW1tiNW/wMjD6hIAqfpHnb3SnDlVNvaP4c6P+TkspZJ5d1iu7xMpgVpUpV2IRfUeam1G5NlTDNfoM6koIJYsoqYyeyjrG5SyEYjJCbKsymK4Q1cIRIcIMz+mz6REcyPGHtdiqPpusUCUhmCnTayf9nrk9ORLtgogZVIOGSUzYGbV9Ga5o1YLvHdu5mGKBKI0+bmYdLvkKBe6lAdQ14QshMkF/ALTf/NaKWEMaXL8M8Fg3iW6QoC5cEganlCFMDPqhPVdv1oOGEOaHONCKAEIBnTXCmCyg168uVxZThhDq1BqLnFIEoDNzqFpwEx53Oi8WGEGjKFfUAYAYViijMuJlMNuJgyl3o3sdnS3tUrijJpTLBE/OZVNhqE0gemz2ST5QF8vau/ekTVLjf6maCIMpck7NF06fnirAJ04sg39Dgce3r61MUCnjm6X9+d7VVUCdP74TlSc2IXKk7tx5fQegVp7Vxml/QZAIELcOLtPgusmu6RJ0qozewXg9rn9uHfhgATXzhzbYT6Q4Qghai8dQnXFQflOUPaT6UB0gs4QxADimt47ph97Sk9sANGdQhCTYXTpSY1/pxviyvraUFfM0k9ZuME0w7sh0wAAAABJRU5ErkJggg==", "wiki_url" : "https://oldschool.runescape.wiki/w/Origami_balloon#Pink"} | json_instruct | {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "qualified_name": {"type": "string"}, "examine": {"type": "string"}, "members": {"type": "boolean"}, "release_date": {"type": "string"}, "quest": {"type": "boolean"}, "weight": {"type": "number"}, "value": {"type": "integer"}, "tradeable": {"type": "boolean"}, "stackable": {"type": "boolean"}, "noteable": {"type": "boolean"}, "equipable": {"type": "boolean"}, "tradeable_ge": {"type": "boolean"}, "icon": {"type": "string"}, "wiki_url": {"type": "string"}}, "required": ["id", "name", "qualified_name", "examine", "members", "release_date", "quest", "weight", "value", "tradeable", "stackable", "noteable", "equipable", "tradeable_ge", "icon", "wiki_url"], "$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" : "1204040001", "district_id" : "1204040", "name" : "TAPIAN NAULI I"} | 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#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"appeal": {"type": "integer"}, "effect_entries": {"type": "array", "items": {"type": "object", "properties": {"effect": {"type": "string"}, "language": {"type": "object", "properties": {"name": {"type": "string"}, "url": {"type": "string"}}, "required": ["name", "url"]}}, "required": ["effect", "language"]}}, "flavor_text_entries": {"type": "array", "items": {"type": "object", "properties": {"flavor_text": {"type": "string"}, "language": {"type": "object", "properties": {"name": {"type": "string"}, "url": {"type": "string"}}, "required": ["name", "url"]}}, "required": ["flavor_text", "language"]}}, "id": {"type": "integer"}, "jam": {"type": "integer"}}, "required": ["appeal", "effect_entries", "flavor_text_entries", "id", "jam"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"appeal" : 2, "effect_entries" : [{"effect" : "Attempts to jam all Pok\u00e9mon that have appealed this turn.", "language" : {"name" : "en", "url" : "/api/v2/language/9/"}}], "flavor_text_entries" : [{"flavor_text" : "Startles all Pok\u00e9mon that have done their appeals.", "language" : {"name" : "en", "url" : "/api/v2/language/9/"}}], "id" : 8, "jam" : 2} | json_instruct | {"type": "object", "properties": {"appeal": {"type": "integer"}, "effect_entries": {"type": "array", "items": {"type": "object", "properties": {"effect": {"type": "string"}, "language": {"type": "object", "properties": {"name": {"type": "string"}, "url": {"type": "string"}}, "required": ["name", "url"]}}, "required": ["effect", "language"]}}, "flavor_text_entries": {"type": "array", "items": {"type": "object", "properties": {"flavor_text": {"type": "string"}, "language": {"type": "object", "properties": {"name": {"type": "string"}, "url": {"type": "string"}}, "required": ["name", "url"]}}, "required": ["flavor_text", "language"]}}, "id": {"type": "integer"}, "jam": {"type": "integer"}}, "required": ["appeal", "effect_entries", "flavor_text_entries", "id", "jam"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following 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"}, "points": {"type": "number"}, "winner": {"type": "string"}, "loser": {"type": "string"}}, "required": ["n_dim", "n_trials", "objective", "white", "black", "traceback", "best_val", "best_x", "feval_count", "n_trials_instructed", "passing", "completed", "points", "winner", "loser"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"n_dim" : 5, "n_trials" : 130, "objective" : "markowitz_realized_on_cube", "white" : "hyperopt_tpe", "black" : "ultraopt_gbrt", "traceback" : ["passing", "passing"], "best_val" : [-0.03725103727746114, -0.04786145885010051], "best_x" : [[0.10118536454088999, 0.27791729832113843, 0.20325539016400274, 0.22772917976908832, 0.17781524549606698], [0.6656798442788697, 0.01205195756109545, 0.10035332994377555, 0.03308625071689675, 0.1883841366857597]], "feval_count" : [130, 130], "n_trials_instructed" : [130, 130], "passing" : [true, true], "completed" : true, "points" : 0.0, "winner" : "ultraopt_gbrt_cube", "loser" : "hyperopt_tpe_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#"} |
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" : 101809273, "type" : "Feature", "properties" : {"src:alt_label" : "quattroshapes_pg", "src:geom" : "quattroshapes_pg", "wof:geomhash" : "966981092a52a27c4202b8703c8460ac", "wof:id" : 101809273, "wof:repo" : "whosonfirst-data-admin-be"}, "bbox" : [2.82024, 50.85485, 2.82024, 50.85485], "geometry" : {"coordinates" : [2.82024, 50.85485], "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#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"copyright": {"type": "string"}, "url": {"type": "string"}, "email": {"type": "string"}, "format": {"type": "string"}, "gravatar": {"type": "boolean"}, "theme": {"type": "string"}}, "required": ["copyright", "url", "email", "format", "gravatar", "theme"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"copyright" : "Dhaval Kapil", "url" : "https://dhavalkapil.com", "email" : "[email protected]", "format" : "html", "gravatar" : true, "theme" : "rokkitt"} | json_instruct | {"type": "object", "properties": {"copyright": {"type": "string"}, "url": {"type": "string"}, "email": {"type": "string"}, "format": {"type": "string"}, "gravatar": {"type": "boolean"}, "theme": {"type": "string"}}, "required": ["copyright", "url", "email", "format", "gravatar", "theme"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"approvals_before_merge": {"type": "integer"}, "reset_approvals_on_push": {"type": "boolean"}, "disable_overriding_approvers_per_merge_request": {"type": "boolean"}, "merge_requests_author_approval": {"type": "boolean"}, "merge_requests_disable_committers_approval": {"type": "boolean"}}, "required": ["approvals_before_merge", "reset_approvals_on_push", "disable_overriding_approvers_per_merge_request", "merge_requests_author_approval", "merge_requests_disable_committers_approval"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"approvals_before_merge" : 2, "reset_approvals_on_push" : true, "disable_overriding_approvers_per_merge_request" : false, "merge_requests_author_approval" : false, "merge_requests_disable_committers_approval" : false} | json_instruct | {"type": "object", "properties": {"approvals_before_merge": {"type": "integer"}, "reset_approvals_on_push": {"type": "boolean"}, "disable_overriding_approvers_per_merge_request": {"type": "boolean"}, "merge_requests_author_approval": {"type": "boolean"}, "merge_requests_disable_committers_approval": {"type": "boolean"}}, "required": ["approvals_before_merge", "reset_approvals_on_push", "disable_overriding_approvers_per_merge_request", "merge_requests_author_approval", "merge_requests_disable_committers_approval"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"regexes": {"type": "object", "properties": {"operand": {"type": "string"}, "operator": {"type": "string"}, "expression": {"type": "string"}}, "required": ["operand", "operator", "expression"]}, "command_words": {"type": "array", "items": {"type": "string"}}}, "required": ["regexes", "command_words"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"regexes" : {"operand" : "\\d+", "operator" : "(?:times|x|\\*|divided by|\\/|mod(?:ul(?:o|us))?|\\%|plus|\\+|minus|\\-|to the power of|\\^)", "expression" : "\\d+(?:\\s*(?:times|x|\\*|divided by|\\/|mod(?:ul(?:e|o|us))?|\\%|plus|\\+|minus|\\-|to the power of|\\^)\\s*\\d+)*"}, "command_words" : ["what(?:'| i)?s {expression}"]} | json_instruct | {"type": "object", "properties": {"regexes": {"type": "object", "properties": {"operand": {"type": "string"}, "operator": {"type": "string"}, "expression": {"type": "string"}}, "required": ["operand", "operator", "expression"]}, "command_words": {"type": "array", "items": {"type": "string"}}}, "required": ["regexes", "command_words"], "$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" : "131025108201", "text" : "\u5317\u9b4f\u6751\u59d4\u4f1a"}, {"id" : "131025108202", "text" : "\u5317\u826f\u6751\u59d4\u4f1a"}, {"id" : "131025108203", "text" : "\u5357\u9b4f\u6751\u59d4\u4f1a"}, {"id" : "131025108204", "text" : "\u9b4f\u5409\u6751\u59d4\u4f1a"}, {"id" : "131025108205", "text" : "\u53cc\u5e99\u6751\u59d4\u4f1a"}, {"id" : "131025108206", "text" : "\u5f20\u90fd\u6751\u59d4\u4f1a"}, {"id" : "131025108207", "text" : "\u725b\u5e84\u6751\u59d4\u4f1a"}, {"id" : "131025108208", "text" : "\u897f\u675c\u5404\u5e84\u6751\u59d4\u4f1a"}, {"id" : "131025108209", "text" : "\u4e1c\u675c\u5404\u5e84\u6751\u59d4\u4f1a"}, {"id" : "131025108210", "text" : "\u9ad8\u5bb6\u5e84\u6751\u59d4\u4f1a"}, {"id" : "131025108211", "text" : "\u6c49\u7559\u5404\u5e84\u6751\u59d4\u4f1a"}, {"id" : "131025108212", "text" : "\u738b\u9999\u6751\u59d4\u4f1a"}, {"id" : "131025108213", "text" : "\u5357\u961c\u6751\u59d4\u4f1a"}, {"id" : "131025108214", "text" : "\u95e8\u8fdc\u5e84\u6751\u59d4\u4f1a"}, {"id" : "131025108215", "text" : "\u7126\u8fdc\u5e84\u6751\u59d4\u4f1a"}, {"id" : "131025108216", "text" : "\u5218\u8fdc\u5e84\u6751\u59d4\u4f1a"}, {"id" : "131025108217", "text" : "\u51af\u8fdc\u5e84\u6751\u59d4\u4f1a"}, {"id" : "131025108218", "text" : "\u5317\u8521\u6751\u59d4\u4f1a"}, {"id" : "131025108219", "text" : "\u90b1\u5e84\u6751\u59d4\u4f1a"}, {"id" : "131025108220", "text" : "\u5f90\u5e84\u6751\u59d4\u4f1a"}, {"id" : "131025108221", "text" : "\u90d1\u5bb6\u6751\u6751\u59d4\u4f1a"}, {"id" : "131025108222", "text" : "\u5218\u5bb6\u6751\u6751\u59d4\u4f1a"}, {"id" : "131025108223", "text" : "\u524d\u5f20\u6751\u6751\u59d4\u4f1a"}, {"id" : "131025108224", "text" : "\u5e38\u5f20\u6751\u6751\u59d4\u4f1a"}, {"id" : "131025108225", "text" : "\u540e\u5f20\u6751\u6751\u59d4\u4f1a"}, {"id" : "131025108226", "text" : "\u6b63\u6751\u6751\u59d4\u4f1a"}, {"id" : "131025108227", "text" : "\u5357\u8521\u6751\u59d4\u4f1a"}, {"id" : "131025108228", "text" : "\u540e\u5c6f\u6751\u59d4\u4f1a"}, {"id" : "131025108229", "text" : "\u524d\u5c6f\u6751\u59d4\u4f1a"}, {"id" : "131025108230", "text" : "\u9b4f\u80e1\u6751\u59d4\u4f1a"}, {"id" : "131025108231", "text" : "\u82a6\u5bb6\u5e84\u6751\u59d4\u4f1a"}, {"id" : "131025108232", "text" : "\u97e9\u6751\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#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"name": {"type": "string"}, "reason": {"type": "object", "properties": {"react-jsx": {"type": "integer"}}, "required": ["react-jsx"]}, "sources": {"type": "object", "properties": {"dir": {"type": "string"}, "subdirs": {"type": "boolean"}}, "required": ["dir", "subdirs"]}, "bsc-flags": {"type": "array", "items": {"type": "string"}}, "package-specs": {"type": "array", "items": {"type": "object", "properties": {"module": {"type": "string"}, "in-source": {"type": "boolean"}}, "required": ["module", "in-source"]}}, "suffix": {"type": "string"}, "namespace": {"type": "boolean"}, "bs-dependencies": {"type": "array", "items": {"type": "string"}}, "refmt": {"type": "integer"}}, "required": ["name", "reason", "sources", "bsc-flags", "package-specs", "suffix", "namespace", "bs-dependencies", "refmt"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "1BackGestionCours", "reason" : {"react-jsx" : 3}, "sources" : {"dir" : "src", "subdirs" : true}, "bsc-flags" : ["-bs-super-errors", "-bs-no-version-header"], "package-specs" : [{"module" : "commonjs", "in-source" : true}], "suffix" : ".bs.js", "namespace" : true, "bs-dependencies" : ["bs-express", "bs-axios", "bs-knex", "@glennsl/bs-json", "bs-winston", "bs-amqp-connection-manager", "@beem812/bs-jsonwebtoken"], "refmt" : 3} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "reason": {"type": "object", "properties": {"react-jsx": {"type": "integer"}}, "required": ["react-jsx"]}, "sources": {"type": "object", "properties": {"dir": {"type": "string"}, "subdirs": {"type": "boolean"}}, "required": ["dir", "subdirs"]}, "bsc-flags": {"type": "array", "items": {"type": "string"}}, "package-specs": {"type": "array", "items": {"type": "object", "properties": {"module": {"type": "string"}, "in-source": {"type": "boolean"}}, "required": ["module", "in-source"]}}, "suffix": {"type": "string"}, "namespace": {"type": "boolean"}, "bs-dependencies": {"type": "array", "items": {"type": "string"}}, "refmt": {"type": "integer"}}, "required": ["name", "reason", "sources", "bsc-flags", "package-specs", "suffix", "namespace", "bs-dependencies", "refmt"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"parent": {"type": "string"}, "name": {"type": "string"}, "flags": {"type": "integer"}, "props": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "name": {"type": "string"}, "flags": {"type": "integer"}}, "required": ["type", "name", "flags"]}}}, "required": ["parent", "name", "flags", "props"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"parent" : "effectTrackBase", "name" : "effectTrack", "flags" : 2, "props" : [{"type" : "array:handle:effectTrackItem", "name" : "items", "flags" : 6627016704}]} | json_instruct | {"type": "object", "properties": {"parent": {"type": "string"}, "name": {"type": "string"}, "flags": {"type": "integer"}, "props": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "name": {"type": "string"}, "flags": {"type": "integer"}}, "required": ["type", "name", "flags"]}}}, "required": ["parent", "name", "flags", "props"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"ta_runs": {"type": "integer"}, "n_configs": {"type": "integer"}, "wallclock_time_used": {"type": "number"}, "ta_time_used": {"type": "number"}, "inc_changed": {"type": "integer"}, "_n_configs_per_intensify": {"type": "integer"}, "_n_calls_of_intensify": {"type": "integer"}, "_ema_n_configs_per_intensifiy": {"type": "number"}, "_EMA_ALPHA": {"type": "number"}}, "required": ["ta_runs", "n_configs", "wallclock_time_used", "ta_time_used", "inc_changed", "_n_configs_per_intensify", "_n_calls_of_intensify", "_ema_n_configs_per_intensifiy", "_EMA_ALPHA"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"ta_runs" : 158, "n_configs" : 43, "wallclock_time_used" : 1044.5444946289062, "ta_time_used" : 3.7022880000000007, "inc_changed" : 3, "_n_configs_per_intensify" : 0, "_n_calls_of_intensify" : 22, "_ema_n_configs_per_intensifiy" : 0.0, "_EMA_ALPHA" : 0.2} | json_instruct | {"type": "object", "properties": {"ta_runs": {"type": "integer"}, "n_configs": {"type": "integer"}, "wallclock_time_used": {"type": "number"}, "ta_time_used": {"type": "number"}, "inc_changed": {"type": "integer"}, "_n_configs_per_intensify": {"type": "integer"}, "_n_calls_of_intensify": {"type": "integer"}, "_ema_n_configs_per_intensifiy": {"type": "number"}, "_EMA_ALPHA": {"type": "number"}}, "required": ["ta_runs", "n_configs", "wallclock_time_used", "ta_time_used", "inc_changed", "_n_configs_per_intensify", "_n_calls_of_intensify", "_ema_n_configs_per_intensifiy", "_EMA_ALPHA"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"author": {"type": "string"}, "version": {"type": "string"}, "server_scripts": {"type": "array", "items": {"type": "string"}}, "client_scripts": {"type": "array", "items": {"type": "string"}}, "files": {"type": "array", "items": {}}}, "required": ["author", "version", "server_scripts", "client_scripts", "files"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"author" : "Alexandre M. - AlexMog", "version" : "1.0.0a", "server_scripts" : ["server.lua"], "client_scripts" : ["client.lua"], "files" : []} | json_instruct | {"type": "object", "properties": {"author": {"type": "string"}, "version": {"type": "string"}, "server_scripts": {"type": "array", "items": {"type": "string"}}, "client_scripts": {"type": "array", "items": {"type": "string"}}, "files": {"type": "array", "items": {}}}, "required": ["author", "version", "server_scripts", "client_scripts", "files"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"0-17": {"type": "string"}, "18-44": {"type": "string"}, "45-64": {"type": "string"}, "65-74": {"type": "string"}, "75+": {"type": "string"}}, "required": ["0-17", "18-44", "45-64", "65-74", "75+"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"0-17" : "11", "18-44" : "682", "45-64" : "3873", "65-74" : "4336", "75+" : "8448"} | json_instruct | {"type": "object", "properties": {"0-17": {"type": "string"}, "18-44": {"type": "string"}, "45-64": {"type": "string"}, "65-74": {"type": "string"}, "75+": {"type": "string"}}, "required": ["0-17", "18-44", "45-64", "65-74", "75+"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"relation": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}, "pageTitle": {"type": "string"}, "title": {"type": "string"}, "url": {"type": "string"}, "hasHeader": {"type": "boolean"}, "headerPosition": {"type": "string"}, "tableType": {"type": "string"}, "tableNum": {"type": "integer"}, "s3Link": {"type": "string"}, "recordEndOffset": {"type": "integer"}, "recordOffset": {"type": "integer"}, "tableOrientation": {"type": "string"}, "TableContextTimeStampAfterTable": {"type": "string"}, "lastModified": {"type": "string"}, "textBeforeTable": {"type": "string"}, "textAfterTable": {"type": "string"}, "hasKeyColumn": {"type": "boolean"}, "keyColumnIndex": {"type": "integer"}, "headerRowIndex": {"type": "integer"}}, "required": ["relation", "pageTitle", "title", "url", "hasHeader", "headerPosition", "tableType", "tableNum", "s3Link", "recordEndOffset", "recordOffset", "tableOrientation", "TableContextTimeStampAfterTable", "lastModified", "textBeforeTable", "textAfterTable", "hasKeyColumn", "keyColumnIndex", "headerRowIndex"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"relation" : [["", "1", "2", "3", "4", "5", "6", "7", "8", "9"], ["Name", "Sternklang", "They Are Watching Through My Eyes", "Skeletons of Steel", "Neuropol Underground Infrastructure", "Cryogenic Ceremonies", "Among the Tormented", "Tiefe - Floating Corpses Odor", "Becoming (Segmented Minds)", "When All Hope Was Dying"], ["Album", "Sternklang", "Neuropol", "Neuropol", "Neuropol", "Neuropol", "Neuropol", "Neuropol", "Neuropol", "Neuropol"], ["Time", "1:11:07", "10:14", "8:45", "8:53", "8:54", "6:36", "8:39", "10:56", "6:06"], ["Price", "Album Only", "Album Only", "0,99 \u20ac", "0,99 \u20ac", "0,99 \u20ac", "0,99 \u20ac", "0,99 \u20ac", "Album Only", "0,99 \u20ac"], ["", "View In iTunes", "View In iTunes", "View In iTunes", "View In iTunes", "View In iTunes", "View In iTunes", "View In iTunes", "View In iTunes", "View In iTunes"]], "pageTitle" : "iTunes - Music - Sternklang by Tholen", "title" : "", "url" : "https://itunes.apple.com/cy/album/sternklang/id273460152", "hasHeader" : true, "headerPosition" : "FIRST_ROW", "tableType" : "RELATION", "tableNum" : 2, "s3Link" : "common-crawl/crawl-data/CC-MAIN-2015-32/segments/1438042988458.74/warc/CC-MAIN-20150728002308-00309-ip-10-236-191-2.ec2.internal.warc.gz", "recordEndOffset" : 868553339, "recordOffset" : 868528725, "tableOrientation" : "HORIZONTAL", "TableContextTimeStampAfterTable" : "{90251=Copyright \u00a9 2014 Apple Inc. All rights reserved.}", "lastModified" : "Sat, 01 Aug 2015 05:17:38 GMT", "textBeforeTable" : "View In iTunes Neuropol 2. View In iTunes Sternklang 1. Top Albums and Songs by Tholen 1 Song View In iTunes Album Only 1:11:07 Tholen Sternklang", "textAfterTable" : "Listeners Also Bought Summoning the Void Visions View In iTunes Of Darkness and Re-Creation Svartsinn View In iTunes Whispers of the Approaching Wastefulness New Risen Throne View In iTunes", "hasKeyColumn" : true, "keyColumnIndex" : 1, "headerRowIndex" : 0} | json_instruct | {"type": "object", "properties": {"relation": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}, "pageTitle": {"type": "string"}, "title": {"type": "string"}, "url": {"type": "string"}, "hasHeader": {"type": "boolean"}, "headerPosition": {"type": "string"}, "tableType": {"type": "string"}, "tableNum": {"type": "integer"}, "s3Link": {"type": "string"}, "recordEndOffset": {"type": "integer"}, "recordOffset": {"type": "integer"}, "tableOrientation": {"type": "string"}, "TableContextTimeStampAfterTable": {"type": "string"}, "lastModified": {"type": "string"}, "textBeforeTable": {"type": "string"}, "textAfterTable": {"type": "string"}, "hasKeyColumn": {"type": "boolean"}, "keyColumnIndex": {"type": "integer"}, "headerRowIndex": {"type": "integer"}}, "required": ["relation", "pageTitle", "title", "url", "hasHeader", "headerPosition", "tableType", "tableNum", "s3Link", "recordEndOffset", "recordOffset", "tableOrientation", "TableContextTimeStampAfterTable", "lastModified", "textBeforeTable", "textAfterTable", "hasKeyColumn", "keyColumnIndex", "headerRowIndex"], "$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" : 96515, "cartId" : "5dc554aa-d40d-419d-a768-c042122fbeac", "preferredProducts" : [4833, 1797], "productReviews" : [{"productId" : 4326, "reviewText" : "It only works when I'm Chad.", "reviewDate" : "2019-03-05T02:51:31.2181539+02:00"}, {"productId" : 2647, "reviewText" : "This Handmade works so well. It hungrily improves my basketball by a lot.", "reviewDate" : "2019-07-09T09:31:05.3905517+03:00"}]} | json_instruct | {"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {"type": "integer"}}, "productReviews": {"type": "array", "items": {"type": "object", "properties": {"productId": {"type": "integer"}, "reviewText": {"type": "string"}, "reviewDate": {"type": "string"}}, "required": ["productId", "reviewText", "reviewDate"]}}}, "required": ["userId", "cartId", "preferredProducts", "productReviews"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"h": {"type": "array", "items": {"type": "object", "properties": {"d": {"type": "array", "items": {"type": "object", "properties": {"e": {"type": "array", "items": {"type": "string"}}, "f": {"type": "string"}}, "required": ["e", "f"]}}}, "required": ["d"]}}, "stem": {"type": "string"}, "t": {"type": "string"}}, "required": ["h", "stem", "t"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"h" : [{"d" : [{"e" : ["\ufff9`Sapikalonaaw~ `no~ `posi~ `to~ `'edo~.\ufffa\ufffb\u8c93\u60f3\u6349\u5f04\u8001\u9f20\u3002"], "f" : "\u60f3\u6349\u5f04\u3001\u8abf\u6232\u4ed6\u4eba\u3002"}]}], "stem" : "kalona", "t" : "sapikalonaaw"} | json_instruct | {"type": "object", "properties": {"h": {"type": "array", "items": {"type": "object", "properties": {"d": {"type": "array", "items": {"type": "object", "properties": {"e": {"type": "array", "items": {"type": "string"}}, "f": {"type": "string"}}, "required": ["e", "f"]}}}, "required": ["d"]}}, "stem": {"type": "string"}, "t": {"type": "string"}}, "required": ["h", "stem", "t"], "$schema": "http://json-schema.org/draft-07/schema#"} |
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"}, "engines": {"type": "object", "properties": {"node": {"type": "string"}, "npm": {"type": "string"}}, "required": ["node", "npm"]}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "start": {"type": "string"}}, "required": ["test", "start"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "keywords": {"type": "array", "items": {}}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "dependencies": {"type": "object", "properties": {"bcryptjs": {"type": "string"}, "body-parser": {"type": "string"}, "cors": {"type": "string"}, "dotenv": {"type": "string"}, "express": {"type": "string"}, "express-unless": {"type": "string"}, "jsonwebtoken": {"type": "string"}, "mongoose": {"type": "string"}, "mongoose-unique-validator": {"type": "string"}, "multer": {"type": "string"}, "serve": {"type": "string"}}, "required": ["bcryptjs", "body-parser", "cors", "dotenv", "express", "express-unless", "jsonwebtoken", "mongoose", "mongoose-unique-validator", "multer", "serve"]}, "devDependencies": {"type": "object", "properties": {"nodemon": {"type": "string"}}, "required": ["nodemon"]}}, "required": ["name", "version", "description", "main", "engines", "scripts", "repository", "keywords", "author", "license", "bugs", "homepage", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "appointment_api", "version" : "1.0.0", "description" : "* appointment booking system API that will allow user's to book their appointment ahead of time before going to the service provider.", "main" : "index.js", "engines" : {"node" : "17.4.0", "npm" : "8.3.1"}, "scripts" : {"test" : "echo \"Error: no test specified\" && exit 1", "start" : "node index.js "}, "repository" : {"type" : "git", "url" : "git+https://github.com/BasharTaamneh/appointment_api.git"}, "keywords" : [], "author" : "", "license" : "ISC", "bugs" : {"url" : "https://github.com/BasharTaamneh/appointment_api/issues"}, "homepage" : "https://github.com/BasharTaamneh/appointment_api#readme", "dependencies" : {"bcryptjs" : "^2.4.3", "body-parser" : "^1.19.1", "cors" : "^2.8.5", "dotenv" : "^16.0.0", "express" : "^4.17.2", "express-unless" : "^1.0.0", "jsonwebtoken" : "^8.5.1", "mongoose" : "^6.2.0", "mongoose-unique-validator" : "^3.0.0", "multer" : "^1.4.4", "serve" : "^13.0.2"}, "devDependencies" : {"nodemon" : "^2.0.15"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "engines": {"type": "object", "properties": {"node": {"type": "string"}, "npm": {"type": "string"}}, "required": ["node", "npm"]}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "start": {"type": "string"}}, "required": ["test", "start"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "keywords": {"type": "array", "items": {}}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "dependencies": {"type": "object", "properties": {"bcryptjs": {"type": "string"}, "body-parser": {"type": "string"}, "cors": {"type": "string"}, "dotenv": {"type": "string"}, "express": {"type": "string"}, "express-unless": {"type": "string"}, "jsonwebtoken": {"type": "string"}, "mongoose": {"type": "string"}, "mongoose-unique-validator": {"type": "string"}, "multer": {"type": "string"}, "serve": {"type": "string"}}, "required": ["bcryptjs", "body-parser", "cors", "dotenv", "express", "express-unless", "jsonwebtoken", "mongoose", "mongoose-unique-validator", "multer", "serve"]}, "devDependencies": {"type": "object", "properties": {"nodemon": {"type": "string"}}, "required": ["nodemon"]}}, "required": ["name", "version", "description", "main", "engines", "scripts", "repository", "keywords", "author", "license", "bugs", "homepage", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"build": {"type": "string"}, "watch": {"type": "string"}}, "required": ["build", "watch"]}, "author": {"type": "string"}, "license": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"babel-cli": {"type": "string"}, "babel-loader": {"type": "string"}, "babel-preset-es2015": {"type": "string"}, "keyboardevent-key-polyfill": {"type": "string"}, "webpack": {"type": "string"}}, "required": ["babel-cli", "babel-loader", "babel-preset-es2015", "keyboardevent-key-polyfill", "webpack"]}}, "required": ["name", "version", "description", "main", "scripts", "author", "license", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "gb", "version" : "1.0.0", "description" : "", "main" : "dist/bundle.js", "scripts" : {"build" : "webpack", "watch" : "webpack --watch"}, "author" : "Matt Walsh <[email protected]> (https://walsh9.net)", "license" : "MIT", "devDependencies" : {"babel-cli" : "^6.16.0", "babel-loader" : "^6.2.5", "babel-preset-es2015" : "^6.16.0", "keyboardevent-key-polyfill" : "^1.0.2", "webpack" : "^1.13.2"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"build": {"type": "string"}, "watch": {"type": "string"}}, "required": ["build", "watch"]}, "author": {"type": "string"}, "license": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"babel-cli": {"type": "string"}, "babel-loader": {"type": "string"}, "babel-preset-es2015": {"type": "string"}, "keyboardevent-key-polyfill": {"type": "string"}, "webpack": {"type": "string"}}, "required": ["babel-cli", "babel-loader", "babel-preset-es2015", "keyboardevent-key-polyfill", "webpack"]}}, "required": ["name", "version", "description", "main", "scripts", "author", "license", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"cam/image_array": {"type": "string"}, "user/angle": {"type": "number"}, "user/throttle": {"type": "number"}, "user/mode": {"type": "string"}, "pos/pos_x": {"type": "number"}, "pos/pos_y": {"type": "number"}, "pos/pos_z": {"type": "number"}, "pos/speed": {"type": "number"}, "pos/cte": {"type": "number"}, "milliseconds": {"type": "integer"}}, "required": ["cam/image_array", "user/angle", "user/throttle", "user/mode", "pos/pos_x", "pos/pos_y", "pos/pos_z", "pos/speed", "pos/cte", "milliseconds"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"cam/image_array" : "407_cam-image_array_.jpg", "user/angle" : 0.828, "user/throttle" : 0.724, "user/mode" : "user", "pos/pos_x" : 81.21429, "pos/pos_y" : 0.5546423, "pos/pos_z" : -10.66234, "pos/speed" : 9.458962, "pos/cte" : -7.011063, "milliseconds" : 23942} | json_instruct | {"type": "object", "properties": {"cam/image_array": {"type": "string"}, "user/angle": {"type": "number"}, "user/throttle": {"type": "number"}, "user/mode": {"type": "string"}, "pos/pos_x": {"type": "number"}, "pos/pos_y": {"type": "number"}, "pos/pos_z": {"type": "number"}, "pos/speed": {"type": "number"}, "pos/cte": {"type": "number"}, "milliseconds": {"type": "integer"}}, "required": ["cam/image_array", "user/angle", "user/throttle", "user/mode", "pos/pos_x", "pos/pos_y", "pos/pos_z", "pos/speed", "pos/cte", "milliseconds"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"parent": {"type": "string"}}, "required": ["parent"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"parent" : "conquest:block/oak_platform_sphere"} | json_instruct | {"type": "object", "properties": {"parent": {"type": "string"}}, "required": ["parent"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"name": {"type": "string"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"annotations": {"type": "array", "items": {}}, "type": {"type": "string"}, "typeProperties": {"type": "object", "properties": {"host": {"type": "string"}, "userId": {"type": "string"}, "encryptedCredential": {"type": "string"}}, "required": ["host", "userId", "encryptedCredential"]}, "connectVia": {"type": "object", "properties": {"referenceName": {"type": "string"}, "type": {"type": "string"}}, "required": ["referenceName", "type"]}}, "required": ["annotations", "type", "typeProperties", "connectVia"]}}, "required": ["name", "type", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "FileServer1", "type" : "Microsoft.DataFactory/factories/linkedservices", "properties" : {"annotations" : [], "type" : "FileServer", "typeProperties" : {"host" : "\\\\DESKTOP-I2LC4VQ\\Users\\Ayush\\OneDrive", "userId" : "ayush", "encryptedCredential" : "eyJDcmVkZW50aWFsSWQiOiI0NDcxMzgxYS02YjdlLTRiMjktOWM0NS01MDA5NDg1ODM1MGMiLCJWZXJzaW9uIjoiMi4wIiwiQ2xhc3NUeXBlIjoiTWljcm9zb2Z0LkRhdGFQcm94eS5Db3JlLkludGVyU2VydmljZURhdGFDb250cmFjdC5DcmVkZW50aWFsU1UwNkNZMTQifQ=="}, "connectVia" : {"referenceName" : "integrationRuntime2", "type" : "IntegrationRuntimeReference"}}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"annotations": {"type": "array", "items": {}}, "type": {"type": "string"}, "typeProperties": {"type": "object", "properties": {"host": {"type": "string"}, "userId": {"type": "string"}, "encryptedCredential": {"type": "string"}}, "required": ["host", "userId", "encryptedCredential"]}, "connectVia": {"type": "object", "properties": {"referenceName": {"type": "string"}, "type": {"type": "string"}}, "required": ["referenceName", "type"]}}, "required": ["annotations", "type", "typeProperties", "connectVia"]}}, "required": ["name", "type", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "object", "properties": {"en": {"type": "string"}}, "required": ["en"]}, "country": {"type": "string"}, "region": {"type": "string"}, "identifiers": {"type": "object", "properties": {"wmo": {"type": "string"}, "usaf": {"type": "string"}}, "required": ["wmo", "usaf"]}, "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" : "02984", "name" : {"en" : "Bagaskar"}, "country" : "FI", "region" : "ES", "identifiers" : {"wmo" : "02984", "usaf" : "029840"}, "location" : {"latitude" : 59.9333, "longitude" : 24.0167, "elevation" : 10}, "timezone" : "Europe/Helsinki"} | 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": {"wmo": {"type": "string"}, "usaf": {"type": "string"}}, "required": ["wmo", "usaf"]}, "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#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"inp1": {"type": "array", "items": {"type": "object", "properties": {"instr": {"type": "string"}}, "required": ["instr"]}}, "inp2": {"type": "array", "items": {"type": "string"}}}, "required": ["inp1", "inp2"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"inp1" : [{"instr" : "one"}, {"instr" : "two"}], "inp2" : ["three", "four"]} | json_instruct | {"type": "object", "properties": {"inp1": {"type": "array", "items": {"type": "object", "properties": {"instr": {"type": "string"}}, "required": ["instr"]}}, "inp2": {"type": "array", "items": {"type": "string"}}}, "required": ["inp1", "inp2"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"latest_version": {"type": "array", "items": {"type": "string"}}, "meta": {"type": "object", "properties": {"homepage": {"type": "string"}, "license": {"type": "string"}}, "required": ["homepage", "license"]}, "versions": {"type": "object", "properties": {"0.1": {"type": "object", "properties": {"sha256": {"type": "string"}, "url": {"type": "string"}}, "required": ["sha256", "url"]}, "0.2": {"type": "object", "properties": {"sha256": {"type": "string"}, "url": {"type": "string"}}, "required": ["sha256", "url"]}, "0.3": {"type": "object", "properties": {"sha256": {"type": "string"}, "url": {"type": "string"}}, "required": ["sha256", "url"]}, "0.4": {"type": "object", "properties": {"sha256": {"type": "string"}, "url": {"type": "string"}}, "required": ["sha256", "url"]}, "0.5": {"type": "object", "properties": {"sha256": {"type": "string"}, "url": {"type": "string"}}, "required": ["sha256", "url"]}, "0.5.post1": {"type": "object", "properties": {"sha256": {"type": "string"}, "url": {"type": "string"}}, "required": ["sha256", "url"]}}, "required": ["0.1", "0.2", "0.3", "0.4", "0.5", "0.5.post1"]}}, "required": ["latest_version", "meta", "versions"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"latest_version" : ["0.5.post1"], "meta" : {"homepage" : "https://github.com/cfobel/ipython-helpers", "license" : "LGPL-3.0"}, "versions" : {"0.1" : {"sha256" : "dd6dc5d2cd6d60f44adac2fd87d81d7d752b629b2016d249e4d5e27cd270c9f1", "url" : "https://files.pythonhosted.org/packages/50/ed/ba6899f2864a0ab3de541eeaf4ae384a4074d7bce7e89678f0b46e983a4a/ipython-helpers-0.1.tar.gz"}, "0.2" : {"sha256" : "3d2495bcf7bb103832dff3a52b172736851cc0b3321b072087a5fa91c6efc49f", "url" : "https://files.pythonhosted.org/packages/82/b1/109d7804ae9d5b62d4daee74c65513a7375351eb72e7dcc4b12d5b5b1eba/ipython-helpers-0.2.tar.gz"}, "0.3" : {"sha256" : "594cfb9bd220ca81c2365614d0f414ff08e09bd7b092150490c3678a3badd6cf", "url" : "https://files.pythonhosted.org/packages/0e/41/b607cd5175ff386424c4bcf2963241f4736e1223efa424743c6d1c59948d/ipython-helpers-0.3.tar.gz"}, "0.4" : {"sha256" : "993fc46ebdae1a146ad9237bd68f83c0ee66e55ebbb4319b81e926a1ee1ffc35", "url" : "https://files.pythonhosted.org/packages/f5/78/a6ba9c481188fbc98c92a220d155e7e35f8cdaef24d5a56fa7e8d489f134/ipython-helpers-0.4.tar.gz"}, "0.5" : {"sha256" : "40bca9d791feea5b1ff645216ee9a4154fe0722228d20ca69e52818a9d7fcd92", "url" : "https://files.pythonhosted.org/packages/0a/47/30e9827c8bc9a5262087500745d558a54bf8e0b20c48301e03ba5c6bdfe9/ipython-helpers-0.5.zip"}, "0.5.post1" : {"sha256" : "9f49508ad1773481b8f59f45811a5f8f2a13f7442fe171d9e6eb8308eb1eec2d", "url" : "https://files.pythonhosted.org/packages/d6/43/86a30c44063511e0c129a44b6167417bacd755b51cad23c8ff2d374ab051/ipython-helpers-0.5.post1.zip"}}} | json_instruct | {"type": "object", "properties": {"latest_version": {"type": "array", "items": {"type": "string"}}, "meta": {"type": "object", "properties": {"homepage": {"type": "string"}, "license": {"type": "string"}}, "required": ["homepage", "license"]}, "versions": {"type": "object", "properties": {"0.1": {"type": "object", "properties": {"sha256": {"type": "string"}, "url": {"type": "string"}}, "required": ["sha256", "url"]}, "0.2": {"type": "object", "properties": {"sha256": {"type": "string"}, "url": {"type": "string"}}, "required": ["sha256", "url"]}, "0.3": {"type": "object", "properties": {"sha256": {"type": "string"}, "url": {"type": "string"}}, "required": ["sha256", "url"]}, "0.4": {"type": "object", "properties": {"sha256": {"type": "string"}, "url": {"type": "string"}}, "required": ["sha256", "url"]}, "0.5": {"type": "object", "properties": {"sha256": {"type": "string"}, "url": {"type": "string"}}, "required": ["sha256", "url"]}, "0.5.post1": {"type": "object", "properties": {"sha256": {"type": "string"}, "url": {"type": "string"}}, "required": ["sha256", "url"]}}, "required": ["0.1", "0.2", "0.3", "0.4", "0.5", "0.5.post1"]}}, "required": ["latest_version", "meta", "versions"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"header": {"type": "object", "properties": {"protoclVersion": {"type": "object", "properties": {"protocolVersion": {"type": "string"}}, "required": ["protocolVersion"]}}, "required": ["protoclVersion"]}, "body": {"type": "object", "properties": {"rx_obcTime": {"type": "string"}, "rx_recvCnt": {"type": "string"}, "rx_gpsDate": {"type": "string"}, "rx_gpsTime": {"type": "string"}, "rx_lat": {"type": "number"}, "rx_long": {"type": "number"}, "rx_alt": {"type": "string"}, "rx_temp": {"type": "string"}, "rx_airP": {"type": "string"}, "rx_bSize": {"type": "string"}, "tx_id": {"type": "string"}, "tx_cnt": {"type": "string"}, "payload": {"type": "integer"}, "tx_gpsTime": {"type": "string"}, "tx_lat": {"type": "number"}, "tx_long": {"type": "number"}, "tx_alt": {"type": "integer"}}, "required": ["rx_obcTime", "rx_recvCnt", "rx_gpsDate", "rx_gpsTime", "rx_lat", "rx_long", "rx_alt", "rx_temp", "rx_airP", "rx_bSize", "tx_id", "tx_cnt", "payload", "tx_gpsTime", "tx_lat", "tx_long", "tx_alt"]}}, "required": ["header", "body"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"header" : {"protoclVersion" : {"protocolVersion" : "0.0.2"}}, "body" : {"rx_obcTime" : "512739", "rx_recvCnt" : "67", "rx_gpsDate" : "100319", "rx_gpsTime" : "61301", "rx_lat" : 35.71066, "rx_long" : 139.752496, "rx_alt" : "22", "rx_temp" : "30.33", "rx_airP" : "101632", "rx_bSize" : "33", "tx_id" : "23", "tx_cnt" : "70", "payload" : 1, "tx_gpsTime" : "61251", "tx_lat" : 35.710676, "tx_long" : 139.752576, "tx_alt" : 4}} | json_instruct | {"type": "object", "properties": {"header": {"type": "object", "properties": {"protoclVersion": {"type": "object", "properties": {"protocolVersion": {"type": "string"}}, "required": ["protocolVersion"]}}, "required": ["protoclVersion"]}, "body": {"type": "object", "properties": {"rx_obcTime": {"type": "string"}, "rx_recvCnt": {"type": "string"}, "rx_gpsDate": {"type": "string"}, "rx_gpsTime": {"type": "string"}, "rx_lat": {"type": "number"}, "rx_long": {"type": "number"}, "rx_alt": {"type": "string"}, "rx_temp": {"type": "string"}, "rx_airP": {"type": "string"}, "rx_bSize": {"type": "string"}, "tx_id": {"type": "string"}, "tx_cnt": {"type": "string"}, "payload": {"type": "integer"}, "tx_gpsTime": {"type": "string"}, "tx_lat": {"type": "number"}, "tx_long": {"type": "number"}, "tx_alt": {"type": "integer"}}, "required": ["rx_obcTime", "rx_recvCnt", "rx_gpsDate", "rx_gpsTime", "rx_lat", "rx_long", "rx_alt", "rx_temp", "rx_airP", "rx_bSize", "tx_id", "tx_cnt", "payload", "tx_gpsTime", "tx_lat", "tx_long", "tx_alt"]}}, "required": ["header", "body"], "$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 PONTIANAK", "originalFilename" : "pas foto haris.jpg", "namaPartai" : "Partai Bulan Bintang", "id" : 56110, "noUrut" : 1, "nama" : "ABDUL HARITS, S.Kom", "stringJenisKelamin" : "Laki-Laki"}, {"namaKab" : "KOTA PONTIANAK", "originalFilename" : "Pas Foto Ahmaddin nawawi 2.jpg", "namaPartai" : "Partai Bulan Bintang", "id" : 261870, "noUrut" : 2, "nama" : "AHMADDIN NAWAWI", "stringJenisKelamin" : "Laki-Laki"}, {"namaKab" : "KOTA PONTIANAK", "originalFilename" : "pas foto octi lianda gianti new.jpg", "namaPartai" : "Partai Bulan Bintang", "id" : 285602, "noUrut" : 3, "nama" : "OCTI LIANDA GIANTI, S.E", "stringJenisKelamin" : "Perempuan"}, {"namaKab" : "KOTA PONTIANAK", "originalFilename" : "pas foto suparman jaya new.jpg", "namaPartai" : "Partai Bulan Bintang", "id" : 280651, "noUrut" : 4, "nama" : "SUPARMAN JAYA, S.H.I", "stringJenisKelamin" : "Laki-Laki"}, {"namaKab" : "KOTA PONTIANAK", "originalFilename" : "pas foto m thaufik new.jpg", "namaPartai" : "Partai Bulan Bintang", "id" : 284571, "noUrut" : 5, "nama" : "MUHAMMAD THAUFIK, A.Md", "stringJenisKelamin" : "Laki-Laki"}, {"namaKab" : "KOTA PONTIANAK", "originalFilename" : "Pas foto Harinawati 2.jpg", "namaPartai" : "Partai Bulan Bintang", "id" : 261599, "noUrut" : 6, "nama" : "HARINAWATI", "stringJenisKelamin" : "Perempuan"}, {"namaKab" : "KOTA PONTIANAK", "originalFilename" : "pas foto rika 2.jpg", "namaPartai" : "Partai Bulan Bintang", "id" : 299341, "noUrut" : 7, "nama" : "RIKA MARJUITA", "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#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"900026851": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900026852": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900026853": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}}, "required": ["900026851", "900026852", "900026853"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"900026851" : {"nama" : "TPS 1", "dapil" : [1201, 11203, 2120703]}, "900026852" : {"nama" : "TPS 2", "dapil" : [1201, 11203, 2120703]}, "900026853" : {"nama" : "TPS 3", "dapil" : [1201, 11203, 2120703]}} | json_instruct | {"type": "object", "properties": {"900026851": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900026852": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900026853": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}}, "required": ["900026851", "900026852", "900026853"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "array", "items": {"type": "object", "properties": {"year": {"type": "integer"}, "sex": {"type": "string"}, "n": {"type": "integer"}, "prop": {"type": "number"}}, "required": ["year", "sex", "n", "prop"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"year" : 1971, "sex" : "F", "n" : 8, "prop" : 4.57e-06}, {"year" : 1977, "sex" : "F", "n" : 5, "prop" : 3.04e-06}, {"year" : 1979, "sex" : "F", "n" : 5, "prop" : 2.9e-06}, {"year" : 1980, "sex" : "F", "n" : 8, "prop" : 4.49e-06}, {"year" : 1981, "sex" : "F", "n" : 13, "prop" : 7.27e-06}, {"year" : 1982, "sex" : "F", "n" : 6, "prop" : 3.31e-06}, {"year" : 1983, "sex" : "F", "n" : 10, "prop" : 5.59e-06}, {"year" : 1984, "sex" : "F", "n" : 13, "prop" : 7.21e-06}, {"year" : 1985, "sex" : "F", "n" : 15, "prop" : 8.13e-06}, {"year" : 1986, "sex" : "F", "n" : 8, "prop" : 4.34e-06}, {"year" : 1987, "sex" : "F", "n" : 11, "prop" : 5.87e-06}, {"year" : 1988, "sex" : "F", "n" : 10, "prop" : 5.2e-06}, {"year" : 1989, "sex" : "F", "n" : 13, "prop" : 6.53e-06}, {"year" : 1990, "sex" : "F", "n" : 16, "prop" : 7.79e-06}, {"year" : 1991, "sex" : "F", "n" : 21, "prop" : 0}, {"year" : 1992, "sex" : "F", "n" : 7, "prop" : 3.49e-06}, {"year" : 1993, "sex" : "F", "n" : 10, "prop" : 5.07e-06}, {"year" : 1994, "sex" : "F", "n" : 19, "prop" : 9.75e-06}, {"year" : 1995, "sex" : "F", "n" : 10, "prop" : 5.21e-06}, {"year" : 1996, "sex" : "F", "n" : 12, "prop" : 6.26e-06}, {"year" : 1997, "sex" : "F", "n" : 12, "prop" : 6.29e-06}, {"year" : 1998, "sex" : "F", "n" : 14, "prop" : 7.22e-06}, {"year" : 1999, "sex" : "F", "n" : 10, "prop" : 5.14e-06}, {"year" : 2000, "sex" : "F", "n" : 11, "prop" : 5.51e-06}, {"year" : 2001, "sex" : "F", "n" : 9, "prop" : 4.55e-06}, {"year" : 2002, "sex" : "F", "n" : 5, "prop" : 2.53e-06}, {"year" : 2005, "sex" : "F", "n" : 7, "prop" : 3.45e-06}, {"year" : 2007, "sex" : "F", "n" : 6, "prop" : 2.84e-06}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"year": {"type": "integer"}, "sex": {"type": "string"}, "n": {"type": "integer"}, "prop": {"type": "number"}}, "required": ["year", "sex", "n", "prop"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"website": {"type": "string"}, "dbmodel": {"type": "array", "items": {"type": "string"}}, "name": {"type": "string"}, "license": {"type": "array", "items": {"type": "string"}}}, "required": ["website", "dbmodel", "name", "license"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"website" : "http://www.aelius.com/njh/redstore/", "dbmodel" : ["RDF store"], "name" : "RedStore", "license" : ["Open Source"]} | json_instruct | {"type": "object", "properties": {"website": {"type": "string"}, "dbmodel": {"type": "array", "items": {"type": "string"}}, "name": {"type": "string"}, "license": {"type": "array", "items": {"type": "string"}}}, "required": ["website", "dbmodel", "name", "license"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"variables": {"type": "object", "properties": {"iso_url_local": {"type": "string"}, "iso_url_remote": {"type": "string"}, "iso_checksum": {"type": "string"}}, "required": ["iso_url_local", "iso_url_remote", "iso_checksum"]}}, "required": ["variables"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"variables" : {"iso_url_local" : "{{user `download_directory`}}/19042.508.200927-1902.20h2_release_svc_refresh_CLIENTENTERPRISEEVAL_OEMRET_x64FRE_en-us.iso", "iso_url_remote" : "https://software-download.microsoft.com/download/pr/19042.508.200927-1902.20h2_release_svc_refresh_CLIENTENTERPRISEEVAL_OEMRET_x64FRE_en-us.iso", "iso_checksum" : "sha256:574f00380ead9e4b53921c33bf348b5a2fa976ffad1d5fa20466ddf7f0258964"}} | json_instruct | {"type": "object", "properties": {"variables": {"type": "object", "properties": {"iso_url_local": {"type": "string"}, "iso_url_remote": {"type": "string"}, "iso_checksum": {"type": "string"}}, "required": ["iso_url_local", "iso_url_remote", "iso_checksum"]}}, "required": ["variables"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"region": {"type": "array", "items": {"type": "object", "properties": {"regionCode": {"type": "string"}, "region": {"type": "string"}, "area": {"type": "string"}, "Country": {"type": "string"}}, "required": ["regionCode", "region", "area", "Country"]}}}, "required": ["region"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"region" : [{"regionCode" : "1", "region" : "San Francisco", "area" : "California", "Country" : "USA"}, {"regionCode" : "2", "region" : "Los Angeles", "area" : "California", "Country" : "USA"}, {"regionCode" : "3", "region" : "New York City", "area" : "New York", "Country" : "USA"}, {"regionCode" : "4", "region" : "Hudson Valley", "area" : "New York", "Country" : "USA"}, {"regionCode" : "5", "region" : "Indianapolis", "area" : "Indiana", "Country" : "USA"}, {"regionCode" : "6", "region" : "Fort Wayne", "area" : "Indiana", "Country" : "USA"}, {"regionCode" : "7", "region" : "Phoenix", "area" : "Arizona", "Country" : "USA"}, {"regionCode" : "8", "region" : "Tucson", "area" : "Arizona", "Country" : "USA"}]} | json_instruct | {"type": "object", "properties": {"region": {"type": "array", "items": {"type": "object", "properties": {"regionCode": {"type": "string"}, "region": {"type": "string"}, "area": {"type": "string"}, "Country": {"type": "string"}}, "required": ["regionCode", "region", "area", "Country"]}}}, "required": ["region"], "$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" : "323ac7d1f9b6a5dc9983ec985bc8b68b5a1cfdc8"} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}}, "required": ["id"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"id": {"type": "integer"}, "category": {"type": "object", "properties": {"name": {"type": "string"}, "subset": {"type": "string"}}, "required": ["name", "subset"]}, "help": {"type": "object", "properties": {"de": {"type": "string"}, "en": {"type": "string"}, "fr": {"type": "string"}, "jp": {"type": "string"}}, "required": ["de", "en", "fr", "jp"]}, "img": {"type": "string"}}, "required": ["id", "category", "help", "img"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : 1907, "category" : {"name" : "Items", "subset" : "Collectables"}, "help" : {"de" : "5.000 Sammlerst\u00fccke gefunden oder gefangen.", "en" : "Gather or catch 5,000 collectables.", "fr" : "R\u00e9colter 5 000 objets collectionnables.", "jp" : "\u8490\u96c6\u54c1\u3092\u8a085,000\u56de\u63a1\u96c6\u3059\u308b"}, "img" : "001000/001024.png"} | json_instruct | {"type": "object", "properties": {"id": {"type": "integer"}, "category": {"type": "object", "properties": {"name": {"type": "string"}, "subset": {"type": "string"}}, "required": ["name", "subset"]}, "help": {"type": "object", "properties": {"de": {"type": "string"}, "en": {"type": "string"}, "fr": {"type": "string"}, "jp": {"type": "string"}}, "required": ["de", "en", "fr", "jp"]}, "img": {"type": "string"}}, "required": ["id", "category", "help", "img"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"hash": {"type": "string"}, "parentHash": {"type": "string"}, "number": {"type": "integer"}, "timestamp": {"type": "integer"}, "nonce": {"type": "string"}, "difficulty": {"type": "integer"}, "gasLimit": {"type": "object", "properties": {"_hex": {"type": "string"}}, "required": ["_hex"]}, "gasUsed": {"type": "object", "properties": {"_hex": {"type": "string"}}, "required": ["_hex"]}, "miner": {"type": "string"}, "extraData": {"type": "string"}, "transactions": {"type": "array", "items": {"type": "object", "properties": {"hash": {"type": "string"}, "blockHash": {"type": "string"}, "blockNumber": {"type": "integer"}, "transactionIndex": {"type": "integer"}, "confirmations": {"type": "null"}, "from": {"type": "string"}, "gasPrice": {"type": "object", "properties": {"_hex": {"type": "string"}}, "required": ["_hex"]}, "gasLimit": {"type": "object", "properties": {"_hex": {"type": "string"}}, "required": ["_hex"]}, "to": {"type": "string"}, "value": {"type": "object", "properties": {"_hex": {"type": "string"}}, "required": ["_hex"]}, "nonce": {"type": "integer"}, "data": {"type": "string"}, "r": {"type": "string"}, "s": {"type": "string"}, "v": {"type": "integer"}, "creates": {"type": "null"}, "raw": {"type": "string"}, "networkId": {"type": "integer"}, "chainId": {"type": "integer"}}, "required": ["hash", "blockHash", "blockNumber", "transactionIndex", "confirmations", "from", "gasPrice", "gasLimit", "to", "value", "nonce", "data", "r", "s", "v", "creates", "raw", "networkId", "chainId"]}}}, "required": ["hash", "parentHash", "number", "timestamp", "nonce", "difficulty", "gasLimit", "gasUsed", "miner", "extraData", "transactions"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"hash" : "0x581ed1d5cd646daed4bde7c2af4dae701aa379f77eca35019610a52ca8db7950", "parentHash" : "0x29f482502446ba618184f8e0f0ddaa14854cf62679033f8e7e6ab123a49baafb", "number" : 56581, "timestamp" : 1439089451, "nonce" : "0x08140cf14f0cf0ce", "difficulty" : 1668221149322, "gasLimit" : {"_hex" : "0x2fefd8"}, "gasUsed" : {"_hex" : "0x15f90"}, "miner" : "0xF2d2AfF1320476cb8C6b607199D23175cc595693", "extraData" : "0x476574682f76312e302e312f77696e646f77732f676f312e342e32", "transactions" : [{"hash" : "0xe4f1ff67f73a10e1848f2c710ff9378f82aae5cd2e92d340507d9a6f4074c215", "blockHash" : "0x581ed1d5cd646daed4bde7c2af4dae701aa379f77eca35019610a52ca8db7950", "blockNumber" : 56581, "transactionIndex" : 0, "confirmations" : null, "from" : "0xFD2605a2bF58fDbB90db1Da55dF61628B47F9e8c", "gasPrice" : {"_hex" : "0xd9c782ebd"}, "gasLimit" : {"_hex" : "0x15f90"}, "to" : "0xCdd192F2c49383af4321c7D1941Fb3C9Ca1B622C", "value" : {"_hex" : "0x0"}, "nonce" : 40, "data" : "0x63bd1d4a", "r" : "0xdcb329835183f1f02a8462b7fd44010f4f0cc9b2c7cf7e01c16dc136b2b8d1b1", "s" : "0x23dcd5bfbcddcd19f37733a8e78883a0bfa6830b39d42a51cf6a8664717cc1a7", "v" : 28, "creates" : null, "raw" : "0xf86928850d9c782ebd83015f9094cdd192f2c49383af4321c7d1941fb3c9ca1b622c808463bd1d4a1ca0dcb329835183f1f02a8462b7fd44010f4f0cc9b2c7cf7e01c16dc136b2b8d1b1a023dcd5bfbcddcd19f37733a8e78883a0bfa6830b39d42a51cf6a8664717cc1a7", "networkId" : 0, "chainId" : 0}]} | json_instruct | {"type": "object", "properties": {"hash": {"type": "string"}, "parentHash": {"type": "string"}, "number": {"type": "integer"}, "timestamp": {"type": "integer"}, "nonce": {"type": "string"}, "difficulty": {"type": "integer"}, "gasLimit": {"type": "object", "properties": {"_hex": {"type": "string"}}, "required": ["_hex"]}, "gasUsed": {"type": "object", "properties": {"_hex": {"type": "string"}}, "required": ["_hex"]}, "miner": {"type": "string"}, "extraData": {"type": "string"}, "transactions": {"type": "array", "items": {"type": "object", "properties": {"hash": {"type": "string"}, "blockHash": {"type": "string"}, "blockNumber": {"type": "integer"}, "transactionIndex": {"type": "integer"}, "confirmations": {"type": "null"}, "from": {"type": "string"}, "gasPrice": {"type": "object", "properties": {"_hex": {"type": "string"}}, "required": ["_hex"]}, "gasLimit": {"type": "object", "properties": {"_hex": {"type": "string"}}, "required": ["_hex"]}, "to": {"type": "string"}, "value": {"type": "object", "properties": {"_hex": {"type": "string"}}, "required": ["_hex"]}, "nonce": {"type": "integer"}, "data": {"type": "string"}, "r": {"type": "string"}, "s": {"type": "string"}, "v": {"type": "integer"}, "creates": {"type": "null"}, "raw": {"type": "string"}, "networkId": {"type": "integer"}, "chainId": {"type": "integer"}}, "required": ["hash", "blockHash", "blockNumber", "transactionIndex", "confirmations", "from", "gasPrice", "gasLimit", "to", "value", "nonce", "data", "r", "s", "v", "creates", "raw", "networkId", "chainId"]}}}, "required": ["hash", "parentHash", "number", "timestamp", "nonce", "difficulty", "gasLimit", "gasUsed", "miner", "extraData", "transactions"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "array", "items": {"type": "object", "properties": {"namaKab": {"type": "string"}, "originalFilename": {"type": "string"}, "namaPartai": {"type": "string"}, "id": {"type": "integer"}, "noUrut": {"type": "integer"}, "nama": {"type": "string"}, "stringJenisKelamin": {"type": "string"}}, "required": ["namaKab", "originalFilename", "namaPartai", "id", "noUrut", "nama", "stringJenisKelamin"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"namaKab" : "KOTAWARINGIN BARAT", "originalFilename" : "ZAINUDIN.jpg", "namaPartai" : "Partai Persatuan pembangunan", "id" : 20006, "noUrut" : 1, "nama" : "ZAINUDIN", "stringJenisKelamin" : "Laki-Laki"}, {"namaKab" : "KOTAWARINGIN BARAT", "originalFilename" : "SYAHRUL HB.jpg", "namaPartai" : "Partai Persatuan pembangunan", "id" : 20032, "noUrut" : 2, "nama" : "SYAHRUL HB", "stringJenisKelamin" : "Laki-Laki"}, {"namaKab" : "KOTAWARINGIN BARAT", "originalFilename" : "RUSMAWATI.jpg", "namaPartai" : "Partai Persatuan pembangunan", "id" : 110861, "noUrut" : 3, "nama" : "RUSMAWATI", "stringJenisKelamin" : "Perempuan"}, {"namaKab" : "KOTAWARINGIN BARAT", "originalFilename" : "M MAJRI.jpg", "namaPartai" : "Partai Persatuan pembangunan", "id" : 15467, "noUrut" : 4, "nama" : "M. MAJRI", "stringJenisKelamin" : "Laki-Laki"}, {"namaKab" : "KOTAWARINGIN BARAT", "originalFilename" : "MEGA ARIES SANTI.jpg", "namaPartai" : "Partai Persatuan pembangunan", "id" : 110723, "noUrut" : 5, "nama" : "MEGA ARIES SANTI, M.Pd.", "stringJenisKelamin" : "Perempuan"}, {"namaKab" : "KOTAWARINGIN BARAT", "originalFilename" : "SABRI.jpg", "namaPartai" : "Partai Persatuan pembangunan", "id" : 20054, "noUrut" : 6, "nama" : "SABRI", "stringJenisKelamin" : "Laki-Laki"}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"namaKab": {"type": "string"}, "originalFilename": {"type": "string"}, "namaPartai": {"type": "string"}, "id": {"type": "integer"}, "noUrut": {"type": "integer"}, "nama": {"type": "string"}, "stringJenisKelamin": {"type": "string"}}, "required": ["namaKab", "originalFilename", "namaPartai", "id", "noUrut", "nama", "stringJenisKelamin"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"content": {"type": "string"}, "entities": {"type": "array", "items": {"type": "object", "properties": {"offset": {"type": "integer"}, "type": {"type": "string"}, "id": {"type": "integer"}, "entity": {"type": "string"}}, "required": ["offset", "type", "id", "entity"]}}, "topics": {"type": "array", "items": {"type": "object", "properties": {"topic": {"type": "string"}, "id": {"type": "integer"}}, "required": ["topic", "id"]}}, "tweet_id": {"type": "string"}}, "required": ["content", "entities", "topics", "tweet_id"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"content" : "@ScotlandTonight @NicolaSturgeon Pretty satisfactory. Rule out #fracking and #TTIP for good and I'll be a happy man! @theSNP #GE2015", "entities" : [{"offset" : 0, "type" : "ne", "id" : 2, "entity" : "@ScotlandTonight"}, {"offset" : 78, "type" : "ne", "id" : 3, "entity" : "ttip"}, {"offset" : 17, "type" : "ne", "id" : 4, "entity" : "@NicolaSturgeon"}, {"offset" : 117, "type" : "ne", "id" : 5, "entity" : "@theSNP"}, {"offset" : 64, "type" : "topic keyword", "id" : 6, "entity" : "fracking"}], "topics" : [{"topic" : "environment and energy", "id" : 1}], "tweet_id" : "571030571402575872"} | json_instruct | {"type": "object", "properties": {"content": {"type": "string"}, "entities": {"type": "array", "items": {"type": "object", "properties": {"offset": {"type": "integer"}, "type": {"type": "string"}, "id": {"type": "integer"}, "entity": {"type": "string"}}, "required": ["offset", "type", "id", "entity"]}}, "topics": {"type": "array", "items": {"type": "object", "properties": {"topic": {"type": "string"}, "id": {"type": "integer"}}, "required": ["topic", "id"]}}, "tweet_id": {"type": "string"}}, "required": ["content", "entities", "topics", "tweet_id"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"word" : "instanter", "definition" : "Immediately; instantly; at once; as, he left instanter."} | json_instruct | {"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "array", "items": {"type": "array", "items": {}}}}, "required": ["contract", "tool", "start", "end", "duration", "analysis"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"contract" : "0xd9efb77fd4041a28f0108eb8726de2505817c6d1", "tool" : "manticore", "start" : 1564024600.0383017, "end" : 1564026402.0307994, "duration" : 1801.9924976825714, "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": {"type": "array", "items": {}}}}, "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": {"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" : "0xb55283fb3a40ecdc33e32caeb8e56ed8cdbb31be", "tool" : "oyente", "start" : 1563505680.6977987, "end" : 1563505684.752592, "duration" : 4.054793357849121, "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#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"IconPath": {"type": "string"}}, "required": ["IconPath"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"IconPath" : "cmd\\sqspurge\\sqspurge.ico"} | json_instruct | {"type": "object", "properties": {"IconPath": {"type": "string"}}, "required": ["IconPath"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"letter": {"type": "string"}, "thai": {"type": "string"}, "rtgs": {"type": "string"}, "meaning": {"type": "string"}, "pronunciation": {"type": "object", "properties": {"initial": {"type": "string"}, "final": {"type": "string"}}, "required": ["initial", "final"]}, "class": {"type": "string"}, "similar": {"type": "array", "items": {"type": "string"}}}, "required": ["letter", "thai", "rtgs", "meaning", "pronunciation", "class", "similar"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"letter" : "\u0e27", "thai" : "\u0e27 \u0e41\u0e2b\u0e27\u0e19", "rtgs" : "wo waen", "meaning" : "ring", "pronunciation" : {"initial" : "w", "final" : "w"}, "class" : "low", "similar" : ["ds-3"]} | json_instruct | {"type": "object", "properties": {"letter": {"type": "string"}, "thai": {"type": "string"}, "rtgs": {"type": "string"}, "meaning": {"type": "string"}, "pronunciation": {"type": "object", "properties": {"initial": {"type": "string"}, "final": {"type": "string"}}, "required": ["initial", "final"]}, "class": {"type": "string"}, "similar": {"type": "array", "items": {"type": "string"}}}, "required": ["letter", "thai", "rtgs", "meaning", "pronunciation", "class", "similar"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this 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": "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-p7mv-x2rc-847f", "modified" : "2022-01-04T00:01:25Z", "published" : "2021-12-21T00:00:22Z", "aliases" : ["CVE-2021-3860"], "details" : "JFrog Artifactory before 7.25.4 (Enterprise+ deployments only), is vulnerable to Blind SQL Injection by a low privileged authenticated user due to incomplete validation when performing an SQL query.", "severity" : [], "affected" : [], "references" : [{"type" : "ADVISORY", "url" : "https://nvd.nist.gov/vuln/detail/CVE-2021-3860"}, {"type" : "WEB", "url" : "https://www.jfrog.com/confluence/display/JFROG/CVE-2021-3860%3A+Artifactory+Low+Privileged+Blind+SQL+Injection"}], "database_specific" : {"cwe_ids" : ["CWE-89"], "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": {"type": "string"}}, "severity": {"type": "string"}, "github_reviewed": {"type": "boolean"}}, "required": ["cwe_ids", "severity", "github_reviewed"]}}, "required": ["schema_version", "id", "modified", "published", "aliases", "details", "severity", "affected", "references", "database_specific"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"name": {"type": "string"}, "author": {"type": "string"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}}, "required": ["start"]}, "version": {"type": "string"}, "dependencies": {"type": "object", "properties": {"socket.io": {"type": "string"}, "express": {"type": "string"}}, "required": ["socket.io", "express"]}, "engines": {"type": "object", "properties": {"node": {"type": "string"}}, "required": ["node"]}, "analyze": {"type": "boolean"}}, "required": ["name", "author", "scripts", "version", "dependencies", "engines", "analyze"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "nodeapps-socket.io", "author" : "Nodejitsu Inc. <[email protected]>", "scripts" : {"start" : "node server.js"}, "version" : "0.1.3", "dependencies" : {"socket.io" : "0.9.x", "express" : "3.0.x"}, "engines" : {"node" : "0.8.x"}, "analyze" : false} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "author": {"type": "string"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}}, "required": ["start"]}, "version": {"type": "string"}, "dependencies": {"type": "object", "properties": {"socket.io": {"type": "string"}, "express": {"type": "string"}}, "required": ["socket.io", "express"]}, "engines": {"type": "object", "properties": {"node": {"type": "string"}}, "required": ["node"]}, "analyze": {"type": "boolean"}}, "required": ["name", "author", "scripts", "version", "dependencies", "engines", "analyze"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "type": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "homepage": {"type": "string"}, "license": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "homepage": {"type": "string"}, "role": {"type": "string"}}, "required": ["name", "homepage", "role"]}}, "support": {"type": "object", "properties": {"issues": {"type": "string"}, "source": {"type": "string"}}, "required": ["issues", "source"]}, "require": {"type": "object", "properties": {"php": {"type": "string"}, "composer/installers": {"type": "string"}, "phpzip/phpzip": {"type": "string"}}, "required": ["php", "composer/installers", "phpzip/phpzip"]}, "extra": {"type": "object", "properties": {"branch-alias": {"type": "object", "properties": {"dev-master": {"type": "string"}}, "required": ["dev-master"]}, "installer-name": {"type": "string"}}, "required": ["branch-alias", "installer-name"]}, "autoload": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"ApertureConnector\\": {"type": "string"}}, "required": ["ApertureConnector\\"]}}, "required": ["psr-4"]}}, "required": ["name", "description", "type", "keywords", "homepage", "license", "authors", "support", "require", "extra", "autoload"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "theus77/aperture_connector", "description" : "CakePHP Aperture Plugin/Connector", "type" : "cakephp-plugin", "keywords" : ["cakephp", "aperture", "connector"], "homepage" : "https://github.com/theus77/aperture_connector", "license" : "MIT", "authors" : [{"name" : "Mathieu De Keyzer", "homepage" : "http://mathieu.dekeyzer.net", "role" : "Author"}], "support" : {"issues" : "https://github.com/theus77/aperture_connector/issues", "source" : "https://github.com/theus77/aperture_connector"}, "require" : {"php" : ">=5.3.0", "composer/installers" : "*", "phpzip/phpzip" : "2.0.7"}, "extra" : {"branch-alias" : {"dev-master" : "1.2"}, "installer-name" : "ApertureConnector"}, "autoload" : {"psr-4" : {"ApertureConnector\\" : "src"}}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "type": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "homepage": {"type": "string"}, "license": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "homepage": {"type": "string"}, "role": {"type": "string"}}, "required": ["name", "homepage", "role"]}}, "support": {"type": "object", "properties": {"issues": {"type": "string"}, "source": {"type": "string"}}, "required": ["issues", "source"]}, "require": {"type": "object", "properties": {"php": {"type": "string"}, "composer/installers": {"type": "string"}, "phpzip/phpzip": {"type": "string"}}, "required": ["php", "composer/installers", "phpzip/phpzip"]}, "extra": {"type": "object", "properties": {"branch-alias": {"type": "object", "properties": {"dev-master": {"type": "string"}}, "required": ["dev-master"]}, "installer-name": {"type": "string"}}, "required": ["branch-alias", "installer-name"]}, "autoload": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"ApertureConnector\\": {"type": "string"}}, "required": ["ApertureConnector\\"]}}, "required": ["psr-4"]}}, "required": ["name", "description", "type", "keywords", "homepage", "license", "authors", "support", "require", "extra", "autoload"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"authors": {"type": "array", "items": {}}, "doi": {"type": "string"}, "publication_date": {"type": "string"}, "id": {"type": "string"}, "url": {"type": "string"}, "source": {"type": "string"}, "source_url": {"type": "string"}, "licence": {"type": "string"}, "language": {"type": "string"}, "type": {"type": "string"}, "description": {"type": "string"}, "text": {"type": "string"}}, "required": ["authors", "doi", "publication_date", "id", "url", "source", "source_url", "licence", "language", "type", "description", "text"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"authors" : [], "doi" : "", "publication_date" : "2019-MM-DD", "id" : "IT102266", "url" : "https://esame.miur.it/pdf/2019/IIsessione/Area_Clinica.pdf", "source" : "Miur", "source_url" : "https://www.miur.gov.it", "licence" : "CC-BY", "language" : "it", "type" : "other", "description" : "State exams for medical professional certification", "text" : "Viene richiesta una consulenza ematologica per una paziente ospedalizzata da 6 settimane a causa di numerose complicanze iniziate con un'ostruzione intestinale. Durante il ricovero e\u0300 stata sottoposta a vari interventi chirurgici durante i quali sono stati trasfuse 3 sacche di emazie concentrate. La paziente e\u0300 sotto alimentazione parenterale e terapia antibiotica da quasi 5 settimane. La consulenza e\u0300 stata richiesta perche\u0301 uno screening coagulativo recente ha mostrato la comparsa di un allungamento del PT e del PTT. Queste alterazioni si correggevano se prima di eseguire il Test al plasma del paziente si aggiungeva un'uguale quantita\u0300 di plasma normale. Il fibrinogeno quantitativo, il tempo di trombina ed il numero delle piastrine erano nella norma e quindi viene posta diagnosi di deficit di vitamina K. "} | json_instruct | {"type": "object", "properties": {"authors": {"type": "array", "items": {}}, "doi": {"type": "string"}, "publication_date": {"type": "string"}, "id": {"type": "string"}, "url": {"type": "string"}, "source": {"type": "string"}, "source_url": {"type": "string"}, "licence": {"type": "string"}, "language": {"type": "string"}, "type": {"type": "string"}, "description": {"type": "string"}, "text": {"type": "string"}}, "required": ["authors", "doi", "publication_date", "id", "url", "source", "source_url", "licence", "language", "type", "description", "text"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"hash": {"type": "string"}, "parentHash": {"type": "string"}, "number": {"type": "integer"}, "timestamp": {"type": "integer"}, "nonce": {"type": "string"}, "difficulty": {"type": "integer"}, "gasLimit": {"type": "object", "properties": {"_hex": {"type": "string"}}, "required": ["_hex"]}, "gasUsed": {"type": "object", "properties": {"_hex": {"type": "string"}}, "required": ["_hex"]}, "miner": {"type": "string"}, "extraData": {"type": "string"}, "transactions": {"type": "array", "items": {}}}, "required": ["hash", "parentHash", "number", "timestamp", "nonce", "difficulty", "gasLimit", "gasUsed", "miner", "extraData", "transactions"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"hash" : "0x5ff71297754655426e77941be9ddd670b0d200daaa305d7031fb99147480d354", "parentHash" : "0xbd5e5a15aa8aa1eb793f4f7921141c53b198c2a6958338fd693c210604c87cb8", "number" : 76384, "timestamp" : 1439419529, "nonce" : "0xb6a18c741cca0a1c", "difficulty" : 2229723682674, "gasLimit" : {"_hex" : "0x2fefd8"}, "gasUsed" : {"_hex" : "0x0"}, "miner" : "0xf927a40C8B7F6E07c5af7FA2155B4864a4112B13", "extraData" : "0x", "transactions" : []} | json_instruct | {"type": "object", "properties": {"hash": {"type": "string"}, "parentHash": {"type": "string"}, "number": {"type": "integer"}, "timestamp": {"type": "integer"}, "nonce": {"type": "string"}, "difficulty": {"type": "integer"}, "gasLimit": {"type": "object", "properties": {"_hex": {"type": "string"}}, "required": ["_hex"]}, "gasUsed": {"type": "object", "properties": {"_hex": {"type": "string"}}, "required": ["_hex"]}, "miner": {"type": "string"}, "extraData": {"type": "string"}, "transactions": {"type": "array", "items": {}}}, "required": ["hash", "parentHash", "number", "timestamp", "nonce", "difficulty", "gasLimit", "gasUsed", "miner", "extraData", "transactions"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "bin": {"type": "object", "properties": {"seqsolve": {"type": "string"}}, "required": ["seqsolve"]}, "dependencies": {"type": "object", "properties": {"optimist": {"type": "string"}, "gcd": {"type": "string"}}, "required": ["optimist", "gcd"]}, "devDependencies": {"type": "object", "properties": {"tape": {"type": "string"}}, "required": ["tape"]}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "testling": {"type": "object", "properties": {"files": {"type": "string"}, "browsers": {"type": "object", "properties": {"ie": {"type": "array", "items": {"type": "integer"}}, "ff": {"type": "array", "items": {"type": "number"}}, "chrome": {"type": "array", "items": {"type": "integer"}}, "safari": {"type": "array", "items": {"type": "number"}}, "opera": {"type": "array", "items": {"type": "integer"}}}, "required": ["ie", "ff", "chrome", "safari", "opera"]}}, "required": ["files", "browsers"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "homepage": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}, "url": {"type": "string"}}, "required": ["name", "email", "url"]}, "license": {"type": "string"}}, "required": ["name", "version", "description", "main", "bin", "dependencies", "devDependencies", "scripts", "testling", "repository", "homepage", "keywords", "author", "license"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "seqsolve", "version" : "0.0.2", "description" : "generate an algebraic formula for a sequence", "main" : "index.js", "bin" : {"seqsolve" : "bin/solve.js"}, "dependencies" : {"optimist" : "~0.5.2", "gcd" : "~0.0.0"}, "devDependencies" : {"tape" : "~1.0.4"}, "scripts" : {"test" : "tape test/*.js"}, "testling" : {"files" : "test/*.js", "browsers" : {"ie" : [6, 7, 8, 9], "ff" : [3.5, 10, 15.0], "chrome" : [10, 22], "safari" : [5.1], "opera" : [12]}}, "repository" : {"type" : "git", "url" : "git://github.com/substack/seqsolve.git"}, "homepage" : "https://github.com/substack/seqsolve", "keywords" : ["sequence", "mathematics"], "author" : {"name" : "James Halliday", "email" : "[email protected]", "url" : "http://substack.net"}, "license" : "MIT"} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "bin": {"type": "object", "properties": {"seqsolve": {"type": "string"}}, "required": ["seqsolve"]}, "dependencies": {"type": "object", "properties": {"optimist": {"type": "string"}, "gcd": {"type": "string"}}, "required": ["optimist", "gcd"]}, "devDependencies": {"type": "object", "properties": {"tape": {"type": "string"}}, "required": ["tape"]}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "testling": {"type": "object", "properties": {"files": {"type": "string"}, "browsers": {"type": "object", "properties": {"ie": {"type": "array", "items": {"type": "integer"}}, "ff": {"type": "array", "items": {"type": "number"}}, "chrome": {"type": "array", "items": {"type": "integer"}}, "safari": {"type": "array", "items": {"type": "number"}}, "opera": {"type": "array", "items": {"type": "integer"}}}, "required": ["ie", "ff", "chrome", "safari", "opera"]}}, "required": ["files", "browsers"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "homepage": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}, "url": {"type": "string"}}, "required": ["name", "email", "url"]}, "license": {"type": "string"}}, "required": ["name", "version", "description", "main", "bin", "dependencies", "devDependencies", "scripts", "testling", "repository", "homepage", "keywords", "author", "license"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"ip": {"type": "string"}, "country_code": {"type": "string"}, "country_name": {"type": "string"}, "region_code": {"type": "string"}, "region_name": {"type": "string"}, "city": {"type": "string"}, "zip_code": {"type": "string"}, "time_zone": {"type": "string"}, "latitude": {"type": "number"}, "longitude": {"type": "number"}, "metro_code": {"type": "integer"}}, "required": ["ip", "country_code", "country_name", "region_code", "region_name", "city", "zip_code", "time_zone", "latitude", "longitude", "metro_code"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"ip" : "122.118.110.222", "country_code" : "TW", "country_name" : "Taiwan", "region_code" : "MIA", "region_name" : "Miaoli", "city" : "Toufen Township", "zip_code" : "", "time_zone" : "Asia/Taipei", "latitude" : 24.6875, "longitude" : 120.9094, "metro_code" : 0} | json_instruct | {"type": "object", "properties": {"ip": {"type": "string"}, "country_code": {"type": "string"}, "country_name": {"type": "string"}, "region_code": {"type": "string"}, "region_name": {"type": "string"}, "city": {"type": "string"}, "zip_code": {"type": "string"}, "time_zone": {"type": "string"}, "latitude": {"type": "number"}, "longitude": {"type": "number"}, "metro_code": {"type": "integer"}}, "required": ["ip", "country_code", "country_name", "region_code", "region_name", "city", "zip_code", "time_zone", "latitude", "longitude", "metro_code"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"directions": {"type": "array", "items": {"type": "string"}}, "ingredients": {"type": "array", "items": {"type": "string"}}, "language": {"type": "string"}, "source": {"type": "string"}, "tags": {"type": "array", "items": {}}, "title": {"type": "string"}, "url": {"type": "string"}}, "required": ["directions", "ingredients", "language", "source", "tags", "title", "url"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"directions" : ["Combine the water, ham hock, and lard in a large pot over medium-high heat. Season with seasoning salt, salt, pepper, garlic powder, and onion powder. Bring to a boil, then reduce heat to medium-low, and add green beans. Simmer covered for about 2 hours."], "ingredients" : ["6 cups water", "1 ham hock", "2 tablespoons lard or other cooking fat", "1 teaspoon seasoning salt", "1/2 teaspoon salt", "1/2 teaspoon black pepper", "1/2 teaspoon garlic powder", "1/2 teaspoon onion powder", "1 pound fresh green beans - rinsed, trimmed and snapped into bite size pieces"], "language" : "en-US", "source" : "allrecipes.com", "tags" : [], "title" : "Down-South Style Green Beans", "url" : "http://allrecipes.com/recipe/57337/down-south-style-green-beans/"} | json_instruct | {"type": "object", "properties": {"directions": {"type": "array", "items": {"type": "string"}}, "ingredients": {"type": "array", "items": {"type": "string"}}, "language": {"type": "string"}, "source": {"type": "string"}, "tags": {"type": "array", "items": {}}, "title": {"type": "string"}, "url": {"type": "string"}}, "required": ["directions", "ingredients", "language", "source", "tags", "title", "url"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"ast": {"type": "null"}, "code": {"type": "string"}, "map": {"type": "object", "properties": {"version": {"type": "integer"}, "sources": {"type": "array", "items": {"type": "string"}}, "names": {"type": "array", "items": {"type": "string"}}, "mappings": {"type": "string"}, "sourcesContent": {"type": "array", "items": {"type": "string"}}}, "required": ["version", "sources", "names", "mappings", "sourcesContent"]}, "metadata": {"type": "object", "properties": {}, "required": []}, "sourceType": {"type": "string"}}, "required": ["ast", "code", "map", "metadata", "sourceType"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"ast" : null, "code" : "// Copyright 2017-2021 @polkadot/types authors & contributors\n// SPDX-License-Identifier: Apache-2.0\n// order important in structs... :)\n\n/* eslint-disable sort-keys */\nexport default {\n rpc: {\n genSyncSpec: {\n endpoint: 'sync_state_genSyncSpec',\n description: 'Returns the json-serialized chainspec running the node, with a sync state.',\n params: [{\n name: 'raw',\n type: 'bool'\n }],\n type: 'Json'\n }\n },\n types: {}\n};", "map" : {"version" : 3, "sources" : ["/home/spren/workspace/kitties-front-end/node_modules/@polkadot/types/interfaces/syncstate/definitions.js"], "names" : ["rpc", "genSyncSpec", "endpoint", "description", "params", "name", "type", "types"], "mappings" : "AAAA;AACA;AACA;;AAEA;AACA,eAAe;AACbA,EAAAA,GAAG,EAAE;AACHC,IAAAA,WAAW,EAAE;AACXC,MAAAA,QAAQ,EAAE,wBADC;AAEXC,MAAAA,WAAW,EAAE,4EAFF;AAGXC,MAAAA,MAAM,EAAE,CAAC;AACPC,QAAAA,IAAI,EAAE,KADC;AAEPC,QAAAA,IAAI,EAAE;AAFC,OAAD,CAHG;AAOXA,MAAAA,IAAI,EAAE;AAPK;AADV,GADQ;AAYbC,EAAAA,KAAK,EAAE;AAZM,CAAf", "sourcesContent" : ["// Copyright 2017-2021 @polkadot/types authors & contributors\n// SPDX-License-Identifier: Apache-2.0\n// order important in structs... :)\n\n/* eslint-disable sort-keys */\nexport default {\n rpc: {\n genSyncSpec: {\n endpoint: 'sync_state_genSyncSpec',\n description: 'Returns the json-serialized chainspec running the node, with a sync state.',\n params: [{\n name: 'raw',\n type: 'bool'\n }],\n type: 'Json'\n }\n },\n types: {}\n};"]}, "metadata" : {}, "sourceType" : "module"} | json_instruct | {"type": "object", "properties": {"ast": {"type": "null"}, "code": {"type": "string"}, "map": {"type": "object", "properties": {"version": {"type": "integer"}, "sources": {"type": "array", "items": {"type": "string"}}, "names": {"type": "array", "items": {"type": "string"}}, "mappings": {"type": "string"}, "sourcesContent": {"type": "array", "items": {"type": "string"}}}, "required": ["version", "sources", "names", "mappings", "sourcesContent"]}, "metadata": {"type": "object", "properties": {}, "required": []}, "sourceType": {"type": "string"}}, "required": ["ast", "code", "map", "metadata", "sourceType"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"word": {"type": "string"}, "definitions": {"type": "array", "items": {"type": "string"}}, "parts-of-speech": {"type": "string"}}, "required": ["word", "definitions", "parts-of-speech"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"word" : "Different", "definitions" : ["Not the same as another or each other; unlike in nature, form, or quality.", "Novel and unusual.", "Distinct; separate."], "parts-of-speech" : "Adjective"} | json_instruct | {"type": "object", "properties": {"word": {"type": "string"}, "definitions": {"type": "array", "items": {"type": "string"}}, "parts-of-speech": {"type": "string"}}, "required": ["word", "definitions", "parts-of-speech"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"ConfigVersion": {"type": "string"}, "PackageVersion": {"type": "string"}, "PrereleaseInfo": {"type": "string"}, "Resources": {"type": "object", "properties": {"Include": {"type": "string"}}, "required": ["Include"]}}, "required": ["ConfigVersion", "PackageVersion", "PrereleaseInfo", "Resources"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"ConfigVersion" : "0.9", "PackageVersion" : "0.0.1", "PrereleaseInfo" : "snapshot", "Resources" : {"Include" : "*.service"}} | json_instruct | {"type": "object", "properties": {"ConfigVersion": {"type": "string"}, "PackageVersion": {"type": "string"}, "PrereleaseInfo": {"type": "string"}, "Resources": {"type": "object", "properties": {"Include": {"type": "string"}}, "required": ["Include"]}}, "required": ["ConfigVersion", "PackageVersion", "PrereleaseInfo", "Resources"], "$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"}, "homepage": {"type": "string"}, "repository": {"type": "string"}, "license": {"type": "string"}, "directories": {"type": "object", "properties": {"doc": {"type": "string"}}, "required": ["doc"]}, "dependencies": {"type": "object", "properties": {"browser-sync": {"type": "string"}, "eslint": {"type": "string"}, "htmllint": {"type": "string"}}, "required": ["browser-sync", "eslint", "htmllint"]}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}, "lint": {"type": "string"}, "lint:js": {"type": "string"}, "lint:html": {"type": "string"}}, "required": ["start", "lint", "lint:js", "lint:html"]}, "engines": {"type": "object", "properties": {"yarn": {"type": "string"}}, "required": ["yarn"]}}, "required": ["name", "version", "description", "homepage", "repository", "license", "directories", "dependencies", "scripts", "engines"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "data-science-tech-radar", "version" : "2018.5.0", "description" : "Visualizing data science technology decisions", "homepage" : "https://github.com/matdoering/tech-radar", "repository" : "https://github.com/matdoering/tech-radar", "license" : "MIT", "directories" : {"doc" : "docs"}, "dependencies" : {"browser-sync" : "^2.26.3", "eslint" : "^5.7.0", "htmllint" : "^0.7.2"}, "scripts" : {"start" : "browser-sync --port $PORT --no-open", "lint" : "npm run lint:js && npm run lint:html", "lint:js" : "eslint docs/*.js", "lint:html" : "htmllint docs/*.html"}, "engines" : {"yarn" : "1.22.4"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "homepage": {"type": "string"}, "repository": {"type": "string"}, "license": {"type": "string"}, "directories": {"type": "object", "properties": {"doc": {"type": "string"}}, "required": ["doc"]}, "dependencies": {"type": "object", "properties": {"browser-sync": {"type": "string"}, "eslint": {"type": "string"}, "htmllint": {"type": "string"}}, "required": ["browser-sync", "eslint", "htmllint"]}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}, "lint": {"type": "string"}, "lint:js": {"type": "string"}, "lint:html": {"type": "string"}}, "required": ["start", "lint", "lint:js", "lint:html"]}, "engines": {"type": "object", "properties": {"yarn": {"type": "string"}}, "required": ["yarn"]}}, "required": ["name", "version", "description", "homepage", "repository", "license", "directories", "dependencies", "scripts", "engines"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"id": {"type": "string"}, "lines": {"type": "object", "properties": {"68": {"type": "string"}, "1980": {"type": "string"}, "1990": {"type": "string"}}, "required": ["68", "1980", "1990"]}}, "required": ["id", "lines"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "88635700", "lines" : {"68" : "/**/private static BitField fProtEnabled = new BitField(0x02);\n", "1980" : " field_7_docinfo2 = (byte)fProtEnabled.setBoolean(field_7_docinfo2, value);\n", "1990" : " return fProtEnabled.isSet(field_7_docinfo2);\n"}} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "lines": {"type": "object", "properties": {"68": {"type": "string"}, "1980": {"type": "string"}, "1990": {"type": "string"}}, "required": ["68", "1980", "1990"]}}, "required": ["id", "lines"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"minutes": {"type": "integer"}, "pubdate": {"type": "string"}, "tags": {"type": "array", "items": {"type": "string"}}, "title": {"type": "string"}}, "required": ["minutes", "pubdate", "tags", "title"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"minutes" : 10, "pubdate" : "2019-04-23T22:17:14+09:00", "tags" : ["programming"], "title" : "bouzuya/purescript-fixdeps 0.1.0 \u7b49"} | json_instruct | {"type": "object", "properties": {"minutes": {"type": "integer"}, "pubdate": {"type": "string"}, "tags": {"type": "array", "items": {"type": "string"}}, "title": {"type": "string"}}, "required": ["minutes", "pubdate", "tags", "title"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"AMSF": {"type": "number"}, "EIG": {"type": "number"}, "PROS": {"type": "number"}, "JRVR": {"type": "number"}, "TIG": {"type": "number"}, "TRRSF": {"type": "number"}, "FACO": {"type": "number"}, "TIPT": {"type": "number"}, "MMMM": {"type": "number"}, "ITIC": {"type": "number"}, "ICCH": {"type": "number"}, "FAF": {"type": "number"}, "FNF": {"type": "number"}, "AMBC": {"type": "number"}, "LCSHF": {"type": "number"}, "TRUP": {"type": "number"}, "AIZ": {"type": "number"}, "ACMT": {"type": "number"}, "ACMTA": {"type": "number"}, "PPHI": {"type": "number"}, "RDN": {"type": "number"}, "MBI": {"type": "number"}, "MTG": {"type": "number"}, "SYCRF": {"type": "number"}, "AGO": {"type": "number"}, "FPLF": {"type": "number"}, "TGIC": {"type": "number"}}, "required": ["AMSF", "EIG", "PROS", "JRVR", "TIG", "TRRSF", "FACO", "TIPT", "MMMM", "ITIC", "ICCH", "FAF", "FNF", "AMBC", "LCSHF", "TRUP", "AIZ", "ACMT", "ACMTA", "PPHI", "RDN", "MBI", "MTG", "SYCRF", "AGO", "FPLF", "TGIC"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"AMSF" : 1.0, "EIG" : 0.2839496056334165, "PROS" : 0.2501818297921486, "JRVR" : 0.24109100518455978, "TIG" : 0.2339276908295968, "TRRSF" : 0.2271263746203343, "FACO" : 0.22221085215896222, "TIPT" : 0.2121534265677598, "MMMM" : 0.1983581931598118, "ITIC" : 0.19735688321338066, "ICCH" : 0.19574816181675403, "FAF" : 0.19521936124362776, "FNF" : 0.19267543526156727, "AMBC" : 0.18000424849980323, "LCSHF" : 0.17793381730925106, "TRUP" : 0.17320174238882455, "AIZ" : 0.17095705130026334, "ACMT" : 0.16434763331033486, "ACMTA" : 0.16434763331033486, "PPHI" : 0.15080665244226688, "RDN" : 0.13860089357613886, "MBI" : 0.13697137830125522, "MTG" : 0.1354499462505043, "SYCRF" : 0.132082107651059, "AGO" : 0.12793306699534926, "FPLF" : 0.12319500509558563, "TGIC" : 0.10011220387308721} | json_instruct | {"type": "object", "properties": {"AMSF": {"type": "number"}, "EIG": {"type": "number"}, "PROS": {"type": "number"}, "JRVR": {"type": "number"}, "TIG": {"type": "number"}, "TRRSF": {"type": "number"}, "FACO": {"type": "number"}, "TIPT": {"type": "number"}, "MMMM": {"type": "number"}, "ITIC": {"type": "number"}, "ICCH": {"type": "number"}, "FAF": {"type": "number"}, "FNF": {"type": "number"}, "AMBC": {"type": "number"}, "LCSHF": {"type": "number"}, "TRUP": {"type": "number"}, "AIZ": {"type": "number"}, "ACMT": {"type": "number"}, "ACMTA": {"type": "number"}, "PPHI": {"type": "number"}, "RDN": {"type": "number"}, "MBI": {"type": "number"}, "MTG": {"type": "number"}, "SYCRF": {"type": "number"}, "AGO": {"type": "number"}, "FPLF": {"type": "number"}, "TGIC": {"type": "number"}}, "required": ["AMSF", "EIG", "PROS", "JRVR", "TIG", "TRRSF", "FACO", "TIPT", "MMMM", "ITIC", "ICCH", "FAF", "FNF", "AMBC", "LCSHF", "TRUP", "AIZ", "ACMT", "ACMTA", "PPHI", "RDN", "MBI", "MTG", "SYCRF", "AGO", "FPLF", "TGIC"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "nama": {"type": "string"}}, "required": ["id", "nama"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"id" : "3522052001", "nama" : "Bubulan"}, {"id" : "3522052002", "nama" : "Cancung"}, {"id" : "3522052003", "nama" : "Clebung"}, {"id" : "3522052004", "nama" : "Sumberbendo"}, {"id" : "3522052005", "nama" : "Ngorogunung"}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "nama": {"type": "string"}}, "required": ["id", "nama"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"template": {"type": "object", "properties": {"small": {"type": "string"}, "medium": {"type": "string"}, "large": {"type": "string"}}, "required": ["small", "medium", "large"]}, "channels": {"type": "object", "properties": {"stormyrise": {"type": "object", "properties": {"title": {"type": "string"}, "channel_id": {"type": "integer"}, "link": {"type": "string"}, "desc": {"type": "null"}, "plans": {"type": "object", "properties": {"$4.99": {"type": "string"}, "$9.99": {"type": "string"}, "$24.99": {"type": "string"}}, "required": ["$4.99", "$9.99", "$24.99"]}, "id": {"type": "string"}, "first_seen": {"type": "string"}, "badge": {"type": "null"}, "badge_starting": {"type": "null"}, "badge_3m": {"type": "null"}, "badge_6m": {"type": "null"}, "badge_12m": {"type": "null"}, "badge_24m": {"type": "null"}, "badges": {"type": "null"}, "bits_badges": {"type": "null"}, "cheermote1": {"type": "null"}, "cheermote100": {"type": "null"}, "cheermote1000": {"type": "null"}, "cheermote5000": {"type": "null"}, "cheermote10000": {"type": "null"}, "set": {"type": "integer"}, "emotes": {"type": "array", "items": {"type": "object", "properties": {"code": {"type": "string"}, "image_id": {"type": "integer"}, "set": {"type": "integer"}}, "required": ["code", "image_id", "set"]}}}, "required": ["title", "channel_id", "link", "desc", "plans", "id", "first_seen", "badge", "badge_starting", "badge_3m", "badge_6m", "badge_12m", "badge_24m", "badges", "bits_badges", "cheermote1", "cheermote100", "cheermote1000", "cheermote5000", "cheermote10000", "set", "emotes"]}}, "required": ["stormyrise"]}}, "required": ["template", "channels"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"template" : {"small" : "https://static-cdn.jtvnw.net/emoticons/v1/{image_id}/1.0", "medium" : "https://static-cdn.jtvnw.net/emoticons/v1/{image_id}/2.0", "large" : "https://static-cdn.jtvnw.net/emoticons/v1/{image_id}/3.0"}, "channels" : {"stormyrise" : {"title" : "StormyRise", "channel_id" : 57651682, "link" : "http://twitch.tv/stormyrise", "desc" : null, "plans" : {"$4.99" : "240834", "$9.99" : "240837", "$24.99" : "240838"}, "id" : "stormyrise", "first_seen" : "2017-07-02 00:30:09", "badge" : null, "badge_starting" : null, "badge_3m" : null, "badge_6m" : null, "badge_12m" : null, "badge_24m" : null, "badges" : null, "bits_badges" : null, "cheermote1" : null, "cheermote100" : null, "cheermote1000" : null, "cheermote5000" : null, "cheermote10000" : null, "set" : 240834, "emotes" : [{"code" : "stormy2MizuHype", "image_id" : 257818, "set" : 240834}, {"code" : "stormy2DeviljhoLove", "image_id" : 257821, "set" : 240837}, {"code" : "stormy2ChammyRage", "image_id" : 257823, "set" : 240838}]}}} | json_instruct | {"type": "object", "properties": {"template": {"type": "object", "properties": {"small": {"type": "string"}, "medium": {"type": "string"}, "large": {"type": "string"}}, "required": ["small", "medium", "large"]}, "channels": {"type": "object", "properties": {"stormyrise": {"type": "object", "properties": {"title": {"type": "string"}, "channel_id": {"type": "integer"}, "link": {"type": "string"}, "desc": {"type": "null"}, "plans": {"type": "object", "properties": {"$4.99": {"type": "string"}, "$9.99": {"type": "string"}, "$24.99": {"type": "string"}}, "required": ["$4.99", "$9.99", "$24.99"]}, "id": {"type": "string"}, "first_seen": {"type": "string"}, "badge": {"type": "null"}, "badge_starting": {"type": "null"}, "badge_3m": {"type": "null"}, "badge_6m": {"type": "null"}, "badge_12m": {"type": "null"}, "badge_24m": {"type": "null"}, "badges": {"type": "null"}, "bits_badges": {"type": "null"}, "cheermote1": {"type": "null"}, "cheermote100": {"type": "null"}, "cheermote1000": {"type": "null"}, "cheermote5000": {"type": "null"}, "cheermote10000": {"type": "null"}, "set": {"type": "integer"}, "emotes": {"type": "array", "items": {"type": "object", "properties": {"code": {"type": "string"}, "image_id": {"type": "integer"}, "set": {"type": "integer"}}, "required": ["code", "image_id", "set"]}}}, "required": ["title", "channel_id", "link", "desc", "plans", "id", "first_seen", "badge", "badge_starting", "badge_3m", "badge_6m", "badge_12m", "badge_24m", "badges", "bits_badges", "cheermote1", "cheermote100", "cheermote1000", "cheermote5000", "cheermote10000", "set", "emotes"]}}, "required": ["stormyrise"]}}, "required": ["template", "channels"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"Logging": {"type": "object", "properties": {"LogLevel": {"type": "object", "properties": {"Default": {"type": "string"}, "Hippo": {"type": "string"}}, "required": ["Default", "Hippo"]}}, "required": ["LogLevel"]}, "Jwt": {"type": "object", "properties": {"Key": {"type": "string"}, "Issuer": {"type": "string"}, "Audience": {"type": "string"}}, "required": ["Key", "Issuer", "Audience"]}, "Nomad": {"type": "object", "properties": {"Datacenters": {"type": "array", "items": {"type": "string"}}, "Url": {"type": "string"}, "Secret": {"type": "string"}}, "required": ["Datacenters", "Url", "Secret"]}, "Database": {"type": "object", "properties": {"Driver": {"type": "string"}}, "required": ["Driver"]}, "ConnectionStrings": {"type": "object", "properties": {"Database": {"type": "string"}}, "required": ["Database"]}}, "required": ["Logging", "Jwt", "Nomad", "Database", "ConnectionStrings"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"Logging" : {"LogLevel" : {"Default" : "Warning", "Hippo" : "Information"}}, "Jwt" : {"Key" : "CHANGEME", "Issuer" : "example.com", "Audience" : "example.com"}, "Nomad" : {"Datacenters" : ["dc1"], "Url" : "http://localhost:4646/v1", "Secret" : ""}, "Database" : {"Driver" : "postgresql"}, "ConnectionStrings" : {"Database" : "Host=localhost;Username=postgres;Password=postgres;Database=hippo"}} | json_instruct | {"type": "object", "properties": {"Logging": {"type": "object", "properties": {"LogLevel": {"type": "object", "properties": {"Default": {"type": "string"}, "Hippo": {"type": "string"}}, "required": ["Default", "Hippo"]}}, "required": ["LogLevel"]}, "Jwt": {"type": "object", "properties": {"Key": {"type": "string"}, "Issuer": {"type": "string"}, "Audience": {"type": "string"}}, "required": ["Key", "Issuer", "Audience"]}, "Nomad": {"type": "object", "properties": {"Datacenters": {"type": "array", "items": {"type": "string"}}, "Url": {"type": "string"}, "Secret": {"type": "string"}}, "required": ["Datacenters", "Url", "Secret"]}, "Database": {"type": "object", "properties": {"Driver": {"type": "string"}}, "required": ["Driver"]}, "ConnectionStrings": {"type": "object", "properties": {"Database": {"type": "string"}}, "required": ["Database"]}}, "required": ["Logging", "Jwt", "Nomad", "Database", "ConnectionStrings"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "private": {"type": "boolean"}, "devDependencies": {"type": "object", "properties": {"typescript": {"type": "string"}, "ts-node-dev": {"type": "string"}, "ts-node": {"type": "string"}}, "required": ["typescript", "ts-node-dev", "ts-node"]}, "dependencies": {"type": "object", "properties": {"@graphql-yoga/node": {"type": "string"}, "graphql": {"type": "string"}}, "required": ["@graphql-yoga/node", "graphql"]}, "scripts": {"type": "object", "properties": {"dev": {"type": "string"}, "start": {"type": "string"}, "check": {"type": "string"}}, "required": ["dev", "start", "check"]}}, "required": ["name", "version", "private", "devDependencies", "dependencies", "scripts"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "issue-template", "version" : "1.6.0", "private" : true, "devDependencies" : {"typescript" : "^4.6.3", "ts-node-dev" : "^1.1.8", "ts-node" : "^10.7.0"}, "dependencies" : {"@graphql-yoga/node" : "^2.6.0", "graphql" : "^16.3.0"}, "scripts" : {"dev" : "ts-node-dev src/main.ts", "start" : "ts-node src/main.ts", "check" : "tsc"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "private": {"type": "boolean"}, "devDependencies": {"type": "object", "properties": {"typescript": {"type": "string"}, "ts-node-dev": {"type": "string"}, "ts-node": {"type": "string"}}, "required": ["typescript", "ts-node-dev", "ts-node"]}, "dependencies": {"type": "object", "properties": {"@graphql-yoga/node": {"type": "string"}, "graphql": {"type": "string"}}, "required": ["@graphql-yoga/node", "graphql"]}, "scripts": {"type": "object", "properties": {"dev": {"type": "string"}, "start": {"type": "string"}, "check": {"type": "string"}}, "required": ["dev", "start", "check"]}}, "required": ["name", "version", "private", "devDependencies", "dependencies", "scripts"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"2661": {"type": "string"}, "2659": {"type": "string"}}, "required": ["2661", "2659"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"2661" : "2662", "2659" : "2660"} | json_instruct | {"type": "object", "properties": {"2661": {"type": "string"}, "2659": {"type": "string"}}, "required": ["2661", "2659"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"id": {"type": "string"}, "provinceId": {"type": "string"}, "regencyId": {"type": "string"}, "districtId": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "provinceId", "regencyId", "districtId", "name"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "1016", "provinceId" : "12", "regencyId" : "17", "districtId" : "01", "name" : "Tuktuk Siadong"} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "provinceId": {"type": "string"}, "regencyId": {"type": "string"}, "districtId": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "provinceId", "regencyId", "districtId", "name"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "array", "items": {"type": "object", "properties": {"event": {"type": "string"}}, "required": ["event"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"event" : "\u5f00\u59cb\u6d4f\u89c8"}, {"event" : "\u8d2d\u4e70"}, {"event" : "\u6dfb\u52a0\u6807\u7b7e"}, {"event" : "\u652f\u4ed8"}, {"event" : "\u5b8c\u6210"}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"event": {"type": "string"}}, "required": ["event"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"DESCRIPTION": {"type": "string"}, "USAGE": {"type": "string"}, "EXAMPLES": {"type": "string"}, "LYRICS_OF": {"type": "string"}, "AND_MORE": {"type": "string"}, "REST": {"type": "string"}, "MISSING_SONG_NAME": {"type": "string"}, "NO_LYRICS_FOUND": {"type": "string"}}, "required": ["DESCRIPTION", "USAGE", "EXAMPLES", "LYRICS_OF", "AND_MORE", "REST", "MISSING_SONG_NAME", "NO_LYRICS_FOUND"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"DESCRIPTION" : "Memperlihatkan lirik lagu", "USAGE" : "{{prefix}}lyrics [nama-lagu]", "EXAMPLES" : "{{prefix}}lyrics Skyfall", "LYRICS_OF" : "\ud83c\udfa4 lirik {{songName}}", "AND_MORE" : "\n**Dan lainnya...**", "REST" : "Perluas", "MISSING_SONG_NAME" : "Harap tentukan nama lagu!", "NO_LYRICS_FOUND" : "Tidak ada lirik ditemukan untuk `{{songName}}`!"} | json_instruct | {"type": "object", "properties": {"DESCRIPTION": {"type": "string"}, "USAGE": {"type": "string"}, "EXAMPLES": {"type": "string"}, "LYRICS_OF": {"type": "string"}, "AND_MORE": {"type": "string"}, "REST": {"type": "string"}, "MISSING_SONG_NAME": {"type": "string"}, "NO_LYRICS_FOUND": {"type": "string"}}, "required": ["DESCRIPTION", "USAGE", "EXAMPLES", "LYRICS_OF", "AND_MORE", "REST", "MISSING_SONG_NAME", "NO_LYRICS_FOUND"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"Time": {"type": "string"}, "Temp": {"type": "number"}, "RelHum": {"type": "integer"}, "WindSpeed": {"type": "number"}, "WindDir": {"type": "integer"}}, "required": ["Time", "Temp", "RelHum", "WindSpeed", "WindDir"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"Time" : "2021-05-23T11:00:00Z", "Temp" : 27.3, "RelHum" : 45, "WindSpeed" : 6.1, "WindDir" : 278} | json_instruct | {"type": "object", "properties": {"Time": {"type": "string"}, "Temp": {"type": "number"}, "RelHum": {"type": "integer"}, "WindSpeed": {"type": "number"}, "WindDir": {"type": "integer"}}, "required": ["Time", "Temp", "RelHum", "WindSpeed", "WindDir"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"count": {"type": "integer"}, "411011": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}, "359031": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}, "533030": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}, "434051": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}, "N.A.//": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}}, "required": ["count", "411011", "359031", "533030", "434051", "N.A.//"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"count" : 7, "411011" : {"count" : 1}, "359031" : {"count" : 1}, "533030" : {"count" : 1}, "434051" : {"count" : 1}, "N.A.//" : {"count" : 3}} | json_instruct | {"type": "object", "properties": {"count": {"type": "integer"}, "411011": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}, "359031": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}, "533030": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}, "434051": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}, "N.A.//": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}}, "required": ["count", "411011", "359031", "533030", "434051", "N.A.//"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "text": {"type": "string"}}, "required": ["id", "text"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"id" : "220822401598", "text" : "\u4e09\u5bb6\u5b50\u79cd\u725b\u573a\u865a\u62df\u751f\u6d3b\u533a"}] | 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": "array", "items": {"type": "object", "properties": {"code": {"type": "string"}, "name": {"type": "string"}, "name_kana": {"type": "string"}}, "required": ["code", "name", "name_kana"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"code" : "001", "name" : "\u672c\u5e97", "name_kana" : "\uff8e\uff9d\uff83\uff9d"}, {"code" : "301", "name" : "\u5185\u7058", "name_kana" : "\uff73\uff81\uff85\uff80\uff9e"}, {"code" : "305", "name" : "\u6d25\u5e61", "name_kana" : "\uff82\uff8a\uff9e\uff80"}, {"code" : "311", "name" : "\u6d25\u5e61\u6771", "name_kana" : "\uff82\uff8a\uff9e\uff80\uff8b\uff76\uff9e\uff7c"}, {"code" : "316", "name" : "\u5b87\u30ce\u6c17", "name_kana" : "\uff73\uff89\uff79"}, {"code" : "318", "name" : "\u9ad8\u677e", "name_kana" : "\uff80\uff76\uff8f\uff82"}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"code": {"type": "string"}, "name": {"type": "string"}, "name_kana": {"type": "string"}}, "required": ["code", "name", "name_kana"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"Id": {"type": "string"}, "IsStatic": {"type": "boolean"}, "useGravity": {"type": "boolean"}, "randomRotation": {"type": "boolean"}, "Position": {"type": "object", "properties": {"x": {"type": "integer"}, "y": {"type": "integer"}, "z": {"type": "integer"}}, "required": ["x", "y", "z"]}, "Rotation": {"type": "object", "properties": {"x": {"type": "integer"}, "y": {"type": "integer"}, "z": {"type": "integer"}}, "required": ["x", "y", "z"]}, "IsGroupPosition": {"type": "boolean"}, "GroupPositions": {"type": "array", "items": {}}, "Root": {"type": "string"}, "Items": {"type": "array", "items": {"type": "object", "properties": {"_id": {"type": "string"}, "_tpl": {"type": "string"}}, "required": ["_id", "_tpl"]}}}, "required": ["Id", "IsStatic", "useGravity", "randomRotation", "Position", "Rotation", "IsGroupPosition", "GroupPositions", "Root", "Items"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"Id" : "Lootable_00010", "IsStatic" : true, "useGravity" : true, "randomRotation" : false, "Position" : {"x" : 0, "y" : 0, "z" : 0}, "Rotation" : {"x" : 0, "y" : 0, "z" : 0}, "IsGroupPosition" : false, "GroupPositions" : [], "Root" : "5e68b28e86f77406711e5f20", "Items" : [{"_id" : "5e68b28e86f77406711e5f20", "_tpl" : "578f87ad245977356274f2cc"}, {"_id" : "5e68b28e86f77406711e5f21", "_tpl" : "5656d7c34bdc2d9d198b4587", "parentId" : "5e68b28e86f77406711e5f20", "slotId" : "main", "location" : {"x" : 0, "y" : 0, "r" : 0}, "upd" : {"StackObjectsCount" : 11}}, {"_id" : "5e68b28e86f77406711e5f22", "_tpl" : "55d4837c4bdc2d1d4e8b456c", "parentId" : "5e68b28e86f77406711e5f20", "slotId" : "main", "location" : {"x" : 1, "y" : 0, "r" : 0}}, {"_id" : "5e68b28e86f77406711e5f23", "_tpl" : "5656d7c34bdc2d9d198b4587", "parentId" : "5e68b28e86f77406711e5f20", "slotId" : "main", "location" : {"x" : 2, "y" : 0, "r" : 0}, "upd" : {"StackObjectsCount" : 11}}]} | json_instruct | {"type": "object", "properties": {"Id": {"type": "string"}, "IsStatic": {"type": "boolean"}, "useGravity": {"type": "boolean"}, "randomRotation": {"type": "boolean"}, "Position": {"type": "object", "properties": {"x": {"type": "integer"}, "y": {"type": "integer"}, "z": {"type": "integer"}}, "required": ["x", "y", "z"]}, "Rotation": {"type": "object", "properties": {"x": {"type": "integer"}, "y": {"type": "integer"}, "z": {"type": "integer"}}, "required": ["x", "y", "z"]}, "IsGroupPosition": {"type": "boolean"}, "GroupPositions": {"type": "array", "items": {}}, "Root": {"type": "string"}, "Items": {"type": "array", "items": {"type": "object", "properties": {"_id": {"type": "string"}, "_tpl": {"type": "string"}}, "required": ["_id", "_tpl"]}}}, "required": ["Id", "IsStatic", "useGravity", "randomRotation", "Position", "Rotation", "IsGroupPosition", "GroupPositions", "Root", "Items"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"textures": {"type": "object", "properties": {"particle": {"type": "string"}}, "required": ["particle"]}}, "required": ["textures"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"textures" : {"particle" : "mekanism:liquid/liquid"}} | json_instruct | {"type": "object", "properties": {"textures": {"type": "object", "properties": {"particle": {"type": "string"}}, "required": ["particle"]}}, "required": ["textures"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"hash": {"type": "string"}, "parentHash": {"type": "string"}, "number": {"type": "integer"}, "timestamp": {"type": "integer"}, "nonce": {"type": "string"}, "difficulty": {"type": "integer"}, "gasLimit": {"type": "object", "properties": {"_hex": {"type": "string"}}, "required": ["_hex"]}, "gasUsed": {"type": "object", "properties": {"_hex": {"type": "string"}}, "required": ["_hex"]}, "miner": {"type": "string"}, "extraData": {"type": "string"}, "transactions": {"type": "array", "items": {}}}, "required": ["hash", "parentHash", "number", "timestamp", "nonce", "difficulty", "gasLimit", "gasUsed", "miner", "extraData", "transactions"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"hash" : "0xe6b709a31a37686b588ae2b2a54f4aff94c4927e7a771b292da109b81085077b", "parentHash" : "0x4489bb88bc81a77ed348665d811121f3e39d12c4ae822b74fff24b97a6142498", "number" : 62145, "timestamp" : 1439183900, "nonce" : "0xd3e0d984c9bf36e0", "difficulty" : 1772902511390, "gasLimit" : {"_hex" : "0x2fefd8"}, "gasUsed" : {"_hex" : "0x0"}, "miner" : "0x31995C46B15C84523cDEE26f49A681b8237e43F5", "extraData" : "0x476574682f76312e302e312f77696e646f77732f676f312e342e32", "transactions" : []} | json_instruct | {"type": "object", "properties": {"hash": {"type": "string"}, "parentHash": {"type": "string"}, "number": {"type": "integer"}, "timestamp": {"type": "integer"}, "nonce": {"type": "string"}, "difficulty": {"type": "integer"}, "gasLimit": {"type": "object", "properties": {"_hex": {"type": "string"}}, "required": ["_hex"]}, "gasUsed": {"type": "object", "properties": {"_hex": {"type": "string"}}, "required": ["_hex"]}, "miner": {"type": "string"}, "extraData": {"type": "string"}, "transactions": {"type": "array", "items": {}}}, "required": ["hash", "parentHash", "number", "timestamp", "nonce", "difficulty", "gasLimit", "gasUsed", "miner", "extraData", "transactions"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"name": {"type": "string"}, "type": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "license": {"type": "string"}, "description": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}, "homepage": {"type": "string"}}, "required": ["name", "email", "homepage"]}}, "require": {"type": "object", "properties": {"php": {"type": "string"}, "dg/ftp-php": {"type": "string"}, "symfony/finder": {"type": "string"}}, "required": ["php", "dg/ftp-php", "symfony/finder"]}, "autoload": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"RoboFtp\\": {"type": "string"}}, "required": ["RoboFtp\\"]}}, "required": ["psr-4"]}}, "required": ["name", "type", "keywords", "license", "description", "authors", "require", "autoload"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "coderstephen/robo-ftp", "type" : "library", "keywords" : ["robo", "ftp", "ftps"], "license" : "MIT", "description" : "FTP(S) task for Robo", "authors" : [{"name" : "Stephen Coakley", "email" : "[email protected]", "homepage" : "http://stephencoakley.com"}], "require" : {"php" : ">=5.4.0", "dg/ftp-php" : "~1.1", "symfony/finder" : "~2.6"}, "autoload" : {"psr-4" : {"RoboFtp\\" : "src"}}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "type": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "license": {"type": "string"}, "description": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}, "homepage": {"type": "string"}}, "required": ["name", "email", "homepage"]}}, "require": {"type": "object", "properties": {"php": {"type": "string"}, "dg/ftp-php": {"type": "string"}, "symfony/finder": {"type": "string"}}, "required": ["php", "dg/ftp-php", "symfony/finder"]}, "autoload": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"RoboFtp\\": {"type": "string"}}, "required": ["RoboFtp\\"]}}, "required": ["psr-4"]}}, "required": ["name", "type", "keywords", "license", "description", "authors", "require", "autoload"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}}, "required": ["name", "version"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "@umijs/preset-2", "version" : "1"} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}}, "required": ["name", "version"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"directions": {"type": "array", "items": {"type": "string"}}, "ingredients": {"type": "array", "items": {"type": "string"}}, "language": {"type": "string"}, "source": {"type": "string"}, "tags": {"type": "array", "items": {}}, "title": {"type": "string"}, "url": {"type": "string"}}, "required": ["directions", "ingredients", "language", "source", "tags", "title", "url"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"directions" : ["To Marinate: Combine the wine, garlic, oregano, salt, pepper, bay leaves, and cumin in a nonporous glass dish or bowl. Mix together. Add pork and toss to coat. Cover dish or bowl and refrigerate to marinate for 2 to 3 hours.", "Heat oil in a large skillet over medium heat. Add onion and saute until soft. Remove pork from dish or bowl (reserving marinade) and add to skillet; brown quickly, then add potato cubes, reserved marinade, beans, cayenne pepper and clams or mussels. Cook until open, about 7 minutes. Garnish with parsley and serve hot."], "ingredients" : ["1 cup white wine", "3 cloves garlic, chopped", "1 teaspoon dried oregano", "1 teaspoon salt", "1/2 teaspoon ground black pepper", "2 bay leaves", "1/2 teaspoon ground cumin", "1 pound boneless pork loin, cubed", "1 tablespoon olive oil", "1 onion, sliced", "1 pound cooked and diced potatoes", "1 (15 ounce) can cannellini beans", "1 pinch ground cayenne pepper", "18 clams", "3 tablespoons chopped fresh parsley, for garnish"], "language" : "en-US", "source" : "allrecipes.com", "tags" : [], "title" : "Portuguese Pork and Clams", "url" : "http://allrecipes.com/recipe/15852/portuguese-pork-and-clams/"} | json_instruct | {"type": "object", "properties": {"directions": {"type": "array", "items": {"type": "string"}}, "ingredients": {"type": "array", "items": {"type": "string"}}, "language": {"type": "string"}, "source": {"type": "string"}, "tags": {"type": "array", "items": {}}, "title": {"type": "string"}, "url": {"type": "string"}}, "required": ["directions", "ingredients", "language", "source", "tags", "title", "url"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"brief": {"type": "string"}, "long": {"type": "string"}}, "required": ["brief", "long"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"brief" : "I take up, abolish, murder", "long" : "I take up, take away the life of, make an end of, murder."} | json_instruct | {"type": "object", "properties": {"brief": {"type": "string"}, "long": {"type": "string"}}, "required": ["brief", "long"], "$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.