input stringlengths 159 2.05k | output stringlengths 5 10.3k | task stringclasses 1
value | schema stringlengths 100 1.99k |
|---|---|---|---|
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"HostConfigHash": {"type": "string"}, "CardHash": {"type": "string"}, "Error": {"type": "null"}}, "required": ["HostConfigHash", "CardHash", "Error"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"HostConfigHash" : "1bb97f8", "CardHash" : "988d4ba", "Error" : null} | json_instruct | {"type": "object", "properties": {"HostConfigHash": {"type": "string"}, "CardHash": {"type": "string"}, "Error": {"type": "null"}}, "required": ["HostConfigHash", "CardHash", "Error"], "$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"}, "public": {"type": "boolean"}, "publisher": {"type": "string"}, "version": {"type": "string"}}, "required": ["id", "public", "publisher", "version"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "loadtest-agents-extension", "public" : true, "publisher" : "ganesp", "version" : "1.0.137"} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "public": {"type": "boolean"}, "publisher": {"type": "string"}, "version": {"type": "string"}}, "required": ["id", "public", "publisher", "version"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"plugins": {"type": "array", "items": {"type": "string"}}, "source": {"type": "object", "properties": {"include": {"type": "array", "items": {"type": "string"}}}, "required": ["include"]}, "opts": {"type": "object", "properties": {"encoding": {"type": "string"}, "destination": {"type": "string"}, "readme": {"type": "string"}, "template": {"type": "string"}, "theme_opts": {"type": "object", "properties": {"title": {"type": "string"}, "meta": {"type": "array", "items": {"type": "string"}}, "menu": {"type": "array", "items": {"type": "object", "properties": {"title": {"type": "string"}, "link": {"type": "string"}}, "required": ["title", "link"]}}}, "required": ["title", "meta", "menu"]}}, "required": ["encoding", "destination", "readme", "template", "theme_opts"]}}, "required": ["plugins", "source", "opts"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"plugins" : ["plugins/markdown"], "source" : {"include" : ["src/api.js"]}, "opts" : {"encoding" : "utf8", "destination" : "./documentation/", "readme" : "documentation_index.md", "template" : "./node_modules/clean-jsdoc-theme", "theme_opts" : {"title" : "sql.js", "meta" : ["<meta name=\"author\" content=\"Ophir Lojkine\">", "<meta name=\"description\" content=\"sql.js technical documentation\">"], "menu" : [{"title" : "Website", "link" : "https://sql.js.org/"}, {"title" : "Github", "link" : "https://github.com/sql-js/sql.js"}, {"title" : "Demo", "link" : "https://sql.js.org/examples/GUI/"}]}}} | json_instruct | {"type": "object", "properties": {"plugins": {"type": "array", "items": {"type": "string"}}, "source": {"type": "object", "properties": {"include": {"type": "array", "items": {"type": "string"}}}, "required": ["include"]}, "opts": {"type": "object", "properties": {"encoding": {"type": "string"}, "destination": {"type": "string"}, "readme": {"type": "string"}, "template": {"type": "string"}, "theme_opts": {"type": "object", "properties": {"title": {"type": "string"}, "meta": {"type": "array", "items": {"type": "string"}}, "menu": {"type": "array", "items": {"type": "object", "properties": {"title": {"type": "string"}, "link": {"type": "string"}}, "required": ["title", "link"]}}}, "required": ["title", "meta", "menu"]}}, "required": ["encoding", "destination", "readme", "template", "theme_opts"]}}, "required": ["plugins", "source", "opts"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "array", "items": {}}}, "required": ["contract", "tool", "start", "end", "duration", "analysis"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"contract" : "0xfc46db6dec302a649dee1b5b0e23db305e1ebc8e", "tool" : "solhint", "start" : 1563677243.1515665, "end" : 1563677247.6970007, "duration" : 4.545434236526489, "analysis" : []} | json_instruct | {"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "array", "items": {}}}, "required": ["contract", "tool", "start", "end", "duration", "analysis"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"cjs-to-es6": {"type": "string"}, "express": {"type": "string"}}, "required": ["cjs-to-es6", "express"]}}, "required": ["name", "version", "description", "main", "scripts", "keywords", "author", "license", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "requiretoimport", "version" : "1.0.0", "description" : "require to es-6 import", "main" : "index.js", "scripts" : {"test" : "echo \"Error: no test specified\" && exit 1"}, "keywords" : ["es6", "require", "import"], "author" : "divyanshu rawat", "license" : "MIT", "dependencies" : {"cjs-to-es6" : "^1.0.1", "express" : "^4.15.3"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"cjs-to-es6": {"type": "string"}, "express": {"type": "string"}}, "required": ["cjs-to-es6", "express"]}}, "required": ["name", "version", "description", "main", "scripts", "keywords", "author", "license", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"restructuredtext_lint-1.3.2.tar.gz": {"type": "string"}}, "required": ["restructuredtext_lint-1.3.2.tar.gz"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"restructuredtext_lint-1.3.2.tar.gz" : "d3b10a1fe2ecac537e51ae6d151b223b78de9fafdd50e5eb6b08c243df173c80"} | json_instruct | {"type": "object", "properties": {"restructuredtext_lint-1.3.2.tar.gz": {"type": "string"}}, "required": ["restructuredtext_lint-1.3.2.tar.gz"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "license": {"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"}, "react/event-loop": {"type": "string"}, "react/promise": {"type": "string"}, "reactivex/rxphp": {"type": "string"}}, "required": ["php", "react/event-loop", "react/promise", "reactivex/rxphp"]}, "require-dev": {"type": "object", "properties": {"api-clients/test-utilities": {"type": "string"}}, "required": ["api-clients/test-utilities"]}, "autoload": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"ApiClients\\Tools\\Rx\\": {"type": "string"}}, "required": ["ApiClients\\Tools\\Rx\\"]}, "files": {"type": "array", "items": {"type": "string"}}}, "required": ["psr-4", "files"]}, "autoload-dev": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"ApiClients\\Tests\\Tools\\Rx\\": {"type": "string"}}, "required": ["ApiClients\\Tests\\Tools\\Rx\\"]}}, "required": ["psr-4"]}, "config": {"type": "object", "properties": {"sort-packages": {"type": "boolean"}, "platform": {"type": "object", "properties": {"php": {"type": "string"}}, "required": ["php"]}}, "required": ["sort-packages", "platform"]}}, "required": ["name", "description", "license", "authors", "require", "require-dev", "autoload", "autoload-dev", "config"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "api-clients/rx", "description" : "RxPHP utilities", "license" : "MIT", "authors" : [{"name" : "Cees-Jan Kiewiet", "email" : "ceesjank@gmail.com"}], "require" : {"php" : "^8 || ^7.4", "react/event-loop" : "^1.2", "react/promise" : "^2.7", "reactivex/rxphp" : "^2.0"}, "require-dev" : {"api-clients/test-utilities" : "^3.1.0"}, "autoload" : {"psr-4" : {"ApiClients\\Tools\\Rx\\" : "src/"}, "files" : ["src/functions_include.php", "src/bootstrap.php"]}, "autoload-dev" : {"psr-4" : {"ApiClients\\Tests\\Tools\\Rx\\" : "tests/"}}, "config" : {"sort-packages" : true, "platform" : {"php" : "7.4.7"}}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "license": {"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"}, "react/event-loop": {"type": "string"}, "react/promise": {"type": "string"}, "reactivex/rxphp": {"type": "string"}}, "required": ["php", "react/event-loop", "react/promise", "reactivex/rxphp"]}, "require-dev": {"type": "object", "properties": {"api-clients/test-utilities": {"type": "string"}}, "required": ["api-clients/test-utilities"]}, "autoload": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"ApiClients\\Tools\\Rx\\": {"type": "string"}}, "required": ["ApiClients\\Tools\\Rx\\"]}, "files": {"type": "array", "items": {"type": "string"}}}, "required": ["psr-4", "files"]}, "autoload-dev": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"ApiClients\\Tests\\Tools\\Rx\\": {"type": "string"}}, "required": ["ApiClients\\Tests\\Tools\\Rx\\"]}}, "required": ["psr-4"]}, "config": {"type": "object", "properties": {"sort-packages": {"type": "boolean"}, "platform": {"type": "object", "properties": {"php": {"type": "string"}}, "required": ["php"]}}, "required": ["sort-packages", "platform"]}}, "required": ["name", "description", "license", "authors", "require", "require-dev", "autoload", "autoload-dev", "config"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"dataset": {"type": "string"}, "code_mode": {"type": "string"}, "model_type": {"type": "string"}, "model_mode": {"type": "string"}, "embed_size": {"type": "integer"}, "rnn_type": {"type": "string"}, "drop_out_rate": {"type": "number"}, "hidden_size": {"type": "integer"}, "model_init_needed": {"type": "boolean"}, "load_init_aspect_emb": {"type": "boolean"}, "seed": {"type": "integer"}, "gpu_id": {"type": "integer"}, "cuda": {"type": "boolean"}, "epoch": {"type": "integer"}, "eval_period": {"type": "integer"}, "batch_size": {"type": "integer"}, "early_stop": {"type": "integer"}, "dis_loss_alpha": {"type": "number"}, "dis_loss_aspect_spec": {"type": "boolean"}, "save_model": {"type": "boolean"}, "load_model": {"type": "boolean"}, "model_filefold": {"type": "string"}, "log_file": {"type": "string"}}, "required": ["dataset", "code_mode", "model_type", "model_mode", "embed_size", "rnn_type", "drop_out_rate", "hidden_size", "model_init_needed", "load_init_aspect_emb", "seed", "gpu_id", "cuda", "epoch", "eval_period", "batch_size", "early_stop", "dis_loss_alpha", "dis_loss_aspect_spec", "save_model", "load_model", "model_filefold", "log_file"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"dataset" : "TripOUR", "code_mode" : "train", "model_type" : "MBGRUAsp", "model_mode" : "+U+R", "embed_size" : 200, "rnn_type" : "GRU", "drop_out_rate" : 0.2, "hidden_size" : 150, "model_init_needed" : false, "load_init_aspect_emb" : true, "seed" : 1025, "gpu_id" : 0, "cuda" : true, "epoch" : 30, "eval_period" : 300, "batch_size" : 16, "early_stop" : 5, "dis_loss_alpha" : 0.0, "dis_loss_aspect_spec" : false, "save_model" : true, "load_model" : false, "model_filefold" : "../Model/", "log_file" : ""} | json_instruct | {"type": "object", "properties": {"dataset": {"type": "string"}, "code_mode": {"type": "string"}, "model_type": {"type": "string"}, "model_mode": {"type": "string"}, "embed_size": {"type": "integer"}, "rnn_type": {"type": "string"}, "drop_out_rate": {"type": "number"}, "hidden_size": {"type": "integer"}, "model_init_needed": {"type": "boolean"}, "load_init_aspect_emb": {"type": "boolean"}, "seed": {"type": "integer"}, "gpu_id": {"type": "integer"}, "cuda": {"type": "boolean"}, "epoch": {"type": "integer"}, "eval_period": {"type": "integer"}, "batch_size": {"type": "integer"}, "early_stop": {"type": "integer"}, "dis_loss_alpha": {"type": "number"}, "dis_loss_aspect_spec": {"type": "boolean"}, "save_model": {"type": "boolean"}, "load_model": {"type": "boolean"}, "model_filefold": {"type": "string"}, "log_file": {"type": "string"}}, "required": ["dataset", "code_mode", "model_type", "model_mode", "embed_size", "rnn_type", "drop_out_rate", "hidden_size", "model_init_needed", "load_init_aspect_emb", "seed", "gpu_id", "cuda", "epoch", "eval_period", "batch_size", "early_stop", "dis_loss_alpha", "dis_loss_aspect_spec", "save_model", "load_model", "model_filefold", "log_file"], "$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" : "Zapote V, Bacoor, Cavite, CALABARZON (Region IV-A), PH", "locale" : "ph.calabarzon-region-iv-a.cavite.bacoor.zapote-v", "country_id" : 177, "country_reference" : 177, "country_name" : "Philippines", "region_id" : "4", "region_reference" : "41", "region_name" : "CALABARZON (Region IV-A)", "province_id" : "24", "province_reference" : "24", "province_name" : "Cavite", "city_id" : "94", "city_reference" : "419", "city_name" : "Bacoor", "barangay_id" : "2389", "barangay_reference" : "10070", "barangay_name" : "Zapote V"}, "geometry" : {"type" : "MultiPolygon", "coordinates" : [[[[120.960449, 14.46418], [120.961456, 14.46309], [120.962433, 14.46238], [120.961227, 14.46204], [120.96035, 14.46134], [120.960167, 14.46135], [120.95845, 14.46002], [120.957253, 14.46172], [120.958778, 14.46294], [120.960449, 14.46418]]]]}} | 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#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "repository": {"type": "string"}, "author": {"type": "string"}, "license": {"type": "string"}, "private": {"type": "boolean"}, "scripts": {"type": "object", "properties": {"build": {"type": "string"}, "app": {"type": "string"}}, "required": ["build", "app"]}, "devDependencies": {"type": "object", "properties": {"typescript": {"type": "string"}}, "required": ["typescript"]}, "dependencies": {"type": "object", "properties": {"@types/command-line-args": {"type": "string"}, "command-line-args": {"type": "string"}, "matrix-bot-sdk": {"type": "string"}}, "required": ["@types/command-line-args", "command-line-args", "matrix-bot-sdk"]}}, "required": ["name", "version", "description", "main", "repository", "author", "license", "private", "scripts", "devDependencies", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "matrix-diff", "version" : "0.0.1", "description" : "Diff the state of a room between homeservers to determine divergence.", "main" : "app.js", "repository" : "git@github.com:Half-Shot/matrix-diff.git", "author" : "Will Hunt <will@half-shot.uk>", "license" : "APACHE-2", "private" : false, "scripts" : {"build" : "tsc", "app" : "node app.js"}, "devDependencies" : {"typescript" : "^3.5.3"}, "dependencies" : {"@types/command-line-args" : "^5.0.0", "command-line-args" : "^5.1.1", "matrix-bot-sdk" : "^0.3.9"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "repository": {"type": "string"}, "author": {"type": "string"}, "license": {"type": "string"}, "private": {"type": "boolean"}, "scripts": {"type": "object", "properties": {"build": {"type": "string"}, "app": {"type": "string"}}, "required": ["build", "app"]}, "devDependencies": {"type": "object", "properties": {"typescript": {"type": "string"}}, "required": ["typescript"]}, "dependencies": {"type": "object", "properties": {"@types/command-line-args": {"type": "string"}, "command-line-args": {"type": "string"}, "matrix-bot-sdk": {"type": "string"}}, "required": ["@types/command-line-args", "command-line-args", "matrix-bot-sdk"]}}, "required": ["name", "version", "description", "main", "repository", "author", "license", "private", "scripts", "devDependencies", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"rem": {"type": "object", "properties": {"exact": {"type": "array", "items": {}}, "prefix": {"type": "array", "items": {"type": "string"}}}, "required": ["exact", "prefix"]}}, "required": ["rem"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"rem" : {"exact" : [], "prefix" : ["Remark:hga"]}} | json_instruct | {"type": "object", "properties": {"rem": {"type": "object", "properties": {"exact": {"type": "array", "items": {}}, "prefix": {"type": "array", "items": {"type": "string"}}}, "required": ["exact", "prefix"]}}, "required": ["rem"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"image": {"type": "string"}, "num_features": {"type": "integer"}, "wall_time": {"type": "number"}}, "required": ["image", "num_features", "wall_time"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"image" : "IMG_E0219.JPG", "num_features" : 4616, "wall_time" : 4.180229278999832} | json_instruct | {"type": "object", "properties": {"image": {"type": "string"}, "num_features": {"type": "integer"}, "wall_time": {"type": "number"}}, "required": ["image", "num_features", "wall_time"], "$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"}, "summary": {"type": "string"}, "description": {"type": "string"}, "homepage": {"type": "string"}, "license": {"type": "string"}, "authors": {"type": "object", "properties": {"yaolinhong": {"type": "string"}}, "required": ["yaolinhong"]}, "platforms": {"type": "object", "properties": {"ios": {"type": "string"}}, "required": ["ios"]}, "source": {"type": "object", "properties": {"git": {"type": "string"}, "tag": {"type": "string"}}, "required": ["git", "tag"]}, "source_files": {"type": "array", "items": {"type": "string"}}, "exclude_files": {"type": "string"}}, "required": ["name", "version", "summary", "description", "homepage", "license", "authors", "platforms", "source", "source_files", "exclude_files"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "CircleBtn", "version" : "0.0.1", "summary" : "simple circle button", "description" : "simple circle button", "homepage" : "https://github.com/yaolinhong/CircleBtn", "license" : "MIT", "authors" : {"yaolinhong" : "768805503@qq.com"}, "platforms" : {"ios" : "9.0"}, "source" : {"git" : "https://github.com/yaolinhong/CircleBtn", "tag" : "0.0.1"}, "source_files" : ["CircleBtn", "CircleBtn/**/*.{h,m}"], "exclude_files" : "CircleBtn/Exclude"} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "summary": {"type": "string"}, "description": {"type": "string"}, "homepage": {"type": "string"}, "license": {"type": "string"}, "authors": {"type": "object", "properties": {"yaolinhong": {"type": "string"}}, "required": ["yaolinhong"]}, "platforms": {"type": "object", "properties": {"ios": {"type": "string"}}, "required": ["ios"]}, "source": {"type": "object", "properties": {"git": {"type": "string"}, "tag": {"type": "string"}}, "required": ["git", "tag"]}, "source_files": {"type": "array", "items": {"type": "string"}}, "exclude_files": {"type": "string"}}, "required": ["name", "version", "summary", "description", "homepage", "license", "authors", "platforms", "source", "source_files", "exclude_files"], "$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"}, "dependencies": {"type": "object", "properties": {"jquery": {"type": "string"}, "requirejs": {"type": "string"}, "backbone-amd": {"type": "string"}, "underscore-amd": {"type": "string"}, "bootstrap": {"type": "string"}, "highcharts-release": {"type": "string"}}, "required": ["jquery", "requirejs", "backbone-amd", "underscore-amd", "bootstrap", "highcharts-release"]}}, "required": ["name", "version", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "RequireJS Starter", "version" : "1.0.0", "dependencies" : {"jquery" : "latest", "requirejs" : "latest", "backbone-amd" : "latest", "underscore-amd" : "latest", "bootstrap" : "latest", "highcharts-release" : "latest"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "dependencies": {"type": "object", "properties": {"jquery": {"type": "string"}, "requirejs": {"type": "string"}, "backbone-amd": {"type": "string"}, "underscore-amd": {"type": "string"}, "bootstrap": {"type": "string"}, "highcharts-release": {"type": "string"}}, "required": ["jquery", "requirejs", "backbone-amd", "underscore-amd", "bootstrap", "highcharts-release"]}}, "required": ["name", "version", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"word": {"type": "string"}, "definitions": {"type": "array", "items": {"type": "string"}}, "parts-of-speech": {"type": "string"}}, "required": ["word", "definitions", "parts-of-speech"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"word" : "Relax", "definitions" : ["Make or become less tense or anxious.", "Rest from work or engage in an enjoyable activity so as to become less tired or anxious.", "Cause (a limb or muscle) to become less rigid.", "Make (something) less firm or tight.", "Straighten or partially uncurl (hair) using a chemical product.", "Make (a rule or restriction) less strict."], "parts-of-speech" : "Verb"} | json_instruct | {"type": "object", "properties": {"word": {"type": "string"}, "definitions": {"type": "array", "items": {"type": "string"}}, "parts-of-speech": {"type": "string"}}, "required": ["word", "definitions", "parts-of-speech"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"locationData": {"type": "object", "properties": {"relativeBoundingBox": {"type": "object", "properties": {"xmin": {"type": "number"}, "width": {"type": "number"}, "ymin": {"type": "number"}, "height": {"type": "number"}}, "required": ["xmin", "width", "ymin", "height"]}, "relativeKeypoints": {"type": "array", "items": {"type": "object", "properties": {"y": {"type": "number"}, "x": {"type": "number"}}, "required": ["y", "x"]}}, "format": {"type": "string"}}, "required": ["relativeBoundingBox", "relativeKeypoints", "format"]}, "score": {"type": "array", "items": {"type": "number"}}, "label": {"type": "array", "items": {"type": "string"}}}, "required": ["locationData", "score", "label"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"locationData" : {"relativeBoundingBox" : {"xmin" : 0.14944687, "width" : 0.14050671, "ymin" : 0.7113502, "height" : 0.24978988}, "relativeKeypoints" : [{"y" : 0.95257854, "x" : 0.25296324}, {"y" : 0.72031474, "x" : 0.2322438}, {"y" : 0.7581031, "x" : 0.19711863}, {"y" : 0.80520564, "x" : 0.1680658}, {"y" : 0.8548852, "x" : 0.14603366}, {"y" : 0.88379425, "x" : 0.28428152}, {"y" : 0.77723956, "x" : 0.27448964}], "format" : "RELATIVE_BOUNDING_BOX"}, "score" : [0.93569994], "label" : ["Palm"]} | json_instruct | {"type": "object", "properties": {"locationData": {"type": "object", "properties": {"relativeBoundingBox": {"type": "object", "properties": {"xmin": {"type": "number"}, "width": {"type": "number"}, "ymin": {"type": "number"}, "height": {"type": "number"}}, "required": ["xmin", "width", "ymin", "height"]}, "relativeKeypoints": {"type": "array", "items": {"type": "object", "properties": {"y": {"type": "number"}, "x": {"type": "number"}}, "required": ["y", "x"]}}, "format": {"type": "string"}}, "required": ["relativeBoundingBox", "relativeKeypoints", "format"]}, "score": {"type": "array", "items": {"type": "number"}}, "label": {"type": "array", "items": {"type": "string"}}}, "required": ["locationData", "score", "label"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"hash": {"type": "string"}, "parentHash": {"type": "string"}, "number": {"type": "integer"}, "timestamp": {"type": "integer"}, "nonce": {"type": "string"}, "difficulty": {"type": "integer"}, "gasLimit": {"type": "object", "properties": {"_hex": {"type": "string"}}, "required": ["_hex"]}, "gasUsed": {"type": "object", "properties": {"_hex": {"type": "string"}}, "required": ["_hex"]}, "miner": {"type": "string"}, "extraData": {"type": "string"}, "transactions": {"type": "array", "items": {}}}, "required": ["hash", "parentHash", "number", "timestamp", "nonce", "difficulty", "gasLimit", "gasUsed", "miner", "extraData", "transactions"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"hash" : "0xb68fd27d5bd94c649cae295ebab9ea641dba32666d8f19c7b170cc811e9937a3", "parentHash" : "0xae7d377b83ea746508d6459952d3678a9e04bdb9adc9a81c6ac4baa190ad5745", "number" : 21837, "timestamp" : 1438519011, "nonce" : "0x37570d2bf8eed40b", "difficulty" : 1005170781652, "gasLimit" : {"_hex" : "0x1388"}, "gasUsed" : {"_hex" : "0x0"}, "miner" : "0xa9F320499824C56A5F063448313b840cC7C27AcE", "extraData" : "0x476574682f76312e302e302f6c696e75782f676f312e342e32", "transactions" : []} | json_instruct | {"type": "object", "properties": {"hash": {"type": "string"}, "parentHash": {"type": "string"}, "number": {"type": "integer"}, "timestamp": {"type": "integer"}, "nonce": {"type": "string"}, "difficulty": {"type": "integer"}, "gasLimit": {"type": "object", "properties": {"_hex": {"type": "string"}}, "required": ["_hex"]}, "gasUsed": {"type": "object", "properties": {"_hex": {"type": "string"}}, "required": ["_hex"]}, "miner": {"type": "string"}, "extraData": {"type": "string"}, "transactions": {"type": "array", "items": {}}}, "required": ["hash", "parentHash", "number", "timestamp", "nonce", "difficulty", "gasLimit", "gasUsed", "miner", "extraData", "transactions"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"manifest_version": {"type": "integer"}, "name": {"type": "string"}, "short_name": {"type": "string"}, "description": {"type": "string"}, "version": {"type": "string"}, "icons": {"type": "object", "properties": {"128": {"type": "string"}}, "required": ["128"]}, "background": {"type": "object", "properties": {"scripts": {"type": "array", "items": {"type": "string"}}}, "required": ["scripts"]}, "content_scripts": {"type": "array", "items": {"type": "object", "properties": {"matches": {"type": "array", "items": {"type": "string"}}, "js": {"type": "array", "items": {"type": "string"}}, "run_at": {"type": "string"}}, "required": ["matches", "js", "run_at"]}}, "browser_action": {"type": "object", "properties": {"default_icon": {"type": "string"}, "default_title": {"type": "string"}, "default_popup": {"type": "string"}}, "required": ["default_icon", "default_title", "default_popup"]}, "options_page": {"type": "string"}, "permissions": {"type": "array", "items": {"type": "string"}}}, "required": ["manifest_version", "name", "short_name", "description", "version", "icons", "background", "content_scripts", "browser_action", "options_page", "permissions"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"manifest_version" : 2, "name" : "FindEmails Extension", "short_name" : "FindEmails", "description" : "Find emails on any website and use our email finder and email verifier for convenient testing", "version" : "2.02", "icons" : {"128" : "img/toofr_logo_balls.png"}, "background" : {"scripts" : ["lib/jquery-2.1.1.min.js", "js/background.js"]}, "content_scripts" : [{"matches" : ["*://*.linkedin.com/profile/*", "*://*.linkedin.com/in/*"], "js" : ["js/content-script.js"], "run_at" : "document_start"}], "browser_action" : {"default_icon" : "img/toofr_logo_balls.png", "default_title" : "", "default_popup" : "html/popup.html"}, "options_page" : "html/options.html", "permissions" : ["activeTab", "https://www.findemails.com/*"]} | json_instruct | {"type": "object", "properties": {"manifest_version": {"type": "integer"}, "name": {"type": "string"}, "short_name": {"type": "string"}, "description": {"type": "string"}, "version": {"type": "string"}, "icons": {"type": "object", "properties": {"128": {"type": "string"}}, "required": ["128"]}, "background": {"type": "object", "properties": {"scripts": {"type": "array", "items": {"type": "string"}}}, "required": ["scripts"]}, "content_scripts": {"type": "array", "items": {"type": "object", "properties": {"matches": {"type": "array", "items": {"type": "string"}}, "js": {"type": "array", "items": {"type": "string"}}, "run_at": {"type": "string"}}, "required": ["matches", "js", "run_at"]}}, "browser_action": {"type": "object", "properties": {"default_icon": {"type": "string"}, "default_title": {"type": "string"}, "default_popup": {"type": "string"}}, "required": ["default_icon", "default_title", "default_popup"]}, "options_page": {"type": "string"}, "permissions": {"type": "array", "items": {"type": "string"}}}, "required": ["manifest_version", "name", "short_name", "description", "version", "icons", "background", "content_scripts", "browser_action", "options_page", "permissions"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "array", "items": {"type": "object", "properties": {"fees": {"type": "integer"}, "ts": {"type": "string"}, "txid": {"type": "string"}, "block": {"type": "integer"}, "in": {"type": "array", "items": {"type": "object", "properties": {"coinbase": {"type": "string"}}, "required": ["coinbase"]}}, "sent": {"type": "integer"}, "out": {"type": "array", "items": {"type": "object", "properties": {"addr": {"type": "string"}, "value": {"type": "integer"}, "spent": {"type": "string"}}, "required": ["addr", "value", "spent"]}}}, "required": ["fees", "ts", "txid", "block", "in", "sent", "out"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"fees" : -2500000000, "ts" : "1534812868", "txid" : "8f9daf2d6981d974cc083af6b5ecad4952011b8ae2dd636714ea7ec9d6c88876", "block" : 1416899, "in" : [{"coinbase" : "03c39e1504c4627b5b08810001590000000f7969696d7000fabe6d6deda4738cc7fa2f93d6a48814fdc5db293ecc2dc9ad0b373169dc75dc0fd118280100000000000000"}], "sent" : 2500000000, "out" : [{"addr" : "MUtCUuTvYFSpcfqrP1ttFwSvqpzrFSiaDm", "value" : 2500000000, "spent" : "c56c1a62a72764fe99b28b8d6d1997671ea32fb3eda3b5c868b372877ea5d989"}]}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"fees": {"type": "integer"}, "ts": {"type": "string"}, "txid": {"type": "string"}, "block": {"type": "integer"}, "in": {"type": "array", "items": {"type": "object", "properties": {"coinbase": {"type": "string"}}, "required": ["coinbase"]}}, "sent": {"type": "integer"}, "out": {"type": "array", "items": {"type": "object", "properties": {"addr": {"type": "string"}, "value": {"type": "integer"}, "spent": {"type": "string"}}, "required": ["addr", "value", "spent"]}}}, "required": ["fees", "ts", "txid", "block", "in", "sent", "out"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"Id": {"type": "integer"}, "Description": {"type": "string"}, "DialogueText": {"type": "string"}}, "required": ["Id", "Description", "DialogueText"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"Id" : 95, "Description" : "Is constant chest infection and coughing sign of pneumonia?\r\n\r\n", "DialogueText" : "Patient:\r\nI have had constant chest inf was hospitalised for 4 days said they think phnewmonia out now still on lots of anti biotics and steroids however I'm still sweating have right lower back pain and still really coughing and short of breath. I am MBL deficency and alpha 1\r\nDoctor:\r\nHelloYes according to the history it might be pneumonia.Continue the current treatment.RegardsDr.Jolanda\r\n\r\n"} | json_instruct | {"type": "object", "properties": {"Id": {"type": "integer"}, "Description": {"type": "string"}, "DialogueText": {"type": "string"}}, "required": ["Id", "Description", "DialogueText"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "array", "items": {"type": "array", "items": {"type": "string"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [["500111105001", "\u7ea2\u6865\u793e\u533a\u5c45\u59d4\u4f1a", "121", "0"], ["500111105002", "\u91d1\u7af9\u793e\u533a\u5c45\u59d4\u4f1a", "122", "0"], ["500111105003", "\u6768\u67f3\u793e\u533a\u5c45\u59d4\u4f1a", "122", "0"], ["500111105200", "\u8f6c\u9f99\u6751\u59d4\u4f1a", "220", "0"], ["500111105201", "\u65d7\u56e2\u6751\u59d4\u4f1a", "220", "0"], ["500111105202", "\u767d\u4e91\u6751\u59d4\u4f1a", "220", "0"], ["500111105203", "\u74e6\u7a91\u6751\u59d4\u4f1a", "220", "0"], ["500111105204", "\u864e\u5f62\u6751\u59d4\u4f1a", "220", "0"], ["500111105205", "\u9ec4\u6865\u6751\u59d4\u4f1a", "220", "0"], ["500111105206", "\u6838\u6843\u6751\u59d4\u4f1a", "220", "0"]] | json_instruct | {"type": "array", "items": {"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": {"examine": {"type": "string"}}, "required": ["examine"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"examine" : "It's an Fishing hat."} | json_instruct | {"type": "object", "properties": {"examine": {"type": "string"}}, "required": ["examine"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"AzureAd": {"type": "object", "properties": {"Instance": {"type": "string"}, "ClientId": {"type": "string"}, "Domain": {"type": "string"}, "TenantId": {"type": "string"}, "Roles": {"type": "object", "properties": {"Worker": {"type": "string"}}, "required": ["Worker"]}}, "required": ["Instance", "ClientId", "Domain", "TenantId", "Roles"]}, "CarRentalApi": {"type": "object", "properties": {"BaseAddress": {"type": "string"}, "client_id": {"type": "string"}, "Scopes": {"type": "array", "items": {"type": "string"}}, "IdentityProvider": {"type": "object", "properties": {"BaseAddress": {"type": "string"}, "TokenEndpoint": {"type": "string"}}, "required": ["BaseAddress", "TokenEndpoint"]}}, "required": ["BaseAddress", "client_id", "Scopes", "IdentityProvider"]}, "UseInMemoryDatabase": {"type": "boolean"}, "ConnectionStrings": {"type": "object", "properties": {"DefaultConnection": {"type": "string"}}, "required": ["DefaultConnection"]}, "Logging": {"type": "object", "properties": {"LogLevel": {"type": "object", "properties": {"Default": {"type": "string"}}, "required": ["Default"]}}, "required": ["LogLevel"]}, "SwaggerUIClientId": {"type": "string"}, "SwaggerUIDefaultScope": {"type": "string"}, "AllowedHosts": {"type": "string"}, "FrontendURL": {"type": "string"}}, "required": ["AzureAd", "CarRentalApi", "UseInMemoryDatabase", "ConnectionStrings", "Logging", "SwaggerUIClientId", "SwaggerUIDefaultScope", "AllowedHosts", "FrontendURL"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"AzureAd" : {"Instance" : "https://login.microsoftonline.com/", "ClientId" : "42bcaff5-136a-4ff7-aba9-c30a15a429d0", "Domain" : "janszablanowskigmail.onmicrosoft.com", "TenantId" : "95580983-0258-4189-8b2a-01286b6d5df1", "Roles" : {"Worker" : "Worker"}}, "CarRentalApi" : {"BaseAddress" : "https://mini.rentcar.api.snet.com.pl", "client_id" : "team3e", "Scopes" : ["MiNI.RentApp.API"], "IdentityProvider" : {"BaseAddress" : "https://indentitymanager.snet.com.pl", "TokenEndpoint" : "/connect/token"}}, "UseInMemoryDatabase" : false, "ConnectionStrings" : {"DefaultConnection" : "Server=(localdb)\\mssqllocaldb;Database=MiniRentDb;Trusted_Connection=True;MultipleActiveResultSets=true;"}, "Logging" : {"LogLevel" : {"Default" : "Warning"}}, "SwaggerUIClientId" : "b280bec9-de2c-4872-97c7-ddc0c7fb7ca7", "SwaggerUIDefaultScope" : "api://42bcaff5-136a-4ff7-aba9-c30a15a429d0/access_as_user", "AllowedHosts" : "*", "FrontendURL" : ""} | json_instruct | {"type": "object", "properties": {"AzureAd": {"type": "object", "properties": {"Instance": {"type": "string"}, "ClientId": {"type": "string"}, "Domain": {"type": "string"}, "TenantId": {"type": "string"}, "Roles": {"type": "object", "properties": {"Worker": {"type": "string"}}, "required": ["Worker"]}}, "required": ["Instance", "ClientId", "Domain", "TenantId", "Roles"]}, "CarRentalApi": {"type": "object", "properties": {"BaseAddress": {"type": "string"}, "client_id": {"type": "string"}, "Scopes": {"type": "array", "items": {"type": "string"}}, "IdentityProvider": {"type": "object", "properties": {"BaseAddress": {"type": "string"}, "TokenEndpoint": {"type": "string"}}, "required": ["BaseAddress", "TokenEndpoint"]}}, "required": ["BaseAddress", "client_id", "Scopes", "IdentityProvider"]}, "UseInMemoryDatabase": {"type": "boolean"}, "ConnectionStrings": {"type": "object", "properties": {"DefaultConnection": {"type": "string"}}, "required": ["DefaultConnection"]}, "Logging": {"type": "object", "properties": {"LogLevel": {"type": "object", "properties": {"Default": {"type": "string"}}, "required": ["Default"]}}, "required": ["LogLevel"]}, "SwaggerUIClientId": {"type": "string"}, "SwaggerUIDefaultScope": {"type": "string"}, "AllowedHosts": {"type": "string"}, "FrontendURL": {"type": "string"}}, "required": ["AzureAd", "CarRentalApi", "UseInMemoryDatabase", "ConnectionStrings", "Logging", "SwaggerUIClientId", "SwaggerUIDefaultScope", "AllowedHosts", "FrontendURL"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this 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" : 1225912873, "type" : "Feature", "properties" : {"src:alt_label" : "geonames", "src:geom" : "geonames", "wof:geomhash" : "c7b4d279de8004fd91e6597351bbe483", "wof:id" : 1225912873, "wof:repo" : "whosonfirst-data-admin-ro"}, "bbox" : [27.46451, 47.23346, 27.46451, 47.23346], "geometry" : {"coordinates" : [27.46451, 47.23346], "type" : "Point"}} | json_instruct | {"type": "object", "properties": {"id": {"type": "integer"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"src:alt_label": {"type": "string"}, "src:geom": {"type": "string"}, "wof:geomhash": {"type": "string"}, "wof:id": {"type": "integer"}, "wof:repo": {"type": "string"}}, "required": ["src:alt_label", "src:geom", "wof:geomhash", "wof:id", "wof:repo"]}, "bbox": {"type": "array", "items": {"type": "number"}}, "geometry": {"type": "object", "properties": {"coordinates": {"type": "array", "items": {"type": "number"}}, "type": {"type": "string"}}, "required": ["coordinates", "type"]}}, "required": ["id", "type", "properties", "bbox", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"slug": {"type": "string"}, "name": {"type": "string"}, "latest_version": {"type": "string"}, "last_updated": {"type": "string"}, "vulnerabilities": {"type": "null"}}, "required": ["slug", "name", "latest_version", "last_updated", "vulnerabilities"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"slug" : "cbnet-ping-optimizer", "name" : "cbnet Ping Optimizer", "latest_version" : "3.0", "last_updated" : "2018-03-27T16:57:16.178Z", "vulnerabilities" : null} | json_instruct | {"type": "object", "properties": {"slug": {"type": "string"}, "name": {"type": "string"}, "latest_version": {"type": "string"}, "last_updated": {"type": "string"}, "vulnerabilities": {"type": "null"}}, "required": ["slug", "name", "latest_version", "last_updated", "vulnerabilities"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"id": {"type": "string"}, "type": {"type": "string"}, "spec_version": {"type": "string"}, "objects": {"type": "array", "items": {"type": "object", "properties": {"external_references": {"type": "array", "items": {"type": "object", "properties": {"url": {"type": "string"}, "source_name": {"type": "string"}, "description": {"type": "string"}}, "required": ["url", "source_name", "description"]}}, "object_marking_refs": {"type": "array", "items": {"type": "string"}}, "id": {"type": "string"}, "relationship_type": {"type": "string"}, "target_ref": {"type": "string"}, "type": {"type": "string"}, "created": {"type": "string"}, "modified": {"type": "string"}, "source_ref": {"type": "string"}, "created_by_ref": {"type": "string"}, "description": {"type": "string"}}, "required": ["external_references", "object_marking_refs", "id", "relationship_type", "target_ref", "type", "created", "modified", "source_ref", "created_by_ref", "description"]}}}, "required": ["id", "type", "spec_version", "objects"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "bundle--5fc55b7e-71a6-4db5-a413-556d0fe249d3", "type" : "bundle", "spec_version" : "2.0", "objects" : [{"external_references" : [{"url" : "https://blog.trendmicro.com/trendlabs-security-intelligence/trickbot-shows-off-new-trick-password-grabber-module/", "source_name" : "Trend Micro Trickbot Nov 2018", "description" : "Anthony, N., Pascual, C.. (2018, November 1). Trickbot Shows Off New Trick: Password Grabber Module. Retrieved November 16, 2018."}, {"url" : "https://blog.trendmicro.com/trendlabs-security-intelligence/trickbot-adds-remote-application-credential-grabbing-capabilities-to-its-repertoire/", "source_name" : "TrendMicro Trickbot Feb 2019", "description" : "Llimos, N., Pascual, C.. (2019, February 12). Trickbot Adds Remote Application Credential-Grabbing Capabilities to Its Repertoire. Retrieved March 12, 2019."}], "object_marking_refs" : ["marking-definition--fa42a846-8d90-4e51-bc29-71d5b4802168"], "id" : "relationship--5b2f0fb3-5877-4fa2-bed1-1962423caccd", "relationship_type" : "uses", "target_ref" : "attack-pattern--ba8e391f-14b5-496f-81f2-2d5ecd646c1c", "type" : "relationship", "created" : "2019-01-30T14:11:44.244Z", "modified" : "2019-04-23T20:16:02.967Z", "source_ref" : "malware--00806466-754d-44ea-ad6f-0caf59cb8556", "created_by_ref" : "identity--c78cb6e5-0c4b-4611-8297-d1b8b55e40b5", "description" : "[TrickBot](https://attack.mitre.org/software/S0266) can obtain passwords stored in files from several applications and browsers, such as Outlook, Filezilla, WinSCP, Chrome, Firefox, Internet Explorer, and Microsoft Edge. Additionally, it searches for the \".vnc.lnk\" affix to steal VNC credentials."}]} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "type": {"type": "string"}, "spec_version": {"type": "string"}, "objects": {"type": "array", "items": {"type": "object", "properties": {"external_references": {"type": "array", "items": {"type": "object", "properties": {"url": {"type": "string"}, "source_name": {"type": "string"}, "description": {"type": "string"}}, "required": ["url", "source_name", "description"]}}, "object_marking_refs": {"type": "array", "items": {"type": "string"}}, "id": {"type": "string"}, "relationship_type": {"type": "string"}, "target_ref": {"type": "string"}, "type": {"type": "string"}, "created": {"type": "string"}, "modified": {"type": "string"}, "source_ref": {"type": "string"}, "created_by_ref": {"type": "string"}, "description": {"type": "string"}}, "required": ["external_references", "object_marking_refs", "id", "relationship_type", "target_ref", "type", "created", "modified", "source_ref", "created_by_ref", "description"]}}}, "required": ["id", "type", "spec_version", "objects"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"localities": {"type": "array", "items": {"type": "string"}}, "state": {"type": "string"}, "postal_code": {"type": "string"}, "locality": {"type": "string"}, "lat": {"type": "number"}, "region": {"type": "object", "properties": {"fips": {"type": "string"}, "abbr": {"type": "string"}, "name": {"type": "string"}}, "required": ["fips", "abbr", "name"]}, "city": {"type": "string"}, "type": {"type": "string"}, "lng": {"type": "number"}, "counties": {"type": "array", "items": {"type": "object", "properties": {"fips": {"type": "string"}, "name": {"type": "string"}}, "required": ["fips", "name"]}}}, "required": ["localities", "state", "postal_code", "locality", "lat", "region", "city", "type", "lng", "counties"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"localities" : ["Cordova, IL"], "state" : "IL", "postal_code" : "61242", "locality" : "Cordova, IL", "lat" : 41.708009, "region" : {"fips" : "17", "abbr" : "IL", "name" : "Illinois"}, "city" : "Cordova", "type" : "STANDARD", "lng" : -90.285148, "counties" : [{"fips" : "161", "name" : "Rock Island County"}]} | json_instruct | {"type": "object", "properties": {"localities": {"type": "array", "items": {"type": "string"}}, "state": {"type": "string"}, "postal_code": {"type": "string"}, "locality": {"type": "string"}, "lat": {"type": "number"}, "region": {"type": "object", "properties": {"fips": {"type": "string"}, "abbr": {"type": "string"}, "name": {"type": "string"}}, "required": ["fips", "abbr", "name"]}, "city": {"type": "string"}, "type": {"type": "string"}, "lng": {"type": "number"}, "counties": {"type": "array", "items": {"type": "object", "properties": {"fips": {"type": "string"}, "name": {"type": "string"}}, "required": ["fips", "name"]}}}, "required": ["localities", "state", "postal_code", "locality", "lat", "region", "city", "type", "lng", "counties"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"manifest_version": {"type": "integer"}, "name": {"type": "string"}, "description": {"type": "string"}, "version": {"type": "string"}, "options_ui": {"type": "object", "properties": {"page": {"type": "string"}, "chrome_style": {"type": "boolean"}}, "required": ["page", "chrome_style"]}, "browser_action": {"type": "object", "properties": {"default_icon": {"type": "string"}, "default_popup": {"type": "string"}}, "required": ["default_icon", "default_popup"]}, "web_accessible_resources": {"type": "array", "items": {"type": "string"}}, "icons": {"type": "object", "properties": {"16": {"type": "string"}, "48": {"type": "string"}, "128": {"type": "string"}}, "required": ["16", "48", "128"]}, "background": {"type": "object", "properties": {"scripts": {"type": "array", "items": {"type": "string"}}}, "required": ["scripts"]}, "permissions": {"type": "array", "items": {"type": "string"}}, "content_security_policy": {"type": "string"}, "key": {"type": "string"}, "oauth2": {"type": "object", "properties": {"client_id": {"type": "string"}, "scopes": {"type": "array", "items": {"type": "string"}}}, "required": ["client_id", "scopes"]}}, "required": ["manifest_version", "name", "description", "version", "options_ui", "browser_action", "web_accessible_resources", "icons", "background", "permissions", "content_security_policy", "key", "oauth2"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"manifest_version" : 2, "name" : "Smart Bookmark", "description" : "Parameterized bookmarks", "version" : "1.1.0.0", "options_ui" : {"page" : "options.html", "chrome_style" : true}, "browser_action" : {"default_icon" : "bookmarkicon.png", "default_popup" : "popup.html"}, "web_accessible_resources" : ["*.png", "*.css", "js/*.js"], "icons" : {"16" : "bookmarkicon.png", "48" : "bookmarkicon.png", "128" : "bookmarkicon.png"}, "background" : {"scripts" : ["js/vendor.js", "js/background.js"]}, "permissions" : ["identity", "activeTab", "storage"], "content_security_policy" : "script-src 'self' https://www.googletagmanager.com https://www.google-analytics.com https://apis.google.com 'unsafe-eval'; object-src 'self' https://www.googletagmanager.com https://www.google-analytics.com https://apis.google.com", "key" : "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAwJWNKQP6HmBMuT6d5ZHmFkPvTTdNYfowagJ7Yca/sOXHABrGaxsXHP1c9qF8VoBV764wgtU5qJMX8zORY1QMmmMAcHeu+9myNGnxYEcxCX40CtOKwbv/j4MIq6dP83QspxeuadrXDbLpwPye2d0j0Wc5+C4ryBZQsUoDO+q9j7yxhU+VrlTcSkDDTQCbp90IueBr8tawMSMdMI3a8lC8ndPUGZmjqme0Ylqid1yyGHLMc3Fg6T8qTEXNS91hkuubvETfHaex2mOQw0RsBZW0sjFt/pg+mfAJqvo0qoBAaYsrYEUls1r0uuKwo/+QdT9p1OXPctsW6lOX+e9rno2HIwIDAQAB", "oauth2" : {"client_id" : "177630958946-qukmj378oknsokibjrhg0l78fmcijjac.apps.googleusercontent.com", "scopes" : ["openid", "email", "profile"]}} | json_instruct | {"type": "object", "properties": {"manifest_version": {"type": "integer"}, "name": {"type": "string"}, "description": {"type": "string"}, "version": {"type": "string"}, "options_ui": {"type": "object", "properties": {"page": {"type": "string"}, "chrome_style": {"type": "boolean"}}, "required": ["page", "chrome_style"]}, "browser_action": {"type": "object", "properties": {"default_icon": {"type": "string"}, "default_popup": {"type": "string"}}, "required": ["default_icon", "default_popup"]}, "web_accessible_resources": {"type": "array", "items": {"type": "string"}}, "icons": {"type": "object", "properties": {"16": {"type": "string"}, "48": {"type": "string"}, "128": {"type": "string"}}, "required": ["16", "48", "128"]}, "background": {"type": "object", "properties": {"scripts": {"type": "array", "items": {"type": "string"}}}, "required": ["scripts"]}, "permissions": {"type": "array", "items": {"type": "string"}}, "content_security_policy": {"type": "string"}, "key": {"type": "string"}, "oauth2": {"type": "object", "properties": {"client_id": {"type": "string"}, "scopes": {"type": "array", "items": {"type": "string"}}}, "required": ["client_id", "scopes"]}}, "required": ["manifest_version", "name", "description", "version", "options_ui", "browser_action", "web_accessible_resources", "icons", "background", "permissions", "content_security_policy", "key", "oauth2"], "$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"}, "ot": {"type": "integer"}, "alias": {"type": "integer"}, "setcode": {"type": "integer"}, "type": {"type": "integer"}, "atk": {"type": "integer"}, "def": {"type": "integer"}, "level": {"type": "integer"}, "race": {"type": "integer"}, "attribute": {"type": "integer"}, "category": {"type": "integer"}, "name": {"type": "string"}, "desc": {"type": "string"}, "str1": {"type": "string"}, "str2": {"type": "string"}, "str3": {"type": "string"}, "str4": {"type": "string"}, "str5": {"type": "string"}, "str6": {"type": "string"}, "str7": {"type": "string"}, "str8": {"type": "string"}, "str9": {"type": "string"}, "str10": {"type": "string"}, "str11": {"type": "string"}, "str12": {"type": "string"}, "str13": {"type": "string"}, "str14": {"type": "string"}, "str15": {"type": "string"}, "str16": {"type": "string"}, "links": {"type": "array", "items": {}}, "cardpool": {"type": "string"}, "ocg": {"type": "object", "properties": {"pack": {"type": "string"}, "pack_id": {"type": "string"}, "date": {"type": "string"}}, "required": ["pack", "pack_id", "date"]}, "tcg": {"type": "object", "properties": {"pack": {"type": "string"}, "pack_id": {"type": "string"}, "date": {"type": "string"}}, "required": ["pack", "pack_id", "date"]}, "picture": {"type": "string"}}, "required": ["id", "ot", "alias", "setcode", "type", "atk", "def", "level", "race", "attribute", "category", "name", "desc", "str1", "str2", "str3", "str4", "str5", "str6", "str7", "str8", "str9", "str10", "str11", "str12", "str13", "str14", "str15", "str16", "links", "cardpool", "ocg", "tcg", "picture"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : 24150026, "ot" : 3, "alias" : 0, "setcode" : 17, "type" : 33, "atk" : 2100, "def" : 1100, "level" : 4, "race" : 32, "attribute" : 1, "category" : 2048, "name" : "Karakuri Muso mdl 818 \"Haipa\"", "desc" : "This card must attack if able. When this face-up Attack Position card is selected as an attack target, change it to Defense Position. If this card attacks, change it to Defense Position at the end of the Battle Phase.", "str1" : "Change to defense position", "str2" : "", "str3" : "", "str4" : "", "str5" : "", "str6" : "", "str7" : "", "str8" : "", "str9" : "", "str10" : "", "str11" : "", "str12" : "", "str13" : "", "str14" : "", "str15" : "", "str16" : "", "links" : [], "cardpool" : "OCG/TCG", "ocg" : {"pack" : "Extra Pack Volume 4", "pack_id" : "EXP4-JP034", "date" : "2011-09-17"}, "tcg" : {"pack" : "Storm of Ragnarok", "pack_id" : "STOR-EN083", "date" : "2011-02-08"}, "picture" : "https://vignette.wikia.nocookie.net/yugioh/images/9/91/KarakuriMusomdl818Haipa-STOR-EN-UR-UE.png"} | json_instruct | {"type": "object", "properties": {"id": {"type": "integer"}, "ot": {"type": "integer"}, "alias": {"type": "integer"}, "setcode": {"type": "integer"}, "type": {"type": "integer"}, "atk": {"type": "integer"}, "def": {"type": "integer"}, "level": {"type": "integer"}, "race": {"type": "integer"}, "attribute": {"type": "integer"}, "category": {"type": "integer"}, "name": {"type": "string"}, "desc": {"type": "string"}, "str1": {"type": "string"}, "str2": {"type": "string"}, "str3": {"type": "string"}, "str4": {"type": "string"}, "str5": {"type": "string"}, "str6": {"type": "string"}, "str7": {"type": "string"}, "str8": {"type": "string"}, "str9": {"type": "string"}, "str10": {"type": "string"}, "str11": {"type": "string"}, "str12": {"type": "string"}, "str13": {"type": "string"}, "str14": {"type": "string"}, "str15": {"type": "string"}, "str16": {"type": "string"}, "links": {"type": "array", "items": {}}, "cardpool": {"type": "string"}, "ocg": {"type": "object", "properties": {"pack": {"type": "string"}, "pack_id": {"type": "string"}, "date": {"type": "string"}}, "required": ["pack", "pack_id", "date"]}, "tcg": {"type": "object", "properties": {"pack": {"type": "string"}, "pack_id": {"type": "string"}, "date": {"type": "string"}}, "required": ["pack", "pack_id", "date"]}, "picture": {"type": "string"}}, "required": ["id", "ot", "alias", "setcode", "type", "atk", "def", "level", "race", "attribute", "category", "name", "desc", "str1", "str2", "str3", "str4", "str5", "str6", "str7", "str8", "str9", "str10", "str11", "str12", "str13", "str14", "str15", "str16", "links", "cardpool", "ocg", "tcg", "picture"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"word": {"type": "string"}, "definitions": {"type": "array", "items": {"type": "string"}}, "parts-of-speech": {"type": "string"}}, "required": ["word", "definitions", "parts-of-speech"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"word" : "Emancipate", "definitions" : ["set free, especially from legal, social, or political restrictions", "set (a child) free from the authority of its parents", "free (someone) from slavery"], "parts-of-speech" : "Verb"} | json_instruct | {"type": "object", "properties": {"word": {"type": "string"}, "definitions": {"type": "array", "items": {"type": "string"}}, "parts-of-speech": {"type": "string"}}, "required": ["word", "definitions", "parts-of-speech"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "summary": {"type": "string"}, "homepage": {"type": "string"}, "license": {"type": "string"}, "authors": {"type": "object", "properties": {"Yannick Heinrich": {"type": "string"}}, "required": ["Yannick Heinrich"]}, "social_media_url": {"type": "string"}, "platforms": {"type": "object", "properties": {"ios": {"type": "string"}, "osx": {"type": "string"}, "watchos": {"type": "string"}, "tvos": {"type": "string"}}, "required": ["ios", "osx", "watchos", "tvos"]}, "source": {"type": "object", "properties": {"git": {"type": "string"}, "tag": {"type": "string"}}, "required": ["git", "tag"]}, "source_files": {"type": "string"}}, "required": ["name", "version", "summary", "homepage", "license", "authors", "social_media_url", "platforms", "source", "source_files"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "LambertSwift", "version" : "1.0.0", "summary" : "A lightweight library to convert Lambert coordinates to WGS84.", "homepage" : "https://github.com/yageek/LambertSwift", "license" : "MIT", "authors" : {"Yannick Heinrich" : "yannick.heinrich@gmail.com"}, "social_media_url" : "http://twitter.com/yageek", "platforms" : {"ios" : "8.0", "osx" : "10.9", "watchos" : "2.0", "tvos" : "9.0"}, "source" : {"git" : "https://github.com/yageek/LambertSwift.git", "tag" : "1.0.0"}, "source_files" : "Sources/*.swift"} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "summary": {"type": "string"}, "homepage": {"type": "string"}, "license": {"type": "string"}, "authors": {"type": "object", "properties": {"Yannick Heinrich": {"type": "string"}}, "required": ["Yannick Heinrich"]}, "social_media_url": {"type": "string"}, "platforms": {"type": "object", "properties": {"ios": {"type": "string"}, "osx": {"type": "string"}, "watchos": {"type": "string"}, "tvos": {"type": "string"}}, "required": ["ios", "osx", "watchos", "tvos"]}, "source": {"type": "object", "properties": {"git": {"type": "string"}, "tag": {"type": "string"}}, "required": ["git", "tag"]}, "source_files": {"type": "string"}}, "required": ["name", "version", "summary", "homepage", "license", "authors", "social_media_url", "platforms", "source", "source_files"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "array", "items": {"type": "object", "properties": {"errors": {"type": "array", "items": {}}, "file": {"type": "string"}, "name": {"type": "string"}}, "required": ["errors", "file", "name"]}}}, "required": ["contract", "tool", "start", "end", "duration", "analysis"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"contract" : "0xb71011e66d2eab678079e4782452d04fc60d04c9", "tool" : "honeybadger", "start" : 1565815369.8696005, "end" : 1565815379.4234784, "duration" : 9.553877830505371, "analysis" : [{"errors" : [], "file" : "/unique_chucks/21/0xb71011e66d2eab678079e4782452d04fc60d04c9.sol", "name" : "WhiteList"}]} | json_instruct | {"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "array", "items": {"type": "object", "properties": {"errors": {"type": "array", "items": {}}, "file": {"type": "string"}, "name": {"type": "string"}}, "required": ["errors", "file", "name"]}}}, "required": ["contract", "tool", "start", "end", "duration", "analysis"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"analyze": {"type": "array", "items": {"type": "string"}}, "parse": {"type": "array", "items": {"type": "string"}}}, "required": ["analyze", "parse"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"analyze" : ["--enable=portability", "--enable=security", "--enable=sensitive", "--disable=google", "--enable=google-build-namespaces", "--skip=.github/codechecker/skipfile.txt"], "parse" : ["--skip=.github/codechecker/skipfile.txt"]} | json_instruct | {"type": "object", "properties": {"analyze": {"type": "array", "items": {"type": "string"}}, "parse": {"type": "array", "items": {"type": "string"}}}, "required": ["analyze", "parse"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"arXiv": {"type": "string"}, "title": {"type": "string"}, "pdf": {"type": "string"}, "authors": {"type": "array", "items": {"type": "string"}}, "abstract": {"type": "string"}, "s2id": {"type": "string"}, "twitter": {"type": "object", "properties": {"retweets": {"type": "integer"}, "likes": {"type": "integer"}, "replies": {"type": "integer"}, "ids": {"type": "array", "items": {"type": "string"}}}, "required": ["retweets", "likes", "replies", "ids"]}, "citations": {"type": "integer"}, "posterSession": {"type": "string"}}, "required": ["arXiv", "title", "pdf", "authors", "abstract", "s2id", "twitter", "citations", "posterSession"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"arXiv" : "http://arxiv.org/abs/2104.05895", "title" : "IMAGINE: Image Synthesis by Image-Guided Model Inversion", "pdf" : "https://openaccess.thecvf.com/content/CVPR2021/papers/Wang_IMAGINE_Image_Synthesis_by_Image-Guided_Model_Inversion_CVPR_2021_paper.pdf", "authors" : ["Pei Wang", "Yijun Li", "Krishna Kumar Singh", "Jingwan Lu", "Nuno Vasconcelos"], "abstract" : "Synthesizing variations of a specific reference image with semantically valid content is an important task in terms of personalized generation as well as for data augmentation. In this work, we propose an inversion based method, denoted as IMAge-Guided model INvErsion (IMAGINE), to generate high-quality and diverse images only from one single training sample. We mainly leverage the knowledge of image semantics from a pre-trained classifier and achieve plausible generations via matching multi-level feature representations in the classifier, associated with adversarial training with an external discriminator. IMAGINE enables the synthesis procedure to be able to simultaneously 1) enforce semantic specificity constraints during the synthesis, 2) produce realistic images without the introduction of generator training, 3) allow fine controls over the synthesized image, and 4) be model-compact. With extensive experimental results, we demonstrate qualitatively and quantitatively that IMAGINE performs favorably against state-of-the-art GAN-based and inversion-based methods, across three different image domains, i.e., the object, scene and texture.", "s2id" : "d7a40ebebd8c00ff853b64ebecad366477bf0adb", "twitter" : {"retweets" : 2, "likes" : 39, "replies" : 0, "ids" : ["1382143692409085954"]}, "citations" : 1, "posterSession" : "Tuesday"} | json_instruct | {"type": "object", "properties": {"arXiv": {"type": "string"}, "title": {"type": "string"}, "pdf": {"type": "string"}, "authors": {"type": "array", "items": {"type": "string"}}, "abstract": {"type": "string"}, "s2id": {"type": "string"}, "twitter": {"type": "object", "properties": {"retweets": {"type": "integer"}, "likes": {"type": "integer"}, "replies": {"type": "integer"}, "ids": {"type": "array", "items": {"type": "string"}}}, "required": ["retweets", "likes", "replies", "ids"]}, "citations": {"type": "integer"}, "posterSession": {"type": "string"}}, "required": ["arXiv", "title", "pdf", "authors", "abstract", "s2id", "twitter", "citations", "posterSession"], "$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"}, "main": {"type": "string"}, "repository": {"type": "string"}, "author": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"@sendgrid/mail": {"type": "string"}, "airtable": {"type": "string"}, "dotenv": {"type": "string"}, "fs-extra": {"type": "string"}, "replace": {"type": "string"}, "serverless": {"type": "string"}, "sync-request": {"type": "string"}, "uuid": {"type": "string"}}, "required": ["@sendgrid/mail", "airtable", "dotenv", "fs-extra", "replace", "serverless", "sync-request", "uuid"]}, "peerDependencies": {"type": "object", "properties": {"gatsby": {"type": "string"}, "react": {"type": "string"}}, "required": ["gatsby", "react"]}, "scripts": {"type": "object", "properties": {"build": {"type": "string"}, "prepare": {"type": "string"}, "watch": {"type": "string"}, "clean": {"type": "string"}}, "required": ["build", "prepare", "watch", "clean"]}, "devDependencies": {"type": "object", "properties": {"@babel/cli": {"type": "string"}, "@babel/core": {"type": "string"}, "babel-preset-gatsby-package": {"type": "string"}, "rimraf": {"type": "string"}}, "required": ["@babel/cli", "@babel/core", "babel-preset-gatsby-package", "rimraf"]}}, "required": ["name", "version", "main", "repository", "author", "bugs", "keywords", "license", "dependencies", "peerDependencies", "scripts", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "gatsby-plugin-data-protect", "version" : "0.0.17", "main" : "index.js", "repository" : "git@github.com:solublestudio/gatsby-plugin-data-protect.git", "author" : "Soluble Studio <tech@solublestudio.com>", "bugs" : {"url" : "https://github.com/solublestudio/gatsby-plugin-data-protect/issues"}, "keywords" : ["gatsby", "gatsby-plugin", "data protect"], "license" : "MIT", "dependencies" : {"@sendgrid/mail" : "^6.4.0", "airtable" : "^0.7.2", "dotenv" : "^8.1.0", "fs-extra" : "^8.1.0", "replace" : "^1.1.1", "serverless" : "^1.53.0", "sync-request" : "^6.1.0", "uuid" : "^3.3.3"}, "peerDependencies" : {"gatsby" : ">=2.0.0", "react" : "^16.8.0"}, "scripts" : {"build" : "babel src --out-dir .", "prepare" : "npm run clean; NODE_ENV=production npm run build", "watch" : "babel -w src --out-dir .", "clean" : "rimraf *.js"}, "devDependencies" : {"@babel/cli" : "^7.6.4", "@babel/core" : "^7.6.4", "babel-preset-gatsby-package" : "^0.2.8", "rimraf" : "^3.0.0"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "main": {"type": "string"}, "repository": {"type": "string"}, "author": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"@sendgrid/mail": {"type": "string"}, "airtable": {"type": "string"}, "dotenv": {"type": "string"}, "fs-extra": {"type": "string"}, "replace": {"type": "string"}, "serverless": {"type": "string"}, "sync-request": {"type": "string"}, "uuid": {"type": "string"}}, "required": ["@sendgrid/mail", "airtable", "dotenv", "fs-extra", "replace", "serverless", "sync-request", "uuid"]}, "peerDependencies": {"type": "object", "properties": {"gatsby": {"type": "string"}, "react": {"type": "string"}}, "required": ["gatsby", "react"]}, "scripts": {"type": "object", "properties": {"build": {"type": "string"}, "prepare": {"type": "string"}, "watch": {"type": "string"}, "clean": {"type": "string"}}, "required": ["build", "prepare", "watch", "clean"]}, "devDependencies": {"type": "object", "properties": {"@babel/cli": {"type": "string"}, "@babel/core": {"type": "string"}, "babel-preset-gatsby-package": {"type": "string"}, "rimraf": {"type": "string"}}, "required": ["@babel/cli", "@babel/core", "babel-preset-gatsby-package", "rimraf"]}}, "required": ["name", "version", "main", "repository", "author", "bugs", "keywords", "license", "dependencies", "peerDependencies", "scripts", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"blobContainerUrl": {"type": "string"}}, "required": ["blobContainerUrl"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"blobContainerUrl" : "https://adbenchresults.blob.core.windows.net/plots"} | json_instruct | {"type": "object", "properties": {"blobContainerUrl": {"type": "string"}}, "required": ["blobContainerUrl"], "$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": {"adcode": {"type": "integer"}, "lng": {"type": "number"}, "lat": {"type": "number"}, "name": {"type": "string"}, "level": {"type": "string"}, "parent": {"type": "integer"}}, "required": ["adcode", "lng", "lat", "name", "level", "parent"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"adcode" : 430702, "lng" : 111.690718, "lat" : 29.040477, "name" : "\u6b66\u9675\u533a", "level" : "district", "parent" : 430700}, {"adcode" : 430703, "lng" : 111.685327, "lat" : 29.014426, "name" : "\u9f0e\u57ce\u533a", "level" : "district", "parent" : 430700}, {"adcode" : 430721, "lng" : 112.172289, "lat" : 29.414483, "name" : "\u5b89\u4e61\u53bf", "level" : "district", "parent" : 430700}, {"adcode" : 430722, "lng" : 111.968506, "lat" : 28.907319, "name" : "\u6c49\u5bff\u53bf", "level" : "district", "parent" : 430700}, {"adcode" : 430723, "lng" : 111.761682, "lat" : 29.64264, "name" : "\u6fa7\u53bf", "level" : "district", "parent" : 430700}, {"adcode" : 430724, "lng" : 111.645602, "lat" : 29.443217, "name" : "\u4e34\u6fa7\u53bf", "level" : "district", "parent" : 430700}, {"adcode" : 430725, "lng" : 111.484503, "lat" : 28.902734, "name" : "\u6843\u6e90\u53bf", "level" : "district", "parent" : 430700}, {"adcode" : 430726, "lng" : 111.379087, "lat" : 29.584703, "name" : "\u77f3\u95e8\u53bf", "level" : "district", "parent" : 430700}, {"adcode" : 430781, "lng" : 111.879609, "lat" : 29.630867, "name" : "\u6d25\u5e02\u5e02", "level" : "district", "parent" : 430700}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"adcode": {"type": "integer"}, "lng": {"type": "number"}, "lat": {"type": "number"}, "name": {"type": "string"}, "level": {"type": "string"}, "parent": {"type": "integer"}}, "required": ["adcode", "lng", "lat", "name", "level", "parent"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"hash": {"type": "string"}, "parentHash": {"type": "string"}, "number": {"type": "integer"}, "timestamp": {"type": "integer"}, "nonce": {"type": "string"}, "difficulty": {"type": "integer"}, "gasLimit": {"type": "object", "properties": {"_hex": {"type": "string"}}, "required": ["_hex"]}, "gasUsed": {"type": "object", "properties": {"_hex": {"type": "string"}}, "required": ["_hex"]}, "miner": {"type": "string"}, "extraData": {"type": "string"}, "transactions": {"type": "array", "items": {}}}, "required": ["hash", "parentHash", "number", "timestamp", "nonce", "difficulty", "gasLimit", "gasUsed", "miner", "extraData", "transactions"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"hash" : "0x856594826e8604040c8701251fd782be71427162091fe2d7713e2080cda6e566", "parentHash" : "0xf4cb58da9e5a01372b4c8b63e0398257ffa63e4808509664891810ab18fb7a51", "number" : 61764, "timestamp" : 1439177787, "nonce" : "0xa2fd5583b4079941", "difficulty" : 1731066471465, "gasLimit" : {"_hex" : "0x2fefd8"}, "gasUsed" : {"_hex" : "0x0"}, "miner" : "0x9CF253B20806e369059D8D8023f376b1aE248aDD", "extraData" : "0x", "transactions" : []} | json_instruct | {"type": "object", "properties": {"hash": {"type": "string"}, "parentHash": {"type": "string"}, "number": {"type": "integer"}, "timestamp": {"type": "integer"}, "nonce": {"type": "string"}, "difficulty": {"type": "integer"}, "gasLimit": {"type": "object", "properties": {"_hex": {"type": "string"}}, "required": ["_hex"]}, "gasUsed": {"type": "object", "properties": {"_hex": {"type": "string"}}, "required": ["_hex"]}, "miner": {"type": "string"}, "extraData": {"type": "string"}, "transactions": {"type": "array", "items": {}}}, "required": ["hash", "parentHash", "number", "timestamp", "nonce", "difficulty", "gasLimit", "gasUsed", "miner", "extraData", "transactions"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"start": {"type": "string"}, "end": {"type": "string"}, "test_score": {"type": "number"}}, "required": ["start", "end", "test_score"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"start" : "19:14:57", "end" : "19:19:57", "test_score" : 1.8672052884803099} | json_instruct | {"type": "object", "properties": {"start": {"type": "string"}, "end": {"type": "string"}, "test_score": {"type": "number"}}, "required": ["start", "end", "test_score"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "array", "items": {"type": "object", "properties": {"c": {"type": "string"}, "t": {"type": "string"}, "r": {"type": "object", "properties": {"dark_plus": {"type": "string"}, "light_plus": {"type": "string"}, "dark_vs": {"type": "string"}, "light_vs": {"type": "string"}, "hc_black": {"type": "string"}, "hc_light": {"type": "string"}}, "required": ["dark_plus", "light_plus", "dark_vs", "light_vs", "hc_black", "hc_light"]}}, "required": ["c", "t", "r"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"c" : ".ssdsd", "t" : "text.pug entity.other.attribute-name.class.pug", "r" : {"dark_plus" : "entity.other.attribute-name: #9CDCFE", "light_plus" : "entity.other.attribute-name: #FF0000", "dark_vs" : "entity.other.attribute-name: #9CDCFE", "light_vs" : "entity.other.attribute-name: #FF0000", "hc_black" : "entity.other.attribute-name: #9CDCFE", "hc_light" : "entity.other.attribute-name: #264F78"}}, {"c" : " // asdsdas", "t" : "text.pug string.comment.buffered.block.pug", "r" : {"dark_plus" : "string: #CE9178", "light_plus" : "string.comment.buffered.block.pug: #0000FF", "dark_vs" : "string: #CE9178", "light_vs" : "string.comment.buffered.block.pug: #0000FF", "hc_black" : "string: #CE9178", "hc_light" : "string.comment.buffered.block.pug: #0000FF"}}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"c": {"type": "string"}, "t": {"type": "string"}, "r": {"type": "object", "properties": {"dark_plus": {"type": "string"}, "light_plus": {"type": "string"}, "dark_vs": {"type": "string"}, "light_vs": {"type": "string"}, "hc_black": {"type": "string"}, "hc_light": {"type": "string"}}, "required": ["dark_plus", "light_plus", "dark_vs", "light_vs", "hc_black", "hc_light"]}}, "required": ["c", "t", "r"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"run_mode": {"type": "string"}, "secret_key": {"type": "string"}, "default_source": {"type": "string"}, "user_config": {"type": "string"}}, "required": ["run_mode", "secret_key", "default_source", "user_config"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"run_mode" : "debug", "secret_key" : "devkey", "default_source" : "curse", "user_config" : "configs/user.json"} | json_instruct | {"type": "object", "properties": {"run_mode": {"type": "string"}, "secret_key": {"type": "string"}, "default_source": {"type": "string"}, "user_config": {"type": "string"}}, "required": ["run_mode", "secret_key", "default_source", "user_config"], "$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"}, "name": {"type": "string"}, "nodes": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "id": {"type": "integer"}, "lat": {"type": "number"}, "lon": {"type": "number"}}, "required": ["type", "id", "lat", "lon"]}}, "volunteer_postcode": {"type": "string"}, "closest_distance": {"type": "integer"}}, "required": ["id", "name", "nodes", "volunteer_postcode", "closest_distance"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "92311687", "name" : "Hawthorn Close", "nodes" : [{"type" : "node", "id" : 1071388920, "lat" : 52.3576328, "lon" : -0.6847815}, {"type" : "node", "id" : 1071388954, "lat" : 52.3577145, "lon" : -0.6853559}, {"type" : "node", "id" : 1071388963, "lat" : 52.3581407, "lon" : -0.6842852}, {"type" : "node", "id" : 1071388986, "lat" : 52.357759, "lon" : -0.6843603}, {"type" : "node", "id" : 1071388990, "lat" : 52.3576362, "lon" : -0.6846393}, {"type" : "node", "id" : 1071389065, "lat" : 52.3576853, "lon" : -0.6844703}], "volunteer_postcode" : "NN15 5QD", "closest_distance" : 111} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "nodes": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "id": {"type": "integer"}, "lat": {"type": "number"}, "lon": {"type": "number"}}, "required": ["type", "id", "lat", "lon"]}}, "volunteer_postcode": {"type": "string"}, "closest_distance": {"type": "integer"}}, "required": ["id", "name", "nodes", "volunteer_postcode", "closest_distance"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "array", "items": {"type": "object", "properties": {"__symbolic": {"type": "string"}, "version": {"type": "integer"}, "metadata": {"type": "object", "properties": {}, "required": []}, "exports": {"type": "array", "items": {"type": "object", "properties": {"from": {"type": "string"}}, "required": ["from"]}}}, "required": ["__symbolic", "version", "metadata", "exports"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"__symbolic" : "module", "version" : 3, "metadata" : {}, "exports" : [{"from" : "./ngx-google-places-autocomplete.module"}, {"from" : "./ngx-google-places-autocomplete.directive"}]}, {"__symbolic" : "module", "version" : 1, "metadata" : {}, "exports" : [{"from" : "./ngx-google-places-autocomplete.module"}, {"from" : "./ngx-google-places-autocomplete.directive"}]}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"__symbolic": {"type": "string"}, "version": {"type": "integer"}, "metadata": {"type": "object", "properties": {}, "required": []}, "exports": {"type": "array", "items": {"type": "object", "properties": {"from": {"type": "string"}}, "required": ["from"]}}}, "required": ["__symbolic", "version", "metadata", "exports"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"Name": {"type": "string"}, "ShortName": {"type": "string"}, "Description": {"type": "string"}}, "required": ["Name", "ShortName", "Description"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"Name" : "Canon de 165 mm pour MPX-SD 9x19", "ShortName" : "165 mm MPXSD 9x19", "Description" : "Canon sp\u00e9cifique de 165 mm de long pour MPX-SD chambr\u00e9 en 9x19. "} | json_instruct | {"type": "object", "properties": {"Name": {"type": "string"}, "ShortName": {"type": "string"}, "Description": {"type": "string"}}, "required": ["Name", "ShortName", "Description"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"id": {"type": "string"}, "source_type": {"type": "string"}, "source_name": {"type": "string"}, "default": {"type": "boolean"}}, "required": ["id", "source_type", "source_name", "default"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "j5gd27d6", "source_type" : "isolate", "source_name" : "PV-0341", "default" : true} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "source_type": {"type": "string"}, "source_name": {"type": "string"}, "default": {"type": "boolean"}}, "required": ["id", "source_type", "source_name", "default"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"coverage": {"type": "object", "properties": {"country": {"type": "string"}, "state": {"type": "string"}, "county": {"type": "string"}}, "required": ["country", "state", "county"]}, "data": {"type": "string"}, "type": {"type": "string"}, "fingerprint": {"type": "string"}, "version": {"type": "string"}, "cache": {"type": "string"}}, "required": ["coverage", "data", "type", "fingerprint", "version", "cache"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"coverage" : {"country" : "us", "state" : "la", "county" : "Orleans"}, "data" : "http://gis.nola.gov/arcgis/rest/services/LGIM/TaxParcelQuery/MapServer/0/", "type" : "ESRI", "fingerprint" : "d3a49cf79b62bc531f0edb9ee80e940b", "version" : "20140613", "cache" : "http://s3.amazonaws.com/openaddresses/20140613/us-la-new_orleans.json"} | json_instruct | {"type": "object", "properties": {"coverage": {"type": "object", "properties": {"country": {"type": "string"}, "state": {"type": "string"}, "county": {"type": "string"}}, "required": ["country", "state", "county"]}, "data": {"type": "string"}, "type": {"type": "string"}, "fingerprint": {"type": "string"}, "version": {"type": "string"}, "cache": {"type": "string"}}, "required": ["coverage", "data", "type", "fingerprint", "version", "cache"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"name": {"type": "string"}, "region": {"type": "string"}, "profile": {"type": "string"}, "IDs": {"type": "string"}}, "required": ["name", "region", "profile", "IDs"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "DE UM NOME PARA SUA IMAGEM", "region" : "INFORME A REGIAO", "profile" : "INFORME O PERFIL COM A CREDENCIAL DA AWS", "IDs" : "AccountID "} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "region": {"type": "string"}, "profile": {"type": "string"}, "IDs": {"type": "string"}}, "required": ["name", "region", "profile", "IDs"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "size": {"type": "integer"}, "link": {"type": "string"}, "created_at": {"type": "string"}, "downloads": {"type": "integer"}, "linkid": {"type": "string"}, "convert": {"type": "string"}, "achorname": {"type": "string"}, "subscribe": {"type": "string"}, "avatar-img": {"type": "string"}, "folderName": {"type": "string"}, "thumbUrl": {"type": "string"}}, "required": ["name", "size", "link", "created_at", "downloads", "linkid", "convert", "achorname", "subscribe", "avatar-img", "folderName", "thumbUrl"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"name" : "\u8273\u9047\u6781\u54c1\u53f0\u6e7e\u9753\u6a21 \u9152\u5427\u704c\u9189\u5e26\u5230\u5bbe\u9986\u556a\u556a\u8ff7\u64cd \u65e0\u5957\u76f4\u63a5\u5185\u5c04\u5c0f\u7a74", "size" : 109061856, "link" : "https://streamtape.com/e/jqX8473jekizy2Z", "created_at" : "2022\u5e7404\u670828\u65e5 14:09:28", "downloads" : 0, "linkid" : "jqX8473jekizy2Z", "convert" : "converted", "achorname" : "\u4e38\u5b50\u5466", "subscribe" : "130.2\u4e07\u4f4d\u8ba2\u9605\u8005", "avatar-img" : "https://huyaimg.msstatic.com/avatar/1022/07/ec5fef7c7662720286fbbb12395390_180_135.jpg?1628178596?458654", "folderName" : "\u8273\u9047\u6781\u54c1\u53f0\u6e7e\u9753\u6a21 \u9152\u5427\u704c\u9189\u5e26\u5230\u5bbe\u9986\u556a\u556a\u8ff7\u64cd \u65e0\u5957\u76f4\u63a5\u5185\u5c04\u5c0f\u7a74", "thumbUrl" : "https://thumb.tapecontent.net/thumb/jqX8473jekizy2Z/ZVg39xOBMqFqxmV.jpg"}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "size": {"type": "integer"}, "link": {"type": "string"}, "created_at": {"type": "string"}, "downloads": {"type": "integer"}, "linkid": {"type": "string"}, "convert": {"type": "string"}, "achorname": {"type": "string"}, "subscribe": {"type": "string"}, "avatar-img": {"type": "string"}, "folderName": {"type": "string"}, "thumbUrl": {"type": "string"}}, "required": ["name", "size", "link", "created_at", "downloads", "linkid", "convert", "achorname", "subscribe", "avatar-img", "folderName", "thumbUrl"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"rustc": {"type": "integer"}, "features": {"type": "string"}, "target": {"type": "integer"}, "profile": {"type": "integer"}, "path": {"type": "integer"}, "deps": {"type": "array", "items": {}}, "local": {"type": "array", "items": {"type": "object", "properties": {"CheckDepInfo": {"type": "object", "properties": {"dep_info": {"type": "string"}}, "required": ["dep_info"]}}, "required": ["CheckDepInfo"]}}, "rustflags": {"type": "array", "items": {}}, "metadata": {"type": "integer"}}, "required": ["rustc", "features", "target", "profile", "path", "deps", "local", "rustflags", "metadata"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"rustc" : 6623798082787118741, "features" : "[]", "target" : 18361464591602353586, "profile" : 8248545651247322450, "path" : 10872709659218687626, "deps" : [], "local" : [{"CheckDepInfo" : {"dep_info" : "debug\\.fingerprint\\blog-f87d7720614e0667\\dep-test-lib-blog-f87d7720614e0667"}}], "rustflags" : [], "metadata" : 17560930066511985654} | json_instruct | {"type": "object", "properties": {"rustc": {"type": "integer"}, "features": {"type": "string"}, "target": {"type": "integer"}, "profile": {"type": "integer"}, "path": {"type": "integer"}, "deps": {"type": "array", "items": {}}, "local": {"type": "array", "items": {"type": "object", "properties": {"CheckDepInfo": {"type": "object", "properties": {"dep_info": {"type": "string"}}, "required": ["dep_info"]}}, "required": ["CheckDepInfo"]}}, "rustflags": {"type": "array", "items": {}}, "metadata": {"type": "integer"}}, "required": ["rustc", "features", "target", "profile", "path", "deps", "local", "rustflags", "metadata"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"HBx": {"type": "string"}, "Peptide X": {"type": "string"}, "pX": {"type": "string"}, "Core antigen": {"type": "string"}, "Core protein": {"type": "string"}, "HBcAg": {"type": "string"}, "p21.5": {"type": "string"}, "L glycoprotein": {"type": "string"}, "L-HBsAg": {"type": "string"}, "Large S protein": {"type": "string"}, "Large surface protein": {"type": "string"}, "Major surface antigen": {"type": "string"}, "LHB": {"type": "string"}, "HBeAg": {"type": "string"}, "Precore protein": {"type": "string"}, "p25": {"type": "string"}, "P20975": {"type": "string"}, "X_HBVB2": {"type": "string"}, "Protein X": {"type": "string"}, "X": {"type": "string"}, "P69707": {"type": "string"}, "CAPSD_HBVB2": {"type": "string"}, "Capsid protein": {"type": "string"}, "C": {"type": "string"}, "P17397": {"type": "string"}, "HBSAG_HBVB2": {"type": "string"}, "Large envelope protein": {"type": "string"}, "S": {"type": "string"}, "P17393": {"type": "string"}, "DPOL_HBVB2": {"type": "string"}, "Protein P": {"type": "string"}, "P": {"type": "string"}, "P0C6G7": {"type": "string"}, "HBEAG_HBVB2": {"type": "string"}, "External core antigen": {"type": "string"}}, "required": ["HBx", "Peptide X", "pX", "Core antigen", "Core protein", "HBcAg", "p21.5", "L glycoprotein", "L-HBsAg", "Large S protein", "Large surface protein", "Major surface antigen", "LHB", "HBeAg", "Precore protein", "p25", "P20975", "X_HBVB2", "Protein X", "X", "P69707", "CAPSD_HBVB2", "Capsid protein", "C", "P17397", "HBSAG_HBVB2", "Large envelope protein", "S", "P17393", "DPOL_HBVB2", "Protein P", "P", "P0C6G7", "HBEAG_HBVB2", "External core antigen"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"HBx" : "P20975", "Peptide X" : "P20975", "pX" : "P20975", "Core antigen" : "P69707", "Core protein" : "P69707", "HBcAg" : "P69707", "p21.5" : "P69707", "L glycoprotein" : "P17397", "L-HBsAg" : "P17397", "Large S protein" : "P17397", "Large surface protein" : "P17397", "Major surface antigen" : "P17397", "LHB" : "P17397", "HBeAg" : "P0C6G7", "Precore protein" : "P0C6G7", "p25" : "P0C6G7", "P20975" : "P20975", "X_HBVB2" : "P20975", "Protein X" : "P20975", "X" : "P20975", "P69707" : "P69707", "CAPSD_HBVB2" : "P69707", "Capsid protein" : "P69707", "C" : "P0C6G7", "P17397" : "P17397", "HBSAG_HBVB2" : "P17397", "Large envelope protein" : "P17397", "S" : "P17397", "P17393" : "P17393", "DPOL_HBVB2" : "P17393", "Protein P" : "P17393", "P" : "P17393", "P0C6G7" : "P0C6G7", "HBEAG_HBVB2" : "P0C6G7", "External core antigen" : "P0C6G7"} | json_instruct | {"type": "object", "properties": {"HBx": {"type": "string"}, "Peptide X": {"type": "string"}, "pX": {"type": "string"}, "Core antigen": {"type": "string"}, "Core protein": {"type": "string"}, "HBcAg": {"type": "string"}, "p21.5": {"type": "string"}, "L glycoprotein": {"type": "string"}, "L-HBsAg": {"type": "string"}, "Large S protein": {"type": "string"}, "Large surface protein": {"type": "string"}, "Major surface antigen": {"type": "string"}, "LHB": {"type": "string"}, "HBeAg": {"type": "string"}, "Precore protein": {"type": "string"}, "p25": {"type": "string"}, "P20975": {"type": "string"}, "X_HBVB2": {"type": "string"}, "Protein X": {"type": "string"}, "X": {"type": "string"}, "P69707": {"type": "string"}, "CAPSD_HBVB2": {"type": "string"}, "Capsid protein": {"type": "string"}, "C": {"type": "string"}, "P17397": {"type": "string"}, "HBSAG_HBVB2": {"type": "string"}, "Large envelope protein": {"type": "string"}, "S": {"type": "string"}, "P17393": {"type": "string"}, "DPOL_HBVB2": {"type": "string"}, "Protein P": {"type": "string"}, "P": {"type": "string"}, "P0C6G7": {"type": "string"}, "HBEAG_HBVB2": {"type": "string"}, "External core antigen": {"type": "string"}}, "required": ["HBx", "Peptide X", "pX", "Core antigen", "Core protein", "HBcAg", "p21.5", "L glycoprotein", "L-HBsAg", "Large S protein", "Large surface protein", "Major surface antigen", "LHB", "HBeAg", "Precore protein", "p25", "P20975", "X_HBVB2", "Protein X", "X", "P69707", "CAPSD_HBVB2", "Capsid protein", "C", "P17397", "HBSAG_HBVB2", "Large envelope protein", "S", "P17393", "DPOL_HBVB2", "Protein P", "P", "P0C6G7", "HBEAG_HBVB2", "External core antigen"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "private": {"type": "boolean"}, "devDependencies": {"type": "object", "properties": {"babel-preset-react-native-stage-0": {"type": "string"}, "jest-expo": {"type": "string"}, "react-test-renderer": {"type": "string"}}, "required": ["babel-preset-react-native-stage-0", "jest-expo", "react-test-renderer"]}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}, "android": {"type": "string"}, "ios": {"type": "string"}, "test": {"type": "string"}}, "required": ["start", "android", "ios", "test"]}, "jest": {"type": "object", "properties": {"preset": {"type": "string"}}, "required": ["preset"]}, "dependencies": {"type": "object", "properties": {"idx": {"type": "string"}, "prettier": {"type": "string"}, "react": {"type": "string"}, "react-native": {"type": "string"}, "react-native-camera": {"type": "string"}, "react-native-elements": {"type": "string"}, "react-native-emoji": {"type": "string"}, "react-native-fs": {"type": "string"}, "react-native-vector-icons": {"type": "string"}, "react-navigation": {"type": "string"}}, "required": ["idx", "prettier", "react", "react-native", "react-native-camera", "react-native-elements", "react-native-emoji", "react-native-fs", "react-native-vector-icons", "react-navigation"]}}, "required": ["name", "version", "private", "devDependencies", "scripts", "jest", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "AnAppleADay", "version" : "0.1.0", "private" : true, "devDependencies" : {"babel-preset-react-native-stage-0" : "^1.0.1", "jest-expo" : "~20.0.0", "react-test-renderer" : "16.0.0-alpha.12"}, "scripts" : {"start" : "react-native start", "android" : "react-native run-android", "ios" : "react-native run-ios", "test" : "node node_modules/jest/bin/jest.js --watch"}, "jest" : {"preset" : "jest-expo"}, "dependencies" : {"idx" : "^1.5.0", "prettier" : "^1.7.0", "react" : "16.0.0-alpha.12", "react-native" : "^0.47.0", "react-native-camera" : "^0.10.0", "react-native-elements" : "^0.16.0", "react-native-emoji" : "^1.2.0", "react-native-fs" : "^2.5.1", "react-native-vector-icons" : "^4.3.0", "react-navigation" : "^1.0.0-beta.11"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "private": {"type": "boolean"}, "devDependencies": {"type": "object", "properties": {"babel-preset-react-native-stage-0": {"type": "string"}, "jest-expo": {"type": "string"}, "react-test-renderer": {"type": "string"}}, "required": ["babel-preset-react-native-stage-0", "jest-expo", "react-test-renderer"]}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}, "android": {"type": "string"}, "ios": {"type": "string"}, "test": {"type": "string"}}, "required": ["start", "android", "ios", "test"]}, "jest": {"type": "object", "properties": {"preset": {"type": "string"}}, "required": ["preset"]}, "dependencies": {"type": "object", "properties": {"idx": {"type": "string"}, "prettier": {"type": "string"}, "react": {"type": "string"}, "react-native": {"type": "string"}, "react-native-camera": {"type": "string"}, "react-native-elements": {"type": "string"}, "react-native-emoji": {"type": "string"}, "react-native-fs": {"type": "string"}, "react-native-vector-icons": {"type": "string"}, "react-navigation": {"type": "string"}}, "required": ["idx", "prettier", "react", "react-native", "react-native-camera", "react-native-elements", "react-native-emoji", "react-native-fs", "react-native-vector-icons", "react-navigation"]}}, "required": ["name", "version", "private", "devDependencies", "scripts", "jest", "dependencies"], "$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"}, "dependencies": {"type": "object", "properties": {"angular": {"type": "string"}, "angular-animate": {"type": "string"}, "angular-aria": {"type": "string"}, "angular-material": {"type": "string"}, "angular-mocks": {"type": "string"}, "angular-resource": {"type": "string"}, "angular-socket-io": {"type": "string"}, "angular-ui-router": {"type": "string"}, "angular-ui-utils": {"type": "string"}, "c3": {"type": "string"}, "c3-angular": {"type": "string"}, "d3": {"type": "string"}, "ng-file-upload": {"type": "string"}, "ng-mfb": {"type": "string"}, "socket.io-client": {"type": "string"}}, "required": ["angular", "angular-animate", "angular-aria", "angular-material", "angular-mocks", "angular-resource", "angular-socket-io", "angular-ui-router", "angular-ui-utils", "c3", "c3-angular", "d3", "ng-file-upload", "ng-mfb", "socket.io-client"]}}, "required": ["name", "version", "description", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "open-macro", "version" : "0.1.0", "description" : "Macroeconomic policy analysis in the cloud", "dependencies" : {"angular" : "~1.3.15", "angular-animate" : "~1.3.15", "angular-aria" : "~1.3.15", "angular-material" : "~0.8.3", "angular-mocks" : "~1.3.15", "angular-resource" : "~1.3.15", "angular-socket-io" : "~0.7.0", "angular-ui-router" : "~0.2.13", "angular-ui-utils" : "~0.2.3", "c3" : "~0.4.10", "c3-angular" : "~0.3.0", "d3" : "~3.5.0", "ng-file-upload" : "~3.2.4", "ng-mfb" : "~0.4.0", "socket.io-client" : "~1.3.5"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "dependencies": {"type": "object", "properties": {"angular": {"type": "string"}, "angular-animate": {"type": "string"}, "angular-aria": {"type": "string"}, "angular-material": {"type": "string"}, "angular-mocks": {"type": "string"}, "angular-resource": {"type": "string"}, "angular-socket-io": {"type": "string"}, "angular-ui-router": {"type": "string"}, "angular-ui-utils": {"type": "string"}, "c3": {"type": "string"}, "c3-angular": {"type": "string"}, "d3": {"type": "string"}, "ng-file-upload": {"type": "string"}, "ng-mfb": {"type": "string"}, "socket.io-client": {"type": "string"}}, "required": ["angular", "angular-animate", "angular-aria", "angular-material", "angular-mocks", "angular-resource", "angular-socket-io", "angular-ui-router", "angular-ui-utils", "c3", "c3-angular", "d3", "ng-file-upload", "ng-mfb", "socket.io-client"]}}, "required": ["name", "version", "description", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "lint": {"type": "string"}, "start": {"type": "string"}}, "required": ["test", "lint", "start"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "dependencies": {"type": "object", "properties": {"fastify": {"type": "string"}, "fastify-helmet": {"type": "string"}, "fastify-jwt": {"type": "string"}, "fastify-plugin": {"type": "string"}}, "required": ["fastify", "fastify-helmet", "fastify-jwt", "fastify-plugin"]}, "devDependencies": {"type": "object", "properties": {"@types/node": {"type": "string"}, "eslint": {"type": "string"}, "eslint-config-airbnb-base": {"type": "string"}, "eslint-plugin-import": {"type": "string"}}, "required": ["@types/node", "eslint", "eslint-config-airbnb-base", "eslint-plugin-import"]}}, "required": ["name", "version", "description", "main", "scripts", "repository", "author", "license", "bugs", "homepage", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "fastify-boilerplate", "version" : "1.0.0", "description" : "A simple Fastify boilerplate", "main" : "index.js", "scripts" : {"test" : "npm test", "lint" : "./node_modules/.bin/eslint . --fix", "start" : "node index.js"}, "repository" : {"type" : "git", "url" : "git+https://github.com/pablitovicente/fastify-boilerplate.git"}, "author" : "Pablito Vicente", "license" : "MIT", "bugs" : {"url" : "https://github.com/pablitovicente/fastify-boilerplate/issues"}, "homepage" : "https://github.com/pablitovicente/fastify-boilerplate#readme", "dependencies" : {"fastify" : "^3.25.3", "fastify-helmet" : "^5.3.2", "fastify-jwt" : "^4.1.3", "fastify-plugin" : "^3.0.0"}, "devDependencies" : {"@types/node" : "^17.0.8", "eslint" : "^8.6.0", "eslint-config-airbnb-base" : "^15.0.0", "eslint-plugin-import" : "^2.25.4"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "lint": {"type": "string"}, "start": {"type": "string"}}, "required": ["test", "lint", "start"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "dependencies": {"type": "object", "properties": {"fastify": {"type": "string"}, "fastify-helmet": {"type": "string"}, "fastify-jwt": {"type": "string"}, "fastify-plugin": {"type": "string"}}, "required": ["fastify", "fastify-helmet", "fastify-jwt", "fastify-plugin"]}, "devDependencies": {"type": "object", "properties": {"@types/node": {"type": "string"}, "eslint": {"type": "string"}, "eslint-config-airbnb-base": {"type": "string"}, "eslint-plugin-import": {"type": "string"}}, "required": ["@types/node", "eslint", "eslint-config-airbnb-base", "eslint-plugin-import"]}}, "required": ["name", "version", "description", "main", "scripts", "repository", "author", "license", "bugs", "homepage", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"type": {"type": "string"}, "grindingball": {"type": "object", "properties": {"item": {"type": "string"}}, "required": ["item"]}, "grinding": {"type": "number"}, "chance": {"type": "number"}, "power": {"type": "number"}, "durability": {"type": "integer"}}, "required": ["type", "grindingball", "grinding", "chance", "power", "durability"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"type" : "enderio:grindingball", "grindingball" : {"item" : "enderio:copper_alloy_grinding_ball"}, "grinding" : 1.2, "chance" : 1.65, "power" : 0.8, "durability" : 40000} | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "grindingball": {"type": "object", "properties": {"item": {"type": "string"}}, "required": ["item"]}, "grinding": {"type": "number"}, "chance": {"type": "number"}, "power": {"type": "number"}, "durability": {"type": "integer"}}, "required": ["type", "grindingball", "grinding", "chance", "power", "durability"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"hash": {"type": "string"}, "parentHash": {"type": "string"}, "number": {"type": "integer"}, "timestamp": {"type": "integer"}, "nonce": {"type": "string"}, "difficulty": {"type": "integer"}, "gasLimit": {"type": "object", "properties": {"_hex": {"type": "string"}}, "required": ["_hex"]}, "gasUsed": {"type": "object", "properties": {"_hex": {"type": "string"}}, "required": ["_hex"]}, "miner": {"type": "string"}, "extraData": {"type": "string"}, "transactions": {"type": "array", "items": {}}}, "required": ["hash", "parentHash", "number", "timestamp", "nonce", "difficulty", "gasLimit", "gasUsed", "miner", "extraData", "transactions"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"hash" : "0xc06f4d62acb50764c87ea6ce18c61b95a1d6147831a04e91fcf20fa92819c14a", "parentHash" : "0x4276a1b9f3a7eae13c5c38011d52814ed2846ce308daa1f82425422d087fae96", "number" : 82532, "timestamp" : 1439520967, "nonce" : "0x8232985cc25a04e5", "difficulty" : 2371789597914, "gasLimit" : {"_hex" : "0x2fefd8"}, "gasUsed" : {"_hex" : "0x0"}, "miner" : "0x4947190fcC30D3fb3a16233b259bFe6b3492339a", "extraData" : "0x476574682f76312e302e312d38326566323666362f6c696e75782f676f312e34", "transactions" : []} | json_instruct | {"type": "object", "properties": {"hash": {"type": "string"}, "parentHash": {"type": "string"}, "number": {"type": "integer"}, "timestamp": {"type": "integer"}, "nonce": {"type": "string"}, "difficulty": {"type": "integer"}, "gasLimit": {"type": "object", "properties": {"_hex": {"type": "string"}}, "required": ["_hex"]}, "gasUsed": {"type": "object", "properties": {"_hex": {"type": "string"}}, "required": ["_hex"]}, "miner": {"type": "string"}, "extraData": {"type": "string"}, "transactions": {"type": "array", "items": {}}}, "required": ["hash", "parentHash", "number", "timestamp", "nonce", "difficulty", "gasLimit", "gasUsed", "miner", "extraData", "transactions"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "image": {"type": "string"}, "path": {"type": "string"}}, "required": ["name", "image", "path"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"name" : "Fully Fenced", "image" : "https://drive.google.com/uc?export=view&id=1H_YMZ0GC74rkPG8B26n8F5rOVjW8tHuT", "path" : "/searchresults/hasfence"}, {"name" : "Water Feature", "image" : "https://drive.google.com/uc?export=view&id=1lEDDrEnmr9E3SroFmzTfzvCILpgAuQIf", "path" : "/searchresults/haswater"}, {"name" : "Puppy Playdate", "image" : "https://drive.google.com/uc?export=view&id=15webNb9z28jH6dGsBkt6_eI_4xXSzA2a", "path" : "/searchresults/puppyplaydate"}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "image": {"type": "string"}, "path": {"type": "string"}}, "required": ["name", "image", "path"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"nom": {"type": "string"}, "circ": {"type": "string"}, "dpt": {"type": "string"}, "inscrits": {"type": "integer"}, "abs": {"type": "integer"}, "votants": {"type": "integer"}, "blancs": {"type": "integer"}, "nuls": {"type": "integer"}, "exp": {"type": "integer"}, "res": {"type": "array", "items": {"type": "object", "properties": {"nuance": {"type": "string"}, "nom": {"type": "string"}, "voix": {"type": "integer"}}, "required": ["nuance", "nom", "voix"]}}}, "required": ["nom", "circ", "dpt", "inscrits", "abs", "votants", "blancs", "nuls", "exp", "res"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"nom" : "Lugan", "circ" : "3\u00e8me circonscription", "dpt" : "Tarn", "inscrits" : 354, "abs" : 173, "votants" : 181, "blancs" : 18, "nuls" : 6, "exp" : 157, "res" : [{"nuance" : "REM", "nom" : "M. Jean TERLIER", "voix" : 93}, {"nuance" : "LR", "nom" : "M. Bernard CARAYON", "voix" : 64}]} | json_instruct | {"type": "object", "properties": {"nom": {"type": "string"}, "circ": {"type": "string"}, "dpt": {"type": "string"}, "inscrits": {"type": "integer"}, "abs": {"type": "integer"}, "votants": {"type": "integer"}, "blancs": {"type": "integer"}, "nuls": {"type": "integer"}, "exp": {"type": "integer"}, "res": {"type": "array", "items": {"type": "object", "properties": {"nuance": {"type": "string"}, "nom": {"type": "string"}, "voix": {"type": "integer"}}, "required": ["nuance", "nom", "voix"]}}}, "required": ["nom", "circ", "dpt", "inscrits", "abs", "votants", "blancs", "nuls", "exp", "res"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {".js": {"type": "string"}}, "required": [".js"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {".js" : "4f799eb5d4085503da71e6312dc17a7318eb55ce.js"} | json_instruct | {"type": "object", "properties": {".js": {"type": "string"}}, "required": [".js"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"localities": {"type": "array", "items": {"type": "string"}}, "state": {"type": "string"}, "postal_code": {"type": "string"}, "locality": {"type": "string"}, "lat": {"type": "number"}, "region": {"type": "object", "properties": {"fips": {"type": "string"}, "abbr": {"type": "string"}, "name": {"type": "string"}}, "required": ["fips", "abbr", "name"]}, "city": {"type": "string"}, "type": {"type": "string"}, "lng": {"type": "number"}, "counties": {"type": "array", "items": {"type": "object", "properties": {"fips": {"type": "string"}, "name": {"type": "string"}}, "required": ["fips", "name"]}}}, "required": ["localities", "state", "postal_code", "locality", "lat", "region", "city", "type", "lng", "counties"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"localities" : ["Rover, AR", "Briggsville, AR"], "state" : "AR", "postal_code" : "72828", "locality" : "Briggsville, AR", "lat" : 34.930718, "region" : {"fips" : "05", "abbr" : "AR", "name" : "Arkansas"}, "city" : "Briggsville", "type" : "STANDARD", "lng" : -93.534996, "counties" : [{"fips" : "149", "name" : "Yell County"}]} | json_instruct | {"type": "object", "properties": {"localities": {"type": "array", "items": {"type": "string"}}, "state": {"type": "string"}, "postal_code": {"type": "string"}, "locality": {"type": "string"}, "lat": {"type": "number"}, "region": {"type": "object", "properties": {"fips": {"type": "string"}, "abbr": {"type": "string"}, "name": {"type": "string"}}, "required": ["fips", "abbr", "name"]}, "city": {"type": "string"}, "type": {"type": "string"}, "lng": {"type": "number"}, "counties": {"type": "array", "items": {"type": "object", "properties": {"fips": {"type": "string"}, "name": {"type": "string"}}, "required": ["fips", "name"]}}}, "required": ["localities", "state", "postal_code", "locality", "lat", "region", "city", "type", "lng", "counties"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"config_name": {"type": "string"}}, "required": ["config_name"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"config_name" : "white"} | json_instruct | {"type": "object", "properties": {"config_name": {"type": "string"}}, "required": ["config_name"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"Title": {"type": "string"}, "Year": {"type": "string"}, "Rated": {"type": "string"}, "Released": {"type": "string"}, "Runtime": {"type": "string"}, "Genre": {"type": "string"}, "Director": {"type": "string"}, "Writer": {"type": "string"}, "Actors": {"type": "string"}, "Plot": {"type": "string"}, "Language": {"type": "string"}, "Country": {"type": "string"}, "Awards": {"type": "string"}, "Poster": {"type": "string"}, "Ratings": {"type": "array", "items": {"type": "object", "properties": {"Source": {"type": "string"}, "Value": {"type": "string"}}, "required": ["Source", "Value"]}}, "Metascore": {"type": "string"}, "imdbRating": {"type": "string"}, "imdbVotes": {"type": "string"}, "imdbID": {"type": "string"}, "Type": {"type": "string"}, "DVD": {"type": "string"}, "BoxOffice": {"type": "string"}, "Production": {"type": "string"}, "Website": {"type": "string"}, "Response": {"type": "string"}}, "required": ["Title", "Year", "Rated", "Released", "Runtime", "Genre", "Director", "Writer", "Actors", "Plot", "Language", "Country", "Awards", "Poster", "Ratings", "Metascore", "imdbRating", "imdbVotes", "imdbID", "Type", "DVD", "BoxOffice", "Production", "Website", "Response"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"Title" : "Detroit", "Year" : "2017", "Rated" : "R", "Released" : "04 Aug 2017", "Runtime" : "143 min", "Genre" : "Crime, Drama, History", "Director" : "Kathryn Bigelow", "Writer" : "Mark Boal", "Actors" : "John Boyega, Will Poulter, Algee Smith, Jacob Latimore", "Plot" : "Fact-based drama set during the 1967 Detroit riots in which a group of rogue police officers respond to a complaint with retribution rather than justice on their minds.", "Language" : "English", "Country" : "USA", "Awards" : "N/A", "Poster" : "https://images-na.ssl-images-amazon.com/images/M/MV5BMTg4MDk4MTUxMF5BMl5BanBnXkFtZTgwNDE5NjA5MjI@._V1_SX300.jpg", "Ratings" : [{"Source" : "Internet Movie Database", "Value" : "7.6/10"}, {"Source" : "Rotten Tomatoes", "Value" : "82%"}, {"Source" : "Metacritic", "Value" : "78/100"}], "Metascore" : "78", "imdbRating" : "7.6", "imdbVotes" : "9,411", "imdbID" : "tt5390504", "Type" : "movie", "DVD" : "N/A", "BoxOffice" : "$16,788,494", "Production" : "Annapurna Pictures", "Website" : "http://detroit.movie/", "Response" : "True"} | json_instruct | {"type": "object", "properties": {"Title": {"type": "string"}, "Year": {"type": "string"}, "Rated": {"type": "string"}, "Released": {"type": "string"}, "Runtime": {"type": "string"}, "Genre": {"type": "string"}, "Director": {"type": "string"}, "Writer": {"type": "string"}, "Actors": {"type": "string"}, "Plot": {"type": "string"}, "Language": {"type": "string"}, "Country": {"type": "string"}, "Awards": {"type": "string"}, "Poster": {"type": "string"}, "Ratings": {"type": "array", "items": {"type": "object", "properties": {"Source": {"type": "string"}, "Value": {"type": "string"}}, "required": ["Source", "Value"]}}, "Metascore": {"type": "string"}, "imdbRating": {"type": "string"}, "imdbVotes": {"type": "string"}, "imdbID": {"type": "string"}, "Type": {"type": "string"}, "DVD": {"type": "string"}, "BoxOffice": {"type": "string"}, "Production": {"type": "string"}, "Website": {"type": "string"}, "Response": {"type": "string"}}, "required": ["Title", "Year", "Rated", "Released", "Runtime", "Genre", "Director", "Writer", "Actors", "Plot", "Language", "Country", "Awards", "Poster", "Ratings", "Metascore", "imdbRating", "imdbVotes", "imdbID", "Type", "DVD", "BoxOffice", "Production", "Website", "Response"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"type": {"type": "string"}, "objects": {"type": "object", "properties": {"E01001178": {"type": "object", "properties": {"type": {"type": "string"}, "crs": {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"]}}, "required": ["type", "properties"]}, "geometries": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"OA11CD": {"type": "string"}, "LAD11CD": {"type": "string"}}, "required": ["OA11CD", "LAD11CD"]}, "arcs": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}}, "required": ["type", "properties", "arcs"]}}}, "required": ["type", "crs", "geometries"]}}, "required": ["E01001178"]}, "arcs": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}}, "transform": {"type": "object", "properties": {"scale": {"type": "array", "items": {"type": "number"}}, "translate": {"type": "array", "items": {"type": "number"}}}, "required": ["scale", "translate"]}}, "required": ["type", "objects", "arcs", "transform"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"type" : "Topology", "objects" : {"E01001178" : {"type" : "GeometryCollection", "crs" : {"type" : "name", "properties" : {"name" : "urn:ogc:def:crs:OGC:1.3:CRS84"}}, "geometries" : [{"type" : "Polygon", "properties" : {"OA11CD" : "E00005901", "LAD11CD" : "E09000008"}, "arcs" : [[0, 1]]}, {"type" : "Polygon", "properties" : {"OA11CD" : "E00005902", "LAD11CD" : "E09000008"}, "arcs" : [[2, 3, 4, 5]]}, {"type" : "Polygon", "properties" : {"OA11CD" : "E00005906", "LAD11CD" : "E09000008"}, "arcs" : [[6, -5, 7, -1]]}, {"type" : "Polygon", "properties" : {"OA11CD" : "E00005909", "LAD11CD" : "E09000008"}, "arcs" : [[-3, 8]]}]}}, "arcs" : [[[2681, 6707], [-703, -478], [-226, 821]], [[1752, 7050], [-415, 1503], [-206, 506], [533, 439], [404, 501], [922, -2638], [-309, -654]], [[9168, 1562], [-789, 619], [-221, 1059], [-857, 14], [-327, -791], [-262, 585], [-524, 7], [-158, -1057]], [[6030, 1998], [-372, -194], [-904, 966], [-34, -553], [-1077, -456], [-183, 352], [-288, 2342]], [[3172, 4455], [-372, 1854]], [[2800, 6309], [1069, -275], [133, 1071], [710, 1190], [1208, -2927], [591, 165], [538, -1119], [642, 295], [307, -264], [1809, -1583], [192, -482], [-831, -818]], [[2681, 6707], [119, -398]], [[3172, 4455], [-575, -372], [-413, 1211], [-899, -601], [199, -540], [-694, -1264], [-241, 353], [-549, 1124], [674, 486], [-374, 1279], [1452, 919]], [[9168, 1562], [-62, -61], [-2015, -1469], [-56, -32], [-19, 558], [-538, 159], [59, 1529], [-507, -248]]], "transform" : {"scale" : [1.213022525427643e-06, 5.474906661769238e-07], "translate" : [-0.115895224319928, 51.38734454720653]}} | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "objects": {"type": "object", "properties": {"E01001178": {"type": "object", "properties": {"type": {"type": "string"}, "crs": {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"]}}, "required": ["type", "properties"]}, "geometries": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"OA11CD": {"type": "string"}, "LAD11CD": {"type": "string"}}, "required": ["OA11CD", "LAD11CD"]}, "arcs": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}}, "required": ["type", "properties", "arcs"]}}}, "required": ["type", "crs", "geometries"]}}, "required": ["E01001178"]}, "arcs": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}}, "transform": {"type": "object", "properties": {"scale": {"type": "array", "items": {"type": "number"}}, "translate": {"type": "array", "items": {"type": "number"}}}, "required": ["scale", "translate"]}}, "required": ["type", "objects", "arcs", "transform"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"number": {"type": "string"}, "title": {"type": "string"}, "url": {"type": "string"}, "difficulty": {"type": "string"}, "question": {"type": "string"}, "code": {"type": "string"}}, "required": ["number", "title", "url", "difficulty", "question", "code"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"number" : "297", "title" : "Serialize and Deserialize Binary Tree", "url" : "https://leetcode.com/problems/serialize-and-deserialize-binary-tree", "difficulty" : "Hard", "question" : "Serialization is the process of converting a data structure or object into a sequence of bits so that it can be stored in a file or memory buffer, or transmitted across a network connection link to be reconstructed later in the same or another computer environment.\n\nDesign an algorithm to serialize and deserialize a binary tree. There is no restriction on how your serialization/deserialization algorithm should work. You just need to ensure that a binary tree can be serialized to a string and this string can be deserialized to the original tree structure.\n\nExample: \n\nYou may serialize the following tree:\n\n 1\n / \\\n 2 3\n / \\\n 4 5\n\nas "[1,2,3,null,null,4,5]"\n\n\nClarification: The above format is the same as how LeetCode serializes a binary tree. You do not necessarily need to follow this format, so please be creative and come up with different approaches yourself.\n\nNote: Do not use class member/global/static variables to store states. Your serialize and deserialize algorithms should be stateless.\n", "code" : "undefined/** * Definition for a binary tree node. * public class TreeNode { * \u00a0 \u00a0 public int val; * \u00a0 \u00a0 public TreeNode left; * \u00a0 \u00a0 public TreeNode right; * \u00a0 \u00a0 public TreeNode(int x) { val = x; } * } */public class Codec {\u200b \u00a0 \u00a0// Encodes a tree to a single string. \u00a0 \u00a0public string serialize(TreeNode root) { \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 }\u200b \u00a0 \u00a0// Decodes your encoded data to tree. \u00a0 \u00a0public TreeNode deserialize(string data) { \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 }}\u200b// Your Codec object will be instantiated and called as such:// Codec codec = new Codec();// codec.deserialize(codec.serialize(root));"} | json_instruct | {"type": "object", "properties": {"number": {"type": "string"}, "title": {"type": "string"}, "url": {"type": "string"}, "difficulty": {"type": "string"}, "question": {"type": "string"}, "code": {"type": "string"}}, "required": ["number", "title", "url", "difficulty", "question", "code"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "array", "items": {"type": "object", "properties": {"model": {"type": "string"}, "pk": {"type": "integer"}, "fields": {"type": "object", "properties": {"registered_domain": {"type": "integer"}, "contact": {"type": "integer"}, "contact_type": {"type": "integer"}, "active": {"type": "boolean"}, "created": {"type": "string"}}, "required": ["registered_domain", "contact", "contact_type", "active", "created"]}}, "required": ["model", "pk", "fields"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"model" : "domain_api.domaincontact", "pk" : 1, "fields" : {"registered_domain" : 1, "contact" : 1, "contact_type" : 1, "active" : true, "created" : "2017-03-14T20:25:58.295Z"}}, {"model" : "domain_api.domaincontact", "pk" : 2, "fields" : {"registered_domain" : 1, "contact" : 2, "contact_type" : 2, "active" : true, "created" : "2017-03-14T20:25:58.307Z"}}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"model": {"type": "string"}, "pk": {"type": "integer"}, "fields": {"type": "object", "properties": {"registered_domain": {"type": "integer"}, "contact": {"type": "integer"}, "contact_type": {"type": "integer"}, "active": {"type": "boolean"}, "created": {"type": "string"}}, "required": ["registered_domain", "contact", "contact_type", "active", "created"]}}, "required": ["model", "pk", "fields"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "array", "items": {"type": "object", "properties": {"review": {"type": "string"}, "date": {"type": "string"}, "rating": {"type": "string"}, "author": {"type": "string"}, "review_id": {"type": "string"}, "movie_id": {"type": "string"}}, "required": ["review", "date", "rating", "author", "review_id", "movie_id"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"review" : "\uc774\ub54c \ub864\ub7ec\uc2a4\ucf00\uc774\ud2b8\ubd90^^", "date" : "14.10.01", "rating" : "9", "author" : "moon****", "review_id" : "9251769", "movie_id" : "62438"}, {"review" : "\uc5ec\uace0\uc2dc\uc808 \ucc38..\ub0ad\ub9cc\uc801\uc778\uc601\ud654\uc600\ub294\ub370..\uc5ec\ub984\ub9cc\ub418\uba74\uc774\uc601\ud654\uac00 \uc0dd\uac01\ub098\ub139..", "date" : "10.07.15", "rating" : "10", "author" : "chol****", "review_id" : "4640669", "movie_id" : "62438"}, {"review" : "80\ub144 \uc678\uac00\uc9d1\uc774 \uc788\ub358 \uccad\uc8fc\uc758 \uc5b4\ub290 \uadf9\uc7a5\uc5d0\uc11c \uc778\uc0c1\uae4a\uac8c \ubd24\ub358 \uae30\uc5b5\uc774....", "date" : "08.02.11", "rating" : "7", "author" : "deck****", "review_id" : "2435789", "movie_id" : "62438"}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"review": {"type": "string"}, "date": {"type": "string"}, "rating": {"type": "string"}, "author": {"type": "string"}, "review_id": {"type": "string"}, "movie_id": {"type": "string"}}, "required": ["review", "date", "rating", "author", "review_id", "movie_id"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "nama": {"type": "string"}}, "required": ["id", "nama"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"id" : "6404010", "nama" : "MUARA ANCALONG"}, {"id" : "6404011", "nama" : "BUSANG"}, {"id" : "6404012", "nama" : "LONG MESANGAT"}, {"id" : "6404020", "nama" : "MUARA WAHAU"}, {"id" : "6404021", "nama" : "TELEN"}, {"id" : "6404022", "nama" : "KONGBENG"}, {"id" : "6404030", "nama" : "MUARA BENGKAL"}, {"id" : "6404031", "nama" : "BATU AMPAR"}, {"id" : "6404040", "nama" : "SANGATTA UTARA"}, {"id" : "6404041", "nama" : "BENGALON"}, {"id" : "6404042", "nama" : "TELUK PANDAN"}, {"id" : "6404043", "nama" : "SANGATTA SELATAN"}, {"id" : "6404044", "nama" : "RANTAU PULUNG"}, {"id" : "6404050", "nama" : "SANGKULIRANG"}, {"id" : "6404051", "nama" : "KALIORANG"}, {"id" : "6404052", "nama" : "SANDARAN"}, {"id" : "6404053", "nama" : "KAUBUN"}, {"id" : "6404054", "nama" : "KARANGAN"}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "nama": {"type": "string"}}, "required": ["id", "nama"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "summary": {"type": "string"}, "homepage": {"type": "string"}, "license": {"type": "object", "properties": {"type": {"type": "string"}}, "required": ["type"]}, "authors": {"type": "object", "properties": {"Krzysztof Zab\u0142ocki": {"type": "string"}}, "required": ["Krzysztof Zab\u0142ocki"]}, "source": {"type": "object", "properties": {"git": {"type": "string"}, "commit": {"type": "string"}}, "required": ["git", "commit"]}, "platforms": {"type": "object", "properties": {"ios": {"type": "string"}}, "required": ["ios"]}, "source_files": {"type": "array", "items": {"type": "string"}}, "requires_arc": {"type": "boolean"}}, "required": ["name", "version", "summary", "homepage", "license", "authors", "source", "platforms", "source_files", "requires_arc"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "SFObservers", "version" : "0.0.1", "summary" : "Categories expanding both NSNotificationCenter and KVO to provide auto removal of observers.", "homepage" : "http://www.merowing.info/2012/03/automatic-removal-of-nsnotificationcenter-or-kvo-observers/", "license" : {"type" : "Custom"}, "authors" : {"Krzysztof Zab\u0142ocki" : "krzysztof.zablocki@me.com"}, "source" : {"git" : "https://github.com/krzysztofzablocki/SFObservers.git", "commit" : "19dfef9ba8a1ab50fc2a4fbad7998186f37c8aaa"}, "platforms" : {"ios" : "4.0"}, "source_files" : ["SFObservers", "SFObservers/SFExecuteOnDealloc"], "requires_arc" : true} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "summary": {"type": "string"}, "homepage": {"type": "string"}, "license": {"type": "object", "properties": {"type": {"type": "string"}}, "required": ["type"]}, "authors": {"type": "object", "properties": {"Krzysztof Zab\u0142ocki": {"type": "string"}}, "required": ["Krzysztof Zab\u0142ocki"]}, "source": {"type": "object", "properties": {"git": {"type": "string"}, "commit": {"type": "string"}}, "required": ["git", "commit"]}, "platforms": {"type": "object", "properties": {"ios": {"type": "string"}}, "required": ["ios"]}, "source_files": {"type": "array", "items": {"type": "string"}}, "requires_arc": {"type": "boolean"}}, "required": ["name", "version", "summary", "homepage", "license", "authors", "source", "platforms", "source_files", "requires_arc"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"body": {"type": "string"}, "user": {"type": "string"}, "url": {"type": "string"}, "updated_at": {"type": "string"}, "created_at": {"type": "string"}, "closed_at": {"type": "string"}, "state": {"type": "string"}, "title": {"type": "string"}, "number": {"type": "integer"}, "milestone": {"type": "null"}, "labels": {"type": "array", "items": {"type": "string"}}, "id": {"type": "integer"}, "html_url": {"type": "string"}, "assignees": {"type": "array", "items": {}}, "comments": {"type": "integer"}}, "required": ["body", "user", "url", "updated_at", "created_at", "closed_at", "state", "title", "number", "milestone", "labels", "id", "html_url", "assignees", "comments"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"body" : "Dire now `depends_on('pythia8@8226:8244')` since after 8244 dire was incorporated into pythia8 (version 8.300).\r\n\r\nTo reviewers: An alternative could have been `conflicts('pythia8',when='pythia8@8300:',msg='pythia8.3 includes dire')` which would provide useful information, but depends_on is evaluated earlier in concretization. Preferences?\r\n\r\nThis fixes #19608.", "user" : "wdconinc", "url" : "https://api.github.com/repos/spack/spack/issues/19628", "updated_at" : "2020-11-03 18:03:49", "created_at" : "2020-10-30 15:42:08", "closed_at" : "2020-11-03 18:03:49", "state" : "closed", "title" : "[dire] dire is included in pythia8@8300: so dire depends_on adjusted", "number" : 19628, "milestone" : null, "labels" : ["dependencies"], "id" : 733289663, "html_url" : "https://github.com/spack/spack/pull/19628", "assignees" : [], "comments" : 0} | json_instruct | {"type": "object", "properties": {"body": {"type": "string"}, "user": {"type": "string"}, "url": {"type": "string"}, "updated_at": {"type": "string"}, "created_at": {"type": "string"}, "closed_at": {"type": "string"}, "state": {"type": "string"}, "title": {"type": "string"}, "number": {"type": "integer"}, "milestone": {"type": "null"}, "labels": {"type": "array", "items": {"type": "string"}}, "id": {"type": "integer"}, "html_url": {"type": "string"}, "assignees": {"type": "array", "items": {}}, "comments": {"type": "integer"}}, "required": ["body", "user", "url", "updated_at", "created_at", "closed_at", "state", "title", "number", "milestone", "labels", "id", "html_url", "assignees", "comments"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"kind": {"type": "string"}, "state": {"type": "string"}}, "required": ["kind", "state"]}, "features": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"kind": {"type": "string"}, "name": {"type": "string"}, "state": {"type": "string"}}, "required": ["kind", "name", "state"]}, "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"]}}}, "required": ["type", "properties", "features"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"type" : "FeatureCollection", "properties" : {"kind" : "state", "state" : "MT"}, "features" : [{"type" : "Feature", "properties" : {"kind" : "county", "name" : "Gallatin", "state" : "MT"}, "geometry" : {"type" : "MultiPolygon", "coordinates" : [[[[-111.0635, 46.1906], [-110.7842, 46.1906], [-110.7951, 45.5881], [-110.8554, 45.5936], [-110.8608, 45.5279], [-110.9211, 45.5279], [-110.9156, 45.3526], [-111.0361, 45.3526], [-111.0416, 45.0021], [-111.058, 44.668], [-111.0471, 44.4763], [-111.1292, 44.4982], [-111.2278, 44.5858], [-111.2223, 44.6242], [-111.2935, 44.7008], [-111.3757, 44.7501], [-111.3538, 45.6429], [-111.5345, 45.6429], [-111.6605, 45.7415], [-111.7207, 45.7415], [-111.7207, 45.7743], [-111.8029, 45.7962], [-111.7043, 45.7962], [-111.6605, 45.8346], [-111.4688, 45.9496], [-111.4578, 45.9989], [-111.4195, 45.9989], [-111.425, 46.0591], [-111.3483, 46.1248], [-111.3483, 46.1906]]]]}}]} | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"kind": {"type": "string"}, "state": {"type": "string"}}, "required": ["kind", "state"]}, "features": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"kind": {"type": "string"}, "name": {"type": "string"}, "state": {"type": "string"}}, "required": ["kind", "name", "state"]}, "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"]}}}, "required": ["type", "properties", "features"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"count" : 575} | json_instruct | {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"type": {"type": "string"}, "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" : "Cagboborac, Calbayog City, Samar, Eastern Visayas (Region VIII), PH", "locale" : "ph.eastern-visayas-region-viii.samar.calbayog-city.cagboborac", "country_id" : 177, "country_reference" : 177, "country_name" : "Philippines", "region_id" : "10", "region_reference" : "8", "region_name" : "Eastern Visayas (Region VIII)", "province_id" : "66", "province_reference" : "66", "province_name" : "Samar", "city_id" : "296", "city_reference" : "1367", "city_name" : "Calbayog City", "barangay_id" : "8003", "barangay_reference" : "35230", "barangay_name" : "Cagboborac"}, "geometry" : {"type" : "MultiPolygon", "coordinates" : [[[[124.613297, 12.09905], [124.628967, 12.10172], [124.631119, 12.0912], [124.631012, 12.09112], [124.630737, 12.09106], [124.630653, 12.09069], [124.630493, 12.09041], [124.630074, 12.09037], [124.629646, 12.09025], [124.629417, 12.09051], [124.629227, 12.09085], [124.629303, 12.09112], [124.616966, 12.09145], [124.613297, 12.09905]]]]}} | 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#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"inferno-test-utils.js": {"type": "string"}, "inferno-test-utils.min.js": {"type": "string"}}, "required": ["inferno-test-utils.js", "inferno-test-utils.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"inferno-test-utils.js" : "sha512-MFRBpFjkifxGX5lpFyf2/bAh1QLbXGnICOvcWnvsuIvgWvM+qaSk+UqddBvXRPEu8N6HI/0ocVnpFNu1rIZ5gQ==", "inferno-test-utils.min.js" : "sha512-KaY3dxiRNzYCNzdw4xYE0fBdJwiT1dp8o+jDlxVif9OMzIO7qB5sR0iJqUOiUPjilH6R+pg0CfL/qCubhZSs0Q=="} | json_instruct | {"type": "object", "properties": {"inferno-test-utils.js": {"type": "string"}, "inferno-test-utils.min.js": {"type": "string"}}, "required": ["inferno-test-utils.js", "inferno-test-utils.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"id": {"type": "string"}}, "required": ["id"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "ee96aa4468564cd7cfe1c52b622fd858534e3ce6"} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}}, "required": ["id"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"ast": {"type": "null"}, "code": {"type": "string"}, "map": {"type": "object", "properties": {"version": {"type": "integer"}, "sources": {"type": "array", "items": {"type": "string"}}, "names": {"type": "array", "items": {"type": "string"}}, "mappings": {"type": "string"}, "sourcesContent": {"type": "array", "items": {"type": "string"}}}, "required": ["version", "sources", "names", "mappings", "sourcesContent"]}, "metadata": {"type": "object", "properties": {}, "required": []}, "sourceType": {"type": "string"}}, "required": ["ast", "code", "map", "metadata", "sourceType"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"ast" : null, "code" : "function _classCallCheck(instance, Constructor) {\n if (!(instance instanceof Constructor)) {\n throw new TypeError(\"Cannot call a class as a function\");\n }\n}\n/**\n * Base class for the Nested Rows' UI sub-classes.\n *\n * @class\n * @util\n * @private\n */\n\n\nvar BaseUI = function BaseUI(pluginInstance, hotInstance) {\n _classCallCheck(this, BaseUI);\n /**\n * Instance of Handsontable.\n *\n * @type {Core}\n */\n\n\n this.hot = hotInstance;\n /**\n * Reference to the main plugin instance.\n */\n\n this.plugin = pluginInstance;\n};\n\nexport default BaseUI;", "map" : {"version" : 3, "sources" : ["/Users/mingjie.wang/Documents/Uber/MandA/demo-project/node_modules/handsontable/plugins/nestedRows/ui/_base.mjs"], "names" : ["_classCallCheck", "instance", "Constructor", "TypeError", "BaseUI", "pluginInstance", "hotInstance", "hot", "plugin"], "mappings" : "AAAA,SAASA,eAAT,CAAyBC,QAAzB,EAAmCC,WAAnC,EAAgD;AAAE,MAAI,EAAED,QAAQ,YAAYC,WAAtB,CAAJ,EAAwC;AAAE,UAAM,IAAIC,SAAJ,CAAc,mCAAd,CAAN;AAA2D;AAAE;AAEzJ;AACA;AACA;AACA;AACA;AACA;AACA;;;AACA,IAAIC,MAAM,GAAG,SAASA,MAAT,CAAgBC,cAAhB,EAAgCC,WAAhC,EAA6C;AACxDN,EAAAA,eAAe,CAAC,IAAD,EAAOI,MAAP,CAAf;AAEA;AACF;AACA;AACA;AACA;;;AACE,OAAKG,GAAL,GAAWD,WAAX;AACA;AACF;AACA;;AAEE,OAAKE,MAAL,GAAcH,cAAd;AACD,CAdD;;AAgBA,eAAeD,MAAf", "sourcesContent" : ["function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError(\"Cannot call a class as a function\"); } }\n\n/**\n * Base class for the Nested Rows' UI sub-classes.\n *\n * @class\n * @util\n * @private\n */\nvar BaseUI = function BaseUI(pluginInstance, hotInstance) {\n _classCallCheck(this, BaseUI);\n\n /**\n * Instance of Handsontable.\n *\n * @type {Core}\n */\n this.hot = hotInstance;\n /**\n * Reference to the main plugin instance.\n */\n\n this.plugin = pluginInstance;\n};\n\nexport default BaseUI;"]}, "metadata" : {}, "sourceType" : "module"} | json_instruct | {"type": "object", "properties": {"ast": {"type": "null"}, "code": {"type": "string"}, "map": {"type": "object", "properties": {"version": {"type": "integer"}, "sources": {"type": "array", "items": {"type": "string"}}, "names": {"type": "array", "items": {"type": "string"}}, "mappings": {"type": "string"}, "sourcesContent": {"type": "array", "items": {"type": "string"}}}, "required": ["version", "sources", "names", "mappings", "sourcesContent"]}, "metadata": {"type": "object", "properties": {}, "required": []}, "sourceType": {"type": "string"}}, "required": ["ast", "code", "map", "metadata", "sourceType"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "array", "items": {"type": "object", "properties": {"__symbolic": {"type": "string"}, "version": {"type": "integer"}, "metadata": {"type": "object", "properties": {"ControlContainer": {"type": "object", "properties": {"__symbolic": {"type": "string"}, "extends": {"type": "object", "properties": {"__symbolic": {"type": "string"}, "module": {"type": "string"}, "name": {"type": "string"}}, "required": ["__symbolic", "module", "name"]}}, "required": ["__symbolic", "extends"]}}, "required": ["ControlContainer"]}}, "required": ["__symbolic", "version", "metadata"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"__symbolic" : "module", "version" : 2, "metadata" : {"ControlContainer" : {"__symbolic" : "class", "extends" : {"__symbolic" : "reference", "module" : "./abstract_control_directive", "name" : "AbstractControlDirective"}}}}, {"__symbolic" : "module", "metadata" : {"ControlContainer" : {"__symbolic" : "class", "extends" : {"__symbolic" : "reference", "module" : "./abstract_control_directive", "name" : "AbstractControlDirective"}}}, "version" : 1}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"__symbolic": {"type": "string"}, "version": {"type": "integer"}, "metadata": {"type": "object", "properties": {"ControlContainer": {"type": "object", "properties": {"__symbolic": {"type": "string"}, "extends": {"type": "object", "properties": {"__symbolic": {"type": "string"}, "module": {"type": "string"}, "name": {"type": "string"}}, "required": ["__symbolic", "module", "name"]}}, "required": ["__symbolic", "extends"]}}, "required": ["ControlContainer"]}}, "required": ["__symbolic", "version", "metadata"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"h": {"type": "array", "items": {"type": "object", "properties": {"d": {"type": "array", "items": {"type": "object", "properties": {"e": {"type": "array", "items": {"type": "string"}}, "f": {"type": "string"}}, "required": ["e", "f"]}}}, "required": ["d"]}}, "stem": {"type": "string"}, "t": {"type": "string"}}, "required": ["h", "stem", "t"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"h" : [{"d" : [{"e" : ["\ufff9`O~ `maan~ `ko~ `kasarocodan~ `iso~ `anini~?\ufffa\ufffb\u4f60\u73fe\u5728\u5c08\u6ce8\u4ec0\u9ebc(\u4e8b\u60c5)\uff1f"], "f" : "\u4ee4\u4eba\u5c08\u6ce8\u7684\u3001\u5c08\u5fc3\u6ce8\u610f\u7684\u3002"}]}], "stem" : "rocod", "t" : "kasarocodan"} | json_instruct | {"type": "object", "properties": {"h": {"type": "array", "items": {"type": "object", "properties": {"d": {"type": "array", "items": {"type": "object", "properties": {"e": {"type": "array", "items": {"type": "string"}}, "f": {"type": "string"}}, "required": ["e", "f"]}}}, "required": ["d"]}}, "stem": {"type": "string"}, "t": {"type": "string"}}, "required": ["h", "stem", "t"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"prod": {"type": "object", "properties": {"host": {"type": "string"}, "port": {"type": "string"}, "enabled": {"type": "boolean"}}, "required": ["host", "port", "enabled"]}, "local": {"type": "object", "properties": {"dbhost": {"type": "string"}, "dbport": {"type": "string"}, "database": {"type": "string"}, "database_user": {"type": "string"}, "database_pass": {"type": "string"}, "enabled": {"type": "boolean"}}, "required": ["dbhost", "dbport", "database", "database_user", "database_pass", "enabled"]}}, "required": ["prod", "local"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"prod" : {"host" : "192.168.1.1", "port" : "8081", "enabled" : true}, "local" : {"dbhost" : "localhost", "dbport" : "3606", "database" : "postgres", "database_user" : "postgres", "database_pass" : "postgres", "enabled" : true}} | json_instruct | {"type": "object", "properties": {"prod": {"type": "object", "properties": {"host": {"type": "string"}, "port": {"type": "string"}, "enabled": {"type": "boolean"}}, "required": ["host", "port", "enabled"]}, "local": {"type": "object", "properties": {"dbhost": {"type": "string"}, "dbport": {"type": "string"}, "database": {"type": "string"}, "database_user": {"type": "string"}, "database_pass": {"type": "string"}, "enabled": {"type": "boolean"}}, "required": ["dbhost", "dbport", "database", "database_user", "database_pass", "enabled"]}}, "required": ["prod", "local"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"dependencies": {"type": "object", "properties": {"@lume/docsify": {"type": "string"}, "@lume/live-code": {"type": "string"}, "babel-standalone": {"type": "string"}, "docsify-copy-code": {"type": "string"}, "docsify-pagination": {"type": "string"}, "docsify-plugin-flexible-alerts": {"type": "string"}, "docsify-tabs": {"type": "string"}, "docsify-themeable": {"type": "string"}, "lume": {"type": "string"}, "tinycolor2": {"type": "string"}, "tween.js": {"type": "string"}, "vue": {"type": "string"}}, "required": ["@lume/docsify", "@lume/live-code", "babel-standalone", "docsify-copy-code", "docsify-pagination", "docsify-plugin-flexible-alerts", "docsify-tabs", "docsify-themeable", "lume", "tinycolor2", "tween.js", "vue"]}}, "required": ["dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"dependencies" : {"@lume/docsify" : "^4.9.4-1d3246a2.0", "@lume/live-code" : "^0.3.5", "babel-standalone" : "^6.26.0", "docsify-copy-code" : "^2.1.0", "docsify-pagination" : "^2.4.0", "docsify-plugin-flexible-alerts" : "^1.0.3", "docsify-tabs" : "^1.1.2", "docsify-themeable" : "^0.7.2", "lume" : "^0.3.0-alpha.7", "tinycolor2" : "^1.4.1", "tween.js" : "^16.6.0", "vue" : "^2.6.10"}} | json_instruct | {"type": "object", "properties": {"dependencies": {"type": "object", "properties": {"@lume/docsify": {"type": "string"}, "@lume/live-code": {"type": "string"}, "babel-standalone": {"type": "string"}, "docsify-copy-code": {"type": "string"}, "docsify-pagination": {"type": "string"}, "docsify-plugin-flexible-alerts": {"type": "string"}, "docsify-tabs": {"type": "string"}, "docsify-themeable": {"type": "string"}, "lume": {"type": "string"}, "tinycolor2": {"type": "string"}, "tween.js": {"type": "string"}, "vue": {"type": "string"}}, "required": ["@lume/docsify", "@lume/live-code", "babel-standalone", "docsify-copy-code", "docsify-pagination", "docsify-plugin-flexible-alerts", "docsify-tabs", "docsify-themeable", "lume", "tinycolor2", "tween.js", "vue"]}}, "required": ["dependencies"], "$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": "array", "items": {}}}, "required": ["expireTime", "key", "val"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"expireTime" : 9007200883358786000, "key" : "childSpanNodes-845021ef-0c39-5366-8227-f8cd661d6b21-456731cae806e91b3178b85135415196", "val" : []} | json_instruct | {"type": "object", "properties": {"expireTime": {"type": "integer"}, "key": {"type": "string"}, "val": {"type": "array", "items": {}}}, "required": ["expireTime", "key", "val"], "$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" : 9962413, "stationGroupId" : 9962413, "name" : "\u84b2\u751f\u56db\u4e01\u76ee", "lineId" : 99624, "zipCode" : "536-0004", "pref" : "\u5927\u962a\u5e9c", "city" : "\u5927\u962a\u5e02\u57ce\u6771\u533a", "town" : "\u4eca\u798f\u897f", "longitude" : 135.547709, "latitude" : 34.700368, "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#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"E3 ubiquitin transferase p28-like": {"type": "string"}, "Plaque-size/host range protein": {"type": "string"}, "Q49PZ0": {"type": "string"}, "P28_VACC0": {"type": "string"}, "E3 ubiquitin ligase p28-like": {"type": "string"}, "p28": {"type": "string"}, "P24084": {"type": "string"}, "B5_VACC0": {"type": "string"}, "Protein B5": {"type": "string"}, "PS/HR": {"type": "string"}}, "required": ["E3 ubiquitin transferase p28-like", "Plaque-size/host range protein", "Q49PZ0", "P28_VACC0", "E3 ubiquitin ligase p28-like", "p28", "P24084", "B5_VACC0", "Protein B5", "PS/HR"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"E3 ubiquitin transferase p28-like" : "Q49PZ0", "Plaque-size/host range protein" : "P24084", "Q49PZ0" : "Q49PZ0", "P28_VACC0" : "Q49PZ0", "E3 ubiquitin ligase p28-like" : "Q49PZ0", "p28" : "Q49PZ0", "P24084" : "P24084", "B5_VACC0" : "P24084", "Protein B5" : "P24084", "PS/HR" : "P24084"} | json_instruct | {"type": "object", "properties": {"E3 ubiquitin transferase p28-like": {"type": "string"}, "Plaque-size/host range protein": {"type": "string"}, "Q49PZ0": {"type": "string"}, "P28_VACC0": {"type": "string"}, "E3 ubiquitin ligase p28-like": {"type": "string"}, "p28": {"type": "string"}, "P24084": {"type": "string"}, "B5_VACC0": {"type": "string"}, "Protein B5": {"type": "string"}, "PS/HR": {"type": "string"}}, "required": ["E3 ubiquitin transferase p28-like", "Plaque-size/host range protein", "Q49PZ0", "P28_VACC0", "E3 ubiquitin ligase p28-like", "p28", "P24084", "B5_VACC0", "Protein B5", "PS/HR"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"id": {"type": "string"}, "hasSettings": {"type": "boolean"}, "type": {"type": "string"}, "enabled": {"type": "boolean"}, "i18n": {"type": "object", "properties": {"default": {"type": "object", "properties": {"bundle": {"type": "string"}, "name": {"type": "string"}, "description": {"type": "string"}}, "required": ["bundle", "name", "description"]}}, "required": ["default"]}, "url": {"type": "string"}}, "required": ["id", "hasSettings", "type", "enabled", "i18n", "url"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "contentpreview", "hasSettings" : false, "type" : "core", "enabled" : true, "i18n" : {"default" : {"bundle" : "/devwidgets/contentpreview/bundles/default.properties", "name" : "Content preview", "description" : "Content preview"}}, "url" : "/devwidgets/contentpreview/contentpreview.html"} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "hasSettings": {"type": "boolean"}, "type": {"type": "string"}, "enabled": {"type": "boolean"}, "i18n": {"type": "object", "properties": {"default": {"type": "object", "properties": {"bundle": {"type": "string"}, "name": {"type": "string"}, "description": {"type": "string"}}, "required": ["bundle", "name", "description"]}}, "required": ["default"]}, "url": {"type": "string"}}, "required": ["id", "hasSettings", "type", "enabled", "i18n", "url"], "$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"}, "authors": {"type": "array", "items": {"type": "string"}}, "main": {"type": "string"}, "license": {"type": "string"}, "private": {"type": "boolean"}, "ignore": {"type": "array", "items": {"type": "string"}}, "dependencies": {"type": "object", "properties": {"angular": {"type": "string"}, "bootstrap": {"type": "string"}, "d3": {"type": "string"}, "bower-mqttws": {"type": "string"}, "ui-bootstrap": {"type": "string"}, "angular-bootstrap": {"type": "string"}}, "required": ["angular", "bootstrap", "d3", "bower-mqttws", "ui-bootstrap", "angular-bootstrap"]}}, "required": ["name", "version", "authors", "main", "license", "private", "ignore", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "dashboard", "version" : "0.0.0", "authors" : ["hosie <jhosie@uk.ibm.com>"], "main" : "index.html", "license" : "MIT", "private" : true, "ignore" : ["**/.*", "node_modules", "bower_components", "public/prereqs", "test", "tests"], "dependencies" : {"angular" : "~1.3.13", "bootstrap" : "~3.3.2", "d3" : "~3.5.5", "bower-mqttws" : "~1.0.0", "ui-bootstrap" : "~0.12.1", "angular-bootstrap" : "~0.12.1"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "authors": {"type": "array", "items": {"type": "string"}}, "main": {"type": "string"}, "license": {"type": "string"}, "private": {"type": "boolean"}, "ignore": {"type": "array", "items": {"type": "string"}}, "dependencies": {"type": "object", "properties": {"angular": {"type": "string"}, "bootstrap": {"type": "string"}, "d3": {"type": "string"}, "bower-mqttws": {"type": "string"}, "ui-bootstrap": {"type": "string"}, "angular-bootstrap": {"type": "string"}}, "required": ["angular", "bootstrap", "d3", "bower-mqttws", "ui-bootstrap", "angular-bootstrap"]}}, "required": ["name", "version", "authors", "main", "license", "private", "ignore", "dependencies"], "$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": {"oq": {"type": "string"}, "q": {"type": "string"}, "rvnm": {"type": "string"}, "stcd": {"type": "string"}, "stnm": {"type": "string"}, "tm": {"type": "integer"}, "wptn": {"type": "string"}, "z": {"type": "string"}}, "required": ["oq", "q", "rvnm", "stcd", "stnm", "tm", "wptn", "z"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"oq" : "0", "q" : "23500", "rvnm" : "\u957f\u6c5f", "stcd" : "60105400", "stnm" : "\u5bf8\u6ee9", "tm" : 1598677200000, "wptn" : "4", "z" : "173.19"}, {"oq" : "0", "q" : "497", "rvnm" : "\u4e4c\u6c5f", "stcd" : "60803000", "stnm" : "\u6b66\u9686", "tm" : 1598677200000, "wptn" : "4", "z" : "169.49"}, {"oq" : "0", "q" : "34800", "rvnm" : "\u957f\u6c5f", "stcd" : "60107300", "stnm" : "\u5b9c\u660c", "tm" : 1598677200000, "wptn" : "4", "z" : "49.82"}, {"oq" : "0", "q" : "30600", "rvnm" : "\u957f\u6c5f", "stcd" : "60108300", "stnm" : "\u6c99\u5e02", "tm" : 1598677200000, "wptn" : "6", "z" : "41.29"}, {"oq" : "0", "q" : "0", "rvnm" : "\u957f\u6c5f", "stcd" : "60111200", "stnm" : "\u57ce\u9675\u77f6(\u83b2)", "tm" : 1598677200000, "wptn" : "4", "z" : "33"}, {"oq" : "0", "q" : "53900", "rvnm" : "\u957f\u6c5f", "stcd" : "60112200", "stnm" : "\u6c49\u53e3", "tm" : 1598677200000, "wptn" : "4", "z" : "26.61"}, {"oq" : "0", "q" : "55200", "rvnm" : "\u957f\u6c5f", "stcd" : "60113400", "stnm" : "\u4e5d\u6c5f", "tm" : 1598677200000, "wptn" : "4", "z" : "19.67"}, {"oq" : "0", "q" : "57000", "rvnm" : "\u957f\u6c5f", "stcd" : "60115000", "stnm" : "\u5927\u901a", "tm" : 1598677200000, "wptn" : "5", "z" : "13.53"}, {"oq" : "0", "q" : "21100", "rvnm" : "\u6d1e\u5ead\u6e56", "stcd" : "61512000", "stnm" : "\u57ce\u9675\u77f6(\u4e03)", "tm" : 1598677200000, "wptn" : "4", "z" : "33.09"}, {"oq" : "0", "q" : "2420", "rvnm" : "\u9131\u9633\u6e56", "stcd" : "62601600", "stnm" : "\u6e56\u53e3", "tm" : 1598677200000, "wptn" : "4", "z" : "19.09"}, {"oq" : "0", "q" : "0", "rvnm" : "\u957f\u6c5f", "stcd" : "60107000", "stnm" : "\u8305\u576a(\u4e8c)", "tm" : 1598677200000, "wptn" : "4", "z" : "163.24"}, {"oq" : "33900", "q" : "0", "rvnm" : "\u957f\u6c5f", "stcd" : "60106980", "stnm" : "\u4e09\u5ce1\u6c34\u5e93", "tm" : 1598677200000, "wptn" : "4", "z" : "163.24"}, {"oq" : "0", "q" : "0", "rvnm" : "\u6c49\u6c5f", "stcd" : "61802500", "stnm" : "\u9f99\u738b\u5e99", "tm" : 1598677200000, "wptn" : "6", "z" : "163.51"}, {"oq" : "1670", "q" : "0", "rvnm" : "\u6c49\u6c5f", "stcd" : "61802700", "stnm" : "\u4e39\u6c5f\u53e3\u6c34\u5e93", "tm" : 1598673600000, "wptn" : "6", "z" : "163.51"}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"oq": {"type": "string"}, "q": {"type": "string"}, "rvnm": {"type": "string"}, "stcd": {"type": "string"}, "stnm": {"type": "string"}, "tm": {"type": "integer"}, "wptn": {"type": "string"}, "z": {"type": "string"}}, "required": ["oq", "q", "rvnm", "stcd", "stnm", "tm", "wptn", "z"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"parent": {"type": "string"}, "overdueSpeed": {"type": "integer"}, "overdueState": {"type": "integer"}, "fridgeEfficiency": {"type": "integer"}, "category": {"type": "string"}}, "required": ["parent", "overdueSpeed", "overdueState", "fridgeEfficiency", "category"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"parent" : "edible_1", "overdueSpeed" : 5, "overdueState" : 190000, "fridgeEfficiency" : 2, "category" : "miscellaneous"} | json_instruct | {"type": "object", "properties": {"parent": {"type": "string"}, "overdueSpeed": {"type": "integer"}, "overdueState": {"type": "integer"}, "fridgeEfficiency": {"type": "integer"}, "category": {"type": "string"}}, "required": ["parent", "overdueSpeed", "overdueState", "fridgeEfficiency", "category"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "dependencies": {"type": "object", "properties": {"bamboo-api": {"type": "string"}, "commander": {"type": "string"}}, "required": ["bamboo-api", "commander"]}}, "required": ["name", "version", "description", "main", "scripts", "repository", "keywords", "author", "license", "bugs", "homepage", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "broken-build-alert", "version" : "1.0.0", "description" : "Check the status of various bamboo builds and trigger some sort of alert if the latest build is broken", "main" : "src/app.js", "scripts" : {"test" : "echo \"Error: no test specified\" && exit 1"}, "repository" : {"type" : "git", "url" : "https://github.com/ingshtrom/broken-build-alert.git"}, "keywords" : ["bamboo", "alert"], "author" : "Alex \"Ingshtrom\" Hokanson <ingshtrom.developer@gmail.com>", "license" : "MIT", "bugs" : {"url" : "https://github.com/ingshtrom/broken-build-alert/issues"}, "homepage" : "https://github.com/ingshtrom/broken-build-alert", "dependencies" : {"bamboo-api" : "0.0.5", "commander" : "^2.7.1"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "dependencies": {"type": "object", "properties": {"bamboo-api": {"type": "string"}, "commander": {"type": "string"}}, "required": ["bamboo-api", "commander"]}}, "required": ["name", "version", "description", "main", "scripts", "repository", "keywords", "author", "license", "bugs", "homepage", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"md5": {"type": "string"}, "size": {"type": "integer"}, "compressed_size": {"type": "integer"}, "node_id": {"type": "integer"}, "file_path": {"type": "string"}, "event_timestamp": {"type": "number"}}, "required": ["md5", "size", "compressed_size", "node_id", "file_path", "event_timestamp"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"md5" : "CBBE37722DB3BFE4FF3086275A03DEFA", "size" : 1822720, "compressed_size" : 769384, "node_id" : 0, "file_path" : "/var/cb/data/modulestore/CBB/E37/CBBE37722DB3BFE4FF3086275A03DEFA.zip", "event_timestamp" : 1447703639.808} | json_instruct | {"type": "object", "properties": {"md5": {"type": "string"}, "size": {"type": "integer"}, "compressed_size": {"type": "integer"}, "node_id": {"type": "integer"}, "file_path": {"type": "string"}, "event_timestamp": {"type": "number"}}, "required": ["md5", "size", "compressed_size", "node_id", "file_path", "event_timestamp"], "$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"}, "manifest_version": {"type": "integer"}, "description": {"type": "string"}, "icons": {"type": "object", "properties": {"16": {"type": "string"}}, "required": ["16"]}, "background": {"type": "object", "properties": {"scripts": {"type": "array", "items": {"type": "string"}}}, "required": ["scripts"]}, "content_scripts": {"type": "array", "items": {"type": "object", "properties": {"matches": {"type": "array", "items": {"type": "string"}}, "js": {"type": "array", "items": {"type": "string"}}}, "required": ["matches", "js"]}}, "options_page": {"type": "string"}, "browser_action": {"type": "object", "properties": {"name": {"type": "string"}, "default_title": {"type": "string"}, "default_icon": {"type": "string"}}, "required": ["name", "default_title", "default_icon"]}, "permissions": {"type": "array", "items": {"type": "string"}}, "web_accessible_resources": {"type": "array", "items": {"type": "string"}}, "content_security_policy": {"type": "string"}}, "required": ["name", "version", "manifest_version", "description", "icons", "background", "content_scripts", "options_page", "browser_action", "permissions", "web_accessible_resources", "content_security_policy"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "IITM netaccess", "version" : "2.7", "manifest_version" : 2, "description" : "Makes it easy for you to verify netaccess. One click!", "icons" : {"16" : "iitm.png"}, "background" : {"scripts" : ["jquery.js", "main.js"]}, "content_scripts" : [{"matches" : ["<all_urls>"], "js" : ["jquery.min.js", "content.js"]}], "options_page" : "options.html", "browser_action" : {"name" : "arun", "default_title" : "IITM netaccess", "default_icon" : "iitm.png"}, "permissions" : ["tabs", "activeTab", "https://netaccess.iitm.ac.in/*/*", "<all_urls>", "contextMenus", "cookies", "storage"], "web_accessible_resources" : ["iitm.png", "wallpaper.jpg", "bootstrap.min.css"], "content_security_policy" : "script-src 'self' 'unsafe-eval'; object-src 'self'"} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "manifest_version": {"type": "integer"}, "description": {"type": "string"}, "icons": {"type": "object", "properties": {"16": {"type": "string"}}, "required": ["16"]}, "background": {"type": "object", "properties": {"scripts": {"type": "array", "items": {"type": "string"}}}, "required": ["scripts"]}, "content_scripts": {"type": "array", "items": {"type": "object", "properties": {"matches": {"type": "array", "items": {"type": "string"}}, "js": {"type": "array", "items": {"type": "string"}}}, "required": ["matches", "js"]}}, "options_page": {"type": "string"}, "browser_action": {"type": "object", "properties": {"name": {"type": "string"}, "default_title": {"type": "string"}, "default_icon": {"type": "string"}}, "required": ["name", "default_title", "default_icon"]}, "permissions": {"type": "array", "items": {"type": "string"}}, "web_accessible_resources": {"type": "array", "items": {"type": "string"}}, "content_security_policy": {"type": "string"}}, "required": ["name", "version", "manifest_version", "description", "icons", "background", "content_scripts", "options_page", "browser_action", "permissions", "web_accessible_resources", "content_security_policy"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"feedstocks": {"type": "array", "items": {"type": "string"}}}, "required": ["feedstocks"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"feedstocks" : ["r-targets"]} | json_instruct | {"type": "object", "properties": {"feedstocks": {"type": "array", "items": {"type": "string"}}}, "required": ["feedstocks"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"type": {"type": "string"}, "features": {"type": "array", "items": {"type": "object", "properties": {"geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["type", "coordinates"]}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"cartodb_id": {"type": "integer"}}, "required": ["cartodb_id"]}}, "required": ["geometry", "type", "properties"]}}}, "required": ["type", "features"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"type" : "FeatureCollection", "features" : [{"geometry" : {"type" : "Polygon", "coordinates" : [[[-109.06259, 44.5343], [-109.062547, 44.535098], [-109.058607, 44.536664], [-109.060381, 44.538792], [-109.059101, 44.540467], [-109.045467, 44.540375], [-109.038909, 44.546577], [-109.032505, 44.544411], [-109.030939, 44.546853], [-109.027473, 44.547024], [-109.021092, 44.550683], [-109.018909, 44.55302], [-109.014685, 44.55297], [-109.013514, 44.55492], [-109.006169, 44.55619], [-109.003047, 44.55952], [-108.997623, 44.559217], [-108.995606, 44.55825], [-108.992918, 44.555706], [-108.992056, 44.553072], [-108.99362, 44.552188], [-108.993994, 44.55012], [-108.993272, 44.549133], [-108.994313, 44.546411], [-108.993445, 44.545484], [-108.994372, 44.543822], [-108.992469, 44.54306], [-108.992329, 44.542323], [-109.01088, 44.53406], [-109.01077, 44.53025], [-109.00869, 44.52828], [-109.0085, 44.52695], [-109.01382, 44.52355], [-109.01733, 44.51899], [-109.01714, 44.51698], [-109.01525, 44.514], [-109.015756, 44.506785], [-109.015221, 44.504903], [-109.01839, 44.501239], [-109.024988, 44.49848], [-109.02609, 44.51161], [-109.039429, 44.511832], [-109.0522, 44.51469], [-109.05396, 44.51716], [-109.05421, 44.52607], [-109.05636, 44.52607], [-109.056242, 44.532132], [-109.06109, 44.53256], [-109.06259, 44.5343]]]}, "type" : "Feature", "properties" : {"cartodb_id" : 81947}}]} | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "features": {"type": "array", "items": {"type": "object", "properties": {"geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["type", "coordinates"]}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"cartodb_id": {"type": "integer"}}, "required": ["cartodb_id"]}}, "required": ["geometry", "type", "properties"]}}}, "required": ["type", "features"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"type": {"type": "string"}, "objects": {"type": "object", "properties": {"W01000983": {"type": "object", "properties": {"type": {"type": "string"}, "crs": {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"]}}, "required": ["type", "properties"]}, "geometries": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"OA11CD": {"type": "string"}, "LAD11CD": {"type": "string"}}, "required": ["OA11CD", "LAD11CD"]}, "arcs": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}}, "required": ["type", "properties", "arcs"]}}}, "required": ["type", "crs", "geometries"]}}, "required": ["W01000983"]}, "arcs": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}}, "transform": {"type": "object", "properties": {"scale": {"type": "array", "items": {"type": "number"}}, "translate": {"type": "array", "items": {"type": "number"}}}, "required": ["scale", "translate"]}}, "required": ["type", "objects", "arcs", "transform"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"type" : "Topology", "objects" : {"W01000983" : {"type" : "GeometryCollection", "crs" : {"type" : "name", "properties" : {"name" : "urn:ogc:def:crs:OGC:1.3:CRS84"}}, "geometries" : [{"type" : "Polygon", "properties" : {"OA11CD" : "W00005202", "LAD11CD" : "W06000013"}, "arcs" : [[0, 1, 2]]}, {"type" : "Polygon", "properties" : {"OA11CD" : "W00005211", "LAD11CD" : "W06000013"}, "arcs" : [[3, -1, 4]]}, {"type" : "Polygon", "properties" : {"OA11CD" : "W00005221", "LAD11CD" : "W06000013"}, "arcs" : [[5, 6]]}, {"type" : "Polygon", "properties" : {"OA11CD" : "W00005227", "LAD11CD" : "W06000013"}, "arcs" : [[7, -2, -4, 8, 9, 10, -6]]}, {"type" : "Polygon", "properties" : {"OA11CD" : "W00005228", "LAD11CD" : "W06000013"}, "arcs" : [[11, -10]]}]}}, "arcs" : [[[5480, 571], [-772, 983], [-137, 465], [303, 283], [-349, 205]], [[4525, 2507], [502, 760], [2999, -218], [691, 431]], [[8717, 3480], [1282, -1775], [-4214, -1705], [-106, 198], [-199, 373]], [[4446, 2413], [79, 94]], [[5480, 571], [-5363, -246], [-117, 594], [1082, 505], [-50, 760], [981, -246], [1337, -28], [1096, 503]], [[6963, 6927], [-2176, -745]], [[4787, 6182], [-955, 2347], [401, 239], [-403, 457], [-293, -199], [-251, 609], [1622, 364], [240, -448], [-403, -752], [1548, -286], [670, -1586]], [[6963, 6927], [1364, -2662], [390, -785]], [[4446, 2413], [-850, 1024], [39, 623], [1130, -68], [358, 305]], [[5123, 4297], [474, 183], [524, -956], [1122, -123], [470, 348], [-1204, 1384], [179, 505], [-1610, -396]], [[5078, 5242], [-246, 279], [-45, 661]], [[5123, 4297], [-45, 945]]], "transform" : {"scale" : [1.2359934846209514e-06, 8.747721748852488e-07], "translate" : [-3.551125723351591, 51.50387932273657]}} | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "objects": {"type": "object", "properties": {"W01000983": {"type": "object", "properties": {"type": {"type": "string"}, "crs": {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"]}}, "required": ["type", "properties"]}, "geometries": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"OA11CD": {"type": "string"}, "LAD11CD": {"type": "string"}}, "required": ["OA11CD", "LAD11CD"]}, "arcs": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}}, "required": ["type", "properties", "arcs"]}}}, "required": ["type", "crs", "geometries"]}}, "required": ["W01000983"]}, "arcs": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}}, "transform": {"type": "object", "properties": {"scale": {"type": "array", "items": {"type": "number"}}, "translate": {"type": "array", "items": {"type": "number"}}}, "required": ["scale", "translate"]}}, "required": ["type", "objects", "arcs", "transform"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "install": {"type": "string"}}, "required": ["test", "install"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "contributors": {"type": "array", "items": {"type": "string"}}, "license": {"type": "string"}}, "required": ["name", "version", "description", "main", "scripts", "repository", "keywords", "author", "contributors", "license"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "wiring-pi", "version" : "2.2.0", "description" : "Bindings to wiringPi", "main" : "lib/exports.js", "scripts" : {"test" : "echo \"Error: no test specified\" && exit 1", "install" : "/bin/bash ./install.sh"}, "repository" : {"type" : "git", "url" : "git@github.com:eugeneware/wiring-pi.git"}, "keywords" : ["wiringPi", "gpio", "raspberry", "pi", "raspberrypi", "bcm2835"], "author" : "Igor Soarez <igorsoarez@gmail.com>", "contributors" : ["Leandre Gohy <leandre.gohy@hexeo.be>", "Eugene Ware <eugene@noblesamurai.com>"], "license" : "BSD"} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "install": {"type": "string"}}, "required": ["test", "install"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "contributors": {"type": "array", "items": {"type": "string"}}, "license": {"type": "string"}}, "required": ["name", "version", "description", "main", "scripts", "repository", "keywords", "author", "contributors", "license"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"images": {"type": "array", "items": {"type": "object", "properties": {"idiom": {"type": "string"}, "scale": {"type": "string"}}, "required": ["idiom", "scale"]}}, "info": {"type": "object", "properties": {"version": {"type": "integer"}, "author": {"type": "string"}}, "required": ["version", "author"]}}, "required": ["images", "info"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"images" : [{"idiom" : "iphone", "scale" : "1x"}, {"idiom" : "iphone", "filename" : "PlayerBotWalk_11_06_100.png", "scale" : "2x"}, {"idiom" : "iphone", "filename" : "PlayerBotWalk_11_06_180.png", "scale" : "3x"}, {"idiom" : "ipad", "filename" : "PlayerBotWalk_11_06_120.png", "scale" : "1x"}, {"idiom" : "ipad", "filename" : "PlayerBotWalk_11_06_240.png", "scale" : "2x"}, {"idiom" : "tv", "filename" : "PlayerBotWalk_11_06_169.png", "scale" : "1x"}, {"idiom" : "mac", "filename" : "PlayerBotWalk_11_06_225.png", "scale" : "1x"}, {"idiom" : "mac", "scale" : "2x"}], "info" : {"version" : 1, "author" : "xcode"}} | json_instruct | {"type": "object", "properties": {"images": {"type": "array", "items": {"type": "object", "properties": {"idiom": {"type": "string"}, "scale": {"type": "string"}}, "required": ["idiom", "scale"]}}, "info": {"type": "object", "properties": {"version": {"type": "integer"}, "author": {"type": "string"}}, "required": ["version", "author"]}}, "required": ["images", "info"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "array", "items": {"type": "object", "properties": {"comment": {"type": "string"}, "definition": {"type": "string"}, "orthologs": {"type": "object", "properties": {"K17724": {"type": "string"}}, "required": ["K17724"]}, "name": {"type": "string"}, "product_stoichiometries": {"type": "array", "items": {"type": "string"}}, "enzymes": {"type": "array", "items": {"type": "string"}}, "equation": {"type": "string"}, "glycans": {"type": "boolean"}, "substrate_stoichiometries": {"type": "array", "items": {"type": "string"}}, "rpairs": {"type": "object", "properties": {}, "required": []}, "entry_id": {"type": "string"}, "pathways": {"type": "object", "properties": {"rn00660": {"type": "string"}}, "required": ["rn00660"]}, "products": {"type": "array", "items": {"type": "string"}}, "substrates": {"type": "array", "items": {"type": "string"}}}, "required": ["comment", "definition", "orthologs", "name", "product_stoichiometries", "enzymes", "equation", "glycans", "substrate_stoichiometries", "rpairs", "entry_id", "pathways", "products", "substrates"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"comment" : "", "definition" : "cis-Aconitate <=> Itaconate + CO2", "orthologs" : {"K17724" : "aconitate decarboxylase [EC:4.1.1.6]"}, "name" : "cis-Aconitate carboxy-lyase", "product_stoichiometries" : ["1", "1"], "enzymes" : ["4.1.1.6"], "equation" : "C00417 <=> C00490 + C00011", "glycans" : false, "substrate_stoichiometries" : ["1"], "rpairs" : {}, "entry_id" : "R02243", "pathways" : {"rn00660" : "C5-Branched dibasic acid metabolism"}, "products" : ["C00490", "C00011"], "substrates" : ["C00417"]}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"comment": {"type": "string"}, "definition": {"type": "string"}, "orthologs": {"type": "object", "properties": {"K17724": {"type": "string"}}, "required": ["K17724"]}, "name": {"type": "string"}, "product_stoichiometries": {"type": "array", "items": {"type": "string"}}, "enzymes": {"type": "array", "items": {"type": "string"}}, "equation": {"type": "string"}, "glycans": {"type": "boolean"}, "substrate_stoichiometries": {"type": "array", "items": {"type": "string"}}, "rpairs": {"type": "object", "properties": {}, "required": []}, "entry_id": {"type": "string"}, "pathways": {"type": "object", "properties": {"rn00660": {"type": "string"}}, "required": ["rn00660"]}, "products": {"type": "array", "items": {"type": "string"}}, "substrates": {"type": "array", "items": {"type": "string"}}}, "required": ["comment", "definition", "orthologs", "name", "product_stoichiometries", "enzymes", "equation", "glycans", "substrate_stoichiometries", "rpairs", "entry_id", "pathways", "products", "substrates"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"Calendars and tasks": {"type": "string"}}, "required": ["Calendars and tasks"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"Calendars and tasks" : "Calendars and tasks"} | json_instruct | {"type": "object", "properties": {"Calendars and tasks": {"type": "string"}}, "required": ["Calendars and tasks"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"language": {"type": "string"}, "gitbook": {"type": "string"}, "title": {"type": "string"}, "structure": {"type": "object", "properties": {"readme": {"type": "string"}, "summary": {"type": "string"}}, "required": ["readme", "summary"]}}, "required": ["language", "gitbook", "title", "structure"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"language" : "pt", "gitbook" : ">=2.0.0", "title" : "Portal de Servi\u00e7os", "structure" : {"readme" : "index.md", "summary" : "_sumario.md"}} | json_instruct | {"type": "object", "properties": {"language": {"type": "string"}, "gitbook": {"type": "string"}, "title": {"type": "string"}, "structure": {"type": "object", "properties": {"readme": {"type": "string"}, "summary": {"type": "string"}}, "required": ["readme", "summary"]}}, "required": ["language", "gitbook", "title", "structure"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"code": {"type": "string"}, "type": {"type": "string"}, "required": {"type": "boolean"}, "description": {"type": "string"}}, "required": ["code", "type", "required", "description"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"code" : "typeProperty", "type" : "string", "required" : true, "description" : "The embedded object has a property with this name. It refers to its group."} | json_instruct | {"type": "object", "properties": {"code": {"type": "string"}, "type": {"type": "string"}, "required": {"type": "boolean"}, "description": {"type": "string"}}, "required": ["code", "type", "required", "description"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "number"}}}, "required": ["type", "coordinates"]}, "type": {"type": "string"}, "id": {"type": "string"}, "properties": {"type": "object", "properties": {"other_cities": {"type": "string"}, "city": {"type": "string"}, "state": {"type": "string"}, "county": {"type": "string"}}, "required": ["other_cities", "city", "state", "county"]}}, "required": ["geometry", "type", "id", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"geometry" : {"type" : "Point", "coordinates" : [-70.18, 44.61]}, "type" : "Feature", "id" : "04234", "properties" : {"other_cities" : "", "city" : "East Wilton", "state" : "ME", "county" : "Franklin County"}} | json_instruct | {"type": "object", "properties": {"geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "number"}}}, "required": ["type", "coordinates"]}, "type": {"type": "string"}, "id": {"type": "string"}, "properties": {"type": "object", "properties": {"other_cities": {"type": "string"}, "city": {"type": "string"}, "state": {"type": "string"}, "county": {"type": "string"}}, "required": ["other_cities", "city", "state", "county"]}}, "required": ["geometry", "type", "id", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "peerDependencies": {"type": "object", "properties": {"@angular/common": {"type": "string"}, "@angular/core": {"type": "string"}, "core-js": {"type": "string"}, "immer": {"type": "string"}, "redux": {"type": "string"}, "reflect-metadata": {"type": "string"}, "rxjs": {"type": "string"}, "tslib": {"type": "string"}}, "required": ["@angular/common", "@angular/core", "core-js", "immer", "redux", "reflect-metadata", "rxjs", "tslib"]}}, "required": ["name", "version", "peerDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "store", "version" : "0.0.1", "peerDependencies" : {"@angular/common" : "^7.1.0", "@angular/core" : "^7.1.0", "core-js" : "^2.5.4", "immer" : "^1.8.2", "redux" : "^4.0.1", "reflect-metadata" : "^0.1.12", "rxjs" : "~6.3.3", "tslib" : "^1.9.0"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "peerDependencies": {"type": "object", "properties": {"@angular/common": {"type": "string"}, "@angular/core": {"type": "string"}, "core-js": {"type": "string"}, "immer": {"type": "string"}, "redux": {"type": "string"}, "reflect-metadata": {"type": "string"}, "rxjs": {"type": "string"}, "tslib": {"type": "string"}}, "required": ["@angular/common", "@angular/core", "core-js", "immer", "redux", "reflect-metadata", "rxjs", "tslib"]}}, "required": ["name", "version", "peerDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"schemaVersion": {"type": "integer"}, "id": {"type": "string"}, "version": {"type": "string"}, "name": {"type": "string"}, "description": {"type": "string"}, "authors": {"type": "array", "items": {"type": "string"}}, "contributors": {"type": "array", "items": {}}, "contact": {"type": "object", "properties": {"homepage": {"type": "string"}, "issues": {"type": "string"}, "sources": {"type": "string"}}, "required": ["homepage", "issues", "sources"]}, "license": {"type": "string"}, "icon": {"type": "string"}, "environment": {"type": "string"}, "entrypoints": {"type": "object", "properties": {"main": {"type": "array", "items": {"type": "string"}}, "modmenu": {"type": "array", "items": {"type": "string"}}}, "required": ["main", "modmenu"]}, "mixins": {"type": "array", "items": {"type": "string"}}, "depends": {"type": "object", "properties": {"fabricloader": {"type": "string"}, "fabric": {"type": "string"}, "cloth-config2": {"type": "string"}}, "required": ["fabricloader", "fabric", "cloth-config2"]}, "suggests": {"type": "object", "properties": {"sandwichable": {"type": "string"}, "harvest_scythes": {"type": "string"}}, "required": ["sandwichable", "harvest_scythes"]}, "custom": {"type": "object", "properties": {"notify_gradle_properties_url": {"type": "string"}, "notify_gradle_properties_key": {"type": "string"}}, "required": ["notify_gradle_properties_url", "notify_gradle_properties_key"]}}, "required": ["schemaVersion", "id", "version", "name", "description", "authors", "contributors", "contact", "license", "icon", "environment", "entrypoints", "mixins", "depends", "suggests", "custom"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"schemaVersion" : 1, "id" : "reapingmod", "version" : "${version}", "name" : "Reaping Mod", "description" : "A Farming Mod", "authors" : ["Jamalam360 - Owner, Developer", "LordDeatHunter - Artist"], "contributors" : [], "contact" : {"homepage" : "https://www.curseforge.com/minecraft/mc-mods/reaping-mod-fabric", "issues" : "https://github.com/Jamalam360/ReapingFabric/issues", "sources" : "https://github.com/Jamalam360/ReapingFabric"}, "license" : "MIT", "icon" : "assets/reapingmod/icon.png", "environment" : "*", "entrypoints" : {"main" : ["io.github.jamalam360.reaping.ReapingModInit"], "modmenu" : ["io.github.jamalam360.reaping.config.ModMenuIntegration"]}, "mixins" : ["reapingmod.mixins.json"], "depends" : {"fabricloader" : ">=0.11.3", "fabric" : "*", "cloth-config2" : "*"}, "suggests" : {"sandwichable" : "*", "harvest_scythes" : "*"}, "custom" : {"notify_gradle_properties_url" : "https://raw.githubusercontent.com/JamCoreModding/ReapingFabric/main/gradle.properties", "notify_gradle_properties_key" : "modVersion"}} | json_instruct | {"type": "object", "properties": {"schemaVersion": {"type": "integer"}, "id": {"type": "string"}, "version": {"type": "string"}, "name": {"type": "string"}, "description": {"type": "string"}, "authors": {"type": "array", "items": {"type": "string"}}, "contributors": {"type": "array", "items": {}}, "contact": {"type": "object", "properties": {"homepage": {"type": "string"}, "issues": {"type": "string"}, "sources": {"type": "string"}}, "required": ["homepage", "issues", "sources"]}, "license": {"type": "string"}, "icon": {"type": "string"}, "environment": {"type": "string"}, "entrypoints": {"type": "object", "properties": {"main": {"type": "array", "items": {"type": "string"}}, "modmenu": {"type": "array", "items": {"type": "string"}}}, "required": ["main", "modmenu"]}, "mixins": {"type": "array", "items": {"type": "string"}}, "depends": {"type": "object", "properties": {"fabricloader": {"type": "string"}, "fabric": {"type": "string"}, "cloth-config2": {"type": "string"}}, "required": ["fabricloader", "fabric", "cloth-config2"]}, "suggests": {"type": "object", "properties": {"sandwichable": {"type": "string"}, "harvest_scythes": {"type": "string"}}, "required": ["sandwichable", "harvest_scythes"]}, "custom": {"type": "object", "properties": {"notify_gradle_properties_url": {"type": "string"}, "notify_gradle_properties_key": {"type": "string"}}, "required": ["notify_gradle_properties_url", "notify_gradle_properties_key"]}}, "required": ["schemaVersion", "id", "version", "name", "description", "authors", "contributors", "contact", "license", "icon", "environment", "entrypoints", "mixins", "depends", "suggests", "custom"], "$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.