input stringlengths 159 2.05k | output stringlengths 5 10.3k | task stringclasses 1
value | schema stringlengths 100 1.99k |
|---|---|---|---|
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"replace": {"type": "boolean"}, "values": {"type": "array", "items": {"type": "string"}}}, "required": ["replace", "values"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"replace" : false, "values" : ["happyholidays:eggnog", "happyholidays:christmas_ham", "happyholidays:christmas_pudding", "happyholidays:milk_and_cookies", "happyholidays:log_cake", "happyholidays:gingerbread_cookie", "happyholidays:candy_cane", "happyholidays:festive_candy_cane"]} | json_instruct | {"type": "object", "properties": {"replace": {"type": "boolean"}, "values": {"type": "array", "items": {"type": "string"}}}, "required": ["replace", "values"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"url": {"type": "string"}, "title": {"type": "string"}, "text": {"type": "array", "items": {"type": "string"}}, "published_datetime": {"type": "string"}}, "required": ["url", "title", "text", "published_datetime"],... | {"url" : "https://www.nasdaq.com/article/coupa-software-revenue-beats-on-rise-in-subscriptions-20190903-01146", "title" : "Coupa Software revenue beats on rise in subscriptions - Nasdaq.com", "text" : ["Sept 3 (Reuters) - Payment management software firm Coupa Software Inc beat Wall Street estimates for quarterly reve... | json_instruct | {"type": "object", "properties": {"url": {"type": "string"}, "title": {"type": "string"}, "text": {"type": "array", "items": {"type": "string"}}, "published_datetime": {"type": "string"}}, "required": ["url", "title", "text", "published_datetime"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"id": {"type": "string"}}, "required": ["id"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "f81eabe348ad1c780bb80a4ecb3547942a9308af"} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}}, "required": ["id"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "private": {"type": "boolean"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}}, "required": ["start"]}, "dependencies": {"type": "object", "p... | {"name" : "RnWeather", "version" : "0.0.1", "private" : true, "scripts" : {"start" : "react-native start"}, "dependencies" : {"es6-promise" : "^3.1.2", "isomorphic-fetch" : "^2.2.1", "query-string" : "^4.1.0", "react" : "^0.14.8", "react-native" : "^0.23.0", "react-native-material-design" : "^0.3.3", "react-native-pick... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "private": {"type": "boolean"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}}, "required": ["start"]}, "dependencies": {"type": "object", "properties": {"es6-promise": {"type": "string"}, "isomorphic... |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"meta": {"type": "object", "properties": {"code": {"type": "integer"}}, "required": ["code"]}, "data": {"type": "array", "items": {"type": "object", "properties": {"username": {"type": "string"}, "profile_picture":... | {"meta" : {"code" : 200}, "data" : [{"username" : "chris", "profile_picture" : "http://distillery.s3.amazonaws.com/profiles/profile_19_75sq_1286500536.jpg", "id" : "19"}, {"username" : "kevin", "profile_picture" : "http://distillery.s3.amazonaws.com/profiles/profile_3_75sq_1286592842.jpg", "id" : "3"}, {"username" : "m... | json_instruct | {"type": "object", "properties": {"meta": {"type": "object", "properties": {"code": {"type": "integer"}}, "required": ["code"]}, "data": {"type": "array", "items": {"type": "object", "properties": {"username": {"type": "string"}, "profile_picture": {"type": "string"}, "id": {"type": "string"}}, "required": ["username",... |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"type": {"type": "string"}, "author": {"type": "object", "properties": {"type": {"type": "string"}, "name": {"type": "string"}, "url": {"type": "string"}, "photo": {"type": "string"}}, "required": ["type", "name... | {"type" : "entry", "author" : {"type" : "card", "name" : "Stephen Paul Weber", "url" : "http://singpolyma.net/", "photo" : "https://www.gravatar.com/avatar/3ab4d3a66e470ce10eb7ec812fab3c46?s=256&d=404"}, "url" : "http://singpolyma.net/", "published" : "2009-05-12T21:49:15-07:00", "content" : {"html" : "Maybe I'm just y... | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "author": {"type": "object", "properties": {"type": {"type": "string"}, "name": {"type": "string"}, "url": {"type": "string"}, "photo": {"type": "string"}}, "required": ["type", "name", "url", "photo"]}, "url": {"type": "string"}, "published": {"type": "stri... |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"directions": {"type": "array", "items": {"type": "string"}}, "ingredients": {"type": "array", "items": {"type": "string"}}, "language": {"type": "string"}, "source": {"type": "string"}, "tags": {"type": "array", "it... | {"directions" : ["Preheat oven to 350 degrees F (175 degrees C). Spray a 9x13-inch baking pan with cooking spray.", "Combine brownie mix, oil, eggs, and water in a large bowl. Stir with a wooden spoon until smooth, about 50 strokes. Pour into prepared baking pan and spread evenly.", "Bake in the preheated oven until to... | 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... |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "license": {"type": "string"}, "homepage": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string... | {"name" : "arrford", "version" : "2.0.1", "description" : "Array to human readable list converter", "license" : "MIT", "homepage" : "https://github.com/dawsonbotsford/arrford#readme", "repository" : {"type" : "git", "url" : "git+https://github.com/dawsonbotsford/arrford.git"}, "author" : {"name" : "Dawson Botsford", "e... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "license": {"type": "string"}, "homepage": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url... |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"s1": {"type": "object", "properties": {"message": {"type": "string"}}, "required": ["message"]}, "s2": {"type": "object", "properties": {"message": {"type": "string"}}, "required": ["message"]}, "s3": {"type": "objec... | {"s1" : {"message" : "\u00bfPor qu\u00e9 son necesarios los acuerdos?"}, "s2" : {"message" : "Tenemos que a\u00f1adir filtros para permitir la publicidad no intrusiva, y esto no puede hacerse autom\u00e1ticamente. El proceso puede llegar a ser bastante complicado -la misma red de anuncios puede ofrecer anuncios no intr... | json_instruct | {"type": "object", "properties": {"s1": {"type": "object", "properties": {"message": {"type": "string"}}, "required": ["message"]}, "s2": {"type": "object", "properties": {"message": {"type": "string"}}, "required": ["message"]}, "s3": {"type": "object", "properties": {"message": {"type": "string"}}, "required": ["mess... |
Create a JSON structure that matches this schema definition:
{"type": "array", "items": {"type": "array", "items": {"type": "string"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [["654223400200", "\u4ea4\u52d2\u8428\u4f9d\u6751\u59d4\u4f1a", "220", "0"], ["654223400201", "\u5580\u62c9\u4e54\u514b\u6751\u59d4\u4f1a", "220", "0"], ["654223400202", "\u4e09\u4e2a\u6cc9\u5b50\u6751\u59d4\u4f1a", "123", "0"], ["654223400203", "\u514b\u5b5c\u52d2\u4e54\u514b\u6751\u59d4\u4f1a", "220", "0"], ["6542234... | json_instruct | {"type": "array", "items": {"type": "array", "items": {"type": "string"}}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "type": {"type": "string"}, "main": {"type": "string"}, "types": {"type": "string"}, "scripts": {"type": "object", "properties": {"bu... | {"name" : "@writetome51/to-str", "version" : "0.0.1", "description" : "Function returns arg as string. Fastest way to convert to string", "type" : "module", "main" : "index.js", "types" : "index.d.ts", "scripts" : {"build" : "tsc"}, "repository" : {"type" : "git", "url" : "git+https://github.com/writetome51/to-str.git"... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "type": {"type": "string"}, "main": {"type": "string"}, "types": {"type": "string"}, "scripts": {"type": "object", "properties": {"build": {"type": "string"}}, "required": ["build"]}, "reposit... |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"index": {"type": "integer"}, "hash": {"type": "integer"}, "artDyeHash": {"type": "integer"}, "redacted": {"type": "boolean"}, "dyeManifestHash": {"type": "integer"}, "blacklisted": {"type": "boolean"}}, "requ... | {"index" : 2947, "hash" : 3623250485, "artDyeHash" : 3623250485, "redacted" : false, "dyeManifestHash" : 887331893, "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... |
The schema below describes a JSON structure. Generate a valid example:
{"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "value": {"type": "string"}, "sortOrder": {"type": "integer"}}, "required": ["id", "value", "sortOrder"]}, "$schema": "http://json-schema.org/draft-07/schema#"}... | [{"id" : 1, "value" : "Common SOPs in place and accreditation performed", "sortOrder" : 1}, {"id" : 2, "value" : "Common SOPs in place, self assessment in place", "sortOrder" : 2}, {"id" : 3, "value" : "Common SOPs in place, no assessment of accreditation", "sortOrder" : 3}, {"id" : 4, "value" : "Agreed standards in pl... | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "value": {"type": "string"}, "sortOrder": {"type": "integer"}}, "required": ["id", "value", "sortOrder"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"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": "i... | {"id" : 404329949, "type" : "Feature", "properties" : {"src:alt_label" : "quattroshapes_pg", "src:geom" : "quattroshapes_pg", "wof:geomhash" : "f659d24c1eb89fb9adcc0bed1af7b3cb", "wof:id" : 404329949, "wof:repo" : "whosonfirst-data-admin-es"}, "bbox" : [-4.90814, 40.70682, -4.90814, 40.70682], "geometry" : {"coordinate... | 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": "object", "properties": {"copyright_text": {"type": "string"}, "description": {"type": "string"}, "duration": {"type": "integer"}, "language": {"type": "string"}, "recorded": {"type": "string"}, "related_urls": {"type": "array", "items": {"type": "object... | {"copyright_text" : "Creative Commons Attribution license (reuse allowed)", "description" : "Data comes in many shapes and sizes. In this session, we\u2019ll look into\nthe process of converting audio files into valuable data.\n\nWe\u2019ll go over the different types of audio formats and how format and\ntype of audio ... | json_instruct | {"type": "object", "properties": {"copyright_text": {"type": "string"}, "description": {"type": "string"}, "duration": {"type": "integer"}, "language": {"type": "string"}, "recorded": {"type": "string"}, "related_urls": {"type": "array", "items": {"type": "object", "properties": {"label": {"type": "string"}, "url": {"t... |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"title": {"type": "string"}, "description": {"type": "string"}, "image": {"type": "string"}}, "required": ["title", "description", "image"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"title" : "Git Basics", "description" : "Learn the basic of GIT version control, just the things you need daily in work.", "image" : "https://images.unsplash.com/photo-1481487196290-c152efe083f5?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=800&q=100"} | json_instruct | {"type": "object", "properties": {"title": {"type": "string"}, "description": {"type": "string"}, "image": {"type": "string"}}, "required": ["title", "description", "image"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"jquery.keyframes.js": {"type": "string"}, "jquery.keyframes.min.js": {"type": "string"}}, "required": ["jquery.keyframes.js", "jquery.keyframes.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"jquery.keyframes.js" : "sha256-wK8tc9LvYLUk04oSrTi4W8nMb9IRi51jWbBApudba8w=", "jquery.keyframes.min.js" : "sha256-vGzkrhQwPxYQfKVW4Ss96tI6tB4T0a2fLjBBlLUPRgo="} | json_instruct | {"type": "object", "properties": {"jquery.keyframes.js": {"type": "string"}, "jquery.keyframes.min.js": {"type": "string"}}, "required": ["jquery.keyframes.js", "jquery.keyframes.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"type": {"type": "string"}, "id": {"type": "string"}, "properties": {"type": "object", "properties": {"amenity": {"type": "string"}, "check_date": {"type": "string"}, "currency:EUR": {"type": "string"}, "description": {"type": ... | {"type" : "Feature", "id" : "node/5595864098", "properties" : {"amenity" : "vending_machine", "check_date" : "2021-02-02", "currency:EUR" : "only", "description" : "Frischmilchautomat, im Edeka Z\u00f6llick", "indoor" : "yes", "opening_hours" : "Mo-Sa 08:00-21:00", "operator" : "Van der Ham & Co. KG", "payment:coins" :... | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "id": {"type": "string"}, "properties": {"type": "object", "properties": {"amenity": {"type": "string"}, "check_date": {"type": "string"}, "currency:EUR": {"type": "string"}, "description": {"type": "string"}, "indoor": {"type": "string"}, "opening_hours": {... |
Following the schema specification below, generate a valid JSON instance:
{"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "link": {"type": "string"}, "image": {"type": "string"}}, "required": ["name", "link", "image"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"name" : "Github", "link" : "https://github.com/maiam6242", "image" : "images/social/github.svg"}, {"name" : "LinkedIn", "link" : "https://www.linkedin.com/in/maia-materman/", "image" : "images/social/twitter.svg"}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "link": {"type": "string"}, "image": {"type": "string"}}, "required": ["name", "link", "image"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"version": {"type": "number"}, "people": {"type": "array", "items": {"type": "object", "properties": {"face_keypoints": {"type": "array", "items": {}}, "pose_keypoints": {"type": "array", "items": {"type": "nu... | {"version" : 1.0, "people" : [{"face_keypoints" : [], "pose_keypoints" : [101.291338582677, 44.9163636363636, 0.910652697086334, 103.055118110236, 86.3418181818182, 0.754922658205032, 65.7637795275591, 88.2036363636364, 0.703169584274292, 53.4173228346457, 142.429090909091, 0.619386993348598, 37.2913385826772, 211.0836... | 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... |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"file_num": {"type": "integer"}, "data": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "content": {"type": "string"}}, "required": ["id", "content"]}}}, "required": ["fi... | {"file_num" : 322, "data" : [{"id" : 323, "content" : "\u81ea\u53e4\u60c5\u6df1\u7559\u4e0d\u4f4f\uff0c\u603b\u662f\u5957\u8def\u5f97\u4eba\u5fc3\u3002"}]} | json_instruct | {"type": "object", "properties": {"file_num": {"type": "integer"}, "data": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "content": {"type": "string"}}, "required": ["id", "content"]}}}, "required": ["file_num", "data"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"aaaaa": {"type": "integer"}}, "required": ["aaaaa"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"aaaaa" : 42} | json_instruct | {"type": "object", "properties": {"aaaaa": {"type": "integer"}}, "required": ["aaaaa"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"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": {}}, ... | {"version" : 1.2, "people" : [{"pose_keypoints_2d" : [126.731, 93.3444, 1, 134.904, 114.644, 1, 151.477, 118.319, 1, 151.801, 150.811, 1, 299.105, 217.313, 0, 120.142, 115.822, 1, 102.057, 115.199, 1, 104.262, 94.3579, 1, 137.134, 177.659, 1, 130.298, 232.878, 1, 133.467, 279.563, 1, 119.703, 177.909, 1, 119.491, 234.7... | 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... |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"s1": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}, "s2": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}, "s3": {"type": "array", "items": {"type": "ar... | {"s1" : [[0.009590681003543263, 0.005126389102382389, 0.2725158177734297], [0.014965401105165668, 0.024370186901093827, 0.1109220428034634], [0.02417903981159382, 0.0878954830321973, 0.16359740106785048], [0.03464127614084837, 0.06801224355420665, 0.3084417608921178]], "s2" : [[0.006052337103539172, 0.02150968110884316... | json_instruct | {"type": "object", "properties": {"s1": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}, "s2": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}, "s3": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}, "degree": {"type": "integer"}}, "require... |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "lockfileVersion": {"type": "integer"}, "requires": {"type": "boolean"}, "dependencies": {"type": "object", "properties": {"readline": {"type": "object", "p... | {"name" : "diepchat", "version" : "1.0.0", "lockfileVersion" : 1, "requires" : true, "dependencies" : {"readline" : {"version" : "1.3.0", "resolved" : "https://registry.npmjs.org/readline/-/readline-1.3.0.tgz", "integrity" : "sha1-xYDXfvLPyHUrEySYBg3JeTp6wBw="}, "ws" : {"version" : "7.4.6", "resolved" : "https://regist... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "lockfileVersion": {"type": "integer"}, "requires": {"type": "boolean"}, "dependencies": {"type": "object", "properties": {"readline": {"type": "object", "properties": {"version": {"type": "string"}, "resolved": {"type": "strin... |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"type": {"type": "string"}, "require": {"type": "object", "properties": {"aztech/layers": {"type": "string"}, "sllh/php-cs-fixer-styleci-bridge": {"type": "string"}, "php": {"type": "string"}}, "required": ["aztech/layers", ... | {"type" : "library", "require" : {"aztech/layers" : "0.1.*", "sllh/php-cs-fixer-styleci-bridge" : "^2.0", "php" : "^5.3"}, "require-dev" : {"aztech/layers" : "0.1.*", "ext-aaa" : "^1.0", "sllh/php-cs-fixer-styleci-bridge" : "^2.0"}, "conflict" : {"zzz/xxx" : "^1.0", "aztech/layers" : "0.1.*", "sllh/php-cs-fixer-styleci... | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "require": {"type": "object", "properties": {"aztech/layers": {"type": "string"}, "sllh/php-cs-fixer-styleci-bridge": {"type": "string"}, "php": {"type": "string"}}, "required": ["aztech/layers", "sllh/php-cs-fixer-styleci-bridge", "php"]}, "require-dev": {"... |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"extends": {"type": "string"}, "references": {"type": "array", "items": {"type": "object", "properties": {"path": {"type": "string"}}, "required": ["path"]}}}, "required": ["extends", "references"], "$schema": "http... | {"extends" : "../../tsconfig-base.json", "references" : [{"path" : "../bytemd"}]} | json_instruct | {"type": "object", "properties": {"extends": {"type": "string"}, "references": {"type": "array", "items": {"type": "object", "properties": {"path": {"type": "string"}}, "required": ["path"]}}}, "required": ["extends", "references"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"parent": {"type": "string"}}, "required": ["parent"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"parent" : "dishes:block/potatoeswithcurdcheese"} | json_instruct | {"type": "object", "properties": {"parent": {"type": "string"}}, "required": ["parent"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {"type": "integer"}}, "productReviews": {"type": "array", "items": {"type": "object", "properties": {"produc... | {"userId" : 48244, "cartId" : "389242e0-f2f3-488b-8dc6-5ce0505d16cb", "preferredProducts" : [3418, 2722, 3835, 1900], "productReviews" : [{"productId" : 361, "reviewText" : "The box this comes in is 3 kilometer by 5 foot and weights 16 megaton!!!", "reviewDate" : "2018-03-30T15:01:02.1164462+03:00"}, {"productId" : 428... | 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... |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "author": {"type": "string"}, "repository": {"type": "string"}, "license": {"type": "string"}, "version": {"type": "string"}, "type": {"type": "string"... | {"name" : "vlq", "description" : "Generate, and decode, base64 VLQ mappings for source maps and other uses", "author" : "Rich Harris", "repository" : "https://github.com/Rich-Harris/vlq", "license" : "MIT", "version" : "2.0.4", "type" : "module", "exports" : {"./package.json" : "./package.json", "." : {"import" : "./sr... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "author": {"type": "string"}, "repository": {"type": "string"}, "license": {"type": "string"}, "version": {"type": "string"}, "type": {"type": "string"}, "exports": {"type": "object", "properties": {"./package.json": {"type... |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"text": {"type": "string"}, "created": {"type": "string"}, "type": {"type": "string"}}, "required": ["text", "created", "type"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"text" : "If you want to give Battlestar Galactica a try and you have Amazon Prime, this is the <a href=\"https://www.amazon.com/Battlestar-Galactica-The-Mini-Series/dp/B002VEG2DM\">place to start</a>.", "created" : "Sat, 03 Nov 2018 01:58:54 GMT", "type" : "outline"} | json_instruct | {"type": "object", "properties": {"text": {"type": "string"}, "created": {"type": "string"}, "type": {"type": "string"}}, "required": ["text", "created", "type"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"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": {}}, "t... | {"directions" : ["Bring water to a boil in a large soup pot and stir ditalini pasta into the boiling water. Cook, stirring occasionally, for 12 minutes.", "Stir tomato sauce, cannellini beans, kidney beans, black-eyed peas, frozen green peas, corn, potato, carrots, onion, garlic, parsley, Italian seasoning, salt, and b... | 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": {"author": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "name"]}, "date": {"type": "object", "properties": {"day": {"type": "integer"}, "full": {"type":... | {"author" : {"id" : "t2_4lczd4az", "name" : "Jarod9000"}, "date" : {"day" : 1630108800, "full" : 1630182689, "month" : 1627776000, "week" : 1629590400}, "id" : "t3_pdhc45", "picture" : {"filesize" : 61646, "fullUrl" : "https://preview.redd.it/rd63wzqjs5k71.jpg?width=4032&format=pjpg&auto=webp&s=2a68f8c99de35736feb2728e... | 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 sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"\u5de5\u5ee0\u540d\u7a31": {"type": "string"}, "\u5de5\u5ee0\u767b\u8a18\u7de8\u865f": {"type": "string"}, "\u5de5\u5ee0\u8a2d\u7acb\u8a31\u53ef\u6848\u865f": {"type": "string"}, "\u5de5\u5ee0\u5730\u5740": {... | {"\u5de5\u5ee0\u540d\u7a31" : "\u9999\u6e2f\u5546\u745e\u5065\u80a1\u4efd\u6709\u9650\u516c\u53f8\u53f0\u7063\u5206\u516c\u53f8\u5357\u5d01\u4e8c\u5ee0", "\u5de5\u5ee0\u767b\u8a18\u7de8\u865f" : "99687452", "\u5de5\u5ee0\u8a2d\u7acb\u8a31\u53ef\u6848\u865f" : "", "\u5de5\u5ee0\u5730\u5740" : "\u6843\u5712\u5e02\u8606\u... | json_instruct | {"type": "object", "properties": {"\u5de5\u5ee0\u540d\u7a31": {"type": "string"}, "\u5de5\u5ee0\u767b\u8a18\u7de8\u865f": {"type": "string"}, "\u5de5\u5ee0\u8a2d\u7acb\u8a31\u53ef\u6848\u865f": {"type": "string"}, "\u5de5\u5ee0\u5730\u5740": {"type": "string"}, "\u5de5\u5ee0\u5e02\u93ae\u9109\u6751\u91cc": {"type": "st... |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"type": {"type": "string"}, "tags": {"type": "array", "items": {}}, "bbox": {"type": "array", "items": {"type": "number"}}, "clip": {"type": "boolean"}, "margin": {"type": "integer"}, "limit": {"type": "integer"}, "p... | {"type" : "GetFeaturesByBBoxEvent", "tags" : [], "bbox" : [10.97, 52.0, 12.58, 54.07], "clip" : false, "margin" : 20, "limit" : 1, "params" : {"typeName" : "fis:s_wfs_baumbestand_an", "url" : "https://fbinter.stadt-berlin.de/fb/wfs/data/senstadt/s_wfs_baumbestand_an/?", "outputFormatJSON" : true, "version" : "2.0.0", "... | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "tags": {"type": "array", "items": {}}, "bbox": {"type": "array", "items": {"type": "number"}}, "clip": {"type": "boolean"}, "margin": {"type": "integer"}, "limit": {"type": "integer"}, "params": {"type": "object", "properties": {"typeName": {"type": "string... |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "summary": {"type": "string"}, "description": {"type": "string"}, "homepage": {"type": "string"}, "license": {"type": "object", "properties": {"type": {... | {"name" : "VeriftecSDK", "version" : "0.0.1", "summary" : "VerifySDK is a Swift framework for 2D and 3D liveness checks", "description" : "VerifySDK is a Swift framework for 2D and 3D liveness checks. You can check it now...", "homepage" : "https://github.com/verify-ge/iOS-SDK/", "license" : {"type" : "MIT", "file" : "... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "summary": {"type": "string"}, "description": {"type": "string"}, "homepage": {"type": "string"}, "license": {"type": "object", "properties": {"type": {"type": "string"}, "file": {"type": "string"}}, "required": ["type", "file"... |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "authors": {"type": "array", "items": {"type": "string"}}, "description": {"type": "string"}, "main": {"type": "string"}, "moduleType": {"type": "array", "ite... | {"name" : "anytime", "version" : "0.2.0", "authors" : ["Patrick Wolleb <patrick.wolleb@shmedia.co.uk>"], "description" : "Animation timing manager for angular ui-router state transitions", "main" : "src/anytime.js", "moduleType" : ["globals"], "keywords" : ["angular", "animation", "timing", "resolve", "state", "ui-rout... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "authors": {"type": "array", "items": {"type": "string"}}, "description": {"type": "string"}, "main": {"type": "string"}, "moduleType": {"type": "array", "items": {"type": "string"}}, "keywords": {"type": "array", "items": {"ty... |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"h": {"type": "string"}, "c": {"type": "array", "items": {"type": "integer"}}}, "required": ["h", "c"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"h" : "d11cbc68d5f62a1dfea2", "c" : [3]} | json_instruct | {"type": "object", "properties": {"h": {"type": "string"}, "c": {"type": "array", "items": {"type": "integer"}}}, "required": ["h", "c"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"RabbitMQ": {"type": "object", "properties": {"Exchange": {"type": "string"}, "Host": {"type": "string"}, "UserName": {"type": "string"}, "Password": {"type": "string"}}, "required": ["Exchange", "Host", "UserName", "Password"]... | {"RabbitMQ" : {"Exchange" : "DOTNET_SPIDER", "Host" : "192.168.124.200", "UserName" : "user", "Password" : "password"}, "AgentId" : "AGENT_002", "AgentName" : "AGENT_002", "ADSLAccount" : "", "ADSLPassword" : "", "ADSLInterface" : "", "SupportPuppeteer" : false} | json_instruct | {"type": "object", "properties": {"RabbitMQ": {"type": "object", "properties": {"Exchange": {"type": "string"}, "Host": {"type": "string"}, "UserName": {"type": "string"}, "Password": {"type": "string"}}, "required": ["Exchange", "Host", "UserName", "Password"]}, "AgentId": {"type": "string"}, "AgentName": {"type": "st... |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"900668649": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900668650": {"type": "object", "properties":... | {"900668649" : {"nama" : "TPS 1", "dapil" : [6201, 16202, 2620201]}, "900668650" : {"nama" : "TPS 2", "dapil" : [6201, 16202, 2620201]}, "900668651" : {"nama" : "TPS 3", "dapil" : [6201, 16202, 2620201]}, "900668652" : {"nama" : "TPS 4", "dapil" : [6201, 16202, 2620201]}, "900668653" : {"nama" : "TPS 5", "dapil" : [620... | json_instruct | {"type": "object", "properties": {"900668649": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900668650": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": ... |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"parent": {"type": "string"}}, "required": ["parent"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"parent" : "wildnature:block/hazel_wood"} | json_instruct | {"type": "object", "properties": {"parent": {"type": "string"}}, "required": ["parent"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"name": {"type": "string"}, "displayName": {"type": "string"}}, "required": ["name", "displayName"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "chatsapp", "displayName" : "Agora RTM Chat Demo"} | 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": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "array", "items": {"type": "object", "pr... | {"contract" : "0x5b566b473bb0ea8dc0fc6047dd623e5fa3b42307", "tool" : "honeybadger", "start" : 1565807635.6510677, "end" : 1565807730.3178422, "duration" : 94.66677451133728, "analysis" : [{"errors" : [], "file" : "/unique_chucks/30/0x5b566b473bb0ea8dc0fc6047dd623e5fa3b42307.sol", "name" : "Auction"}, {"errors" : [], "f... | json_instruct | {"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "array", "items": {"type": "object", "properties": {"errors": {"type": "array", "items": {}}, "file": {"type": "strin... |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {"type": "integer"}}, "productReviews": {"type": "array", "items": {"type": "object", "properties": {"produ... | {"userId" : 47013, "cartId" : "248cd958-b2db-479e-ab91-7b1f0adb887f", "preferredProducts" : [956], "productReviews" : [{"productId" : 3243, "reviewText" : "heard about this on balearic beat radio, decided to give it a try.", "reviewDate" : "2018-03-29T12:04:03.1076555+03:00"}, {"productId" : 640, "reviewText" : "heard ... | 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... |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"$schema": {"type": "string"}, "title": {"type": "string"}, "description": {"type": "string"}, "type": {"type": "string"}, "javaType": {"type": "string"}, "additionalProperties": {"type": "boolean"}, "properties": {"... | {"$schema" : "http://json-schema.org/draft-04/schema#", "title" : "Cost-per-use response parameters object schema", "description" : "Cost-per-use response parameters object schema", "type" : "object", "javaType" : "org.folio.rest.jaxrs.model.CostPerUseParameters", "additionalProperties" : false, "properties" : {"startM... | json_instruct | {"type": "object", "properties": {"$schema": {"type": "string"}, "title": {"type": "string"}, "description": {"type": "string"}, "type": {"type": "string"}, "javaType": {"type": "string"}, "additionalProperties": {"type": "boolean"}, "properties": {"type": "object", "properties": {"startMonth": {"type": "object", "prop... |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"attributes": {"type": "array", "items": {}}, "deviceId": {"type": "string"}, "profileId": {"type": "string"}, "deviceState": {"type": "object", "properties": {"id": {"type": "string"}, "status": {"type": "object", "... | {"attributes" : [], "deviceId" : "device-id", "profileId" : "aferoSofthubProfile", "deviceState" : {"id" : "device-id", "status" : {"available" : true, "visible" : true}}, "profile" : {"profileId" : "aferoSofthubProfile", "schemaVersion" : 1, "profileVersion" : 1, "partnerId" : "kiban-839f59e6-18a3-4d82-818d-42df5cc0c3... | json_instruct | {"type": "object", "properties": {"attributes": {"type": "array", "items": {}}, "deviceId": {"type": "string"}, "profileId": {"type": "string"}, "deviceState": {"type": "object", "properties": {"id": {"type": "string"}, "status": {"type": "object", "properties": {"available": {"type": "boolean"}, "visible": {"type": "b... |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"id": {"type": "string"}, "code": {"type": "string"}, "name": {"type": "string"}, "description": {"type": "string"}, "division": {"type": "string"}, "department": {"type": "string"}, "prerequisites": {"type": "strin... | {"id" : "SOC367H1F20199", "code" : "SOC367H1F", "name" : "Race, Class, and Gender", "description" : "In this class, we analyze the ways in which race, class, gender and sexuality interact and shape communities, life opportunities, perspectives and politics. We will read contemporary ethnographies concerning work, socia... | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "code": {"type": "string"}, "name": {"type": "string"}, "description": {"type": "string"}, "division": {"type": "string"}, "department": {"type": "string"}, "prerequisites": {"type": "string"}, "exclusions": {"type": "string"}, "level": {"type": "integer"}, "c... |
Construct a JSON document that adheres to this schema specification:
{"type": "array", "items": {"type": "array", "items": {"type": "string"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [["510703002001", "\u5efa\u56fd\u95e8\u793e\u533a\u5c45\u6c11\u59d4\u5458\u4f1a", "111", "0"], ["510703002002", "\u94c1\u725b\u8857\u793e\u533a\u5c45\u6c11\u59d4\u5458\u4f1a", "111", "0"], ["510703002003", "\u5b89\u660c\u8def\u793e\u533a\u5c45\u6c11\u59d4\u5458\u4f1a", "111", "0"], ["510703002004", "\u4f1a\u4ed9\u8def\... | json_instruct | {"type": "array", "items": {"type": "array", "items": {"type": "string"}}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"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"}}}}}, "requ... | {"type" : "Feature", "geometry" : {"type" : "Polygon", "coordinates" : [[[129.25, 23.833333333333332], [129.25, 23.916666666666668], [129.375, 23.916666666666668], [129.375, 23.833333333333332], [129.25, 23.833333333333332]]]}, "properties" : {"code" : 352962, "url" : "http://madefor.github.io/0410/api/v1/352962.geojso... | 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... |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"latest_version": {"type": "array", "items": {"type": "string"}}, "meta": {"type": "object", "properties": {"description": {"type": "string"}, "homepage": {"type": "string"}}, "required": ["description", "homepage"]}, "versi... | {"latest_version" : ["2.0"], "meta" : {"description" : "Alternate sequence widget for the Zope 3 form framework", "homepage" : "http://worldcookery.com/Downloads"}, "versions" : {"2.0" : {"sha256" : "ca96d780826eda8a00983d1edafebe77de15105ad763b74e5f6f1b1b3ccff2d8", "url" : "https://files.pythonhosted.org/packages/3a/3... | json_instruct | {"type": "object", "properties": {"latest_version": {"type": "array", "items": {"type": "string"}}, "meta": {"type": "object", "properties": {"description": {"type": "string"}, "homepage": {"type": "string"}}, "required": ["description", "homepage"]}, "versions": {"type": "object", "properties": {"2.0": {"type": "objec... |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"citations": {"type": "null"}, "paper_link": {"type": "string"}, "authors": {"type": "array", "items": {"type": "string"}}, "title": {"type": "string"}, "publication": {"type": "string"}}, "required": ["citation... | {"citations" : null, "paper_link" : "https://scholar.google.com/citations?view_op=view_citation&hl=en&user=Zs9227oAAAAJ&cstart=2559&pagesize=100&citation_for_view=Zs9227oAAAAJ:WD7AgJrCjNIC", "authors" : ["CNR RAD"], "title" : "DEVELOPMENTS IN SOLID STATE CHEMISTRY: A PARTIAL OVERVIEW \u201c", "publication" : "Indian Na... | json_instruct | {"type": "object", "properties": {"citations": {"type": "null"}, "paper_link": {"type": "string"}, "authors": {"type": "array", "items": {"type": "string"}}, "title": {"type": "string"}, "publication": {"type": "string"}}, "required": ["citations", "paper_link", "authors", "title", "publication"], "$schema": "http://js... |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"hash": {"type": "string"}, "parentHash": {"type": "string"}, "number": {"type": "integer"}, "timestamp": {"type": "integer"}, "nonce": {"type": "string"}, "difficulty": {"type": "integer"}, "gasLimit": {"type... | {"hash" : "0x277d6bf3c26b8a946f4928d9759e5ed6819b981f1bd34e267648658c9eccc7eb", "parentHash" : "0x18c348a09f2dee93adeab3ab6b3be867ef1dd6a7040a9d06045b276e599ff447", "number" : 4615, "timestamp" : 1438284550, "nonce" : "0x31b174faf09aa1fa", "difficulty" : 152814295441, "gasLimit" : {"_hex" : "0x1388"}, "gasUsed" : {"_he... | json_instruct | {"type": "object", "properties": {"hash": {"type": "string"}, "parentHash": {"type": "string"}, "number": {"type": "integer"}, "timestamp": {"type": "integer"}, "nonce": {"type": "string"}, "difficulty": {"type": "integer"}, "gasLimit": {"type": "object", "properties": {"_hex": {"type": "string"}}, "required": ["_hex"]... |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"id": {"type": "string"}, "symbol": {"type": "string"}, "name": {"type": "string"}, "platforms": {"type": "object", "properties": {"ethereum": {"type": "string"}, "binance-smart-chain": {"type": "string"}}, "requir... | {"id" : "chow-chow-finance", "symbol" : "chow", "name" : "Chow Chow Finance", "platforms" : {"ethereum" : "0x925f2c11b99c1a4c46606898ee91ed3d450cfeda", "binance-smart-chain" : "0x925f2c11b99c1a4c46606898ee91ed3d450cfeda"}, "hashing_algorithm" : null, "categories" : [], "description" : {"en" : "Chow was created to provi... | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "symbol": {"type": "string"}, "name": {"type": "string"}, "platforms": {"type": "object", "properties": {"ethereum": {"type": "string"}, "binance-smart-chain": {"type": "string"}}, "required": ["ethereum", "binance-smart-chain"]}, "hashing_algorithm": {"type":... |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"config": {"type": "object", "properties": {"flow_title": {"type": "string"}, "step": {"type": "object", "properties": {"confirm": {"type": "object", "properties": {"description": {"type": "string"}, "data": {"type": "object", ... | {"config" : {"flow_title" : "Bond: {name} ({host})", "step" : {"confirm" : {"description" : "Do you want to set up {name}?", "data" : {"access_token" : "[%key:common::config_flow::data::access_token%]"}}, "user" : {"data" : {"host" : "[%key:common::config_flow::data::host%]", "access_token" : "[%key:common::config_flow... | json_instruct | {"type": "object", "properties": {"config": {"type": "object", "properties": {"flow_title": {"type": "string"}, "step": {"type": "object", "properties": {"confirm": {"type": "object", "properties": {"description": {"type": "string"}, "data": {"type": "object", "properties": {"access_token": {"type": "string"}}, "requir... |
Create a JSON structure that matches this schema definition:
{"type": "array", "items": {"type": "object", "properties": {"town": {"type": "string"}, "koaza": {"type": "string"}, "lat": {"type": "number"}, "lng": {"type": "number"}}, "required": ["town", "koaza", "lat", "lng"]}, "$schema": "http://json-schema.org/draf... | [{"town" : "\u5b57\u671d\u65e5", "koaza" : "", "lat" : 43.976479, "lng" : 143.758265}, {"town" : "\u5b57\u6c38\u4ee3\u753a", "koaza" : "", "lat" : 44.015758, "lng" : 143.777338}, {"town" : "\u5b57\u5ddd\u897f", "koaza" : "", "lat" : 44.000092, "lng" : 143.686057}, {"town" : "\u5b57\u5317", "koaza" : "", "lat" : 44.0389... | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"town": {"type": "string"}, "koaza": {"type": "string"}, "lat": {"type": "number"}, "lng": {"type": "number"}}, "required": ["town", "koaza", "lat", "lng"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"id": {"type": "integer"}, "info": {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "additionalInfo": {"type": "null"}, "format": {"type": "string"}, "category": {"type... | {"id" : 11240, "info" : {"name" : "Edline -- Light Green", "description" : "Makes the background of Edline.net light green.", "additionalInfo" : null, "format" : "uso", "category" : "edline", "createdAt" : "2008-10-12T22:45:20.000Z", "updatedAt" : "2008-10-12T22:47:13.000Z", "license" : "NO-REDISTRIBUTION", "author" : ... | json_instruct | {"type": "object", "properties": {"id": {"type": "integer"}, "info": {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "additionalInfo": {"type": "null"}, "format": {"type": "string"}, "category": {"type": "string"}, "createdAt": {"type": "string"}, "updatedAt": {"type": "... |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"name": {"type": "string"}, "enabledForApps": {"type": "boolean"}, "method": {"type": "string"}, "path": {"type": "string"}, "previews": {"type": "array", "items": {}}, "params": {"type": "array", "items": {"type": "... | {"name" : "Rename an existing user", "enabledForApps" : false, "method" : "PATCH", "path" : "/admin/users/:username", "previews" : [], "params" : [{"name" : "username", "type" : "string", "required" : true, "description" : "", "location" : "url"}, {"name" : "login", "type" : "string", "description" : "The user's new us... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "enabledForApps": {"type": "boolean"}, "method": {"type": "string"}, "path": {"type": "string"}, "previews": {"type": "array", "items": {}}, "params": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "type": {"type": "... |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"name": {"type": "string"}, "type": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "description": {"type": "string"}, "license": {"type": "string"}, "authors": {"type": "array", "items": {"type"... | {"name" : "hhspecify/hhspecify", "type" : "library", "keywords" : ["hack", "hhvm", "spec", "test", "bdd"], "description" : "BDD testing framework for Hack", "license" : "MIT", "authors" : [{"name" : "holyshared", "email" : "holy.shared.design@gmail.com"}], "require" : {"hhvm" : ">=3.6.0"}, "require-dev" : {"expect/peri... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "type": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "description": {"type": "string"}, "license": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "ema... |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"towns": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "url": {"type": "string"}}, "required": ["name", "url"]}}}, "required": ["towns"], "$schema": "http://json-schema.org/draft-07... | {"towns" : [{"name" : "Freistadt", "url" : "freistadt-1"}]} | json_instruct | {"type": "object", "properties": {"towns": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "url": {"type": "string"}}, "required": ["name", "url"]}}}, "required": ["towns"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {"type": "integer"}}, "productReviews": {"type": "array", "items": {"type": "object", "properties": {"produc... | {"userId" : 58906, "cartId" : "ba29a996-8e89-4d52-9f7c-47c764f2eb84", "preferredProducts" : [2139, 2665, 3384, 2825, 4749, 1745, 1342, 4854, 4918], "productReviews" : [{"productId" : 4465, "reviewText" : "My co-worker Fate has one of these. He says it looks tall.", "reviewDate" : "2018-06-23T22:58:48.9152458+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... |
Generate sample JSON data that conforms to the following schema definition:
{"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"}, "... | {"id" : 404379881, "type" : "Feature", "properties" : {"src:alt_label" : "quattroshapes", "src:geom" : "quattroshapes", "wof:geomhash" : "c2da9b92cba6e66283865b13e3f3818d", "wof:id" : 404379881, "wof:repo" : "whosonfirst-data-admin-fr"}, "bbox" : [3.77644333077254, 49.50583644757701, 3.81560527033069, 49.52357470805151... | 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": {"configuration": {"type": "array", "items": {"type": "string"}}, "regionsToProcessedPerformance": {"type": "object", "properties": {"program": {"type": "integer"}}, "required": ["program"]}}, "required": ["configuration", "r... | {"configuration" : ["DOWNSCALINGALGORITHM", "ENABLEANTIALIASING"], "regionsToProcessedPerformance" : {"program" : 76431296383}} | json_instruct | {"type": "object", "properties": {"configuration": {"type": "array", "items": {"type": "string"}}, "regionsToProcessedPerformance": {"type": "object", "properties": {"program": {"type": "integer"}}, "required": ["program"]}}, "required": ["configuration", "regionsToProcessedPerformance"], "$schema": "http://json-schema... |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"doctext": {"type": "string"}, "pred_seq": {"type": "string"}, "pred_templates": {"type": "array", "items": {"type": "object", "properties": {"incident_type": {"type": "string"}, "PerpInd": {"type": "array", "it... | {"doctext" : "early in the morning of 21 december fm ##ln rebels raided san jose villa ##nu ##eva , south of san salvador , la li ##bert ##ad department , where they set fire to the ant ##el ( national administration for telecommunications ) office and destroyed the local garrison . according to a government report rec... | json_instruct | {"type": "object", "properties": {"doctext": {"type": "string"}, "pred_seq": {"type": "string"}, "pred_templates": {"type": "array", "items": {"type": "object", "properties": {"incident_type": {"type": "string"}, "PerpInd": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}, "PerpOrg": {"type": ... |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"status": {"type": "string"}, "data": {"type": "array", "items": {"type": "object", "properties": {"trade_id": {"type": "string"}, "order_id": {"type": "string"}, "exchange": {"type": "string"}, "tradingsymbol": {"type": "strin... | {"status" : "success", "data" : [{"trade_id" : "10000000", "order_id" : "200000000000000", "exchange" : "MCX", "tradingsymbol" : "GOLDPETAL21JUNFUT", "instrument_token" : 58424839, "product" : "NRML", "average_price" : 4852, "quantity" : 1, "exchange_order_id" : "300000000000000", "transaction_type" : "BUY", "fill_time... | json_instruct | {"type": "object", "properties": {"status": {"type": "string"}, "data": {"type": "array", "items": {"type": "object", "properties": {"trade_id": {"type": "string"}, "order_id": {"type": "string"}, "exchange": {"type": "string"}, "tradingsymbol": {"type": "string"}, "instrument_token": {"type": "integer"}, "product": {"... |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"ammo_type": {"type": "string"}, "damage": {"type": "integer"}, "damage_volume": {"type": "object", "properties": {"initial_radius": {"type": "number"}}, "required": ["initial_radius"]}, "sim_fire_effect": {"typ... | {"ammo_type" : "PBAOE", "damage" : 1000, "damage_volume" : {"initial_radius" : 15.0}, "sim_fire_effect" : "/pa/effects/specs/default_explosion.pfx", "splash_damages_allies" : false, "splash_radius" : 15} | json_instruct | {"type": "object", "properties": {"ammo_type": {"type": "string"}, "damage": {"type": "integer"}, "damage_volume": {"type": "object", "properties": {"initial_radius": {"type": "number"}}, "required": ["initial_radius"]}, "sim_fire_effect": {"type": "string"}, "splash_damages_allies": {"type": "boolean"}, "splash_radius... |
Generate a valid JSON object that conforms to the following schema:
{"type": "array", "items": {"type": "object", "properties": {"year": {"type": "integer"}, "sex": {"type": "string"}, "n": {"type": "integer"}, "prop": {"type": "number"}}, "required": ["year", "sex", "n", "prop"]}, "$schema": "http://json-schema.org/d... | [{"year" : 1993, "sex" : "F", "n" : 5, "prop" : 2.54e-06}, {"year" : 1994, "sex" : "F", "n" : 13, "prop" : 6.67e-06}, {"year" : 1995, "sex" : "F", "n" : 13, "prop" : 6.77e-06}, {"year" : 1996, "sex" : "F", "n" : 12, "prop" : 6.26e-06}, {"year" : 1997, "sex" : "F", "n" : 16, "prop" : 8.38e-06}, {"year" : 1998, "sex" : "... | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"year": {"type": "integer"}, "sex": {"type": "string"}, "n": {"type": "integer"}, "prop": {"type": "number"}}, "required": ["year", "sex", "n", "prop"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"versionEnd": {"type": "object", "properties": {"versionNum": {"type": "integer"}, "commit": {"type": "string"}, "date": {"type": "string"}}, "required": ["versionNum", "commit", "date"]}, "versionStart": {"type... | {"versionEnd" : {"versionNum" : 196, "commit" : "f2c75b7919376fbf2e2ccd294af150a7d51060d9", "date" : "2021-03-16T10:36:56.673Z"}, "versionStart" : {"versionNum" : 195, "commit" : "9ce244449debc956d6a38d218b5fc4974d80000a", "date" : "2021-03-15T07:22:05.506Z"}, "changes" : ["blockchains/ethereum/allowlist.json", "blockc... | json_instruct | {"type": "object", "properties": {"versionEnd": {"type": "object", "properties": {"versionNum": {"type": "integer"}, "commit": {"type": "string"}, "date": {"type": "string"}}, "required": ["versionNum", "commit", "date"]}, "versionStart": {"type": "object", "properties": {"versionNum": {"type": "integer"}, "commit": {"... |
Using the following JSON schema, generate a compatible JSON instance:
{"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" : ["Engineering", "Management", "Software"], "desc" : "\n", "details" : {"authors" : "Marius Sandbu", "format" : "pdf", "isbn-10" : "1782176764", "isbn-13" : "978-1782176763", "pages" : "146 pages", "publication date" : "November 25, 2013", "publisher" : "Packt Publishing", "size" : "6.00Mb"}, "img" : "ht... | 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"},... |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"type": {"type": "string"}, "features": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"label:cs": {"type": "string"}, "P31": ... | {"type" : "FeatureCollection", "features" : [{"type" : "Feature", "properties" : {"label:cs" : "Bo\u017e\u00ed muka severn\u011b od B\u0159eznice", "P31" : "http://www.wikidata.org/entity/Q3395121", "P31^label:cs" : "Bo\u017e\u00ed muka", "P131^label:cs" : "B\u0159eznice", "P6736" : "40032"}, "geometry" : {"type" : "Po... | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "features": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"label:cs": {"type": "string"}, "P31": {"type": "string"}, "P31^label:cs": {"type": "string"}, "P131^label:cs... |
Construct a JSON document that adheres to this schema specification:
{"type": "array", "items": {"type": "object", "properties": {"fonts": {"type": "array", "items": {"type": "object", "properties": {"asset": {"type": "string"}}, "required": ["asset"]}}, "family": {"type": "string"}}, "required": ["fonts", "family"]},... | [{"fonts" : [{"asset" : "fonts/MaterialIcons-Regular.ttf"}], "family" : "MaterialIcons"}, {"family" : "Poppins", "fonts" : [{"asset" : "fonts/poppins/Poppins-Regular.ttf"}, {"weight" : 700, "asset" : "fonts/poppins/Poppins-Bold.ttf"}, {"asset" : "fonts/poppins/Poppins-Medium.ttf"}, {"style" : "italic", "asset" : "fonts... | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"fonts": {"type": "array", "items": {"type": "object", "properties": {"asset": {"type": "string"}}, "required": ["asset"]}}, "family": {"type": "string"}}, "required": ["fonts", "family"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"900381472": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900381473": {"type": "object", "properties": {"nama": {"type":... | {"900381472" : {"nama" : "TPS 1", "dapil" : [3303, 13305, 2331601]}, "900381473" : {"nama" : "TPS 2", "dapil" : [3303, 13305, 2331601]}, "900381474" : {"nama" : "TPS 3", "dapil" : [3303, 13305, 2331601]}, "900381475" : {"nama" : "TPS 4", "dapil" : [3303, 13305, 2331601]}, "900381476" : {"nama" : "TPS 5", "dapil" : [330... | json_instruct | {"type": "object", "properties": {"900381472": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900381473": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": ... |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"connector": {"type": "string"}, "extends": {"type": "array", "items": {"type": "string"}}, "formatters": {"type": "array", "items": {"type": "string"}}, "hints": {"type": "array", "items": {"type": "string"}}... | {"connector" : "local", "extends" : ["accessibility", "progressive-web-apps"], "formatters" : ["html", "summary"], "hints" : ["apple-touch-icons", "button-type", "compat-api/css", "compat-api/html", "create-element-svg", "css-prefix-order", "disown-opener", "highest-available-document-mode", "leading-dot-classlist", "m... | json_instruct | {"type": "object", "properties": {"connector": {"type": "string"}, "extends": {"type": "array", "items": {"type": "string"}}, "formatters": {"type": "array", "items": {"type": "string"}}, "hints": {"type": "array", "items": {"type": "string"}}, "hintsTimeout": {"type": "integer"}, "parsers": {"type": "array", "items": ... |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"name": {"type": "string"}, "type": {"type": "string"}, "description": {"type": "string"}, "website": {"type": "string"}, "doom9": {"type": "string"}, "category": {"type": "string"}, "identifier": {"type": "stri... | {"name" : "RainbowSmooth", "type" : "PyScript", "description" : "RainbowSmooth is a script which adds edge detection to SmoothUV. It is a port of the Avisynth function rainbow_smooth()", "website" : "https://github.com/dubhater/vapoursynth-smoothuv", "doom9" : "https://forum.doom9.org/showthread.php?t=175520", "categor... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "type": {"type": "string"}, "description": {"type": "string"}, "website": {"type": "string"}, "doom9": {"type": "string"}, "category": {"type": "string"}, "identifier": {"type": "string"}, "modulename": {"type": "string"}, "github": {"type": "string"}, "depe... |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "version": {"type": "string"}, "author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"@babel/runtime": {"ty... | {"name" : "@polkadot/extension-ui", "description" : "A sample signer extension for the @polkadot/api", "version" : "0.11.0-beta.4", "author" : "Jaco Greeff <jacogr@gmail.com>", "license" : "Apache-2", "dependencies" : {"@babel/runtime" : "^7.6.0", "@material-ui/core" : "^4.3.3", "@polkadot/react-identicon" : "^0.45.0-b... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "version": {"type": "string"}, "author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"@babel/runtime": {"type": "string"}, "@material-ui/core": {"type": "string"}, "@... |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"edges": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}, "features": {"type": "object", "properties": {"0": {"type": "string"}, "1": {"type": "string"}, "2": {"type": "string"}, "3": {"type": "string"... | {"edges" : [[16, 9], [5, 25], [9, 16], [16, 4], [9, 16], [16, 0], [16, 15], [16, 13], [16, 9], [19, 3], [11, 16], [16, 7], [15, 16], [9, 16], [16, 8], [16, 9], [22, 9], [2, 16], [16, 15], [3, 20], [18, 16], [15, 16], [10, 1], [7, 16], [16, 11], [16, 23], [11, 16], [14, 16], [16, 11], [0, 16], [16, 21], [19, 6], [16, 12... | json_instruct | {"type": "object", "properties": {"edges": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}, "features": {"type": "object", "properties": {"0": {"type": "string"}, "1": {"type": "string"}, "2": {"type": "string"}, "3": {"type": "string"}, "4": {"type": "string"}, "5": {"type": "string"}, "6":... |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"type": {"type": "string"}, "ingredient": {"type": "object", "properties": {"tag": {"type": "string"}}, "required": ["tag"]}, "result": {"type": "string"}, "count": {"type": "integer"}}, "required": ["type", "ingredient", "resu... | {"type" : "minecraft:stonecutting", "ingredient" : {"tag" : "minecraft:jungle_logs"}, "result" : "minecraft:jungle_fence_gate", "count" : 1} | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "ingredient": {"type": "object", "properties": {"tag": {"type": "string"}}, "required": ["tag"]}, "result": {"type": "string"}, "count": {"type": "integer"}}, "required": ["type", "ingredient", "result", "count"], "$schema": "http://json-schema.org/draft-07/... |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"context": {"type": "integer"}, "plcmttype": {"type": "integer"}, "assets": {"type": "array", "items": {"type": "object", "properties": {"data": {"type": "object", "properties": {}, "required": []}}, "required": ["... | {"context" : 1, "plcmttype" : 1, "assets" : [{"data" : {}}]} | json_instruct | {"type": "object", "properties": {"context": {"type": "integer"}, "plcmttype": {"type": "integer"}, "assets": {"type": "array", "items": {"type": "object", "properties": {"data": {"type": "object", "properties": {}, "required": []}}, "required": ["data"]}}}, "required": ["context", "plcmttype", "assets"], "$schema": "h... |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"subreddit": {"type": "string"}, "author": {"type": "string"}, "count": {"type": "integer"}}, "required": ["subreddit", "author", "count"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"subreddit" : "firefly", "author" : "Reb_Hudgens", "count" : 5} | json_instruct | {"type": "object", "properties": {"subreddit": {"type": "string"}, "author": {"type": "string"}, "count": {"type": "integer"}}, "required": ["subreddit", "author", "count"], "$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"}, "typings": {"type": "string"}, "scripts": {"type": "object", "properties": {"prepare": {"typ... | {"name" : "hangeul", "version" : "0.3.1", "description" : "Hangeul transliteration library", "main" : "index.js", "typings" : "index.d.ts", "scripts" : {"prepare" : "babel index.js -o index.es5.js", "test" : "eslint . && mocha"}, "repository" : {"type" : "git", "url" : "git+https://github.com/Kagami/hangeul.js.git"}, "... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "typings": {"type": "string"}, "scripts": {"type": "object", "properties": {"prepare": {"type": "string"}, "test": {"type": "string"}}, "required": ["prepare", "tes... |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"parent": {"type": "string"}}, "required": ["parent"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"parent" : "chipped:block/clay_6"} | json_instruct | {"type": "object", "properties": {"parent": {"type": "string"}}, "required": ["parent"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"word": {"type": "string"}, "definitions": {"type": "array", "items": {"type": "string"}}, "parts-of-speech": {"type": "string"}}, "required": ["word", "definitions", "parts-of-speech"], "$schema": "http://json-schem... | {"word" : "Biotelemetry", "definitions" : ["The detection or measurement of human or animal physiological functions from a distance using a telemeter."], "parts-of-speech" : "Noun"} | json_instruct | {"type": "object", "properties": {"word": {"type": "string"}, "definitions": {"type": "array", "items": {"type": "string"}}, "parts-of-speech": {"type": "string"}}, "required": ["word", "definitions", "parts-of-speech"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "bin": {"type": "object", "properties": {"lky-pack": {"type": "string"}}, "required": [... | {"name" : "lky-pack", "version" : "1.0.0", "description" : "", "main" : "index.js", "bin" : {"lky-pack" : "./bin/lky-pack.js"}, "license" : "MIT", "dependencies" : {"@babel/generator" : "^7.3.3", "@babel/traverse" : "^7.2.3", "@babel/types" : "^7.3.3", "babylon" : "^6.18.0", "ejs" : "^2.6.1", "tapable" : "^1.1.1"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "bin": {"type": "object", "properties": {"lky-pack": {"type": "string"}}, "required": ["lky-pack"]}, "license": {"type": "string"}, "dependencies": {"type": "object... |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"id": {"type": "integer"}, "title": {"type": "array", "items": {"type": "string"}}, "description": {"type": "array", "items": {"type": "string"}}, "paths": {"type": "array", "items": {"type": "string"}}, "location": {"type": "s... | {"id" : 699, "title" : ["[Ta'Illistim, Sylvar Wey]"], "description" : ["At the eastern end of the wey, a round stone belltower is visible, its low sides covered with pale pink climbing roses. Several cottages sit well back from the wey, their uniformly blue tiled roofs lending to the colorful serenity in this part of ... | json_instruct | {"type": "object", "properties": {"id": {"type": "integer"}, "title": {"type": "array", "items": {"type": "string"}}, "description": {"type": "array", "items": {"type": "string"}}, "paths": {"type": "array", "items": {"type": "string"}}, "location": {"type": "string"}, "wayto": {"type": "object", "properties": {"700": ... |
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": "array", "items": {}}}, "required": ["contrac... | {"contract" : "0xb43c257e493e16e83c9212fad4ad2c87ca09cc09", "tool" : "slither", "start" : 1563546756.0530722, "end" : 1563546761.684935, "duration" : 5.6318628787994385, "analysis" : []} | json_instruct | {"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "array", "items": {}}}, "required": ["contract", "tool", "start", "end", "duration", "analysis"], "$schema": "http://... |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"id": {"type": "string"}}, "required": ["id"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "a3565e93070be5ac7580514ae1b9865d05a61bc4"} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}}, "required": ["id"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "url": {"type": "string"}, "icon": {"type": "string"}, "tags": {"type": "array", "items": {"type": "string"}}, "schema": {"type": "string"}, "plugins": {"type": "ar... | {"name" : "TTG", "description" : "ToTheGlory", "url" : "https://totheglory.im/", "icon" : "https://totheglory.im/favicon.ico", "tags" : ["\u5f71\u89c6", "\u97f3\u4e50", "\u6e38\u620f", "\u7efc\u5408"], "schema" : "TTG", "plugins" : [{"name" : "\u79cd\u5b50\u8be6\u60c5\u9875\u9762", "pages" : ["^/t/(\\d+)/$"], "scripts"... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "url": {"type": "string"}, "icon": {"type": "string"}, "tags": {"type": "array", "items": {"type": "string"}}, "schema": {"type": "string"}, "plugins": {"type": "array", "items": {"type": "object", "properties": {"name": {"... |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"type": {"type": "string"}, "features": {"type": "array", "items": {"type": "object", "properties": {"geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "ar... | {"type" : "FeatureCollection", "features" : [{"geometry" : {"type" : "Polygon", "coordinates" : [[[-118.482194, 34.42367], [-118.480703, 34.424201], [-118.480956, 34.427651], [-118.467935, 34.427741], [-118.472, 34.42376], [-118.472249, 34.414563], [-118.47306, 34.412145], [-118.475878, 34.413709], [-118.480249, 34.418... | 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": {"language": {"type": "string"}, "files": {"type": "array", "items": {"type": "object", "properties": {"filename": {"type": "string"}, "content": {"type": "string"}}, "required": ["filename", "content"]}}, "action": {"type": "st... | {"language" : "Java", "files" : [{"filename" : "Root/Application.java", "content" : "import p1.*; import p2.*; public class Application { public static void main(String[] args) {B b = new B(); D d = new D(); E e = new E(); System.out.println(\"Hello Java Test-3 \"); }}"}, {"filename" : "Root/p1/B.java", "content" : "... | json_instruct | {"type": "object", "properties": {"language": {"type": "string"}, "files": {"type": "array", "items": {"type": "object", "properties": {"filename": {"type": "string"}, "content": {"type": "string"}}, "required": ["filename", "content"]}}, "action": {"type": "string"}, "stream": {"type": "boolean"}}, "required": ["langu... |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"alias": {"type": "string"}, "category": {"type": "string"}, "copyright_text": {"type": "string"}, "description": {"type": "string"}, "duration": {"type": "integer"}, "id": {"type": "integer"}, "language": {"typ... | {"alias" : "video/3928/pycon-montreal-in-30-min", "category" : "PyCon ZA 2015", "copyright_text" : "", "description" : "This will be a whirlwind overview of some of the most interesting talks\nfrom this year's big PyCon in Montr\u00e9al. The goal is to boil down the\ngist of my 10 favourite talks into a single, super-c... | json_instruct | {"type": "object", "properties": {"alias": {"type": "string"}, "category": {"type": "string"}, "copyright_text": {"type": "string"}, "description": {"type": "string"}, "duration": {"type": "integer"}, "id": {"type": "integer"}, "language": {"type": "string"}, "quality_notes": {"type": "string"}, "recorded": {"type": "s... |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"cosmicjs.browser.min.js": {"type": "string"}}, "required": ["cosmicjs.browser.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"cosmicjs.browser.min.js" : "sha512-k2vIP0DGZlbYZHlzVmrpalm5LMKfhrk71gfdDgVJIGETuu66JVKFr5e0r7N0gMqEEg5EnL8AMdspVGvBGsnCCg=="} | json_instruct | {"type": "object", "properties": {"cosmicjs.browser.min.js": {"type": "string"}}, "required": ["cosmicjs.browser.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"project_name": {"type": "string"}, "files": {"type": "object", "properties": {"/src/main/java/com/longhoang/service/util/RandomUtil.java": {"type": "integer"}}, "required": ["/src/main/java/com/longhoang/service/ut... | {"project_name" : "longhoang94/game-paradise", "files" : {"/src/main/java/com/longhoang/service/util/RandomUtil.java" : 3}, "pull_request" : "https://github.com/longhoang94/game-paradise/pull/2", "report" : {"files_fixed" : 1, "vulnerabilities_fixed" : 3}} | json_instruct | {"type": "object", "properties": {"project_name": {"type": "string"}, "files": {"type": "object", "properties": {"/src/main/java/com/longhoang/service/util/RandomUtil.java": {"type": "integer"}}, "required": ["/src/main/java/com/longhoang/service/util/RandomUtil.java"]}, "pull_request": {"type": "string"}, "report": {"... |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"PREVALENCE_BY_GENDER_AGE_YEAR": {"type": "object", "properties": {"TRELLIS_NAME": {"type": "array", "items": {"type": "string"}}, "SERIES_NAME": {"type": "array", "items": {"type": "string"}}, "X_CALENDAR_YEA... | {"PREVALENCE_BY_GENDER_AGE_YEAR" : {"TRELLIS_NAME" : ["60-69", "70-79", "60-69", "50-59", "50-59", "60-69", "70-79", "60-69", "50-59", "60-69"], "SERIES_NAME" : ["FEMALE", "FEMALE", "FEMALE", "FEMALE", "FEMALE", "FEMALE", "FEMALE", "FEMALE", "FEMALE", "FEMALE"], "X_CALENDAR_YEAR" : [2014, 2015, 2015, 2015, 2016, 2016, ... | json_instruct | {"type": "object", "properties": {"PREVALENCE_BY_GENDER_AGE_YEAR": {"type": "object", "properties": {"TRELLIS_NAME": {"type": "array", "items": {"type": "string"}}, "SERIES_NAME": {"type": "array", "items": {"type": "string"}}, "X_CALENDAR_YEAR": {"type": "array", "items": {"type": "integer"}}, "Y_PREVALENCE_1000PP": {... |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"stats": {"type": "object", "properties": {"minecraft:used": {"type": "object", "properties": {"dt:firebrick_barrel": {"type": "integer"}, "dt:bronze_block": {"type": "integer"}, "dt:firebrick_block": {"type": "... | {"stats" : {"minecraft:used" : {"dt:firebrick_barrel" : 2, "dt:bronze_block" : 1, "dt:firebrick_block" : 7, "dt:clay_plate_model" : 1, "dt:clay_ingot_model" : 1, "dt:fire_starter_block" : 1}, "minecraft:custom" : {"minecraft:jump" : 39, "minecraft:time_since_rest" : 8367, "minecraft:crouch_one_cm" : 144, "minecraft:pla... | json_instruct | {"type": "object", "properties": {"stats": {"type": "object", "properties": {"minecraft:used": {"type": "object", "properties": {"dt:firebrick_barrel": {"type": "integer"}, "dt:bronze_block": {"type": "integer"}, "dt:firebrick_block": {"type": "integer"}, "dt:clay_plate_model": {"type": "integer"}, "dt:clay_ingot_model... |
Create a JSON structure that matches this schema definition:
{"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"}
| ["reactive-style", "style-it"] | 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": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "array", "items": {}}}, "required": ["contract", "tool", "st... | {"contract" : "0xea2fb6fea1190077e25b7d54686071fbd0f50b4b", "tool" : "slither", "start" : 1563346281.7093208, "end" : 1563346286.0741057, "duration" : 4.3647849559783936, "analysis" : []} | json_instruct | {"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "array", "items": {}}}, "required": ["contract", "tool", "start", "end", "duration", "analysis"], "$schema": "http://... |
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": {"start": {"type": "string"}, "build": {"type... | {"name" : "livy", "version" : "0.0.0", "description" : "Backup myanimelist to anilist.", "main" : "dist/index.js", "scripts" : {"start" : "tsc && node dist/index.js", "build" : "tsc", "dev" : "npm run build -- -w"}, "repository" : {"type" : "git", "url" : "git+https://github.com/n4y0n/livy.git"}, "keywords" : ["backup"... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}, "build": {"type": "string"}, "dev": {"type": "string"}}, "required": ["start", "build", "d... |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"ZSchema-browser-min.js": {"type": "string"}, "ZSchema-browser.js": {"type": "string"}}, "required": ["ZSchema-browser-min.js", "ZSchema-browser.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"ZSchema-browser-min.js" : "sha256-pdokkFGCNJzVohgRk6ehUj7dgJ1ya3ae5PhDri+uy8E=", "ZSchema-browser.js" : "sha256-ilgLlzm6UiPv40quQCdD49zSS7wR/8ZOr1BRsiNHBuE="} | json_instruct | {"type": "object", "properties": {"ZSchema-browser-min.js": {"type": "string"}, "ZSchema-browser.js": {"type": "string"}}, "required": ["ZSchema-browser-min.js", "ZSchema-browser.js"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"Core Concepts": {"type": "array", "items": {"type": "string"}}, "Other Topics": {"type": "array", "items": {"type": "string"}}}, "required": ["Core Concepts", "Other Topics"], "$schema": "http://json-schema.org/dra... | {"Core Concepts" : ["getting-started.md", "dialects.md", "data-types.md", "models-definition.md", "models-usage.md", "hooks.md", "querying.md", "instances.md", "associations.md", "raw-queries.md"], "Other Topics" : ["transactions.md", "scopes.md", "read-replication.md", "migrations.md", "resources.md", "typescript.md",... | json_instruct | {"type": "object", "properties": {"Core Concepts": {"type": "array", "items": {"type": "string"}}, "Other Topics": {"type": "array", "items": {"type": "string"}}}, "required": ["Core Concepts", "Other Topics"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {}}, "productReviews": {"type": "array", "items": {"type": "object", "properties": {"productId": {"type":... | {"userId" : 19701, "cartId" : "1dbd2a8a-be3e-47bd-8647-d218cd0f5094", "preferredProducts" : [], "productReviews" : [{"productId" : 85, "reviewText" : "this hacking is slurpee.", "reviewDate" : "2017-09-05T18:49:40.8978685+03:00"}, {"productId" : 4944, "reviewText" : "My co-worker Tyron has one of these. He says it look... | json_instruct | {"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {}}, "productReviews": {"type": "array", "items": {"type": "object", "properties": {"productId": {"type": "integer"}, "reviewText": {"type": "string"}, "reviewDate": {"type": "s... |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "integer"}, "builds": {"type": "array", "items": {"type": "object", "properties": {"src": {"type": "string"}, "use": {"type": "string"}}, "required": ["src", "use"]}}, "... | {"name" : "RetoPlatziProductsAnibal", "version" : 2, "builds" : [{"src" : "src/index.js", "use" : "@vercel/node"}], "routes" : [{"src" : "/.*", "dest" : "src/index.js"}], "env" : {"DB_USER" : "@retoplatzi-product-db-user", "DB_PASSWORD" : "@retoplatzi-product-db-user", "DB_HOST" : "@retoplatzi-product-db-host", "DB_NAM... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "integer"}, "builds": {"type": "array", "items": {"type": "object", "properties": {"src": {"type": "string"}, "use": {"type": "string"}}, "required": ["src", "use"]}}, "routes": {"type": "array", "items": {"type": "object", "properties": ... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.