input stringlengths 159 2.05k | output stringlengths 5 10.3k | task stringclasses 1
value | schema stringlengths 100 1.99k |
|---|---|---|---|
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"type": {"type": "string"}, "author": {"type": "object", "properties": {"type": {"type": "string"}, "name": {"type": "string"}, "photo": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "name", "photo", "url... | {"type" : "entry", "author" : {"type" : "card", "name" : "Rick 'Tricky' Harrison", "photo" : "https://webmention.io/avatar/pbs.twimg.com/fc6601d147c616435bc78c83a2827c7a74a5160052b1e741a87bcb3c53a175d1.jpg", "url" : "https://twitter.com/sovietuk"}, "url" : "https://twitter.com/vincentlistens/status/1124898340641103872#... | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "author": {"type": "object", "properties": {"type": {"type": "string"}, "name": {"type": "string"}, "photo": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "name", "photo", "url"]}, "url": {"type": "string"}, "published": {"type": "null... |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"model": {"type": "string"}, "dataset": {"type": "string"}, "rmse_train": {"type": "number"}, "rmse_test": {"type": "number"}, "log_score_train": {"type": "number"}, "log_score_test": {"type": "number"}, "crps_train": {"type... | {"model" : "MC dropout", "dataset" : "wine", "rmse_train" : 0.5617581221106909, "rmse_test" : 0.8339311735930902, "log_score_train" : -0.7710027754227862, "log_score_test" : -1.2816245761622447, "crps_train" : 0.30641412436914434, "crps_test" : 0.4759779330790496, "picp_train" : 0.9774647887323944, "picp_test" : 0.9812... | json_instruct | {"type": "object", "properties": {"model": {"type": "string"}, "dataset": {"type": "string"}, "rmse_train": {"type": "number"}, "rmse_test": {"type": "number"}, "log_score_train": {"type": "number"}, "log_score_test": {"type": "number"}, "crps_train": {"type": "number"}, "crps_test": {"type": "number"}, "picp_train": {... |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"id": {"type": "string"}, "provinceId": {"type": "string"}, "regencyId": {"type": "string"}, "districtId": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "provinceId", "regencyId", "districtId",... | {"id" : "1011", "provinceId" : "32", "regencyId" : "78", "districtId" : "06", "name" : "Ciherang"} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "provinceId": {"type": "string"}, "regencyId": {"type": "string"}, "districtId": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "provinceId", "regencyId", "districtId", "name"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"tha-ap296:1.2": {"type": "string"}, "tha-ap296:2.1": {"type": "string"}}, "required": ["tha-ap296:1.2", "tha-ap296:2.1"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"tha-ap296:1.2" : "pan\u0101do \u2192 pas\u0101do (sya1ed, sya2ed, pts-vp-pli1)", "tha-ap296:2.1" : "Ghosamassosaha\u1e41 \u2192 sadda (bj, sya1ed, sya2ed, pts-vp-pli1)"} | json_instruct | {"type": "object", "properties": {"tha-ap296:1.2": {"type": "string"}, "tha-ap296:2.1": {"type": "string"}}, "required": ["tha-ap296:1.2", "tha-ap296:2.1"], "$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": "null"}}, "required": ["contract", "tool... | {"contract" : "0xf4988362b291724d5084049686d96bac3f1efb10", "tool" : "securify", "start" : 1563642498.773913, "end" : 1563642502.7408235, "duration" : 3.9669106006622314, "analysis" : null} | json_instruct | {"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "null"}}, "required": ["contract", "tool", "start", "end", "duration", "analysis"], "$schema": "http://json-schema.or... |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"id": {"type": "string"}, "district_id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "district_id", "name"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "1471010007", "district_id" : "1471010", "name" : "TUAH KARYA"} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "district_id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "district_id", "name"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"private": {"type": "object", "properties": {"SINCH_SECRET": {"type": "string"}}, "required": ["SINCH_SECRET"]}, "public": {"type": "object", "properties": {"SINCH_KEY": {"type": "string"}}, "required": ["SINCH_KEY"... | {"private" : {"SINCH_SECRET" : "be true to your self"}, "public" : {"SINCH_KEY" : "call your mother"}} | json_instruct | {"type": "object", "properties": {"private": {"type": "object", "properties": {"SINCH_SECRET": {"type": "string"}}, "required": ["SINCH_SECRET"]}, "public": {"type": "object", "properties": {"SINCH_KEY": {"type": "string"}}, "required": ["SINCH_KEY"]}}, "required": ["private", "public"], "$schema": "http://json-schema.... |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"LiteratureOfThe1910s": {"type": "array", "items": {}}}, "required": ["LiteratureOfThe1910s"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"LiteratureOfThe1910s" : []} | json_instruct | {"type": "object", "properties": {"LiteratureOfThe1910s": {"type": "array", "items": {}}}, "required": ["LiteratureOfThe1910s"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"id": {"type": "string"}, "provinceId": {"type": "string"}, "regencyId": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "provinceId", "regencyId", "name"], "$schema": "http://json-schema.org/dra... | {"id" : "06", "provinceId" : "36", "regencyId" : "71", "name" : "Ciledug"} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "provinceId": {"type": "string"}, "regencyId": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "provinceId", "regencyId", "name"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"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" : 404382151, "type" : "Feature", "properties" : {"src:alt_label" : "quattroshapes", "src:geom" : "quattroshapes", "wof:geomhash" : "45479408d0242fb24e0929e16567af82", "wof:id" : 404382151, "wof:repo" : "whosonfirst-data-admin-fr"}, "bbox" : [3.54047247300308, 49.0694580593186, 3.57926352045469, 49.11024653671164]... | 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": ["... |
Based on the schema below, produce a valid JSON object:
{"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "dt": {"type": "integer"}, "ar": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}}, "required": ["id", "name... | [{"id" : 1339671079, "name" : "FOR YOU", "dt" : 350003, "ar" : {"id" : 12226099, "name" : "\u80d6\u5927\u6d77\u4e50\u961f"}, "al" : {"id" : 75147571, "name" : "\u82f1\u683c\u4e34\u5c4e", "picUrl" : "https://p2.music.126.net/RzpaQUOyGPrdt5B457hVBA==/109951163793790413.jpg"}}, {"id" : 1389535206, "name" : "\u83ab\u59ae\u... | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "dt": {"type": "integer"}, "ar": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}}, "required": ["id", "name"]}, "al": {"type": "object", "properties": {"id": {"type... |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "font_family": {"type": "string"}, "css_prefix_text": {"type": "string"}, "description": {"type": "string"}, "glyphs": {"type": "array", "items": {"type": "objec... | {"id" : "1364430", "name" : "no name", "font_family" : "iconfont", "css_prefix_text" : "el-icon-", "description" : "", "glyphs" : [{"icon_id" : "17093563", "name" : "pause", "font_class" : "pause", "unicode" : "e608", "unicode_decimal" : 58888}, {"icon_id" : "17093564", "name" : "start", "font_class" : "start", "unicod... | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "font_family": {"type": "string"}, "css_prefix_text": {"type": "string"}, "description": {"type": "string"}, "glyphs": {"type": "array", "items": {"type": "object", "properties": {"icon_id": {"type": "string"}, "name": {"type": "str... |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "type": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "license": {"type": "string"}, "authors": {"type": "array", "it... | {"name" : "burn/yii2-db-archiver", "description" : "DbArchiver archive and restore old data from DB to file by Yii2 ActiveRecord models. For big tables allow direct file export from MySQL database(fast archiving, but file save only on MySQL server drive)", "type" : "yii2-extension", "keywords" : ["yii2", "extension", "... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "type": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "license": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "ema... |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"id": {"type": "string"}, "variable1": {"type": "number"}, "variable2": {"type": "number"}, "variable3": {"type": "string"}}, "required": ["id", "variable1", "variable2", "variable3"], "$schema": "http://json-schema... | {"id" : "010200040301", "variable1" : 0.4918, "variable2" : 0.4686, "variable3" : "A"} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "variable1": {"type": "number"}, "variable2": {"type": "number"}, "variable3": {"type": "string"}}, "required": ["id", "variable1", "variable2", "variable3"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {"type": "integer"}}, "productReviews": {"type": "array", "items": {"type": "object", "properties": ... | {"userId" : 25576, "cartId" : "2e0ef2d9-e07f-4cc6-b326-5c0cef211fdc", "preferredProducts" : [4733, 4947, 3116, 4051, 1817, 4130, 615, 3877], "productReviews" : [{"productId" : 2694, "reviewText" : "My bass loves to play with it.", "reviewDate" : "2016-08-04T08:30:13.9690471+03:00"}, {"productId" : 1344, "reviewText" : ... | 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... |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"angular-google-maps.js": {"type": "string"}, "angular-google-maps.min.js": {"type": "string"}}, "required": ["angular-google-maps.js", "angular-google-maps.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"angular-google-maps.js" : "sha256-gg+o6dXZ1uzungjScJGfif62CjIJCL0VEhZYniRVGUE=", "angular-google-maps.min.js" : "sha256-H4pbroVfIcJnhqpc+nV3c5sN/G5Z8d6iOSJa95byC+4="} | json_instruct | {"type": "object", "properties": {"angular-google-maps.js": {"type": "string"}, "angular-google-maps.min.js": {"type": "string"}}, "required": ["angular-google-maps.js", "angular-google-maps.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": "object", "properties": {"US-en": {"type": "string"}, "EU-en": {"type": "string"}, "EU-de": {"type": "string"}, "EU-es": {"type": "string"}, "US-es": {"type": "string"}, "EU-fr": {"type": "str... | {"name" : {"US-en" : "Norma", "EU-en" : "Norma", "EU-de" : "Nelly", "EU-es" : "Norma", "US-es" : "Norma", "EU-fr" : "Norma", "US-fr" : "Norma", "EU-it" : "Norma", "EU-nl" : "Norma", "CN-zh" : "\u6668\u66e6", "TW-zh" : "\u6668\u66e6", "JP-ja" : "\u3044\u3055\u3053", "KR-ko" : "\ubbf8\uc790", "EU-ru" : "\u041d\u043e\u044... | json_instruct | {"type": "object", "properties": {"name": {"type": "object", "properties": {"US-en": {"type": "string"}, "EU-en": {"type": "string"}, "EU-de": {"type": "string"}, "EU-es": {"type": "string"}, "US-es": {"type": "string"}, "EU-fr": {"type": "string"}, "US-fr": {"type": "string"}, "EU-it": {"type": "string"}, "EU-nl": {"t... |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "is_channel": {"type": "boolean"}, "created": {"type": "integer"}, "creator": {"type": "string"}, "is_archived": {"type": "boolean"}, "is_general": {"type": ... | {"id" : "C0A38K8BB", "name" : "transformers", "is_channel" : true, "created" : 1441251372, "creator" : "U06NT1P2Q", "is_archived" : false, "is_general" : false, "is_member" : false, "members" : ["U039VEH0L", "U04TC4ZG8", "U06L88R26", "U06L9U29E", "U06LB3X3N", "U06LBQ2R5", "U06LGRWEA", "U06LLDW1K", "U06M5FZ8T", "U06MJT9... | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "is_channel": {"type": "boolean"}, "created": {"type": "integer"}, "creator": {"type": "string"}, "is_archived": {"type": "boolean"}, "is_general": {"type": "boolean"}, "is_member": {"type": "boolean"}, "members": {"type": "array", ... |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "base_rgb": {"type": "array", "items": {"type": "integer"}}, "cloth": {"type": "object", "properties": {"brightness": {"type": "integer"}, "contrast": {"type": "number"}, "... | {"id" : 1246, "name" : "Toxin", "base_rgb" : [128, 26, 26], "cloth" : {"brightness" : -3, "contrast" : 1.32812, "hue" : 75, "saturation" : 0.703125, "lightness" : 1.71875, "rgb" : [70, 99, 0]}, "leather" : {"brightness" : -3, "contrast" : 1.48438, "hue" : 70, "saturation" : 0.703125, "lightness" : 1.83594, "rgb" : [62,... | json_instruct | {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "base_rgb": {"type": "array", "items": {"type": "integer"}}, "cloth": {"type": "object", "properties": {"brightness": {"type": "integer"}, "contrast": {"type": "number"}, "hue": {"type": "integer"}, "saturation": {"type": "number"}... |
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"}}, "homepage": {"type": "string"}, "type": {"type": "string"}, "license": {"type": "string"... | {"name" : "[title]/[title]", "description" : "[description]", "keywords" : [""], "homepage" : "[author/homepage]", "type" : "library", "license" : "", "authors" : [{"name" : "[author/name]", "email" : "[author/email]", "homepage" : "[author/homepage]", "role" : "[author/role]"}], "require" : {"php" : ">=5.4.0", "phpuni... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "homepage": {"type": "string"}, "type": {"type": "string"}, "license": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {... |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"X": {"type": "array", "items": {"type": "integer"}}, "O": {"type": "array", "items": {"type": "integer"}}}, "required": ["X", "O"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"X" : [2, 1, 11, 10, 9, 0, 3, 4, 8, 7, 6, 5], "O" : [0, 10, 9, 8, 4, 7, 11, 2, 6, 5, 3, 1]} | json_instruct | {"type": "object", "properties": {"X": {"type": "array", "items": {"type": "integer"}}, "O": {"type": "array", "items": {"type": "integer"}}}, "required": ["X", "O"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"index": {"type": "integer"}, "hash": {"type": "integer"}, "blacklisted": {"type": "boolean"}, "mappingIndex": {"type": "integer"}, "redacted": {"type": "boolean"}, "scope": {"type": "integer"}, "aggregationType": {"... | {"index" : 8905, "hash" : 112906803, "blacklisted" : false, "mappingIndex" : 0, "redacted" : false, "scope" : 0, "aggregationType" : 0} | json_instruct | {"type": "object", "properties": {"index": {"type": "integer"}, "hash": {"type": "integer"}, "blacklisted": {"type": "boolean"}, "mappingIndex": {"type": "integer"}, "redacted": {"type": "boolean"}, "scope": {"type": "integer"}, "aggregationType": {"type": "integer"}}, "required": ["index", "hash", "blacklisted", "mapp... |
Based on the schema below, produce a valid JSON object:
{"type": "array", "items": {"type": "object", "properties": {"namaKab": {"type": "string"}, "originalFilename": {"type": "string"}, "namaPartai": {"type": "string"}, "id": {"type": "integer"}, "noUrut": {"type": "integer"}, "nama": {"type": "string"}, "stringJeni... | [{"namaKab" : "KOTA SAMARINDA", "originalFilename" : "foto veridiann huraq wang 4 x 6.jpg", "namaPartai" : "PARTAI DEMOKRASI INDONESIA PERJUANGAN", "id" : 8065, "noUrut" : 1, "nama" : "VERIDIANA HURAQ WANG, S.Pd.", "stringJenisKelamin" : "Perempuan"}, {"namaKab" : "KOTA SAMARINDA", "originalFilename" : "marthinus, ST.j... | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"namaKab": {"type": "string"}, "originalFilename": {"type": "string"}, "namaPartai": {"type": "string"}, "id": {"type": "integer"}, "noUrut": {"type": "integer"}, "nama": {"type": "string"}, "stringJenisKelamin": {"type": "string"}}, "required": ["namaKab", "... |
Please provide a valid JSON object following this schema:
{"type": "array", "items": {"type": "number"}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [1.0] | json_instruct | {"type": "array", "items": {"type": "number"}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"main": {"type": "string"}, "dependencies": {"type": "object", "properties": {}, "required": []}, "devDependencies": {"type": "object", "properties": {"eslint": {"type": "string"}, "eslint-config-airbnb-base":... | {"main" : "./src/index.js", "dependencies" : {}, "devDependencies" : {"eslint" : "^6.8.0", "eslint-config-airbnb-base" : "^14.1.0", "eslint-config-prettier" : "^6.10.1", "eslint-plugin-import" : "^2.20.1", "eslint-plugin-jest" : "^23.8.2", "eslint-plugin-prettier" : "^3.1.2", "jest" : "^25.2.3", "prettier" : "^2.0.2"},... | json_instruct | {"type": "object", "properties": {"main": {"type": "string"}, "dependencies": {"type": "object", "properties": {}, "required": []}, "devDependencies": {"type": "object", "properties": {"eslint": {"type": "string"}, "eslint-config-airbnb-base": {"type": "string"}, "eslint-config-prettier": {"type": "string"}, "eslint-pl... |
Create a JSON structure that matches this schema definition:
{"type": "array", "items": {"type": "object", "properties": {"goPackagePath": {"type": "string"}, "fetch": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}, "rev": {"type": "string"}, "sha256": {"type": "string"}}, "req... | [{"goPackagePath" : "golang.org/x/tools", "fetch" : {"type" : "git", "url" : "https://go.googlesource.com/tools", "rev" : "9ae4729fba20b3533d829a9c6ba8195b068f2abc", "sha256" : "1j51aaskfqc953p5s9naqimr04hzfijm4yczdsiway1xnnvvpfr1"}}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"goPackagePath": {"type": "string"}, "fetch": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}, "rev": {"type": "string"}, "sha256": {"type": "string"}}, "required": ["type", "url", "rev", "sha256"]}}, "required": ["goPa... |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"stationId": {"type": "integer"}, "stationGroupId": {"type": "integer"}, "name": {"type": "string"}, "lineId": {"type": "integer"}, "zipCode": {"type": "string"}, "pref": {"type": "string"}, "city": {"type": "string... | {"stationId" : 1190219, "stationGroupId" : 1190219, "name" : "\u8d64\u9593", "lineId" : 11902, "zipCode" : "811-4183", "pref" : "\u798f\u5ca1\u770c", "city" : "\u5b97\u50cf\u5e02", "town" : "\u571f\u7a74", "longitude" : 130.569477, "latitude" : 33.808237, "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... |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"brief": {"type": "string"}, "long": {"type": "string"}}, "required": ["brief", "long"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"brief" : "sixty", "long" : "<i>Meaning:</i> \"sixty\".<br/><i>Usage:</i> sixty, three score.<br/><i>Source:</i> multiple of \"H8337\";"} | json_instruct | {"type": "object", "properties": {"brief": {"type": "string"}, "long": {"type": "string"}}, "required": ["brief", "long"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"dependencies": {"type": "object", "properties": {"@types/cors": {"type": "string"}}, "required": ["@types/cors"]}}, "required": ["dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"dependencies" : {"@types/cors" : "^2.8.8"}} | json_instruct | {"type": "object", "properties": {"dependencies": {"type": "object", "properties": {"@types/cors": {"type": "string"}}, "required": ["@types/cors"]}}, "required": ["dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "repository": {"type": "string"}, "env": {"type": "object", "properties": {"PRIVATE_KEY": {"type": "object", "properties": {"description": {"type": "string"}}, "req... | {"name" : "NEO Oracle", "description" : "Price oracle for NEO smart contracts", "repository" : "https://github.com/corollari/neo-oracle", "env" : {"PRIVATE_KEY" : {"description" : "Private key used in the oracle"}, "CONTRACT_SCRIPTHASH" : {"description" : "Scripthash of the deployed contract"}, "BNC_TICKER" : {"descrip... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "repository": {"type": "string"}, "env": {"type": "object", "properties": {"PRIVATE_KEY": {"type": "object", "properties": {"description": {"type": "string"}}, "required": ["description"]}, "CONTRACT_SCRIPTHASH": {"type": "... |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"IsRecentlyVerified": {"type": "boolean"}, "ID": {"type": "integer"}, "UUID": {"type": "string"}, "DataProviderID": {"type": "integer"}, "DataProvidersReference": {"type": "string"}, "OperatorID": {"type": "in... | {"IsRecentlyVerified" : false, "ID" : 151460, "UUID" : "3976A49E-5124-44BF-A91B-B3CED1025349", "DataProviderID" : 28, "DataProvidersReference" : "FR*S26*P26198*G", "OperatorID" : 3408, "UsageTypeID" : 5, "AddressInfo" : {"ID" : 151813, "Title" : "MONTELIMAR_Rond-Point Charles Trenet", "AddressLine1" : "Rond-Point Charl... | json_instruct | {"type": "object", "properties": {"IsRecentlyVerified": {"type": "boolean"}, "ID": {"type": "integer"}, "UUID": {"type": "string"}, "DataProviderID": {"type": "integer"}, "DataProvidersReference": {"type": "string"}, "OperatorID": {"type": "integer"}, "UsageTypeID": {"type": "integer"}, "AddressInfo": {"type": "object"... |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {"type": "integer"}}, "productReviews": {"type": "array", "items": {"type": "object", "properties": {"prod... | {"userId" : 20374, "cartId" : "52ef37a9-a3b3-47ee-958e-fb81f7191e51", "preferredProducts" : [969, 253, 4875, 2133, 2013], "productReviews" : [{"productId" : 627, "reviewText" : "i use it barely when i'm in my store.", "reviewDate" : "2017-07-21T22:38:56.490145+03:00"}]} | json_instruct | {"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {"type": "integer"}}, "productReviews": {"type": "array", "items": {"type": "object", "properties": {"productId": {"type": "integer"}, "reviewText": {"type": "string"}, "reviewD... |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"_comment": {"type": "string"}, "name": {"type": "string"}, "full_name": {"type": "string"}, "owner": {"type": "string"}, "private": {"type": "boolean"}, "html_url": {"type": "string"}, "description": {"type": "null"}, "fork": {"... | {"_comment" : "DO NOT EDIT MANUALLY - See ../../../README.md", "name" : "hackthewiki", "full_name" : "stestagg/hackthewiki", "owner" : "stestagg", "private" : false, "html_url" : "https://github.com/stestagg/hackthewiki", "description" : null, "fork" : false, "url" : "https://api.github.com/repos/stestagg/hackthewiki",... | json_instruct | {"type": "object", "properties": {"_comment": {"type": "string"}, "name": {"type": "string"}, "full_name": {"type": "string"}, "owner": {"type": "string"}, "private": {"type": "boolean"}, "html_url": {"type": "string"}, "description": {"type": "null"}, "fork": {"type": "boolean"}, "url": {"type": "string"}, "languages_... |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"title": {"type": "string"}, "credit": {"type": "string"}, "explanation": {"type": "string"}, "date": {"type": "string"}, "hdurl": {"type": "string"}, "service_version": {"type": "string"}, "media_type": {"type": "s... | {"title" : "Open Cluster NGC 290: A Stellar Jewel Box", "credit" : "ESA & NASA; Acknowledgement: E. Olszewski (U. Arizona)", "explanation" : "Jewels don't shine this bright -- only stars do. Like gems in a jewel box, though, the stars of open cluster NGC 290 glitter in a beautiful display of brightness and color. The p... | json_instruct | {"type": "object", "properties": {"title": {"type": "string"}, "credit": {"type": "string"}, "explanation": {"type": "string"}, "date": {"type": "string"}, "hdurl": {"type": "string"}, "service_version": {"type": "string"}, "media_type": {"type": "string"}, "url": {"type": "string"}}, "required": ["title", "credit", "e... |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"id": {"type": "string"}, "expression": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}}, "required": ["id"]}}}, "required": ["id", "expression"], "$schema": "http://json-schema.... | {"id" : "http://data.doremus.org/performance/89fee11a-492f-3dd2-9ec4-69463a698605", "expression" : [{"id" : "http://data.doremus.org/expression/0dadf902-38e6-3a42-acac-07ea2fad7cd0"}, {"id" : "http://data.doremus.org/expression/be50f774-7405-3a3f-811d-3d0e2cea033a"}, {"id" : "http://data.doremus.org/expression/568cde78... | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "expression": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}}, "required": ["id"]}}}, "required": ["id", "expression"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"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": {}... | {"directions" : ["Without separating the dough, roll out both packs of crescent rolls onto a baking sheet, forming them into a single, flat surface. Bake according to the directions on the package. Allow the finished rolls to cool.", "In a bowl, Mix together the cream cheese, mayonnaise, basil and garlic powder. Spread... | 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... |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"title": {"type": "string"}, "other_nominate": {"type": "array", "items": {}}}, "required": ["title", "other_nominate"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"title" : "\u3042\u305a\u307f2 Death or Love", "other_nominate" : []} | json_instruct | {"type": "object", "properties": {"title": {"type": "string"}, "other_nominate": {"type": "array", "items": {}}}, "required": ["title", "other_nominate"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "friendlyName": {"type": "string"}, "description": {"type": "string"}, "author": {"type": "string"}, "helpMarkDown": {"type": "string"}, "category": {"type": "stri... | {"id" : "12c1d9d0-f9f1-428a-9023-2ba3965a5178", "name" : "webhint", "friendlyName" : "webhint", "description" : "webhint", "author" : "webhint", "helpMarkDown" : "Embed webhint HTML results in Azure Pipelines. You need to provide your own installation of the npm package webhint.", "category" : "Utility", "visibility" :... | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "friendlyName": {"type": "string"}, "description": {"type": "string"}, "author": {"type": "string"}, "helpMarkDown": {"type": "string"}, "category": {"type": "string"}, "visibility": {"type": "array", "items": {"type": "string"}}, "... |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "url": {"type": "string"}}, "required": ["name", "description", "url"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "EOS 70D", "description" : "A 20.2 megapixel DSLR.", "url" : "https://en.wikipedia.org/wiki/Canon_EOS_70D"} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "url": {"type": "string"}}, "required": ["name", "description", "url"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"locationData": {"type": "object", "properties": {"relativeBoundingBox": {"type": "object", "properties": {"xmin": {"type": "number"}, "width": {"type": "number"}, "ymin": {"type": "number"}, "height": {"type": "numbe... | {"locationData" : {"relativeBoundingBox" : {"xmin" : 0.06992021, "width" : 0.06559746, "ymin" : 0.2810814, "height" : 0.116617836}, "relativeKeypoints" : [{"y" : 0.3912637, "x" : 0.077453226}, {"y" : 0.28201538, "x" : 0.11092147}, {"y" : 0.30153048, "x" : 0.112994336}, {"y" : 0.33083364, "x" : 0.11683332}, {"y" : 0.363... | 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"]}, "relativeKeyp... |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "array", "items": {"type": "object", "properties": {"github_username": {"type": "string"}, "name": {"type": "string"}, "link_text": {"type": "null"}, "link_url": {"type": "null"}, "avatar_url": {"type": "null"}, "bio": {"type": "string"}}, ... | [{"github_username" : "dusan-rychnovsky", "name" : "Dusan Rychnovsky", "link_text" : null, "link_url" : null, "avatar_url" : null, "bio" : "I have worked with Java for many years, both professionally and as a hobby."}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"github_username": {"type": "string"}, "name": {"type": "string"}, "link_text": {"type": "null"}, "link_url": {"type": "null"}, "avatar_url": {"type": "null"}, "bio": {"type": "string"}}, "required": ["github_username", "name", "link_text", "link_url", "avata... |
Generate a valid JSON object that conforms to the following schema:
{"type": "array", "items": {"type": "object", "properties": {"e_id": {"type": "string"}, "title": {"type": "string"}, "content": {"type": "string"}, "picNo": {"type": "string"}, "picUrl": {"type": "array", "items": {"type": "object", "properties": {"p... | [{"e_id" : "1084", "title" : "\u5fb7\u56fd\u5267\u4f5c\u5bb6\u6208\u7279\u970d\u5c14\u5fb7\u00b7\u57c3\u5f17\u8d56\u59c6\u00b7\u83b1\u8f9b\u51fa\u751f", "content" : "\n\u00a0\u00a0\u00a0\u00a0\u5728292\u5e74\u524d\u7684\u4eca\u5929\uff0c1729\u5e741\u670822\u65e5(\u519c\u53861728\u5e7412\u670823\u65e5)\uff0c\u5fb7\u56fd... | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"e_id": {"type": "string"}, "title": {"type": "string"}, "content": {"type": "string"}, "picNo": {"type": "string"}, "picUrl": {"type": "array", "items": {"type": "object", "properties": {"pic_title": {"type": "string"}, "suffix": {"type": "string"}, "id": {"... |
Generate sample JSON data that conforms to the following 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... | {"title" : "A Locally Adaptive Normal Distribution.", "fields" : ["intrinsic metric", "divergence", "stein s method", "fisher information metric", "statistical manifold"], "abstract" : "The multivariate normal density is a monotonic function of the distance to the mean, and its ellipsoidal shape is due to the underlyin... | 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... |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"file": {"type": "string"}, "textdomain": {"type": "string"}, "translations": {"type": "object", "properties": {"82829c5912f395b029a87c565359835c": {"type": "object", "properties": {"text": {"type": "string"}}, "required": ["te... | {"file" : "wire/modules/Fieldtype/FieldtypeText.module", "textdomain" : "wire--modules--fieldtype--fieldtypetext-module", "translations" : {"82829c5912f395b029a87c565359835c" : {"text" : "Textformatierung"}, "965a2e6ce23bd9e9ca5122fb9862be60" : {"text" : "Wenn Sie w\u00e4hrend der Vorbereitung f\u00fcr die Ausgabe eine... | json_instruct | {"type": "object", "properties": {"file": {"type": "string"}, "textdomain": {"type": "string"}, "translations": {"type": "object", "properties": {"82829c5912f395b029a87c565359835c": {"type": "object", "properties": {"text": {"type": "string"}}, "required": ["text"]}, "965a2e6ce23bd9e9ca5122fb9862be60": {"type": "object... |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"services": {"type": "array", "items": {"type": "object", "properties": {"title": {"type": "string"}, "image": {"type": "string"}, "altText": {"type": "string"}}, "required": ["title", "image", "altText"]}}}, "r... | {"services" : [{"title" : "Affordable Prices", "image" : "https://i.imgur.com/LwCWN2u.png", "altText" : "Prices Logo"}, {"title" : "Lifetime Warranty", "image" : "https://i.imgur.com/UXJrS4j.png", "altText" : "Lifetime Logo"}, {"title" : "Fast Shipping", "image" : "https://i.imgur.com/iZGMFnH.png", "altText" : "Deliver... | json_instruct | {"type": "object", "properties": {"services": {"type": "array", "items": {"type": "object", "properties": {"title": {"type": "string"}, "image": {"type": "string"}, "altText": {"type": "string"}}, "required": ["title", "image", "altText"]}}}, "required": ["services"], "$schema": "http://json-schema.org/draft-07/schema#... |
Construct a JSON document that adheres to this schema specification:
{"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"}}, "requ... | {"h" : [{"d" : [{"e" : ["\ufff9`Daditaditen~ `to~ `amoto~ `a~ `moco'~.\ufffa\ufffb\u8981\u7528\u6c34\u6ce5\u5857\u62b9\u7684\u7246\u3002"], "f" : "\u8981\u5857\u62b9\u7684\uff0c\u8981\u5857\u62b9\u7684\u5730\u65b9\u3002"}]}], "tag" : "[\u758a 2]", "stem" : "ditadit", "t" : "daditaditen"} | 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"]}}, "tag": {"type": "string"}, ... |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "dependencies": {"type": "object", "properties": {"jasmine": {"type": "string"}}, "required": ["jasmine"]}, "devDependencies": {"type": "object", "properties": {"und... | {"name" : "contantslist", "version" : "0.0.0", "dependencies" : {"jasmine" : "~1.3.1"}, "devDependencies" : {"underscore" : "~1.7.0"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "dependencies": {"type": "object", "properties": {"jasmine": {"type": "string"}}, "required": ["jasmine"]}, "devDependencies": {"type": "object", "properties": {"underscore": {"type": "string"}}, "required": ["underscore"]}}, "... |
Generate a valid JSON object that conforms to the following 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" : "FeatureCollection", "features" : [{"geometry" : {"type" : "Polygon", "coordinates" : [[[-71.074353, 42.175243], [-71.06713, 42.17497], [-71.0653, 42.17028], [-71.06184, 42.16954], [-71.05834, 42.17209], [-71.054311, 42.173336], [-71.049323, 42.173619], [-71.04814, 42.17489], [-71.035074, 42.175085], [-71.029... | 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... |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "type": {"type": "string"}, "require": {"type": "object", "properties": {"php": {"type": "string"}, "league/route": {"type": "string"}, "zendframework/zend-diactoro... | {"name" : "ericmann/contact-manager", "description" : "Simple demo contact manager application for php[world] 2018.", "type" : "project", "require" : {"php" : ">=7.2", "league/route" : "^4.2", "zendframework/zend-diactoros" : "^2.0", "zendframework/zend-httphandlerrunner" : "^1.0"}, "license" : "MIT", "authors" : [{"na... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "type": {"type": "string"}, "require": {"type": "object", "properties": {"php": {"type": "string"}, "league/route": {"type": "string"}, "zendframework/zend-diactoros": {"type": "string"}, "zendframework/zend-httphandlerrunn... |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"GitHub Repository": {"type": "string"}, "DockerHub Repository": {"type": "string"}}, "required": ["GitHub Repository", "DockerHub Repository"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"GitHub Repository" : "https://github.com/denncc/opioids-od-genome-analysis", "DockerHub Repository" : "https://hub.docker.com/r/dencc/opioids-od"} | json_instruct | {"type": "object", "properties": {"GitHub Repository": {"type": "string"}, "DockerHub Repository": {"type": "string"}}, "required": ["GitHub Repository", "DockerHub Repository"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"ownerid": {"type": "string"}, "groupid": {"type": "string"}, "grouptoken": {"type": "string"}, "promolimit": {"type": "integer"}, "promotip": {"type": "string"}, "promovalue": {"type": "integer"}}, "required": ["owne... | {"ownerid" : "518285090", "groupid" : "187856624", "grouptoken" : "abbd9e5b34154c38e3a7fcbcd8f9965f790c7859c4b96da3c2ac6e13b0f741ee93ef17ce48a9194dc87c8", "promolimit" : 10, "promotip" : "balance", "promovalue" : 10} | json_instruct | {"type": "object", "properties": {"ownerid": {"type": "string"}, "groupid": {"type": "string"}, "grouptoken": {"type": "string"}, "promolimit": {"type": "integer"}, "promotip": {"type": "string"}, "promovalue": {"type": "integer"}}, "required": ["ownerid", "groupid", "grouptoken", "promolimit", "promotip", "promovalue"... |
Generate a valid JSON object that conforms to the following schema:
{"type": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [[1949, 6], [1954, 5], [1959, 5], [1961, 6], [1964, 5], [1966, 5], [1968, 5], [1971, 5], [1973, 5], [1975, 6], [1976, 8], [1977, 5], [1978, 10], [1979, 8], [1980, 5], [1981, 8], [1982, 9], [1984, 6], [1985, 8], [1986, 11], [1987, 7], [1988, 14], [1989, 7], [1990, 8], [1991, 7], [1992, 12], [1993, 9], [1994, 11], [1995,... | json_instruct | {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$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": "... | {"type" : "FeatureCollection", "features" : [{"geometry" : {"type" : "Polygon", "coordinates" : [[[-82.405498, 38.406644], [-82.40289, 38.409114], [-82.400065, 38.409013], [-82.395525, 38.410214], [-82.388461, 38.414261], [-82.387123, 38.412825], [-82.387804, 38.412142], [-82.382429, 38.410724], [-82.382838, 38.407478]... | 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... |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"n_dim": {"type": "integer"}, "n_trials": {"type": "integer"}, "objective": {"type": "string"}, "white": {"type": "string"}, "black": {"type": "string"}, "traceback": {"type": "array", "items": {"type": "strin... | {"n_dim" : 55, "n_trials" : 130, "objective" : "markowitz_skew_on_cube", "white" : "optuna_random", "black" : "bobyqa_default", "traceback" : ["passing", "passing"], "best_val" : [20.690133410691015, -0.12198327049923341], "best_x" : [[0.8285346606463317, 0.922548738444941, 0.03840365924019751, 0.21234083685311356, 0.4... | json_instruct | {"type": "object", "properties": {"n_dim": {"type": "integer"}, "n_trials": {"type": "integer"}, "objective": {"type": "string"}, "white": {"type": "string"}, "black": {"type": "string"}, "traceback": {"type": "array", "items": {"type": "string"}}, "best_val": {"type": "array", "items": {"type": "number"}}, "best_x": {... |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"id": {"type": "string"}, "text": {"type": "string"}}, "required": ["id", "text"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "d500-64", "text" : "NATIONAL ASSOCIATION OF EDUCATIONAL BROADCASTERS\nJta. 30,\nQaorFa \u00a5\u2022 Overton\nSdsi\u00aeatioLl Television to Badlo Gunter\nBom 1400 - 134 3\u00a9, toalle street\nChicago 3, Illinois\nOFFICE OF EXECUTIVE DIRECTOR\nUNIVERSITY OF ILLINOIS\n119 GREGORY HALL\nurban/^llinois\n1953\nv>\... | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "text": {"type": "string"}}, "required": ["id", "text"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"useDocuments": {"type": "object", "properties": {"cfgName": {"type": "string"}}, "required": ["cfgName"]}, "useProjectsFolders": {"type": "object", "properties": {"cfgName": {"type": "string"}}, "required": ["cfgName"]}, "useWik... | {"useDocuments" : {"cfgName" : "Use documents"}, "useProjectsFolders" : {"cfgName" : "Use project folders"}, "useWiki" : {"cfgName" : "Use wiki documentation"}, "useProjectsParts" : {"cfgName" : "Use project phases"}, "sendDailyDigest" : {"cfgName" : "Send daily digest"}} | json_instruct | {"type": "object", "properties": {"useDocuments": {"type": "object", "properties": {"cfgName": {"type": "string"}}, "required": ["cfgName"]}, "useProjectsFolders": {"type": "object", "properties": {"cfgName": {"type": "string"}}, "required": ["cfgName"]}, "useWiki": {"type": "object", "properties": {"cfgName": {"type":... |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["t... | {"name" : "@react-rangers/stateful", "version" : "1.1.1", "description" : "An easy way to write stateful React components", "main" : "src/index.js", "scripts" : {"test" : "echo \"Error: no test specified\" && exit 1"}, "repository" : {"type" : "git", "url" : "git+https://github.com/ReactRangers/stateful.git"}, "keyword... | 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": "s... |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"editor.suggest.snippetsPreventQuickSuggestions": {"type": "boolean"}, "aiXcoder.showTrayIcon": {"type": "boolean"}, "editor.fontSize": {"type": "integer"}, "editor.cursorWidth": {"type": "integer"}, "gitlens.codeLens.scopes": ... | {"editor.suggest.snippetsPreventQuickSuggestions" : false, "aiXcoder.showTrayIcon" : true, "editor.fontSize" : 18, "editor.cursorWidth" : 3, "gitlens.codeLens.scopes" : ["document"]} | json_instruct | {"type": "object", "properties": {"editor.suggest.snippetsPreventQuickSuggestions": {"type": "boolean"}, "aiXcoder.showTrayIcon": {"type": "boolean"}, "editor.fontSize": {"type": "integer"}, "editor.cursorWidth": {"type": "integer"}, "gitlens.codeLens.scopes": {"type": "array", "items": {"type": "string"}}}, "required"... |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"appName": {"type": "object", "properties": {"message": {"type": "string"}, "description": {"type": "string"}}, "required": ["message", "description"]}, "appDescription": {"type": "object", "properties": {"message": ... | {"appName" : {"message" : "Nix - the simple noise mixer", "description" : "The name of the application"}, "appDescription" : {"message" : "Create your perfect soundscape with a mixture of sounds to help productivity and focus.", "description" : "The description of the application"}} | json_instruct | {"type": "object", "properties": {"appName": {"type": "object", "properties": {"message": {"type": "string"}, "description": {"type": "string"}}, "required": ["message", "description"]}, "appDescription": {"type": "object", "properties": {"message": {"type": "string"}, "description": {"type": "string"}}, "required": ["... |
The schema below describes a JSON structure. Generate a valid example:
{"type": "array", "items": {"type": "object", "properties": {"DeniedAlternatives": {"type": "array", "items": {}}, "Files": {"type": "object", "properties": {"plants/bushes/ground/tendonbush/tendonbush.bush": {"type": "array", "items": {"type": "st... | [{"DeniedAlternatives" : [], "Files" : {"plants/bushes/ground/tendonbush/tendonbush.bush" : ["/floranDescription"], "plants/bushes/ground/tendonlight/tendonlight.bush" : ["/floranDescription"]}, "Texts" : {"Eng" : "Fleshhh.", "Rus" : "\u041f\u043b\u043e\u0442\u044c."}}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"DeniedAlternatives": {"type": "array", "items": {}}, "Files": {"type": "object", "properties": {"plants/bushes/ground/tendonbush/tendonbush.bush": {"type": "array", "items": {"type": "string"}}, "plants/bushes/ground/tendonlight/tendonlight.bush": {"type": "... |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"id": {"type": "string"}, "price": {"type": "object", "properties": {"totalPaymentPrice": {"type": "object", "properties": {"paymentCurrencyAmount": {"type": "integer"}, "paymentCurrencyCode": {"type": "string"}, "pay... | {"id" : "501a59bae886454f90cf37f13b63cbb4", "price" : {"totalPaymentPrice" : {"paymentCurrencyAmount" : 6074900, "paymentCurrencyCode" : "IDR", "paymentCurrencyExchangeRate" : 1, "paymentCurrencySymbol" : "Rp"}, "totalPrice" : {"basePayoutCurrencyCode" : "USD", "basePayoutPrice" : 390, "convenienceFee" : 0, "currencyCo... | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "price": {"type": "object", "properties": {"totalPaymentPrice": {"type": "object", "properties": {"paymentCurrencyAmount": {"type": "integer"}, "paymentCurrencyCode": {"type": "string"}, "paymentCurrencyExchangeRate": {"type": "integer"}, "paymentCurrencySymbo... |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "license": {"type": "string"}, "require": {"type": "object", "properties": {"php": {"type": "string"}, "klein/klein": {"type": "string"}, "voku/html-min": {"type... | {"name" : "codebeater/basic", "description" : "A basic caching/minifying engine made purely with PHP.", "license" : "Apache-2.0", "require" : {"php" : ">=5.3.0", "klein/klein" : "^2.1", "voku/html-min" : "^1.0", "matthiasmullie/minify" : "^1.3"}, "autoload" : {"psr-4" : {"CodeBeater\\Basic\\" : "src/"}}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "license": {"type": "string"}, "require": {"type": "object", "properties": {"php": {"type": "string"}, "klein/klein": {"type": "string"}, "voku/html-min": {"type": "string"}, "matthiasmullie/minify": {"type": "string"}}, "r... |
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": "object", "properties": {"type": {"type": "stri... | {"name" : "VdoCipherKit", "version" : "1.2.0-universal", "summary" : "Play your vdocipher videos on ios", "description" : "Provides a custom view which can be used to play your vdocipher videos. The custom view called\nVdoPlayerView has a loadVideo method which can be used to play using otp and playbackInfo. The\nView ... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "summary": {"type": "string"}, "description": {"type": "string"}, "homepage": {"type": "string"}, "license": {"type": "object", "properties": {"type": {"type": "string"}, "text": {"type": "string"}}, "required": ["type", "text"... |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"word" : "repristination", "definition" : "Restoration to an original state; renewal of purity. [R.] R. Browning."} | json_instruct | {"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$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": {"express": {"type": "string"}, "serialport": {"type": "string"}, "socket.io": {"... | {"name" : "blockly_website", "version" : "0.0.1", "description" : "DIY robot", "dependencies" : {"express" : "^4.15.2", "serialport" : "^5.0.0-beta7", "socket.io" : "^2.0.3"}, "engines" : {"node" : "6.10.2", "npm" : "3.10.10"}, "devDependencies" : {"jsdoc" : "^3.5.4"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "dependencies": {"type": "object", "properties": {"express": {"type": "string"}, "serialport": {"type": "string"}, "socket.io": {"type": "string"}}, "required": ["express", "serialport", "sock... |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"css/amazeui.css": {"type": "string"}, "css/amazeui.flat.css": {"type": "string"}, "css/amazeui.flat.min.css": {"type": "string"}, "css/amazeui.min.css": {"type": "string"}, "js/amazeui.ie8polyfill.js": {"type": "string"}, "js/... | {"css/amazeui.css" : "sha256-JP8C6Or8VGOiIB/2hUwgyPpdVxfvCMgVMgIE8XOVkpI=", "css/amazeui.flat.css" : "sha256-XRMcDzYE0r+kV+uYskH6Q0s8k449rMBmWnr/wZgFOUA=", "css/amazeui.flat.min.css" : "sha256-wdeuYnsg80dtU6vVr4Qi2JHO8xCtzSfP+QiEIW7k7Iw=", "css/amazeui.min.css" : "sha256-QKNFQcDYZ0j2Vh4QhAzg711B2Ps81YW5Lte6SDm8NYM=", "... | json_instruct | {"type": "object", "properties": {"css/amazeui.css": {"type": "string"}, "css/amazeui.flat.css": {"type": "string"}, "css/amazeui.flat.min.css": {"type": "string"}, "css/amazeui.min.css": {"type": "string"}, "js/amazeui.ie8polyfill.js": {"type": "string"}, "js/amazeui.ie8polyfill.min.js": {"type": "string"}, "js/amazeu... |
Generate a valid JSON object that conforms to the following schema:
{"type": "array", "items": {"type": "object", "properties": {"package": {"type": "string"}, "downloads": {"type": "integer"}, "count": {"type": "integer"}}, "required": ["package", "downloads", "count"]}, "$schema": "http://json-schema.org/draft-07/sc... | [{"package" : "bibliospec", "downloads" : 3200, "count" : 3013}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"package": {"type": "string"}, "downloads": {"type": "integer"}, "count": {"type": "integer"}}, "required": ["package", "downloads", "count"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"name": {"type": "string"}, "name_long": {"type": "string"}, "fips": {"type": "string"}, "state_code_int": {"type": "integer"}, "state_code_postal": {"ty... | {"type" : "Feature", "properties" : {"name" : "Knox County", "name_long" : "Knox County, MO", "fips" : "29103", "state_code_int" : 29, "state_code_postal" : "MO", "state_code_iso" : "US-MO", "county_code" : 103, "population" : 3959, "countrylevel_id" : "fips:29103", "census_data" : {"COUNTYNS" : "00758506", "AFFGEOID" ... | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"name": {"type": "string"}, "name_long": {"type": "string"}, "fips": {"type": "string"}, "state_code_int": {"type": "integer"}, "state_code_postal": {"type": "string"}, "state_code_iso": {"type": "string"}, "co... |
Create an example JSON object that satisfies this schema:
{"type": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [[1916, 8], [1919, 7], [1921, 6], [1922, 12], [1923, 8], [1925, 11], [1927, 8], [1930, 6], [1931, 7], [1932, 10], [1933, 9], [1934, 12], [1935, 13], [1936, 7], [1937, 13], [1938, 18], [1939, 12], [1940, 22], [1941, 17], [1942, 24], [1943, 34], [1944, 22], [1945, 26], [1946, 24], [1947, 29], [1948, 28], [1949, 25], [195... | json_instruct | {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$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"}, "author": {"type": "string"}, "license": {"type": "string"}, "private": {"type": "boolean"},... | {"name" : "@code-mentoring/learn", "version" : "0.0.0", "description" : "Learning website for Code Mentoring", "main" : "index.js", "author" : "Tristan Matthias <hello@tristanmatthias.com>", "license" : "MIT", "private" : true, "scripts" : {"postinstall" : "yarn build", "build" : "lerna run build", "start" : "lerna run... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "author": {"type": "string"}, "license": {"type": "string"}, "private": {"type": "boolean"}, "scripts": {"type": "object", "properties": {"postinstall": {"type": "s... |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"derivation": {"type": "string"}, "pron": {"type": "string"}, "outline": {"type": "string"}, "kjv_def": {"type": "string"}, "lemma": {"type": "string"}, "frequency": {"type": "string"}, "strongs_def": {"type": "string... | {"derivation" : "plural of an otherwise unknown name;", "pron" : "see-neem'", "outline" : "", "kjv_def" : "Sinim.", "lemma" : "\u05e1\u05b4\u05d9\u05e0\u05b4\u05d9\u05dd", "frequency" : "", "strongs_def" : "Sinim, a distant Oriental region", "xlit" : "\u00c7\u00eeyn\u00eeym"} | json_instruct | {"type": "object", "properties": {"derivation": {"type": "string"}, "pron": {"type": "string"}, "outline": {"type": "string"}, "kjv_def": {"type": "string"}, "lemma": {"type": "string"}, "frequency": {"type": "string"}, "strongs_def": {"type": "string"}, "xlit": {"type": "string"}}, "required": ["derivation", "pron", "... |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"type": {"type": "string"}, "features": {"type": "array", "items": {"type": "object", "properties": {"geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "... | {"type" : "FeatureCollection", "features" : [{"geometry" : {"type" : "Polygon", "coordinates" : [[[-77.854989, 40.782412], [-77.847682, 40.789488], [-77.841981, 40.798221], [-77.840151, 40.799009], [-77.839779, 40.798256], [-77.83773, 40.799487], [-77.83605, 40.799101], [-77.834459, 40.796181], [-77.833718, 40.79625], ... | 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... |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"n_dim": {"type": "integer"}, "n_trials": {"type": "integer"}, "objective": {"type": "string"}, "white": {"type": "string"}, "black": {"type": "string"}, "traceback": {"type": "array", "items": {"type": "string"}}, "best_val": {"... | {"n_dim" : 2, "n_trials" : 340, "objective" : "styblinski_tang_on_cube", "white" : "pymoo_pattern", "black" : "bayesopt_ei", "traceback" : ["passing", "Black took 342 function evals when instructed to use 342"], "best_val" : [2.5665766859245718, 2.5665772267478535], "best_x" : [[0.21800769310757528, 0.21800770027795563... | json_instruct | {"type": "object", "properties": {"n_dim": {"type": "integer"}, "n_trials": {"type": "integer"}, "objective": {"type": "string"}, "white": {"type": "string"}, "black": {"type": "string"}, "traceback": {"type": "array", "items": {"type": "string"}}, "best_val": {"type": "array", "items": {"type": "number"}}, "best_x": {... |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "deprecated": {"type": "boolean"}, "main": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "s... | {"name" : "ag-grid-autocomplete-editor", "version" : "1.2.6", "description" : "Quick implementation of autocompletion into ag-Grid cell using autocompleter package.", "deprecated" : false, "main" : "ag-grid-autocomplete-editor.js", "repository" : {"type" : "git", "url" : "git+https://github.com/avallete/ag-grid-autocom... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "deprecated": {"type": "boolean"}, "main": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url... |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"n_dim": {"type": "integer"}, "n_trials": {"type": "integer"}, "objective": {"type": "string"}, "white": {"type": "string"}, "black": {"type": "string"}, "traceback": {"type": "array", "items": {"type": "string"}}, "... | {"n_dim" : 55, "n_trials" : 550, "objective" : "markowitz_analytic_on_cube", "white" : "pymoo_pattern", "black" : "platypus_spea2", "traceback" : ["passing", "Black took 600 function evals when instructed to use 587"], "best_val" : [0.0779946331012439, 14.808303816997592], "best_x" : [[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0... | json_instruct | {"type": "object", "properties": {"n_dim": {"type": "integer"}, "n_trials": {"type": "integer"}, "objective": {"type": "string"}, "white": {"type": "string"}, "black": {"type": "string"}, "traceback": {"type": "array", "items": {"type": "string"}}, "best_val": {"type": "array", "items": {"type": "number"}}, "best_x": {... |
Construct a JSON document that adheres to this schema specification:
{"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", "Web Development"], "desc" : " ", "details" : {"authors" : "Lisa Sabin-Wilson", "format" : "pdf", "isbn-10" : "1119325927", "isbn-13" : "978-1119325925", "pages" : "432 pages", "publication date" : "August 7, 2017", "publisher" : "For Dummies", "size" : "21.00Mb"}, "img" : "http://23.95.221.1... | 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": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [[1982, 5], [1987, 5], [1990, 6], [1992, 6], [1993, 8]] | json_instruct | {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"inventors": {"type": "array", "items": {"type": "object", "properties": {"first": {"type": "string"}, "last": {"type": "string"}, "year": {"type": "integer"}}, "required": ["first", "last", "year"]}}}, "required": ["invento... | {"inventors" : [{"first" : "Albert", "last" : "Einstein", "year" : 1879}, {"first" : "Isaac", "last" : "Newton", "year" : 1643}, {"first" : "Galileo", "last" : "Galilei", "year" : 1564}, {"first" : "Marie", "last" : "Curie", "year" : 1867}, {"first" : "Johannes", "last" : "Kepler", "year" : 1571}, {"first" : "Nicolaus"... | json_instruct | {"type": "object", "properties": {"inventors": {"type": "array", "items": {"type": "object", "properties": {"first": {"type": "string"}, "last": {"type": "string"}, "year": {"type": "integer"}}, "required": ["first", "last", "year"]}}}, "required": ["inventors"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"type": {"type": "string"}, "pattern": {"type": "array", "items": {"type": "string"}}, "key": {"type": "object", "properties": {"W": {"type": "object", "properties": {"tag": {"type": "string"}}, "required": ["tag"]}, "L": {"type"... | {"type" : "minecraft:crafting_shaped", "pattern" : ["LWL", "WGW", "LWL"], "key" : {"W" : {"tag" : "minecraft:planks"}, "L" : {"tag" : "minecraft:wooden_stairs"}, "G" : {"item" : "mechanicaltech:wood_gear"}}, "result" : {"item" : "mechanicaltech:waterwheel"}} | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "pattern": {"type": "array", "items": {"type": "string"}}, "key": {"type": "object", "properties": {"W": {"type": "object", "properties": {"tag": {"type": "string"}}, "required": ["tag"]}, "L": {"type": "object", "properties": {"tag": {"type": "string"}}, "r... |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"name": {"type": "string"}, "tagline": {"type": "string"}, "body": {"type": "string"}, "note": {"type": "string"}}, "required": ["name", "tagline", "body", "note"], "$schema": "http://json-schema.org/draft-07/sc... | {"name" : "isheng5.GitHub.io", "tagline" : "\u7b80\u5355\u76f4\u63a5\u53ef\u7528\u535a\u5ba2\u6a21\u677f", "body" : "## \u8bf4\u660e\r\n\r\n \u53ef\u7528\r\n\r\n\u6b64\u535a\u5ba2 fork \u81ea [Azeril](http://azeril.me/)\uff0c\u611f\u8c22\u3002\r\n\r\n## \u542c\u00b7\u8bf4\r\n\r\n\u6211\u662f\u66fe\u6770\u5b89\r\n\r\n\u... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "tagline": {"type": "string"}, "body": {"type": "string"}, "note": {"type": "string"}}, "required": ["name", "tagline", "body", "note"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "null"}}, "required": ["contract", "tool", "s... | {"contract" : "0x1ec0c5c2ac5edf73be6e7f53cf9a3b51ca1853fb", "tool" : "securify", "start" : 1563546150.3351376, "end" : 1563546153.623742, "duration" : 3.288604497909546, "analysis" : null} | json_instruct | {"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "null"}}, "required": ["contract", "tool", "start", "end", "duration", "analysis"], "$schema": "http://json-schema.or... |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"directions": {"type": "array", "items": {"type": "string"}}, "ingredients": {"type": "array", "items": {"type": "string"}}, "language": {"type": "string"}, "source": {"type": "string"}, "tags": {"type": "array", "ite... | {"directions" : ["Place chicken breasts in a large pot with water, wine, salt, curry powder, onion, and celery. Cover, and bring to a boil. Reduce heat to low, and simmer for 1 hour. Remove from heat, strain (reserving broth), and refrigerate to cool. Remove chicken meat from bone, and cut into bite size pieces.", "Pre... | 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... |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"age": {"type": "integer"}, "innerObject": {"type": "object", "properties": {"val": {"type": "string"}}, "required": ["val"]}, "name": {"type": "string"}, "objects": {"type": "array", "items": {"type": "object", "p... | {"age" : 1, "innerObject" : {"val" : "z"}, "name" : "foo", "objects" : [{"val" : "x"}, {"val" : "y"}], "status" : true, "stringArray" : ["a", "b", "c", "d"]} | json_instruct | {"type": "object", "properties": {"age": {"type": "integer"}, "innerObject": {"type": "object", "properties": {"val": {"type": "string"}}, "required": ["val"]}, "name": {"type": "string"}, "objects": {"type": "array", "items": {"type": "object", "properties": {"val": {"type": "string"}}, "required": ["val"]}}, "status"... |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"quad": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}}, "required": ["quad"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"quad" : [[139, 678], [939, 689], [967, 1179], [87, 1168]]} | json_instruct | {"type": "object", "properties": {"quad": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}}, "required": ["quad"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"manifestDescription": {"type": "object", "properties": {"message": {"type": "string"}}, "required": ["message"]}}, "required": ["manifestDescription"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"manifestDescription" : {"message" : ""}} | json_instruct | {"type": "object", "properties": {"manifestDescription": {"type": "object", "properties": {"message": {"type": "string"}}, "required": ["message"]}}, "required": ["manifestDescription"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"Infinite": {"type": "array", "items": {"type": "string"}}}, "required": ["Infinite"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"Infinite" : ["SciFiWritersHaveNoSenseOfScale", "MoreThanInfinite", "FridgeLogic", "NumberTropes", "Pun", "MouthfulOfPi", "TabletopGame", "DidYouJustPunchOutCthulhu", "TheMovie", "ATwinkleInTheSky", "RuleOfFunny", "DisneyAcidSequence", "Pun", "CosmicKeystone", "TheBank", "ComputerEqualsMonitor", "DrivenToSuicide", "Ca... | json_instruct | {"type": "object", "properties": {"Infinite": {"type": "array", "items": {"type": "string"}}}, "required": ["Infinite"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"author": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "name"]}, "date": {"type": "object", "properties": {"day": {"type": "integer"}, "full": {"t... | {"author" : {"id" : "t2_3myvs", "name" : "antieverything"}, "date" : {"day" : 1632528000, "full" : 1632598541, "month" : 1630454400, "week" : 1632009600}, "id" : "t3_pvdwk8", "picture" : {"filesize" : 113877, "fullUrl" : "https://external-preview.redd.it/7Q78S-1LCV5rcmseehqYyPVrJC88RDiUExfhVnoIRWo.jpg?auto=webp&s=a05ec... | json_instruct | {"type": "object", "properties": {"author": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "name"]}, "date": {"type": "object", "properties": {"day": {"type": "integer"}, "full": {"type": "integer"}, "month": {"type": "integer"}, "week": {"type": "integer"}},... |
Generate a valid JSON object that conforms to the following schema:
{"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "url": {"type": "string"}, "repository": {"type": "string"}, "image": {"type": "string"}}, "required": ["name", "description", ... | [{"name" : "SoulExtract.com", "description" : "Alternative Rock injected with electronic and cinematic elements.", "url" : "https://soulextract.com", "repository" : "https://github.com/soulextract/soulextract.com", "image" : "images/soulextract.com.jpg"}, {"name" : "RomelPerez.dev", "description" : "Romel P\u00e9rez's ... | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "url": {"type": "string"}, "repository": {"type": "string"}, "image": {"type": "string"}}, "required": ["name", "description", "url", "repository", "image"]}, "$schema": "http://json-schema.org/dr... |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"lang": {"type": "string"}, "name": {"type": "string"}, "description": {"type": "string"}, "version": {"type": "integer"}, "targetEntityType": {"type": "string"}, "sourceContext": {"type": "string"}, "sourceURI": {"type": "s... | {"lang" : "zxx", "name" : "PersonFlow-PersonMapping", "description" : "", "version" : 1, "targetEntityType" : "http://example.org/Person-0.0.1/Person", "sourceContext" : "/", "sourceURI" : "/q/data-hub/....json", "properties" : {"firstName" : {"sourcedFrom" : "firstName"}, "lastName" : {"sourcedFrom" : "lastName"}}} | json_instruct | {"type": "object", "properties": {"lang": {"type": "string"}, "name": {"type": "string"}, "description": {"type": "string"}, "version": {"type": "integer"}, "targetEntityType": {"type": "string"}, "sourceContext": {"type": "string"}, "sourceURI": {"type": "string"}, "properties": {"type": "object", "properties": {"firs... |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"stationId": {"type": "integer"}, "stationGroupId": {"type": "integer"}, "name": {"type": "string"}, "lineId": {"type": "integer"}, "zipCode": {"type": "string"}, "pref": {"type": "string"}, "city": {"type": "st... | {"stationId" : 9951120, "stationGroupId" : 9951120, "name" : "\u702c\u6238\u53e3", "lineId" : 99511, "zipCode" : "489-0877", "pref" : "\u611b\u77e5\u770c", "city" : "\u702c\u6238\u5e02", "town" : "\u6771\u8d64\u91cd\u753a", "longitude" : 137.081866, "latitude" : 35.206679, "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": "array", "items": {"type": "object", "properties": {"postal_code": {"type": "string"}, "place_name": {"type": "string"}, "place_type": {"type": "string"}, "county": {"type": "string"}, "state": {"type": "string"}, "city": {"type": "string"... | [{"postal_code" : "42734", "place_name" : "Zenth\u00e9", "place_type" : "Colonia", "county" : "Progreso de Obreg\u00f3n", "state" : "Hidalgo", "city" : ""}, {"postal_code" : "42734", "place_name" : "El Bondho", "place_type" : "Colonia", "county" : "Progreso de Obreg\u00f3n", "state" : "Hidalgo", "city" : ""}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"postal_code": {"type": "string"}, "place_name": {"type": "string"}, "place_type": {"type": "string"}, "county": {"type": "string"}, "state": {"type": "string"}, "city": {"type": "string"}}, "required": ["postal_code", "place_name", "place_type", "county", "s... |
Following the schema specification below, generate a valid JSON instance:
{"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... | {"nom" : "Balaguier-sur-Rance", "circ" : "3\u00e8me circonscription", "dpt" : "Aveyron", "inscrits" : 79, "abs" : 33, "votants" : 46, "blancs" : 4, "nuls" : 2, "exp" : 40, "res" : [{"nuance" : "REM", "nom" : "M. Jean-Louis AUSTRUY", "voix" : 22}, {"nuance" : "LR", "nom" : "M. Arnaud VIALA", "voix" : 18}]} | 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"... |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"web": {"type": "array", "items": {"type": "object", "properties": {"value": {"type": "array", "items": {"type": "string"}}, "key": {"type": "string"}}, "required": ["value", "key"]}}, "query": {"type": "string"}, "translation": ... | {"web" : [{"value" : ["\u4fe1\u606f\u5197\u4f59", "\u5197\u4f59", "\u88c1\u5458"], "key" : "Redundancy"}, {"value" : ["\u88c1\u5458\u652f\u51fa", "\u88c1\u5458\u8d54\u507f", "\u89e3\u96c7\u6d25\u8d34"], "key" : "redundancy payment"}, {"value" : ["\u9063\u6563\u8d85\u989d\u5458\u5de5\u8ba1\u5212"], "key" : "redundancy p... | json_instruct | {"type": "object", "properties": {"web": {"type": "array", "items": {"type": "object", "properties": {"value": {"type": "array", "items": {"type": "string"}}, "key": {"type": "string"}}, "required": ["value", "key"]}}, "query": {"type": "string"}, "translation": {"type": "array", "items": {"type": "string"}}, "errorCod... |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"term": {"type": "string"}, "year": {"type": "integer"}, "repopath": {"type": "string"}}, "required": ["term", "year", "repopath"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"term" : "Spring", "year" : 2022, "repopath" : "/home/matt/scagnt.github.io/seminar/"} | json_instruct | {"type": "object", "properties": {"term": {"type": "string"}, "year": {"type": "integer"}, "repopath": {"type": "string"}}, "required": ["term", "year", "repopath"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "array", "items": {"type": "object", "properties": {"title": {"type": "string"}, "text": {"type": "string"}, "id": {"type": "integer"}}, "required": ["title", "text", "id"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"title" : "Test", "text" : "Testing 124", "id" : 1}, {"title" : "Testing `", "text" : "Test note", "id" : 2}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"title": {"type": "string"}, "text": {"type": "string"}, "id": {"type": "integer"}}, "required": ["title", "text", "id"]}, "$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"}, "keywords": {"type": "array", "items": {"type": "string"}}, "license": {"type": "string"}, "main": {"type": "string... | {"name" : "babel-plugin-vd-library", "version" : "1.0.0", "description" : "Modular VD library builds without the hassle.", "keywords" : ["babel-plugin", "vd"], "license" : "MIT", "main" : "lib/index.js", "author" : "Tom Xu <ycxzhkx@gmail.com>", "scripts" : {"build" : "babel src --out-dir lib || true", "prepublish" : "n... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "license": {"type": "string"}, "main": {"type": "string"}, "author": {"type": "string"}, "scripts": {"type": "object", "properties":... |
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": "string"}, "citation": {"type": "string"}, "departments": {"type": "array", "items": {"type": "string"}}, "au... | {"title" : "Enhancing Recurrent Neural Networks with Positional Attention for Question Answering.", "fields" : ["sentence", "question answering", "recurrent neural network", "artificial neural network", "interrogative word"], "abstract" : "Attention based recurrent neural networks (RNN) have shown a great success for q... | 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... |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"schema_version": {"type": "string"}, "id": {"type": "string"}, "modified": {"type": "string"}, "published": {"type": "string"}, "aliases": {"type": "array", "items": {"type": "string"}}, "details": {"type": "string... | {"schema_version" : "1.2.0", "id" : "GHSA-24pr-9rc2-6xv5", "modified" : "2022-05-04T00:00:44Z", "published" : "2022-04-21T00:00:27Z", "aliases" : ["CVE-2021-3100"], "details" : "The Apache Log4j hotpatch package before log4j-cve-2021-44228-hotpatch-1.1-12 didn\u2019t mimic the permissions of the JVM being patched, allo... | json_instruct | {"type": "object", "properties": {"schema_version": {"type": "string"}, "id": {"type": "string"}, "modified": {"type": "string"}, "published": {"type": "string"}, "aliases": {"type": "array", "items": {"type": "string"}}, "details": {"type": "string"}, "severity": {"type": "array", "items": {"type": "object", "properti... |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"id": {"type": "string"}, "district_id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "district_id", "name"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "9108062004", "district_id" : "9108062", "name" : "KAPADIRI"} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "district_id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "district_id", "name"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "array", "items": {"type": "object", "properties": {"namaKab": {"type": "string"}, "originalFilename": {"type": "string"}, "namaPartai": {"type": "string"}, "id": {"type": "integer"}, "noUrut": {"type": "integer"}, "nama": {"type": "string"}, "stringJe... | [{"namaKab" : "BANGKA TENGAH", "originalFilename" : "FOTO.jpg", "namaPartai" : "PARTAI DEMOKRASI INDONESIA PERJUANGAN", "id" : 120804, "noUrut" : 1, "nama" : "Ir. HENDRIYANSEN", "stringJenisKelamin" : "Laki-Laki"}, {"namaKab" : "KOTA PANGKALPINANG", "originalFilename" : "FOTO.jpeg", "namaPartai" : "PARTAI DEMOKRASI IND... | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"namaKab": {"type": "string"}, "originalFilename": {"type": "string"}, "namaPartai": {"type": "string"}, "id": {"type": "integer"}, "noUrut": {"type": "integer"}, "nama": {"type": "string"}, "stringJenisKelamin": {"type": "string"}}, "required": ["namaKab", "... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.