input stringlengths 159 2.05k | output stringlengths 5 10.3k | task stringclasses 1
value | schema stringlengths 100 1.99k |
|---|---|---|---|
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"migrations": {"type": "array", "items": {"type": "object", "properties": {"created_at": {"type": "string"}, "dest_compute": {"type": "string"}, "dest_host": {"type": "string"}, "dest_node": {"type": "string"}, "id": {"type": "integer"}, "instance_uuid": {"type": "string"}, "new_instance_type_id": {"type": "integer"}, "old_instance_type_id": {"type": "integer"}, "source_compute": {"type": "string"}, "source_node": {"type": "string"}, "status": {"type": "string"}, "migration_type": {"type": "string"}, "updated_at": {"type": "string"}, "uuid": {"type": "string"}, "user_id": {"type": "string"}, "project_id": {"type": "string"}}, "required": ["created_at", "dest_compute", "dest_host", "dest_node", "id", "instance_uuid", "new_instance_type_id", "old_instance_type_id", "source_compute", "source_node", "status", "migration_type", "updated_at", "uuid", "user_id", "project_id"]}}}, "required": ["migrations"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"migrations" : [{"created_at" : "2016-01-29T12:42:02.000000", "dest_compute" : "compute2", "dest_host" : "1.2.3.4", "dest_node" : "node2", "id" : 2, "instance_uuid" : "8600d31b-d1a1-4632-b2ff-45c2be1a70ff", "new_instance_type_id" : 1, "old_instance_type_id" : 1, "source_compute" : "compute1", "source_node" : "node1", "status" : "error", "migration_type" : "live-migration", "updated_at" : "2016-01-29T12:42:02.000000", "uuid" : "22341d4b-346a-40d0-83c6-5f4f6892b650", "user_id" : "5c48ebaa-193f-4c5d-948a-f559cc92cd5e", "project_id" : "ef92ccff-00f3-46e4-b015-811110e36ee4"}, {"created_at" : "2016-01-29T11:42:02.000000", "dest_compute" : "compute2", "dest_host" : "1.2.3.4", "dest_node" : "node2", "id" : 1, "instance_uuid" : "8600d31b-d1a1-4632-b2ff-45c2be1a70ff", "links" : [{"href" : "http://openstack.example.com/v2.1/6f70656e737461636b20342065766572/servers/8600d31b-d1a1-4632-b2ff-45c2be1a70ff/migrations/1", "rel" : "self"}, {"href" : "http://openstack.example.com/6f70656e737461636b20342065766572/servers/8600d31b-d1a1-4632-b2ff-45c2be1a70ff/migrations/1", "rel" : "bookmark"}], "new_instance_type_id" : 1, "old_instance_type_id" : 1, "source_compute" : "compute1", "source_node" : "node1", "status" : "running", "migration_type" : "live-migration", "updated_at" : "2016-01-29T11:42:02.000000", "uuid" : "12341d4b-346a-40d0-83c6-5f4f6892b650", "user_id" : "5c48ebaa-193f-4c5d-948a-f559cc92cd5e", "project_id" : "ef92ccff-00f3-46e4-b015-811110e36ee4"}]} | json_instruct | {"type": "object", "properties": {"migrations": {"type": "array", "items": {"type": "object", "properties": {"created_at": {"type": "string"}, "dest_compute": {"type": "string"}, "dest_host": {"type": "string"}, "dest_node": {"type": "string"}, "id": {"type": "integer"}, "instance_uuid": {"type": "string"}, "new_instance_type_id": {"type": "integer"}, "old_instance_type_id": {"type": "integer"}, "source_compute": {"type": "string"}, "source_node": {"type": "string"}, "status": {"type": "string"}, "migration_type": {"type": "string"}, "updated_at": {"type": "string"}, "uuid": {"type": "string"}, "user_id": {"type": "string"}, "project_id": {"type": "string"}}, "required": ["created_at", "dest_compute", "dest_host", "dest_node", "id", "instance_uuid", "new_instance_type_id", "old_instance_type_id", "source_compute", "source_node", "status", "migration_type", "updated_at", "uuid", "user_id", "project_id"]}}}, "required": ["migrations"], "$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"}}, "required": ["id"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "93862065c9d75efe8f9b92c92ef2f274fac0f500"} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}}, "required": ["id"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "license": {"type": "string"}, "main": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "author": {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"]}, "files": {"type": "array", "items": {"type": "string"}}, "keywords": {"type": "array", "items": {"type": "string"}}, "readme": {"type": "string"}, "readmeFilename": {"type": "string"}, "_id": {"type": "string"}, "_from": {"type": "string"}}, "required": ["name", "version", "description", "license", "main", "repository", "author", "files", "keywords", "readme", "readmeFilename", "_id", "_from"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "todomvc-common", "version" : "0.1.9", "description" : "Common TodoMVC utilities used by our apps", "license" : "MIT", "main" : "base.js", "repository" : {"type" : "git", "url" : "tastejs-todomvc-common"}, "author" : {"name" : "TasteJS team"}, "files" : ["base.js", "base.css"], "keywords" : ["todomvc", "tastejs", "util", "utilities"], "readme" : "# todomvc-common\n\n> Common TodoMVC utilities used by our apps\n\n\n## License\n\nMIT \u00a9 [TasteJS](http://tastejs.com)\n", "readmeFilename" : "readme.md", "_id" : "todomvc-common@0.1.9", "_from" : "todomvc-common@~0.1.4"} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "license": {"type": "string"}, "main": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "author": {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"]}, "files": {"type": "array", "items": {"type": "string"}}, "keywords": {"type": "array", "items": {"type": "string"}}, "readme": {"type": "string"}, "readmeFilename": {"type": "string"}, "_id": {"type": "string"}, "_from": {"type": "string"}}, "required": ["name", "version", "description", "license", "main", "repository", "author", "files", "keywords", "readme", "readmeFilename", "_id", "_from"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"votes": {"type": "object", "properties": {"diff": {"type": "integer"}, "dem": {"type": "integer"}, "tot": {"type": "integer"}, "gop": {"type": "integer"}}, "required": ["diff", "dem", "tot", "gop"]}, "for": {"type": "string"}, "pct": {"type": "object", "properties": {"dem": {"type": "number"}, "per_point_diff": {"type": "number"}, "gop": {"type": "number"}}, "required": ["dem", "per_point_diff", "gop"]}}, "required": ["votes", "for", "pct"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"votes" : {"diff" : 1961, "dem" : 3219, "tot" : 8975, "gop" : 5180}, "for" : "NY/Yates County/36123", "pct" : {"dem" : 35.87, "per_point_diff" : 21.85, "gop" : 57.72}} | json_instruct | {"type": "object", "properties": {"votes": {"type": "object", "properties": {"diff": {"type": "integer"}, "dem": {"type": "integer"}, "tot": {"type": "integer"}, "gop": {"type": "integer"}}, "required": ["diff", "dem", "tot", "gop"]}, "for": {"type": "string"}, "pct": {"type": "object", "properties": {"dem": {"type": "number"}, "per_point_diff": {"type": "number"}, "gop": {"type": "number"}}, "required": ["dem", "per_point_diff", "gop"]}}, "required": ["votes", "for", "pct"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {"type": "integer"}}, "productReviews": {"type": "array", "items": {}}}, "required": ["userId", "cartId", "preferredProducts", "productReviews"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"userId" : 42090, "cartId" : "72fd35cb-3617-426a-b529-0cc22926d3a1", "preferredProducts" : [1984, 4687, 4053, 1367], "productReviews" : []} | json_instruct | {"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {"type": "integer"}}, "productReviews": {"type": "array", "items": {}}}, "required": ["userId", "cartId", "preferredProducts", "productReviews"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"id": {"type": "integer"}, "source": {"type": "string"}, "verse_id": {"type": "integer"}, "verse_count": {"type": "integer"}, "reference": {"type": "string"}, "title": {"type": "string"}, "html": {"type": "string"}, "audit": {"type": "null"}}, "required": ["id", "source", "verse_id", "verse_count", "reference", "title", "html", "audit"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : 17015, "source" : "brewster", "verse_id" : 17960, "verse_count" : 1, "reference" : "14:31", "title" : "", "html" : "<p><b>(<a class=\"ref\">2 Nephi 24:31</a>).</b>\"<i>There shall come from the north a smoke.</i>\" An invading army (probably the Assyrians) shall come from the north.</p>", "audit" : null} | json_instruct | {"type": "object", "properties": {"id": {"type": "integer"}, "source": {"type": "string"}, "verse_id": {"type": "integer"}, "verse_count": {"type": "integer"}, "reference": {"type": "string"}, "title": {"type": "string"}, "html": {"type": "string"}, "audit": {"type": "null"}}, "required": ["id", "source", "verse_id", "verse_count", "reference", "title", "html", "audit"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"web": {"type": "array", "items": {"type": "object", "properties": {"value": {"type": "array", "items": {"type": "string"}}, "key": {"type": "string"}}, "required": ["value", "key"]}}, "query": {"type": "string"}, "translation": {"type": "array", "items": {"type": "string"}}, "errorCode": {"type": "string"}, "dict": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "webdict": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "l": {"type": "string"}}, "required": ["web", "query", "translation", "errorCode", "dict", "webdict", "l"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"web" : [{"value" : ["\u4e24\u5c0f\u65f6"], "key" : "two-hour"}, {"value" : ["\u4e24\u4e2a\u65f6\u8fb0", "\u5373\u56db\u4e2a\u5c0f\u65f6"], "key" : "two two-hour"}, {"value" : ["\u4e8c\u8868\u6cd5"], "key" : "two watt-hour meters method"}], "query" : "two-hour", "translation" : ["\u4e24\u4e2a\u5c0f\u65f6\u7684"], "errorCode" : "0", "dict" : {"url" : "yddict://m.youdao.com/dict?le=eng&q=two-hour"}, "webdict" : {"url" : "http://m.youdao.com/dict?le=eng&q=two-hour"}, "l" : "EN2zh-CHS"} | json_instruct | {"type": "object", "properties": {"web": {"type": "array", "items": {"type": "object", "properties": {"value": {"type": "array", "items": {"type": "string"}}, "key": {"type": "string"}}, "required": ["value", "key"]}}, "query": {"type": "string"}, "translation": {"type": "array", "items": {"type": "string"}}, "errorCode": {"type": "string"}, "dict": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "webdict": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "l": {"type": "string"}}, "required": ["web", "query", "translation", "errorCode", "dict", "webdict", "l"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"472150": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}, "count": {"type": "integer"}, "291151": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}}, "required": ["472150", "count", "291151"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"472150" : {"count" : 1}, "count" : 2, "291151" : {"count" : 1}} | json_instruct | {"type": "object", "properties": {"472150": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}, "count": {"type": "integer"}, "291151": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}}, "required": ["472150", "count", "291151"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"326451": {"type": "object", "properties": {"success": {"type": "boolean"}}, "required": ["success"]}}, "required": ["326451"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"326451" : {"success" : false}} | json_instruct | {"type": "object", "properties": {"326451": {"type": "object", "properties": {"success": {"type": "boolean"}}, "required": ["success"]}}, "required": ["326451"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"addBookmark": {"type": "string"}, "goToBookmark": {"type": "string"}, "noBookmarksHeading": {"type": "string"}, "noBookmarksDescription": {"type": "string"}, "title": {"type": "string"}, "addPlaceholder": {"type": "string"}, "addingBookmark": {"type": "string"}, "widgetLabel": {"type": "string"}}, "required": ["addBookmark", "goToBookmark", "noBookmarksHeading", "noBookmarksDescription", "title", "addPlaceholder", "addingBookmark", "widgetLabel"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"addBookmark" : "Ajouter un g\u00e9osignet", "goToBookmark" : "Acc\u00e9der \u00e0 un g\u00e9osignet", "noBookmarksHeading" : "Aucun g\u00e9osignet", "noBookmarksDescription" : "Les g\u00e9osignets que vous ajoutez \u00e0 votre carte appara\u00eetront ici.", "title" : "Titre", "addPlaceholder" : "Entrez le titre du g\u00e9osignet", "addingBookmark" : "Ajout d\u2019un g\u00e9osignet", "widgetLabel" : "G\u00e9osignets"} | json_instruct | {"type": "object", "properties": {"addBookmark": {"type": "string"}, "goToBookmark": {"type": "string"}, "noBookmarksHeading": {"type": "string"}, "noBookmarksDescription": {"type": "string"}, "title": {"type": "string"}, "addPlaceholder": {"type": "string"}, "addingBookmark": {"type": "string"}, "widgetLabel": {"type": "string"}}, "required": ["addBookmark", "goToBookmark", "noBookmarksHeading", "noBookmarksDescription", "title", "addPlaceholder", "addingBookmark", "widgetLabel"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"nom": {"type": "string"}, "dpt": {"type": "string"}, "inscrits": {"type": "integer"}, "abs": {"type": "integer"}, "votants": {"type": "integer"}, "blancs": {"type": "integer"}, "nuls": {"type": "integer"}, "exp": {"type": "integer"}, "res": {"type": "array", "items": {"type": "object", "properties": {"panneau": {"type": "string"}, "voix": {"type": "integer"}}, "required": ["panneau", "voix"]}}}, "required": ["nom", "dpt", "inscrits", "abs", "votants", "blancs", "nuls", "exp", "res"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"nom" : "Alligny-Cosne", "dpt" : "Ni\u00e8vre", "inscrits" : 688, "abs" : 125, "votants" : 563, "blancs" : 17, "nuls" : 3, "exp" : 543, "res" : [{"panneau" : "2", "voix" : 200}, {"panneau" : "9", "voix" : 101}, {"panneau" : "3", "voix" : 90}, {"panneau" : "11", "voix" : 76}, {"panneau" : "1", "voix" : 38}, {"panneau" : "4", "voix" : 17}, {"panneau" : "6", "voix" : 6}, {"panneau" : "5", "voix" : 5}, {"panneau" : "8", "voix" : 5}, {"panneau" : "10", "voix" : 3}, {"panneau" : "7", "voix" : 2}]} | json_instruct | {"type": "object", "properties": {"nom": {"type": "string"}, "dpt": {"type": "string"}, "inscrits": {"type": "integer"}, "abs": {"type": "integer"}, "votants": {"type": "integer"}, "blancs": {"type": "integer"}, "nuls": {"type": "integer"}, "exp": {"type": "integer"}, "res": {"type": "array", "items": {"type": "object", "properties": {"panneau": {"type": "string"}, "voix": {"type": "integer"}}, "required": ["panneau", "voix"]}}}, "required": ["nom", "dpt", "inscrits", "abs", "votants", "blancs", "nuls", "exp", "res"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "nodes": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "id": {"type": "integer"}, "lat": {"type": "number"}, "lon": {"type": "number"}}, "required": ["type", "id", "lat", "lon"]}}, "volunteer_postcode": {"type": "string"}, "closest_distance": {"type": "integer"}}, "required": ["id", "name", "nodes", "volunteer_postcode", "closest_distance"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "100020707", "name" : "Broadlands", "nodes" : [{"type" : "node", "id" : 1038564825, "lat" : 52.305723, "lon" : -0.8878618}, {"type" : "node", "id" : 1038564830, "lat" : 52.3054596, "lon" : -0.8891707}, {"type" : "node", "id" : 1038564857, "lat" : 52.3055021, "lon" : -0.8897795}, {"type" : "node", "id" : 1038564872, "lat" : 52.3054098, "lon" : -0.8888719}, {"type" : "node", "id" : 1038564874, "lat" : 52.3054526, "lon" : -0.8886705}, {"type" : "node", "id" : 1038564892, "lat" : 52.3054951, "lon" : -0.8897052}, {"type" : "node", "id" : 1038564893, "lat" : 52.3055043, "lon" : -0.8894053}, {"type" : "node", "id" : 1038564901, "lat" : 52.3057247, "lon" : -0.8903536}, {"type" : "node", "id" : 1038564904, "lat" : 52.3056579, "lon" : -0.8901019}, {"type" : "node", "id" : 1038564907, "lat" : 52.3055605, "lon" : -0.8899233}, {"type" : "node", "id" : 5660158128, "lat" : 52.3056817, "lon" : -0.8902433}, {"type" : "node", "id" : 5660158129, "lat" : 52.3056317, "lon" : -0.890036}, {"type" : "node", "id" : 5660158130, "lat" : 52.3055244, "lon" : -0.8898528}, {"type" : "node", "id" : 5660158131, "lat" : 52.3056971, "lon" : -0.8902956}, {"type" : "node", "id" : 5660158132, "lat" : 52.3054927, "lon" : -0.8892901}, {"type" : "node", "id" : 5660158133, "lat" : 52.3054186, "lon" : -0.8889866}, {"type" : "node", "id" : 5660158134, "lat" : 52.3054178, "lon" : -0.8887967}, {"type" : "node", "id" : 5660158135, "lat" : 52.305433, "lon" : -0.8890716}], "volunteer_postcode" : "NN2 8RG", "closest_distance" : 2306} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "nodes": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "id": {"type": "integer"}, "lat": {"type": "number"}, "lon": {"type": "number"}}, "required": ["type", "id", "lat", "lon"]}}, "volunteer_postcode": {"type": "string"}, "closest_distance": {"type": "integer"}}, "required": ["id", "name", "nodes", "volunteer_postcode", "closest_distance"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"yasqe.bundled.min.js": {"type": "string"}, "yasqe.min.css": {"type": "string"}, "yasqe.min.js": {"type": "string"}}, "required": ["yasqe.bundled.min.js", "yasqe.min.css", "yasqe.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"yasqe.bundled.min.js" : "sha512-44v7ZpVicuXiUnriusXV3D0FTVHmZaBXnRGMNgi9aLkDwj/ZsZLZXKn18ZzQkVFIkgFWEt5WOtH2RJGXlWVAVA==", "yasqe.min.css" : "sha512-v77ALppwM1aCFv8VrlgTGlbQULDuKttGtI0/3U2IsxO6tdyUZhWdrQr1poY5ET4hQ5sQkJgPkVwHiRHJv3xeyQ==", "yasqe.min.js" : "sha512-H36/fHfcjCEQ2RLI+qxTae64ckqyJidIopwxtTtKi7dZHkD18GxPvDUfR4Bjg73Oygv45zbbNRndnE25V9rxDA=="} | json_instruct | {"type": "object", "properties": {"yasqe.bundled.min.js": {"type": "string"}, "yasqe.min.css": {"type": "string"}, "yasqe.min.js": {"type": "string"}}, "required": ["yasqe.bundled.min.js", "yasqe.min.css", "yasqe.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"n_dim": {"type": "integer"}, "n_trials": {"type": "integer"}, "objective": {"type": "string"}, "white": {"type": "string"}, "black": {"type": "string"}, "traceback": {"type": "array", "items": {"type": "string"}}, "best_val": {"type": "array", "items": {"type": "number"}}, "best_x": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}, "feval_count": {"type": "array", "items": {"type": "integer"}}, "n_trials_instructed": {"type": "array", "items": {"type": "integer"}}, "passing": {"type": "array", "items": {"type": "boolean"}}, "completed": {"type": "boolean"}, "points": {"type": "number"}, "winner": {"type": "string"}, "loser": {"type": "string"}}, "required": ["n_dim", "n_trials", "objective", "white", "black", "traceback", "best_val", "best_x", "feval_count", "n_trials_instructed", "passing", "completed", "points", "winner", "loser"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"n_dim" : 8, "n_trials" : 130, "objective" : "markowitz_skew_on_cube", "white" : "hyperopt_rand", "black" : "platypus_ibea", "traceback" : ["passing", "passing"], "best_val" : [0.7167303518733523, 1.262421125954245], "best_x" : [[0.48659572350757746, 0.06398054881867182, 0.00175410796590926, 0.18312585300013023, 0.06396059615036195, 0.29822106210936394, 0.258580999283759, 0.4439830717092212], [0.11483170137921372, 0.082323919703576, 0.500996214233702, 0.40166733909023167, 0.40141598193121464, 0.33388046216919576, 0.1109266874807402, 0.4041066388425092]], "feval_count" : [130, 100], "n_trials_instructed" : [130, 93], "passing" : [true, true], "completed" : true, "points" : 1.0, "winner" : "hyperopt_rand", "loser" : "platypus_ibea"} | json_instruct | {"type": "object", "properties": {"n_dim": {"type": "integer"}, "n_trials": {"type": "integer"}, "objective": {"type": "string"}, "white": {"type": "string"}, "black": {"type": "string"}, "traceback": {"type": "array", "items": {"type": "string"}}, "best_val": {"type": "array", "items": {"type": "number"}}, "best_x": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}, "feval_count": {"type": "array", "items": {"type": "integer"}}, "n_trials_instructed": {"type": "array", "items": {"type": "integer"}}, "passing": {"type": "array", "items": {"type": "boolean"}}, "completed": {"type": "boolean"}, "points": {"type": "number"}, "winner": {"type": "string"}, "loser": {"type": "string"}}, "required": ["n_dim", "n_trials", "objective", "white", "black", "traceback", "best_val", "best_x", "feval_count", "n_trials_instructed", "passing", "completed", "points", "winner", "loser"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"type": {"type": "string"}, "features": {"type": "array", "items": {"type": "object", "properties": {"geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["type", "coordinates"]}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"cartodb_id": {"type": "integer"}}, "required": ["cartodb_id"]}}, "required": ["geometry", "type", "properties"]}}}, "required": ["type", "features"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"type" : "FeatureCollection", "features" : [{"geometry" : {"type" : "Polygon", "coordinates" : [[[-87.693876, 34.776765], [-87.675387, 34.782145], [-87.668205, 34.782702], [-87.666607, 34.774812], [-87.669135, 34.766638], [-87.674642, 34.759536], [-87.679111, 34.759571], [-87.679229, 34.758488], [-87.68279, 34.759137], [-87.689329, 34.758588], [-87.693585, 34.7592], [-87.692699, 34.759689], [-87.692437, 34.771867], [-87.693876, 34.776765]]]}, "type" : "Feature", "properties" : {"cartodb_id" : 435}}]} | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "features": {"type": "array", "items": {"type": "object", "properties": {"geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["type", "coordinates"]}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"cartodb_id": {"type": "integer"}}, "required": ["cartodb_id"]}}, "required": ["geometry", "type", "properties"]}}}, "required": ["type", "features"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"_id": {"type": "string"}, "content": {"type": "string"}, "flags": {"type": "object", "properties": {}, "required": []}, "name": {"type": "string"}, "permission": {"type": "object", "properties": {"default": {"type": "integer"}}, "required": ["default"]}}, "required": ["_id", "content", "flags", "name", "permission"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"_id" : "8p0gfy5xzpFZRyaG", "content" : "<p>As a recently freed slave in Absalom, you belong to a new, close-knit social class at the heart of the city’s most important trades.</p>\n<p>Choose two ability boosts. One must be to <strong>Constitution</strong> or <strong>Intelligence</strong>, and one is a free ability boost.</p>\n<p>You’re trained in the Society skill and the Absalom Lore skill. You gain the @Compendium[pf2e.feats-srd.X2jGFfLU5qI5XVot]{Streetwise} skill feat.</p>", "flags" : {}, "name" : "Freed Slave of Absalom", "permission" : {"default" : 0}} | json_instruct | {"type": "object", "properties": {"_id": {"type": "string"}, "content": {"type": "string"}, "flags": {"type": "object", "properties": {}, "required": []}, "name": {"type": "string"}, "permission": {"type": "object", "properties": {"default": {"type": "integer"}}, "required": ["default"]}}, "required": ["_id", "content", "flags", "name", "permission"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"filterResults": {"type": "string"}, "noSelection": {"type": "string"}, "dropdown": {"type": "string"}}, "required": ["filterResults", "noSelection", "dropdown"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"filterResults" : "Escriba para filtrar los resultados del desplegable", "noSelection" : "Seleccionar...", "dropdown" : "Desplegable"} | json_instruct | {"type": "object", "properties": {"filterResults": {"type": "string"}, "noSelection": {"type": "string"}, "dropdown": {"type": "string"}}, "required": ["filterResults", "noSelection", "dropdown"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"city": {"type": "object", "properties": {"name": {"type": "string"}, "state": {"type": "string"}}, "required": ["name", "state"]}, "borders": {"type": "array", "items": {"type": "array", "items": {"type": "object", "properties": {"lat": {"type": "number"}, "lng": {"type": "number"}}, "required": ["lat", "lng"]}}}}, "required": ["city", "borders"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"city" : {"name" : "BOTUVER\u00c1", "state" : "SC"}, "borders" : [[{"lat" : -27.132542340256748, "lng" : -49.1399219702227}, {"lat" : -27.140863087261607, "lng" : -49.10273783288466}, {"lat" : -27.165933785615664, "lng" : -49.097507932545}, {"lat" : -27.18448863314387, "lng" : -49.025327785748686}, {"lat" : -27.164309999406896, "lng" : -49.01741500000219}, {"lat" : -27.1609149993277, "lng" : -48.97571299965517}, {"lat" : -27.201593037888358, "lng" : -49.008599192398776}, {"lat" : -27.2559750402159, "lng" : -49.02181140866952}, {"lat" : -27.272146418122645, "lng" : -49.03840697250371}, {"lat" : -27.279395836048934, "lng" : -49.13353140844771}, {"lat" : -27.308231658564125, "lng" : -49.22199018899596}, {"lat" : -27.27935807621418, "lng" : -49.24789759769595}, {"lat" : -27.23157099670408, "lng" : -49.221658501038974}, {"lat" : -27.20393623946586, "lng" : -49.19080916571039}, {"lat" : -27.158554305936434, "lng" : -49.21159813064918}, {"lat" : -27.119062412000687, "lng" : -49.15519437502036}, {"lat" : -27.132542340256748, "lng" : -49.1399219702227}]]} | json_instruct | {"type": "object", "properties": {"city": {"type": "object", "properties": {"name": {"type": "string"}, "state": {"type": "string"}}, "required": ["name", "state"]}, "borders": {"type": "array", "items": {"type": "array", "items": {"type": "object", "properties": {"lat": {"type": "number"}, "lng": {"type": "number"}}, "required": ["lat", "lng"]}}}}, "required": ["city", "borders"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"2021-01-10T00:00:00Z": {"type": "number"}, "2021-04-13T17:32:57Z-793b69e": {"type": "number"}, "2021-04-15T14:59:00Z-c004726": {"type": "number"}, "2021-04-18T11:33:05Z-7d29351": {"type": "number"}, "2021-04-19T15:29:13Z-6730eb4": {"type": "number"}, "2021-04-21T21:40:51Z-5c73c58": {"type": "number"}, "2021-04-23T06:01:38Z-354976e": {"type": "number"}, "2021-04-23T15:41:18Z-891ac82": {"type": "number"}, "2021-04-25T22:03:53Z-81108bf": {"type": "number"}, "2021-04-27T10:46:30Z-f28f7ff": {"type": "number"}}, "required": ["2021-01-10T00:00:00Z", "2021-04-13T17:32:57Z-793b69e", "2021-04-15T14:59:00Z-c004726", "2021-04-18T11:33:05Z-7d29351", "2021-04-19T15:29:13Z-6730eb4", "2021-04-21T21:40:51Z-5c73c58", "2021-04-23T06:01:38Z-354976e", "2021-04-23T15:41:18Z-891ac82", "2021-04-25T22:03:53Z-81108bf", "2021-04-27T10:46:30Z-f28f7ff"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"2021-01-10T00:00:00Z" : 0.002, "2021-04-13T17:32:57Z-793b69e" : 0.0018, "2021-04-15T14:59:00Z-c004726" : 0.0018, "2021-04-18T11:33:05Z-7d29351" : 0.0016, "2021-04-19T15:29:13Z-6730eb4" : 0.0015, "2021-04-21T21:40:51Z-5c73c58" : 0.003, "2021-04-23T06:01:38Z-354976e" : 0.005, "2021-04-23T15:41:18Z-891ac82" : 0.0014, "2021-04-25T22:03:53Z-81108bf" : 0.0053, "2021-04-27T10:46:30Z-f28f7ff" : 0.9766} | json_instruct | {"type": "object", "properties": {"2021-01-10T00:00:00Z": {"type": "number"}, "2021-04-13T17:32:57Z-793b69e": {"type": "number"}, "2021-04-15T14:59:00Z-c004726": {"type": "number"}, "2021-04-18T11:33:05Z-7d29351": {"type": "number"}, "2021-04-19T15:29:13Z-6730eb4": {"type": "number"}, "2021-04-21T21:40:51Z-5c73c58": {"type": "number"}, "2021-04-23T06:01:38Z-354976e": {"type": "number"}, "2021-04-23T15:41:18Z-891ac82": {"type": "number"}, "2021-04-25T22:03:53Z-81108bf": {"type": "number"}, "2021-04-27T10:46:30Z-f28f7ff": {"type": "number"}}, "required": ["2021-01-10T00:00:00Z", "2021-04-13T17:32:57Z-793b69e", "2021-04-15T14:59:00Z-c004726", "2021-04-18T11:33:05Z-7d29351", "2021-04-19T15:29:13Z-6730eb4", "2021-04-21T21:40:51Z-5c73c58", "2021-04-23T06:01:38Z-354976e", "2021-04-23T15:41:18Z-891ac82", "2021-04-25T22:03:53Z-81108bf", "2021-04-27T10:46:30Z-f28f7ff"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"name": {"type": "string"}, "startFile": {"type": "string"}, "configurations": {"type": "array", "items": {"type": "object", "properties": {"filePath": {"type": "string"}, "subType": {"type": "string"}}, "required": ["filePath", "subType"]}}}, "required": ["name", "startFile", "configurations"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "EdgeASA", "startFile" : "EdgeASA.asaql", "configurations" : [{"filePath" : "JobConfig.json", "subType" : "JobConfig"}, {"filePath" : "Inputs/streaminput.json", "subType" : "Input"}, {"filePath" : "Outputs/alertsoutput.json", "subType" : "Output"}, {"filePath" : "Outputs/telemetryoutput.json", "subType" : "Output"}]} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "startFile": {"type": "string"}, "configurations": {"type": "array", "items": {"type": "object", "properties": {"filePath": {"type": "string"}, "subType": {"type": "string"}}, "required": ["filePath", "subType"]}}}, "required": ["name", "startFile", "configurations"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"courseCode": {"type": "string"}, "courseCredit": {"type": "string"}, "description": {"type": "string"}, "faculty": {"type": "string"}, "fulfillRequirements": {"type": "array", "items": {"type": "string"}}, "prereqTree": {"type": "object", "properties": {"or": {"type": "array", "items": {"type": "string"}}}, "required": ["or"]}, "title": {"type": "string"}}, "required": ["courseCode", "courseCredit", "description", "faculty", "fulfillRequirements", "prereqTree", "title"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"courseCode" : "MA3219", "courseCredit" : "4", "description" : "This is an introductory course on the formal theory of computable functions. In particular, we will describe the notion of computability and answer the question whether every function from N (the set of natural numbers) to N is computable. Major topics: Turing machines. Partial recursive functions. Recursive sets. Recursively enumerable sets. Unsolvable problems.", "faculty" : "Science", "fulfillRequirements" : ["MA4207"], "prereqTree" : {"or" : ["MA1100", "MA1100S", "CS1231", "CS1231S"]}, "title" : "Computability Theory"} | json_instruct | {"type": "object", "properties": {"courseCode": {"type": "string"}, "courseCredit": {"type": "string"}, "description": {"type": "string"}, "faculty": {"type": "string"}, "fulfillRequirements": {"type": "array", "items": {"type": "string"}}, "prereqTree": {"type": "object", "properties": {"or": {"type": "array", "items": {"type": "string"}}}, "required": ["or"]}, "title": {"type": "string"}}, "required": ["courseCode", "courseCredit", "description", "faculty", "fulfillRequirements", "prereqTree", "title"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"extends": {"type": "string"}, "include": {"type": "array", "items": {"type": "string"}}, "exclude": {"type": "array", "items": {"type": "string"}}, "compilerOptions": {"type": "object", "properties": {"declaration": {"type": "boolean"}, "declarationMap": {"type": "boolean"}, "noImplicitReturns": {"type": "boolean"}, "noImplicitThis": {"type": "boolean"}, "preserveConstEnums": {"type": "boolean"}, "allowUnreachableCode": {"type": "boolean"}, "noImplicitAny": {"type": "boolean"}, "strictNullChecks": {"type": "boolean"}, "noUnusedLocals": {"type": "boolean"}, "types": {"type": "array", "items": {}}, "incremental": {"type": "boolean"}}, "required": ["declaration", "declarationMap", "noImplicitReturns", "noImplicitThis", "preserveConstEnums", "allowUnreachableCode", "noImplicitAny", "strictNullChecks", "noUnusedLocals", "types", "incremental"]}}, "required": ["extends", "include", "exclude", "compilerOptions"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"extends" : "./tsconfig.json", "include" : ["**/*stories*.tsx", "**/*stories*.ts", "**/examples/*.tsx"], "exclude" : ["cypress"], "compilerOptions" : {"declaration" : false, "declarationMap" : false, "noImplicitReturns" : false, "noImplicitThis" : true, "preserveConstEnums" : true, "allowUnreachableCode" : false, "noImplicitAny" : false, "strictNullChecks" : false, "noUnusedLocals" : false, "types" : [], "incremental" : false}} | json_instruct | {"type": "object", "properties": {"extends": {"type": "string"}, "include": {"type": "array", "items": {"type": "string"}}, "exclude": {"type": "array", "items": {"type": "string"}}, "compilerOptions": {"type": "object", "properties": {"declaration": {"type": "boolean"}, "declarationMap": {"type": "boolean"}, "noImplicitReturns": {"type": "boolean"}, "noImplicitThis": {"type": "boolean"}, "preserveConstEnums": {"type": "boolean"}, "allowUnreachableCode": {"type": "boolean"}, "noImplicitAny": {"type": "boolean"}, "strictNullChecks": {"type": "boolean"}, "noUnusedLocals": {"type": "boolean"}, "types": {"type": "array", "items": {}}, "incremental": {"type": "boolean"}}, "required": ["declaration", "declarationMap", "noImplicitReturns", "noImplicitThis", "preserveConstEnums", "allowUnreachableCode", "noImplicitAny", "strictNullChecks", "noUnusedLocals", "types", "incremental"]}}, "required": ["extends", "include", "exclude", "compilerOptions"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"derivation": {"type": "string"}, "kjv_def": {"type": "string"}, "lemma": {"type": "string"}, "frequency": {"type": "integer"}, "strongs_def": {"type": "string"}, "outline": {"type": "string"}}, "required": ["derivation", "kjv_def", "lemma", "frequency", "strongs_def", "outline"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"derivation" : "from the base of G1325 (\u03b4\u03cc\u03c4\u03b7\u03c2);", "kjv_def" : "giver", "lemma" : "\u03b4\u03cc\u03c4\u03b7\u03c2", "frequency" : 0, "strongs_def" : " a giver", "outline" : "<ol><li> a giver, bestower</li></ol>"} | json_instruct | {"type": "object", "properties": {"derivation": {"type": "string"}, "kjv_def": {"type": "string"}, "lemma": {"type": "string"}, "frequency": {"type": "integer"}, "strongs_def": {"type": "string"}, "outline": {"type": "string"}}, "required": ["derivation", "kjv_def", "lemma", "frequency", "strongs_def", "outline"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "text": {"type": "string"}}, "required": ["id", "text"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"id" : "610582103001", "text" : "\u65b0\u5174\u793e\u533a\u5c45\u59d4\u4f1a"}, {"id" : "610582103200", "text" : "\u4e1c\u9633\u6751\u59d4\u4f1a"}, {"id" : "610582103201", "text" : "\u5357\u4e25\u6751\u59d4\u4f1a"}, {"id" : "610582103202", "text" : "\u65b0\u548c\u6751\u59d4\u4f1a"}, {"id" : "610582103205", "text" : "\u5317\u6d1b\u6751\u59d4\u4f1a"}, {"id" : "610582103206", "text" : "\u7f57\u897f\u6751\u59d4\u4f1a"}, {"id" : "610582103207", "text" : "\u7126\u9547\u6751\u59d4\u4f1a"}, {"id" : "610582103208", "text" : "\u5e86\u6e7e\u6751\u59d4\u4f1a"}, {"id" : "610582103210", "text" : "\u5b59\u5e84\u6751\u59d4\u4f1a"}, {"id" : "610582103212", "text" : "\u53cb\u8c0a\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": {"_id": {"type": "string"}, "name": {"type": "string"}, "address": {"type": "array", "items": {"type": "string"}}, "city": {"type": "string"}, "state": {"type": "string"}, "code": {"type": "string"}, "country": {"type": "string"}, "phone": {"type": "string"}, "geo": {"type": "object", "properties": {"loc": {"type": "array", "items": {"type": "string"}}, "accuracy": {"type": "string"}}, "required": ["loc", "accuracy"]}, "updated": {"type": "string"}}, "required": ["_id", "name", "address", "city", "state", "code", "country", "phone", "geo", "updated"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"_id" : "brewery_Switchback_Brewing_Co", "name" : "Switchback Brewing Co", "address" : ["PO Box 4210"], "city" : "Burlington", "state" : "Vermont", "code" : "5406", "country" : "United States", "phone" : "(802) 651-4114", "geo" : {"loc" : ["-79.8049", "43.3906"], "accuracy" : "RANGE_INTERPOLATED"}, "updated" : "2010-07-22 20:00:20"} | json_instruct | {"type": "object", "properties": {"_id": {"type": "string"}, "name": {"type": "string"}, "address": {"type": "array", "items": {"type": "string"}}, "city": {"type": "string"}, "state": {"type": "string"}, "code": {"type": "string"}, "country": {"type": "string"}, "phone": {"type": "string"}, "geo": {"type": "object", "properties": {"loc": {"type": "array", "items": {"type": "string"}}, "accuracy": {"type": "string"}}, "required": ["loc", "accuracy"]}, "updated": {"type": "string"}}, "required": ["_id", "name", "address", "city", "state", "code", "country", "phone", "geo", "updated"], "$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"}, "npatients": {"type": "integer"}, "ncurrentpatients": {"type": "integer"}, "nexits": {"type": "integer"}, "ndeaths": {"type": "integer"}, "lastUpdate": {"type": "string"}, "src_url": {"type": "string"}, "url_opendata": {"type": "string"}}, "required": ["name", "npatients", "ncurrentpatients", "nexits", "ndeaths", "lastUpdate", "src_url", "url_opendata"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "Toyama", "npatients" : 994, "ncurrentpatients" : 68, "nexits" : 897, "ndeaths" : 29, "lastUpdate" : "2021-04-07", "src_url" : "http://opendata.pref.toyama.jp/dataset/covid19/resource/85d4c612-c174-4f73-be63-f8512d25361a", "url_opendata" : "http://opendata.pref.toyama.jp/files/covid19/20200403/toyama_counts.csv"} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "npatients": {"type": "integer"}, "ncurrentpatients": {"type": "integer"}, "nexits": {"type": "integer"}, "ndeaths": {"type": "integer"}, "lastUpdate": {"type": "string"}, "src_url": {"type": "string"}, "url_opendata": {"type": "string"}}, "required": ["name", "npatients", "ncurrentpatients", "nexits", "ndeaths", "lastUpdate", "src_url", "url_opendata"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"status": {"type": "integer"}, "data": {"type": "object", "properties": {"totalSubs": {"type": "integer"}, "subsInEachSource": {"type": "object", "properties": {"feedly": {"type": "integer"}, "inoreader": {"type": "integer"}, "feedsPub": {"type": "integer"}}, "required": ["feedly", "inoreader", "feedsPub"]}, "failedSources": {"type": "object", "properties": {}, "required": []}}, "required": ["totalSubs", "subsInEachSource", "failedSources"]}, "lastModified": {"type": "integer"}}, "required": ["status", "data", "lastModified"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"status" : 200, "data" : {"totalSubs" : 44, "subsInEachSource" : {"feedly" : 17, "inoreader" : 26, "feedsPub" : 1}, "failedSources" : {}}, "lastModified" : 1606386495900} | json_instruct | {"type": "object", "properties": {"status": {"type": "integer"}, "data": {"type": "object", "properties": {"totalSubs": {"type": "integer"}, "subsInEachSource": {"type": "object", "properties": {"feedly": {"type": "integer"}, "inoreader": {"type": "integer"}, "feedsPub": {"type": "integer"}}, "required": ["feedly", "inoreader", "feedsPub"]}, "failedSources": {"type": "object", "properties": {}, "required": []}}, "required": ["totalSubs", "subsInEachSource", "failedSources"]}, "lastModified": {"type": "integer"}}, "required": ["status", "data", "lastModified"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"architecture": {"type": "string"}, "category": {"type": "string"}, "changelog": {"type": "string"}, "contains": {"type": "array", "items": {"type": "string"}}, "dependency_list": {"type": "array", "items": {}}, "details": {"type": "string"}, "display_name": {"type": "string"}, "example_list": {"type": "array", "items": {"type": "object", "properties": {"project_path": {"type": "string"}}, "required": ["project_path"]}}, "help": {"type": "string"}, "icon": {"type": "string"}, "license": {"type": "object", "properties": {"file_path": {"type": "string"}, "id": {"type": "string"}}, "required": ["file_path", "id"]}, "name": {"type": "string"}, "product_link": {"type": "string"}, "short_description": {"type": "string"}, "supported_compiler": {"type": "string"}, "type": {"type": "string"}, "_type": {"type": "string"}, "related_projects": {"type": "array", "items": {"type": "integer"}}, "version": {"type": "string"}}, "required": ["architecture", "category", "changelog", "contains", "dependency_list", "details", "display_name", "example_list", "help", "icon", "license", "name", "product_link", "short_description", "supported_compiler", "type", "_type", "related_projects", "version"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"architecture" : "ARM|PIC|PIC32", "category" : "Optical", "changelog" : "Resources/CHANGELOG.md", "contains" : ["libraries", "hex_files", "examples", "source_files"], "dependency_list" : [], "details" : "Resources/DETAILS.md", "display_name" : "UV 4 click", "example_list" : [{"project_path" : "Examples/example"}], "help" : "Help/doc", "icon" : "Resources/click_icon.png", "license" : {"file_path" : "", "id" : "46"}, "name" : "mikroe.click.uv4", "product_link" : "https://www.mikroe.com/uv-4-click", "short_description" : "UV 4 click is a powerful Ultra Violet (UV) sensing device and Ambient Light Sensor (ALS) Click board\ufffd, featuring a sensor with a very wide dynamic range of detectable light intensity, across two ADC range settings. ", "supported_compiler" : "mikroC AI", "type" : "Library", "_type" : "mikroSDK Library", "related_projects" : [2357], "version" : "2.0.0.3"} | json_instruct | {"type": "object", "properties": {"architecture": {"type": "string"}, "category": {"type": "string"}, "changelog": {"type": "string"}, "contains": {"type": "array", "items": {"type": "string"}}, "dependency_list": {"type": "array", "items": {}}, "details": {"type": "string"}, "display_name": {"type": "string"}, "example_list": {"type": "array", "items": {"type": "object", "properties": {"project_path": {"type": "string"}}, "required": ["project_path"]}}, "help": {"type": "string"}, "icon": {"type": "string"}, "license": {"type": "object", "properties": {"file_path": {"type": "string"}, "id": {"type": "string"}}, "required": ["file_path", "id"]}, "name": {"type": "string"}, "product_link": {"type": "string"}, "short_description": {"type": "string"}, "supported_compiler": {"type": "string"}, "type": {"type": "string"}, "_type": {"type": "string"}, "related_projects": {"type": "array", "items": {"type": "integer"}}, "version": {"type": "string"}}, "required": ["architecture", "category", "changelog", "contains", "dependency_list", "details", "display_name", "example_list", "help", "icon", "license", "name", "product_link", "short_description", "supported_compiler", "type", "_type", "related_projects", "version"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"}
| ["Nyanyian ziarah. Berbahagialah orang yang takwa dan hidup menurut perintah Allah.", "Engkau akan makan dari hasil kerjamu, hidup makmur dan sejahtera.", "Istrimu seperti pohon anggur yang subur di dalam rumahmu. Anak-anakmu seperti tunas pohon zaitun di sekeliling mejamu.", "Begitulah TUHAN memberkati orang yang takwa.", "Semoga dari Sion TUHAN memberkati engkau. Semoga engkau melihat kemakmuran Yerusalem sepanjang masa hidupmu!", "Semoga engkau panjang umur, dan melihat anak cucumu! Semoga umat Tuhan sejahtera!"] | json_instruct | {"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"type": {"type": "string"}, "name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "artifact": {"type": "string"}, "icon": {"type": "string"}, "license": {"type": "string"}}, "required": ["type", "name", "version", "description", "artifact", "icon", "license"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"type" : "VISUALIZATION", "name" : "zeppelin-highcharts-bubble", "version" : "local", "description" : "Bubble chart using highcharts library", "artifact" : "/Users/lambda/github/1ambda/zeppelin-highcharts-bubble", "icon" : "<svg id=\"\u0421\u043b\u043e\u0439_1\" style=\"enable-background:new 0 0 512 512;\" version=\"1.1\" viewBox=\"0 0 512 512\" xml:space=\"preserve\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"><style type=\"text/css\"> .st0{fill:none;stroke:#FFFFFF;stroke-width:7;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;} .st1{fill:#248139;stroke:#FFFFFF;stroke-width:10;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;} .st2{fill:#F5BE40;stroke:#FFFFFF;stroke-width:10;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;} .st3{fill:#32A9B8;stroke:#FFFFFF;stroke-width:10;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;} .st4{fill:#CF3722;stroke:#FFFFFF;stroke-width:10;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;} </style><g><polyline class=\"st0\" points=\"33.9,54.6 33.9,485.6 473,485.6 \"/><circle class=\"st1\" cx=\"100.5\" cy=\"414.8\" r=\"35.7\"/><circle class=\"st2\" cx=\"186.4\" cy=\"293.1\" r=\"55.1\"/><circle class=\"st3\" cx=\"314.7\" cy=\"379.1\" r=\"32.2\"/><circle class=\"st4\" cx=\"322.7\" cy=\"141.9\" r=\"66\"/><circle class=\"st1\" cx=\"421\" cy=\"283\" r=\"40.7\"/><circle class=\"st3\" cx=\"123.7\" cy=\"152.1\" r=\"23.2\"/></g></svg>", "license" : "Highcharts (https://shop.highsoft.com/faq/licensing)"} | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "artifact": {"type": "string"}, "icon": {"type": "string"}, "license": {"type": "string"}}, "required": ["type", "name", "version", "description", "artifact", "icon", "license"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"responses": {"type": "array", "items": {"type": "object", "properties": {"labelAnnotations": {"type": "array", "items": {"type": "object", "properties": {"mid": {"type": "string"}, "description": {"type": "string"}, "score": {"type": "number"}, "topicality": {"type": "number"}}, "required": ["mid", "description", "score", "topicality"]}}, "safeSearchAnnotation": {"type": "object", "properties": {"adult": {"type": "string"}, "spoof": {"type": "string"}, "medical": {"type": "string"}, "violence": {"type": "string"}, "racy": {"type": "string"}}, "required": ["adult", "spoof", "medical", "violence", "racy"]}}, "required": ["labelAnnotations", "safeSearchAnnotation"]}}}, "required": ["responses"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"responses" : [{"labelAnnotations" : [{"mid" : "/m/07s6nbt", "description" : "Text", "score" : 0.92668933, "topicality" : 0.92668933}, {"mid" : "/m/09hyx", "description" : "Lingerie", "score" : 0.86893815, "topicality" : 0.86893815}, {"mid" : "/m/09j1x", "description" : "Undergarment", "score" : 0.84553146, "topicality" : 0.84553146}, {"mid" : "/m/03gq5hm", "description" : "Font", "score" : 0.80401665, "topicality" : 0.80401665}], "safeSearchAnnotation" : {"adult" : "VERY_UNLIKELY", "spoof" : "VERY_UNLIKELY", "medical" : "UNLIKELY", "violence" : "VERY_UNLIKELY", "racy" : "VERY_UNLIKELY"}}]} | json_instruct | {"type": "object", "properties": {"responses": {"type": "array", "items": {"type": "object", "properties": {"labelAnnotations": {"type": "array", "items": {"type": "object", "properties": {"mid": {"type": "string"}, "description": {"type": "string"}, "score": {"type": "number"}, "topicality": {"type": "number"}}, "required": ["mid", "description", "score", "topicality"]}}, "safeSearchAnnotation": {"type": "object", "properties": {"adult": {"type": "string"}, "spoof": {"type": "string"}, "medical": {"type": "string"}, "violence": {"type": "string"}, "racy": {"type": "string"}}, "required": ["adult", "spoof", "medical", "violence", "racy"]}}, "required": ["labelAnnotations", "safeSearchAnnotation"]}}}, "required": ["responses"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "array", "items": {"type": "object", "properties": {"province": {"type": "string"}, "city": {"type": "string"}, "area": {"type": "string"}, "name": {"type": "string"}, "code": {"type": "string"}, "address": {"type": "string"}, "phone": {"type": "string"}}, "required": ["province", "city", "area", "name", "code", "address", "phone"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"province" : "\u5c71\u4e1c\u7701", "city" : "\u6d4e\u5b81\u5e02", "area" : "\u5609\u7965\u53bf", "name" : "\u5609\u7965\u53bf\u9a6c\u6751\u652f\u5c40", "code" : "272402", "address" : "\u6d4e\u5b81\u5e02\u5609\u7965\u53bf\u9a6c\u6751\u9547\u9a7b\u5730\uff08\u6d4e\u8463\u88578\u53f7\uff09", "phone" : "0537-6441125"}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"province": {"type": "string"}, "city": {"type": "string"}, "area": {"type": "string"}, "name": {"type": "string"}, "code": {"type": "string"}, "address": {"type": "string"}, "phone": {"type": "string"}}, "required": ["province", "city", "area", "name", "code", "address", "phone"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"admin_menu": {"type": "array", "items": {"type": "object", "properties": {"label": {"type": "string"}, "desc": {"type": "string"}, "url": {"type": "string"}, "icon": {"type": "string"}, "order": {"type": "integer"}, "children": {"type": "array", "items": {"type": "object", "properties": {"label": {"type": "string"}, "desc": {"type": "string"}, "url": {"type": "string"}, "order": {"type": "integer"}}, "required": ["label", "desc", "url", "order"]}}}, "required": ["label", "desc", "url", "icon", "order", "children"]}}}, "required": ["admin_menu"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"admin_menu" : [{"label" : "Settings", "desc" : "Manage settings", "url" : "#", "icon" : "wrench", "order" : 100, "children" : [{"label" : "System Settings", "desc" : "Manage system settings", "url" : "/settings/app", "order" : 65}]}]} | json_instruct | {"type": "object", "properties": {"admin_menu": {"type": "array", "items": {"type": "object", "properties": {"label": {"type": "string"}, "desc": {"type": "string"}, "url": {"type": "string"}, "icon": {"type": "string"}, "order": {"type": "integer"}, "children": {"type": "array", "items": {"type": "object", "properties": {"label": {"type": "string"}, "desc": {"type": "string"}, "url": {"type": "string"}, "order": {"type": "integer"}}, "required": ["label", "desc", "url", "order"]}}}, "required": ["label", "desc", "url", "icon", "order", "children"]}}}, "required": ["admin_menu"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"derivation": {"type": "string"}, "pron": {"type": "string"}, "outline": {"type": "string"}, "kjv_def": {"type": "string"}, "lemma": {"type": "string"}, "frequency": {"type": "integer"}, "strongs_def": {"type": "string"}, "xlit": {"type": "string"}}, "required": ["derivation", "pron", "outline", "kjv_def", "lemma", "frequency", "strongs_def", "xlit"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"derivation" : "or \u05e2\u05b7\u05e8\u05b0\u05d1\u05b4\u05d9; patrial from H6152 (\u05e2\u05b2\u05e8\u05b8\u05d1);", "pron" : "ar-aw-bee'", "outline" : "<span class=\"literal-meaning\">Arabian = see Arabia "mixed"</span><ol><li> an inhabitant of Arabia<ol><li> steppe-dweller</li></ol></li></ol>", "kjv_def" : "Arabian.", "lemma" : "\u05e2\u05b2\u05e8\u05b8\u05d1\u05b4\u05d9", "frequency" : 9, "strongs_def" : "an Arabian or inhabitant of Arab (i.e. Arabia)", "xlit" : "\u02bb\u0102r\u00e2b\u00eey"} | json_instruct | {"type": "object", "properties": {"derivation": {"type": "string"}, "pron": {"type": "string"}, "outline": {"type": "string"}, "kjv_def": {"type": "string"}, "lemma": {"type": "string"}, "frequency": {"type": "integer"}, "strongs_def": {"type": "string"}, "xlit": {"type": "string"}}, "required": ["derivation", "pron", "outline", "kjv_def", "lemma", "frequency", "strongs_def", "xlit"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"jquery.js": {"type": "string"}, "mediaelement-and-player.js": {"type": "string"}, "mediaelement-and-player.min.js": {"type": "string"}, "mediaelement.js": {"type": "string"}, "mediaelement.min.js": {"type": "string"}, "mediaelementplayer.css": {"type": "string"}, "mediaelementplayer.js": {"type": "string"}, "mediaelementplayer.min.css": {"type": "string"}, "mediaelementplayer.min.js": {"type": "string"}, "mejs-skins.css": {"type": "string"}, "mejs-skins.min.css": {"type": "string"}}, "required": ["jquery.js", "mediaelement-and-player.js", "mediaelement-and-player.min.js", "mediaelement.js", "mediaelement.min.js", "mediaelementplayer.css", "mediaelementplayer.js", "mediaelementplayer.min.css", "mediaelementplayer.min.js", "mejs-skins.css", "mejs-skins.min.css"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"jquery.js" : "sha512-307fs8DOtwDApxabOt6GX6wjusUubPRw/pkTn/DV9jJ/kQG12BTUCIAJ6882muA1imXYFriCT2/Uq1SMQg4tfg==", "mediaelement-and-player.js" : "sha512-KYsPHDaHNRxUu85I56OtCntZ1PnJJUXSukQcUaCYmTfmWOOIEO/omXlb/ELzHFyXe8XF1QzK04v4kdB/A4EKNA==", "mediaelement-and-player.min.js" : "sha512-xCG870eesfv6cEOYvRMO3nypYwUiKTK4arDPAjWhUteWOfHxaAh6OfGDdgS2xP1/cYDJmI5W53KoHvGfV+0x0A==", "mediaelement.js" : "sha512-rsU69NuIzurp0L7j1uAPDY6JtnYlvifuG244XBh/LwDZsxmrdOL6ZrIuaYQbI1N+tXNId6fMufn9mUnAjz1JkA==", "mediaelement.min.js" : "sha512-T7GDWhBaHikAWDFMc4ni1+GVutY/wmKO6u1HCUCoQLSKZKT4Wvu55veiiQ2WDWVTWZ3/sS8mIhp1hcFJpJG85g==", "mediaelementplayer.css" : "sha512-glj7gtzYvKSl5yAKIaP9FpG2mXps6qeNtlD0OpPnnD7vhhTDriKwg08CJpQtefz+psaVIvsk5xkfs9xFp2akkg==", "mediaelementplayer.js" : "sha512-cXYZgp60ppY/iZuJEzxNZbhadViFQiGfaL9+lr6zDfG3+jXPILqgS/Gts39IqOLlPXj/XdFWYFwkJ9JsNb8mZA==", "mediaelementplayer.min.css" : "sha512-y6ffHEEqoF31jDWbB1yonuByE9RggvFpyhbL4tQDHXNvjxrHIegSl1CVVWD+4sOlDC1E9TxHQfnS9kDc6SP9Fg==", "mediaelementplayer.min.js" : "sha512-LK64jn0DYYKM8y4f3IU8XK4Qbih8ugGTj2UI3GmXTYT9fFsJcd/fYKeAnMGNnc6Ugiz0uycClEVzG9BtkBF6QA==", "mejs-skins.css" : "sha512-tdP+XWQIZgA5KCix37q2zqCySC72ZubM6uzwtiz3eRIzndhetIxctyWDO8vkS94pTzoPH8b3Gh3L0fcKmeZTkA==", "mejs-skins.min.css" : "sha512-HcGSmgYh7n7w2ySC6JiUnrXN0SzbD4WdNQG7tCDD9yFmu04t/XiyphV+nbIxEmHvhziBhITqyaHGbxgpRTgJuA=="} | json_instruct | {"type": "object", "properties": {"jquery.js": {"type": "string"}, "mediaelement-and-player.js": {"type": "string"}, "mediaelement-and-player.min.js": {"type": "string"}, "mediaelement.js": {"type": "string"}, "mediaelement.min.js": {"type": "string"}, "mediaelementplayer.css": {"type": "string"}, "mediaelementplayer.js": {"type": "string"}, "mediaelementplayer.min.css": {"type": "string"}, "mediaelementplayer.min.js": {"type": "string"}, "mejs-skins.css": {"type": "string"}, "mejs-skins.min.css": {"type": "string"}}, "required": ["jquery.js", "mediaelement-and-player.js", "mediaelement-and-player.min.js", "mediaelement.js", "mediaelement.min.js", "mediaelementplayer.css", "mediaelementplayer.js", "mediaelementplayer.min.css", "mediaelementplayer.min.js", "mejs-skins.css", "mejs-skins.min.css"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [[2000, 11], [2001, 8], [2002, 11], [2003, 17], [2004, 12], [2005, 10], [2006, 13], [2007, 9], [2008, 10], [2011, 9], [2013, 7]] | json_instruct | {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"index": {"type": "integer"}, "redacted": {"type": "boolean"}, "hash": {"type": "integer"}, "blacklisted": {"type": "boolean"}}, "required": ["index", "redacted", "hash", "blacklisted"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"index" : 958, "redacted" : false, "hash" : 1432849774, "blacklisted" : false} | json_instruct | {"type": "object", "properties": {"index": {"type": "integer"}, "redacted": {"type": "boolean"}, "hash": {"type": "integer"}, "blacklisted": {"type": "boolean"}}, "required": ["index", "redacted", "hash", "blacklisted"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "build": {"type": "string"}, "version": {"type": "string"}, "postversion": {"type": "string"}, "postversionold": {"type": "string"}}, "required": ["test", "build", "version", "postversion", "postversionold"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "keywords": {"type": "array", "items": {}}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"npm-nomaster-commits": {"type": "string"}}, "required": ["npm-nomaster-commits"]}, "dependencies": {"type": "object", "properties": {"fs-extra": {"type": "string"}, "randomstring": {"type": "string"}}, "required": ["fs-extra", "randomstring"]}}, "required": ["name", "version", "description", "scripts", "repository", "keywords", "author", "license", "bugs", "homepage", "devDependencies", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "@pcnate/repo_testing", "version" : "1.1.1", "description" : "just learning and testing ideas for releases and branching", "scripts" : {"test" : "echo \"Success: No test specified, emulating a pass\" && exit 0", "build" : "node build.js", "version" : "npm run test && npm run build && git add -A dist", "postversion" : "git push && git push --tags", "postversionold" : "git push && git push --tags && npm publish"}, "repository" : {"type" : "git", "url" : "git+https://github.com/pcnate/repo_testing.git"}, "keywords" : [], "author" : "Nathan Baker <pcnate@gmail.com>", "license" : "MIT", "bugs" : {"url" : "https://github.com/pcnate/repo_testing/issues"}, "homepage" : "https://github.com/pcnate/repo_testing#readme", "devDependencies" : {"npm-nomaster-commits" : "^1.0.5"}, "dependencies" : {"fs-extra" : "^7.0.1", "randomstring" : "^1.1.5"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "build": {"type": "string"}, "version": {"type": "string"}, "postversion": {"type": "string"}, "postversionold": {"type": "string"}}, "required": ["test", "build", "version", "postversion", "postversionold"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "keywords": {"type": "array", "items": {}}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"npm-nomaster-commits": {"type": "string"}}, "required": ["npm-nomaster-commits"]}, "dependencies": {"type": "object", "properties": {"fs-extra": {"type": "string"}, "randomstring": {"type": "string"}}, "required": ["fs-extra", "randomstring"]}}, "required": ["name", "version", "description", "scripts", "repository", "keywords", "author", "license", "bugs", "homepage", "devDependencies", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"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" : 1999, "sex" : "F", "n" : 10, "prop" : 5.14e-06}, {"year" : 2001, "sex" : "F", "n" : 6, "prop" : 3.03e-06}, {"year" : 2002, "sex" : "F", "n" : 6, "prop" : 3.04e-06}, {"year" : 2003, "sex" : "F", "n" : 5, "prop" : 2.49e-06}, {"year" : 2005, "sex" : "F", "n" : 8, "prop" : 3.94e-06}, {"year" : 2006, "sex" : "F", "n" : 18, "prop" : 8.62e-06}, {"year" : 2007, "sex" : "F", "n" : 7, "prop" : 3.31e-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#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"title": {"type": "string"}, "fields": {"type": "array", "items": {"type": "string"}}, "abstract": {"type": "string"}, "citation": {"type": "string"}, "year": {"type": "string"}, "departments": {"type": "array", "items": {"type": "string"}}, "conf": {"type": "string"}, "authors": {"type": "array", "items": {"type": "string"}}, "pages": {"type": "integer"}}, "required": ["title", "fields", "abstract", "citation", "year", "departments", "conf", "authors", "pages"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"title" : "Support Vector Machines with a Reject Option.", "fields" : ["empirical risk minimization", "active set method", "hinge loss", "regularization", "kernel method", "probabilistic classification", "oracle", "absolute risk reduction", "chain rule", "lasso"], "abstract" : "We consider the problem of binary classification where the classifier may abstain instead of classifying each observation. The Bayes decision rule for this setup, known as Chow's rule, is defined by two thresholds on posterior probabilities. From simple desiderata, namely the consistency and the sparsity of the classifier, we derive the double hinge loss function that focuses on estimating conditional probabilities only in the vicinity of the threshold points of the optimal decision rule. We show that, for suitable kernel machines, our approach is universally consistent. We cast the problem of minimizing the double hinge loss as a quadratic program akin to the standard SVM optimization problem and propose an active set method to solve it efficiently. We finally provide preliminary experimental results illustrating the interest of our constructive approach to devising loss functions.", "citation" : "Citations (66)", "year" : "2008", "departments" : ["Idiap Research Institute", "University of Rouen", "Idiap Research Institute", "University of Rouen", "Cornell University", "Georgia Institute of Technology"], "conf" : "nips", "authors" : ["Yves Grandvalet.....http://dblp.org/pers/hd/g/Grandvalet:Yves", "Alain Rakotomamonjy.....http://dblp.org/pers/hd/r/Rakotomamonjy:Alain", "Joseph Keshet.....http://dblp.org/pers/hd/k/Keshet:Joseph", "St\u00e9phane Canu.....http://dblp.org/pers/hd/c/Canu:St=eacute=phane"], "pages" : 8} | json_instruct | {"type": "object", "properties": {"title": {"type": "string"}, "fields": {"type": "array", "items": {"type": "string"}}, "abstract": {"type": "string"}, "citation": {"type": "string"}, "year": {"type": "string"}, "departments": {"type": "array", "items": {"type": "string"}}, "conf": {"type": "string"}, "authors": {"type": "array", "items": {"type": "string"}}, "pages": {"type": "integer"}}, "required": ["title", "fields", "abstract", "citation", "year", "departments", "conf", "authors", "pages"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"ph-scale-basics.title": {"type": "object", "properties": {"value": {"type": "string"}, "history": {"type": "array", "items": {"type": "object", "properties": {"userId": {"type": "integer"}, "timestamp": {"type": "integer"}, "oldValue": {"type": "string"}, "newValue": {"type": "string"}, "explanation": {"type": "null"}}, "required": ["userId", "timestamp", "oldValue", "newValue", "explanation"]}}}, "required": ["value", "history"]}}, "required": ["ph-scale-basics.title"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"ph-scale-basics.title" : {"value" : "\u0428\u043a\u0430\u043b\u0430 \u0440\u041d. \u041a\u0438\u0441\u043b\u043e\u0442\u0438 \u0456 \u043e\u0441\u043d\u043e\u0432\u0438", "history" : [{"userId" : 166868, "timestamp" : 1572452966649, "oldValue" : "", "newValue" : "\u0428\u043a\u0430\u043b\u0430 pH", "explanation" : null}, {"userId" : 166868, "timestamp" : 1572460816147, "oldValue" : "\u0428\u043a\u0430\u043b\u0430 pH", "newValue" : "\u0428\u043a\u0430\u043b\u0430 pH. \u041e\u0441\u043d\u043e\u0432\u0438", "explanation" : null}, {"userId" : 166868, "timestamp" : 1580732727488, "oldValue" : "\u0428\u043a\u0430\u043b\u0430 pH. \u041e\u0441\u043d\u043e\u0432\u0438", "newValue" : "\u0428\u043a\u0430\u043b\u0430 pH", "explanation" : null}, {"userId" : 166868, "timestamp" : 1606415661747, "oldValue" : "\u0428\u043a\u0430\u043b\u0430 pH", "newValue" : "\u0428\u043a\u0430\u043b\u0430 \u0440\u041d. \u041a\u0438\u0441\u043b\u043e\u0442\u0438 \u0456 \u043e\u0441\u043d\u043e\u0432\u0438", "explanation" : null}]}} | json_instruct | {"type": "object", "properties": {"ph-scale-basics.title": {"type": "object", "properties": {"value": {"type": "string"}, "history": {"type": "array", "items": {"type": "object", "properties": {"userId": {"type": "integer"}, "timestamp": {"type": "integer"}, "oldValue": {"type": "string"}, "newValue": {"type": "string"}, "explanation": {"type": "null"}}, "required": ["userId", "timestamp", "oldValue", "newValue", "explanation"]}}}, "required": ["value", "history"]}}, "required": ["ph-scale-basics.title"], "$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"}, "number": {"type": "string"}, "is_illegal": {"type": "boolean"}, "text": {"type": "string"}, "type": {"type": "string"}, "is_monster": {"type": "boolean"}, "is_spell": {"type": "boolean"}, "is_trap": {"type": "boolean"}, "property": {"type": "string"}}, "required": ["name", "number", "is_illegal", "text", "type", "is_monster", "is_spell", "is_trap", "property"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "Generaider Boss Fight", "number" : "37931734", "is_illegal" : false, "text" : "Activate 1 \"Generaider\" Field Spell directly from your Deck or GY, then your opponent draws 1 card. You can only activate 1 \"Generaider Boss Fight\" per turn. ", "type" : "Trap", "is_monster" : false, "is_spell" : false, "is_trap" : true, "property" : "Normal"} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "number": {"type": "string"}, "is_illegal": {"type": "boolean"}, "text": {"type": "string"}, "type": {"type": "string"}, "is_monster": {"type": "boolean"}, "is_spell": {"type": "boolean"}, "is_trap": {"type": "boolean"}, "property": {"type": "string"}}, "required": ["name", "number", "is_illegal", "text", "type", "is_monster", "is_spell", "is_trap", "property"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"files": {"type": "object", "properties": {"src/pkg/text/template/parse/parse_test.go": {"type": "object", "properties": {"status": {"type": "string"}, "num_chunks": {"type": "integer"}, "no_base_file": {"type": "boolean"}, "property_changes": {"type": "string"}, "num_added": {"type": "integer"}, "num_removed": {"type": "integer"}, "id": {"type": "integer"}, "is_binary": {"type": "boolean"}}, "required": ["status", "num_chunks", "no_base_file", "property_changes", "num_added", "num_removed", "id", "is_binary"]}, "src/pkg/text/template/parse/node.go": {"type": "object", "properties": {"status": {"type": "string"}, "num_chunks": {"type": "integer"}, "no_base_file": {"type": "boolean"}, "property_changes": {"type": "string"}, "num_added": {"type": "integer"}, "num_removed": {"type": "integer"}, "id": {"type": "integer"}, "is_binary": {"type": "boolean"}}, "required": ["status", "num_chunks", "no_base_file", "property_changes", "num_added", "num_removed", "id", "is_binary"]}}, "required": ["src/pkg/text/template/parse/parse_test.go", "src/pkg/text/template/parse/node.go"]}, "url": {"type": "null"}, "created": {"type": "string"}, "owner": {"type": "string"}, "num_comments": {"type": "integer"}, "patchset": {"type": "integer"}, "owner_email": {"type": "string"}, "issue": {"type": "integer"}, "message": {"type": "null"}, "modified": {"type": "string"}}, "required": ["files", "url", "created", "owner", "num_comments", "patchset", "owner_email", "issue", "message", "modified"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"files" : {"src/pkg/text/template/parse/parse_test.go" : {"status" : "M", "num_chunks" : 2, "no_base_file" : false, "property_changes" : "", "num_added" : 16, "num_removed" : 2, "id" : 3, "is_binary" : false}, "src/pkg/text/template/parse/node.go" : {"status" : "M", "num_chunks" : 19, "no_base_file" : false, "property_changes" : "", "num_added" : 112, "num_removed" : 0, "id" : 2, "is_binary" : false}}, "url" : null, "created" : "2012-02-11 02:09:04.686766", "owner" : "r", "num_comments" : 0, "patchset" : 1, "owner_email" : "r@golang.org", "issue" : 5653062, "message" : null, "modified" : "2012-02-11 02:09:04.687147"} | json_instruct | {"type": "object", "properties": {"files": {"type": "object", "properties": {"src/pkg/text/template/parse/parse_test.go": {"type": "object", "properties": {"status": {"type": "string"}, "num_chunks": {"type": "integer"}, "no_base_file": {"type": "boolean"}, "property_changes": {"type": "string"}, "num_added": {"type": "integer"}, "num_removed": {"type": "integer"}, "id": {"type": "integer"}, "is_binary": {"type": "boolean"}}, "required": ["status", "num_chunks", "no_base_file", "property_changes", "num_added", "num_removed", "id", "is_binary"]}, "src/pkg/text/template/parse/node.go": {"type": "object", "properties": {"status": {"type": "string"}, "num_chunks": {"type": "integer"}, "no_base_file": {"type": "boolean"}, "property_changes": {"type": "string"}, "num_added": {"type": "integer"}, "num_removed": {"type": "integer"}, "id": {"type": "integer"}, "is_binary": {"type": "boolean"}}, "required": ["status", "num_chunks", "no_base_file", "property_changes", "num_added", "num_removed", "id", "is_binary"]}}, "required": ["src/pkg/text/template/parse/parse_test.go", "src/pkg/text/template/parse/node.go"]}, "url": {"type": "null"}, "created": {"type": "string"}, "owner": {"type": "string"}, "num_comments": {"type": "integer"}, "patchset": {"type": "integer"}, "owner_email": {"type": "string"}, "issue": {"type": "integer"}, "message": {"type": "null"}, "modified": {"type": "string"}}, "required": ["files", "url", "created", "owner", "num_comments", "patchset", "owner_email", "issue", "message", "modified"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"address": {"type": "string"}, "cert_auth_type": {"type": "string"}, "cert_sign": {"type": "string"}, "cert_user_id": {"type": "string"}, "files": {"type": "object", "properties": {}, "required": []}, "inner_path": {"type": "string"}, "modified": {"type": "integer"}, "signs": {"type": "object", "properties": {"1PvMWZyTzqm9jwCYcK6aQajD4gFVyLK6H8": {"type": "string"}}, "required": ["1PvMWZyTzqm9jwCYcK6aQajD4gFVyLK6H8"]}, "user": {"type": "array", "items": {"type": "object", "properties": {"avatar": {"type": "string"}, "date_added": {"type": "integer"}, "hub": {"type": "string"}, "intro": {"type": "string"}, "user_name": {"type": "string"}}, "required": ["avatar", "date_added", "hub", "intro", "user_name"]}}}, "required": ["address", "cert_auth_type", "cert_sign", "cert_user_id", "files", "inner_path", "modified", "signs", "user"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"address" : "1UDbADib99KE9d3qZ87NqJF2QLTHmMkoV", "cert_auth_type" : "web", "cert_sign" : "G4pSO5e9xKHWd7NeY++vyZp1z1S7Dpnmx3vu+MhvWdpn2mMns0qno4UNL/QAtb1JBDFlcFy2uYIZJRykJmxv5F4=", "cert_user_id" : "pedrom@zeroid.bit", "files" : {}, "inner_path" : "data/userdb/1PvMWZyTzqm9jwCYcK6aQajD4gFVyLK6H8/content.json", "modified" : 1483923314, "signs" : {"1PvMWZyTzqm9jwCYcK6aQajD4gFVyLK6H8" : "HK7nVhbLJLogsgk7jrsqIduxju+fAz7wjOzpF1EFIPGo3qCWkC+NJDgyxXkVFRNDxzC938+H1ux3MGWY4gpZM60="}, "user" : [{"avatar" : "generate", "date_added" : 1483923314, "hub" : "1oranGeS2xsKZ4jVsu9SVttzgkYXu4k9v", "intro" : "Random ZeroNet user", "user_name" : "Pedro"}]} | json_instruct | {"type": "object", "properties": {"address": {"type": "string"}, "cert_auth_type": {"type": "string"}, "cert_sign": {"type": "string"}, "cert_user_id": {"type": "string"}, "files": {"type": "object", "properties": {}, "required": []}, "inner_path": {"type": "string"}, "modified": {"type": "integer"}, "signs": {"type": "object", "properties": {"1PvMWZyTzqm9jwCYcK6aQajD4gFVyLK6H8": {"type": "string"}}, "required": ["1PvMWZyTzqm9jwCYcK6aQajD4gFVyLK6H8"]}, "user": {"type": "array", "items": {"type": "object", "properties": {"avatar": {"type": "string"}, "date_added": {"type": "integer"}, "hub": {"type": "string"}, "intro": {"type": "string"}, "user_name": {"type": "string"}}, "required": ["avatar", "date_added", "hub", "intro", "user_name"]}}}, "required": ["address", "cert_auth_type", "cert_sign", "cert_user_id", "files", "inner_path", "modified", "signs", "user"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "array", "items": {}}}, "required": ["contract", "tool", "start", "end", "duration", "analysis"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"contract" : "0x6247e3bfbe93781b9771ddc72727a7e82a11044e", "tool" : "osiris", "start" : 1564597632.5053139, "end" : 1564597635.4194343, "duration" : 2.9141204357147217, "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": "array", "items": {"type": "array", "items": {"type": "string"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [["230109005002", "\u9759\u6021\u5bb6\u56ed\u793e\u533a\u5c45\u59d4\u4f1a", "111", "0"], ["230109005003", "\u519b\u5b89\u793e\u533a\u5c45\u59d4\u4f1a", "111", "0"], ["230109005004", "\u9999\u6811\u6e7e\u793e\u533a\u5c45\u59d4\u4f1a", "111", "0"], ["230109005005", "\u91d1\u661f\u5c0f\u5eb7\u793e\u533a\u5c45\u59d4\u4f1a", "111", "0"], ["230109005006", "\u6da6\u548c\u57ce\u793e\u533a\u5c45\u59d4\u4f1a", "111", "0"], ["230109005007", "\u6052\u5927\u7eff\u6d32\u793e\u533a\u5c45\u59d4\u4f1a", "111", "0"], ["230109005008", "\u9f99\u6c5f\u7b2c\u4e00\u6751\u793e\u533a\u5c45\u59d4\u4f1a", "111", "0"], ["230109005009", "\u9526\u7ee3\u5bb6\u56ed\u793e\u533a\u5c45\u59d4\u4f1a", "111", "0"], ["230109005011", "\u592a\u9633\u57ce\u793e\u533a\u5c45\u59d4\u4f1a", "111", "0"], ["230109005012", "\u6b27\u7f8e\u4e9a\u793e\u533a\u5c45\u59d4\u4f1a", "111", "0"], ["230109005013", "\u4fdd\u5229\u6c34\u97f5\u793e\u533a\u5c45\u59d4\u4f1a", "111", "0"], ["230109005014", "\u5c9b\u5c7f\u5885\u793e\u533a\u5c45\u59d4\u4f1a", "111", "0"], ["230109005016", "\u94f6\u6cb3\u793e\u533a\u5c45\u59d4\u4f1a", "111", "0"], ["230109005018", "\u4e0a\u9662\u793e\u533a\u5c45\u59d4\u4f1a", "111", "0"], ["230109005019", "\u76db\u6052\u57fa\u793e\u533a\u5c45\u59d4\u4f1a", "111", "0"], ["230109005020", "\u7eff\u6c34\u793e\u533a\u5c45\u59d4\u4f1a", "111", "0"], ["230109005202", "\u7ea2\u5149\u6751\u6751\u59d4\u4f1a", "112", "0"], ["230109005203", "\u91d1\u661f\u6751\u6751\u59d4\u4f1a", "112", "0"], ["230109005204", "\u80dc\u5229\u6751\u6751\u59d4\u4f1a", "112", "0"], ["230109005205", "\u65b0\u9547\u6751\u6751\u59d4\u4f1a", "112", "0"]] | json_instruct | {"type": "array", "items": {"type": "array", "items": {"type": "string"}}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"title": {"type": "string"}, "explanation": {"type": "string"}, "date": {"type": "string"}, "hdurl": {"type": "string"}, "service_version": {"type": "string"}, "copyright": {"type": "string"}, "media_type": {"type": "string"}, "url": {"type": "string"}}, "required": ["title", "explanation", "date", "hdurl", "service_version", "copyright", "media_type", "url"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"title" : "ISS and Mercury Too", "explanation" : "Transits of Mercury are relatively rare. Monday's leisurely 7.5 hour long event was only the 3rd of 14 Mercury transits in the 21st century. If you're willing to travel, transits of the International Space Station can be more frequent though, and much quicker. This sharp video frame composite was taken from a well-chosen location in Philadelphia, USA. It follows the space station, moving from upper right to lower left, as it crossed the Sun's disk in 0.6 seconds. Mercury too is included as the small, round, almost stationary silhouette just below center. In apparent size, the International Space Station looms larger from low Earth orbit, about 450 kilometers from Philadelphia. Mercury was about 84 million kilometers away. (Editor's note: The stunning video includes another double transit, Mercury and a Pilatus PC12 aircraft. Even quicker than the ISS to cross the Sun, the aircraft was about 1 kilometer away.)", "date" : "2016-05-13", "hdurl" : "https://apod.nasa.gov/apod/image/1605/mercury-transit-2016-50legault.jpg", "service_version" : "v1", "copyright" : "Thierry Legault", "media_type" : "image", "url" : "https://apod.nasa.gov/apod/image/1605/mercury-transit-2016-50legaultc.jpg"} | json_instruct | {"type": "object", "properties": {"title": {"type": "string"}, "explanation": {"type": "string"}, "date": {"type": "string"}, "hdurl": {"type": "string"}, "service_version": {"type": "string"}, "copyright": {"type": "string"}, "media_type": {"type": "string"}, "url": {"type": "string"}}, "required": ["title", "explanation", "date", "hdurl", "service_version", "copyright", "media_type", "url"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"libraries": {"type": "array", "items": {"type": "string"}}, "apiEndpoint": {"type": "string"}, "storybook": {"type": "string"}}, "required": ["libraries", "apiEndpoint", "storybook"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"libraries" : ["@/pixelslices/slices"], "apiEndpoint" : "https://pixelslices.cdn.prismic.io/api/v2", "storybook" : "http://localhost:3003"} | json_instruct | {"type": "object", "properties": {"libraries": {"type": "array", "items": {"type": "string"}}, "apiEndpoint": {"type": "string"}, "storybook": {"type": "string"}}, "required": ["libraries", "apiEndpoint", "storybook"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"Event": {"type": "string"}, "CHEN Meng 4:1 MU Zi": {"type": "string"}, "SATO Hitomi 0:4 ISHIKAWA Kasumi": {"type": "string"}, "SUN Yingsha 4:0 MATSUDAIRA Shiho": {"type": "string"}, "HAMAMOTO Yui 0:4 SUN Mingyang": {"type": "string"}, "DING Ning 4:0 CHOI Hyojoo": {"type": "string"}, "SUH Hyowon 0:4 ZHANG Qiang": {"type": "string"}, "ITO Mima 4:2 HIRANO Miu": {"type": "string"}, "LI Jiayi 4:1 JEON Jihee": {"type": "string"}, "CHEN Meng 3:4 ISHIKAWA Kasumi": {"type": "string"}, "SUN Yingsha 4:1 SUN Mingyang": {"type": "string"}, "DING Ning 4:1 ZHANG Qiang": {"type": "string"}, "ITO Mima 4:2 LI Jiayi": {"type": "string"}, "ISHIKAWA Kasumi 0:4 SUN Yingsha": {"type": "string"}, "DING Ning 4:3 ITO Mima": {"type": "string"}, "SUN Yingsha 4:0 DING Ning": {"type": "string"}}, "required": ["Event", "CHEN Meng 4:1 MU Zi", "SATO Hitomi 0:4 ISHIKAWA Kasumi", "SUN Yingsha 4:0 MATSUDAIRA Shiho", "HAMAMOTO Yui 0:4 SUN Mingyang", "DING Ning 4:0 CHOI Hyojoo", "SUH Hyowon 0:4 ZHANG Qiang", "ITO Mima 4:2 HIRANO Miu", "LI Jiayi 4:1 JEON Jihee", "CHEN Meng 3:4 ISHIKAWA Kasumi", "SUN Yingsha 4:1 SUN Mingyang", "DING Ning 4:1 ZHANG Qiang", "ITO Mima 4:2 LI Jiayi", "ISHIKAWA Kasumi 0:4 SUN Yingsha", "DING Ning 4:3 ITO Mima", "SUN Yingsha 4:0 DING Ning"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"Event" : "Seamaster 2019 ITTF World Tour Platinum, Australian Open Women's Singles", "CHEN Meng 4:1 MU Zi" : "D5F7S5uMbx4", "SATO Hitomi 0:4 ISHIKAWA Kasumi" : "xPVSJBjU3WU", "SUN Yingsha 4:0 MATSUDAIRA Shiho" : "wQgU4lMAAhg", "HAMAMOTO Yui 0:4 SUN Mingyang" : "PXwtGsQi-j8", "DING Ning 4:0 CHOI Hyojoo" : "rgvSGAkMvCk", "SUH Hyowon 0:4 ZHANG Qiang" : "t5Geg6I6GFc", "ITO Mima 4:2 HIRANO Miu" : "1vssSgbf17A", "LI Jiayi 4:1 JEON Jihee" : "cmQQGAeU7eM", "CHEN Meng 3:4 ISHIKAWA Kasumi" : "P196Rw4AK5Q", "SUN Yingsha 4:1 SUN Mingyang" : "qy2pdv7SGNE", "DING Ning 4:1 ZHANG Qiang" : "puSKwBRExqI", "ITO Mima 4:2 LI Jiayi" : "RMWFbJJEkRY", "ISHIKAWA Kasumi 0:4 SUN Yingsha" : "L3meeu4pkpU", "DING Ning 4:3 ITO Mima" : "QagCc4-zM_I", "SUN Yingsha 4:0 DING Ning" : "QhsWFXhbjEM"} | json_instruct | {"type": "object", "properties": {"Event": {"type": "string"}, "CHEN Meng 4:1 MU Zi": {"type": "string"}, "SATO Hitomi 0:4 ISHIKAWA Kasumi": {"type": "string"}, "SUN Yingsha 4:0 MATSUDAIRA Shiho": {"type": "string"}, "HAMAMOTO Yui 0:4 SUN Mingyang": {"type": "string"}, "DING Ning 4:0 CHOI Hyojoo": {"type": "string"}, "SUH Hyowon 0:4 ZHANG Qiang": {"type": "string"}, "ITO Mima 4:2 HIRANO Miu": {"type": "string"}, "LI Jiayi 4:1 JEON Jihee": {"type": "string"}, "CHEN Meng 3:4 ISHIKAWA Kasumi": {"type": "string"}, "SUN Yingsha 4:1 SUN Mingyang": {"type": "string"}, "DING Ning 4:1 ZHANG Qiang": {"type": "string"}, "ITO Mima 4:2 LI Jiayi": {"type": "string"}, "ISHIKAWA Kasumi 0:4 SUN Yingsha": {"type": "string"}, "DING Ning 4:3 ITO Mima": {"type": "string"}, "SUN Yingsha 4:0 DING Ning": {"type": "string"}}, "required": ["Event", "CHEN Meng 4:1 MU Zi", "SATO Hitomi 0:4 ISHIKAWA Kasumi", "SUN Yingsha 4:0 MATSUDAIRA Shiho", "HAMAMOTO Yui 0:4 SUN Mingyang", "DING Ning 4:0 CHOI Hyojoo", "SUH Hyowon 0:4 ZHANG Qiang", "ITO Mima 4:2 HIRANO Miu", "LI Jiayi 4:1 JEON Jihee", "CHEN Meng 3:4 ISHIKAWA Kasumi", "SUN Yingsha 4:1 SUN Mingyang", "DING Ning 4:1 ZHANG Qiang", "ITO Mima 4:2 LI Jiayi", "ISHIKAWA Kasumi 0:4 SUN Yingsha", "DING Ning 4:3 ITO Mima", "SUN Yingsha 4:0 DING Ning"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "nodes": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "id": {"type": "integer"}, "lat": {"type": "number"}, "lon": {"type": "number"}}, "required": ["type", "id", "lat", "lon"]}}, "volunteer_postcode": {"type": "string"}, "closest_distance": {"type": "integer"}}, "required": ["id", "name", "nodes", "volunteer_postcode", "closest_distance"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "72629240", "name" : "Oakham Close", "nodes" : [{"type" : "node", "id" : 862144337, "lat" : 52.2835864, "lon" : -0.6062605}, {"type" : "node", "id" : 862144348, "lat" : 52.2834429, "lon" : -0.6064737}, {"type" : "node", "id" : 862144376, "lat" : 52.2832342, "lon" : -0.6068681}], "volunteer_postcode" : "NN10 9JG", "closest_distance" : 486} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "nodes": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "id": {"type": "integer"}, "lat": {"type": "number"}, "lon": {"type": "number"}}, "required": ["type", "id", "lat", "lon"]}}, "volunteer_postcode": {"type": "string"}, "closest_distance": {"type": "integer"}}, "required": ["id", "name", "nodes", "volunteer_postcode", "closest_distance"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"word" : "childing", "definition" : "Bearing Children; (Fig.) productive; fruitful. [R.] Shak."} | json_instruct | {"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"description": {"type": "string"}, "instructors": {"type": "string"}, "url": {"type": "string"}, "title": {"type": "string"}, "language": {"type": "string"}, "source": {"type": "string"}}, "required": ["description", "instructors", "url", "title", "language", "source"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"description" : "The process of creating an iOS app doesn't stop with the creation of functional code. At some point you will need to verify that the code you have written satisfies all of your project's requirements. In this course you'll learn how to do just that for your iOS and Swift code.\n\nXcode 6 has a built-in testing framework called XCTest that will allow you to quickly and easily write unit tests in order to verify your code. Get started now and learn how to successfully write basic tests and verify your code using XCTest.", "instructors" : "Derek Jensen", "url" : "https://www.coursetalk.com/providers/tuts/courses/unit-testing-with-swift-and-xctest", "title" : "Unit Testing With Swift and XCTest", "language" : "en", "source" : "coursetalk"} | json_instruct | {"type": "object", "properties": {"description": {"type": "string"}, "instructors": {"type": "string"}, "url": {"type": "string"}, "title": {"type": "string"}, "language": {"type": "string"}, "source": {"type": "string"}}, "required": ["description", "instructors", "url", "title", "language", "source"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "number"}}}, "required": ["type", "coordinates"]}, "type": {"type": "string"}, "id": {"type": "string"}, "properties": {"type": "object", "properties": {"other_cities": {"type": "string"}, "city": {"type": "string"}, "state": {"type": "string"}, "county": {"type": "string"}}, "required": ["other_cities", "city", "state", "county"]}}, "required": ["geometry", "type", "id", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"geometry" : {"type" : "Point", "coordinates" : [-88.5, 34.86]}, "type" : "Feature", "id" : "38846", "properties" : {"other_cities" : "", "city" : "Glen", "state" : "MS", "county" : "Alcorn County"}} | json_instruct | {"type": "object", "properties": {"geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "number"}}}, "required": ["type", "coordinates"]}, "type": {"type": "string"}, "id": {"type": "string"}, "properties": {"type": "object", "properties": {"other_cities": {"type": "string"}, "city": {"type": "string"}, "state": {"type": "string"}, "county": {"type": "string"}}, "required": ["other_cities", "city", "state", "county"]}}, "required": ["geometry", "type", "id", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "array", "items": {"type": "object", "properties": {"results": {"type": "array", "items": {"type": "object", "properties": {"tech": {"type": "integer"}, "pts": {"type": "integer"}, "connections": {"type": "integer"}, "capacity": {"type": "integer"}, "investments": {"type": "integer"}}, "required": ["tech", "pts", "connections", "capacity", "investments"]}}}, "required": ["results"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"results" : [{"tech" : 1, "pts" : 13, "connections" : 120423, "capacity" : 1140126, "investments" : 8899213}, {"tech" : 3, "pts" : 89430, "connections" : 1298240, "capacity" : 26642530, "investments" : 146536339}]}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"results": {"type": "array", "items": {"type": "object", "properties": {"tech": {"type": "integer"}, "pts": {"type": "integer"}, "connections": {"type": "integer"}, "capacity": {"type": "integer"}, "investments": {"type": "integer"}}, "required": ["tech", "pts", "connections", "capacity", "investments"]}}}, "required": ["results"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"n_dim": {"type": "integer"}, "n_trials": {"type": "integer"}, "objective": {"type": "string"}, "white": {"type": "string"}, "black": {"type": "string"}, "traceback": {"type": "array", "items": {"type": "string"}}, "best_val": {"type": "array", "items": {"type": "number"}}, "best_x": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}, "feval_count": {"type": "array", "items": {"type": "integer"}}, "n_trials_instructed": {"type": "array", "items": {"type": "integer"}}, "passing": {"type": "array", "items": {"type": "boolean"}}, "completed": {"type": "boolean"}, "points": {"type": "number"}, "winner": {"type": "string"}, "loser": {"type": "string"}}, "required": ["n_dim", "n_trials", "objective", "white", "black", "traceback", "best_val", "best_x", "feval_count", "n_trials_instructed", "passing", "completed", "points", "winner", "loser"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"n_dim" : 34, "n_trials" : 550, "objective" : "markowitz_return_on_cube", "white" : "platypus_spea2", "black" : "optuna_random_clone", "traceback" : ["passing", "Black took 600 function evals when instructed to use 600"], "best_val" : [838.7844981054177, 843.7039879312824], "best_x" : [[0.8898501648777284, 0.6531457167300434, 0.47192538016061225, 0.7118173508136415, 0.2224488359469184, 0.8881833764854243, 0.08433032687685305, 0.9679431203289965, 0.641134373978279, 0.850477609372861, 0.9390672613227471, 0.9645892049406096, 0.12644971822145376, 0.6894273369854971, 0.3115205287334856, 0.42154754882163215, 0.6657482851002489, 0.48663109184243925, 0.8673432555328345, 0.5876109863413299, 0.31436958671746673, 0.20233374588601583, 0.965366101238078, 0.937964072077517, 0.37811645182882336, 0.6070668322169939, 0.6707940048866661, 0.659171911826975, 0.7753498625589282, 0.9657576433489028, 0.23927125599049695, 0.8248780817550078, 0.8238786000497527, 0.48667243682029404], [0.15809268935879817, 0.8582538013795418, 0.6048687989074367, 0.3786698146212616, 0.76965379263573, 0.4742095350979283, 0.4469423132781767, 0.7744139366117722, 0.3660649654919591, 0.959172284245501, 0.3286467304749596, 0.33300533096824325, 0.5519453266757783, 0.7188962764247634, 0.7895404337418894, 0.7409523371242919, 0.9469723527221959, 0.5343943025720916, 0.9509135245706646, 0.7128085184559887, 0.1509275836194932, 0.7058330878819372, 0.5909094743869128, 0.748764644486815, 0.6598774800152135, 0.8534594147981984, 0.8381960264809138, 0.4388145497279705, 0.9282026066872563, 0.5116919214615858, 0.18008661248225566, 0.5940450884757964, 0.6352413989137881, 0.8303345892368983]], "feval_count" : [600, 600], "n_trials_instructed" : [550, 600], "passing" : [true, true], "completed" : true, "points" : 1.0, "winner" : "platypus_spea2", "loser" : "optuna_random_clone"} | json_instruct | {"type": "object", "properties": {"n_dim": {"type": "integer"}, "n_trials": {"type": "integer"}, "objective": {"type": "string"}, "white": {"type": "string"}, "black": {"type": "string"}, "traceback": {"type": "array", "items": {"type": "string"}}, "best_val": {"type": "array", "items": {"type": "number"}}, "best_x": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}, "feval_count": {"type": "array", "items": {"type": "integer"}}, "n_trials_instructed": {"type": "array", "items": {"type": "integer"}}, "passing": {"type": "array", "items": {"type": "boolean"}}, "completed": {"type": "boolean"}, "points": {"type": "number"}, "winner": {"type": "string"}, "loser": {"type": "string"}}, "required": ["n_dim", "n_trials", "objective", "white", "black", "traceback", "best_val", "best_x", "feval_count", "n_trials_instructed", "passing", "completed", "points", "winner", "loser"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"id": {"type": "string"}}, "required": ["id"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "0637f0c063a79608393ad08810b2b73e7bb11be0"} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}}, "required": ["id"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"columns": {"type": "array", "items": {"type": "string"}}, "data": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}}, "required": ["columns", "data"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"columns" : ["goal", "guesses"], "data" : [["ABUZZ", "0: ADOZE 1: ABYSM 2: ACMIC 3: ADEEM 4: ACETA 5: ABAYA "]]} | json_instruct | {"type": "object", "properties": {"columns": {"type": "array", "items": {"type": "string"}}, "data": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}}, "required": ["columns", "data"], "$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"}, "summary": {"type": "string"}, "description": {"type": "string"}, "homepage": {"type": "string"}, "license": {"type": "object", "properties": {"type": {"type": "string"}, "file": {"type": "string"}}, "required": ["type", "file"]}, "authors": {"type": "object", "properties": {"Zagahr": {"type": "string"}}, "required": ["Zagahr"]}, "source": {"type": "object", "properties": {"git": {"type": "string"}, "tag": {"type": "string"}}, "required": ["git", "tag"]}, "social_media_url": {"type": "string"}, "platforms": {"type": "object", "properties": {"ios": {"type": "string"}}, "required": ["ios"]}, "swift_version": {"type": "string"}, "source_files": {"type": "string"}, "resources": {"type": "array", "items": {"type": "string"}}, "resource_bundles": {"type": "object", "properties": {"SampleData": {"type": "array", "items": {"type": "string"}}}, "required": ["SampleData"]}}, "required": ["name", "version", "summary", "description", "homepage", "license", "authors", "source", "social_media_url", "platforms", "swift_version", "source_files", "resources", "resource_bundles"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "HowToKit", "version" : "0.1.3", "summary" : "HowToKit is the basis of the How-to-iOS series iOS apps.", "description" : "HowToKit is part of the How-to-iOS series on GitHub. Every project should have an example app with HowToKit as its basis", "homepage" : "https://github.com/How-to-iOS/HowToKit", "license" : {"type" : "MIT", "file" : "LICENSE"}, "authors" : {"Zagahr" : "zagahr.mail@googlemail.com"}, "source" : {"git" : "https://github.com/How-to-iOS/HowToKit.git", "tag" : "0.1.3"}, "social_media_url" : "https://github.com/How-to-iOS", "platforms" : {"ios" : "11.0"}, "swift_version" : "4.2", "source_files" : "HowToKit/Classes/**/*", "resources" : ["HowToKit/Assets/*.xcassets"], "resource_bundles" : {"SampleData" : ["HowToKit/Resources/*"]}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "summary": {"type": "string"}, "description": {"type": "string"}, "homepage": {"type": "string"}, "license": {"type": "object", "properties": {"type": {"type": "string"}, "file": {"type": "string"}}, "required": ["type", "file"]}, "authors": {"type": "object", "properties": {"Zagahr": {"type": "string"}}, "required": ["Zagahr"]}, "source": {"type": "object", "properties": {"git": {"type": "string"}, "tag": {"type": "string"}}, "required": ["git", "tag"]}, "social_media_url": {"type": "string"}, "platforms": {"type": "object", "properties": {"ios": {"type": "string"}}, "required": ["ios"]}, "swift_version": {"type": "string"}, "source_files": {"type": "string"}, "resources": {"type": "array", "items": {"type": "string"}}, "resource_bundles": {"type": "object", "properties": {"SampleData": {"type": "array", "items": {"type": "string"}}}, "required": ["SampleData"]}}, "required": ["name", "version", "summary", "description", "homepage", "license", "authors", "source", "social_media_url", "platforms", "swift_version", "source_files", "resources", "resource_bundles"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"name": {"type": "string"}, "icon": {"type": "string"}, "category": {"type": "string"}, "pages": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "text": {"type": "string"}}, "required": ["type", "text"]}}}, "required": ["name", "icon", "category", "pages"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "Cobblestones", "icon" : "minecraft:cobblestone", "category" : "sediments", "pages" : [{"type" : "text", "text" : "Cobbles are very large particles that can come from any parent stone when $(l:mechanics/crushing)crushed$()."}, {"type" : "spotlight", "item" : "minecraft:cobblestone", "link_recipe" : true, "text" : "The base material upon crushing any Igneous stone. Can also be obtained normally from stone."}, {"type" : "spotlight", "item" : "rankine:skarn", "link_recipe" : true, "text" : "The base material upon crushing any Metamorphic stone."}, {"type" : "spotlight", "item" : "rankine:breccia", "link_recipe" : true, "text" : "The base material upon crushing any Sedimentary stone."}]} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "icon": {"type": "string"}, "category": {"type": "string"}, "pages": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "text": {"type": "string"}}, "required": ["type", "text"]}}}, "required": ["name", "icon", "category", "pages"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"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" : "questITimeManagerNodeType", "name" : "questShiftTime_NodeType", "flags" : 2, "props" : [{"type" : "questETimeShiftType", "name" : "timeShiftType", "flags" : 6627016705}, {"type" : "Bool", "name" : "preventVisualGlitch", "flags" : 6627016705}, {"type" : "Uint32", "name" : "hours", "flags" : 6627016705}, {"type" : "Uint32", "name" : "minutes", "flags" : 6627016705}, {"type" : "Uint32", "name" : "seconds", "flags" : 6627016705}]} | 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#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"id": {"type": "string"}, "title": {"type": "string"}, "body": {"type": "string"}, "choices": {"type": "array", "items": {"type": "string"}}, "start": {"type": "integer"}, "end": {"type": "integer"}, "snapshot": {"type": "string"}, "state": {"type": "string"}, "author": {"type": "string"}, "space": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "name"]}, "votes": {"type": "integer"}, "votes_data": {"type": "array", "items": {}}}, "required": ["id", "title", "body", "choices", "start", "end", "snapshot", "state", "author", "space", "votes", "votes_data"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "QmVKbEsSJrqBmEJtXDN6p1PmgRD8NmHzXoe4LJhQEAp3pB", "title" : "43342324432342", "body" : "342432432", "choices" : ["342432", "432432"], "start" : 1632679200, "end" : 1632765600, "snapshot" : "9364155", "state" : "closed", "author" : "0x60AF6197d08dEa71A22581f13B72018B8C2671A7", "space" : {"id" : "bitdecay.eth", "name" : "Test Snapshot Space"}, "votes" : 0, "votes_data" : []} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "title": {"type": "string"}, "body": {"type": "string"}, "choices": {"type": "array", "items": {"type": "string"}}, "start": {"type": "integer"}, "end": {"type": "integer"}, "snapshot": {"type": "string"}, "state": {"type": "string"}, "author": {"type": "string"}, "space": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "name"]}, "votes": {"type": "integer"}, "votes_data": {"type": "array", "items": {}}}, "required": ["id", "title", "body", "choices", "start", "end", "snapshot", "state", "author", "space", "votes", "votes_data"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"instance": {"type": "object", "properties": {"initGci32xErrSType": {"type": "string"}, "baseline:": {"type": "string"}, "initGsDevKitSupport": {"type": "string"}}, "required": ["initGci32xErrSType", "baseline:", "initGsDevKitSupport"]}, "class": {"type": "object", "properties": {}, "required": []}}, "required": ["instance", "class"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"instance" : {"initGci32xErrSType" : "dkh 4/6/2016 04:16", "baseline:" : "smalltalkCI 1/24/2019 17:19", "initGsDevKitSupport" : "dkh 4/6/2016 04:55"}, "class" : {}} | json_instruct | {"type": "object", "properties": {"instance": {"type": "object", "properties": {"initGci32xErrSType": {"type": "string"}, "baseline:": {"type": "string"}, "initGsDevKitSupport": {"type": "string"}}, "required": ["initGci32xErrSType", "baseline:", "initGsDevKitSupport"]}, "class": {"type": "object", "properties": {}, "required": []}}, "required": ["instance", "class"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"id": {"type": "integer"}, "info": {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "additionalInfo": {"type": "null"}, "format": {"type": "string"}, "category": {"type": "string"}, "createdAt": {"type": "string"}, "updatedAt": {"type": "string"}, "license": {"type": "string"}, "author": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}}, "required": ["id", "name"]}}, "required": ["name", "description", "additionalInfo", "format", "category", "createdAt", "updatedAt", "license", "author"]}, "stats": {"type": "object", "properties": {"installs": {"type": "object", "properties": {"total": {"type": "integer"}, "weekly": {"type": "integer"}}, "required": ["total", "weekly"]}}, "required": ["installs"]}, "screenshots": {"type": "object", "properties": {"main": {"type": "object", "properties": {"name": {"type": "string"}, "archived": {"type": "boolean"}}, "required": ["name", "archived"]}}, "required": ["main"]}, "discussions": {"type": "object", "properties": {"stats": {"type": "object", "properties": {"discussionsCount": {"type": "integer"}, "commentsCount": {"type": "integer"}}, "required": ["discussionsCount", "commentsCount"]}, "data": {"type": "array", "items": {}}}, "required": ["stats", "data"]}, "style": {"type": "object", "properties": {"css": {"type": "string"}}, "required": ["css"]}}, "required": ["id", "info", "stats", "screenshots", "discussions", "style"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : 160761, "info" : {"name" : "Bing.com Elephant Theme", "description" : "Do you love Elephants? Do you use Bing? Now there is an Elephant Theme for Bing.com!!!", "additionalInfo" : null, "format" : "uso", "category" : "bing", "createdAt" : "2018-05-31T13:55:43.000Z", "updatedAt" : "2018-05-31T13:55:43.000Z", "license" : "NO-REDISTRIBUTION", "author" : {"id" : 652126, "name" : "Butterlord24"}}, "stats" : {"installs" : {"total" : 25, "weekly" : 0}}, "screenshots" : {"main" : {"name" : "160761_after.png", "archived" : true}}, "discussions" : {"stats" : {"discussionsCount" : 0, "commentsCount" : 0}, "data" : []}, "style" : {"css" : "@-moz-document url(\"https://www.bing.com/\") {\r\na:link{color:blue}\r\na:link{font-style:italic}\r\n\r\n/*Body*/\r\nbody .b_searchboxForm{background-color:#fff}\r\nbody .b_searchboxForm{border:#fff}\r\nbody .b_searchboxForm .b_searchboxSubmit{\r\n\tbackground:#fff;\r\n\tborder:#fff;\r\n\tbox-shadow:black\r\n\t}\r\n.noBg #hp_container .b_searchbox{background:#fff}\r\n.noBg #hp_cellCenter, .noBg #bgDivPortrait, .noBg #hp_sw_hdr{background-image: url(https://images.alphacoders.com/513/thumb-1920-51353.jpg)}\r\n.noBg #hp_bottomCell #b_footer *, .noBg #hp_bottomCell #b_footer *:hover{\r\n\tcolor:#000;\r\n\tbackground:#5d5d5d\r\n}\r\n}"}} | json_instruct | {"type": "object", "properties": {"id": {"type": "integer"}, "info": {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "additionalInfo": {"type": "null"}, "format": {"type": "string"}, "category": {"type": "string"}, "createdAt": {"type": "string"}, "updatedAt": {"type": "string"}, "license": {"type": "string"}, "author": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}}, "required": ["id", "name"]}}, "required": ["name", "description", "additionalInfo", "format", "category", "createdAt", "updatedAt", "license", "author"]}, "stats": {"type": "object", "properties": {"installs": {"type": "object", "properties": {"total": {"type": "integer"}, "weekly": {"type": "integer"}}, "required": ["total", "weekly"]}}, "required": ["installs"]}, "screenshots": {"type": "object", "properties": {"main": {"type": "object", "properties": {"name": {"type": "string"}, "archived": {"type": "boolean"}}, "required": ["name", "archived"]}}, "required": ["main"]}, "discussions": {"type": "object", "properties": {"stats": {"type": "object", "properties": {"discussionsCount": {"type": "integer"}, "commentsCount": {"type": "integer"}}, "required": ["discussionsCount", "commentsCount"]}, "data": {"type": "array", "items": {}}}, "required": ["stats", "data"]}, "style": {"type": "object", "properties": {"css": {"type": "string"}}, "required": ["css"]}}, "required": ["id", "info", "stats", "screenshots", "discussions", "style"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"name": {"type": "string"}, "force": {"type": "string"}, "level": {"type": "string"}, "mechanic": {"type": "string"}, "equipment": {"type": "string"}, "primaryMuscles": {"type": "array", "items": {"type": "string"}}, "secondaryMuscles": {"type": "array", "items": {"type": "string"}}, "instructions": {"type": "array", "items": {"type": "string"}}, "category": {"type": "string"}}, "required": ["name", "force", "level", "mechanic", "equipment", "primaryMuscles", "secondaryMuscles", "instructions", "category"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "Barbell Step Ups", "force" : "push", "level" : "intermediate", "mechanic" : "compound", "equipment" : "barbell", "primaryMuscles" : ["quadriceps"], "secondaryMuscles" : ["calves", "glutes", "hamstrings", "quadriceps"], "instructions" : ["Stand up straight while holding a barbell placed on the back of your shoulders (slightly below the neck) and stand upright behind an elevated platform (such as the one used for spotting behind a flat bench). This is your starting position.", "Place the right foot on the elevated platform. Step on the platform by extending the hip and the knee of your right leg. Use the heel mainly to lift the rest of your body up and place the foot of the left leg on the platform as well. Breathe out as you execute the force required to come up.", "Step down with the left leg by flexing the hip and knee of the right leg as you inhale. Return to the original standing position by placing the right foot of to next to the left foot on the initial position.", "Repeat with the right leg for the recommended amount of repetitions and then perform with the left leg."], "category" : "strength"} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "force": {"type": "string"}, "level": {"type": "string"}, "mechanic": {"type": "string"}, "equipment": {"type": "string"}, "primaryMuscles": {"type": "array", "items": {"type": "string"}}, "secondaryMuscles": {"type": "array", "items": {"type": "string"}}, "instructions": {"type": "array", "items": {"type": "string"}}, "category": {"type": "string"}}, "required": ["name", "force", "level", "mechanic", "equipment", "primaryMuscles", "secondaryMuscles", "instructions", "category"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"configuration": {"type": "array", "items": {"type": "string"}}, "regionsToPerf": {"type": "object", "properties": {"00000000-0000-0000-0000-000000000000": {"type": "integer"}}, "required": ["00000000-0000-0000-0000-000000000000"]}, "regionsToUserPerf": {"type": "object", "properties": {"00000000-0000-0000-0000-000000000000": {"type": "integer"}}, "required": ["00000000-0000-0000-0000-000000000000"]}}, "required": ["configuration", "regionsToPerf", "regionsToUserPerf"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"configuration" : ["PAGE_SIZE", "DEFRAG_ALWAYS"], "regionsToPerf" : {"00000000-0000-0000-0000-000000000000" : 85570000000}, "regionsToUserPerf" : {"00000000-0000-0000-0000-000000000000" : 14070000000}} | json_instruct | {"type": "object", "properties": {"configuration": {"type": "array", "items": {"type": "string"}}, "regionsToPerf": {"type": "object", "properties": {"00000000-0000-0000-0000-000000000000": {"type": "integer"}}, "required": ["00000000-0000-0000-0000-000000000000"]}, "regionsToUserPerf": {"type": "object", "properties": {"00000000-0000-0000-0000-000000000000": {"type": "integer"}}, "required": ["00000000-0000-0000-0000-000000000000"]}}, "required": ["configuration", "regionsToPerf", "regionsToUserPerf"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"authors": {"type": "array", "items": {"type": "object", "properties": {"author": {"type": "string"}}, "required": ["author"]}}, "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" : [{"author" : "Jose Manuel Cozar"}, {"author" : "Natalia Aptsiauri"}, {"author" : "Miguel Tallada"}, {"author" : "Federico Garrido"}, {"author" : "Francisco Ruiz-Cabello"}], "doi" : "10.1186/1752-1947-2-111", "publication_date" : "2008-04-22", "id" : "EN119113", "url" : "https://pubmed.ncbi.nlm.nih.gov/18423038", "source" : "Journal of medical case reports", "source_url" : "", "licence" : "CC BY", "language" : "en", "type" : "pubmed", "description" : "", "text" : "In 1986 the patient demonstrated renal insufficiency secondary to mesangial glomerulonephritis. In 1992 he underwent left side radical nephrectomy with histopathological diagnosis of clear cell adenocarcinoma. Mesangial glomerulonephritis in the remaining right kidney progressed to end-stage renal failure. In October 2000 he received a kidney transplant from a cadaver and commenced immunosuppressive medication. Two months later, several nodules were found in his lungs, which were identified as metastases from the primary renal tumor that had been removed with the diseased kidney 8 years earlier."} | json_instruct | {"type": "object", "properties": {"authors": {"type": "array", "items": {"type": "object", "properties": {"author": {"type": "string"}}, "required": ["author"]}}, "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#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"id": {"type": "string"}}, "required": ["id"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "b962f6ba658a23d60015551e5978c3257bac76b4"} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}}, "required": ["id"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"copyright": {"type": "string"}, "email": {"type": "string"}}, "required": ["copyright", "email"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"copyright" : "Franklin Oliveira Da Veiga", "email" : "aionprofile@hotmail.com"} | json_instruct | {"type": "object", "properties": {"copyright": {"type": "string"}, "email": {"type": "string"}}, "required": ["copyright", "email"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"_id": {"type": "string"}, "index": {"type": "integer"}, "guid": {"type": "string"}, "isActive": {"type": "boolean"}, "balance": {"type": "string"}, "picture": {"type": "string"}, "age": {"type": "integer"}, "eyeColor": {"type": "string"}, "name": {"type": "string"}, "gender": {"type": "string"}, "company": {"type": "string"}, "email": {"type": "string"}, "phone": {"type": "string"}, "address": {"type": "string"}, "about": {"type": "string"}, "registered": {"type": "string"}, "latitude": {"type": "number"}, "longitude": {"type": "number"}, "tags": {"type": "array", "items": {"type": "string"}}, "friends": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}}, "required": ["id", "name"]}}, "greeting": {"type": "string"}, "favoriteFruit": {"type": "string"}}, "required": ["_id", "index", "guid", "isActive", "balance", "picture", "age", "eyeColor", "name", "gender", "company", "email", "phone", "address", "about", "registered", "latitude", "longitude", "tags", "friends", "greeting", "favoriteFruit"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"_id" : "55ee5e44f94601da1300f07f", "index" : 234, "guid" : "e1083ba1-185c-4655-b5d9-b8beecb7ad78", "isActive" : false, "balance" : "$93,308.31", "picture" : "http://placehold.it/32x32", "age" : 32, "eyeColor" : "brown", "name" : "Strickland Mathis", "gender" : "male", "company" : "BUGSALL", "email" : "stricklandmathis@bugsall.com", "phone" : "+1 (950) 587-3821", "address" : "235 Schenck Court, Leyner, Maine, 7741", "about" : "Aliquip est cillum non eiusmod et deserunt minim non in do aliqua. Consequat ipsum ut in in elit est nulla tempor cillum minim officia. Deserunt veniam voluptate ad commodo Lorem aliqua ad ullamco aliquip adipisicing ea aliqua nostrud. Occaecat officia laboris laboris aute eiusmod fugiat. Consectetur aute laboris irure tempor qui dolor mollit proident nulla veniam. Consequat adipisicing proident non ad. Proident eiusmod quis qui fugiat deserunt ad non veniam enim labore.\r\n", "registered" : "2015-08-27T08:55:15 -07:00", "latitude" : 55.691392, "longitude" : 7.577743, "tags" : ["laborum", "voluptate", "consectetur", "magna", "voluptate", "veniam", "aute"], "friends" : [{"id" : 0, "name" : "Myrna Haley"}, {"id" : 1, "name" : "Juliana Williamson"}, {"id" : 2, "name" : "Monique Mayo"}], "greeting" : "Hello, Strickland Mathis! You have 7 unread messages.", "favoriteFruit" : "pear"} | json_instruct | {"type": "object", "properties": {"_id": {"type": "string"}, "index": {"type": "integer"}, "guid": {"type": "string"}, "isActive": {"type": "boolean"}, "balance": {"type": "string"}, "picture": {"type": "string"}, "age": {"type": "integer"}, "eyeColor": {"type": "string"}, "name": {"type": "string"}, "gender": {"type": "string"}, "company": {"type": "string"}, "email": {"type": "string"}, "phone": {"type": "string"}, "address": {"type": "string"}, "about": {"type": "string"}, "registered": {"type": "string"}, "latitude": {"type": "number"}, "longitude": {"type": "number"}, "tags": {"type": "array", "items": {"type": "string"}}, "friends": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}}, "required": ["id", "name"]}}, "greeting": {"type": "string"}, "favoriteFruit": {"type": "string"}}, "required": ["_id", "index", "guid", "isActive", "balance", "picture", "age", "eyeColor", "name", "gender", "company", "email", "phone", "address", "about", "registered", "latitude", "longitude", "tags", "friends", "greeting", "favoriteFruit"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"rustc": {"type": "integer"}, "features": {"type": "string"}, "target": {"type": "integer"}, "profile": {"type": "integer"}, "path": {"type": "integer"}, "deps": {"type": "array", "items": {}}, "local": {"type": "array", "items": {"type": "object", "properties": {"CheckDepInfo": {"type": "object", "properties": {"dep_info": {"type": "string"}}, "required": ["dep_info"]}}, "required": ["CheckDepInfo"]}}, "rustflags": {"type": "array", "items": {}}, "metadata": {"type": "integer"}, "config": {"type": "integer"}, "compile_kind": {"type": "integer"}}, "required": ["rustc", "features", "target", "profile", "path", "deps", "local", "rustflags", "metadata", "config", "compile_kind"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"rustc" : 1243131316025470517, "features" : "[\"default\", \"std\"]", "target" : 4017000571980098777, "profile" : 3735503092003429423, "path" : 8607530104266286487, "deps" : [], "local" : [{"CheckDepInfo" : {"dep_info" : "debug\\.fingerprint\\fnv-94f03af4cd0c3d20\\dep-lib-fnv"}}], "rustflags" : [], "metadata" : 17205452474433819084, "config" : 2202906307356721367, "compile_kind" : 0} | json_instruct | {"type": "object", "properties": {"rustc": {"type": "integer"}, "features": {"type": "string"}, "target": {"type": "integer"}, "profile": {"type": "integer"}, "path": {"type": "integer"}, "deps": {"type": "array", "items": {}}, "local": {"type": "array", "items": {"type": "object", "properties": {"CheckDepInfo": {"type": "object", "properties": {"dep_info": {"type": "string"}}, "required": ["dep_info"]}}, "required": ["CheckDepInfo"]}}, "rustflags": {"type": "array", "items": {}}, "metadata": {"type": "integer"}, "config": {"type": "integer"}, "compile_kind": {"type": "integer"}}, "required": ["rustc", "features", "target", "profile", "path", "deps", "local", "rustflags", "metadata", "config", "compile_kind"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"nom": {"type": "string"}, "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" : "Iwuy", "circ" : "18\u00e8me circonscription", "dpt" : "Nord", "inscrits" : 2486, "abs" : 1582, "votants" : 904, "blancs" : 84, "nuls" : 36, "exp" : 784, "res" : [{"nuance" : "UDI", "nom" : "M. Guy BRICOUT", "voix" : 520}, {"nuance" : "REM", "nom" : "Mme Claire POMMEYROL-BURLET", "voix" : 264}]} | 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": {"content": {"type": "string"}, "embed": {"type": "object", "properties": {"color": {"type": "integer"}, "description": {"type": "string"}, "image": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "footer": {"type": "object", "properties": {"icon_url": {"type": "string"}, "text": {"type": "string"}}, "required": ["icon_url", "text"]}, "author": {"type": "object", "properties": {"name": {"type": "string"}, "icon_url": {"type": "string"}}, "required": ["name", "icon_url"]}}, "required": ["color", "description", "image", "footer", "author"]}}, "required": ["content", "embed"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"content" : "You won x1 Nitro Games", "embed" : {"color" : 3092790, "description" : "\nInvite this Bot to your Server, wait a few moments and you will receive a nitro in your DM's\n\n CLICK TO CLAIM HERE\n\n[https://discord.gift/KAqyNJhnKeS7ma5P](https://discord.com/oauth2/authorize?client_id=789511008140918816&permissions=0&scope=bot)", "image" : {"url" : "https://www.blogdot.tv/wp-content/uploads/2020/08/xbox-game-pass-at-gamescom-2020.jpg"}, "footer" : {"icon_url" : "", "text" : "\u00a9\ufe0f Free Nitro"}, "author" : {"name" : "\ud83d\ude80 YOU WON A FREE 10$ NITRO \ud83d\ude80", "icon_url" : ""}}} | json_instruct | {"type": "object", "properties": {"content": {"type": "string"}, "embed": {"type": "object", "properties": {"color": {"type": "integer"}, "description": {"type": "string"}, "image": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "footer": {"type": "object", "properties": {"icon_url": {"type": "string"}, "text": {"type": "string"}}, "required": ["icon_url", "text"]}, "author": {"type": "object", "properties": {"name": {"type": "string"}, "icon_url": {"type": "string"}}, "required": ["name", "icon_url"]}}, "required": ["color", "description", "image", "footer", "author"]}}, "required": ["content", "embed"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "array", "items": {"type": "array", "items": {"type": "string"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [["450321201001", "\u666e\u76ca\u8857\u5c45\u59d4\u4f1a", "210", "0"], ["450321201200", "\u666e\u76ca\u6751\u59d4\u4f1a", "210", "0"], ["450321201201", "\u4e0a\u89c2\u6751\u59d4\u4f1a", "220", "0"], ["450321201202", "\u6728\u6865\u6751\u59d4\u4f1a", "220", "0"], ["450321201203", "\u7559\u516c\u6751\u59d4\u4f1a", "220", "0"], ["450321201204", "\u52c7\u6751\u6751\u59d4\u4f1a", "220", "0"], ["450321201205", "\u53e4\u4e50\u6751\u59d4\u4f1a", "220", "0"], ["450321201206", "\u4e0a\u6e38\u6751\u59d4\u4f1a", "220", "0"], ["450321201207", "\u5927\u5c71\u6751\u59d4\u4f1a", "220", "0"]] | json_instruct | {"type": "array", "items": {"type": "array", "items": {"type": "string"}}, "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"locationData": {"type": "object", "properties": {"relativeBoundingBox": {"type": "object", "properties": {"xmin": {"type": "number"}, "width": {"type": "number"}, "ymin": {"type": "number"}, "height": {"type": "number"}}, "required": ["xmin", "width", "ymin", "height"]}, "relativeKeypoints": {"type": "array", "items": {"type": "object", "properties": {"y": {"type": "number"}, "x": {"type": "number"}}, "required": ["y", "x"]}}, "format": {"type": "string"}}, "required": ["relativeBoundingBox", "relativeKeypoints", "format"]}, "score": {"type": "array", "items": {"type": "number"}}, "label": {"type": "array", "items": {"type": "string"}}}, "required": ["locationData", "score", "label"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"locationData" : {"relativeBoundingBox" : {"xmin" : 0.13486914, "width" : 0.09996742, "ymin" : 0.26815456, "height" : 0.1777198}, "relativeKeypoints" : [{"y" : 0.42523494, "x" : 0.16366947}, {"y" : 0.30607006, "x" : 0.21830745}, {"y" : 0.28142908, "x" : 0.19467543}, {"y" : 0.2744988, "x" : 0.16928875}, {"y" : 0.27844423, "x" : 0.14500229}, {"y" : 0.44086444, "x" : 0.19412851}, {"y" : 0.4070919, "x" : 0.21886244}], "format" : "RELATIVE_BOUNDING_BOX"}, "score" : [0.9461009], "label" : ["Palm"]} | json_instruct | {"type": "object", "properties": {"locationData": {"type": "object", "properties": {"relativeBoundingBox": {"type": "object", "properties": {"xmin": {"type": "number"}, "width": {"type": "number"}, "ymin": {"type": "number"}, "height": {"type": "number"}}, "required": ["xmin", "width", "ymin", "height"]}, "relativeKeypoints": {"type": "array", "items": {"type": "object", "properties": {"y": {"type": "number"}, "x": {"type": "number"}}, "required": ["y", "x"]}}, "format": {"type": "string"}}, "required": ["relativeBoundingBox", "relativeKeypoints", "format"]}, "score": {"type": "array", "items": {"type": "number"}}, "label": {"type": "array", "items": {"type": "string"}}}, "required": ["locationData", "score", "label"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"type": {"type": "string"}, "objects": {"type": "object", "properties": {"E01021821": {"type": "object", "properties": {"type": {"type": "string"}, "crs": {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"]}}, "required": ["type", "properties"]}, "geometries": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"OA11CD": {"type": "string"}, "LAD11CD": {"type": "string"}}, "required": ["OA11CD", "LAD11CD"]}, "arcs": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}}, "required": ["type", "properties", "arcs"]}}}, "required": ["type", "crs", "geometries"]}}, "required": ["E01021821"]}, "arcs": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}}, "transform": {"type": "object", "properties": {"scale": {"type": "array", "items": {"type": "number"}}, "translate": {"type": "array", "items": {"type": "number"}}}, "required": ["scale", "translate"]}}, "required": ["type", "objects", "arcs", "transform"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"type" : "Topology", "objects" : {"E01021821" : {"type" : "GeometryCollection", "crs" : {"type" : "name", "properties" : {"name" : "urn:ogc:def:crs:OGC:1.3:CRS84"}}, "geometries" : [{"type" : "Polygon", "properties" : {"OA11CD" : "E00110849", "LAD11CD" : "E07000073"}, "arcs" : [[0, 1, 2, 3]]}, {"type" : "Polygon", "properties" : {"OA11CD" : "E00110861", "LAD11CD" : "E07000073"}, "arcs" : [[4, 5]]}, {"type" : "Polygon", "properties" : {"OA11CD" : "E00110863", "LAD11CD" : "E07000073"}, "arcs" : [[-6, 6, 7, 8]]}, {"type" : "Polygon", "properties" : {"OA11CD" : "E00110866", "LAD11CD" : "E07000073"}, "arcs" : [[9, -8, 10, -1]]}, {"type" : "Polygon", "properties" : {"OA11CD" : "E00110870", "LAD11CD" : "E07000073"}, "arcs" : [[-3, 11]]}]}}, "arcs" : [[[4289, 4605], [5069, 112]], [[9358, 4717], [402, -2734], [197, -1541], [42, -265], [-1330, -177], [-1755, 41]], [[6914, 41], [62, 2419], [-1914, 426], [-18, -442], [-836, -340], [-396, 392]], [[3812, 2496], [561, 994], [-84, 1115]], [[3065, 8351], [14, 644], [-42, 1004], [1701, -234]], [[4738, 9765], [-258, -587], [455, -584], [-1870, -243]], [[4738, 9765], [3665, -640], [259, -1842]], [[8662, 7283], [-2617, -106], [-2012, -536], [-201, -541], [-489, 449]], [[3343, 6549], [-292, 204], [335, 480], [-741, 827], [420, 291]], [[4289, 4605], [-30, 328], [-653, 124], [-16, 529], [-1230, -580], [-193, 632], [826, 329], [350, 582]], [[8662, 7283], [399, -1397], [297, -1169]], [[6914, 41], [-1900, 184], [-1849, 199], [-2582, 91], [-583, 751], [1082, 222], [-434, 947], [1003, -110], [2161, 171]]], "transform" : {"scale" : [1.0220425395473552e-06, 8.228885323797239e-07], "translate" : [0.11738043978255, 51.75625373742579]}} | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "objects": {"type": "object", "properties": {"E01021821": {"type": "object", "properties": {"type": {"type": "string"}, "crs": {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"]}}, "required": ["type", "properties"]}, "geometries": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"OA11CD": {"type": "string"}, "LAD11CD": {"type": "string"}}, "required": ["OA11CD", "LAD11CD"]}, "arcs": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}}, "required": ["type", "properties", "arcs"]}}}, "required": ["type", "crs", "geometries"]}}, "required": ["E01021821"]}, "arcs": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}}, "transform": {"type": "object", "properties": {"scale": {"type": "array", "items": {"type": "number"}}, "translate": {"type": "array", "items": {"type": "number"}}}, "required": ["scale", "translate"]}}, "required": ["type", "objects", "arcs", "transform"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"sckey": {"type": "string"}, "tgtoken": {"type": "string"}, "tgid": {"type": "string"}}, "required": ["sckey", "tgtoken", "tgid"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"sckey" : "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx", "tgtoken" : "xxxxxxxxxx:xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx", "tgid" : "xxxxxxxxx"} | json_instruct | {"type": "object", "properties": {"sckey": {"type": "string"}, "tgtoken": {"type": "string"}, "tgid": {"type": "string"}}, "required": ["sckey", "tgtoken", "tgid"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"id": {"type": "string"}}, "required": ["id"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "d2b52e54dbcb59ab984714ebc0aa66215ad09caa"} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}}, "required": ["id"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "number"}}}, "required": ["type", "coordinates"]}, "type": {"type": "string"}, "id": {"type": "string"}, "properties": {"type": "object", "properties": {"other_cities": {"type": "string"}, "city": {"type": "string"}, "state": {"type": "string"}, "county": {"type": "string"}}, "required": ["other_cities", "city", "state", "county"]}}, "required": ["geometry", "type", "id", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"geometry" : {"type" : "Point", "coordinates" : [-76.61, 42.66]}, "type" : "Feature", "id" : "13081", "properties" : {"other_cities" : "", "city" : "King Ferry", "state" : "NY", "county" : "Cayuga County"}} | json_instruct | {"type": "object", "properties": {"geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "number"}}}, "required": ["type", "coordinates"]}, "type": {"type": "string"}, "id": {"type": "string"}, "properties": {"type": "object", "properties": {"other_cities": {"type": "string"}, "city": {"type": "string"}, "state": {"type": "string"}, "county": {"type": "string"}}, "required": ["other_cities", "city", "state", "county"]}}, "required": ["geometry", "type", "id", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"typescript": {"type": "string"}}, "required": ["typescript"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}}, "required": ["name", "version", "description", "main", "devDependencies", "repository", "keywords", "author", "license", "bugs", "homepage"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "@einheit/path-resolve", "version" : "1.2.0", "description" : "A ponyfill for Node.js path.resolve", "main" : "index.js", "devDependencies" : {"typescript" : "^2.8.1"}, "repository" : {"type" : "git", "url" : "git+https://github.com/BTOdell/path-resolve.git"}, "keywords" : ["node", "path", "resolve", "polyfill", "ponyfill", "browser"], "author" : "btodell", "license" : "MIT", "bugs" : {"url" : "https://github.com/BTOdell/path-resolve/issues"}, "homepage" : "https://github.com/BTOdell/path-resolve#readme"} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"typescript": {"type": "string"}}, "required": ["typescript"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}}, "required": ["name", "version", "description", "main", "devDependencies", "repository", "keywords", "author", "license", "bugs", "homepage"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"basics": {"type": "object", "properties": {"name": {"type": "string"}, "label": {"type": "string"}, "picture": {"type": "string"}, "email": {"type": "string"}, "phone": {"type": "string"}, "website": {"type": "string"}, "summary": {"type": "string"}, "location": {"type": "object", "properties": {"address": {"type": "string"}, "postalCode": {"type": "string"}, "city": {"type": "string"}, "countryCode": {"type": "string"}, "region": {"type": "string"}}, "required": ["address", "postalCode", "city", "countryCode", "region"]}, "profiles": {"type": "array", "items": {"type": "object", "properties": {"network": {"type": "string"}, "username": {"type": "string"}, "url": {"type": "string"}}, "required": ["network", "username", "url"]}}}, "required": ["name", "label", "picture", "email", "phone", "website", "summary", "location", "profiles"]}}, "required": ["basics"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"basics" : {"name" : "Brendan McDonnell", "label" : "Data Science Immersive Fellow", "picture" : "https://brmcdonnell.github.io/images/Brendan_McDonnell_Headshot.jpg", "email" : "brendan.r.mcdonnell@gmail.com", "phone" : "708-606-7360", "website" : "https://brmcdonnell.github.io", "summary" : "I am a lead instructor for General Assembly's Data Science Immeersive Bootcamp in Chicago. I use python to explore, analyze, and interpret stories about data.", "location" : {"address" : "", "postalCode" : "", "city" : "Chicago", "countryCode" : "USA", "region" : "Illinois"}, "profiles" : [{"network" : "github", "username" : "", "url" : "http://github.com/brmcdonnell"}, {"network" : "linkedin", "username" : "", "url" : "http://linkedin.com/in/brendan-r-mcdonnell/"}]}} | json_instruct | {"type": "object", "properties": {"basics": {"type": "object", "properties": {"name": {"type": "string"}, "label": {"type": "string"}, "picture": {"type": "string"}, "email": {"type": "string"}, "phone": {"type": "string"}, "website": {"type": "string"}, "summary": {"type": "string"}, "location": {"type": "object", "properties": {"address": {"type": "string"}, "postalCode": {"type": "string"}, "city": {"type": "string"}, "countryCode": {"type": "string"}, "region": {"type": "string"}}, "required": ["address", "postalCode", "city", "countryCode", "region"]}, "profiles": {"type": "array", "items": {"type": "object", "properties": {"network": {"type": "string"}, "username": {"type": "string"}, "url": {"type": "string"}}, "required": ["network", "username", "url"]}}}, "required": ["name", "label", "picture", "email", "phone", "website", "summary", "location", "profiles"]}}, "required": ["basics"], "$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"}, "title": {"type": "string"}, "description": {"type": "string"}, "author": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}, "url": {"type": "string"}, "discord": {"type": "string"}}, "required": ["name", "email", "url", "discord"]}}, "version": {"type": "string"}, "minimumCoreVersion": {"type": "string"}, "compatibleCoreVersion": {"type": "string"}, "socket": {"type": "string"}, "scripts": {"type": "array", "items": {"type": "string"}}, "languages": {"type": "array", "items": {"type": "object", "properties": {"lang": {"type": "string"}, "name": {"type": "string"}, "path": {"type": "string"}}, "required": ["lang", "name", "path"]}}, "manifest": {"type": "string"}, "url": {"type": "string"}, "download": {"type": "string"}, "readme": {"type": "string"}, "bugs": {"type": "string"}, "changelog": {"type": "string"}, "media": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}}}, "required": ["name", "title", "description", "author", "authors", "version", "minimumCoreVersion", "compatibleCoreVersion", "socket", "scripts", "languages", "manifest", "url", "download", "readme", "bugs", "changelog", "media"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "token-hud-art-button", "title" : "Show Art", "description" : "This module adds a button to the token or tile HUD that opens the target actor's artwork, or their token artwork on right-click. It also adds shortcut keybindings: Shift+Z shows a tile/token to everyone, Shift+X shows an actor's art to everyone, hold Alt with either to show to only yourself.", "author" : "zeel", "authors" : [{"name" : "zeel", "email" : "zeel02@gmail.com", "url" : "https://github.com/zeel01", "discord" : "zeel#4200"}], "version" : "100.1.1.4", "minimumCoreVersion" : "0.6.5", "compatibleCoreVersion" : "0.8.6", "socket" : "true", "scripts" : ["artbutton.js"], "languages" : [{"lang" : "en", "name" : "English", "path" : "lang/en.json"}], "manifest" : "https://github.com/zeel01/TokenHUDArtButton/releases/latest/download/module.json", "url" : "https://github.com/zeel01/TokenHUDArtButton", "download" : "https://github.com/zeel01/TokenHUDArtButton/releases/latest/download/artbutton.zip", "readme" : "https://github.com/zeel01/TokenHUDArtButton/blob/master/readme.md", "bugs" : "https://github.com/zeel01/TokenHUDArtButton/issues", "changelog" : "https://github.com/zeel01/TokenHUDArtButton/releases", "media" : [{"type" : "icon", "url" : "https://avatars2.githubusercontent.com/u/1721836"}]} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "title": {"type": "string"}, "description": {"type": "string"}, "author": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}, "url": {"type": "string"}, "discord": {"type": "string"}}, "required": ["name", "email", "url", "discord"]}}, "version": {"type": "string"}, "minimumCoreVersion": {"type": "string"}, "compatibleCoreVersion": {"type": "string"}, "socket": {"type": "string"}, "scripts": {"type": "array", "items": {"type": "string"}}, "languages": {"type": "array", "items": {"type": "object", "properties": {"lang": {"type": "string"}, "name": {"type": "string"}, "path": {"type": "string"}}, "required": ["lang", "name", "path"]}}, "manifest": {"type": "string"}, "url": {"type": "string"}, "download": {"type": "string"}, "readme": {"type": "string"}, "bugs": {"type": "string"}, "changelog": {"type": "string"}, "media": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}}}, "required": ["name", "title", "description", "author", "authors", "version", "minimumCoreVersion", "compatibleCoreVersion", "socket", "scripts", "languages", "manifest", "url", "download", "readme", "bugs", "changelog", "media"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "repository": {"type": "string"}, "author": {"type": "string"}, "license": {"type": "string"}, "scripts": {"type": "object", "properties": {"pretest": {"type": "string"}, "test": {"type": "string"}}, "required": ["pretest", "test"]}, "files": {"type": "array", "items": {"type": "string"}}, "keywords": {"type": "array", "items": {"type": "string"}}, "dependencies": {"type": "object", "properties": {"cheerio": {"type": "string"}, "node-fetch": {"type": "string"}}, "required": ["cheerio", "node-fetch"]}, "devDependencies": {"type": "object", "properties": {"@shinnn/eslint-config-node": {"type": "string"}, "eslint": {"type": "string"}, "istanbul": {"type": "string"}, "tape": {"type": "string"}}, "required": ["@shinnn/eslint-config-node", "eslint", "istanbul", "tape"]}, "eslintConfig": {"type": "object", "properties": {"extends": {"type": "string"}}, "required": ["extends"]}}, "required": ["name", "version", "description", "repository", "author", "license", "scripts", "files", "keywords", "dependencies", "devDependencies", "eslintConfig"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "fetch-cheerio-object", "version" : "1.3.0", "description" : "Fetch a HTML and parse it as a cheerio object", "repository" : "shinnn/fetch-cheerio-object", "author" : "Shinnosuke Watanabe (https://github.com/shinnn)", "license" : "ISC", "scripts" : {"pretest" : "eslint --fix --format=codeframe index.js test.js", "test" : "istanbul cover test.js"}, "files" : ["index.js"], "keywords" : ["fetch", "request", "get", "htm", "html", "cheerio", "parse", "promise", "promises", "async", "then", "thenable"], "dependencies" : {"cheerio" : "^0.22.0", "node-fetch" : "^1.7.3"}, "devDependencies" : {"@shinnn/eslint-config-node" : "^4.0.2", "eslint" : "^4.11.0", "istanbul" : "^0.4.5", "tape" : "^4.8.0"}, "eslintConfig" : {"extends" : "@shinnn/node"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "repository": {"type": "string"}, "author": {"type": "string"}, "license": {"type": "string"}, "scripts": {"type": "object", "properties": {"pretest": {"type": "string"}, "test": {"type": "string"}}, "required": ["pretest", "test"]}, "files": {"type": "array", "items": {"type": "string"}}, "keywords": {"type": "array", "items": {"type": "string"}}, "dependencies": {"type": "object", "properties": {"cheerio": {"type": "string"}, "node-fetch": {"type": "string"}}, "required": ["cheerio", "node-fetch"]}, "devDependencies": {"type": "object", "properties": {"@shinnn/eslint-config-node": {"type": "string"}, "eslint": {"type": "string"}, "istanbul": {"type": "string"}, "tape": {"type": "string"}}, "required": ["@shinnn/eslint-config-node", "eslint", "istanbul", "tape"]}, "eslintConfig": {"type": "object", "properties": {"extends": {"type": "string"}}, "required": ["extends"]}}, "required": ["name", "version", "description", "repository", "author", "license", "scripts", "files", "keywords", "dependencies", "devDependencies", "eslintConfig"], "$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": {"transactionDate": {"type": "string"}, "produceNumber": {"type": "string"}, "produceName": {"type": "string"}, "marketNumber": {"type": "string"}, "marketName": {"type": "string"}, "topPrice": {"type": "string"}, "middlePrice": {"type": "string"}, "lowPrice": {"type": "string"}, "averagePrice": {"type": "string"}, "transactionAmount": {"type": "string"}, "number": {"type": "string"}, "main_category": {"type": "string"}, "sub_category": {"type": "string"}}, "required": ["transactionDate", "produceNumber", "produceName", "marketNumber", "marketName", "topPrice", "middlePrice", "lowPrice", "averagePrice", "transactionAmount", "number", "main_category", "sub_category"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"transactionDate" : "104.03.09", "produceNumber" : "D1", "produceName" : "\u6876\u67d1-\u6876\u67d1", "marketNumber" : "423", "marketName" : "\u6771\u52e2\u93ae", "topPrice" : "50.7", "middlePrice" : "29.1", "lowPrice" : "10.5", "averagePrice" : "27", "transactionAmount" : "8335.8", "number" : "D1", "main_category" : "fruit", "sub_category" : ""}, {"transactionDate" : "104.03.09", "produceNumber" : "51", "produceName" : "\u767e\u9999\u679c-\u6539\u826f\u7a2e", "marketNumber" : "423", "marketName" : "\u6771\u52e2\u93ae", "topPrice" : "38.8", "middlePrice" : "38.8", "lowPrice" : "32.5", "averagePrice" : "32.5", "transactionAmount" : "126", "number" : "51", "main_category" : "fruit", "sub_category" : ""}, {"transactionDate" : "104.03.09", "produceNumber" : "Y4", "produceName" : "\u6843\u5b50-\u65e9\u6843", "marketNumber" : "423", "marketName" : "\u6771\u52e2\u93ae", "topPrice" : "75", "middlePrice" : "57.9", "lowPrice" : "43.9", "averagePrice" : "60.1", "transactionAmount" : "517.2", "number" : "Y4", "main_category" : "fruit", "sub_category" : ""}, {"transactionDate" : "104.03.09", "produceNumber" : "L1", "produceName" : "\u6787\u6777-\u8302\u6728", "marketNumber" : "423", "marketName" : "\u6771\u52e2\u93ae", "topPrice" : "146.3", "middlePrice" : "75", "lowPrice" : "36.1", "averagePrice" : "83.4", "transactionAmount" : "354.6", "number" : "L1", "main_category" : "fruit", "sub_category" : ""}, {"transactionDate" : "104.03.09", "produceNumber" : "OW", "produceName" : "\u68a8-\u96ea\u68a8", "marketNumber" : "423", "marketName" : "\u6771\u52e2\u93ae", "topPrice" : "108.3", "middlePrice" : "105.5", "lowPrice" : "94.4", "averagePrice" : "104.7", "transactionAmount" : "698.4", "number" : "OW", "main_category" : "fruit", "sub_category" : ""}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"transactionDate": {"type": "string"}, "produceNumber": {"type": "string"}, "produceName": {"type": "string"}, "marketNumber": {"type": "string"}, "marketName": {"type": "string"}, "topPrice": {"type": "string"}, "middlePrice": {"type": "string"}, "lowPrice": {"type": "string"}, "averagePrice": {"type": "string"}, "transactionAmount": {"type": "string"}, "number": {"type": "string"}, "main_category": {"type": "string"}, "sub_category": {"type": "string"}}, "required": ["transactionDate", "produceNumber", "produceName", "marketNumber", "marketName", "topPrice", "middlePrice", "lowPrice", "averagePrice", "transactionAmount", "number", "main_category", "sub_category"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"id": {"type": "string"}, "symbol": {"type": "string"}, "name": {"type": "string"}, "platforms": {"type": "object", "properties": {"ethereum": {"type": "string"}}, "required": ["ethereum"]}, "hashing_algorithm": {"type": "null"}, "categories": {"type": "array", "items": {"type": "string"}}, "description": {"type": "object", "properties": {"en": {"type": "string"}}, "required": ["en"]}, "country_origin": {"type": "string"}, "genesis_date": {"type": "null"}, "contract_address": {"type": "string"}, "url": {"type": "string"}, "explorers": {"type": "array", "items": {"type": "string"}}, "twitter": {"type": "string"}, "telegram": {"type": "string"}, "github_org": {"type": "string"}}, "required": ["id", "symbol", "name", "platforms", "hashing_algorithm", "categories", "description", "country_origin", "genesis_date", "contract_address", "url", "explorers", "twitter", "telegram", "github_org"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "darwinia-network-native-token", "symbol" : "ring", "name" : "Darwinia Network Native Token", "platforms" : {"ethereum" : "0x9469d013805bffb7d3debe5e7839237e535ec483"}, "hashing_algorithm" : null, "categories" : ["Gaming", "Polkadot Ecosystem"], "description" : {"en" : "RING is the native token of Darwinia Network. It's used to pay for the GAS fee of the on-chain transactions and cross-chain services. RING can be staked for staking rewards and obtaining voting power to participate in the governance.\r\n\r\nDarwinia Network is a decentralized heterogeneous cross-chain bridge protocol built on Substrate, serves as critical infrastructure for interoperability across the blockchain networks. Darwinia Network focuses on decentralized cross-chain token swap, exchange, and market and enables single-chain application upgrade to cross-chain version, including Defi, Game, DEX, NFT market, and more. Its vision is to build the future Internet of Tokens."}, "country_origin" : "", "genesis_date" : null, "contract_address" : "0x9469d013805bffb7d3debe5e7839237e535ec483", "url" : "https://darwinia.network/", "explorers" : ["https://etherscan.io/token/0x9469d013805bffb7d3debe5e7839237e535ec483", "https://ethplorer.io/address/0x9469d013805bffb7d3debe5e7839237e535ec483", "https://darwinia-cc1.subscan.io/account?role=all&page=1¤cy=ring"], "twitter" : "DarwiniaNetwork", "telegram" : "DarwiniaNetwork", "github_org" : "darwinia-network"} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "symbol": {"type": "string"}, "name": {"type": "string"}, "platforms": {"type": "object", "properties": {"ethereum": {"type": "string"}}, "required": ["ethereum"]}, "hashing_algorithm": {"type": "null"}, "categories": {"type": "array", "items": {"type": "string"}}, "description": {"type": "object", "properties": {"en": {"type": "string"}}, "required": ["en"]}, "country_origin": {"type": "string"}, "genesis_date": {"type": "null"}, "contract_address": {"type": "string"}, "url": {"type": "string"}, "explorers": {"type": "array", "items": {"type": "string"}}, "twitter": {"type": "string"}, "telegram": {"type": "string"}, "github_org": {"type": "string"}}, "required": ["id", "symbol", "name", "platforms", "hashing_algorithm", "categories", "description", "country_origin", "genesis_date", "contract_address", "url", "explorers", "twitter", "telegram", "github_org"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"next_post_id": {"type": "integer"}, "next_comment_id": {"type": "integer"}, "next_follow_id": {"type": "integer"}, "avatar": {"type": "string"}, "user_name": {"type": "string"}, "hub": {"type": "string"}, "intro": {"type": "string"}, "post": {"type": "array", "items": {"type": "object", "properties": {"post_id": {"type": "integer"}, "date_added": {"type": "integer"}, "body": {"type": "string"}}, "required": ["post_id", "date_added", "body"]}}, "post_like": {"type": "object", "properties": {}, "required": []}, "comment": {"type": "array", "items": {}}, "follow": {"type": "array", "items": {"type": "object", "properties": {"follow_id": {"type": "integer"}, "hub": {"type": "string"}, "auth_address": {"type": "string"}, "user_name": {"type": "string"}, "date_added": {"type": "integer"}}, "required": ["follow_id", "hub", "auth_address", "user_name", "date_added"]}}}, "required": ["next_post_id", "next_comment_id", "next_follow_id", "avatar", "user_name", "hub", "intro", "post", "post_like", "comment", "follow"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"next_post_id" : 3, "next_comment_id" : 1, "next_follow_id" : 5, "avatar" : "generate", "user_name" : "Ddjjddjj", "hub" : "1oranGeS2xsKZ4jVsu9SVttzgkYXu4k9v", "intro" : "\u65b0 ZeroNet \u7528\u6237", "post" : [{"post_id" : 1, "date_added" : 1483732159, "body" : "\u4f60\u597d ZeroMe!"}, {"post_id" : 1483732998, "body" : "\u624b\u673a\u5b89\u5353\u7a0b\u5e8f\u4e0d\u9519\uff0c\u867d\u7136\u6709\u4e9b\u5c0f\u6bdb\u75c5", "date_added" : 1483732996}], "post_like" : {}, "comment" : [], "follow" : [{"follow_id" : 1, "hub" : "1oranGeS2xsKZ4jVsu9SVttzgkYXu4k9v", "auth_address" : "1N2eNZ5w1dpoBcwatsSuTaeNzHgSLjyrpU", "user_name" : "\u5927\u5bb6\u4e00\u8d77p2p", "date_added" : 1483732254}, {"follow_id" : 2, "hub" : "1oranGeS2xsKZ4jVsu9SVttzgkYXu4k9v", "auth_address" : "17H6uxjm8hQK9Rk79yHkvQYQnTkJNroA3T", "user_name" : "Strawing", "date_added" : 1483732278}, {"follow_id" : 3, "hub" : "1RedkCkVaXuVXrqCMpoXQS29bwaqsuFdL", "auth_address" : "13Z7XxTa7JuFat3KzzMWu3onwM6biLuurJ", "user_name" : "P2P", "date_added" : 1483732305}, {"follow_id" : 4, "hub" : "1RedkCkVaXuVXrqCMpoXQS29bwaqsuFdL", "auth_address" : "1958F7oCppj78MP966AfojMQwHg2WUupzq", "user_name" : "Lmath", "date_added" : 1483733189}]} | json_instruct | {"type": "object", "properties": {"next_post_id": {"type": "integer"}, "next_comment_id": {"type": "integer"}, "next_follow_id": {"type": "integer"}, "avatar": {"type": "string"}, "user_name": {"type": "string"}, "hub": {"type": "string"}, "intro": {"type": "string"}, "post": {"type": "array", "items": {"type": "object", "properties": {"post_id": {"type": "integer"}, "date_added": {"type": "integer"}, "body": {"type": "string"}}, "required": ["post_id", "date_added", "body"]}}, "post_like": {"type": "object", "properties": {}, "required": []}, "comment": {"type": "array", "items": {}}, "follow": {"type": "array", "items": {"type": "object", "properties": {"follow_id": {"type": "integer"}, "hub": {"type": "string"}, "auth_address": {"type": "string"}, "user_name": {"type": "string"}, "date_added": {"type": "integer"}}, "required": ["follow_id", "hub", "auth_address", "user_name", "date_added"]}}}, "required": ["next_post_id", "next_comment_id", "next_follow_id", "avatar", "user_name", "hub", "intro", "post", "post_like", "comment", "follow"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"odnoklassniki-square": {"type": "object", "properties": {"width": {"type": "integer"}, "height": {"type": "integer"}, "paths": {"type": "array", "items": {"type": "object", "properties": {"d": {"type": "string"}}, "required": ["d"]}}}, "required": ["width", "height", "paths"]}}, "required": ["odnoklassniki-square"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"odnoklassniki-square" : {"width" : 1536, "height" : 1792, "paths" : [{"d" : "M927 580q0 66-46.5 112.5t-112.5 46.5-112.5-46.5-46.5-112.5 46.5-112.5 112.5-46.5 112.5 46.5 46.5 112.5zM1141 943q-10-20-28-32t-47.5-9.5-60.5 27.5q-10 8-29 20t-81 32-127 20-124-18-86-36l-27-18q-31-25-60.5-27.5t-47.5 9.5-28 32q-22 45-2 74.5t87 73.5q83 53 226 67l-51 52q-142 142-191 190-22 22-22 52.5t22 52.5l9 9q22 22 52.5 22t52.5-22l191-191q114 115 191 191 22 22 52.5 22t52.5-22l9-9q22-22 22-52.5t-22-52.5l-191-190-52-52q141-14 225-67 67-44 87-73.5t-2-74.5zM1092 580q0-134-95-229t-229-95-229 95-95 229 95 229 229 95 229-95 95-229zM1536 416v960q0 119-84.5 203.5t-203.5 84.5h-960q-119 0-203.5-84.5t-84.5-203.5v-960q0-119 84.5-203.5t203.5-84.5h960q119 0 203.5 84.5t84.5 203.5z"}]}} | json_instruct | {"type": "object", "properties": {"odnoklassniki-square": {"type": "object", "properties": {"width": {"type": "integer"}, "height": {"type": "integer"}, "paths": {"type": "array", "items": {"type": "object", "properties": {"d": {"type": "string"}}, "required": ["d"]}}}, "required": ["width", "height", "paths"]}}, "required": ["odnoklassniki-square"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"}
| ["angular-tablescroll", "clr-format", "jdenticon", "jtablescroll", "ko-datatable"] | json_instruct | {"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"id_1000": {"type": "object", "properties": {"publicdate": {"type": "string"}, "title": {"type": "string"}}, "required": ["publicdate", "title"]}}, "required": ["id_1000"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id_1000" : {"publicdate" : "2009-02-02 19:41:34", "title" : "Selected Riley Child-Rhymes"}} | json_instruct | {"type": "object", "properties": {"id_1000": {"type": "object", "properties": {"publicdate": {"type": "string"}, "title": {"type": "string"}}, "required": ["publicdate", "title"]}}, "required": ["id_1000"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "array", "items": {"type": "object", "properties": {"Name": {"type": "string"}, "ClassName": {"type": "string"}}, "required": ["Name", "ClassName"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"Name" : "wp:ST_AlignH/wp:align", "ClassName" : "HorizontalAlignment"}, {"Name" : "wp:ST_AlignV/wp:align", "ClassName" : "VerticalAlignment"}, {"Name" : "wp:CT_Anchor/wp:anchor", "ClassName" : "Anchor"}, {"Name" : "a:CT_NonVisualGraphicFrameProperties/wp:cNvGraphicFramePr", "ClassName" : "NonVisualGraphicFrameDrawingProperties"}, {"Name" : "a:CT_NonVisualDrawingProps/wp:docPr", "ClassName" : "DocProperties"}, {"Name" : "wp:CT_EffectExtent/wp:effectExtent", "ClassName" : "EffectExtent"}, {"Name" : "a:CT_PositiveSize2D/wp:extent", "ClassName" : "Extent"}, {"Name" : "wp:CT_Inline/wp:inline", "ClassName" : "Inline"}, {"Name" : "a:CT_Point2D/wp:lineTo", "ClassName" : "LineTo"}, {"Name" : "wp:CT_PosH/wp:positionH", "ClassName" : "HorizontalPosition"}, {"Name" : "wp:CT_PosV/wp:positionV", "ClassName" : "VerticalPosition"}, {"Name" : "wp:ST_PositionOffset/wp:posOffset", "ClassName" : "PositionOffset"}, {"Name" : "a:CT_Point2D/wp:simplePos", "ClassName" : "SimplePosition"}, {"Name" : "a:CT_Point2D/wp:start", "ClassName" : "StartPoint"}, {"Name" : "wp:CT_WrapNone/wp:wrapNone", "ClassName" : "WrapNone"}, {"Name" : "wp:CT_WrapPath/wp:wrapPolygon", "ClassName" : "WrapPolygon"}, {"Name" : "wp:CT_WrapSquare/wp:wrapSquare", "ClassName" : "WrapSquare"}, {"Name" : "wp:CT_WrapThrough/wp:wrapThrough", "ClassName" : "WrapThrough"}, {"Name" : "wp:CT_WrapTight/wp:wrapTight", "ClassName" : "WrapTight"}, {"Name" : "wp:CT_WrapTopBottom/wp:wrapTopAndBottom", "ClassName" : "WrapTopBottom"}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"Name": {"type": "string"}, "ClassName": {"type": "string"}}, "required": ["Name", "ClassName"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"year": {"type": "integer"}, "month": {"type": "integer"}, "entity": {"type": "string"}, "summary": {"type": "string"}, "tags": {"type": "object", "properties": {"impacted-user-count": {"type": "null"}, "cost-usd": {"type": "null"}, "motive": {"type": "string"}, "initial-access": {"type": "string"}, "actor": {"type": "string"}}, "required": ["impacted-user-count", "cost-usd", "motive", "initial-access", "actor"]}, "links": {"type": "array", "items": {"type": "string"}}}, "required": ["year", "month", "entity", "summary", "tags", "links"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"year" : 2019, "month" : 6, "entity" : "Eurofins", "summary" : "The unknown ransomware attack disrupted some of its IT systems and the company took offline many other systems and servers to minimize the damage", "tags" : {"impacted-user-count" : null, "cost-usd" : null, "motive" : "Money:Ransom", "initial-access" : "?", "actor" : "Criminal"}, "links" : ["https://www.helpnetsecurity.com/2019/06/24/eurofins-ransomware-attack/"]} | json_instruct | {"type": "object", "properties": {"year": {"type": "integer"}, "month": {"type": "integer"}, "entity": {"type": "string"}, "summary": {"type": "string"}, "tags": {"type": "object", "properties": {"impacted-user-count": {"type": "null"}, "cost-usd": {"type": "null"}, "motive": {"type": "string"}, "initial-access": {"type": "string"}, "actor": {"type": "string"}}, "required": ["impacted-user-count", "cost-usd", "motive", "initial-access", "actor"]}, "links": {"type": "array", "items": {"type": "string"}}}, "required": ["year", "month", "entity", "summary", "tags", "links"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"Bacon.js": {"type": "string"}, "Bacon.min.js": {"type": "string"}, "Bacon.noAssert.js": {"type": "string"}, "Bacon.noAssert.min.js": {"type": "string"}}, "required": ["Bacon.js", "Bacon.min.js", "Bacon.noAssert.js", "Bacon.noAssert.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"Bacon.js" : "sha512-2h95J2lkUEcVWRPFeUFhRWRNMkLpLigtUQIhpTZ+YWmNgVjl5IE1QzYVGvhFzTBmImMGppNc/ei+Xf+wXW/g7Q==", "Bacon.min.js" : "sha512-iW7wW3v8Jp/9/J8a2t5A/Q0UJFtQkSv0sB/01wckRCqw92m2E5xH4xKkn+Z755zE8QPTMO73to6YBjr9SpE6ww==", "Bacon.noAssert.js" : "sha512-2PhEKfNQuVU8q1XU+GPSHsXgdxE5/wnFW+wDpGls+toZH0acf7puR3Rk5SuWcnsFFHExl6jJRfOvbPzfKJGdfQ==", "Bacon.noAssert.min.js" : "sha512-QgUaQuqLldTMqPA0OTSFyiIx/JZT3LCSXhdixdbB5rqwlMkQ6TW82O6Pdm7fZqLhgdYvevYB86pGAQIcFCbddA=="} | json_instruct | {"type": "object", "properties": {"Bacon.js": {"type": "string"}, "Bacon.min.js": {"type": "string"}, "Bacon.noAssert.js": {"type": "string"}, "Bacon.noAssert.min.js": {"type": "string"}}, "required": ["Bacon.js", "Bacon.min.js", "Bacon.noAssert.js", "Bacon.noAssert.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"type": {"type": "string"}, "features": {"type": "array", "items": {"type": "object", "properties": {"geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["type", "coordinates"]}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"cartodb_id": {"type": "integer"}}, "required": ["cartodb_id"]}}, "required": ["geometry", "type", "properties"]}}}, "required": ["type", "features"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"type" : "FeatureCollection", "features" : [{"geometry" : {"type" : "Polygon", "coordinates" : [[[-96.8711, 33.0124], [-96.869871, 33.015985], [-96.86931, 33.024769], [-96.859301, 33.024237], [-96.85447, 33.026069], [-96.843266, 33.025914], [-96.843793, 33.010447], [-96.84695, 33.010509], [-96.849453, 33.011696], [-96.8711, 33.01171], [-96.8711, 33.0124]]]}, "type" : "Feature", "properties" : {"cartodb_id" : 87017}}]} | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "features": {"type": "array", "items": {"type": "object", "properties": {"geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["type", "coordinates"]}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"cartodb_id": {"type": "integer"}}, "required": ["cartodb_id"]}}, "required": ["geometry", "type", "properties"]}}}, "required": ["type", "features"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"schema_version": {"type": "string"}, "id": {"type": "string"}, "modified": {"type": "string"}, "published": {"type": "string"}, "aliases": {"type": "array", "items": {"type": "string"}}, "details": {"type": "string"}, "severity": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "score": {"type": "string"}}, "required": ["type", "score"]}}, "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-hjj8-vwr9-34qh", "modified" : "2022-05-13T01:47:27Z", "published" : "2022-05-13T01:47:27Z", "aliases" : ["CVE-2017-8308"], "details" : "In Avast Antivirus before v17, an unprivileged user (and thus malware or a virus) can mark an arbitrary process as Trusted from the perspective of the Avast product. This bypasses the Self-Defense feature of the product, opening a door to subsequent attack on many of its components.", "severity" : [{"type" : "CVSS_V3", "score" : "CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:H/A:N"}], "affected" : [], "references" : [{"type" : "ADVISORY", "url" : "https://nvd.nist.gov/vuln/detail/CVE-2017-8308"}, {"type" : "WEB", "url" : "https://www.trustwave.com/Resources/Security-Advisories/Advisories/Multiple-Vulnerabilities-in-Avast-Antivirus/?fid=9201"}, {"type" : "WEB", "url" : "http://www.securityfocus.com/bid/98084"}], "database_specific" : {"cwe_ids" : ["CWE-269"], "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": {"type": "object", "properties": {"type": {"type": "string"}, "score": {"type": "string"}}, "required": ["type", "score"]}}, "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#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"title": {"type": "string"}, "text": {"type": "string"}}, "required": ["title", "text"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"title" : "UMass to receive $95M life sciences grant", "text" : "BOSTON (AP) \u2014 The University of Massachusetts-Amherst is receiving a $95 million state grant to help the school build and equip a new life sciences research facility.\n\nThe grant was announced by Gov. Deval Patrick and the Massachusetts Life Sciences Center, which was created under a 2008 law that called for a $1 billion capital investment in the industry over a 10-year period.\n\nUMass is constructing a $157 million life sciences building. Officials say the facility will house three faculty-led research centers that will work with private companies in the region to develop new products.\n\nA separate, $5.5 million grant will go to the Pioneer Valley Life Sciences Institute, a joint venture of UMass and the Baystate Medical Center in Springfield."} | json_instruct | {"type": "object", "properties": {"title": {"type": "string"}, "text": {"type": "string"}}, "required": ["title", "text"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"text": {"type": "string"}, "created": {"type": "string"}, "type": {"type": "string"}}, "required": ["text", "created", "type"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"text" : "I wonder if any of the news orgs with a paywall have thought about doing what Netflix and Google TV (and perhaps others) do. They let you share your membership with \"family members,\" which really means anyone you want. It might be good marketing. ", "created" : "Mon, 11 May 2020 16:16:10 GMT", "type" : "outline"} | json_instruct | {"type": "object", "properties": {"text": {"type": "string"}, "created": {"type": "string"}, "type": {"type": "string"}}, "required": ["text", "created", "type"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "array", "items": {"type": "number"}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [725.8005995180627, 748.1137569046183, 807.6155099354334, 829.928667321989] | json_instruct | {"type": "array", "items": {"type": "number"}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"properties": {"type": "object", "properties": {"data": {"type": "object", "properties": {"additionalProperties": {"type": "object", "properties": {"type": {"type": "string"}}, "required": ["type"]}, "type": {"type": "string"}}, "required": ["additionalProperties", "type"]}, "binaryData": {"type": "object", "properties": {"additionalProperties": {"type": "object", "properties": {"type": {"type": "string"}}, "required": ["type"]}, "type": {"type": "string"}}, "required": ["additionalProperties", "type"]}, "immutable": {"type": "object", "properties": {"title": {"type": "string"}, "type": {"type": "string"}}, "required": ["title", "type"]}}, "required": ["data", "binaryData", "immutable"]}, "type": {"type": "string"}}, "required": ["properties", "type"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"properties" : {"data" : {"additionalProperties" : {"type" : "string"}, "type" : "object"}, "binaryData" : {"additionalProperties" : {"type" : "string"}, "type" : "object"}, "immutable" : {"title" : "Immutable", "type" : "boolean"}}, "type" : "object"} | json_instruct | {"type": "object", "properties": {"properties": {"type": "object", "properties": {"data": {"type": "object", "properties": {"additionalProperties": {"type": "object", "properties": {"type": {"type": "string"}}, "required": ["type"]}, "type": {"type": "string"}}, "required": ["additionalProperties", "type"]}, "binaryData": {"type": "object", "properties": {"additionalProperties": {"type": "object", "properties": {"type": {"type": "string"}}, "required": ["type"]}, "type": {"type": "string"}}, "required": ["additionalProperties", "type"]}, "immutable": {"type": "object", "properties": {"title": {"type": "string"}, "type": {"type": "string"}}, "required": ["title", "type"]}}, "required": ["data", "binaryData", "immutable"]}, "type": {"type": "string"}}, "required": ["properties", "type"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"spectre.css": {"type": "string"}, "spectre.min.css": {"type": "string"}}, "required": ["spectre.css", "spectre.min.css"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"spectre.css" : "sha256-0230roTKDiTthZunF9bgcqEt7KK7raoad0+iBHAIXfg=", "spectre.min.css" : "sha256-BkF23Usy2r5uy2M8pj8ZZMd3Kb5Z50SbOL3GtAZAg+M="} | json_instruct | {"type": "object", "properties": {"spectre.css": {"type": "string"}, "spectre.min.css": {"type": "string"}}, "required": ["spectre.css", "spectre.min.css"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"id": {"type": "integer"}, "info": {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "additionalInfo": {"type": "string"}, "format": {"type": "string"}, "category": {"type": "string"}, "createdAt": {"type": "string"}, "updatedAt": {"type": "string"}, "license": {"type": "string"}, "author": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "homepage": {"type": "string"}}, "required": ["id", "name", "homepage"]}}, "required": ["name", "description", "additionalInfo", "format", "category", "createdAt", "updatedAt", "license", "author"]}, "stats": {"type": "object", "properties": {"installs": {"type": "object", "properties": {"total": {"type": "integer"}, "weekly": {"type": "integer"}}, "required": ["total", "weekly"]}}, "required": ["installs"]}, "screenshots": {"type": "object", "properties": {"main": {"type": "object", "properties": {"name": {"type": "string"}, "archived": {"type": "boolean"}}, "required": ["name", "archived"]}}, "required": ["main"]}, "discussions": {"type": "object", "properties": {"stats": {"type": "object", "properties": {"discussionsCount": {"type": "integer"}, "commentsCount": {"type": "integer"}}, "required": ["discussionsCount", "commentsCount"]}, "data": {"type": "array", "items": {}}}, "required": ["stats", "data"]}, "style": {"type": "object", "properties": {"css": {"type": "string"}}, "required": ["css"]}}, "required": ["id", "info", "stats", "screenshots", "discussions", "style"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : 163466, "info" : {"name" : "Gmail Fixed Font", "description" : "Applies the browser's monospace font to message body text and compose window in Gmail.", "additionalInfo" : "This version works with both the old and new (2018) Gmail interfaces.", "format" : "uso", "category" : "google", "createdAt" : "2018-08-19T15:18:21.000Z", "updatedAt" : "2018-08-19T15:18:21.000Z", "license" : "CC-BY-SA-4.0", "author" : {"id" : 706050, "name" : "jparise", "homepage" : "https://www.indelible.org/"}}, "stats" : {"installs" : {"total" : 319, "weekly" : 0}}, "screenshots" : {"main" : {"name" : "163466_after.png", "archived" : true}}, "discussions" : {"stats" : {"discussionsCount" : 0, "commentsCount" : 0}, "data" : []}, "style" : {"css" : "@-moz-document domain('mail.google.com') {\r\n .a3s {\r\n font: small/1.5 monospace !important;\r\n }\r\n .ii,\r\n .Ak {\r\n font-family: monospace !important;\r\n }\r\n textarea {\r\n font-family: monospace !important;\r\n }\r\n .editable {\r\n font-family: monospace !important;\r\n }\r\n}"}} | json_instruct | {"type": "object", "properties": {"id": {"type": "integer"}, "info": {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "additionalInfo": {"type": "string"}, "format": {"type": "string"}, "category": {"type": "string"}, "createdAt": {"type": "string"}, "updatedAt": {"type": "string"}, "license": {"type": "string"}, "author": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "homepage": {"type": "string"}}, "required": ["id", "name", "homepage"]}}, "required": ["name", "description", "additionalInfo", "format", "category", "createdAt", "updatedAt", "license", "author"]}, "stats": {"type": "object", "properties": {"installs": {"type": "object", "properties": {"total": {"type": "integer"}, "weekly": {"type": "integer"}}, "required": ["total", "weekly"]}}, "required": ["installs"]}, "screenshots": {"type": "object", "properties": {"main": {"type": "object", "properties": {"name": {"type": "string"}, "archived": {"type": "boolean"}}, "required": ["name", "archived"]}}, "required": ["main"]}, "discussions": {"type": "object", "properties": {"stats": {"type": "object", "properties": {"discussionsCount": {"type": "integer"}, "commentsCount": {"type": "integer"}}, "required": ["discussionsCount", "commentsCount"]}, "data": {"type": "array", "items": {}}}, "required": ["stats", "data"]}, "style": {"type": "object", "properties": {"css": {"type": "string"}}, "required": ["css"]}}, "required": ["id", "info", "stats", "screenshots", "discussions", "style"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "array", "items": {"type": "object", "properties": {"title": {"type": "string"}, "description": {"type": "string"}, "image": {"type": "string"}}, "required": ["title", "description", "image"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"title" : "Free Consultation", "description" : "New clients recieve an obligation free consultation.", "image" : "/images/features/noun_branding_1885335.svg"}, {"title" : "Expert Consultants", "description" : "All members of our team have been there, done that. You can rely on us.", "image" : "/images/features/noun_The Process_1885341.svg"}, {"title" : "Latest and Greatest", "description" : "We stay up to date on the latest software tools.", "image" : "/images/features/noun_3d modeling_1885342.svg"}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"title": {"type": "string"}, "description": {"type": "string"}, "image": {"type": "string"}}, "required": ["title", "description", "image"]}, "$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.