input
stringlengths
159
2.05k
output
stringlengths
5
10.3k
task
stringclasses
1 value
schema
stringlengths
100
1.99k
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"ps": {"type": "integer"}, "xbox": {"type": "integer"}}, "required": ["ps", "xbox"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"ps" : 3423, "xbox" : 1929}
json_instruct
{"type": "object", "properties": {"ps": {"type": "integer"}, "xbox": {"type": "integer"}}, "required": ["ps", "xbox"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"type": {"type": "string"}, "level": {"type": "string"}, "label": {"type": "string"}, "locale": {"type": "string"}, "country_id": {"type": "integer"}, ...
{"type" : "Feature", "properties" : {"type" : "barangay", "level" : "4", "label" : "Silangan, Calauan, Laguna, CALABARZON (Region IV-A), PH", "locale" : "ph.calabarzon-region-iv-a.laguna.calauan.silangan", "country_id" : 177, "country_reference" : 177, "country_name" : "Philippines", "region_id" : "4", "region_referenc...
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": {...
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"h": {"type": "string"}, "c": {"type": "object", "properties": {"app": {"type": "boolean"}}, "required": ["app"]}}, "required": ["h", "c"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"h" : "63fa23cf491c21c5f1c4", "c" : {"app" : true}}
json_instruct
{"type": "object", "properties": {"h": {"type": "string"}, "c": {"type": "object", "properties": {"app": {"type": "boolean"}}, "required": ["app"]}}, "required": ["h", "c"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"globals_path": {"type": "string"}, "output_folder": {"type": "boolean"}, "src_folders": {"type": "array", "items": {"type": "string"}}, "test_settings": {"type": "object", "properties": {"default": {"type": "object",...
{"globals_path" : "globals.js", "output_folder" : false, "src_folders" : ["specs"], "test_settings" : {"default" : {"screenshots" : {"enabled" : true, "on_failure" : true, "path" : "screenshots"}, "videos" : {"enabled" : true, "delete_on_success" : false, "path" : "videos"}, "launch_url" : "http://nginx", "selenium_hos...
json_instruct
{"type": "object", "properties": {"globals_path": {"type": "string"}, "output_folder": {"type": "boolean"}, "src_folders": {"type": "array", "items": {"type": "string"}}, "test_settings": {"type": "object", "properties": {"default": {"type": "object", "properties": {"screenshots": {"type": "object", "properties": {"ena...
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "dependencies": {"type": "object", "properties": {"gulp": {"type": "string"}, "gulp-conca...
{"name" : "final-organ-donation", "version" : "1.0.0", "description" : "organ donation cms vue ", "main" : "index.js", "dependencies" : {"gulp" : "^4.0.0", "gulp-concat" : "^2.6.1", "gulp-sass" : "^4.0.2"}, "devDependencies" : {}, "scripts" : {"test" : "echo \"Error: no test specified\" && exit 1"}, "repository" : {"ty...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "dependencies": {"type": "object", "properties": {"gulp": {"type": "string"}, "gulp-concat": {"type": "string"}, "gulp-sass": {"type": "string"}}, "required": ["gul...
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "author": {"type": "string"}, "main": {"type": "string"}, "directories": {"type": "object", "properties": {"test": ...
{"name" : "csv-streamify", "version" : "3.0.4", "description" : "Streaming CSV Parser. Made entirely out of streams.", "author" : "Clemens Stolle", "main" : "csv-streamify.js", "directories" : {"test" : "test"}, "scripts" : {"test" : "standard && mocha -R spec"}, "bin" : {"csv-streamify" : "cli.js"}, "repository" : "ht...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "author": {"type": "string"}, "main": {"type": "string"}, "directories": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "scripts": {"type": "object", "pr...
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"ast": {"type": "null"}, "code": {"type": "string"}, "map": {"type": "null"}, "metadata": {"type": "object", "properties": {}, "required": []}, "sourceType": {"type": "string"}}, "required": ["ast", "code", "map", "...
{"ast" : null, "code" : "var log = Math.log; // `Math.log1p` method implementation\n// https://tc39.github.io/ecma262/#sec-math.log1p\n\nmodule.exports = Math.log1p || function log1p(x) {\n return (x = +x) > -1e-8 && x < 1e-8 ? x - x * x / 2 : log(1 + x);\n};", "map" : null, "metadata" : {}, "sourceType" : "script"}
json_instruct
{"type": "object", "properties": {"ast": {"type": "null"}, "code": {"type": "string"}, "map": {"type": "null"}, "metadata": {"type": "object", "properties": {}, "required": []}, "sourceType": {"type": "string"}}, "required": ["ast", "code", "map", "metadata", "sourceType"], "$schema": "http://json-schema.org/draft-07/s...
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"ident": {"type": "integer"}, "order": {"type": "integer"}, "objtype": {"type": "string"}, "properties": {"type": "object", "properties": {"bordercolor": {"type": "string"}, "designactive": {"type": "boolean"}, "edgefloat": {"t...
{"ident" : 1044, "order" : 16387, "objtype" : "kLine", "properties" : {"bordercolor" : "kColorFrame", "designactive" : true, "edgefloat" : "kEFnone", "effect" : "kBorderNone", "fieldstyle" : "", "height" : 328, "left" : 16, "linestyle" : 2, "objlink" : 0, "top" : 329, "userinfo" : "", "visible" : true, "width" : 685}}
json_instruct
{"type": "object", "properties": {"ident": {"type": "integer"}, "order": {"type": "integer"}, "objtype": {"type": "string"}, "properties": {"type": "object", "properties": {"bordercolor": {"type": "string"}, "designactive": {"type": "boolean"}, "edgefloat": {"type": "string"}, "effect": {"type": "string"}, "fieldstyle"...
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"type": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "r...
{"type" : "Feature", "geometry" : {"type" : "Polygon", "coordinates" : [[[-135.717307, 59.730043], [-135.632784, 59.754177], [-135.479161, 59.798041], [-135.430773, 59.773481], [-135.360109, 59.737615], [-135.284889, 59.710235], [-135.277524, 59.707352], [-135.252765, 59.698279], [-135.233668, 59.696143], [-135.219845,...
json_instruct
{"type": "object", "properties": {"type": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["type", "coordinates"]}, "properties": {"type": "ob...
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"id": {"type": "string"}}, "required": ["id"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : "32feb7f0b03c7f820b10f50a8fbeae4a99b83d8d"}
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}}, "required": ["id"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"LeafletStyleSheet.css": {"type": "string"}, "LeafletStyleSheet.min.css": {"type": "string"}, "PruneCluster.js": {"type": "string"}, "PruneCluster.min.js": {"type": "string"}}, "required": ["LeafletStyleSheet.css", "...
{"LeafletStyleSheet.css" : "sha512-P8CCL50Ti0jhvdVYle38K5TaE0sL9m9H1Sj3GDGwwA14Qc96ydQLS1Ldq4AFPN5sKd+IWq7+1eyBDLuKR331kQ==", "LeafletStyleSheet.min.css" : "sha512-ZTsIKR9XmEgyAXmXVRpE+wvv2+72Kd0tBSieJGbe1oOydyEmRhzTWEIfpLAlC8IYxNhGq2eALt+G/kRgpqlzyA==", "PruneCluster.js" : "sha512-rW6GUQtBfvUa4LgLrUo3uT4+1CfxmDSZ1fTZg...
json_instruct
{"type": "object", "properties": {"LeafletStyleSheet.css": {"type": "string"}, "LeafletStyleSheet.min.css": {"type": "string"}, "PruneCluster.js": {"type": "string"}, "PruneCluster.min.js": {"type": "string"}}, "required": ["LeafletStyleSheet.css", "LeafletStyleSheet.min.css", "PruneCluster.js", "PruneCluster.min.js"],...
Using the following JSON schema, generate a compatible JSON instance: {"type": "array", "items": {"type": "array", "items": {"type": "number"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
[[426.9182295003482, 637.094188172174], [1260.9246643513618, 685.021218923383], [1282.1012345940453, 701.96247511753], [1305.395461860997, 704.0801321417982], [1347.7486023463641, 697.7271610689932], [1362.5722015162426, 685.021218923383], [1383.748771758926, 638.4327643894794], [1379.5134577103895, 615.1385371225274],...
json_instruct
{"type": "array", "items": {"type": "array", "items": {"type": "number"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"em": {"type": "array", "items": {"type": "object", "properties": {"location": {"type": "object", "properties": {"latitude": {"type": "number"}, "longitude": {"type": "number"}}, "required": ["latitude", "longit...
{"em" : [{"location" : {"latitude" : 53.11, "longitude" : 6.68}}, {"location" : {"latitude" : 52.25, "longitude" : 5.13}}, {"location" : {"latitude" : 50.56, "longitude" : 15.27}}], "bites" : [{"location" : {"latitude" : 52.12, "longitude" : 4.37}}, {"location" : {"latitude" : 52.06, "longitude" : 5.73}}, {"location" :...
json_instruct
{"type": "object", "properties": {"em": {"type": "array", "items": {"type": "object", "properties": {"location": {"type": "object", "properties": {"latitude": {"type": "number"}, "longitude": {"type": "number"}}, "required": ["latitude", "longitude"]}}, "required": ["location"]}}, "bites": {"type": "array", "items": {"...
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"type": {"type": "string"}, "id": {"type": "string"}, "properties": {"type": "object", "properties": {"addr:city": {"type": "string"}, "addr:country": {"type": "string"}, "addr:housenumber": {"type": "string"}, "addr:postcode":...
{"type" : "Feature", "id" : "node/7463813165", "properties" : {"addr:city" : "Wilsdruff", "addr:country" : "DE", "addr:housenumber" : "1", "addr:postcode" : "01723", "addr:street" : "Am Ehrenfriedhof", "craft" : "beekeeper", "entrance" : "main", "name" : "Imkerei Mehlhorn", "operator" : "Mehlhorn", "phone" : "+49 174 2...
json_instruct
{"type": "object", "properties": {"type": {"type": "string"}, "id": {"type": "string"}, "properties": {"type": "object", "properties": {"addr:city": {"type": "string"}, "addr:country": {"type": "string"}, "addr:housenumber": {"type": "string"}, "addr:postcode": {"type": "string"}, "addr:street": {"type": "string"}, "cr...
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"vendor": {"type": "string"}, "filename": {"type": "string"}, "release_type": {"type": "string"}, "version": {"type": "string"}, "java_version": {"type": "string"}, "jvm_impl": {"type": "string"}, "os": {"type": "string"}, "arc...
{"vendor" : "liberica", "filename" : "bellsoft-jdk11.0.9+12-windows-i586-full.zip", "release_type" : "ga", "version" : "11.0.9+12", "java_version" : "11.0.9+12", "jvm_impl" : "hotspot", "os" : "windows", "architecture" : "i686", "file_type" : "zip", "image_type" : "jdk", "features" : ["libericafx", "minimal-vm", "javaf...
json_instruct
{"type": "object", "properties": {"vendor": {"type": "string"}, "filename": {"type": "string"}, "release_type": {"type": "string"}, "version": {"type": "string"}, "java_version": {"type": "string"}, "jvm_impl": {"type": "string"}, "os": {"type": "string"}, "architecture": {"type": "string"}, "file_type": {"type": "stri...
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"id": {"type": "integer"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"src:alt_label": {"type": "string"}, "src:geom": {"type": "string"}, "wof:geomhash": {"type": "string"}, "wof:id":...
{"id" : 101838831, "type" : "Feature", "properties" : {"src:alt_label" : "quattroshapes_pg", "src:geom" : "quattroshapes_pg", "wof:geomhash" : "131db1980d9a7fc78a647bf70c110464", "wof:id" : 101838831, "wof:repo" : "whosonfirst-data-admin-be"}, "bbox" : [5.21855, 51.08646, 5.21855, 51.08646], "geometry" : {"coordinates"...
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": ["...
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "version": {"type": "string"}, "main": {"type": "string"}, "types": {"type": "string"}, "scripts": {"type": "object", "properties": {"clean": {"type": "string"},...
{"name" : "tiny-updater", "description" : "The smallest update notifier for NPM packages, useful for CLI apps.", "version" : "1.0.1", "main" : "dist/index.js", "types" : "dist/index.d.ts", "scripts" : {"clean" : "rimraf dist", "compile" : "tsc --skipLibCheck && tstei", "compile:watch" : "tsc --skipLibCheck --watch", "t...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "version": {"type": "string"}, "main": {"type": "string"}, "types": {"type": "string"}, "scripts": {"type": "object", "properties": {"clean": {"type": "string"}, "compile": {"type": "string"}, "compile:watch": {"type": "str...
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"file_name": {"type": "string"}, "guid": {"type": "object", "properties": {"a": {"type": "integer"}, "b": {"type": "integer"}, "c": {"type": "integer"}, "d": {"type": "integer"}}, "required": ["a", "b", "c", "d"]}, ...
{"file_name" : "FactoryGame/Content/FactoryGame/-Shared/Material/MaterialFunction/DistanceFade.uasset", "guid" : {"a" : 2073905161, "b" : 1104000884, "c" : 4066589855, "d" : 3077106459}, "exports" : [{"name" : "DistanceFade", "class" : {"package" : "/Script/Engine", "name" : "MaterialFunction"}, "super" : null, "templa...
json_instruct
{"type": "object", "properties": {"file_name": {"type": "string"}, "guid": {"type": "object", "properties": {"a": {"type": "integer"}, "b": {"type": "integer"}, "c": {"type": "integer"}, "d": {"type": "integer"}}, "required": ["a", "b", "c", "d"]}, "exports": {"type": "array", "items": {"type": "object", "properties": ...
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"mainALGO": {"type": "string"}}, "required": ["mainALGO"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"mainALGO" : "search = (text, pattern) ->\n lengthText = text.length\n lengthPattern = pattern.length\n\n for i in [0...lengthText - lengthPattern]\n j = 0\n\n while j < lengthPattern\n break if text[i + j] isnt pattern[j]\n\n j += 1\n\n if j is lengthPattern\n ...
json_instruct
{"type": "object", "properties": {"mainALGO": {"type": "string"}}, "required": ["mainALGO"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"retroperitoneal_lymph_node": {"type": "object", "properties": {"accuracy": {"type": "number"}, "roc_auc": {"type": "number"}, "recall": {"type": "number"}, "precision": {"type": "number"}, "f1_score": {"type"...
{"retroperitoneal_lymph_node" : {"accuracy" : 0.9125, "roc_auc" : 0.8055064882125145, "recall" : 0.3170731707317073, "precision" : 0.65, "f1_score" : 0.42622950819672134, "negative_recall" : 0.9805013927576601, "negative_precision" : 0.9263157894736842, "negative_f1_score" : 0.9526387009472259}}
json_instruct
{"type": "object", "properties": {"retroperitoneal_lymph_node": {"type": "object", "properties": {"accuracy": {"type": "number"}, "roc_auc": {"type": "number"}, "recall": {"type": "number"}, "precision": {"type": "number"}, "f1_score": {"type": "number"}, "negative_recall": {"type": "number"}, "negative_precision": {"t...
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["type", "coordinates"], "$schema": "http://json-sc...
{"type" : "Polygon", "coordinates" : [[[-2.191353676, 53.435111933], [-2.213429135, 53.418898763], [-2.212596095, 53.406951769], [-2.239525602, 53.400690508], [-2.244794274, 53.403587594], [-2.239544561, 53.411538726], [-2.253715346, 53.409434026], [-2.251553358, 53.422118729], [-2.263477568, 53.416123695], [-2.3002012...
json_instruct
{"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["type", "coordinates"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"user": {"type": "string"}, "repos": {"type": "integer"}, "login": {"type": "string"}, "id": {"type": "integer"}, "avatar_url": {"type": "string"}, "url": {"type": "string"}, "html_url": {"type": "string"}, "follower...
{"user" : "azl397985856", "repos" : 1, "login" : "azl397985856", "id" : 12479470, "avatar_url" : "https://avatars2.githubusercontent.com/u/12479470?v=3", "url" : "https://api.github.com/users/azl397985856", "html_url" : "https://github.com/azl397985856", "followers_url" : "https://api.github.com/users/azl397985856/foll...
json_instruct
{"type": "object", "properties": {"user": {"type": "string"}, "repos": {"type": "integer"}, "login": {"type": "string"}, "id": {"type": "integer"}, "avatar_url": {"type": "string"}, "url": {"type": "string"}, "html_url": {"type": "string"}, "followers_url": {"type": "string"}, "following_url": {"type": "string"}, "gist...
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "description": {"type": "string"}, "user": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "email": {"type": "string"},...
{"id" : 125739, "name" : "Information.dk - with black text in article body", "description" : "Information.dk - with black text in article body\r\nto enhance contrast.\r\n\r\nalso added text-align:justify in body of articles and increased font-size", "user" : {"id" : 322628, "name" : "sunemi", "email" : "redacted", "pay...
json_instruct
{"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "description": {"type": "string"}, "user": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "email": {"type": "string"}, "paypal_email": {"type": "null"}, "homepage": {"type": "null"}, "about...
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"os": {"type": "string"}, "python": {"type": "string"}, "heartbeatAt": {"type": "string"}, "startedAt": {"type": "string"}, "docker": {"type": "null"}, "gpu": {"type": "string"}, "gpu_count": {"type": "integer"}, "cpu_count"...
{"os" : "Windows-10-10.0.19041-SP0", "python" : "3.8.7", "heartbeatAt" : "2021-11-23T01:57:23.451856", "startedAt" : "2021-11-23T01:57:19.420636", "docker" : null, "gpu" : "GeForce GTX 950M", "gpu_count" : 1, "cpu_count" : 4, "cuda" : null, "args" : [], "state" : "running", "program" : "src/models/train_model_track_WNB...
json_instruct
{"type": "object", "properties": {"os": {"type": "string"}, "python": {"type": "string"}, "heartbeatAt": {"type": "string"}, "startedAt": {"type": "string"}, "docker": {"type": "null"}, "gpu": {"type": "string"}, "gpu_count": {"type": "integer"}, "cpu_count": {"type": "integer"}, "cuda": {"type": "null"}, "args": {"typ...
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"name": {"type": "string"}, "autoload": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"Tuleap\\Docman\\": {"type": "string"}}, "required": ["Tuleap\\Docman\\"]}, "classmap": {"type": "array", "ite...
{"name" : "tuleap/plugin-docman", "autoload" : {"psr-4" : {"Tuleap\\Docman\\" : "include/"}, "classmap" : ["include/"], "files" : ["include/constants.php"]}, "autoload-dev" : {"psr-4" : {"Tuleap\\Docman\\Tests\\Stub\\" : "tests/unit/Stubs", "Tuleap\\Docman\\Test\\rest\\" : ["./tests/rest/"]}}, "config" : {"sort-package...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "autoload": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"Tuleap\\Docman\\": {"type": "string"}}, "required": ["Tuleap\\Docman\\"]}, "classmap": {"type": "array", "items": {"type": "string"}}, "files": {"type": "array", "items...
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"generated_at": {"type": "string"}, "required_by": {"type": "array", "items": {"type": "string"}}, "requires": {"type": "array", "items": {"type": "string"}}, "package": {"type": "string"}}, "required": ["generated_at", "requir...
{"generated_at" : "2017-01-27T09:37:31.561657", "required_by" : ["bitlyclip", "pelican.bitly", "django-emailpost"], "requires" : ["setuptools"], "package" : "bitlyapi"}
json_instruct
{"type": "object", "properties": {"generated_at": {"type": "string"}, "required_by": {"type": "array", "items": {"type": "string"}}, "requires": {"type": "array", "items": {"type": "string"}}, "package": {"type": "string"}}, "required": ["generated_at", "required_by", "requires", "package"], "$schema": "http://json-sch...
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"version": {"type": "number"}, "people": {"type": "array", "items": {"type": "object", "properties": {"face_keypoints": {"type": "array", "items": {}}, "pose_keypoints": {"type": "array", "items": {"type": "number"}}, "hand_rig...
{"version" : 1.0, "people" : [{"face_keypoints" : [], "pose_keypoints" : [90.9606299212598, 35.84, 0.916283905506134, 92.2204724409449, 75.6363636363636, 0.721890993416309, 51.6535433070866, 73.7745454545455, 0.652543574571609, 38.2992125984252, 141.032727272727, 0.358002366672736, 35.2755905511811, 202.938181818182, 0...
json_instruct
{"type": "object", "properties": {"version": {"type": "number"}, "people": {"type": "array", "items": {"type": "object", "properties": {"face_keypoints": {"type": "array", "items": {}}, "pose_keypoints": {"type": "array", "items": {"type": "number"}}, "hand_right_keypoints": {"type": "array", "items": {}}, "hand_left_k...
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"zingchart-react.js": {"type": "string"}, "zingchart-react.min.js": {"type": "string"}}, "required": ["zingchart-react.js", "zingchart-react.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"zingchart-react.js" : "sha512-yCYQPo57zjEHl6ebaBVVmL62P0MkUJye/T17d0ytb6VyWwZfbOiJDvPWFTHb/0efXucfy4S4rZzwLzIKGYD+FQ==", "zingchart-react.min.js" : "sha512-KoP1/+GukenpPypNYEEpuYRvWfmFw0IHsfB0vBxgJ/+v8Vq1R3eZDyUF1+LN7Wgqrrtmbvk433HuFWE1DX7r6Q=="}
json_instruct
{"type": "object", "properties": {"zingchart-react.js": {"type": "string"}, "zingchart-react.min.js": {"type": "string"}}, "required": ["zingchart-react.js", "zingchart-react.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "array", "items": {"type": "object", "properties": {"icon": {"type": "string"}, "title": {"type": "string"}, "subtitle": {"type": "string"}, "period": {"type": "string"}, "location": {"type": "string"}, "specialization": {"type": "str...
[{"icon" : "../images/work/icotop.png", "title" : "ICOTOP", "subtitle" : "Full Stack Engineer", "period" : "Jun 2019 - Mar 2021", "location" : "Florida, US (Remote)", "specialization" : "React, Typescript, Web3, Node, Express, Docker, AWS"}, {"icon" : "../images/work/fanhero.png", "title" : "FanHero", "subtitle" : "Fro...
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"icon": {"type": "string"}, "title": {"type": "string"}, "subtitle": {"type": "string"}, "period": {"type": "string"}, "location": {"type": "string"}, "specialization": {"type": "string"}}, "required": ["icon", "title", "subtitle", "period", "location", "spec...
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"version": {"type": "number"}, "people": {"type": "array", "items": {"type": "object", "properties": {"pose_keypoints_2d": {"type": "array", "items": {"type": "number"}}, "face_keypoints_2d": {"type": "array", "items": {}}, "hand...
{"version" : 1.2, "people" : [{"pose_keypoints_2d" : [1049.85, 223.089, 1, 1086.97, 243.154, 1, 1074, 243.149, 1, 1074.04, 294.188, 1, 433.75, 340.327, 0, 1100.95, 241.159, 1, 1105.03, 294.162, 1, 1091.12, 349.119, 1, 1064.14, 337.101, 1, 1070.07, 403.94, 1, 1074.02, 472.044, 1, 1087.09, 337.147, 1, 1103.07, 400.025, 1...
json_instruct
{"type": "object", "properties": {"version": {"type": "number"}, "people": {"type": "array", "items": {"type": "object", "properties": {"pose_keypoints_2d": {"type": "array", "items": {"type": "number"}}, "face_keypoints_2d": {"type": "array", "items": {}}, "hand_left_keypoints_2d": {"type": "array", "items": {}}, "han...
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"type": {"type": "string"}, "title": {"type": "string"}, "id": {"type": "string"}, "bbox": {"type": "array", "items": {"type": "number"}}, "description": {"type": "string"}, "connectsWith": {"type": "array", "items": {"type": "...
{"type" : "FeatureCollection", "title" : "Salaria?", "id" : "266022", "bbox" : [-3.368532, 38.008075, -3.368532, 38.008075], "description" : "An ancient place, cited: BAtlas 27 B4 Salaria?", "connectsWith" : ["256010"], "names" : ["Salaria", "Col. Salariensis", "Vbeda", "\u00dabeda"], "features" : [{"type" : "Feature",...
json_instruct
{"type": "object", "properties": {"type": {"type": "string"}, "title": {"type": "string"}, "id": {"type": "string"}, "bbox": {"type": "array", "items": {"type": "number"}}, "description": {"type": "string"}, "connectsWith": {"type": "array", "items": {"type": "string"}}, "names": {"type": "array", "items": {"type": "st...
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"L": {"type": "integer"}, "J": {"type": "number"}, "B": {"type": "number"}, "K": {"type": "integer"}, "init_state": {"type": "string"}, "energy": {"type": "number"}, "eigoccs": {"type": "array", "items": {"type": "number"}}}...
{"L" : 2, "J" : 0.9284766908852597, "B" : 0.18569533817705194, "K" : 10, "init_state" : "maximally-mixed state", "energy" : -0.9588596527608277, "eigoccs" : [0.41722180613108784, 0.5838977545499802, 1.015607267618172e-06, 0.0004966653624842836]}
json_instruct
{"type": "object", "properties": {"L": {"type": "integer"}, "J": {"type": "number"}, "B": {"type": "number"}, "K": {"type": "integer"}, "init_state": {"type": "string"}, "energy": {"type": "number"}, "eigoccs": {"type": "array", "items": {"type": "number"}}}, "required": ["L", "J", "B", "K", "init_state", "energy", "ei...
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"domain": {"type": "string"}, "name": {"type": "string"}, "version": {"type": "string"}, "documentation": {"type": "string"}, "issue_tracker": {"type": "string"}, "dependencies": {"type": "array", "items": {}}, "codeowners": {"...
{"domain" : "greensens", "name" : "GreenSens Plant Sensors", "version" : "0.3.1", "documentation" : "https://github.com/pijiulaoshi/ha_greensens", "issue_tracker" : "https://github.com/pijiulaoshi/ha_greensens/issues", "dependencies" : [], "codeowners" : ["@pijiulaoshi"], "requirements" : [], "iot_class" : "cloud_polli...
json_instruct
{"type": "object", "properties": {"domain": {"type": "string"}, "name": {"type": "string"}, "version": {"type": "string"}, "documentation": {"type": "string"}, "issue_tracker": {"type": "string"}, "dependencies": {"type": "array", "items": {}}, "codeowners": {"type": "array", "items": {"type": "string"}}, "requirements...
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"derivation": {"type": "string"}, "kjv_def": {"type": "string"}, "lemma": {"type": "string"}, "frequency": {"type": "integer"}, "strongs_def": {"type": "string"}, "outline": {"type": "string"}}, "required": ["derivation", "kjv_...
{"derivation" : "from G4862 (\u03c3\u03c5\u03c3\u03c4\u03c1\u03b1\u03c4\u03b9\u03ce\u03c4\u03b7\u03c2) and G4757 (\u03c3\u03c5\u03c3\u03c4\u03c1\u03b1\u03c4\u03b9\u03ce\u03c4\u03b7\u03c2);", "kjv_def" : "fellowsoldier", "lemma" : "\u03c3\u03c5\u03c3\u03c4\u03c1\u03b1\u03c4\u03b9\u03ce\u03c4\u03b7\u03c2", "frequency" : ...
json_instruct
{"type": "object", "properties": {"derivation": {"type": "string"}, "kjv_def": {"type": "string"}, "lemma": {"type": "string"}, "frequency": {"type": "integer"}, "strongs_def": {"type": "string"}, "outline": {"type": "string"}}, "required": ["derivation", "kjv_def", "lemma", "frequency", "strongs_def", "outline"], "$sc...
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"extends": {"type": "string"}, "compilerOptions": {"type": "object", "properties": {"plugins": {"type": "array", "items": {"type": "object", "properties": {"transform": {"type": "string"}}, "required": ["transform"]}...
{"extends" : "../tsconfig.json", "compilerOptions" : {"plugins" : [{"transform" : "typescript-is/lib/transform-inline/transformer"}]}}
json_instruct
{"type": "object", "properties": {"extends": {"type": "string"}, "compilerOptions": {"type": "object", "properties": {"plugins": {"type": "array", "items": {"type": "object", "properties": {"transform": {"type": "string"}}, "required": ["transform"]}}}, "required": ["plugins"]}}, "required": ["extends", "compilerOption...
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"index": {"type": "integer"}, "hash": {"type": "integer"}, "artDyeHash": {"type": "integer"}, "redacted": {"type": "boolean"}, "dyeManifestHash": {"type": "integer"}, "blacklisted": {"type": "boolean"}}, "required":...
{"index" : 3478, "hash" : 1575785719, "artDyeHash" : 1575785719, "redacted" : false, "dyeManifestHash" : 2887551735, "blacklisted" : false}
json_instruct
{"type": "object", "properties": {"index": {"type": "integer"}, "hash": {"type": "integer"}, "artDyeHash": {"type": "integer"}, "redacted": {"type": "boolean"}, "dyeManifestHash": {"type": "integer"}, "blacklisted": {"type": "boolean"}}, "required": ["index", "hash", "artDyeHash", "redacted", "dyeManifestHash", "blackl...
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"Update": {"type": "string"}, "answer": {"type": "array", "items": {"type": "string"}}, "category": {"type": "string"}, "choices": {"type": "array", "items": {"type": "string"}}, "detail": {"type": "string"}, "e...
{"Update" : "2020-03-27 18:20:49", "answer" : ["A"], "category" : "soa", "choices" : ["A. Yes, all these resources can be created using a CloudFormation template", "B. S3 is not supported by CloudFormation.", "C. No, you can only create the S3 bucket but not the IAM user.", "D. No, in the same template you can only cre...
json_instruct
{"type": "object", "properties": {"Update": {"type": "string"}, "answer": {"type": "array", "items": {"type": "string"}}, "category": {"type": "string"}, "choices": {"type": "array", "items": {"type": "string"}}, "detail": {"type": "string"}, "explanation": {"type": "array", "items": {"type": "string"}}, "id": {"type":...
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "version": {"type": "string"}, "data": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "top": {"type": "integer"}...
{"name" : "Template 1", "description" : "This is sample", "version" : "1.0.1", "data" : [{"name" : "Picture1.png", "top" : 10, "left" : 20, "angle" : 354, "width" : 30}, {"name" : "Picture2.png", "top" : 10, "left" : 45, "angle" : 0, "width" : 32}, {"name" : "Picture3.png", "top" : 20, "left" : 75, "angle" : 0, "width"...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "version": {"type": "string"}, "data": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "top": {"type": "integer"}, "left": {"type": "integer"}, "angle": {"type": "integer"}, "width":...
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"width": {"type": "number"}, "rotation": {"type": "number"}, "xCenter": {"type": "number"}, "yCenter": {"type": "number"}, "height": {"type": "number"}}, "required": ["width", "rotation", "xCenter", "yCenter", "heig...
{"width" : 0.18358225, "rotation" : 2.9776082, "xCenter" : 0.64339864, "yCenter" : 0.7528746, "height" : 0.2294778}
json_instruct
{"type": "object", "properties": {"width": {"type": "number"}, "rotation": {"type": "number"}, "xCenter": {"type": "number"}, "yCenter": {"type": "number"}, "height": {"type": "number"}}, "required": ["width", "rotation", "xCenter", "yCenter", "height"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
[[1959, 5], [1964, 5], [1978, 5]]
json_instruct
{"type": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"exp_name": {"type": "string"}, "machine": {"type": "string"}, "results": {"type": "object", "properties": {"train_time": {"type": "number"}, "val_time_no_tta": {"type": "number"}, "val_ams_smooth_no_tta": {"t...
{"exp_name" : "11_swish_ensemble_embed_aug_swacyclic", "machine" : "helios_cuda", "results" : {"train_time" : 1968.1871315220014, "val_time_no_tta" : 0.1345119670004351, "val_ams_smooth_no_tta" : 3.739787960210492, "val_ams_max_no_tta" : 3.7557667106632664, "val_time" : 4.063543091997417, "val_ams_smooth" : 3.727821576...
json_instruct
{"type": "object", "properties": {"exp_name": {"type": "string"}, "machine": {"type": "string"}, "results": {"type": "object", "properties": {"train_time": {"type": "number"}, "val_time_no_tta": {"type": "number"}, "val_ams_smooth_no_tta": {"type": "number"}, "val_ams_max_no_tta": {"type": "number"}, "val_time": {"type...
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"id": {"type": "integer"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"src:alt_label": {"type": "string"}, "src:geom": {"type": "string"}, "wof:geomhash": {"type": "string"}, "wof:i...
{"id" : 404373155, "type" : "Feature", "properties" : {"src:alt_label" : "quattroshapes_pg", "src:geom" : "quattroshapes_pg", "wof:geomhash" : "947599cbcf6509f1212af99f60b5172c", "wof:id" : 404373155, "wof:repo" : "whosonfirst-data-admin-fr"}, "bbox" : [2.9843, 49.9635, 2.9843, 49.9635], "geometry" : {"coordinates" : [...
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": ["...
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"word" : "bar iron", "definition" : "See under Iron."}
json_instruct
{"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {"type": "integer"}}, "productReviews": {"type": "array", "items": {"type": "object", "properties": {"...
{"userId" : 55320, "cartId" : "66d0b984-00bf-4c0a-91cd-5b720d53e1ca", "preferredProducts" : [3814, 1728, 3777, 2022, 2102, 3501, 1193, 3124, 3158], "productReviews" : [{"productId" : 3545, "reviewText" : "My hummingbird loves to play with it.", "reviewDate" : "2016-12-16T18:59:56.0336129+02:00"}, {"productId" : 2574, "...
json_instruct
{"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {"type": "integer"}}, "productReviews": {"type": "array", "items": {"type": "object", "properties": {"productId": {"type": "integer"}, "reviewText": {"type": "string"}, "reviewD...
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"text": {"type": "object", "properties": {"0": {"type": "object", "properties": {"m1": {"type": "string"}, "m2": {"type": "string"}}, "required": ["m1", "m2"]}, "1": {"type": "object", "properties": {"m1": {"typ...
{"text" : {"0" : {"m1" : "\u0639\u0634\u0642 \u0622\u0645\u062f \u0648 \u06af\u0648\u06cc\u062f \u06a9\u0647 \u0632\u0628\u0627\u0646 \u0628\u06af\u0634\u0627\u06cc\u0646\u062f", "m2" : "\u0648\u0632 \u0645\u0698\u062f\u0647\u0654 \u0645\u0646 \u062f\u0644 \u062c\u0647\u0627\u0646 \u0628\u06af\u0634\u0627\u06cc\u0646\u...
json_instruct
{"type": "object", "properties": {"text": {"type": "object", "properties": {"0": {"type": "object", "properties": {"m1": {"type": "string"}, "m2": {"type": "string"}}, "required": ["m1", "m2"]}, "1": {"type": "object", "properties": {"m1": {"type": "string"}, "m2": {"type": "string"}}, "required": ["m1", "m2"]}}, "requ...
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"ui.panel.shopping_list.start_conversation": {"type": "string"}}, "required": ["ui.panel.shopping_list.start_conversation"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"ui.panel.shopping_list.start_conversation" : "Zah\u00e1jit konverzaci"}
json_instruct
{"type": "object", "properties": {"ui.panel.shopping_list.start_conversation": {"type": "string"}}, "required": ["ui.panel.shopping_list.start_conversation"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "homepage": {"type": "string"}, "author": {"type": "string"}, "contributors": {"type": "array", "items": {"type": "string"}}, "lic...
{"name" : "node-red-contrib-tplink-iot", "version" : "0.1.9", "description" : "A collection of Node-RED nodes for TP-Link smart-home devices.", "homepage" : "https://github.com/mental05/node-red-contrib-tplink-iot", "author" : "Dragoiu Robert <dragoiu.robert@gmail.com> (https://facebook.com/dopepixels)", "contributors"...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "homepage": {"type": "string"}, "author": {"type": "string"}, "contributors": {"type": "array", "items": {"type": "string"}}, "license": {"type": "string"}, "repository": {"type": "object", "p...
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "link": {"type": "string"}, "club": {"type": "string"}, "class_classic": {"type": "string"}, "class_dnd": {"type": "string"}, "A": {"type": "string"}, "B":...
{"id" : "01499", "name" : "\u0415\u043c\u0435\u043b\u044c\u044f\u043d\u0435\u043d\u043a\u043e \u0410\u043d\u043d\u0430 \u0412\u043b\u0430\u0434\u0438\u043c\u0438\u0440\u043e\u0432\u043d\u0430 ", "link" : "pages/01499.html", "club" : "\u0414\u0432\u0438\u0436\u0435\u043d\u0438\u0435 (\u0433.\u041a\u0440\u0430\u0441\u043...
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "link": {"type": "string"}, "club": {"type": "string"}, "class_classic": {"type": "string"}, "class_dnd": {"type": "string"}, "A": {"type": "string"}, "B": {"type": "string"}, "C": {"type": "string"}, "D": {"type": "string"}, "E": {...
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"id": {"type": "string"}, "url": {"type": "string"}, "library": {"type": "string"}, "hooks": {"type": "array", "items": {"type": "object", "properties": {"hook": {"type": "string"}, "method": {"type": "string"}}, "required": ["...
{"id" : "nodebb-plugin-2factor", "url" : "https://github.com/julianlam/nodebb-plugin-2factor", "library" : "./library.js", "hooks" : [{"hook" : "static:app.load", "method" : "init"}, {"hook" : "filter:admin.header.build", "method" : "addAdminNavigation"}, {"hook" : "filter:user.profileMenu", "method" : "addProfileItem"...
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "url": {"type": "string"}, "library": {"type": "string"}, "hooks": {"type": "array", "items": {"type": "object", "properties": {"hook": {"type": "string"}, "method": {"type": "string"}}, "required": ["hook", "method"]}}, "staticDirs": {"type": "object", "prope...
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"title": {"type": "string"}, "author": {"type": "string"}, "musicType": {"type": "string"}, "musicNo": {"type": "string"}}, "required": ["title", "author", "musicType", "musicNo"], "$schema": "http://json-schema...
{"title" : "Total Eclipse of the Heart-Bonnie Tyler", "author" : "Bonnie Tyler", "musicType" : "\u6d41\u884c", "musicNo" : "0004177"}
json_instruct
{"type": "object", "properties": {"title": {"type": "string"}, "author": {"type": "string"}, "musicType": {"type": "string"}, "musicNo": {"type": "string"}}, "required": ["title", "author", "musicType", "musicNo"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"baseObjects": {"type": "array", "items": {"type": "string"}}, "returnObjects": {"type": "array", "items": {"type": "string"}}, "callbackArgs": {"type": "array", "items": {"type": "object", "properties": {"0":...
{"baseObjects" : ["[\"j\",\"D\",\"@I\",\"vL\",\"gb\",\"R\",\"j}\",\"w\"]", "[\"j\",\"D\",\"@I\",\"vL\",\"gb\",\"R\",\"j}\",\"w\"]", "[\"j\",\"D\",\"@I\",\"vL\",\"gb\",\"R\",\"j}\",\"w\"]", "[\"j\",\"D\",\"@I\",\"vL\",\"gb\",\"R\",\"j}\",\"w\"]"], "returnObjects" : ["\"Error\"", "true", "\"Error\"", "\"Error\""], "callb...
json_instruct
{"type": "object", "properties": {"baseObjects": {"type": "array", "items": {"type": "string"}}, "returnObjects": {"type": "array", "items": {"type": "string"}}, "callbackArgs": {"type": "array", "items": {"type": "object", "properties": {"0": {"type": "string"}, "1": {"type": "integer"}, "2": {"type": "array", "items"...
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "author": {"type": "string"}, "private": {"type": "boolean"}, "main": {"type": "string"}, "license": {"type": "string"},...
{"name" : "laralabs-vue-toaster", "version" : "3.0.1", "description" : "Vue component for Laralabs/Toaster", "author" : "Matt Clinton <matt@laralabs.uk>", "private" : false, "main" : "./src/ToasterGroupComponent.vue", "license" : "MIT", "keywords" : ["Vue", "Laralabs", "Notification", "Alerts"], "repository" : {"type" ...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "author": {"type": "string"}, "private": {"type": "boolean"}, "main": {"type": "string"}, "license": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "repository...
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"Status": {"type": "integer"}, "TimeLimitReached": {"type": "boolean"}, "RunningTime": {"type": "string"}, "StartTimes": {"type": "array", "items": {"type": "object", "properties": {"JobIndex": {"type": "integer"},...
{"Status" : 3, "TimeLimitReached" : true, "RunningTime" : "00:05:00.2642388", "StartTimes" : [{"JobIndex" : 0, "OperationIndex" : 0, "StartTime" : 92.0}, {"JobIndex" : 1, "OperationIndex" : 0, "StartTime" : 58.0}, {"JobIndex" : 2, "OperationIndex" : 0, "StartTime" : 6.0}, {"JobIndex" : 3, "OperationIndex" : 0, "StartTi...
json_instruct
{"type": "object", "properties": {"Status": {"type": "integer"}, "TimeLimitReached": {"type": "boolean"}, "RunningTime": {"type": "string"}, "StartTimes": {"type": "array", "items": {"type": "object", "properties": {"JobIndex": {"type": "integer"}, "OperationIndex": {"type": "integer"}, "StartTime": {"type": "number"}}...
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"id": {"type": "string"}}, "required": ["id"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : "861fbff283591e69e4916ef98f1539877965d126"}
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}}, "required": ["id"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"variants": {"type": "object", "properties": {"": {"type": "object", "properties": {"model": {"type": "string"}}, "required": ["model"]}}, "required": [""]}}, "required": ["variants"], "$schema": "http://json-sc...
{"variants" : {"" : {"model" : "wander:block/fir_leaves"}}}
json_instruct
{"type": "object", "properties": {"variants": {"type": "object", "properties": {"": {"type": "object", "properties": {"model": {"type": "string"}}, "required": ["model"]}}, "required": [""]}}, "required": ["variants"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"backup_data_uid": {"type": "string"}, "backup_module_uid": {"type": "string"}, "backup_module_uoa": {"type": "string"}, "control": {"type": "object", "properties": {"engine": {"type": "string"}, "iso_datetime":...
{"backup_data_uid" : "2aa47c9953afabd7", "backup_module_uid" : "41e31cc4496b8a8e", "backup_module_uoa" : "platform.os", "control" : {"engine" : "CK", "iso_datetime" : "2018-10-16T02:49:15.641113", "version" : ["1", "9", "6", "1"]}, "data_name" : "NSDL V3.1.201805(ZTE)"}
json_instruct
{"type": "object", "properties": {"backup_data_uid": {"type": "string"}, "backup_module_uid": {"type": "string"}, "backup_module_uoa": {"type": "string"}, "control": {"type": "object", "properties": {"engine": {"type": "string"}, "iso_datetime": {"type": "string"}, "version": {"type": "array", "items": {"type": "string...
Create an example JSON object that satisfies this schema: {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "frequency": {"type": "integer"}, "males": {"type": "string"}, "females": {"type": "string"}}, "required": ["name", "frequency", "males", "females"]}, "$schema": "http://js...
[{"name" : "NEEL", "frequency" : 3359, "males" : "88.65733849359928 %", "females" : "11.342661506400715 %"}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "frequency": {"type": "integer"}, "males": {"type": "string"}, "females": {"type": "string"}}, "required": ["name", "frequency", "males", "females"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"directions": {"type": "array", "items": {"type": "string"}}, "ingredients": {"type": "array", "items": {"type": "string"}}, "language": {"type": "string"}, "source": {"type": "string"}, "tags": {"type": "array", "i...
{"directions" : ["Combine chicken broth, garlic, butter, and sugar in a large saucepan; bring to a simmer and cook until garlic is tender, about 2 minutes. Stir carrot and celery into simmering broth; cook until vegetables are almost tender, about 2 minutes more.", "Bring broth mixture to a boil and stir gnocchi into t...
json_instruct
{"type": "object", "properties": {"directions": {"type": "array", "items": {"type": "string"}}, "ingredients": {"type": "array", "items": {"type": "string"}}, "language": {"type": "string"}, "source": {"type": "string"}, "tags": {"type": "array", "items": {}}, "title": {"type": "string"}, "url": {"type": "string"}}, "r...
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"\uc758\uc548\uc811\uc218\uc815\ubcf4": {"type": "object", "properties": {"\uc758\uc548\ubc88\ud638": {"type": "array", "items": {"type": "string"}}, "\uc81c\uc548\uc77c\uc790": {"type": "array", "items": {"type": "...
{"\uc758\uc548\uc811\uc218\uc815\ubcf4" : {"\uc758\uc548\ubc88\ud638" : ["ZZ1531"], "\uc81c\uc548\uc77c\uc790" : ["1998-12-10"], "\uc81c\uc548\uc790" : ["\ubc15\ud76c\ud0dc\uc758\uc6d0"], "\ubb38\uc11c" : [""], "\uc81c\uc548\ud68c\uae30" : ["\uc81c15\ub300(1996~2000)"]}}
json_instruct
{"type": "object", "properties": {"\uc758\uc548\uc811\uc218\uc815\ubcf4": {"type": "object", "properties": {"\uc758\uc548\ubc88\ud638": {"type": "array", "items": {"type": "string"}}, "\uc81c\uc548\uc77c\uc790": {"type": "array", "items": {"type": "string"}}, "\uc81c\uc548\uc790": {"type": "array", "items": {"type": "s...
Based on the schema below, produce a valid JSON object: {"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"}
["apeman-app-route", "apeman-react-component", "apeman-react-style", "apeman-react-view", "apeman-tmpl", "apemanschema", "argx", "aschema"]
json_instruct
{"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"siaApp": {"type": "object", "properties": {"actions": {"type": "object", "properties": {"home": {"type": "object", "properties": {"title": {"type": "string"}, "createLabel": {"type": "string"}, "createOrEditLabel": {"type": "str...
{"siaApp" : {"actions" : {"home" : {"title" : "Actions", "createLabel" : "Actions erstellen", "createOrEditLabel" : "Actions erstellen oder bearbeiten"}, "created" : "Actions erstellt mit ID {{ param }}", "updated" : "Actions aktualisiert mit ID {{ param }}", "deleted" : "Actions gel\u00f6scht mit ID {{ param }}", "del...
json_instruct
{"type": "object", "properties": {"siaApp": {"type": "object", "properties": {"actions": {"type": "object", "properties": {"home": {"type": "object", "properties": {"title": {"type": "string"}, "createLabel": {"type": "string"}, "createOrEditLabel": {"type": "string"}}, "required": ["title", "createLabel", "createOrEdi...
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"ActivityList": {"type": "array", "items": {"type": "string"}}, "Status": {"type": "string"}, "isStream": {"type": "boolean"}, "streamLink": {"type": "string"}}, "required": ["ActivityList", "Status", "isStream", "streamLink"],...
{"ActivityList" : ["Hi iam Hatsuku", "Flying Around on the Internet", "iam working inside RAM & CPU", "Iam Still New!", "uuuOOOO...uuuuOOOO~~", "Searching for good Anime", "Woung~...Woung~...Woung~..", "smelling~~~", "jeezzz~~", "the internet is very Big", "my Master Like playing Valorant", "Check Me On Github!"], "Sta...
json_instruct
{"type": "object", "properties": {"ActivityList": {"type": "array", "items": {"type": "string"}}, "Status": {"type": "string"}, "isStream": {"type": "boolean"}, "streamLink": {"type": "string"}}, "required": ["ActivityList", "Status", "isStream", "streamLink"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"name": {"type": "string"}, "displayName": {"type": "string"}}, "required": ["name", "displayName"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "colectores", "displayName" : "colectores"}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "displayName": {"type": "string"}}, "required": ["name", "displayName"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "title": {"type": "string"}, "author": {"type": "string"}}, "required": ["id", "title", "author"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"id" : 1, "title" : "Second Foundation", "author" : "Isaac Asimov"}, {"id" : 2, "title" : "Islands in the Sky", "author" : "Arthur C. Clarke"}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "title": {"type": "string"}, "author": {"type": "string"}}, "required": ["id", "title", "author"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
[[1991, 9], [1992, 5], [1993, 7], [1999, 5], [2000, 8], [2001, 11], [2002, 10], [2003, 10], [2004, 10], [2005, 7], [2006, 9], [2007, 8], [2008, 9], [2009, 6], [2010, 8], [2011, 6], [2013, 5], [2014, 7]]
json_instruct
{"type": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "private": {"type": "boolean"}, "run_as_system": {"type": "boolean"}}, "required": ["id", "name", "private", "run_as_system"], "$schema": "http://json-schema...
{"id" : "60219902f399852026034c56", "name" : "getStateData", "private" : false, "run_as_system" : true}
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "private": {"type": "boolean"}, "run_as_system": {"type": "boolean"}}, "required": ["id", "name", "private", "run_as_system"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"title": {"type": "string"}, "fields": {"type": "array", "items": {"type": "string"}}, "abstract": {"type": "string"}, "citation": {"type": "string"}, "departments": {"type": "array", "items": {"type": "string"}}, "authors":...
{"title" : "Query expansion for hash-based image object retrieval.", "fields" : ["rolling hash", "hopscotch hashing", "dynamic perfect hashing", "k independent hashing", "feature hashing"], "abstract" : "An efficient indexing method is essential for content-based image retrieval with the exponential growth in large-sca...
json_instruct
{"type": "object", "properties": {"title": {"type": "string"}, "fields": {"type": "array", "items": {"type": "string"}}, "abstract": {"type": "string"}, "citation": {"type": "string"}, "departments": {"type": "array", "items": {"type": "string"}}, "authors": {"type": "array", "items": {"type": "string"}}, "conf": {"typ...
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"Sortable.js": {"type": "string"}, "Sortable.min.js": {"type": "string"}}, "required": ["Sortable.js", "Sortable.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"Sortable.js" : "sha512-+n+NxNz0ovLBJS0mfuIIe4uSsFMsC3oDOeMX70qPnzCI49Zc3w2cocMEMjSQm84cntv85crOOk3RWz+E2kjlsg==", "Sortable.min.js" : "sha512-IGGrc6r6AHov1YW1vYmXP23+LdV+63tnnjhcvR/dp0LX1yMVNB2NegR2IEJ078F2bDIs/mjtPOrIR4K+oJYeWg=="}
json_instruct
{"type": "object", "properties": {"Sortable.js": {"type": "string"}, "Sortable.min.js": {"type": "string"}}, "required": ["Sortable.js", "Sortable.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"name": {"type": "string"}, "alt_name": {"type": "string"}, "country": {"type": "string"}, "state": {"type": "null"}, "address": {"type": "object", "properties": {"street": {"type": "string"}, "city": {"type":...
{"name" : "Ju\u00e1rez University of the State of Durango", "alt_name" : "Universidad Ju\u00e1rez del Estado de Durango (UJED)", "country" : "Mexico", "state" : null, "address" : {"street" : "Constituci\u00f3n, 404, Sur, Zona Centro", "city" : "Durango", "province" : "Durango", "postal_code" : "34000"}, "contact" : {"t...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "alt_name": {"type": "string"}, "country": {"type": "string"}, "state": {"type": "null"}, "address": {"type": "object", "properties": {"street": {"type": "string"}, "city": {"type": "string"}, "province": {"type": "string"}, "postal_code": {"type": "string"}...
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"name": {"type": "string"}, "author": {"type": "string"}, "version": {"type": "string"}, "factorio_version": {"type": "string"}, "title": {"type": "string"}, "title_original": {"type": "string"}, "homepage": {"type": "string...
{"name" : "AlienWall", "author" : "Vedrit and Carrotcake94", "version" : "0.4.3", "factorio_version" : "0.13", "title" : "\u5f02\u661f\u5899", "title_original" : "Alien Walls", "homepage" : "http://www.factorioforums.com/forum/viewtopic.php?f=32&t=12840", "description" : "\u4eba\u7c7b\u505a\u51fa\u4e86\u5f88\u591a\u621...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "author": {"type": "string"}, "version": {"type": "string"}, "factorio_version": {"type": "string"}, "title": {"type": "string"}, "title_original": {"type": "string"}, "homepage": {"type": "string"}, "description": {"type": "string"}, "description_original":...
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"type": {"type": "string"}, "features": {"type": "array", "items": {"type": "object", "properties": {"geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items"...
{"type" : "FeatureCollection", "features" : [{"geometry" : {"type" : "Polygon", "coordinates" : [[[-117.959106, 33.842229], [-117.958932, 33.845627], [-117.941479, 33.835861], [-117.941499, 33.832517], [-117.958955, 33.832527], [-117.959106, 33.842229]]]}, "type" : "Feature", "properties" : {"cartodb_id" : 6835}}]}
json_instruct
{"type": "object", "properties": {"type": {"type": "string"}, "features": {"type": "array", "items": {"type": "object", "properties": {"geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "numbe...
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}}, "required": ["start"]}, "repos...
{"name" : "bulletin-board", "version" : "0.0.1", "description" : "A bulletin board developed in React.", "main" : "Note.js", "scripts" : {"start" : "open http://localhost:4521 & httpster -p 4321"}, "repository" : {"type" : "git", "url" : "araphel.github.io"}, "keywords" : ["React"], "author" : "Bartekus", "license" : "...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}}, "required": ["start"]}, "repository": {"type": "object", "properties": {"type": {"type": ...
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "cordova": {"type": "object", "properties": {"id": {"type": "string"}, "platforms": {"type": "array", "items": {"type": "st...
{"name" : "cordova-plugin-empatica-device", "version" : "1.0.0", "description" : "cordova plugin to connect and get sensor data from Empatica device (especially E4)", "cordova" : {"id" : "cordova-plugin-empatica-device", "platforms" : ["android", "ios"]}, "repository" : {"type" : "git", "url" : "git+https://github.com/...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "cordova": {"type": "object", "properties": {"id": {"type": "string"}, "platforms": {"type": "array", "items": {"type": "string"}}}, "required": ["id", "platforms"]}, "repository": {"type": "o...
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": "strin...
{"stationId" : 2600304, "stationGroupId" : 2600304, "name" : "\u99d2\u6ca2\u5927\u5b66", "lineId" : 26003, "zipCode" : "154-0011", "pref" : "\u6771\u4eac\u90fd", "city" : "\u4e16\u7530\u8c37\u533a", "town" : "\u4e0a\u99ac", "longitude" : 139.661702, "latitude" : 35.633471, "status" : 0}
json_instruct
{"type": "object", "properties": {"stationId": {"type": "integer"}, "stationGroupId": {"type": "integer"}, "name": {"type": "string"}, "lineId": {"type": "integer"}, "zipCode": {"type": "string"}, "pref": {"type": "string"}, "city": {"type": "string"}, "town": {"type": "string"}, "longitude": {"type": "number"}, "latit...
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"EXT_DRI0039.DRI0039Init|block": {"type": "string"}, "EXT_DRI0039.DRI0039Init1|block": {"type": "string"}, "EXT_DRI0039.DRI0039Init2|block": {"type": "string"}, "EXT_DRI0039.DRI0039Init3|block": {"type": "string"},...
{"EXT_DRI0039.DRI0039Init|block" : "\u521d\u59cb\u5316\u9a6c\u8fbe\u9a71\u52a8\u6a21\u5757\u7684\u9a6c\u8fbe1\u901f\u5ea6\u811a\u4e3a[E1]\u9a6c\u8fbe1\u65b9\u5411\u811a\u4e3a[M1]\u9a6c\u8fbe2\u901f\u5ea6\u811a\u4e3a[E2]\u9a6c\u8fbe2\u65b9\u5411\u811a\u4e3a[M2]\u9a6c\u8fbe3\u901f\u5ea6\u811a\u4e3a[E3]\u9a6c\u8fbe3\u65b9...
json_instruct
{"type": "object", "properties": {"EXT_DRI0039.DRI0039Init|block": {"type": "string"}, "EXT_DRI0039.DRI0039Init1|block": {"type": "string"}, "EXT_DRI0039.DRI0039Init2|block": {"type": "string"}, "EXT_DRI0039.DRI0039Init3|block": {"type": "string"}, "EXT_DRI0039.FR.CW|menu": {"type": "string"}, "EXT_DRI0039.FR.CCW|menu"...
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"title": {"type": "string"}, "fields": {"type": "array", "items": {"type": "string"}}, "abstract": {"type": "null"}, "citation": {"type": "string"}, "departments": {"type": "array", "items": {"type": "string"}}, "auth...
{"title" : "On Validation and Predictability of Digital Badges' Influence on Individual Users.", "fields" : ["computer science", "predictability", "artificial intelligence", "machine learning"], "abstract" : null, "citation" : "Not cited", "departments" : ["Norwegian University of Science and Technology", "Norwegian Un...
json_instruct
{"type": "object", "properties": {"title": {"type": "string"}, "fields": {"type": "array", "items": {"type": "string"}}, "abstract": {"type": "null"}, "citation": {"type": "string"}, "departments": {"type": "array", "items": {"type": "string"}}, "authors": {"type": "array", "items": {"type": "string"}}, "conf": {"type"...
Based on the schema below, produce a valid JSON object: {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "text": {"type": "string"}}, "required": ["id", "text"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"id" : "522722101200", "text" : "\u671d\u9633\u6751\u59d4\u4f1a"}, {"id" : "522722101201", "text" : "\u516b\u70c2\u6751\u59d4\u4f1a"}, {"id" : "522722101202", "text" : "\u677f\u9ea6\u6751\u59d4\u4f1a"}, {"id" : "522722101203", "text" : "\u5c9c\u9a6c\u6751\u59d4\u4f1a"}, {"id" : "522722101204", "text" : "\u6d2a\u6c5f\...
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "text": {"type": "string"}}, "required": ["id", "text"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"id": {"type": "integer"}, "children": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}}, "required": ["id", "name"]}}, "name": {"type": "string"}}, "r...
{"id" : 17036, "children" : [{"id" : 17037, "name" : "Groddeck, Georg -- and Ferenczi"}], "name" : "Groddeck, Georg"}
json_instruct
{"type": "object", "properties": {"id": {"type": "integer"}, "children": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}}, "required": ["id", "name"]}}, "name": {"type": "string"}}, "required": ["id", "children", "name"], "$schema": "http://json-schema....
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "start": {"type": "st...
{"name" : "q-banbung", "version" : "1.0.0", "description" : "q system banbung hospital", "main" : "index.js", "scripts" : {"test" : "echo \"Error: no test specified\" && exit 1", "start" : "node server.js"}, "repository" : {"type" : "git", "url" : "git+https://M_ComScience@bitbucket.org/M_ComScience/q-banbung.git"}, "k...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "start": {"type": "string"}}, "required": ["test", "start"]}, "repository": {"type": "objec...
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"config": {"type": "object", "properties": {"error": {"type": "object", "properties": {"cannot_connect": {"type": "string"}, "invalid_api_key": {"type": "string"}, "rate_limited": {"type": "string"}, "unknown": {"type": "string"}...
{"config" : {"error" : {"cannot_connect" : "\u00c9chec de connexion", "invalid_api_key" : "Cl\u00e9 d'API non valide", "rate_limited" : "Nombre maximal de tentatives de connexion d\u00e9pass\u00e9, veuillez r\u00e9essayer ult\u00e9rieurement.", "unknown" : "Erreur inattendue"}, "step" : {"user" : {"data" : {"api_key" :...
json_instruct
{"type": "object", "properties": {"config": {"type": "object", "properties": {"error": {"type": "object", "properties": {"cannot_connect": {"type": "string"}, "invalid_api_key": {"type": "string"}, "rate_limited": {"type": "string"}, "unknown": {"type": "string"}}, "required": ["cannot_connect", "invalid_api_key", "rat...
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"citations": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "cite": {"type": "string"}}, "required": ["type", "cite"]}}}, "required": ["citations"], "$schema": "http:/...
{"citations" : [{"type" : "official", "cite" : "36 N.Y. Crim. 450"}, {"type" : "parallel", "cite" : "171 N.Y. Supp. 157"}]}
json_instruct
{"type": "object", "properties": {"citations": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "cite": {"type": "string"}}, "required": ["type", "cite"]}}}, "required": ["citations"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"address": {"type": "string"}, "cert_auth_type": {"type": "string"}, "cert_sign": {"type": "string"}, "cert_user_id": {"type": "string"}, "files": {"type": "object", "properties": {"data.json": {"type": "object", "...
{"address" : "1TaLkFrMwvbNsooF4ioKAY9EuxTBTjipT", "cert_auth_type" : "web", "cert_sign" : "HE3Zpj+lMa6PJi+6JbI20AP2DlhpbsE1kef77nCnK3lIRg6RN0ZpfBfkyp7FJf+2Ownkg1MIAH+VmtziNXKK8xs=", "cert_user_id" : "maxence98@zeroid.bit", "files" : {"data.json" : {"sha512" : "e05d8fa34e51ac9469f53ad6ec4940b4c20b1f59a0f21bbca937719c5fb...
json_instruct
{"type": "object", "properties": {"address": {"type": "string"}, "cert_auth_type": {"type": "string"}, "cert_sign": {"type": "string"}, "cert_user_id": {"type": "string"}, "files": {"type": "object", "properties": {"data.json": {"type": "object", "properties": {"sha512": {"type": "string"}, "size": {"type": "integer"}}...
The schema below describes a JSON structure. Generate a valid example: {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
[[1985, 13], [1986, 63], [1987, 9]]
json_instruct
{"type": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"cSpell.words": {"type": "array", "items": {"type": "string"}}}, "required": ["cSpell.words"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"cSpell.words" : ["alph", "arange", "disp", "numpy", "pyplot", "rcdefaults", "srch", "tablefmt", "tfilename", "tqdm", "xlabel", "xlrd", "xticks", "ylabel"]}
json_instruct
{"type": "object", "properties": {"cSpell.words": {"type": "array", "items": {"type": "string"}}}, "required": ["cSpell.words"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "role": {"type": "string"}, "name": {"type": "string"}, "password": {"type": "string"}}, "required": ["id", "role", "name", "password"]}, "$schema": "http://json-schema.org/...
[{"id" : 1, "role" : "administrator", "name" : "user-admin01", "password" : "pbkdf2:sha256:150000$uruHRLDK$e7291b6efdd7439668e47fbd509e9fadad0cd7511073fb47d9846161c9605e20"}, {"id" : 2, "role" : "editor", "name" : "user-editor01", "password" : "pbkdf2:sha256:150000$uruHRLDK$e7291b6efdd7439668e47fbd509e9fadad0cd7511073f...
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "role": {"type": "string"}, "name": {"type": "string"}, "password": {"type": "string"}}, "required": ["id", "role", "name", "password"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"name": {"type": "string"}, "main": {"type": "string"}, "version": {"type": "string"}, "homepage": {"type": "string"}, "ignore": {"type": "array", "items": {"type": "string"}}, "dependencies": {"type": "object", "pr...
{"name" : "angular-lodash", "main" : "angular-lodash.js", "version" : "0.1.2", "homepage" : "https://github.com/cabrel/angular-lodash", "ignore" : ["**/.*", "node_modules", "bower_components", "test", "tests"], "dependencies" : {"lodash" : "~2.4.1"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "main": {"type": "string"}, "version": {"type": "string"}, "homepage": {"type": "string"}, "ignore": {"type": "array", "items": {"type": "string"}}, "dependencies": {"type": "object", "properties": {"lodash": {"type": "string"}}, "required": ["lodash"]}}, "r...
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"runtime": {"type": "string"}, "envvars": {"type": "array", "items": {}}, "config": {"type": "object", "properties": {}, "required": []}}, "required": ["runtime", "envvars", "config"], "$schema": "http://json-schema.org/draft-0...
{"runtime" : "dotnet", "envvars" : [], "config" : {}}
json_instruct
{"type": "object", "properties": {"runtime": {"type": "string"}, "envvars": {"type": "array", "items": {}}, "config": {"type": "object", "properties": {}, "required": []}}, "required": ["runtime", "envvars", "config"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"shadow": {"type": "object", "properties": {"elements": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "name": {"type": "string"}, "selector": {"type": "object", "properties": {"css": {...
{"shadow" : {"elements" : [{"type" : "utam-records/pageObjects/recordLayoutEventBroker", "name" : "eventBroker", "selector" : {"css" : "records-record-layout-event-broker"}, "public" : true}]}, "elements" : [{"type" : "utam-flexipage/pageObjects/recordHomeTemplateDesktop2", "name" : "templateDesktop2", "selector" : {"c...
json_instruct
{"type": "object", "properties": {"shadow": {"type": "object", "properties": {"elements": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "name": {"type": "string"}, "selector": {"type": "object", "properties": {"css": {"type": "string"}}, "required": ["css"]}, "public": {"type"...
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "version": {"type": "string"}, "license": {"type": "string"}, "type": {"type": "string"}...
{"name" : "modulusphp/modulusphp", "description" : "A cool API Framework for PHP", "keywords" : ["framework", "modulusphp", "modulus", "api", "php"], "version" : "1.9.9.5", "license" : "MIT", "type" : "project", "authors" : [{"name" : "Donald Pakkies", "email" : "donaldpakkies@gmail.com"}], "require" : {"php" : ">=7.3....
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "version": {"type": "string"}, "license": {"type": "string"}, "type": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"...
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"products": {"type": "array", "items": {"type": "object", "properties": {"title": {"type": "string"}, "author": {"type": "string"}, "price": {"type": "string"}, "image": {"type": "string"}, "description": {"type...
{"products" : [{"title" : "Clean Architecture: A Craftsman's Guide to Software Structure and Design", "author" : "Robert C. Martin", "price" : "22.98 \u20ac", "image" : "https://books.google.com/books/content/images/frontcover/uGE1DwAAQBAJ?fife=w400-h600", "description" : "Practical Software Architecture Solutions from...
json_instruct
{"type": "object", "properties": {"products": {"type": "array", "items": {"type": "object", "properties": {"title": {"type": "string"}, "author": {"type": "string"}, "price": {"type": "string"}, "image": {"type": "string"}, "description": {"type": "string"}}, "required": ["title", "author", "price", "image", "descripti...
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"inferno-component.js": {"type": "string"}, "inferno-component.min.js": {"type": "string"}}, "required": ["inferno-component.js", "inferno-component.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"inferno-component.js" : "sha512-S05UbqTnFu5FC5tv3Kn1So18WmvBGqT1HwX3h3vVPKyEz62WtQYdQp0GcneZa82vz1I32Z2xiqMhcXRxdA/4SA==", "inferno-component.min.js" : "sha512-EpmWfQqtNWk+puNL5IY+HobKcdYZZjycOBl2hJyCWPlM20CPOhX9b/ntFx/tk4XhNojdvXnzmjQz8SKA/uzngg=="}
json_instruct
{"type": "object", "properties": {"inferno-component.js": {"type": "string"}, "inferno-component.min.js": {"type": "string"}}, "required": ["inferno-component.js", "inferno-component.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"categories": {"type": "array", "items": {"type": "string"}}, "desc": {"type": "string"}, "details": {"type": "object", "properties": {"authors": {"type": "string"}, "format": {"type": "string"}, "isbn-10": {"type"...
{"categories" : ["Manual", "Mobile Development", "Programming"], "desc" : " Android development is hot, and many programmers are interested in joining the fun. However, because this technology is based on Java, you should first obtain a solid grasp of the Java language and its foundational APIs to improve your chances ...
json_instruct
{"type": "object", "properties": {"categories": {"type": "array", "items": {"type": "string"}}, "desc": {"type": "string"}, "details": {"type": "object", "properties": {"authors": {"type": "string"}, "format": {"type": "string"}, "isbn-10": {"type": "string"}, "isbn-13": {"type": "string"}, "pages": {"type": "string"},...
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"expireTime": {"type": "integer"}, "key": {"type": "string"}, "val": {"type": "object", "properties": {"src": {"type": "string"}, "width": {"type": "integer"}, "height": {"type": "integer"}, "aspectRatio": {"typ...
{"expireTime" : 9007200893215879000, "key" : "d85512b0b9ce8d33ff86606608d65c53{\"duotone\":false,\"grayscale\":false,\"rotate\":0,\"toFormat\":\"jpg\",\"toFormatBase64\":\"\",\"width\":20,\"height\":13}", "val" : {"src" : "data:image/jpeg;base64,/9j/2wBDABALDA4MChAODQ4SERATGCgaGBYWGDEjJR0oOjM9PDkzODdASFxOQERXRTc4UG1RV1...
json_instruct
{"type": "object", "properties": {"expireTime": {"type": "integer"}, "key": {"type": "string"}, "val": {"type": "object", "properties": {"src": {"type": "string"}, "width": {"type": "integer"}, "height": {"type": "integer"}, "aspectRatio": {"type": "number"}, "originalName": {"type": "string"}}, "required": ["src", "wi...
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"device_automation": {"type": "object", "properties": {"trigger_type": {"type": "object", "properties": {"locked": {"type": "string"}, "unlocked": {"type": "string"}}, "required": ["locked", "unlocked"]}}, "required":...
{"device_automation" : {"trigger_type" : {"locked" : "{entity_name} fechada", "unlocked" : "{entity_name} aberta"}}}
json_instruct
{"type": "object", "properties": {"device_automation": {"type": "object", "properties": {"trigger_type": {"type": "object", "properties": {"locked": {"type": "string"}, "unlocked": {"type": "string"}}, "required": ["locked", "unlocked"]}}, "required": ["trigger_type"]}}, "required": ["device_automation"], "$schema": "h...
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"resources/scripts/test.ts": {"type": "object", "properties": {"file": {"type": "string"}, "src": {"type": "string"}, "isEntry": {"type": "boolean"}, "css": {"type": "array", "items": {"type": "string"}}}, "required":...
{"resources/scripts/test.ts" : {"file" : "assets/test.a2c636dd.js", "src" : "resources/scripts/test.ts", "isEntry" : true, "css" : ["assets/test.65bd481b.css"]}}
json_instruct
{"type": "object", "properties": {"resources/scripts/test.ts": {"type": "object", "properties": {"file": {"type": "string"}, "src": {"type": "string"}, "isEntry": {"type": "boolean"}, "css": {"type": "array", "items": {"type": "string"}}}, "required": ["file", "src", "isEntry", "css"]}}, "required": ["resources/scripts...
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"frame_id": {"type": "integer"}, "walking": {"type": "string"}, "video_id": {"type": "string"}, "bbs": {"type": "array", "items": {"type": "object", "properties": {"artwork_id": {"type": "string"}, "right": {"type": "number"}, "b...
{"frame_id" : 4749, "walking" : "0", "video_id" : "VID_20161007_131547_reduced", "bbs" : [{"artwork_id" : "san_giorgio_donatello", "right" : 0.83225, "bottom" : 0.509278, "top" : 0.02965, "confidence" : 54, "recognized" : true, "bb_big_enough" : true, "class" : "artwork", "left" : 0.465448}, {"artwork_id" : "david_bron...
json_instruct
{"type": "object", "properties": {"frame_id": {"type": "integer"}, "walking": {"type": "string"}, "video_id": {"type": "string"}, "bbs": {"type": "array", "items": {"type": "object", "properties": {"artwork_id": {"type": "string"}, "right": {"type": "number"}, "bottom": {"type": "number"}, "top": {"type": "number"}, "c...
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"name": {"type": "string"}, "bio": {"type": "string"}, "photoURL": {"type": "string"}, "githubURL": {"type": "string"}}, "required": ["name", "bio", "photoURL", "githubURL"], "$schema": "http://json-schema.org/draft...
{"name" : "Aristeidis Bampakos", "bio" : "Angular Google Developer Expert | Co-organizer at Angular Athens meetup | Author @PacktPublishing | Senior Angular Instructor @CodeHubGreece", "photoURL" : "https://avatars.githubusercontent.com/bampakoa", "githubURL" : "https://github.com/bampakoa"}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "bio": {"type": "string"}, "photoURL": {"type": "string"}, "githubURL": {"type": "string"}}, "required": ["name", "bio", "photoURL", "githubURL"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"cam/image_array": {"type": "string"}, "user/angle": {"type": "number"}, "user/throttle": {"type": "number"}, "user/mode": {"type": "string"}, "pos/pos_x": {"type": "number"}, "pos/pos_y": {"type": "number"}, ...
{"cam/image_array" : "6218_cam-image_array_.jpg", "user/angle" : 0.39, "user/throttle" : 0.966, "user/mode" : "user", "pos/pos_x" : 75.04835, "pos/pos_y" : 0.5524001, "pos/pos_z" : -12.75091, "pos/speed" : 10.06018, "pos/cte" : -9.045746, "milliseconds" : 329498}
json_instruct
{"type": "object", "properties": {"cam/image_array": {"type": "string"}, "user/angle": {"type": "number"}, "user/throttle": {"type": "number"}, "user/mode": {"type": "string"}, "pos/pos_x": {"type": "number"}, "pos/pos_y": {"type": "number"}, "pos/pos_z": {"type": "number"}, "pos/speed": {"type": "number"}, "pos/cte": ...
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"main": {"type": "string"}, "dependencies": {"type": "object", "properties": {"@google-cloud/functions-framework": {"type": "string"}}, "required": ["@google-cloud/functions-framework"]}}, "required": ["main", "dependencies"], ...
{"main" : "index.js", "dependencies" : {"@google-cloud/functions-framework" : "^2.0.0"}}
json_instruct
{"type": "object", "properties": {"main": {"type": "string"}, "dependencies": {"type": "object", "properties": {"@google-cloud/functions-framework": {"type": "string"}}, "required": ["@google-cloud/functions-framework"]}}, "required": ["main", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"problemId": {"type": "integer"}, "seed": {"type": "integer"}, "solution": {"type": "string"}}, "required": ["problemId", "seed", "solution"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"problemId" : 2, "seed" : 13639, "solution" : "225455451125554154x555134414x5414433x412x4252xx25x42125xx53351534xx311314535214152525434x22x5133x244x5x44122425135242x22xx2x3311331442x3xx331133x2x333111311213522x241343143x2x3x5155x2xxx514213142431514x42125x2xx41244x4xxxx3x2511531114x34414x4xxx331513112x21213xx3313114531...
json_instruct
{"type": "object", "properties": {"problemId": {"type": "integer"}, "seed": {"type": "integer"}, "solution": {"type": "string"}}, "required": ["problemId", "seed", "solution"], "$schema": "http://json-schema.org/draft-07/schema#"}