input
stringlengths 159
2.05k
| output
stringlengths 5
10.3k
| task
stringclasses 1
value | schema
stringlengths 100
1.99k
|
---|---|---|---|
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"ps": {"type": "integer"}, "xbox": {"type": "integer"}}, "required": ["ps", "xbox"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"ps" : 3423, "xbox" : 1929} | json_instruct | {"type": "object", "properties": {"ps": {"type": "integer"}, "xbox": {"type": "integer"}}, "required": ["ps", "xbox"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"type": {"type": "string"}, "level": {"type": "string"}, "label": {"type": "string"}, "locale": {"type": "string"}, "country_id": {"type": "integer"}, "country_reference": {"type": "integer"}, "country_name": {"type": "string"}, "region_id": {"type": "string"}, "region_reference": {"type": "string"}, "region_name": {"type": "string"}, "province_id": {"type": "string"}, "province_reference": {"type": "string"}, "province_name": {"type": "string"}, "city_id": {"type": "string"}, "city_reference": {"type": "string"}, "city_name": {"type": "string"}, "barangay_id": {"type": "string"}, "barangay_reference": {"type": "string"}, "barangay_name": {"type": "string"}}, "required": ["type", "level", "label", "locale", "country_id", "country_reference", "country_name", "region_id", "region_reference", "region_name", "province_id", "province_reference", "province_name", "city_id", "city_reference", "city_name", "barangay_id", "barangay_reference", "barangay_name"]}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}}, "required": ["type", "coordinates"]}}, "required": ["type", "properties", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"type" : "Feature", "properties" : {"type" : "barangay", "level" : "4", "label" : "Silangan, Calauan, Laguna, CALABARZON (Region IV-A), PH", "locale" : "ph.calabarzon-region-iv-a.laguna.calauan.silangan", "country_id" : 177, "country_reference" : 177, "country_name" : "Philippines", "region_id" : "4", "region_reference" : "41", "region_name" : "CALABARZON (Region IV-A)", "province_id" : "40", "province_reference" : "40", "province_name" : "Laguna", "city_id" : "294", "city_reference" : "761", "city_name" : "Calauan", "barangay_id" : "7958", "barangay_reference" : "19237", "barangay_name" : "Silangan"}, "geometry" : {"type" : "MultiPolygon", "coordinates" : [[[[121.313148, 14.15672], [121.316093, 14.15078], [121.31665, 14.15089], [121.317307, 14.14967], [121.317841, 14.14816], [121.317017, 14.14529], [121.315468, 14.14328], [121.314934, 14.14492], [121.314957, 14.14534], [121.314751, 14.14652], [121.314346, 14.14643], [121.313957, 14.14758], [121.314484, 14.14817], [121.314293, 14.14867], [121.312477, 14.15233], [121.311417, 14.15405], [121.310913, 14.15501], [121.313148, 14.15672]]]]}} | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"type": {"type": "string"}, "level": {"type": "string"}, "label": {"type": "string"}, "locale": {"type": "string"}, "country_id": {"type": "integer"}, "country_reference": {"type": "integer"}, "country_name": {"type": "string"}, "region_id": {"type": "string"}, "region_reference": {"type": "string"}, "region_name": {"type": "string"}, "province_id": {"type": "string"}, "province_reference": {"type": "string"}, "province_name": {"type": "string"}, "city_id": {"type": "string"}, "city_reference": {"type": "string"}, "city_name": {"type": "string"}, "barangay_id": {"type": "string"}, "barangay_reference": {"type": "string"}, "barangay_name": {"type": "string"}}, "required": ["type", "level", "label", "locale", "country_id", "country_reference", "country_name", "region_id", "region_reference", "region_name", "province_id", "province_reference", "province_name", "city_id", "city_reference", "city_name", "barangay_id", "barangay_reference", "barangay_name"]}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}}, "required": ["type", "coordinates"]}}, "required": ["type", "properties", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"h": {"type": "string"}, "c": {"type": "object", "properties": {"app": {"type": "boolean"}}, "required": ["app"]}}, "required": ["h", "c"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"h" : "63fa23cf491c21c5f1c4", "c" : {"app" : true}} | json_instruct | {"type": "object", "properties": {"h": {"type": "string"}, "c": {"type": "object", "properties": {"app": {"type": "boolean"}}, "required": ["app"]}}, "required": ["h", "c"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"globals_path": {"type": "string"}, "output_folder": {"type": "boolean"}, "src_folders": {"type": "array", "items": {"type": "string"}}, "test_settings": {"type": "object", "properties": {"default": {"type": "object", "properties": {"screenshots": {"type": "object", "properties": {"enabled": {"type": "boolean"}, "on_failure": {"type": "boolean"}, "path": {"type": "string"}}, "required": ["enabled", "on_failure", "path"]}, "videos": {"type": "object", "properties": {"enabled": {"type": "boolean"}, "delete_on_success": {"type": "boolean"}, "path": {"type": "string"}}, "required": ["enabled", "delete_on_success", "path"]}, "launch_url": {"type": "string"}, "selenium_host": {"type": "string"}}, "required": ["screenshots", "videos", "launch_url", "selenium_host"]}}, "required": ["default"]}}, "required": ["globals_path", "output_folder", "src_folders", "test_settings"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"globals_path" : "globals.js", "output_folder" : false, "src_folders" : ["specs"], "test_settings" : {"default" : {"screenshots" : {"enabled" : true, "on_failure" : true, "path" : "screenshots"}, "videos" : {"enabled" : true, "delete_on_success" : false, "path" : "videos"}, "launch_url" : "http://nginx", "selenium_host" : "chromedriver"}}} | json_instruct | {"type": "object", "properties": {"globals_path": {"type": "string"}, "output_folder": {"type": "boolean"}, "src_folders": {"type": "array", "items": {"type": "string"}}, "test_settings": {"type": "object", "properties": {"default": {"type": "object", "properties": {"screenshots": {"type": "object", "properties": {"enabled": {"type": "boolean"}, "on_failure": {"type": "boolean"}, "path": {"type": "string"}}, "required": ["enabled", "on_failure", "path"]}, "videos": {"type": "object", "properties": {"enabled": {"type": "boolean"}, "delete_on_success": {"type": "boolean"}, "path": {"type": "string"}}, "required": ["enabled", "delete_on_success", "path"]}, "launch_url": {"type": "string"}, "selenium_host": {"type": "string"}}, "required": ["screenshots", "videos", "launch_url", "selenium_host"]}}, "required": ["default"]}}, "required": ["globals_path", "output_folder", "src_folders", "test_settings"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "dependencies": {"type": "object", "properties": {"gulp": {"type": "string"}, "gulp-concat": {"type": "string"}, "gulp-sass": {"type": "string"}}, "required": ["gulp", "gulp-concat", "gulp-sass"]}, "devDependencies": {"type": "object", "properties": {}, "required": []}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}}, "required": ["name", "version", "description", "main", "dependencies", "devDependencies", "scripts", "repository", "keywords", "author", "license", "bugs", "homepage"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "final-organ-donation", "version" : "1.0.0", "description" : "organ donation cms vue ", "main" : "index.js", "dependencies" : {"gulp" : "^4.0.0", "gulp-concat" : "^2.6.1", "gulp-sass" : "^4.0.2"}, "devDependencies" : {}, "scripts" : {"test" : "echo \"Error: no test specified\" && exit 1"}, "repository" : {"type" : "git", "url" : "git+https://github.com/azusakaworu/final-organ-donation.git"}, "keywords" : ["cms"], "author" : "Ling Ding", "license" : "ISC", "bugs" : {"url" : "https://github.com/azusakaworu/final-organ-donation/issues"}, "homepage" : "https://github.com/azusakaworu/final-organ-donation#readme"} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "dependencies": {"type": "object", "properties": {"gulp": {"type": "string"}, "gulp-concat": {"type": "string"}, "gulp-sass": {"type": "string"}}, "required": ["gulp", "gulp-concat", "gulp-sass"]}, "devDependencies": {"type": "object", "properties": {}, "required": []}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}}, "required": ["name", "version", "description", "main", "dependencies", "devDependencies", "scripts", "repository", "keywords", "author", "license", "bugs", "homepage"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "author": {"type": "string"}, "main": {"type": "string"}, "directories": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "bin": {"type": "object", "properties": {"csv-streamify": {"type": "string"}}, "required": ["csv-streamify"]}, "repository": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"through2": {"type": "string"}}, "required": ["through2"]}, "devDependencies": {"type": "object", "properties": {"csv-spectrum": {"type": "string"}, "mocha": {"type": "string"}, "standard": {"type": "string"}, "string-to-stream": {"type": "string"}}, "required": ["csv-spectrum", "mocha", "standard", "string-to-stream"]}, "engines": {"type": "object", "properties": {"node": {"type": "string"}}, "required": ["node"]}}, "required": ["name", "version", "description", "author", "main", "directories", "scripts", "bin", "repository", "keywords", "license", "dependencies", "devDependencies", "engines"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "csv-streamify", "version" : "3.0.4", "description" : "Streaming CSV Parser. Made entirely out of streams.", "author" : "Clemens Stolle", "main" : "csv-streamify.js", "directories" : {"test" : "test"}, "scripts" : {"test" : "standard && mocha -R spec"}, "bin" : {"csv-streamify" : "cli.js"}, "repository" : "https://github.com/klaemo/csv-stream", "keywords" : ["csv", "parser", "stream", "cli"], "license" : "BSD-2-Clause", "dependencies" : {"through2" : "2.0.1"}, "devDependencies" : {"csv-spectrum" : "^1.0.0", "mocha" : "^2.3.3", "standard" : "^7.1.0", "string-to-stream" : "^1.0.1"}, "engines" : {"node" : ">=0.12.0"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "author": {"type": "string"}, "main": {"type": "string"}, "directories": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "bin": {"type": "object", "properties": {"csv-streamify": {"type": "string"}}, "required": ["csv-streamify"]}, "repository": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"through2": {"type": "string"}}, "required": ["through2"]}, "devDependencies": {"type": "object", "properties": {"csv-spectrum": {"type": "string"}, "mocha": {"type": "string"}, "standard": {"type": "string"}, "string-to-stream": {"type": "string"}}, "required": ["csv-spectrum", "mocha", "standard", "string-to-stream"]}, "engines": {"type": "object", "properties": {"node": {"type": "string"}}, "required": ["node"]}}, "required": ["name", "version", "description", "author", "main", "directories", "scripts", "bin", "repository", "keywords", "license", "dependencies", "devDependencies", "engines"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"ast": {"type": "null"}, "code": {"type": "string"}, "map": {"type": "null"}, "metadata": {"type": "object", "properties": {}, "required": []}, "sourceType": {"type": "string"}}, "required": ["ast", "code", "map", "metadata", "sourceType"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"ast" : null, "code" : "var log = Math.log; // `Math.log1p` method implementation\n// https://tc39.github.io/ecma262/#sec-math.log1p\n\nmodule.exports = Math.log1p || function log1p(x) {\n return (x = +x) > -1e-8 && x < 1e-8 ? x - x * x / 2 : log(1 + x);\n};", "map" : null, "metadata" : {}, "sourceType" : "script"} | json_instruct | {"type": "object", "properties": {"ast": {"type": "null"}, "code": {"type": "string"}, "map": {"type": "null"}, "metadata": {"type": "object", "properties": {}, "required": []}, "sourceType": {"type": "string"}}, "required": ["ast", "code", "map", "metadata", "sourceType"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"ident": {"type": "integer"}, "order": {"type": "integer"}, "objtype": {"type": "string"}, "properties": {"type": "object", "properties": {"bordercolor": {"type": "string"}, "designactive": {"type": "boolean"}, "edgefloat": {"type": "string"}, "effect": {"type": "string"}, "fieldstyle": {"type": "string"}, "height": {"type": "integer"}, "left": {"type": "integer"}, "linestyle": {"type": "integer"}, "objlink": {"type": "integer"}, "top": {"type": "integer"}, "userinfo": {"type": "string"}, "visible": {"type": "boolean"}, "width": {"type": "integer"}}, "required": ["bordercolor", "designactive", "edgefloat", "effect", "fieldstyle", "height", "left", "linestyle", "objlink", "top", "userinfo", "visible", "width"]}}, "required": ["ident", "order", "objtype", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"ident" : 1044, "order" : 16387, "objtype" : "kLine", "properties" : {"bordercolor" : "kColorFrame", "designactive" : true, "edgefloat" : "kEFnone", "effect" : "kBorderNone", "fieldstyle" : "", "height" : 328, "left" : 16, "linestyle" : 2, "objlink" : 0, "top" : 329, "userinfo" : "", "visible" : true, "width" : 685}} | json_instruct | {"type": "object", "properties": {"ident": {"type": "integer"}, "order": {"type": "integer"}, "objtype": {"type": "string"}, "properties": {"type": "object", "properties": {"bordercolor": {"type": "string"}, "designactive": {"type": "boolean"}, "edgefloat": {"type": "string"}, "effect": {"type": "string"}, "fieldstyle": {"type": "string"}, "height": {"type": "integer"}, "left": {"type": "integer"}, "linestyle": {"type": "integer"}, "objlink": {"type": "integer"}, "top": {"type": "integer"}, "userinfo": {"type": "string"}, "visible": {"type": "boolean"}, "width": {"type": "integer"}}, "required": ["bordercolor", "designactive", "edgefloat", "effect", "fieldstyle", "height", "left", "linestyle", "objlink", "top", "userinfo", "visible", "width"]}}, "required": ["ident", "order", "objtype", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"type": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["type", "coordinates"]}, "properties": {"type": "object", "properties": {"aclu_id": {"type": "string"}, "area_land": {"type": "integer"}, "area_water": {"type": "integer"}, "geoid": {"type": "string"}, "name": {"type": "string"}, "ocd_id": {"type": "string"}, "state": {"type": "string"}}, "required": ["aclu_id", "area_land", "area_water", "geoid", "name", "ocd_id", "state"]}, "id": {"type": "string"}}, "required": ["type", "geometry", "properties", "id"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"type" : "Feature", "geometry" : {"type" : "Polygon", "coordinates" : [[[-135.717307, 59.730043], [-135.632784, 59.754177], [-135.479161, 59.798041], [-135.430773, 59.773481], [-135.360109, 59.737615], [-135.284889, 59.710235], [-135.277524, 59.707352], [-135.252765, 59.698279], [-135.233668, 59.696143], [-135.219845, 59.662776], [-135.15759, 59.62572], [-135.117833, 59.62307], [-135.028903, 59.563659], [-135.027562, 59.474738], [-135.077281, 59.45177], [-135.10102, 59.427531], [-134.989745, 59.387129], [-135.030525, 59.346348], [-135.032603, 59.349994], [-135.079559, 59.35], [-135.092811, 59.349881], [-135.125182, 59.350005], [-135.226905, 59.350016], [-135.328564, 59.350028], [-135.361837, 59.350171], [-135.37502, 59.350033], [-135.407333, 59.385907], [-135.524239, 59.515697], [-135.635808, 59.639562], [-135.688978, 59.698592], [-135.717307, 59.730043]]]}, "properties" : {"aclu_id" : "aclu/elections-api/county:7596", "area_land" : 1124107036, "area_water" : 28607173, "geoid" : "02230", "name" : "Skagway", "ocd_id" : "ocd-division/country:us/state:ak/county:skagway", "state" : "ak"}, "id" : "aclu/elections-api/county:7596"} | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["type", "coordinates"]}, "properties": {"type": "object", "properties": {"aclu_id": {"type": "string"}, "area_land": {"type": "integer"}, "area_water": {"type": "integer"}, "geoid": {"type": "string"}, "name": {"type": "string"}, "ocd_id": {"type": "string"}, "state": {"type": "string"}}, "required": ["aclu_id", "area_land", "area_water", "geoid", "name", "ocd_id", "state"]}, "id": {"type": "string"}}, "required": ["type", "geometry", "properties", "id"], "$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" : "32feb7f0b03c7f820b10f50a8fbeae4a99b83d8d"} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}}, "required": ["id"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"LeafletStyleSheet.css": {"type": "string"}, "LeafletStyleSheet.min.css": {"type": "string"}, "PruneCluster.js": {"type": "string"}, "PruneCluster.min.js": {"type": "string"}}, "required": ["LeafletStyleSheet.css", "LeafletStyleSheet.min.css", "PruneCluster.js", "PruneCluster.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"LeafletStyleSheet.css" : "sha512-P8CCL50Ti0jhvdVYle38K5TaE0sL9m9H1Sj3GDGwwA14Qc96ydQLS1Ldq4AFPN5sKd+IWq7+1eyBDLuKR331kQ==", "LeafletStyleSheet.min.css" : "sha512-ZTsIKR9XmEgyAXmXVRpE+wvv2+72Kd0tBSieJGbe1oOydyEmRhzTWEIfpLAlC8IYxNhGq2eALt+G/kRgpqlzyA==", "PruneCluster.js" : "sha512-rW6GUQtBfvUa4LgLrUo3uT4+1CfxmDSZ1fTZgAa8FbNVsX0Il3JE+8TgTPdu3cRIHGY2GAcBBksZxZetHtQOVA==", "PruneCluster.min.js" : "sha512-TIhw+s9KAwyAGM7n2qG2hM+lvQxja1Hieb3nS3F2y9AFEDImo6SNXoooqmajF/D5lMfriBIasQ6N+pizlF0wTA=="} | json_instruct | {"type": "object", "properties": {"LeafletStyleSheet.css": {"type": "string"}, "LeafletStyleSheet.min.css": {"type": "string"}, "PruneCluster.js": {"type": "string"}, "PruneCluster.min.js": {"type": "string"}}, "required": ["LeafletStyleSheet.css", "LeafletStyleSheet.min.css", "PruneCluster.js", "PruneCluster.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "array", "items": {"type": "array", "items": {"type": "number"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [[426.9182295003482, 637.094188172174], [1260.9246643513618, 685.021218923383], [1282.1012345940453, 701.96247511753], [1305.395461860997, 704.0801321417982], [1347.7486023463641, 697.7271610689932], [1362.5722015162426, 685.021218923383], [1383.748771758926, 638.4327643894794], [1379.5134577103895, 615.1385371225274], [1377.395800686121, 579.1383677099655]] | json_instruct | {"type": "array", "items": {"type": "array", "items": {"type": "number"}}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"em": {"type": "array", "items": {"type": "object", "properties": {"location": {"type": "object", "properties": {"latitude": {"type": "number"}, "longitude": {"type": "number"}}, "required": ["latitude", "longitude"]}}, "required": ["location"]}}, "bites": {"type": "array", "items": {"type": "object", "properties": {"location": {"type": "object", "properties": {"latitude": {"type": "number"}, "longitude": {"type": "number"}}, "required": ["latitude", "longitude"]}}, "required": ["location"]}}, "other": {"type": "array", "items": {"type": "object", "properties": {"location": {"type": "object", "properties": {"latitude": {"type": "number"}, "longitude": {"type": "number"}}, "required": ["latitude", "longitude"]}}, "required": ["location"]}}, "fever": {"type": "array", "items": {}}}, "required": ["em", "bites", "other", "fever"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"em" : [{"location" : {"latitude" : 53.11, "longitude" : 6.68}}, {"location" : {"latitude" : 52.25, "longitude" : 5.13}}, {"location" : {"latitude" : 50.56, "longitude" : 15.27}}], "bites" : [{"location" : {"latitude" : 52.12, "longitude" : 4.37}}, {"location" : {"latitude" : 52.06, "longitude" : 5.73}}, {"location" : {"latitude" : 52.35, "longitude" : 4.55}}, {"location" : {"latitude" : 51.9, "longitude" : 4.07}}, {"location" : {"latitude" : 51.64, "longitude" : 4.36}}], "other" : [{"location" : {"latitude" : 50.01, "longitude" : 5.01}}], "fever" : []} | json_instruct | {"type": "object", "properties": {"em": {"type": "array", "items": {"type": "object", "properties": {"location": {"type": "object", "properties": {"latitude": {"type": "number"}, "longitude": {"type": "number"}}, "required": ["latitude", "longitude"]}}, "required": ["location"]}}, "bites": {"type": "array", "items": {"type": "object", "properties": {"location": {"type": "object", "properties": {"latitude": {"type": "number"}, "longitude": {"type": "number"}}, "required": ["latitude", "longitude"]}}, "required": ["location"]}}, "other": {"type": "array", "items": {"type": "object", "properties": {"location": {"type": "object", "properties": {"latitude": {"type": "number"}, "longitude": {"type": "number"}}, "required": ["latitude", "longitude"]}}, "required": ["location"]}}, "fever": {"type": "array", "items": {}}}, "required": ["em", "bites", "other", "fever"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"type": {"type": "string"}, "id": {"type": "string"}, "properties": {"type": "object", "properties": {"addr:city": {"type": "string"}, "addr:country": {"type": "string"}, "addr:housenumber": {"type": "string"}, "addr:postcode": {"type": "string"}, "addr:street": {"type": "string"}, "craft": {"type": "string"}, "entrance": {"type": "string"}, "name": {"type": "string"}, "operator": {"type": "string"}, "phone": {"type": "string"}, "id": {"type": "string"}}, "required": ["addr:city", "addr:country", "addr:housenumber", "addr:postcode", "addr:street", "craft", "entrance", "name", "operator", "phone", "id"]}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "number"}}}, "required": ["type", "coordinates"]}}, "required": ["type", "id", "properties", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"type" : "Feature", "id" : "node/7463813165", "properties" : {"addr:city" : "Wilsdruff", "addr:country" : "DE", "addr:housenumber" : "1", "addr:postcode" : "01723", "addr:street" : "Am Ehrenfriedhof", "craft" : "beekeeper", "entrance" : "main", "name" : "Imkerei Mehlhorn", "operator" : "Mehlhorn", "phone" : "+49 174 2059471", "id" : "node/7463813165"}, "geometry" : {"type" : "Point", "coordinates" : [13.5409584, 51.0519466]}} | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "id": {"type": "string"}, "properties": {"type": "object", "properties": {"addr:city": {"type": "string"}, "addr:country": {"type": "string"}, "addr:housenumber": {"type": "string"}, "addr:postcode": {"type": "string"}, "addr:street": {"type": "string"}, "craft": {"type": "string"}, "entrance": {"type": "string"}, "name": {"type": "string"}, "operator": {"type": "string"}, "phone": {"type": "string"}, "id": {"type": "string"}}, "required": ["addr:city", "addr:country", "addr:housenumber", "addr:postcode", "addr:street", "craft", "entrance", "name", "operator", "phone", "id"]}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "number"}}}, "required": ["type", "coordinates"]}}, "required": ["type", "id", "properties", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"vendor": {"type": "string"}, "filename": {"type": "string"}, "release_type": {"type": "string"}, "version": {"type": "string"}, "java_version": {"type": "string"}, "jvm_impl": {"type": "string"}, "os": {"type": "string"}, "architecture": {"type": "string"}, "file_type": {"type": "string"}, "image_type": {"type": "string"}, "features": {"type": "array", "items": {"type": "string"}}, "url": {"type": "string"}, "md5": {"type": "string"}, "md5_file": {"type": "string"}, "sha1": {"type": "string"}, "sha1_file": {"type": "string"}, "sha256": {"type": "string"}, "sha256_file": {"type": "string"}, "sha512": {"type": "string"}, "sha512_file": {"type": "string"}, "size": {"type": "integer"}}, "required": ["vendor", "filename", "release_type", "version", "java_version", "jvm_impl", "os", "architecture", "file_type", "image_type", "features", "url", "md5", "md5_file", "sha1", "sha1_file", "sha256", "sha256_file", "sha512", "sha512_file", "size"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"vendor" : "liberica", "filename" : "bellsoft-jdk11.0.9+12-windows-i586-full.zip", "release_type" : "ga", "version" : "11.0.9+12", "java_version" : "11.0.9+12", "jvm_impl" : "hotspot", "os" : "windows", "architecture" : "i686", "file_type" : "zip", "image_type" : "jdk", "features" : ["libericafx", "minimal-vm", "javafx"], "url" : "https://github.com/bell-sw/Liberica/releases/download/11.0.9+12/bellsoft-jdk11.0.9+12-windows-i586-full.zip", "md5" : "0e0afa0bbb4fbce0522fb2672a089bb4", "md5_file" : "bellsoft-jdk11.0.9+12-windows-i586-full.zip.md5", "sha1" : "0ce06fd5c32048bb4bac27cf604eaebd1f9db53c", "sha1_file" : "bellsoft-jdk11.0.9+12-windows-i586-full.zip.sha1", "sha256" : "1f84494696f910be290e98e010c19239c68af41b3567d7e97099d4b05bf5b304", "sha256_file" : "bellsoft-jdk11.0.9+12-windows-i586-full.zip.sha256", "sha512" : "5ae352bda7acb5d8bd3db56c5af04a72268530d69aa37e5ae6139a7e0a0423313436252048501203604fe08a9e8fd810008583a4c845f0e770cd8ac50cef8bda", "sha512_file" : "bellsoft-jdk11.0.9+12-windows-i586-full.zip.sha512", "size" : 244115265} | json_instruct | {"type": "object", "properties": {"vendor": {"type": "string"}, "filename": {"type": "string"}, "release_type": {"type": "string"}, "version": {"type": "string"}, "java_version": {"type": "string"}, "jvm_impl": {"type": "string"}, "os": {"type": "string"}, "architecture": {"type": "string"}, "file_type": {"type": "string"}, "image_type": {"type": "string"}, "features": {"type": "array", "items": {"type": "string"}}, "url": {"type": "string"}, "md5": {"type": "string"}, "md5_file": {"type": "string"}, "sha1": {"type": "string"}, "sha1_file": {"type": "string"}, "sha256": {"type": "string"}, "sha256_file": {"type": "string"}, "sha512": {"type": "string"}, "sha512_file": {"type": "string"}, "size": {"type": "integer"}}, "required": ["vendor", "filename", "release_type", "version", "java_version", "jvm_impl", "os", "architecture", "file_type", "image_type", "features", "url", "md5", "md5_file", "sha1", "sha1_file", "sha256", "sha256_file", "sha512", "sha512_file", "size"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"id": {"type": "integer"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"src:alt_label": {"type": "string"}, "src:geom": {"type": "string"}, "wof:geomhash": {"type": "string"}, "wof:id": {"type": "integer"}, "wof:repo": {"type": "string"}}, "required": ["src:alt_label", "src:geom", "wof:geomhash", "wof:id", "wof:repo"]}, "bbox": {"type": "array", "items": {"type": "number"}}, "geometry": {"type": "object", "properties": {"coordinates": {"type": "array", "items": {"type": "number"}}, "type": {"type": "string"}}, "required": ["coordinates", "type"]}}, "required": ["id", "type", "properties", "bbox", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : 101838831, "type" : "Feature", "properties" : {"src:alt_label" : "quattroshapes_pg", "src:geom" : "quattroshapes_pg", "wof:geomhash" : "131db1980d9a7fc78a647bf70c110464", "wof:id" : 101838831, "wof:repo" : "whosonfirst-data-admin-be"}, "bbox" : [5.21855, 51.08646, 5.21855, 51.08646], "geometry" : {"coordinates" : [5.21855, 51.08646], "type" : "Point"}} | json_instruct | {"type": "object", "properties": {"id": {"type": "integer"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"src:alt_label": {"type": "string"}, "src:geom": {"type": "string"}, "wof:geomhash": {"type": "string"}, "wof:id": {"type": "integer"}, "wof:repo": {"type": "string"}}, "required": ["src:alt_label", "src:geom", "wof:geomhash", "wof:id", "wof:repo"]}, "bbox": {"type": "array", "items": {"type": "number"}}, "geometry": {"type": "object", "properties": {"coordinates": {"type": "array", "items": {"type": "number"}}, "type": {"type": "string"}}, "required": ["coordinates", "type"]}}, "required": ["id", "type", "properties", "bbox", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "version": {"type": "string"}, "main": {"type": "string"}, "types": {"type": "string"}, "scripts": {"type": "object", "properties": {"clean": {"type": "string"}, "compile": {"type": "string"}, "compile:watch": {"type": "string"}, "test": {"type": "string"}, "prepublishOnly": {"type": "string"}}, "required": ["clean", "compile", "compile:watch", "test", "prepublishOnly"]}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "license": {"type": "string"}, "author": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "dependencies": {"type": "object", "properties": {"aborter": {"type": "string"}, "colorette": {"type": "string"}, "semver-compare": {"type": "string"}, "signal-exit": {"type": "string"}, "simple-get": {"type": "string"}}, "required": ["aborter", "colorette", "semver-compare", "signal-exit", "simple-get"]}, "devDependencies": {"type": "object", "properties": {"@types/node": {"type": "string"}, "@types/semver-compare": {"type": "string"}, "@types/signal-exit": {"type": "string"}, "rimraf": {"type": "string"}, "typescript": {"type": "string"}, "typescript-transform-export-interop": {"type": "string"}}, "required": ["@types/node", "@types/semver-compare", "@types/signal-exit", "rimraf", "typescript", "typescript-transform-export-interop"]}}, "required": ["name", "description", "version", "main", "types", "scripts", "bugs", "license", "author", "repository", "keywords", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "tiny-updater", "description" : "The smallest update notifier for NPM packages, useful for CLI apps.", "version" : "1.0.1", "main" : "dist/index.js", "types" : "dist/index.d.ts", "scripts" : {"clean" : "rimraf dist", "compile" : "tsc --skipLibCheck && tstei", "compile:watch" : "tsc --skipLibCheck --watch", "test" : "node test/index.js", "prepublishOnly" : "npm run clean && npm run compile && npm run test"}, "bugs" : {"url" : "https://github.com/fabiospampinato/tiny-updater/issues"}, "license" : "MIT", "author" : {"name" : "Fabio Spampinato", "email" : "[email protected]"}, "repository" : {"type" : "git", "url" : "https://github.com/fabiospampinato/tiny-updater.git"}, "keywords" : ["tiny", "npm", "update", "notify", "notifier", "update", "updater"], "dependencies" : {"aborter" : "^1.0.0", "colorette" : "^1.2.2", "semver-compare" : "^1.0.0", "signal-exit" : "^3.0.3", "simple-get" : "^4.0.0"}, "devDependencies" : {"@types/node" : "^16.11.7", "@types/semver-compare" : "^1.0.1", "@types/signal-exit" : "^3.0.0", "rimraf" : "^3.0.0", "typescript" : "^3.5.3", "typescript-transform-export-interop" : "^1.0.2"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "version": {"type": "string"}, "main": {"type": "string"}, "types": {"type": "string"}, "scripts": {"type": "object", "properties": {"clean": {"type": "string"}, "compile": {"type": "string"}, "compile:watch": {"type": "string"}, "test": {"type": "string"}, "prepublishOnly": {"type": "string"}}, "required": ["clean", "compile", "compile:watch", "test", "prepublishOnly"]}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "license": {"type": "string"}, "author": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "dependencies": {"type": "object", "properties": {"aborter": {"type": "string"}, "colorette": {"type": "string"}, "semver-compare": {"type": "string"}, "signal-exit": {"type": "string"}, "simple-get": {"type": "string"}}, "required": ["aborter", "colorette", "semver-compare", "signal-exit", "simple-get"]}, "devDependencies": {"type": "object", "properties": {"@types/node": {"type": "string"}, "@types/semver-compare": {"type": "string"}, "@types/signal-exit": {"type": "string"}, "rimraf": {"type": "string"}, "typescript": {"type": "string"}, "typescript-transform-export-interop": {"type": "string"}}, "required": ["@types/node", "@types/semver-compare", "@types/signal-exit", "rimraf", "typescript", "typescript-transform-export-interop"]}}, "required": ["name", "description", "version", "main", "types", "scripts", "bugs", "license", "author", "repository", "keywords", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"file_name": {"type": "string"}, "guid": {"type": "object", "properties": {"a": {"type": "integer"}, "b": {"type": "integer"}, "c": {"type": "integer"}, "d": {"type": "integer"}}, "required": ["a", "b", "c", "d"]}, "exports": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "class": {"type": "object", "properties": {"package": {"type": "string"}, "name": {"type": "string"}}, "required": ["package", "name"]}, "super": {"type": "null"}, "template": {"type": "object", "properties": {"package": {"type": "string"}, "name": {"type": "string"}}, "required": ["package", "name"]}, "outer": {"type": "null"}, "properties": {"type": "object", "properties": {"FunctionExpressions": {"type": "object", "properties": {"type": {"type": "string"}, "value": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "value": {"type": "null"}}, "required": ["type", "value"]}}}, "required": ["type", "value"]}, "StateId": {"type": "object", "properties": {"type": {"type": "string"}, "value": {"type": "object", "properties": {"a": {"type": "integer"}, "b": {"type": "integer"}, "c": {"type": "integer"}, "d": {"type": "integer"}}, "required": ["a", "b", "c", "d"]}}, "required": ["type", "value"]}, "bExposeToLibrary": {"type": "object", "properties": {"type": {"type": "string"}, "value": {"type": "boolean"}}, "required": ["type", "value"]}}, "required": ["FunctionExpressions", "StateId", "bExposeToLibrary"]}}, "required": ["name", "class", "super", "template", "outer", "properties"]}}}, "required": ["file_name", "guid", "exports"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"file_name" : "FactoryGame/Content/FactoryGame/-Shared/Material/MaterialFunction/DistanceFade.uasset", "guid" : {"a" : 2073905161, "b" : 1104000884, "c" : 4066589855, "d" : 3077106459}, "exports" : [{"name" : "DistanceFade", "class" : {"package" : "/Script/Engine", "name" : "MaterialFunction"}, "super" : null, "template" : {"package" : "/Script/Engine", "name" : "Default__MaterialFunction"}, "outer" : null, "properties" : {"FunctionExpressions" : {"type" : "ArrayProperty", "value" : [{"type" : "reference", "value" : null}, {"type" : "reference", "value" : null}, {"type" : "reference", "value" : null}, {"type" : "reference", "value" : null}, {"type" : "reference", "value" : null}, {"type" : "reference", "value" : null}, {"type" : "reference", "value" : null}, {"type" : "reference", "value" : null}, {"type" : "reference", "value" : null}]}, "StateId" : {"type" : "Guid", "value" : {"a" : 1072325641, "b" : 1184003364, "c" : 462736518, "d" : 928094158}}, "bExposeToLibrary" : {"type" : "BoolProperty", "value" : true}}}]} | json_instruct | {"type": "object", "properties": {"file_name": {"type": "string"}, "guid": {"type": "object", "properties": {"a": {"type": "integer"}, "b": {"type": "integer"}, "c": {"type": "integer"}, "d": {"type": "integer"}}, "required": ["a", "b", "c", "d"]}, "exports": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "class": {"type": "object", "properties": {"package": {"type": "string"}, "name": {"type": "string"}}, "required": ["package", "name"]}, "super": {"type": "null"}, "template": {"type": "object", "properties": {"package": {"type": "string"}, "name": {"type": "string"}}, "required": ["package", "name"]}, "outer": {"type": "null"}, "properties": {"type": "object", "properties": {"FunctionExpressions": {"type": "object", "properties": {"type": {"type": "string"}, "value": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "value": {"type": "null"}}, "required": ["type", "value"]}}}, "required": ["type", "value"]}, "StateId": {"type": "object", "properties": {"type": {"type": "string"}, "value": {"type": "object", "properties": {"a": {"type": "integer"}, "b": {"type": "integer"}, "c": {"type": "integer"}, "d": {"type": "integer"}}, "required": ["a", "b", "c", "d"]}}, "required": ["type", "value"]}, "bExposeToLibrary": {"type": "object", "properties": {"type": {"type": "string"}, "value": {"type": "boolean"}}, "required": ["type", "value"]}}, "required": ["FunctionExpressions", "StateId", "bExposeToLibrary"]}}, "required": ["name", "class", "super", "template", "outer", "properties"]}}}, "required": ["file_name", "guid", "exports"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"mainALGO": {"type": "string"}}, "required": ["mainALGO"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"mainALGO" : "search = (text, pattern) ->\n lengthText = text.length\n lengthPattern = pattern.length\n\n for i in [0...lengthText - lengthPattern]\n j = 0\n\n while j < lengthPattern\n break if text[i + j] isnt pattern[j]\n\n j += 1\n\n if j is lengthPattern\n console.log \"Pattern found at \" + (i + 1)\n\n 0 # Return 0\n\ntext = \"namanchamanbomanamansanam\"\npattern = \"aman\"\nsearch text, pattern\n\n\n### Output\n\nPattern found at 2\nPattern found at 8\nPattern found at 17\n\n###"} | json_instruct | {"type": "object", "properties": {"mainALGO": {"type": "string"}}, "required": ["mainALGO"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"retroperitoneal_lymph_node": {"type": "object", "properties": {"accuracy": {"type": "number"}, "roc_auc": {"type": "number"}, "recall": {"type": "number"}, "precision": {"type": "number"}, "f1_score": {"type": "number"}, "negative_recall": {"type": "number"}, "negative_precision": {"type": "number"}, "negative_f1_score": {"type": "number"}}, "required": ["accuracy", "roc_auc", "recall", "precision", "f1_score", "negative_recall", "negative_precision", "negative_f1_score"]}}, "required": ["retroperitoneal_lymph_node"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"retroperitoneal_lymph_node" : {"accuracy" : 0.9125, "roc_auc" : 0.8055064882125145, "recall" : 0.3170731707317073, "precision" : 0.65, "f1_score" : 0.42622950819672134, "negative_recall" : 0.9805013927576601, "negative_precision" : 0.9263157894736842, "negative_f1_score" : 0.9526387009472259}} | json_instruct | {"type": "object", "properties": {"retroperitoneal_lymph_node": {"type": "object", "properties": {"accuracy": {"type": "number"}, "roc_auc": {"type": "number"}, "recall": {"type": "number"}, "precision": {"type": "number"}, "f1_score": {"type": "number"}, "negative_recall": {"type": "number"}, "negative_precision": {"type": "number"}, "negative_f1_score": {"type": "number"}}, "required": ["accuracy", "roc_auc", "recall", "precision", "f1_score", "negative_recall", "negative_precision", "negative_f1_score"]}}, "required": ["retroperitoneal_lymph_node"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["type", "coordinates"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"type" : "Polygon", "coordinates" : [[[-2.191353676, 53.435111933], [-2.213429135, 53.418898763], [-2.212596095, 53.406951769], [-2.239525602, 53.400690508], [-2.244794274, 53.403587594], [-2.239544561, 53.411538726], [-2.253715346, 53.409434026], [-2.251553358, 53.422118729], [-2.263477568, 53.416123695], [-2.3002012, 53.436264846], [-2.286212122, 53.449104501], [-2.271466066, 53.450715225], [-2.273057537, 53.442471844], [-2.265018182, 53.438829], [-2.22304604, 53.441719253], [-2.191353676, 53.435111933]]]} | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["type", "coordinates"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"user": {"type": "string"}, "repos": {"type": "integer"}, "login": {"type": "string"}, "id": {"type": "integer"}, "avatar_url": {"type": "string"}, "url": {"type": "string"}, "html_url": {"type": "string"}, "followers_url": {"type": "string"}, "following_url": {"type": "string"}, "gists_url": {"type": "string"}, "starred_url": {"type": "string"}, "subscriptions_url": {"type": "string"}, "organizations_url": {"type": "string"}, "repos_url": {"type": "string"}, "events_url": {"type": "string"}, "received_events_url": {"type": "string"}, "type": {"type": "string"}, "site_admin": {"type": "boolean"}, "name": {"type": "string"}, "company": {"type": "string"}, "blog": {"type": "null"}, "location": {"type": "string"}, "email": {"type": "null"}, "hireable": {"type": "boolean"}, "bio": {"type": "string"}, "public_repos": {"type": "integer"}, "public_gists": {"type": "integer"}, "followers": {"type": "integer"}, "following": {"type": "integer"}, "created_at": {"type": "string"}, "updated_at": {"type": "string"}}, "required": ["user", "repos", "login", "id", "avatar_url", "url", "html_url", "followers_url", "following_url", "gists_url", "starred_url", "subscriptions_url", "organizations_url", "repos_url", "events_url", "received_events_url", "type", "site_admin", "name", "company", "blog", "location", "email", "hireable", "bio", "public_repos", "public_gists", "followers", "following", "created_at", "updated_at"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"user" : "azl397985856", "repos" : 1, "login" : "azl397985856", "id" : 12479470, "avatar_url" : "https://avatars2.githubusercontent.com/u/12479470?v=3", "url" : "https://api.github.com/users/azl397985856", "html_url" : "https://github.com/azl397985856", "followers_url" : "https://api.github.com/users/azl397985856/followers", "following_url" : "https://api.github.com/users/azl397985856/following{/other_user}", "gists_url" : "https://api.github.com/users/azl397985856/gists{/gist_id}", "starred_url" : "https://api.github.com/users/azl397985856/starred{/owner}{/repo}", "subscriptions_url" : "https://api.github.com/users/azl397985856/subscriptions", "organizations_url" : "https://api.github.com/users/azl397985856/orgs", "repos_url" : "https://api.github.com/users/azl397985856/repos", "events_url" : "https://api.github.com/users/azl397985856/events{/privacy}", "received_events_url" : "https://api.github.com/users/azl397985856/received_events", "type" : "User", "site_admin" : false, "name" : "arida", "company" : "BestLogistic", "blog" : null, "location" : "Hangzhou", "email" : null, "hireable" : true, "bio" : "deep thinking make you wise", "public_repos" : 25, "public_gists" : 2, "followers" : 3, "following" : 0, "created_at" : "2015-05-17T03:29:38Z", "updated_at" : "2017-02-28T13:03:16Z"} | json_instruct | {"type": "object", "properties": {"user": {"type": "string"}, "repos": {"type": "integer"}, "login": {"type": "string"}, "id": {"type": "integer"}, "avatar_url": {"type": "string"}, "url": {"type": "string"}, "html_url": {"type": "string"}, "followers_url": {"type": "string"}, "following_url": {"type": "string"}, "gists_url": {"type": "string"}, "starred_url": {"type": "string"}, "subscriptions_url": {"type": "string"}, "organizations_url": {"type": "string"}, "repos_url": {"type": "string"}, "events_url": {"type": "string"}, "received_events_url": {"type": "string"}, "type": {"type": "string"}, "site_admin": {"type": "boolean"}, "name": {"type": "string"}, "company": {"type": "string"}, "blog": {"type": "null"}, "location": {"type": "string"}, "email": {"type": "null"}, "hireable": {"type": "boolean"}, "bio": {"type": "string"}, "public_repos": {"type": "integer"}, "public_gists": {"type": "integer"}, "followers": {"type": "integer"}, "following": {"type": "integer"}, "created_at": {"type": "string"}, "updated_at": {"type": "string"}}, "required": ["user", "repos", "login", "id", "avatar_url", "url", "html_url", "followers_url", "following_url", "gists_url", "starred_url", "subscriptions_url", "organizations_url", "repos_url", "events_url", "received_events_url", "type", "site_admin", "name", "company", "blog", "location", "email", "hireable", "bio", "public_repos", "public_gists", "followers", "following", "created_at", "updated_at"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "description": {"type": "string"}, "user": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "email": {"type": "string"}, "paypal_email": {"type": "null"}, "homepage": {"type": "null"}, "about": {"type": "null"}, "license": {"type": "null"}}, "required": ["id", "name", "email", "paypal_email", "homepage", "about", "license"]}, "updated": {"type": "string"}, "weekly_install_count": {"type": "integer"}, "total_install_count": {"type": "integer"}, "rating": {"type": "null"}, "after_screenshot_name": {"type": "string"}, "obsoleting_style_id": {"type": "null"}, "obsoleting_style_name": {"type": "null"}, "obsolete": {"type": "integer"}, "admin_delete_reason_id": {"type": "null"}, "obsoletion_message": {"type": "null"}, "screenshots": {"type": "null"}, "license": {"type": "string"}, "created": {"type": "string"}, "category": {"type": "string"}, "raw_subcategory": {"type": "string"}, "subcategory": {"type": "string"}, "additional_info": {"type": "string"}, "style_tags": {"type": "array", "items": {}}, "css": {"type": "string"}, "discussions": {"type": "array", "items": {}}, "discussionsCount": {"type": "integer"}, "commentsCount": {"type": "integer"}, "userjs_url": {"type": "string"}, "style_settings": {"type": "array", "items": {}}}, "required": ["id", "name", "description", "user", "updated", "weekly_install_count", "total_install_count", "rating", "after_screenshot_name", "obsoleting_style_id", "obsoleting_style_name", "obsolete", "admin_delete_reason_id", "obsoletion_message", "screenshots", "license", "created", "category", "raw_subcategory", "subcategory", "additional_info", "style_tags", "css", "discussions", "discussionsCount", "commentsCount", "userjs_url", "style_settings"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : 125739, "name" : "Information.dk - with black text in article body", "description" : "Information.dk - with black text in article body\r\nto enhance contrast.\r\n\r\nalso added text-align:justify in body of articles and increased font-size", "user" : {"id" : 322628, "name" : "sunemi", "email" : "redacted", "paypal_email" : null, "homepage" : null, "about" : null, "license" : null}, "updated" : "2016-03-19T13:45:36.000Z", "weekly_install_count" : 0, "total_install_count" : 17, "rating" : null, "after_screenshot_name" : "https://userstyles.org/auto_style_screenshots/125739-after.png?r=1511481938", "obsoleting_style_id" : null, "obsoleting_style_name" : null, "obsolete" : 0, "admin_delete_reason_id" : null, "obsoletion_message" : null, "screenshots" : null, "license" : "publicdomain", "created" : "2016-03-19T12:48:11.000Z", "category" : "site", "raw_subcategory" : "information", "subcategory" : "information", "additional_info" : "v 1.1", "style_tags" : [], "css" : "@-moz-document domain(information.dk) {\r\narticle.view-mode-full .field-name-body p {\r\n color: #000000 !important;\r\n text-align: justify;\r\n font-size: 20px !important;\r\n}\r\narticle.view-mode-full .field-name-body h4 {\r\n font-size: 24px !important;\r\n}\r\n}", "discussions" : [], "discussionsCount" : 0, "commentsCount" : 0, "userjs_url" : "/styles/userjs/125739/information-dk-with-black-text-in-article-body.user.js", "style_settings" : []} | json_instruct | {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "description": {"type": "string"}, "user": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "email": {"type": "string"}, "paypal_email": {"type": "null"}, "homepage": {"type": "null"}, "about": {"type": "null"}, "license": {"type": "null"}}, "required": ["id", "name", "email", "paypal_email", "homepage", "about", "license"]}, "updated": {"type": "string"}, "weekly_install_count": {"type": "integer"}, "total_install_count": {"type": "integer"}, "rating": {"type": "null"}, "after_screenshot_name": {"type": "string"}, "obsoleting_style_id": {"type": "null"}, "obsoleting_style_name": {"type": "null"}, "obsolete": {"type": "integer"}, "admin_delete_reason_id": {"type": "null"}, "obsoletion_message": {"type": "null"}, "screenshots": {"type": "null"}, "license": {"type": "string"}, "created": {"type": "string"}, "category": {"type": "string"}, "raw_subcategory": {"type": "string"}, "subcategory": {"type": "string"}, "additional_info": {"type": "string"}, "style_tags": {"type": "array", "items": {}}, "css": {"type": "string"}, "discussions": {"type": "array", "items": {}}, "discussionsCount": {"type": "integer"}, "commentsCount": {"type": "integer"}, "userjs_url": {"type": "string"}, "style_settings": {"type": "array", "items": {}}}, "required": ["id", "name", "description", "user", "updated", "weekly_install_count", "total_install_count", "rating", "after_screenshot_name", "obsoleting_style_id", "obsoleting_style_name", "obsolete", "admin_delete_reason_id", "obsoletion_message", "screenshots", "license", "created", "category", "raw_subcategory", "subcategory", "additional_info", "style_tags", "css", "discussions", "discussionsCount", "commentsCount", "userjs_url", "style_settings"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"os": {"type": "string"}, "python": {"type": "string"}, "heartbeatAt": {"type": "string"}, "startedAt": {"type": "string"}, "docker": {"type": "null"}, "gpu": {"type": "string"}, "gpu_count": {"type": "integer"}, "cpu_count": {"type": "integer"}, "cuda": {"type": "null"}, "args": {"type": "array", "items": {}}, "state": {"type": "string"}, "program": {"type": "string"}, "codePath": {"type": "string"}, "git": {"type": "object", "properties": {"remote": {"type": "string"}, "commit": {"type": "string"}}, "required": ["remote", "commit"]}, "email": {"type": "string"}, "root": {"type": "string"}, "host": {"type": "string"}, "username": {"type": "string"}, "executable": {"type": "string"}}, "required": ["os", "python", "heartbeatAt", "startedAt", "docker", "gpu", "gpu_count", "cpu_count", "cuda", "args", "state", "program", "codePath", "git", "email", "root", "host", "username", "executable"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"os" : "Windows-10-10.0.19041-SP0", "python" : "3.8.7", "heartbeatAt" : "2021-11-23T01:57:23.451856", "startedAt" : "2021-11-23T01:57:19.420636", "docker" : null, "gpu" : "GeForce GTX 950M", "gpu_count" : 1, "cpu_count" : 4, "cuda" : null, "args" : [], "state" : "running", "program" : "src/models/train_model_track_WNB.py", "codePath" : "src\\models\\train_model_track_WNB.py", "git" : {"remote" : "https://github.com/ashishtele/churn_model.git", "commit" : "d038a1a90c4c12ed86ce7b3b3e372f105bbc179c"}, "email" : "[email protected]", "root" : "C:/Users/ashis/OneDrive/Desktop/MLOps/churn_model", "host" : "DESKTOP-GI2PLS2", "username" : "ashis", "executable" : "C:\\Users\\ashis\\AppData\\Local\\Programs\\Python\\Python38\\python.exe"} | json_instruct | {"type": "object", "properties": {"os": {"type": "string"}, "python": {"type": "string"}, "heartbeatAt": {"type": "string"}, "startedAt": {"type": "string"}, "docker": {"type": "null"}, "gpu": {"type": "string"}, "gpu_count": {"type": "integer"}, "cpu_count": {"type": "integer"}, "cuda": {"type": "null"}, "args": {"type": "array", "items": {}}, "state": {"type": "string"}, "program": {"type": "string"}, "codePath": {"type": "string"}, "git": {"type": "object", "properties": {"remote": {"type": "string"}, "commit": {"type": "string"}}, "required": ["remote", "commit"]}, "email": {"type": "string"}, "root": {"type": "string"}, "host": {"type": "string"}, "username": {"type": "string"}, "executable": {"type": "string"}}, "required": ["os", "python", "heartbeatAt", "startedAt", "docker", "gpu", "gpu_count", "cpu_count", "cuda", "args", "state", "program", "codePath", "git", "email", "root", "host", "username", "executable"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"name": {"type": "string"}, "autoload": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"Tuleap\\Docman\\": {"type": "string"}}, "required": ["Tuleap\\Docman\\"]}, "classmap": {"type": "array", "items": {"type": "string"}}, "files": {"type": "array", "items": {"type": "string"}}}, "required": ["psr-4", "classmap", "files"]}, "autoload-dev": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"Tuleap\\Docman\\Tests\\Stub\\": {"type": "string"}, "Tuleap\\Docman\\Test\\rest\\": {"type": "array", "items": {"type": "string"}}}, "required": ["Tuleap\\Docman\\Tests\\Stub\\", "Tuleap\\Docman\\Test\\rest\\"]}}, "required": ["psr-4"]}, "config": {"type": "object", "properties": {"sort-packages": {"type": "boolean"}}, "required": ["sort-packages"]}, "tuleap": {"type": "object", "properties": {"preload": {"type": "object", "properties": {"include": {"type": "array", "items": {"type": "string"}}, "exclude": {"type": "array", "items": {"type": "string"}}}, "required": ["include", "exclude"]}}, "required": ["preload"]}}, "required": ["name", "autoload", "autoload-dev", "config", "tuleap"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "tuleap/plugin-docman", "autoload" : {"psr-4" : {"Tuleap\\Docman\\" : "include/"}, "classmap" : ["include/"], "files" : ["include/constants.php"]}, "autoload-dev" : {"psr-4" : {"Tuleap\\Docman\\Tests\\Stub\\" : "tests/unit/Stubs", "Tuleap\\Docman\\Test\\rest\\" : ["./tests/rest/"]}}, "config" : {"sort-packages" : true}, "tuleap" : {"preload" : {"include" : ["/include"], "exclude" : ["/include/REST/v1/Metadata/ProjectConfiguredMetadataRepresentation.php", "/include/REST/v1/Metadata/ItemStatusMapper.php", "/include/REST/v1/Metadata/PUTMetadataRepresentation.php", "/include/REST/v1/Metadata/PUTRecursiveStatusRepresentation.php", "/include/REST/v1/EmbeddedFiles/DocmanEmbeddedFilesPATCHRepresentation.php", "/include/REST/v1/Files/DocmanFilesPATCHRepresentation.php", "/include/REST/v1/Links/DocmanLinkPATCHRepresentation.php", "/include/REST/v1/Wiki/DocmanWikiPATCHRepresentation.php", "/include/Docman_Sample.php"]}}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "autoload": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"Tuleap\\Docman\\": {"type": "string"}}, "required": ["Tuleap\\Docman\\"]}, "classmap": {"type": "array", "items": {"type": "string"}}, "files": {"type": "array", "items": {"type": "string"}}}, "required": ["psr-4", "classmap", "files"]}, "autoload-dev": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"Tuleap\\Docman\\Tests\\Stub\\": {"type": "string"}, "Tuleap\\Docman\\Test\\rest\\": {"type": "array", "items": {"type": "string"}}}, "required": ["Tuleap\\Docman\\Tests\\Stub\\", "Tuleap\\Docman\\Test\\rest\\"]}}, "required": ["psr-4"]}, "config": {"type": "object", "properties": {"sort-packages": {"type": "boolean"}}, "required": ["sort-packages"]}, "tuleap": {"type": "object", "properties": {"preload": {"type": "object", "properties": {"include": {"type": "array", "items": {"type": "string"}}, "exclude": {"type": "array", "items": {"type": "string"}}}, "required": ["include", "exclude"]}}, "required": ["preload"]}}, "required": ["name", "autoload", "autoload-dev", "config", "tuleap"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"generated_at": {"type": "string"}, "required_by": {"type": "array", "items": {"type": "string"}}, "requires": {"type": "array", "items": {"type": "string"}}, "package": {"type": "string"}}, "required": ["generated_at", "required_by", "requires", "package"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"generated_at" : "2017-01-27T09:37:31.561657", "required_by" : ["bitlyclip", "pelican.bitly", "django-emailpost"], "requires" : ["setuptools"], "package" : "bitlyapi"} | json_instruct | {"type": "object", "properties": {"generated_at": {"type": "string"}, "required_by": {"type": "array", "items": {"type": "string"}}, "requires": {"type": "array", "items": {"type": "string"}}, "package": {"type": "string"}}, "required": ["generated_at", "required_by", "requires", "package"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"version": {"type": "number"}, "people": {"type": "array", "items": {"type": "object", "properties": {"face_keypoints": {"type": "array", "items": {}}, "pose_keypoints": {"type": "array", "items": {"type": "number"}}, "hand_right_keypoints": {"type": "array", "items": {}}, "hand_left_keypoints": {"type": "array", "items": {}}}, "required": ["face_keypoints", "pose_keypoints", "hand_right_keypoints", "hand_left_keypoints"]}}}, "required": ["version", "people"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"version" : 1.0, "people" : [{"face_keypoints" : [], "pose_keypoints" : [90.9606299212598, 35.84, 0.916283905506134, 92.2204724409449, 75.6363636363636, 0.721890993416309, 51.6535433070866, 73.7745454545455, 0.652543574571609, 38.2992125984252, 141.032727272727, 0.358002366672736, 35.2755905511811, 202.938181818182, 0.740289866924286, 131.779527559055, 77.2654545454545, 0.660540215671062, 140.346456692913, 151.505454545455, 0.527674682438374, 151.433070866142, 199.214545454545, 0.716156855225563, 62.488188976378, 201.309090909091, 0.251239330042154, 0, 0, 0, 0, 0, 0, 117.669291338583, 202.705454545455, 0.301723338430747, 0, 0, 0, 0, 0, 0, 82.3937007874016, 27.6945454545455, 0.938174426555634, 99.0236220472441, 26.7636363636364, 0.945549339056015, 72.8188976377953, 31.8836363636364, 0.909286230802536, 111.370078740157, 28.3927272727273, 0.937077149748802], "hand_right_keypoints" : [], "hand_left_keypoints" : []}]} | json_instruct | {"type": "object", "properties": {"version": {"type": "number"}, "people": {"type": "array", "items": {"type": "object", "properties": {"face_keypoints": {"type": "array", "items": {}}, "pose_keypoints": {"type": "array", "items": {"type": "number"}}, "hand_right_keypoints": {"type": "array", "items": {}}, "hand_left_keypoints": {"type": "array", "items": {}}}, "required": ["face_keypoints", "pose_keypoints", "hand_right_keypoints", "hand_left_keypoints"]}}}, "required": ["version", "people"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"zingchart-react.js": {"type": "string"}, "zingchart-react.min.js": {"type": "string"}}, "required": ["zingchart-react.js", "zingchart-react.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"zingchart-react.js" : "sha512-yCYQPo57zjEHl6ebaBVVmL62P0MkUJye/T17d0ytb6VyWwZfbOiJDvPWFTHb/0efXucfy4S4rZzwLzIKGYD+FQ==", "zingchart-react.min.js" : "sha512-KoP1/+GukenpPypNYEEpuYRvWfmFw0IHsfB0vBxgJ/+v8Vq1R3eZDyUF1+LN7Wgqrrtmbvk433HuFWE1DX7r6Q=="} | json_instruct | {"type": "object", "properties": {"zingchart-react.js": {"type": "string"}, "zingchart-react.min.js": {"type": "string"}}, "required": ["zingchart-react.js", "zingchart-react.min.js"], "$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": {"icon": {"type": "string"}, "title": {"type": "string"}, "subtitle": {"type": "string"}, "period": {"type": "string"}, "location": {"type": "string"}, "specialization": {"type": "string"}}, "required": ["icon", "title", "subtitle", "period", "location", "specialization"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"icon" : "../images/work/icotop.png", "title" : "ICOTOP", "subtitle" : "Full Stack Engineer", "period" : "Jun 2019 - Mar 2021", "location" : "Florida, US (Remote)", "specialization" : "React, Typescript, Web3, Node, Express, Docker, AWS"}, {"icon" : "../images/work/fanhero.png", "title" : "FanHero", "subtitle" : "Front End Developer", "period" : "Feb 2018 - Apr 2019", "location" : "Florida, US (Remote)", "specialization" : "React, Material UI, Typescript, Jest, Enzyme, Cypress, Agile Product Development"}, {"icon" : "../images/work/openarc.png", "title" : "OpenArc, LLC.", "subtitle" : "Mobile Application Developer", "period" : "Nov 2016 - Jan 2018", "location" : "Florida, US (Remote)", "specialization" : "React Native, Flutter, Swift, Objective-C, Java, Kotlin"}, {"icon" : "../images/work/101management.png", "title" : "101 Management Inc.", "subtitle" : "Full Stack Lead Developer", "period" : "Jun 2015 - Oct 2016", "location" : "Florida, US (Remote)", "specialization" : "MERN Stack, Mocha, Chai"}, {"icon" : "../images/work/sunshine.png", "title" : "Sunshine Homes LLC.", "subtitle" : "General Contractor", "period" : "Sep 2013 - Jun 2015", "location" : "Florida, US (Remote)", "specialization" : "Ruby, Rails, PostgreSQL, RSpec, Docker, Heroku"}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"icon": {"type": "string"}, "title": {"type": "string"}, "subtitle": {"type": "string"}, "period": {"type": "string"}, "location": {"type": "string"}, "specialization": {"type": "string"}}, "required": ["icon", "title", "subtitle", "period", "location", "specialization"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"version": {"type": "number"}, "people": {"type": "array", "items": {"type": "object", "properties": {"pose_keypoints_2d": {"type": "array", "items": {"type": "number"}}, "face_keypoints_2d": {"type": "array", "items": {}}, "hand_left_keypoints_2d": {"type": "array", "items": {}}, "hand_right_keypoints_2d": {"type": "array", "items": {}}, "pose_keypoints_3d": {"type": "array", "items": {}}, "face_keypoints_3d": {"type": "array", "items": {}}, "hand_left_keypoints_3d": {"type": "array", "items": {}}, "hand_right_keypoints_3d": {"type": "array", "items": {}}}, "required": ["pose_keypoints_2d", "face_keypoints_2d", "hand_left_keypoints_2d", "hand_right_keypoints_2d", "pose_keypoints_3d", "face_keypoints_3d", "hand_left_keypoints_3d", "hand_right_keypoints_3d"]}}}, "required": ["version", "people"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"version" : 1.2, "people" : [{"pose_keypoints_2d" : [1049.85, 223.089, 1, 1086.97, 243.154, 1, 1074, 243.149, 1, 1074.04, 294.188, 1, 433.75, 340.327, 0, 1100.95, 241.159, 1, 1105.03, 294.162, 1, 1091.12, 349.119, 1, 1064.14, 337.101, 1, 1070.07, 403.94, 1, 1074.02, 472.044, 1, 1087.09, 337.147, 1, 1103.07, 400.025, 1, 1146.05, 462.018, 1, 1047.73, 212.129, 1, 1053.77, 212.125, 1, 439.045, 215.818, 0, 1071.78, 210.119, 1], "face_keypoints_2d" : [], "hand_left_keypoints_2d" : [], "hand_right_keypoints_2d" : [], "pose_keypoints_3d" : [], "face_keypoints_3d" : [], "hand_left_keypoints_3d" : [], "hand_right_keypoints_3d" : []}]} | json_instruct | {"type": "object", "properties": {"version": {"type": "number"}, "people": {"type": "array", "items": {"type": "object", "properties": {"pose_keypoints_2d": {"type": "array", "items": {"type": "number"}}, "face_keypoints_2d": {"type": "array", "items": {}}, "hand_left_keypoints_2d": {"type": "array", "items": {}}, "hand_right_keypoints_2d": {"type": "array", "items": {}}, "pose_keypoints_3d": {"type": "array", "items": {}}, "face_keypoints_3d": {"type": "array", "items": {}}, "hand_left_keypoints_3d": {"type": "array", "items": {}}, "hand_right_keypoints_3d": {"type": "array", "items": {}}}, "required": ["pose_keypoints_2d", "face_keypoints_2d", "hand_left_keypoints_2d", "hand_right_keypoints_2d", "pose_keypoints_3d", "face_keypoints_3d", "hand_left_keypoints_3d", "hand_right_keypoints_3d"]}}}, "required": ["version", "people"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"type": {"type": "string"}, "title": {"type": "string"}, "id": {"type": "string"}, "bbox": {"type": "array", "items": {"type": "number"}}, "description": {"type": "string"}, "connectsWith": {"type": "array", "items": {"type": "string"}}, "names": {"type": "array", "items": {"type": "string"}}, "features": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "number"}}}, "required": ["type", "coordinates"]}, "properties": {"type": "object", "properties": {"description": {"type": "string"}}, "required": ["description"]}}, "required": ["type", "geometry", "properties"]}}}, "required": ["type", "title", "id", "bbox", "description", "connectsWith", "names", "features"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"type" : "FeatureCollection", "title" : "Salaria?", "id" : "266022", "bbox" : [-3.368532, 38.008075, -3.368532, 38.008075], "description" : "An ancient place, cited: BAtlas 27 B4 Salaria?", "connectsWith" : ["256010"], "names" : ["Salaria", "Col. Salariensis", "Vbeda", "\u00dabeda"], "features" : [{"type" : "Feature", "geometry" : {"type" : "Point", "coordinates" : [-3.368532, 38.008075]}, "properties" : {"description" : "representative point"}}, {"geometry" : {"type" : "Point", "coordinates" : [-3.368532, 38.008075]}, "id" : "darmc-location-3071", "type" : "Feature", "properties" : {"description" : "1M scale point location", "location_precision" : "precise", "title" : "DARMC location 3071", "link" : "http://pleiades.stoa.org/places/266022/darmc-location-3071"}}]} | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "title": {"type": "string"}, "id": {"type": "string"}, "bbox": {"type": "array", "items": {"type": "number"}}, "description": {"type": "string"}, "connectsWith": {"type": "array", "items": {"type": "string"}}, "names": {"type": "array", "items": {"type": "string"}}, "features": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "number"}}}, "required": ["type", "coordinates"]}, "properties": {"type": "object", "properties": {"description": {"type": "string"}}, "required": ["description"]}}, "required": ["type", "geometry", "properties"]}}}, "required": ["type", "title", "id", "bbox", "description", "connectsWith", "names", "features"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"L": {"type": "integer"}, "J": {"type": "number"}, "B": {"type": "number"}, "K": {"type": "integer"}, "init_state": {"type": "string"}, "energy": {"type": "number"}, "eigoccs": {"type": "array", "items": {"type": "number"}}}, "required": ["L", "J", "B", "K", "init_state", "energy", "eigoccs"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"L" : 2, "J" : 0.9284766908852597, "B" : 0.18569533817705194, "K" : 10, "init_state" : "maximally-mixed state", "energy" : -0.9588596527608277, "eigoccs" : [0.41722180613108784, 0.5838977545499802, 1.015607267618172e-06, 0.0004966653624842836]} | json_instruct | {"type": "object", "properties": {"L": {"type": "integer"}, "J": {"type": "number"}, "B": {"type": "number"}, "K": {"type": "integer"}, "init_state": {"type": "string"}, "energy": {"type": "number"}, "eigoccs": {"type": "array", "items": {"type": "number"}}}, "required": ["L", "J", "B", "K", "init_state", "energy", "eigoccs"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"domain": {"type": "string"}, "name": {"type": "string"}, "version": {"type": "string"}, "documentation": {"type": "string"}, "issue_tracker": {"type": "string"}, "dependencies": {"type": "array", "items": {}}, "codeowners": {"type": "array", "items": {"type": "string"}}, "requirements": {"type": "array", "items": {}}, "iot_class": {"type": "string"}}, "required": ["domain", "name", "version", "documentation", "issue_tracker", "dependencies", "codeowners", "requirements", "iot_class"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"domain" : "greensens", "name" : "GreenSens Plant Sensors", "version" : "0.3.1", "documentation" : "https://github.com/pijiulaoshi/ha_greensens", "issue_tracker" : "https://github.com/pijiulaoshi/ha_greensens/issues", "dependencies" : [], "codeowners" : ["@pijiulaoshi"], "requirements" : [], "iot_class" : "cloud_polling"} | json_instruct | {"type": "object", "properties": {"domain": {"type": "string"}, "name": {"type": "string"}, "version": {"type": "string"}, "documentation": {"type": "string"}, "issue_tracker": {"type": "string"}, "dependencies": {"type": "array", "items": {}}, "codeowners": {"type": "array", "items": {"type": "string"}}, "requirements": {"type": "array", "items": {}}, "iot_class": {"type": "string"}}, "required": ["domain", "name", "version", "documentation", "issue_tracker", "dependencies", "codeowners", "requirements", "iot_class"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"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 G4862 (\u03c3\u03c5\u03c3\u03c4\u03c1\u03b1\u03c4\u03b9\u03ce\u03c4\u03b7\u03c2) and G4757 (\u03c3\u03c5\u03c3\u03c4\u03c1\u03b1\u03c4\u03b9\u03ce\u03c4\u03b7\u03c2);", "kjv_def" : "fellowsoldier", "lemma" : "\u03c3\u03c5\u03c3\u03c4\u03c1\u03b1\u03c4\u03b9\u03ce\u03c4\u03b7\u03c2", "frequency" : 2, "strongs_def" : " a co-campaigner, i.e. (figuratively) an associate in Christian toil", "outline" : "<ol><li> a fellow soldier</li><li> an associate in labours and conflicts for the cause of Christ</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#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"extends": {"type": "string"}, "compilerOptions": {"type": "object", "properties": {"plugins": {"type": "array", "items": {"type": "object", "properties": {"transform": {"type": "string"}}, "required": ["transform"]}}}, "required": ["plugins"]}}, "required": ["extends", "compilerOptions"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"extends" : "../tsconfig.json", "compilerOptions" : {"plugins" : [{"transform" : "typescript-is/lib/transform-inline/transformer"}]}} | json_instruct | {"type": "object", "properties": {"extends": {"type": "string"}, "compilerOptions": {"type": "object", "properties": {"plugins": {"type": "array", "items": {"type": "object", "properties": {"transform": {"type": "string"}}, "required": ["transform"]}}}, "required": ["plugins"]}}, "required": ["extends", "compilerOptions"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"index": {"type": "integer"}, "hash": {"type": "integer"}, "artDyeHash": {"type": "integer"}, "redacted": {"type": "boolean"}, "dyeManifestHash": {"type": "integer"}, "blacklisted": {"type": "boolean"}}, "required": ["index", "hash", "artDyeHash", "redacted", "dyeManifestHash", "blacklisted"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"index" : 3478, "hash" : 1575785719, "artDyeHash" : 1575785719, "redacted" : false, "dyeManifestHash" : 2887551735, "blacklisted" : false} | json_instruct | {"type": "object", "properties": {"index": {"type": "integer"}, "hash": {"type": "integer"}, "artDyeHash": {"type": "integer"}, "redacted": {"type": "boolean"}, "dyeManifestHash": {"type": "integer"}, "blacklisted": {"type": "boolean"}}, "required": ["index", "hash", "artDyeHash", "redacted", "dyeManifestHash", "blacklisted"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"Update": {"type": "string"}, "answer": {"type": "array", "items": {"type": "string"}}, "category": {"type": "string"}, "choices": {"type": "array", "items": {"type": "string"}}, "detail": {"type": "string"}, "explanation": {"type": "array", "items": {"type": "string"}}, "id": {"type": "integer"}, "saved_answer": {"type": "null"}, "type": {"type": "string"}}, "required": ["Update", "answer", "category", "choices", "detail", "explanation", "id", "saved_answer", "type"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"Update" : "2020-03-27 18:20:49", "answer" : ["A"], "category" : "soa", "choices" : ["A. Yes, all these resources can be created using a CloudFormation template", "B. S3 is not supported by CloudFormation.", "C. No, you can only create the S3 bucket but not the IAM user.", "D. No, in the same template you can only create the S3 bucket and the relative policy."], "detail" : "Is it possible to create an S3 bucket accessible only by a certain IAM user using policies in a CloudFormation template?", "explanation" : ["With AWS Identity and Access Management (IAM), you can create IAM users to control who has access to which resources in your AWS account. You can use IAM with AWS CloudFormation to control what AWS CloudFormation actions users can perform, such as view stack templates, create stacks, or delete stacks.", "In addition to AWS CloudFormation actions, you can manage what AWS services and resources are available to each user.", "Reference: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-iam-template.html"], "id" : 458, "saved_answer" : null, "type" : "Multiple Choice"} | json_instruct | {"type": "object", "properties": {"Update": {"type": "string"}, "answer": {"type": "array", "items": {"type": "string"}}, "category": {"type": "string"}, "choices": {"type": "array", "items": {"type": "string"}}, "detail": {"type": "string"}, "explanation": {"type": "array", "items": {"type": "string"}}, "id": {"type": "integer"}, "saved_answer": {"type": "null"}, "type": {"type": "string"}}, "required": ["Update", "answer", "category", "choices", "detail", "explanation", "id", "saved_answer", "type"], "$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"}, "description": {"type": "string"}, "version": {"type": "string"}, "data": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "top": {"type": "integer"}, "left": {"type": "integer"}, "angle": {"type": "integer"}, "width": {"type": "integer"}}, "required": ["name", "top", "left", "angle", "width"]}}}, "required": ["name", "description", "version", "data"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "Template 1", "description" : "This is sample", "version" : "1.0.1", "data" : [{"name" : "Picture1.png", "top" : 10, "left" : 20, "angle" : 354, "width" : 30}, {"name" : "Picture2.png", "top" : 10, "left" : 45, "angle" : 0, "width" : 32}, {"name" : "Picture3.png", "top" : 20, "left" : 75, "angle" : 0, "width" : 35}, {"name" : "Picture4.png", "top" : 30, "left" : 110, "angle" : 0, "width" : 40}, {"name" : "Picture5.png", "top" : 30, "left" : 150, "angle" : 0, "width" : 40}, {"name" : "Picture6.png", "top" : 25, "left" : 190, "angle" : 0, "width" : 30}, {"name" : "Picture7.png", "top" : 22, "left" : 218, "angle" : 0, "width" : 30}, {"name" : "Picture8.png", "top" : 15, "left" : 245, "angle" : 0, "width" : 20}]} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "version": {"type": "string"}, "data": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "top": {"type": "integer"}, "left": {"type": "integer"}, "angle": {"type": "integer"}, "width": {"type": "integer"}}, "required": ["name", "top", "left", "angle", "width"]}}}, "required": ["name", "description", "version", "data"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"width": {"type": "number"}, "rotation": {"type": "number"}, "xCenter": {"type": "number"}, "yCenter": {"type": "number"}, "height": {"type": "number"}}, "required": ["width", "rotation", "xCenter", "yCenter", "height"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"width" : 0.18358225, "rotation" : 2.9776082, "xCenter" : 0.64339864, "yCenter" : 0.7528746, "height" : 0.2294778} | json_instruct | {"type": "object", "properties": {"width": {"type": "number"}, "rotation": {"type": "number"}, "xCenter": {"type": "number"}, "yCenter": {"type": "number"}, "height": {"type": "number"}}, "required": ["width", "rotation", "xCenter", "yCenter", "height"], "$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": "integer"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [[1959, 5], [1964, 5], [1978, 5]] | json_instruct | {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"exp_name": {"type": "string"}, "machine": {"type": "string"}, "results": {"type": "object", "properties": {"train_time": {"type": "number"}, "val_time_no_tta": {"type": "number"}, "val_ams_smooth_no_tta": {"type": "number"}, "val_ams_max_no_tta": {"type": "number"}, "val_time": {"type": "number"}, "val_ams_smooth": {"type": "number"}, "val_ams_max": {"type": "number"}, "test_time_no_tta": {"type": "number"}, "test_public_ams_mean_no_tta": {"type": "array", "items": {"type": "number"}}, "test_private_ams_mean_no_tta": {"type": "array", "items": {"type": "number"}}, "test_public_ams_no_tta": {"type": "number"}, "test_private_ams_no_tta": {"type": "number"}, "test_time": {"type": "number"}, "test_public_ams_mean": {"type": "array", "items": {"type": "number"}}, "test_private_ams_mean": {"type": "array", "items": {"type": "number"}}, "test_public_ams": {"type": "number"}, "test_private_ams": {"type": "number"}}, "required": ["train_time", "val_time_no_tta", "val_ams_smooth_no_tta", "val_ams_max_no_tta", "val_time", "val_ams_smooth", "val_ams_max", "test_time_no_tta", "test_public_ams_mean_no_tta", "test_private_ams_mean_no_tta", "test_public_ams_no_tta", "test_private_ams_no_tta", "test_time", "test_public_ams_mean", "test_private_ams_mean", "test_public_ams", "test_private_ams"]}}, "required": ["exp_name", "machine", "results"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"exp_name" : "11_swish_ensemble_embed_aug_swacyclic", "machine" : "helios_cuda", "results" : {"train_time" : 1968.1871315220014, "val_time_no_tta" : 0.1345119670004351, "val_ams_smooth_no_tta" : 3.739787960210492, "val_ams_max_no_tta" : 3.7557667106632664, "val_time" : 4.063543091997417, "val_ams_smooth" : 3.727821576740896, "val_ams_max" : 3.7570434867713254, "test_time_no_tta" : 0.5456250469978841, "test_public_ams_mean_no_tta" : [3.8214609929026393, 0.08660691594100477], "test_private_ams_mean_no_tta" : [3.7999471798664812, 0.03661181155781918], "test_public_ams_no_tta" : 3.7998407318073073, "test_private_ams_no_tta" : 3.796420824049152, "test_time" : 18.580921582000883, "test_public_ams_mean" : [3.81487624324187, 0.08821067764498952], "test_private_ams_mean" : [3.7914465108232016, 0.03570752433945386], "test_public_ams" : 3.7936227627693326, "test_private_ams" : 3.788000392977062}} | json_instruct | {"type": "object", "properties": {"exp_name": {"type": "string"}, "machine": {"type": "string"}, "results": {"type": "object", "properties": {"train_time": {"type": "number"}, "val_time_no_tta": {"type": "number"}, "val_ams_smooth_no_tta": {"type": "number"}, "val_ams_max_no_tta": {"type": "number"}, "val_time": {"type": "number"}, "val_ams_smooth": {"type": "number"}, "val_ams_max": {"type": "number"}, "test_time_no_tta": {"type": "number"}, "test_public_ams_mean_no_tta": {"type": "array", "items": {"type": "number"}}, "test_private_ams_mean_no_tta": {"type": "array", "items": {"type": "number"}}, "test_public_ams_no_tta": {"type": "number"}, "test_private_ams_no_tta": {"type": "number"}, "test_time": {"type": "number"}, "test_public_ams_mean": {"type": "array", "items": {"type": "number"}}, "test_private_ams_mean": {"type": "array", "items": {"type": "number"}}, "test_public_ams": {"type": "number"}, "test_private_ams": {"type": "number"}}, "required": ["train_time", "val_time_no_tta", "val_ams_smooth_no_tta", "val_ams_max_no_tta", "val_time", "val_ams_smooth", "val_ams_max", "test_time_no_tta", "test_public_ams_mean_no_tta", "test_private_ams_mean_no_tta", "test_public_ams_no_tta", "test_private_ams_no_tta", "test_time", "test_public_ams_mean", "test_private_ams_mean", "test_public_ams", "test_private_ams"]}}, "required": ["exp_name", "machine", "results"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"id": {"type": "integer"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"src:alt_label": {"type": "string"}, "src:geom": {"type": "string"}, "wof:geomhash": {"type": "string"}, "wof:id": {"type": "integer"}, "wof:repo": {"type": "string"}}, "required": ["src:alt_label", "src:geom", "wof:geomhash", "wof:id", "wof:repo"]}, "bbox": {"type": "array", "items": {"type": "number"}}, "geometry": {"type": "object", "properties": {"coordinates": {"type": "array", "items": {"type": "number"}}, "type": {"type": "string"}}, "required": ["coordinates", "type"]}}, "required": ["id", "type", "properties", "bbox", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : 404373155, "type" : "Feature", "properties" : {"src:alt_label" : "quattroshapes_pg", "src:geom" : "quattroshapes_pg", "wof:geomhash" : "947599cbcf6509f1212af99f60b5172c", "wof:id" : 404373155, "wof:repo" : "whosonfirst-data-admin-fr"}, "bbox" : [2.9843, 49.9635, 2.9843, 49.9635], "geometry" : {"coordinates" : [2.9843, 49.9635], "type" : "Point"}} | json_instruct | {"type": "object", "properties": {"id": {"type": "integer"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"src:alt_label": {"type": "string"}, "src:geom": {"type": "string"}, "wof:geomhash": {"type": "string"}, "wof:id": {"type": "integer"}, "wof:repo": {"type": "string"}}, "required": ["src:alt_label", "src:geom", "wof:geomhash", "wof:id", "wof:repo"]}, "bbox": {"type": "array", "items": {"type": "number"}}, "geometry": {"type": "object", "properties": {"coordinates": {"type": "array", "items": {"type": "number"}}, "type": {"type": "string"}}, "required": ["coordinates", "type"]}}, "required": ["id", "type", "properties", "bbox", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"word" : "bar iron", "definition" : "See under Iron."} | json_instruct | {"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {"type": "integer"}}, "productReviews": {"type": "array", "items": {"type": "object", "properties": {"productId": {"type": "integer"}, "reviewText": {"type": "string"}, "reviewDate": {"type": "string"}}, "required": ["productId", "reviewText", "reviewDate"]}}}, "required": ["userId", "cartId", "preferredProducts", "productReviews"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"userId" : 55320, "cartId" : "66d0b984-00bf-4c0a-91cd-5b720d53e1ca", "preferredProducts" : [3814, 1728, 3777, 2022, 2102, 3501, 1193, 3124, 3158], "productReviews" : [{"productId" : 3545, "reviewText" : "My hummingbird loves to play with it.", "reviewDate" : "2016-12-16T18:59:56.0336129+02:00"}, {"productId" : 2574, "reviewText" : "talk about remorse!!!", "reviewDate" : "2018-02-25T03:36:19.8212777+02:00"}, {"productId" : 472, "reviewText" : "i use it from now on when i'm in my safehouse.", "reviewDate" : "2019-02-08T11:20:38.6231528+02:00"}, {"productId" : 3685, "reviewText" : "This XSS works really well. It sympathetically improves my baseball by a lot.", "reviewDate" : "2018-06-07T01:06:55.2334306+03:00"}]} | json_instruct | {"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {"type": "integer"}}, "productReviews": {"type": "array", "items": {"type": "object", "properties": {"productId": {"type": "integer"}, "reviewText": {"type": "string"}, "reviewDate": {"type": "string"}}, "required": ["productId", "reviewText", "reviewDate"]}}}, "required": ["userId", "cartId", "preferredProducts", "productReviews"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"text": {"type": "object", "properties": {"0": {"type": "object", "properties": {"m1": {"type": "string"}, "m2": {"type": "string"}}, "required": ["m1", "m2"]}, "1": {"type": "object", "properties": {"m1": {"type": "string"}, "m2": {"type": "string"}}, "required": ["m1", "m2"]}}, "required": ["0", "1"]}}, "required": ["text"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"text" : {"0" : {"m1" : "\u0639\u0634\u0642 \u0622\u0645\u062f \u0648 \u06af\u0648\u06cc\u062f \u06a9\u0647 \u0632\u0628\u0627\u0646 \u0628\u06af\u0634\u0627\u06cc\u0646\u062f", "m2" : "\u0648\u0632 \u0645\u0698\u062f\u0647\u0654 \u0645\u0646 \u062f\u0644 \u062c\u0647\u0627\u0646 \u0628\u06af\u0634\u0627\u06cc\u0646\u062f"}, "1" : {"m1" : "\u0631\u0627\u062d\u062a \u0646\u0647 \u0639\u06cc\u0627\u0646 \u0627\u0633\u062a\u060c \u0645\u0646\u0627\u0630\u06cc \u0628\u0632\u0646\u0646\u062f", "m2" : "\u062a\u0627 \u0631\u0648\u06cc \u0646\u0642\u0627\u0628 \u0628\u0633\u062a\u06af\u0627\u0646 \u0628\u06af\u0634\u0627\u06cc\u0646\u062f"}}} | json_instruct | {"type": "object", "properties": {"text": {"type": "object", "properties": {"0": {"type": "object", "properties": {"m1": {"type": "string"}, "m2": {"type": "string"}}, "required": ["m1", "m2"]}, "1": {"type": "object", "properties": {"m1": {"type": "string"}, "m2": {"type": "string"}}, "required": ["m1", "m2"]}}, "required": ["0", "1"]}}, "required": ["text"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"ui.panel.shopping_list.start_conversation": {"type": "string"}}, "required": ["ui.panel.shopping_list.start_conversation"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"ui.panel.shopping_list.start_conversation" : "Zah\u00e1jit konverzaci"} | json_instruct | {"type": "object", "properties": {"ui.panel.shopping_list.start_conversation": {"type": "string"}}, "required": ["ui.panel.shopping_list.start_conversation"], "$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"}, "homepage": {"type": "string"}, "author": {"type": "string"}, "contributors": {"type": "array", "items": {"type": "string"}}, "license": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "node-red": {"type": "object", "properties": {"nodes": {"type": "object", "properties": {"smart-plug": {"type": "string"}, "smart-bulb": {"type": "string"}}, "required": ["smart-plug", "smart-bulb"]}}, "required": ["nodes"]}, "engines": {"type": "object", "properties": {"node": {"type": "string"}, "npm": {"type": "string"}}, "required": ["node", "npm"]}, "dependencies": {"type": "object", "properties": {"moment": {"type": "string"}, "numeral": {"type": "string"}, "tplink-smarthome-api": {"type": "string"}}, "required": ["moment", "numeral", "tplink-smarthome-api"]}, "files": {"type": "array", "items": {"type": "string"}}, "keywords": {"type": "array", "items": {"type": "string"}}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}}, "required": ["name", "version", "description", "homepage", "author", "contributors", "license", "repository", "node-red", "engines", "dependencies", "files", "keywords", "bugs"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "node-red-contrib-tplink-iot", "version" : "0.1.9", "description" : "A collection of Node-RED nodes for TP-Link smart-home devices.", "homepage" : "https://github.com/mental05/node-red-contrib-tplink-iot", "author" : "Dragoiu Robert <[email protected]> (https://facebook.com/dopepixels)", "contributors" : ["Barney Rubble <[email protected]> (http://acloudhub.info/resume/)", "Raj Amal <[email protected]> (https://www.learn2crack.com)", "juggledad (https://github.com/juggledad)"], "license" : "MIT", "repository" : {"type" : "git", "url" : "https://github.com/mental05/node-red-contrib-tplink-iot.git"}, "node-red" : {"nodes" : {"smart-plug" : "smart-plug.js", "smart-bulb" : "smart-bulb.js"}}, "engines" : {"node" : ">=0.10.29", "npm" : ">=1.4.21"}, "dependencies" : {"moment" : "^2.20.1", "numeral" : "^2.0.6", "tplink-smarthome-api" : "^0.23.0"}, "files" : ["examples/", "icons/", "LICENSE", "README.md", "CHANGELOG.md", ".npmignore", "package.json", "smart-bulb.js", "smart-plug.js", "smart-bulb.bak.js", "smart-plug.bak.js", "smart-bulb.html", "smart-plug.html"], "keywords" : ["node-red", "tplink", "tp-link", "kasa", "iot", "hs100", "hs105", "hs110", "hs200", "lb100", "lb110", "lb120", "lb130", "lb200", "lb230", "home", "smart", "smartplug", "smartswitch", "smartbulb"], "bugs" : {"url" : "https://github.com/mental05/node-red-contrib-tplink-iot/issues"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "homepage": {"type": "string"}, "author": {"type": "string"}, "contributors": {"type": "array", "items": {"type": "string"}}, "license": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "node-red": {"type": "object", "properties": {"nodes": {"type": "object", "properties": {"smart-plug": {"type": "string"}, "smart-bulb": {"type": "string"}}, "required": ["smart-plug", "smart-bulb"]}}, "required": ["nodes"]}, "engines": {"type": "object", "properties": {"node": {"type": "string"}, "npm": {"type": "string"}}, "required": ["node", "npm"]}, "dependencies": {"type": "object", "properties": {"moment": {"type": "string"}, "numeral": {"type": "string"}, "tplink-smarthome-api": {"type": "string"}}, "required": ["moment", "numeral", "tplink-smarthome-api"]}, "files": {"type": "array", "items": {"type": "string"}}, "keywords": {"type": "array", "items": {"type": "string"}}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}}, "required": ["name", "version", "description", "homepage", "author", "contributors", "license", "repository", "node-red", "engines", "dependencies", "files", "keywords", "bugs"], "$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"}, "name": {"type": "string"}, "link": {"type": "string"}, "club": {"type": "string"}, "class_classic": {"type": "string"}, "class_dnd": {"type": "string"}, "A": {"type": "string"}, "B": {"type": "string"}, "C": {"type": "string"}, "D": {"type": "string"}, "E": {"type": "string"}, "Ch": {"type": "string"}, "S": {"type": "string"}, "M": {"type": "string"}, "RS": {"type": "string"}, "Beg": {"type": "string"}, "story_classic": {"type": "string"}, "story_dnd": {"type": "string"}}, "required": ["id", "name", "link", "club", "class_classic", "class_dnd", "A", "B", "C", "D", "E", "Ch", "S", "M", "RS", "Beg", "story_classic", "story_dnd"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "01499", "name" : "\u0415\u043c\u0435\u043b\u044c\u044f\u043d\u0435\u043d\u043a\u043e \u0410\u043d\u043d\u0430 \u0412\u043b\u0430\u0434\u0438\u043c\u0438\u0440\u043e\u0432\u043d\u0430 ", "link" : "pages/01499.html", "club" : "\u0414\u0432\u0438\u0436\u0435\u043d\u0438\u0435 (\u0433.\u041a\u0440\u0430\u0441\u043d\u043e\u044f\u0440\u0441\u043a)", "class_classic" : "B", "class_dnd" : "M", "A" : "0", "B" : "0", "C" : "12", "D" : "0", "E" : "0", "Ch" : "0", "S" : "0", "M" : "0", "RS" : "0", "Beg" : "0", "story_classic" : "1.11.2014 \u2014 \u0427\u0435\u043c\u043f\u0438\u043e\u043d\u0430\u0442 \u0421\u0438\u0431\u0438\u0440\u0438 \u0433. \u041a\u0440\u0430\u0441\u043d\u043e\u044f\u0440\u0441\u043a : (\u0421-\u041011)B9/9<br><br>17.11.2012 \u2014 \u0427\u0435\u043c\u043f\u0438\u043e\u043d\u0430\u0442 \u0421\u0438\u0431\u0438\u0440\u0438\u0433.\u041a\u0440\u0430\u0441\u043d\u043e\u044f\u0440\u0441\u043a : (\u0415-\u041214-17)B14/14<br><br>09.03.2012 \u2014 \u041a\u0443\u0431\u043e\u043a \u041a\u0425\u041a \u0414\u0432\u0438\u0436\u0435\u043d\u0438\u0435 \u041a\u0440\u0430\u0441\u043d\u043e\u044f\u0440\u0441\u043a : (\u0414-\u041210-11)B10/12<br><br>10.12.2011 \u2014 \u0427\u0435\u043c\u043f\u0438\u043e\u043d\u0430\u0442\u0420\u043e\u0441\u0441\u0438\u04382011 : (\u0414-\u041055-66)B46/46<br><br>03.12.2011 \u2014 \u041e\u0442\u043a\u0440\u044b\u0442\u044b\u0439 \u043a\u0443\u0431\u043e\u043a \u041d\u043e\u0432\u043e\u0441\u0438\u0431\u0438\u0440\u0441\u043a\u0430 : (\u0415-\u04116)B6/7<br><br>05.11.2011 \u2014 \u0427\u0435\u043c\u043f\u0438\u043e\u043d\u0430\u0442\u0421\u0438\u0431\u0438\u0440\u0438\u041a\u0440\u0430\u0441\u043d\u043e\u044f\u0440\u0441\u043a : (\u0415-\u041211-12)B11/12<br><br>28.05.2011 \u2014 \u041d\u0430 \u043f\u0443\u0442\u0438 \u043a \u0437\u0432\u0451\u0437\u0434\u0430\u043c : (\u0415-\u04212)C2/10+3<br><br>30.04.2011 \u2014 \u041a\u0443\u0431\u043e\u043a \u0420\u0435\u043d\u0435\u0441\u0441\u0430\u043d\u0441\u04302011 : C4/13+2<br><br>12.03.2011 \u2014 \u041a\u0443\u0431\u043e\u043a \u0414\u0432\u0438\u0436\u0435\u043d\u0438\u044f\u0433.\u041a\u0440\u0430\u0441\u043d\u043e\u044f\u0440\u0441\u043a : (\u0414-\u04211)C1/11+4<br><br>12.12.2010 \u2014 \u041e\u0442\u043a\u0440.\u041a\u0443\u0431\u043e\u043a\u041d\u043e\u0432\u043e\u0441\u0438\u0431\u0438\u0440\u0441\u043a\u0430 : (\u0414-\u04127-8)C4/12+2<br><br>06.11.2010 \u2014 \u041a\u0443\u0431\u043e\u043a \u0421\u0438\u0431\u0438\u0440\u0438 : (\u0414-\u04118-9)C8/18+1<br><br>14.03.2010 \u2014 \u041a\u0443\u0431\u043e\u043a \u0414\u0432\u0438\u0436\u0435\u043d\u0438\u044f \u041a\u0440\u0430\u0441\u043d\u043e\u044f\u0440\u0441\u043a : (\u0414-\u041129)C27/28<br><br>", "story_dnd" : "1.11.2014 \u2014 \u0427\u0435\u043c\u043f\u0438\u043e\u043d\u0430\u0442 \u0421\u0438\u0431\u0438\u0440\u0438 \u0433. \u041a\u0440\u0430\u0441\u043d\u043e\u044f\u0440\u0441\u043a : (RS-S20-22) M17/18<br><br>"} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "link": {"type": "string"}, "club": {"type": "string"}, "class_classic": {"type": "string"}, "class_dnd": {"type": "string"}, "A": {"type": "string"}, "B": {"type": "string"}, "C": {"type": "string"}, "D": {"type": "string"}, "E": {"type": "string"}, "Ch": {"type": "string"}, "S": {"type": "string"}, "M": {"type": "string"}, "RS": {"type": "string"}, "Beg": {"type": "string"}, "story_classic": {"type": "string"}, "story_dnd": {"type": "string"}}, "required": ["id", "name", "link", "club", "class_classic", "class_dnd", "A", "B", "C", "D", "E", "Ch", "S", "M", "RS", "Beg", "story_classic", "story_dnd"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"id": {"type": "string"}, "url": {"type": "string"}, "library": {"type": "string"}, "hooks": {"type": "array", "items": {"type": "object", "properties": {"hook": {"type": "string"}, "method": {"type": "string"}}, "required": ["hook", "method"]}}, "staticDirs": {"type": "object", "properties": {"static": {"type": "string"}}, "required": ["static"]}, "less": {"type": "array", "items": {"type": "string"}}, "scripts": {"type": "array", "items": {"type": "string"}}, "acpScripts": {"type": "array", "items": {"type": "string"}}, "templates": {"type": "string"}, "languages": {"type": "string"}, "defaultLang": {"type": "string"}}, "required": ["id", "url", "library", "hooks", "staticDirs", "less", "scripts", "acpScripts", "templates", "languages", "defaultLang"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "nodebb-plugin-2factor", "url" : "https://github.com/julianlam/nodebb-plugin-2factor", "library" : "./library.js", "hooks" : [{"hook" : "static:app.load", "method" : "init"}, {"hook" : "filter:admin.header.build", "method" : "addAdminNavigation"}, {"hook" : "filter:user.profileMenu", "method" : "addProfileItem"}, {"hook" : "response:router.page", "method" : "check"}, {"hook" : "static:user.loggedOut", "method" : "clearSession"}, {"hook" : "filter:middleware.render", "method" : "updateTitle"}, {"hook" : "static:sockets.validateSession", "method" : "checkSocket"}, {"hook" : "response:auth.relogin", "method" : "adjustRelogin"}, {"hook" : "response:plugin.write-api.route", "method" : "integrations.writeApi"}], "staticDirs" : {"static" : "./static"}, "less" : ["static/style.less"], "scripts" : ["static/lib/login.js", "static/lib/backup-code.js", "static/lib/settings.js"], "acpScripts" : ["static/lib/admin.js"], "templates" : "static/templates", "languages" : "languages", "defaultLang" : "en-GB"} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "url": {"type": "string"}, "library": {"type": "string"}, "hooks": {"type": "array", "items": {"type": "object", "properties": {"hook": {"type": "string"}, "method": {"type": "string"}}, "required": ["hook", "method"]}}, "staticDirs": {"type": "object", "properties": {"static": {"type": "string"}}, "required": ["static"]}, "less": {"type": "array", "items": {"type": "string"}}, "scripts": {"type": "array", "items": {"type": "string"}}, "acpScripts": {"type": "array", "items": {"type": "string"}}, "templates": {"type": "string"}, "languages": {"type": "string"}, "defaultLang": {"type": "string"}}, "required": ["id", "url", "library", "hooks", "staticDirs", "less", "scripts", "acpScripts", "templates", "languages", "defaultLang"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"title": {"type": "string"}, "author": {"type": "string"}, "musicType": {"type": "string"}, "musicNo": {"type": "string"}}, "required": ["title", "author", "musicType", "musicNo"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"title" : "Total Eclipse of the Heart-Bonnie Tyler", "author" : "Bonnie Tyler", "musicType" : "\u6d41\u884c", "musicNo" : "0004177"} | json_instruct | {"type": "object", "properties": {"title": {"type": "string"}, "author": {"type": "string"}, "musicType": {"type": "string"}, "musicNo": {"type": "string"}}, "required": ["title", "author", "musicType", "musicNo"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"baseObjects": {"type": "array", "items": {"type": "string"}}, "returnObjects": {"type": "array", "items": {"type": "string"}}, "callbackArgs": {"type": "array", "items": {"type": "object", "properties": {"0": {"type": "string"}, "1": {"type": "integer"}, "2": {"type": "array", "items": {"type": "string"}}}, "required": ["0", "1", "2"]}}}, "required": ["baseObjects", "returnObjects", "callbackArgs"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"baseObjects" : ["[\"j\",\"D\",\"@I\",\"vL\",\"gb\",\"R\",\"j}\",\"w\"]", "[\"j\",\"D\",\"@I\",\"vL\",\"gb\",\"R\",\"j}\",\"w\"]", "[\"j\",\"D\",\"@I\",\"vL\",\"gb\",\"R\",\"j}\",\"w\"]", "[\"j\",\"D\",\"@I\",\"vL\",\"gb\",\"R\",\"j}\",\"w\"]"], "returnObjects" : ["\"Error\"", "true", "\"Error\"", "\"Error\""], "callbackArgs" : [{"0" : "j", "1" : 0, "2" : ["j", "D", "@I", "vL", "gb", "R", "j}", "w"]}, {"0" : "j", "1" : 0, "2" : ["j", "D", "@I", "vL", "gb", "R", "j}", "w"]}, {"0" : "D", "1" : 1, "2" : ["j", "D", "@I", "vL", "gb", "R", "j}", "w"]}, {"0" : "@I", "1" : 2, "2" : ["j", "D", "@I", "vL", "gb", "R", "j}", "w"]}, {"0" : "vL", "1" : 3, "2" : ["j", "D", "@I", "vL", "gb", "R", "j}", "w"]}, {"0" : "gb", "1" : 4, "2" : ["j", "D", "@I", "vL", "gb", "R", "j}", "w"]}, {"0" : "R", "1" : 5, "2" : ["j", "D", "@I", "vL", "gb", "R", "j}", "w"]}, {"0" : "j}", "1" : 6, "2" : ["j", "D", "@I", "vL", "gb", "R", "j}", "w"]}, {"0" : "w", "1" : 7, "2" : ["j", "D", "@I", "vL", "gb", "R", "j}", "w"]}, {"0" : "j", "1" : 0, "2" : ["j", "D", "@I", "vL", "gb", "R", "j}", "w"]}, {"0" : "j", "1" : 0, "2" : ["j", "D", "@I", "vL", "gb", "R", "j}", "w"]}]} | json_instruct | {"type": "object", "properties": {"baseObjects": {"type": "array", "items": {"type": "string"}}, "returnObjects": {"type": "array", "items": {"type": "string"}}, "callbackArgs": {"type": "array", "items": {"type": "object", "properties": {"0": {"type": "string"}, "1": {"type": "integer"}, "2": {"type": "array", "items": {"type": "string"}}}, "required": ["0", "1", "2"]}}}, "required": ["baseObjects", "returnObjects", "callbackArgs"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "author": {"type": "string"}, "private": {"type": "boolean"}, "main": {"type": "string"}, "license": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "homepage": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "dependencies": {"type": "object", "properties": {"vue-notification": {"type": "string"}}, "required": ["vue-notification"]}}, "required": ["name", "version", "description", "author", "private", "main", "license", "keywords", "repository", "homepage", "bugs", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "laralabs-vue-toaster", "version" : "3.0.1", "description" : "Vue component for Laralabs/Toaster", "author" : "Matt Clinton <[email protected]>", "private" : false, "main" : "./src/ToasterGroupComponent.vue", "license" : "MIT", "keywords" : ["Vue", "Laralabs", "Notification", "Alerts"], "repository" : {"type" : "git", "url" : "git+https://github.com/Laralabs/vue-toaster.git"}, "homepage" : "https://github.com/Laralabs/vue-toaster", "bugs" : {"url" : "https://github.com/Laralabs/vue-toaster/issues"}, "dependencies" : {"vue-notification" : "^1.3.7"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "author": {"type": "string"}, "private": {"type": "boolean"}, "main": {"type": "string"}, "license": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "homepage": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "dependencies": {"type": "object", "properties": {"vue-notification": {"type": "string"}}, "required": ["vue-notification"]}}, "required": ["name", "version", "description", "author", "private", "main", "license", "keywords", "repository", "homepage", "bugs", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"Status": {"type": "integer"}, "TimeLimitReached": {"type": "boolean"}, "RunningTime": {"type": "string"}, "StartTimes": {"type": "array", "items": {"type": "object", "properties": {"JobIndex": {"type": "integer"}, "OperationIndex": {"type": "integer"}, "StartTime": {"type": "number"}}, "required": ["JobIndex", "OperationIndex", "StartTime"]}}}, "required": ["Status", "TimeLimitReached", "RunningTime", "StartTimes"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"Status" : 3, "TimeLimitReached" : true, "RunningTime" : "00:05:00.2642388", "StartTimes" : [{"JobIndex" : 0, "OperationIndex" : 0, "StartTime" : 92.0}, {"JobIndex" : 1, "OperationIndex" : 0, "StartTime" : 58.0}, {"JobIndex" : 2, "OperationIndex" : 0, "StartTime" : 6.0}, {"JobIndex" : 3, "OperationIndex" : 0, "StartTime" : 266.0}, {"JobIndex" : 4, "OperationIndex" : 0, "StartTime" : 144.0}, {"JobIndex" : 5, "OperationIndex" : 0, "StartTime" : 179.0}, {"JobIndex" : 6, "OperationIndex" : 0, "StartTime" : 103.0}, {"JobIndex" : 7, "OperationIndex" : 0, "StartTime" : 162.0}, {"JobIndex" : 8, "OperationIndex" : 0, "StartTime" : 165.0}, {"JobIndex" : 9, "OperationIndex" : 0, "StartTime" : 234.0}, {"JobIndex" : 10, "OperationIndex" : 0, "StartTime" : 195.0}, {"JobIndex" : 11, "OperationIndex" : 0, "StartTime" : 42.0}, {"JobIndex" : 12, "OperationIndex" : 0, "StartTime" : 4.0}, {"JobIndex" : 13, "OperationIndex" : 0, "StartTime" : 250.0}, {"JobIndex" : 14, "OperationIndex" : 0, "StartTime" : 87.0}, {"JobIndex" : 15, "OperationIndex" : 0, "StartTime" : 152.0}, {"JobIndex" : 16, "OperationIndex" : 0, "StartTime" : 185.0}, {"JobIndex" : 17, "OperationIndex" : 0, "StartTime" : 208.0}, {"JobIndex" : 18, "OperationIndex" : 0, "StartTime" : 238.0}, {"JobIndex" : 19, "OperationIndex" : 0, "StartTime" : 142.0}, {"JobIndex" : 20, "OperationIndex" : 0, "StartTime" : 266.0}, {"JobIndex" : 21, "OperationIndex" : 0, "StartTime" : 239.0}, {"JobIndex" : 22, "OperationIndex" : 0, "StartTime" : 212.0}, {"JobIndex" : 23, "OperationIndex" : 0, "StartTime" : 228.0}, {"JobIndex" : 24, "OperationIndex" : 0, "StartTime" : 225.0}, {"JobIndex" : 25, "OperationIndex" : 0, "StartTime" : 268.0}, {"JobIndex" : 26, "OperationIndex" : 0, "StartTime" : 128.0}, {"JobIndex" : 27, "OperationIndex" : 0, "StartTime" : 262.0}, {"JobIndex" : 28, "OperationIndex" : 0, "StartTime" : 188.0}, {"JobIndex" : 29, "OperationIndex" : 0, "StartTime" : 179.0}]} | json_instruct | {"type": "object", "properties": {"Status": {"type": "integer"}, "TimeLimitReached": {"type": "boolean"}, "RunningTime": {"type": "string"}, "StartTimes": {"type": "array", "items": {"type": "object", "properties": {"JobIndex": {"type": "integer"}, "OperationIndex": {"type": "integer"}, "StartTime": {"type": "number"}}, "required": ["JobIndex", "OperationIndex", "StartTime"]}}}, "required": ["Status", "TimeLimitReached", "RunningTime", "StartTimes"], "$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" : "861fbff283591e69e4916ef98f1539877965d126"} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}}, "required": ["id"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"variants": {"type": "object", "properties": {"": {"type": "object", "properties": {"model": {"type": "string"}}, "required": ["model"]}}, "required": [""]}}, "required": ["variants"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"variants" : {"" : {"model" : "wander:block/fir_leaves"}}} | json_instruct | {"type": "object", "properties": {"variants": {"type": "object", "properties": {"": {"type": "object", "properties": {"model": {"type": "string"}}, "required": ["model"]}}, "required": [""]}}, "required": ["variants"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"backup_data_uid": {"type": "string"}, "backup_module_uid": {"type": "string"}, "backup_module_uoa": {"type": "string"}, "control": {"type": "object", "properties": {"engine": {"type": "string"}, "iso_datetime": {"type": "string"}, "version": {"type": "array", "items": {"type": "string"}}}, "required": ["engine", "iso_datetime", "version"]}, "data_name": {"type": "string"}}, "required": ["backup_data_uid", "backup_module_uid", "backup_module_uoa", "control", "data_name"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"backup_data_uid" : "2aa47c9953afabd7", "backup_module_uid" : "41e31cc4496b8a8e", "backup_module_uoa" : "platform.os", "control" : {"engine" : "CK", "iso_datetime" : "2018-10-16T02:49:15.641113", "version" : ["1", "9", "6", "1"]}, "data_name" : "NSDL V3.1.201805(ZTE)"} | json_instruct | {"type": "object", "properties": {"backup_data_uid": {"type": "string"}, "backup_module_uid": {"type": "string"}, "backup_module_uoa": {"type": "string"}, "control": {"type": "object", "properties": {"engine": {"type": "string"}, "iso_datetime": {"type": "string"}, "version": {"type": "array", "items": {"type": "string"}}}, "required": ["engine", "iso_datetime", "version"]}, "data_name": {"type": "string"}}, "required": ["backup_data_uid", "backup_module_uid", "backup_module_uoa", "control", "data_name"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "frequency": {"type": "integer"}, "males": {"type": "string"}, "females": {"type": "string"}}, "required": ["name", "frequency", "males", "females"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"name" : "NEEL", "frequency" : 3359, "males" : "88.65733849359928 %", "females" : "11.342661506400715 %"}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "frequency": {"type": "integer"}, "males": {"type": "string"}, "females": {"type": "string"}}, "required": ["name", "frequency", "males", "females"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"directions": {"type": "array", "items": {"type": "string"}}, "ingredients": {"type": "array", "items": {"type": "string"}}, "language": {"type": "string"}, "source": {"type": "string"}, "tags": {"type": "array", "items": {}}, "title": {"type": "string"}, "url": {"type": "string"}}, "required": ["directions", "ingredients", "language", "source", "tags", "title", "url"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"directions" : ["Combine chicken broth, garlic, butter, and sugar in a large saucepan; bring to a simmer and cook until garlic is tender, about 2 minutes. Stir carrot and celery into simmering broth; cook until vegetables are almost tender, about 2 minutes more.", "Bring broth mixture to a boil and stir gnocchi into the saucepan; cook until gnocchi rise to the top and are tender yet firm to the bite, 2 to 3 minutes. Add peas and corn to broth mixture; simmer until heated through, about 30 seconds.", "Stir chicken and spinach into broth mixture; remove from heat and season soup with salt and black pepper. Ladle soup into bowls and top with Parmesan cheese."], "ingredients" : ["3 cups chicken broth", "2 cloves garlic, minced", "1 1/2 tablespoons unsalted butter", "3/4 teaspoon white sugar", "1 carrot, thinly sliced", "1 stalk celery, thinly sliced", "1 cup potato gnocchi", "4 ounces frozen peas", "4 ounces frozen corn", "1 cup shredded cooked chicken", "2 ounces baby spinach", "salt and freshly ground black pepper to taste", "1/2 cup grated Parmesan cheese, or to taste"], "language" : "en-US", "source" : "allrecipes.com", "tags" : [], "title" : "Easy Chicken and Gnocchi Soup", "url" : "http://allrecipes.com/recipe/241935/easy-chicken-and-gnocchi-soup/"} | json_instruct | {"type": "object", "properties": {"directions": {"type": "array", "items": {"type": "string"}}, "ingredients": {"type": "array", "items": {"type": "string"}}, "language": {"type": "string"}, "source": {"type": "string"}, "tags": {"type": "array", "items": {}}, "title": {"type": "string"}, "url": {"type": "string"}}, "required": ["directions", "ingredients", "language", "source", "tags", "title", "url"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"\uc758\uc548\uc811\uc218\uc815\ubcf4": {"type": "object", "properties": {"\uc758\uc548\ubc88\ud638": {"type": "array", "items": {"type": "string"}}, "\uc81c\uc548\uc77c\uc790": {"type": "array", "items": {"type": "string"}}, "\uc81c\uc548\uc790": {"type": "array", "items": {"type": "string"}}, "\ubb38\uc11c": {"type": "array", "items": {"type": "string"}}, "\uc81c\uc548\ud68c\uae30": {"type": "array", "items": {"type": "string"}}}, "required": ["\uc758\uc548\ubc88\ud638", "\uc81c\uc548\uc77c\uc790", "\uc81c\uc548\uc790", "\ubb38\uc11c", "\uc81c\uc548\ud68c\uae30"]}}, "required": ["\uc758\uc548\uc811\uc218\uc815\ubcf4"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"\uc758\uc548\uc811\uc218\uc815\ubcf4" : {"\uc758\uc548\ubc88\ud638" : ["ZZ1531"], "\uc81c\uc548\uc77c\uc790" : ["1998-12-10"], "\uc81c\uc548\uc790" : ["\ubc15\ud76c\ud0dc\uc758\uc6d0"], "\ubb38\uc11c" : [""], "\uc81c\uc548\ud68c\uae30" : ["\uc81c15\ub300(1996~2000)"]}} | json_instruct | {"type": "object", "properties": {"\uc758\uc548\uc811\uc218\uc815\ubcf4": {"type": "object", "properties": {"\uc758\uc548\ubc88\ud638": {"type": "array", "items": {"type": "string"}}, "\uc81c\uc548\uc77c\uc790": {"type": "array", "items": {"type": "string"}}, "\uc81c\uc548\uc790": {"type": "array", "items": {"type": "string"}}, "\ubb38\uc11c": {"type": "array", "items": {"type": "string"}}, "\uc81c\uc548\ud68c\uae30": {"type": "array", "items": {"type": "string"}}}, "required": ["\uc758\uc548\ubc88\ud638", "\uc81c\uc548\uc77c\uc790", "\uc81c\uc548\uc790", "\ubb38\uc11c", "\uc81c\uc548\ud68c\uae30"]}}, "required": ["\uc758\uc548\uc811\uc218\uc815\ubcf4"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"}
| ["apeman-app-route", "apeman-react-component", "apeman-react-style", "apeman-react-view", "apeman-tmpl", "apemanschema", "argx", "aschema"] | 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": {"siaApp": {"type": "object", "properties": {"actions": {"type": "object", "properties": {"home": {"type": "object", "properties": {"title": {"type": "string"}, "createLabel": {"type": "string"}, "createOrEditLabel": {"type": "string"}}, "required": ["title", "createLabel", "createOrEditLabel"]}, "created": {"type": "string"}, "updated": {"type": "string"}, "deleted": {"type": "string"}, "delete": {"type": "object", "properties": {"question": {"type": "string"}}, "required": ["question"]}, "detail": {"type": "object", "properties": {"title": {"type": "string"}}, "required": ["title"]}, "guildId": {"type": "string"}, "numStrikes": {"type": "string"}, "action": {"type": "string"}, "time": {"type": "string"}}, "required": ["home", "created", "updated", "deleted", "delete", "detail", "guildId", "numStrikes", "action", "time"]}}, "required": ["actions"]}}, "required": ["siaApp"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"siaApp" : {"actions" : {"home" : {"title" : "Actions", "createLabel" : "Actions erstellen", "createOrEditLabel" : "Actions erstellen oder bearbeiten"}, "created" : "Actions erstellt mit ID {{ param }}", "updated" : "Actions aktualisiert mit ID {{ param }}", "deleted" : "Actions gel\u00f6scht mit ID {{ param }}", "delete" : {"question" : "Soll Actions {{ id }} wirklich dauerhaft gel\u00f6scht werden?"}, "detail" : {"title" : "Actions"}, "guildId" : "Guild Id", "numStrikes" : "Num Strikes", "action" : "Action", "time" : "Time"}}} | json_instruct | {"type": "object", "properties": {"siaApp": {"type": "object", "properties": {"actions": {"type": "object", "properties": {"home": {"type": "object", "properties": {"title": {"type": "string"}, "createLabel": {"type": "string"}, "createOrEditLabel": {"type": "string"}}, "required": ["title", "createLabel", "createOrEditLabel"]}, "created": {"type": "string"}, "updated": {"type": "string"}, "deleted": {"type": "string"}, "delete": {"type": "object", "properties": {"question": {"type": "string"}}, "required": ["question"]}, "detail": {"type": "object", "properties": {"title": {"type": "string"}}, "required": ["title"]}, "guildId": {"type": "string"}, "numStrikes": {"type": "string"}, "action": {"type": "string"}, "time": {"type": "string"}}, "required": ["home", "created", "updated", "deleted", "delete", "detail", "guildId", "numStrikes", "action", "time"]}}, "required": ["actions"]}}, "required": ["siaApp"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"ActivityList": {"type": "array", "items": {"type": "string"}}, "Status": {"type": "string"}, "isStream": {"type": "boolean"}, "streamLink": {"type": "string"}}, "required": ["ActivityList", "Status", "isStream", "streamLink"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"ActivityList" : ["Hi iam Hatsuku", "Flying Around on the Internet", "iam working inside RAM & CPU", "Iam Still New!", "uuuOOOO...uuuuOOOO~~", "Searching for good Anime", "Woung~...Woung~...Woung~..", "smelling~~~", "jeezzz~~", "the internet is very Big", "my Master Like playing Valorant", "Check Me On Github!"], "Status" : "idle", "isStream" : true, "streamLink" : "https://www.youtube.com/watch?v=ziBT_1oE3zU"} | json_instruct | {"type": "object", "properties": {"ActivityList": {"type": "array", "items": {"type": "string"}}, "Status": {"type": "string"}, "isStream": {"type": "boolean"}, "streamLink": {"type": "string"}}, "required": ["ActivityList", "Status", "isStream", "streamLink"], "$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"}, "displayName": {"type": "string"}}, "required": ["name", "displayName"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "colectores", "displayName" : "colectores"} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "displayName": {"type": "string"}}, "required": ["name", "displayName"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "title": {"type": "string"}, "author": {"type": "string"}}, "required": ["id", "title", "author"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"id" : 1, "title" : "Second Foundation", "author" : "Isaac Asimov"}, {"id" : 2, "title" : "Islands in the Sky", "author" : "Arthur C. Clarke"}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "title": {"type": "string"}, "author": {"type": "string"}}, "required": ["id", "title", "author"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [[1991, 9], [1992, 5], [1993, 7], [1999, 5], [2000, 8], [2001, 11], [2002, 10], [2003, 10], [2004, 10], [2005, 7], [2006, 9], [2007, 8], [2008, 9], [2009, 6], [2010, 8], [2011, 6], [2013, 5], [2014, 7]] | json_instruct | {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "private": {"type": "boolean"}, "run_as_system": {"type": "boolean"}}, "required": ["id", "name", "private", "run_as_system"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "60219902f399852026034c56", "name" : "getStateData", "private" : false, "run_as_system" : true} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "private": {"type": "boolean"}, "run_as_system": {"type": "boolean"}}, "required": ["id", "name", "private", "run_as_system"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"title": {"type": "string"}, "fields": {"type": "array", "items": {"type": "string"}}, "abstract": {"type": "string"}, "citation": {"type": "string"}, "departments": {"type": "array", "items": {"type": "string"}}, "authors": {"type": "array", "items": {"type": "string"}}, "conf": {"type": "string"}, "year": {"type": "string"}, "pages": {"type": "integer"}}, "required": ["title", "fields", "abstract", "citation", "departments", "authors", "conf", "year", "pages"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"title" : "Query expansion for hash-based image object retrieval.", "fields" : ["rolling hash", "hopscotch hashing", "dynamic perfect hashing", "k independent hashing", "feature hashing"], "abstract" : "An efficient indexing method is essential for content-based image retrieval with the exponential growth in large-scale videos and photos. Recently, hash-based methods (e.g., locality sensitive hashing - LSH) have been shown efficient for similarity search. We extend such hash-based methods for retrieving images represented by bags of (high-dimensional) feature points. Though promising, the hash-based image object search suffers from low recall rates. To boost the hash-based search quality, we propose two novel expansion strategies - intra-expansion and inter-expansion . The former expands more target feature points similar to those in the query and the latter mines those feature points that shall co-occur with the search targets but not present in the query. We further exploit variations for the proposed methods. Experimenting in two consumer-photo benchmarks, we will show that the proposed expansion methods are complementary to each other and can collaboratively contribute up to 76.3% (average) relative improvement over the original hash-based method.", "citation" : "Citations (69)", "departments" : ["National Taiwan University", "National Taiwan University", "National Taiwan University", "National Taiwan University"], "authors" : ["Yin-Hsi Kuo.....http://dblp.org/pers/hd/k/Kuo:Yin=Hsi", "Kuan-Ting Chen.....http://dblp.org/pers/hd/c/Chen:Kuan=Ting", "Chien-Hsing Chiang.....http://dblp.org/pers/hd/c/Chiang:Chien=Hsing", "Winston H. Hsu.....http://dblp.org/pers/hd/h/Hsu:Winston_H="], "conf" : "mm", "year" : "2009", "pages" : 10} | json_instruct | {"type": "object", "properties": {"title": {"type": "string"}, "fields": {"type": "array", "items": {"type": "string"}}, "abstract": {"type": "string"}, "citation": {"type": "string"}, "departments": {"type": "array", "items": {"type": "string"}}, "authors": {"type": "array", "items": {"type": "string"}}, "conf": {"type": "string"}, "year": {"type": "string"}, "pages": {"type": "integer"}}, "required": ["title", "fields", "abstract", "citation", "departments", "authors", "conf", "year", "pages"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"Sortable.js": {"type": "string"}, "Sortable.min.js": {"type": "string"}}, "required": ["Sortable.js", "Sortable.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"Sortable.js" : "sha512-+n+NxNz0ovLBJS0mfuIIe4uSsFMsC3oDOeMX70qPnzCI49Zc3w2cocMEMjSQm84cntv85crOOk3RWz+E2kjlsg==", "Sortable.min.js" : "sha512-IGGrc6r6AHov1YW1vYmXP23+LdV+63tnnjhcvR/dp0LX1yMVNB2NegR2IEJ078F2bDIs/mjtPOrIR4K+oJYeWg=="} | json_instruct | {"type": "object", "properties": {"Sortable.js": {"type": "string"}, "Sortable.min.js": {"type": "string"}}, "required": ["Sortable.js", "Sortable.min.js"], "$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"}, "alt_name": {"type": "string"}, "country": {"type": "string"}, "state": {"type": "null"}, "address": {"type": "object", "properties": {"street": {"type": "string"}, "city": {"type": "string"}, "province": {"type": "string"}, "postal_code": {"type": "string"}}, "required": ["street", "city", "province", "postal_code"]}, "contact": {"type": "object", "properties": {"telephone": {"type": "string"}, "website": {"type": "string"}, "email": {"type": "string"}, "fax": {"type": "null"}}, "required": ["telephone", "website", "email", "fax"]}, "funding": {"type": "string"}, "languages": {"type": "null"}, "academic_year": {"type": "string"}, "accrediting_agency": {"type": "null"}}, "required": ["name", "alt_name", "country", "state", "address", "contact", "funding", "languages", "academic_year", "accrediting_agency"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "Ju\u00e1rez University of the State of Durango", "alt_name" : "Universidad Ju\u00e1rez del Estado de Durango (UJED)", "country" : "Mexico", "state" : null, "address" : {"street" : "Constituci\u00f3n, 404, Sur, Zona Centro", "city" : "Durango", "province" : "Durango", "postal_code" : "34000"}, "contact" : {"telephone" : "+52(618) 812-00-44", "website" : "http://www.ujed.mx", "email" : "[email protected]", "fax" : null}, "funding" : "Public", "languages" : null, "academic_year" : "February to November", "accrediting_agency" : null} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "alt_name": {"type": "string"}, "country": {"type": "string"}, "state": {"type": "null"}, "address": {"type": "object", "properties": {"street": {"type": "string"}, "city": {"type": "string"}, "province": {"type": "string"}, "postal_code": {"type": "string"}}, "required": ["street", "city", "province", "postal_code"]}, "contact": {"type": "object", "properties": {"telephone": {"type": "string"}, "website": {"type": "string"}, "email": {"type": "string"}, "fax": {"type": "null"}}, "required": ["telephone", "website", "email", "fax"]}, "funding": {"type": "string"}, "languages": {"type": "null"}, "academic_year": {"type": "string"}, "accrediting_agency": {"type": "null"}}, "required": ["name", "alt_name", "country", "state", "address", "contact", "funding", "languages", "academic_year", "accrediting_agency"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"name": {"type": "string"}, "author": {"type": "string"}, "version": {"type": "string"}, "factorio_version": {"type": "string"}, "title": {"type": "string"}, "title_original": {"type": "string"}, "homepage": {"type": "string"}, "description": {"type": "string"}, "description_original": {"type": "string"}, "dependencies": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "author", "version", "factorio_version", "title", "title_original", "homepage", "description", "description_original", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "AlienWall", "author" : "Vedrit and Carrotcake94", "version" : "0.4.3", "factorio_version" : "0.13", "title" : "\u5f02\u661f\u5899", "title_original" : "Alien Walls", "homepage" : "http://www.factorioforums.com/forum/viewtopic.php?f=32&t=12840", "description" : "\u4eba\u7c7b\u505a\u51fa\u4e86\u5f88\u591a\u6210\u5c31\uff0c\u4f46\u4ecd\u8981\u4ece\u5927\u81ea\u7136\u5bfb\u6c42\u7075\u611f\u3002", "description_original" : "Humanity has made many great advances, but still looks to nature for inspiration. Thanks to users ThaPear, ratchetfreak, and Klonan for help on module healing.", "dependencies" : ["base >= 0.13"]} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "author": {"type": "string"}, "version": {"type": "string"}, "factorio_version": {"type": "string"}, "title": {"type": "string"}, "title_original": {"type": "string"}, "homepage": {"type": "string"}, "description": {"type": "string"}, "description_original": {"type": "string"}, "dependencies": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "author", "version", "factorio_version", "title", "title_original", "homepage", "description", "description_original", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"type": {"type": "string"}, "features": {"type": "array", "items": {"type": "object", "properties": {"geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["type", "coordinates"]}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"cartodb_id": {"type": "integer"}}, "required": ["cartodb_id"]}}, "required": ["geometry", "type", "properties"]}}}, "required": ["type", "features"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"type" : "FeatureCollection", "features" : [{"geometry" : {"type" : "Polygon", "coordinates" : [[[-117.959106, 33.842229], [-117.958932, 33.845627], [-117.941479, 33.835861], [-117.941499, 33.832517], [-117.958955, 33.832527], [-117.959106, 33.842229]]]}, "type" : "Feature", "properties" : {"cartodb_id" : 6835}}]} | 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#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}}, "required": ["start"]}, "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"}, "dependencies": {"type": "object", "properties": {"httpster": {"type": "string"}, "react-tools": {"type": "string"}}, "required": ["httpster", "react-tools"]}}, "required": ["name", "version", "description", "main", "scripts", "repository", "keywords", "author", "license", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "bulletin-board", "version" : "0.0.1", "description" : "A bulletin board developed in React.", "main" : "Note.js", "scripts" : {"start" : "open http://localhost:4521 & httpster -p 4321"}, "repository" : {"type" : "git", "url" : "araphel.github.io"}, "keywords" : ["React"], "author" : "Bartekus", "license" : "MIT", "dependencies" : {"httpster" : "^1.0.1", "react-tools" : "^0.13.3"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}}, "required": ["start"]}, "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"}, "dependencies": {"type": "object", "properties": {"httpster": {"type": "string"}, "react-tools": {"type": "string"}}, "required": ["httpster", "react-tools"]}}, "required": ["name", "version", "description", "main", "scripts", "repository", "keywords", "author", "license", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "cordova": {"type": "object", "properties": {"id": {"type": "string"}, "platforms": {"type": "array", "items": {"type": "string"}}}, "required": ["id", "platforms"]}, "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", "cordova", "repository", "keywords", "author", "license", "bugs", "homepage"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "cordova-plugin-empatica-device", "version" : "1.0.0", "description" : "cordova plugin to connect and get sensor data from Empatica device (especially E4)", "cordova" : {"id" : "cordova-plugin-empatica-device", "platforms" : ["android", "ios"]}, "repository" : {"type" : "git", "url" : "git+https://github.com/mjohan/cordova-plugin-empatica-device.git"}, "keywords" : ["ecosystem:cordova", "cordova-android", "cordova-ios", "empatica", "sensor"], "author" : "Muhammad Johan Alibasa", "license" : "MIT", "bugs" : {"url" : "https://github.com/mjohan/cordova-plugin-empatica-device/issues"}, "homepage" : "https://github.com/mjohan/cordova-plugin-empatica-device#readme"} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "cordova": {"type": "object", "properties": {"id": {"type": "string"}, "platforms": {"type": "array", "items": {"type": "string"}}}, "required": ["id", "platforms"]}, "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", "cordova", "repository", "keywords", "author", "license", "bugs", "homepage"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"stationId": {"type": "integer"}, "stationGroupId": {"type": "integer"}, "name": {"type": "string"}, "lineId": {"type": "integer"}, "zipCode": {"type": "string"}, "pref": {"type": "string"}, "city": {"type": "string"}, "town": {"type": "string"}, "longitude": {"type": "number"}, "latitude": {"type": "number"}, "status": {"type": "integer"}}, "required": ["stationId", "stationGroupId", "name", "lineId", "zipCode", "pref", "city", "town", "longitude", "latitude", "status"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"stationId" : 2600304, "stationGroupId" : 2600304, "name" : "\u99d2\u6ca2\u5927\u5b66", "lineId" : 26003, "zipCode" : "154-0011", "pref" : "\u6771\u4eac\u90fd", "city" : "\u4e16\u7530\u8c37\u533a", "town" : "\u4e0a\u99ac", "longitude" : 139.661702, "latitude" : 35.633471, "status" : 0} | json_instruct | {"type": "object", "properties": {"stationId": {"type": "integer"}, "stationGroupId": {"type": "integer"}, "name": {"type": "string"}, "lineId": {"type": "integer"}, "zipCode": {"type": "string"}, "pref": {"type": "string"}, "city": {"type": "string"}, "town": {"type": "string"}, "longitude": {"type": "number"}, "latitude": {"type": "number"}, "status": {"type": "integer"}}, "required": ["stationId", "stationGroupId", "name", "lineId", "zipCode", "pref", "city", "town", "longitude", "latitude", "status"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"EXT_DRI0039.DRI0039Init|block": {"type": "string"}, "EXT_DRI0039.DRI0039Init1|block": {"type": "string"}, "EXT_DRI0039.DRI0039Init2|block": {"type": "string"}, "EXT_DRI0039.DRI0039Init3|block": {"type": "string"}, "EXT_DRI0039.FR.CW|menu": {"type": "string"}, "EXT_DRI0039.FR.CCW|menu": {"type": "string"}, "EXT_DRI0039.MOTOR.M1|menu": {"type": "string"}, "EXT_DRI0039.MOTOR.M2|menu": {"type": "string"}, "EXT_DRI0039.MOTOR.M3|menu": {"type": "string"}, "EXT_DRI0039.MOTOR.M4|menu": {"type": "string"}}, "required": ["EXT_DRI0039.DRI0039Init|block", "EXT_DRI0039.DRI0039Init1|block", "EXT_DRI0039.DRI0039Init2|block", "EXT_DRI0039.DRI0039Init3|block", "EXT_DRI0039.FR.CW|menu", "EXT_DRI0039.FR.CCW|menu", "EXT_DRI0039.MOTOR.M1|menu", "EXT_DRI0039.MOTOR.M2|menu", "EXT_DRI0039.MOTOR.M3|menu", "EXT_DRI0039.MOTOR.M4|menu"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"EXT_DRI0039.DRI0039Init|block" : "\u521d\u59cb\u5316\u9a6c\u8fbe\u9a71\u52a8\u6a21\u5757\u7684\u9a6c\u8fbe1\u901f\u5ea6\u811a\u4e3a[E1]\u9a6c\u8fbe1\u65b9\u5411\u811a\u4e3a[M1]\u9a6c\u8fbe2\u901f\u5ea6\u811a\u4e3a[E2]\u9a6c\u8fbe2\u65b9\u5411\u811a\u4e3a[M2]\u9a6c\u8fbe3\u901f\u5ea6\u811a\u4e3a[E3]\u9a6c\u8fbe3\u65b9\u5411\u811a\u4e3a[M3]\u9a6c\u8fbe4\u901f\u5ea6\u811a\u4e3a[E4]\u9a6c\u8fbe4\u65b9\u5411\u811a\u4e3a[M4]", "EXT_DRI0039.DRI0039Init1|block" : "\u9a6c\u8fbe\u9a71\u52a8\u6a21\u5757\u7684[MOTOR]\u4ee5[SPEED]\u901f\u5ea6[FR]", "EXT_DRI0039.DRI0039Init2|block" : "\u9a6c\u8fbe\u9a71\u52a8\u6a21\u5757\u7684[MOTOR]\u505c\u6b62", "EXT_DRI0039.DRI0039Init3|block" : "\u91ca\u653e\u9a6c\u8fbe\u9a71\u52a8\u6a21\u5757\u7cfb\u7edf\u8d44\u6e90", "EXT_DRI0039.FR.CW|menu" : "\u6b63\u8f6c", "EXT_DRI0039.FR.CCW|menu" : "\u53cd\u8f6c", "EXT_DRI0039.MOTOR.M1|menu" : "\u9a6c\u8fbe1", "EXT_DRI0039.MOTOR.M2|menu" : "\u9a6c\u8fbe2", "EXT_DRI0039.MOTOR.M3|menu" : "\u9a6c\u8fbe3", "EXT_DRI0039.MOTOR.M4|menu" : "\u9a6c\u8fbe4"} | json_instruct | {"type": "object", "properties": {"EXT_DRI0039.DRI0039Init|block": {"type": "string"}, "EXT_DRI0039.DRI0039Init1|block": {"type": "string"}, "EXT_DRI0039.DRI0039Init2|block": {"type": "string"}, "EXT_DRI0039.DRI0039Init3|block": {"type": "string"}, "EXT_DRI0039.FR.CW|menu": {"type": "string"}, "EXT_DRI0039.FR.CCW|menu": {"type": "string"}, "EXT_DRI0039.MOTOR.M1|menu": {"type": "string"}, "EXT_DRI0039.MOTOR.M2|menu": {"type": "string"}, "EXT_DRI0039.MOTOR.M3|menu": {"type": "string"}, "EXT_DRI0039.MOTOR.M4|menu": {"type": "string"}}, "required": ["EXT_DRI0039.DRI0039Init|block", "EXT_DRI0039.DRI0039Init1|block", "EXT_DRI0039.DRI0039Init2|block", "EXT_DRI0039.DRI0039Init3|block", "EXT_DRI0039.FR.CW|menu", "EXT_DRI0039.FR.CCW|menu", "EXT_DRI0039.MOTOR.M1|menu", "EXT_DRI0039.MOTOR.M2|menu", "EXT_DRI0039.MOTOR.M3|menu", "EXT_DRI0039.MOTOR.M4|menu"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"title": {"type": "string"}, "fields": {"type": "array", "items": {"type": "string"}}, "abstract": {"type": "null"}, "citation": {"type": "string"}, "departments": {"type": "array", "items": {"type": "string"}}, "authors": {"type": "array", "items": {"type": "string"}}, "conf": {"type": "string"}, "year": {"type": "string"}, "pages": {"type": "integer"}}, "required": ["title", "fields", "abstract", "citation", "departments", "authors", "conf", "year", "pages"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"title" : "On Validation and Predictability of Digital Badges' Influence on Individual Users.", "fields" : ["computer science", "predictability", "artificial intelligence", "machine learning"], "abstract" : null, "citation" : "Not cited", "departments" : ["Norwegian University of Science and Technology", "Norwegian University of Science and Technology"], "authors" : ["Tomasz Kusmierczyk.....http://dblp.org/pers/hd/k/Kusmierczyk:Tomasz", "Kjetil N\u00f8rv\u00e5g.....http://dblp.org/pers/hd/n/N=oslash=rv=aring=g:Kjetil"], "conf" : "aaai", "year" : "2018", "pages" : 8} | json_instruct | {"type": "object", "properties": {"title": {"type": "string"}, "fields": {"type": "array", "items": {"type": "string"}}, "abstract": {"type": "null"}, "citation": {"type": "string"}, "departments": {"type": "array", "items": {"type": "string"}}, "authors": {"type": "array", "items": {"type": "string"}}, "conf": {"type": "string"}, "year": {"type": "string"}, "pages": {"type": "integer"}}, "required": ["title", "fields", "abstract", "citation", "departments", "authors", "conf", "year", "pages"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "text": {"type": "string"}}, "required": ["id", "text"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"id" : "522722101200", "text" : "\u671d\u9633\u6751\u59d4\u4f1a"}, {"id" : "522722101201", "text" : "\u516b\u70c2\u6751\u59d4\u4f1a"}, {"id" : "522722101202", "text" : "\u677f\u9ea6\u6751\u59d4\u4f1a"}, {"id" : "522722101203", "text" : "\u5c9c\u9a6c\u6751\u59d4\u4f1a"}, {"id" : "522722101204", "text" : "\u6d2a\u6c5f\u6751\u59d4\u4f1a"}, {"id" : "522722101205", "text" : "\u5c71\u6c5f\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#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"id": {"type": "integer"}, "children": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}}, "required": ["id", "name"]}}, "name": {"type": "string"}}, "required": ["id", "children", "name"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : 17036, "children" : [{"id" : 17037, "name" : "Groddeck, Georg -- and Ferenczi"}], "name" : "Groddeck, Georg"} | json_instruct | {"type": "object", "properties": {"id": {"type": "integer"}, "children": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}}, "required": ["id", "name"]}}, "name": {"type": "string"}}, "required": ["id", "children", "name"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "start": {"type": "string"}}, "required": ["test", "start"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}, "homepage": {"type": "string"}, "dependencies": {"type": "object", "properties": {"axios": {"type": "string"}, "body-parser": {"type": "string"}, "bootstrap": {"type": "string"}, "bull": {"type": "string"}, "cors": {"type": "string"}, "crypto": {"type": "string"}, "dotenv": {"type": "string"}, "express": {"type": "string"}, "firebase-admin": {"type": "string"}, "http-assert": {"type": "string"}, "http-errors": {"type": "string"}, "knex": {"type": "string"}, "lodash": {"type": "string"}, "moment": {"type": "string"}, "morgan": {"type": "string"}, "multiparty": {"type": "string"}, "mysql": {"type": "string"}, "node-rsa": {"type": "string"}, "nodemon": {"type": "string"}, "qs": {"type": "string"}, "querystring": {"type": "string"}, "soap": {"type": "string"}, "socket.io": {"type": "string"}, "socket.io-client": {"type": "string"}}, "required": ["axios", "body-parser", "bootstrap", "bull", "cors", "crypto", "dotenv", "express", "firebase-admin", "http-assert", "http-errors", "knex", "lodash", "moment", "morgan", "multiparty", "mysql", "node-rsa", "nodemon", "qs", "querystring", "soap", "socket.io", "socket.io-client"]}}, "required": ["name", "version", "description", "main", "scripts", "repository", "keywords", "author", "license", "homepage", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "q-banbung", "version" : "1.0.0", "description" : "q system banbung hospital", "main" : "index.js", "scripts" : {"test" : "echo \"Error: no test specified\" && exit 1", "start" : "node server.js"}, "repository" : {"type" : "git", "url" : "git+https://[email protected]/M_ComScience/q-banbung.git"}, "keywords" : ["q-banbung", "yii2-framwork\u001b[D\u001b[D\u001b[D\u001b[De\u001b[C\u001b[C\u001b[C\u001b[C\u001b[D"], "author" : "MComScience", "license" : "ISC", "homepage" : "https://bitbucket.org/M_ComScience/q-banbung#readme", "dependencies" : {"axios" : "^0.21.1", "body-parser" : "^1.19.0", "bootstrap" : "^3.4.1", "bull" : "^3.22.7", "cors" : "^2.8.5", "crypto" : "^1.0.1", "dotenv" : "^8.6.0", "express" : "^4.17.1", "firebase-admin" : "^9.9.0", "http-assert" : "^1.5.0", "http-errors" : "^1.8.0", "knex" : "^0.95.5", "lodash" : "^4.17.21", "moment" : "^2.29.1", "morgan" : "^1.10.0", "multiparty" : "^4.2.2", "mysql" : "^2.18.1", "node-rsa" : "^1.1.1", "nodemon" : "^1.19.4", "qs" : "^6.10.1", "querystring" : "^0.2.1", "soap" : "^0.42.0", "socket.io" : "^4.1.3", "socket.io-client" : "^4.2.0"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "start": {"type": "string"}}, "required": ["test", "start"]}, "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"}, "homepage": {"type": "string"}, "dependencies": {"type": "object", "properties": {"axios": {"type": "string"}, "body-parser": {"type": "string"}, "bootstrap": {"type": "string"}, "bull": {"type": "string"}, "cors": {"type": "string"}, "crypto": {"type": "string"}, "dotenv": {"type": "string"}, "express": {"type": "string"}, "firebase-admin": {"type": "string"}, "http-assert": {"type": "string"}, "http-errors": {"type": "string"}, "knex": {"type": "string"}, "lodash": {"type": "string"}, "moment": {"type": "string"}, "morgan": {"type": "string"}, "multiparty": {"type": "string"}, "mysql": {"type": "string"}, "node-rsa": {"type": "string"}, "nodemon": {"type": "string"}, "qs": {"type": "string"}, "querystring": {"type": "string"}, "soap": {"type": "string"}, "socket.io": {"type": "string"}, "socket.io-client": {"type": "string"}}, "required": ["axios", "body-parser", "bootstrap", "bull", "cors", "crypto", "dotenv", "express", "firebase-admin", "http-assert", "http-errors", "knex", "lodash", "moment", "morgan", "multiparty", "mysql", "node-rsa", "nodemon", "qs", "querystring", "soap", "socket.io", "socket.io-client"]}}, "required": ["name", "version", "description", "main", "scripts", "repository", "keywords", "author", "license", "homepage", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"config": {"type": "object", "properties": {"error": {"type": "object", "properties": {"cannot_connect": {"type": "string"}, "invalid_api_key": {"type": "string"}, "rate_limited": {"type": "string"}, "unknown": {"type": "string"}}, "required": ["cannot_connect", "invalid_api_key", "rate_limited", "unknown"]}, "step": {"type": "object", "properties": {"user": {"type": "object", "properties": {"data": {"type": "object", "properties": {"api_key": {"type": "string"}, "location": {"type": "string"}, "name": {"type": "string"}}, "required": ["api_key", "location", "name"]}, "description": {"type": "string"}}, "required": ["data", "description"]}}, "required": ["user"]}}, "required": ["error", "step"]}, "options": {"type": "object", "properties": {"step": {"type": "object", "properties": {"init": {"type": "object", "properties": {"data": {"type": "object", "properties": {"timestep": {"type": "string"}}, "required": ["timestep"]}, "description": {"type": "string"}, "title": {"type": "string"}}, "required": ["data", "description", "title"]}}, "required": ["init"]}}, "required": ["step"]}}, "required": ["config", "options"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"config" : {"error" : {"cannot_connect" : "\u00c9chec de connexion", "invalid_api_key" : "Cl\u00e9 d'API non valide", "rate_limited" : "Nombre maximal de tentatives de connexion d\u00e9pass\u00e9, veuillez r\u00e9essayer ult\u00e9rieurement.", "unknown" : "Erreur inattendue"}, "step" : {"user" : {"data" : {"api_key" : "Cl\u00e9 d'API", "location" : "Emplacement", "name" : "Nom"}, "description" : "Pour obtenir une cl\u00e9 d'API, inscrivez-vous sur [Tomorrow.io](https://app.tomorrow.io/signup)."}}}, "options" : {"step" : {"init" : {"data" : {"timestep" : "Min. entre les pr\u00e9visions NowCast"}, "description" : "Si vous choisissez d'activer l'entit\u00e9 de pr\u00e9vision \u00ab\u00a0nowcast\u00a0\u00bb, vous pouvez configurer le nombre de minutes entre chaque pr\u00e9vision. Le nombre de pr\u00e9visions fournies d\u00e9pend du nombre de minutes choisies entre les pr\u00e9visions.", "title" : "Mettre \u00e0 jour les options de Tomorrow.io"}}}} | json_instruct | {"type": "object", "properties": {"config": {"type": "object", "properties": {"error": {"type": "object", "properties": {"cannot_connect": {"type": "string"}, "invalid_api_key": {"type": "string"}, "rate_limited": {"type": "string"}, "unknown": {"type": "string"}}, "required": ["cannot_connect", "invalid_api_key", "rate_limited", "unknown"]}, "step": {"type": "object", "properties": {"user": {"type": "object", "properties": {"data": {"type": "object", "properties": {"api_key": {"type": "string"}, "location": {"type": "string"}, "name": {"type": "string"}}, "required": ["api_key", "location", "name"]}, "description": {"type": "string"}}, "required": ["data", "description"]}}, "required": ["user"]}}, "required": ["error", "step"]}, "options": {"type": "object", "properties": {"step": {"type": "object", "properties": {"init": {"type": "object", "properties": {"data": {"type": "object", "properties": {"timestep": {"type": "string"}}, "required": ["timestep"]}, "description": {"type": "string"}, "title": {"type": "string"}}, "required": ["data", "description", "title"]}}, "required": ["init"]}}, "required": ["step"]}}, "required": ["config", "options"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"citations": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "cite": {"type": "string"}}, "required": ["type", "cite"]}}}, "required": ["citations"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"citations" : [{"type" : "official", "cite" : "36 N.Y. Crim. 450"}, {"type" : "parallel", "cite" : "171 N.Y. Supp. 157"}]} | json_instruct | {"type": "object", "properties": {"citations": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "cite": {"type": "string"}}, "required": ["type", "cite"]}}}, "required": ["citations"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"address": {"type": "string"}, "cert_auth_type": {"type": "string"}, "cert_sign": {"type": "string"}, "cert_user_id": {"type": "string"}, "files": {"type": "object", "properties": {"data.json": {"type": "object", "properties": {"sha512": {"type": "string"}, "size": {"type": "integer"}}, "required": ["sha512", "size"]}}, "required": ["data.json"]}, "inner_path": {"type": "string"}, "modified": {"type": "number"}, "signs": {"type": "object", "properties": {"17PEsA5Hdm58LNzimvoFYEfgq3yWJ6WWaY": {"type": "string"}}, "required": ["17PEsA5Hdm58LNzimvoFYEfgq3yWJ6WWaY"]}}, "required": ["address", "cert_auth_type", "cert_sign", "cert_user_id", "files", "inner_path", "modified", "signs"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"address" : "1TaLkFrMwvbNsooF4ioKAY9EuxTBTjipT", "cert_auth_type" : "web", "cert_sign" : "HE3Zpj+lMa6PJi+6JbI20AP2DlhpbsE1kef77nCnK3lIRg6RN0ZpfBfkyp7FJf+2Ownkg1MIAH+VmtziNXKK8xs=", "cert_user_id" : "[email protected]", "files" : {"data.json" : {"sha512" : "e05d8fa34e51ac9469f53ad6ec4940b4c20b1f59a0f21bbca937719c5fb9688d", "size" : 243}}, "inner_path" : "data/users/17PEsA5Hdm58LNzimvoFYEfgq3yWJ6WWaY/content.json", "modified" : 1482055253.767, "signs" : {"17PEsA5Hdm58LNzimvoFYEfgq3yWJ6WWaY" : "HHGxFY4WP4+/qDrexE2rNTUKMO2h+c2r4+O9iK6vIANzpIobniJgWORDjYsoTipW50WWXFPEtE746XZtggOMco0="}} | 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": {"data.json": {"type": "object", "properties": {"sha512": {"type": "string"}, "size": {"type": "integer"}}, "required": ["sha512", "size"]}}, "required": ["data.json"]}, "inner_path": {"type": "string"}, "modified": {"type": "number"}, "signs": {"type": "object", "properties": {"17PEsA5Hdm58LNzimvoFYEfgq3yWJ6WWaY": {"type": "string"}}, "required": ["17PEsA5Hdm58LNzimvoFYEfgq3yWJ6WWaY"]}}, "required": ["address", "cert_auth_type", "cert_sign", "cert_user_id", "files", "inner_path", "modified", "signs"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [[1985, 13], [1986, 63], [1987, 9]] | json_instruct | {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"cSpell.words": {"type": "array", "items": {"type": "string"}}}, "required": ["cSpell.words"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"cSpell.words" : ["alph", "arange", "disp", "numpy", "pyplot", "rcdefaults", "srch", "tablefmt", "tfilename", "tqdm", "xlabel", "xlrd", "xticks", "ylabel"]} | json_instruct | {"type": "object", "properties": {"cSpell.words": {"type": "array", "items": {"type": "string"}}}, "required": ["cSpell.words"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "role": {"type": "string"}, "name": {"type": "string"}, "password": {"type": "string"}}, "required": ["id", "role", "name", "password"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"id" : 1, "role" : "administrator", "name" : "user-admin01", "password" : "pbkdf2:sha256:150000$uruHRLDK$e7291b6efdd7439668e47fbd509e9fadad0cd7511073fb47d9846161c9605e20"}, {"id" : 2, "role" : "editor", "name" : "user-editor01", "password" : "pbkdf2:sha256:150000$uruHRLDK$e7291b6efdd7439668e47fbd509e9fadad0cd7511073fb47d9846161c9605e20"}, {"id" : 3, "role" : "author", "name" : "user-author01", "password" : "pbkdf2:sha256:150000$uruHRLDK$e7291b6efdd7439668e47fbd509e9fadad0cd7511073fb47d9846161c9605e20"}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "role": {"type": "string"}, "name": {"type": "string"}, "password": {"type": "string"}}, "required": ["id", "role", "name", "password"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"name": {"type": "string"}, "main": {"type": "string"}, "version": {"type": "string"}, "homepage": {"type": "string"}, "ignore": {"type": "array", "items": {"type": "string"}}, "dependencies": {"type": "object", "properties": {"lodash": {"type": "string"}}, "required": ["lodash"]}}, "required": ["name", "main", "version", "homepage", "ignore", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "angular-lodash", "main" : "angular-lodash.js", "version" : "0.1.2", "homepage" : "https://github.com/cabrel/angular-lodash", "ignore" : ["**/.*", "node_modules", "bower_components", "test", "tests"], "dependencies" : {"lodash" : "~2.4.1"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "main": {"type": "string"}, "version": {"type": "string"}, "homepage": {"type": "string"}, "ignore": {"type": "array", "items": {"type": "string"}}, "dependencies": {"type": "object", "properties": {"lodash": {"type": "string"}}, "required": ["lodash"]}}, "required": ["name", "main", "version", "homepage", "ignore", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"runtime": {"type": "string"}, "envvars": {"type": "array", "items": {}}, "config": {"type": "object", "properties": {}, "required": []}}, "required": ["runtime", "envvars", "config"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"runtime" : "dotnet", "envvars" : [], "config" : {}} | json_instruct | {"type": "object", "properties": {"runtime": {"type": "string"}, "envvars": {"type": "array", "items": {}}, "config": {"type": "object", "properties": {}, "required": []}}, "required": ["runtime", "envvars", "config"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"shadow": {"type": "object", "properties": {"elements": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "name": {"type": "string"}, "selector": {"type": "object", "properties": {"css": {"type": "string"}}, "required": ["css"]}, "public": {"type": "boolean"}}, "required": ["type", "name", "selector", "public"]}}}, "required": ["elements"]}, "elements": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "name": {"type": "string"}, "selector": {"type": "object", "properties": {"css": {"type": "string"}}, "required": ["css"]}, "public": {"type": "boolean"}}, "required": ["type", "name", "selector", "public"]}}}, "required": ["shadow", "elements"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"shadow" : {"elements" : [{"type" : "utam-records/pageObjects/recordLayoutEventBroker", "name" : "eventBroker", "selector" : {"css" : "records-record-layout-event-broker"}, "public" : true}]}, "elements" : [{"type" : "utam-flexipage/pageObjects/recordHomeTemplateDesktop2", "name" : "templateDesktop2", "selector" : {"css" : "flexipage-record-home-template-desktop2"}, "public" : true}]} | json_instruct | {"type": "object", "properties": {"shadow": {"type": "object", "properties": {"elements": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "name": {"type": "string"}, "selector": {"type": "object", "properties": {"css": {"type": "string"}}, "required": ["css"]}, "public": {"type": "boolean"}}, "required": ["type", "name", "selector", "public"]}}}, "required": ["elements"]}, "elements": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "name": {"type": "string"}, "selector": {"type": "object", "properties": {"css": {"type": "string"}}, "required": ["css"]}, "public": {"type": "boolean"}}, "required": ["type", "name", "selector", "public"]}}}, "required": ["shadow", "elements"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "version": {"type": "string"}, "license": {"type": "string"}, "type": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}}, "require": {"type": "object", "properties": {"php": {"type": "string"}, "modulusphp/framework": {"type": "string"}}, "required": ["php", "modulusphp/framework"]}, "autoload": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"App\\": {"type": "string"}, "Tests\\": {"type": "string"}}, "required": ["App\\", "Tests\\"]}, "files": {"type": "array", "items": {"type": "string"}}}, "required": ["psr-4", "files"]}, "scripts": {"type": "object", "properties": {"post-root-package-install": {"type": "array", "items": {"type": "string"}}, "post-create-project-cmd": {"type": "array", "items": {"type": "string"}}, "post-install-cmd": {"type": "array", "items": {"type": "string"}}, "post-update-cmd": {"type": "array", "items": {"type": "string"}}}, "required": ["post-root-package-install", "post-create-project-cmd", "post-install-cmd", "post-update-cmd"]}, "config": {"type": "object", "properties": {"preferred-install": {"type": "string"}, "sort-packages": {"type": "boolean"}, "optimize-autoloader": {"type": "boolean"}}, "required": ["preferred-install", "sort-packages", "optimize-autoloader"]}, "minimum-stability": {"type": "string"}, "prefer-stable": {"type": "boolean"}}, "required": ["name", "description", "keywords", "version", "license", "type", "authors", "require", "autoload", "scripts", "config", "minimum-stability", "prefer-stable"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "modulusphp/modulusphp", "description" : "A cool API Framework for PHP", "keywords" : ["framework", "modulusphp", "modulus", "api", "php"], "version" : "1.9.9.5", "license" : "MIT", "type" : "project", "authors" : [{"name" : "Donald Pakkies", "email" : "[email protected]"}], "require" : {"php" : ">=7.3.0", "modulusphp/framework" : "1.9.*"}, "autoload" : {"psr-4" : {"App\\" : "app/", "Tests\\" : "tests/"}, "files" : ["bootstrap/app.php"]}, "scripts" : {"post-root-package-install" : ["@php -r \"file_exists('.env') || copy('.env.example', '.env');\""], "post-create-project-cmd" : ["@php craftsman key:generate", "@php craftsman docsify:link"], "post-install-cmd" : ["composer dump-autoload -o"], "post-update-cmd" : ["composer dump-autoload -o"]}, "config" : {"preferred-install" : "dist", "sort-packages" : true, "optimize-autoloader" : true}, "minimum-stability" : "stable", "prefer-stable" : true} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "version": {"type": "string"}, "license": {"type": "string"}, "type": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}}, "require": {"type": "object", "properties": {"php": {"type": "string"}, "modulusphp/framework": {"type": "string"}}, "required": ["php", "modulusphp/framework"]}, "autoload": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"App\\": {"type": "string"}, "Tests\\": {"type": "string"}}, "required": ["App\\", "Tests\\"]}, "files": {"type": "array", "items": {"type": "string"}}}, "required": ["psr-4", "files"]}, "scripts": {"type": "object", "properties": {"post-root-package-install": {"type": "array", "items": {"type": "string"}}, "post-create-project-cmd": {"type": "array", "items": {"type": "string"}}, "post-install-cmd": {"type": "array", "items": {"type": "string"}}, "post-update-cmd": {"type": "array", "items": {"type": "string"}}}, "required": ["post-root-package-install", "post-create-project-cmd", "post-install-cmd", "post-update-cmd"]}, "config": {"type": "object", "properties": {"preferred-install": {"type": "string"}, "sort-packages": {"type": "boolean"}, "optimize-autoloader": {"type": "boolean"}}, "required": ["preferred-install", "sort-packages", "optimize-autoloader"]}, "minimum-stability": {"type": "string"}, "prefer-stable": {"type": "boolean"}}, "required": ["name", "description", "keywords", "version", "license", "type", "authors", "require", "autoload", "scripts", "config", "minimum-stability", "prefer-stable"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"products": {"type": "array", "items": {"type": "object", "properties": {"title": {"type": "string"}, "author": {"type": "string"}, "price": {"type": "string"}, "image": {"type": "string"}, "description": {"type": "string"}}, "required": ["title", "author", "price", "image", "description"]}}}, "required": ["products"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"products" : [{"title" : "Clean Architecture: A Craftsman's Guide to Software Structure and Design", "author" : "Robert C. Martin", "price" : "22.98 \u20ac", "image" : "https://books.google.com/books/content/images/frontcover/uGE1DwAAQBAJ?fife=w400-h600", "description" : "Practical Software Architecture Solutions from the Legendary Robert C. Martin (\u201cUncle Bob\u201d). By applying universal rules of software architecture, you can dramatically improve developer productivity throughout the life of any software system. Now, building upon the success of his best-selling books Clean Code and The Clean Coder, legendary software craftsman Robert C. Martin (\u201cUncle Bob\u201d) reveals those rules and helps you apply them."}, {"title" : "Pro Git: Edition 2", "author" : "Scott Chacon, Ben Straub", "price" : "Free", "image" : "https://books.google.com/books/content/images/frontcover/jVYnCgAAQBAJ?fife=w400-h600", "description" : "Pro Git (Second Edition) is your fully-updated guide to Git and its usage in the modern world. Git has come a long way since it was first developed by Linus Torvalds for Linux kernel development. It has taken the open source world by storm since its inception in 2005, and this book teaches you how to use it like a pro."}]} | json_instruct | {"type": "object", "properties": {"products": {"type": "array", "items": {"type": "object", "properties": {"title": {"type": "string"}, "author": {"type": "string"}, "price": {"type": "string"}, "image": {"type": "string"}, "description": {"type": "string"}}, "required": ["title", "author", "price", "image", "description"]}}}, "required": ["products"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"inferno-component.js": {"type": "string"}, "inferno-component.min.js": {"type": "string"}}, "required": ["inferno-component.js", "inferno-component.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"inferno-component.js" : "sha512-S05UbqTnFu5FC5tv3Kn1So18WmvBGqT1HwX3h3vVPKyEz62WtQYdQp0GcneZa82vz1I32Z2xiqMhcXRxdA/4SA==", "inferno-component.min.js" : "sha512-EpmWfQqtNWk+puNL5IY+HobKcdYZZjycOBl2hJyCWPlM20CPOhX9b/ntFx/tk4XhNojdvXnzmjQz8SKA/uzngg=="} | json_instruct | {"type": "object", "properties": {"inferno-component.js": {"type": "string"}, "inferno-component.min.js": {"type": "string"}}, "required": ["inferno-component.js", "inferno-component.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"categories": {"type": "array", "items": {"type": "string"}}, "desc": {"type": "string"}, "details": {"type": "object", "properties": {"authors": {"type": "string"}, "format": {"type": "string"}, "isbn-10": {"type": "string"}, "isbn-13": {"type": "string"}, "pages": {"type": "string"}, "publication date": {"type": "string"}, "publisher": {"type": "string"}, "size": {"type": "string"}}, "required": ["authors", "format", "isbn-10", "isbn-13", "pages", "publication date", "publisher", "size"]}, "img": {"type": "string"}, "link": {"type": "string"}, "title": {"type": "string"}}, "required": ["categories", "desc", "details", "img", "link", "title"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"categories" : ["Manual", "Mobile Development", "Programming"], "desc" : " Android development is hot, and many programmers are interested in joining the fun. However, because this technology is based on Java, you should first obtain a solid grasp of the Java language and its foundational APIs to improve your chances of succeeding as an Android app developer. After all, you will be busy learning the architecture of an Android app, the various Android-specific APIs, and Android-specific tools. If you do not already know Java fundamentals, you will probably end up with a massive headache from also having to quickly cram those fundamentals into your knowledge base. \u00a0 ", "details" : {"authors" : "Jeff Friesen", "format" : "pdf", "isbn-10" : "1430231564", "isbn-13" : "978-1430231561", "pages" : "656 pages", "publication date" : "September 30, 2010", "publisher" : "Apress", "size" : "9.00Mb"}, "img" : "http://23.95.221.108/covers/25/2547ef833d7130d7c8efad0240424449.jpg", "link" : "https://rapidhosting.info/files/egq", "title" : "Learn Java for Android Development"} | json_instruct | {"type": "object", "properties": {"categories": {"type": "array", "items": {"type": "string"}}, "desc": {"type": "string"}, "details": {"type": "object", "properties": {"authors": {"type": "string"}, "format": {"type": "string"}, "isbn-10": {"type": "string"}, "isbn-13": {"type": "string"}, "pages": {"type": "string"}, "publication date": {"type": "string"}, "publisher": {"type": "string"}, "size": {"type": "string"}}, "required": ["authors", "format", "isbn-10", "isbn-13", "pages", "publication date", "publisher", "size"]}, "img": {"type": "string"}, "link": {"type": "string"}, "title": {"type": "string"}}, "required": ["categories", "desc", "details", "img", "link", "title"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"expireTime": {"type": "integer"}, "key": {"type": "string"}, "val": {"type": "object", "properties": {"src": {"type": "string"}, "width": {"type": "integer"}, "height": {"type": "integer"}, "aspectRatio": {"type": "number"}, "originalName": {"type": "string"}}, "required": ["src", "width", "height", "aspectRatio", "originalName"]}}, "required": ["expireTime", "key", "val"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"expireTime" : 9007200893215879000, "key" : "d85512b0b9ce8d33ff86606608d65c53{\"duotone\":false,\"grayscale\":false,\"rotate\":0,\"toFormat\":\"jpg\",\"toFormatBase64\":\"\",\"width\":20,\"height\":13}", "val" : {"src" : "data:image/jpeg;base64,/9j/2wBDABALDA4MChAODQ4SERATGCgaGBYWGDEjJR0oOjM9PDkzODdASFxOQERXRTc4UG1RV19iZ2hnPk1xeXBkeFxlZ2P/2wBDARESEhgVGC8aGi9jQjhCY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2P/wgARCAANABQDASIAAhEBAxEB/8QAFwABAQEBAAAAAAAAAAAAAAAAAAIDBf/EABYBAQEBAAAAAAAAAAAAAAAAAAABBP/aAAwDAQACEAMQAAAB5FZpppI//8QAFRABAQAAAAAAAAAAAAAAAAAAASD/2gAIAQEAAQUCK//EABQRAQAAAAAAAAAAAAAAAAAAABD/2gAIAQMBAT8BP//EABQRAQAAAAAAAAAAAAAAAAAAABD/2gAIAQIBAT8BP//EABQQAQAAAAAAAAAAAAAAAAAAACD/2gAIAQEABj8CX//EABcQAQEBAQAAAAAAAAAAAAAAABEAEAH/2gAIAQEAAT8h4ZnHP//aAAwDAQACAAMAAAAQFz//xAAWEQEBAQAAAAAAAAAAAAAAAAAAARH/2gAIAQMBAT8Qla//xAAUEQEAAAAAAAAAAAAAAAAAAAAQ/9oACAECAQE/ED//xAAYEAADAQEAAAAAAAAAAAAAAAAAARExIf/aAAgBAQABPxB1TV2GR96JlFP/2Q==", "width" : 20, "height" : 13, "aspectRatio" : 1.5384615384615385, "originalName" : "joanna-kosinska-254406-unsplash.jpg"}} | json_instruct | {"type": "object", "properties": {"expireTime": {"type": "integer"}, "key": {"type": "string"}, "val": {"type": "object", "properties": {"src": {"type": "string"}, "width": {"type": "integer"}, "height": {"type": "integer"}, "aspectRatio": {"type": "number"}, "originalName": {"type": "string"}}, "required": ["src", "width", "height", "aspectRatio", "originalName"]}}, "required": ["expireTime", "key", "val"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"device_automation": {"type": "object", "properties": {"trigger_type": {"type": "object", "properties": {"locked": {"type": "string"}, "unlocked": {"type": "string"}}, "required": ["locked", "unlocked"]}}, "required": ["trigger_type"]}}, "required": ["device_automation"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"device_automation" : {"trigger_type" : {"locked" : "{entity_name} fechada", "unlocked" : "{entity_name} aberta"}}} | json_instruct | {"type": "object", "properties": {"device_automation": {"type": "object", "properties": {"trigger_type": {"type": "object", "properties": {"locked": {"type": "string"}, "unlocked": {"type": "string"}}, "required": ["locked", "unlocked"]}}, "required": ["trigger_type"]}}, "required": ["device_automation"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"resources/scripts/test.ts": {"type": "object", "properties": {"file": {"type": "string"}, "src": {"type": "string"}, "isEntry": {"type": "boolean"}, "css": {"type": "array", "items": {"type": "string"}}}, "required": ["file", "src", "isEntry", "css"]}}, "required": ["resources/scripts/test.ts"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"resources/scripts/test.ts" : {"file" : "assets/test.a2c636dd.js", "src" : "resources/scripts/test.ts", "isEntry" : true, "css" : ["assets/test.65bd481b.css"]}} | json_instruct | {"type": "object", "properties": {"resources/scripts/test.ts": {"type": "object", "properties": {"file": {"type": "string"}, "src": {"type": "string"}, "isEntry": {"type": "boolean"}, "css": {"type": "array", "items": {"type": "string"}}}, "required": ["file", "src", "isEntry", "css"]}}, "required": ["resources/scripts/test.ts"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"frame_id": {"type": "integer"}, "walking": {"type": "string"}, "video_id": {"type": "string"}, "bbs": {"type": "array", "items": {"type": "object", "properties": {"artwork_id": {"type": "string"}, "right": {"type": "number"}, "bottom": {"type": "number"}, "top": {"type": "number"}, "confidence": {"type": "integer"}, "recognized": {"type": "boolean"}, "bb_big_enough": {"type": "boolean"}, "class": {"type": "string"}, "left": {"type": "number"}}, "required": ["artwork_id", "right", "bottom", "top", "confidence", "recognized", "bb_big_enough", "class", "left"]}}, "p_voice": {"type": "string"}}, "required": ["frame_id", "walking", "video_id", "bbs", "p_voice"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"frame_id" : 4749, "walking" : "0", "video_id" : "VID_20161007_131547_reduced", "bbs" : [{"artwork_id" : "san_giorgio_donatello", "right" : 0.83225, "bottom" : 0.509278, "top" : 0.02965, "confidence" : 54, "recognized" : true, "bb_big_enough" : true, "class" : "artwork", "left" : 0.465448}, {"artwork_id" : "david_bronzo_donatello", "right" : 0.644727, "bottom" : 0.83911, "top" : 0.070024, "confidence" : 318, "recognized" : true, "bb_big_enough" : true, "class" : "artwork", "left" : 0.07848}], "p_voice" : "0"} | json_instruct | {"type": "object", "properties": {"frame_id": {"type": "integer"}, "walking": {"type": "string"}, "video_id": {"type": "string"}, "bbs": {"type": "array", "items": {"type": "object", "properties": {"artwork_id": {"type": "string"}, "right": {"type": "number"}, "bottom": {"type": "number"}, "top": {"type": "number"}, "confidence": {"type": "integer"}, "recognized": {"type": "boolean"}, "bb_big_enough": {"type": "boolean"}, "class": {"type": "string"}, "left": {"type": "number"}}, "required": ["artwork_id", "right", "bottom", "top", "confidence", "recognized", "bb_big_enough", "class", "left"]}}, "p_voice": {"type": "string"}}, "required": ["frame_id", "walking", "video_id", "bbs", "p_voice"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"name": {"type": "string"}, "bio": {"type": "string"}, "photoURL": {"type": "string"}, "githubURL": {"type": "string"}}, "required": ["name", "bio", "photoURL", "githubURL"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "Aristeidis Bampakos", "bio" : "Angular Google Developer Expert | Co-organizer at Angular Athens meetup | Author @PacktPublishing | Senior Angular Instructor @CodeHubGreece", "photoURL" : "https://avatars.githubusercontent.com/bampakoa", "githubURL" : "https://github.com/bampakoa"} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "bio": {"type": "string"}, "photoURL": {"type": "string"}, "githubURL": {"type": "string"}}, "required": ["name", "bio", "photoURL", "githubURL"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"cam/image_array": {"type": "string"}, "user/angle": {"type": "number"}, "user/throttle": {"type": "number"}, "user/mode": {"type": "string"}, "pos/pos_x": {"type": "number"}, "pos/pos_y": {"type": "number"}, "pos/pos_z": {"type": "number"}, "pos/speed": {"type": "number"}, "pos/cte": {"type": "number"}, "milliseconds": {"type": "integer"}}, "required": ["cam/image_array", "user/angle", "user/throttle", "user/mode", "pos/pos_x", "pos/pos_y", "pos/pos_z", "pos/speed", "pos/cte", "milliseconds"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"cam/image_array" : "6218_cam-image_array_.jpg", "user/angle" : 0.39, "user/throttle" : 0.966, "user/mode" : "user", "pos/pos_x" : 75.04835, "pos/pos_y" : 0.5524001, "pos/pos_z" : -12.75091, "pos/speed" : 10.06018, "pos/cte" : -9.045746, "milliseconds" : 329498} | json_instruct | {"type": "object", "properties": {"cam/image_array": {"type": "string"}, "user/angle": {"type": "number"}, "user/throttle": {"type": "number"}, "user/mode": {"type": "string"}, "pos/pos_x": {"type": "number"}, "pos/pos_y": {"type": "number"}, "pos/pos_z": {"type": "number"}, "pos/speed": {"type": "number"}, "pos/cte": {"type": "number"}, "milliseconds": {"type": "integer"}}, "required": ["cam/image_array", "user/angle", "user/throttle", "user/mode", "pos/pos_x", "pos/pos_y", "pos/pos_z", "pos/speed", "pos/cte", "milliseconds"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"main": {"type": "string"}, "dependencies": {"type": "object", "properties": {"@google-cloud/functions-framework": {"type": "string"}}, "required": ["@google-cloud/functions-framework"]}}, "required": ["main", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"main" : "index.js", "dependencies" : {"@google-cloud/functions-framework" : "^2.0.0"}} | json_instruct | {"type": "object", "properties": {"main": {"type": "string"}, "dependencies": {"type": "object", "properties": {"@google-cloud/functions-framework": {"type": "string"}}, "required": ["@google-cloud/functions-framework"]}}, "required": ["main", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"problemId": {"type": "integer"}, "seed": {"type": "integer"}, "solution": {"type": "string"}}, "required": ["problemId", "seed", "solution"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"problemId" : 2, "seed" : 13639, "solution" : "225455451125554154x555134414x5414433x412x4252xx25x42125xx53351534xx311314535214152525434x22x5133x244x5x44122425135242x22xx2x3311331442x3xx331133x2x333111311213522x241343143x2x3x5155x2xxx514213142431514x42125x2xx41244x4xxxx3x2511531114x34414x4xxx331513112x21213xx3313114531115441124x45213121514113515x533x552224422x44xxxx4343x5352134112x2x2x212xx3x221222212x2xx5131355x5xx33xxx434514x212x442xx411331124x35213422215x55x3553xx4334x45552x33x2xxx221312212xx2x33x3x2221211131221112111214x4313x5153x251154412xx24433144424312545534453x5x5415212xx3xx3x22221222215454xx43414525214453525134353141444x42x4x4xx4x3124xx3153x24543x551155144x33x3x5434142154112255421124331131112222122x3x221222113x31311212x225352451543455142112121533x24xx43xx311433315411422113122x2x3x22111112213122xx2xxx2x3x2xxx2212154534245xx3x4x34242514155515543x2x333x2x33312133313x5x5221351152242243415445453122125225452531122xx424442133x4xx52x4x4213313x3xx31313xx334x52554x531425415xx2213122xx222x3x2251143x52x5331152455x2xx521451421124131533513x3113xx33xxx3111352134x2xx41222x3xxx221312213122133333113x331312131213333x2xx3x3114252412x2x221113112x55x3x2x3x33111211222x2x3x22x12435xx2122533x2x2x3x2x331313121311314413xx3xx22x3331144111245"} | json_instruct | {"type": "object", "properties": {"problemId": {"type": "integer"}, "seed": {"type": "integer"}, "solution": {"type": "string"}}, "required": ["problemId", "seed", "solution"], "$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.