input stringlengths 159 2.05k | output stringlengths 5 10.3k | task stringclasses 1
value | schema stringlengths 100 1.99k |
|---|---|---|---|
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "description": {"type": "string"}, "user": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "email": {"type": "str... | {"id" : 134520, "name" : "University of Illiniois - Compact Course Entry", "description" : "Compact, table-like view of courses in the University of Illinois undergraduate application page. Makes it easier to read multiple courses simultaneously.", "user" : {"id" : 301641, "name" : "jimbo1qaz", "email" : "redacted", "p... | json_instruct | {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "description": {"type": "string"}, "user": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "email": {"type": "string"}, "paypal_email": {"type": "null"}, "homepage": {"type": "null"}, "about... |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"type": {"type": "string"}, "level": {"type": "string"}, "label": {"type": "string"}, "locale": {"type": "string"}, "country_id": {"type": "... | {"type" : "Feature", "properties" : {"type" : "barangay", "level" : "4", "label" : "Banahao, Lianga, Surigao del Sur, Caraga (Region XIII), PH", "locale" : "ph.caraga-region-xiii.surigao-del-sur.lianga.banahao", "country_id" : 177, "country_reference" : 177, "country_name" : "Philippines", "region_id" : "5", "region_re... | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"type": {"type": "string"}, "level": {"type": "string"}, "label": {"type": "string"}, "locale": {"type": "string"}, "country_id": {"type": "integer"}, "country_reference": {"type": "integer"}, "country_name": {... |
Create an example JSON object that satisfies this schema:
{"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "frequency": {"type": "integer"}, "gender": {"type": "string"}}, "required": ["name", "frequency", "gender"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"name" : "FLOREND", "frequency" : 0, "gender" : "female"}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "frequency": {"type": "integer"}, "gender": {"type": "string"}}, "required": ["name", "frequency", "gender"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
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" : "WAKATOBI", "originalFilename" : "La Ode Burhan Foto.jpg", "namaPartai" : "Partai Persatuan pembangunan", "id" : 256117, "noUrut" : 1, "nama" : "LA ODE BURHAN, S.SI.", "stringJenisKelamin" : "Laki-Laki"}, {"namaKab" : "WAKATOBI", "originalFilename" : "Irawati Foto.jpg", "namaPartai" : "Partai Persatuan pe... | 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", "... |
Create a JSON structure that matches this schema definition:
{"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "frequency": {"type": "integer"}, "gender": {"type": "string"}}, "required": ["name", "frequency", "gender"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"name" : "EMILIAN-SORIN", "frequency" : 1, "gender" : "male"}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "frequency": {"type": "integer"}, "gender": {"type": "string"}}, "required": ["name", "frequency", "gender"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "county": {"type": "string"}, "elevation": {"type": "integer"}, "location": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "i... | {"id" : "1529405", "name" : "Grey Rock Trail", "county" : "Yakima", "elevation" : 1917, "location" : {"type" : "Point", "coordinates" : [-121.082022, 46.58373]}} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "county": {"type": "string"}, "elevation": {"type": "integer"}, "location": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "number"}}}, "required": ["type", "coordina... |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"verbose": {"type": "boolean"}, "ext": {"type": "string"}, "watch": {"type": "array", "items": {"type": "string"}}, "env": {"type": "object", "properties": {"NODE_ENV": {"type": "string"}, "MONGO_DEFAULT_URI":... | {"verbose" : false, "ext" : "js,json", "watch" : ["./build"], "env" : {"NODE_ENV" : "development", "MONGO_DEFAULT_URI" : "mongodb://admin:1qwe3forum@ds040309.mlab.com:40309/forum-ddd"}} | json_instruct | {"type": "object", "properties": {"verbose": {"type": "boolean"}, "ext": {"type": "string"}, "watch": {"type": "array", "items": {"type": "string"}}, "env": {"type": "object", "properties": {"NODE_ENV": {"type": "string"}, "MONGO_DEFAULT_URI": {"type": "string"}}, "required": ["NODE_ENV", "MONGO_DEFAULT_URI"]}}, "requi... |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"chest": {"type": "object", "properties": {"accuracy": {"type": "number"}, "roc_auc": {"type": "number"}, "recall": {"type": "number"}, "precision": {"type": "number"}, "f1_score": {"type": "number"}, "negative_recall": {"ty... | {"chest" : {"accuracy" : 0.7800982800982801, "roc_auc" : 0.8359306086445163, "recall" : 0.6703910614525139, "precision" : 0.7973421926910299, "f1_score" : 0.7283763277693474, "negative_recall" : 0.8662280701754386, "negative_precision" : 0.7699805068226121, "negative_f1_score" : 0.8152734778121775}} | json_instruct | {"type": "object", "properties": {"chest": {"type": "object", "properties": {"accuracy": {"type": "number"}, "roc_auc": {"type": "number"}, "recall": {"type": "number"}, "precision": {"type": "number"}, "f1_score": {"type": "number"}, "negative_recall": {"type": "number"}, "negative_precision": {"type": "number"}, "neg... |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"level": {"type": "string"}, "titles": {"type": "object", "properties": {"de": {"type": "string"}, "en": {"type": "string"}}, "required": ["de", "en"]}, "can_search": {"type": "boolean"}, "can_describe": {"type"... | {"level" : "0", "titles" : {"de" : "Aaaaaaaaaaaa", "en" : "Aaaaaaaaaaaa"}, "can_search" : true, "can_describe" : true, "groups" : ["assembly"], "location_type" : "poi", "routing_inclusion" : "default", "geometry" : {"type" : "Polygon", "coordinates" : [[[146.56, 150.5], [146.0, 146.94], [153.19, 147.19], [152.38, 151.8... | json_instruct | {"type": "object", "properties": {"level": {"type": "string"}, "titles": {"type": "object", "properties": {"de": {"type": "string"}, "en": {"type": "string"}}, "required": ["de", "en"]}, "can_search": {"type": "boolean"}, "can_describe": {"type": "boolean"}, "groups": {"type": "array", "items": {"type": "string"}}, "lo... |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"nom": {"type": "string"}, "dpt": {"type": "string"}, "inscrits": {"type": "integer"}, "abs": {"type": "integer"}, "votants": {"type": "integer"}, "blancs": {"type": "integer"}, "nuls": {"type": "integer"}, "exp": {"type": "int... | {"nom" : "Montaut", "dpt" : "Landes", "inscrits" : 477, "abs" : 54, "votants" : 423, "blancs" : 36, "nuls" : 18, "exp" : 369, "res" : [{"panneau" : "1", "voix" : 280}, {"panneau" : "2", "voix" : 89}]} | json_instruct | {"type": "object", "properties": {"nom": {"type": "string"}, "dpt": {"type": "string"}, "inscrits": {"type": "integer"}, "abs": {"type": "integer"}, "votants": {"type": "integer"}, "blancs": {"type": "integer"}, "nuls": {"type": "integer"}, "exp": {"type": "integer"}, "res": {"type": "array", "items": {"type": "object"... |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"python.pythonPath": {"type": "string"}}, "required": ["python.pythonPath"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"python.pythonPath" : "C:\\Users\\jakez\\.virtualenvs\\Taskforce-7-l0g09f\\Scripts\\python.exe"} | json_instruct | {"type": "object", "properties": {"python.pythonPath": {"type": "string"}}, "required": ["python.pythonPath"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"balanceRecords": {"type": "array", "items": {"type": "object", "properties": {"date": {"type": "string"}, "balance": {"type": "string"}}, "required": ["date", "balance"]}}}, "required": ["balanceRecords"], "$schema"... | {"balanceRecords" : [{"date" : "2016-06-01", "balance" : "3000"}, {"date" : "2016-05-31", "balance" : "3000"}, {"date" : "2016-05-30", "balance" : "3000"}, {"date" : "2016-05-29", "balance" : "6000"}, {"date" : "2016-05-28", "balance" : "6000"}, {"date" : "2016-05-27", "balance" : "6000"}, {"date" : "2016-05-26", "bala... | json_instruct | {"type": "object", "properties": {"balanceRecords": {"type": "array", "items": {"type": "object", "properties": {"date": {"type": "string"}, "balance": {"type": "string"}}, "required": ["date", "balance"]}}}, "required": ["balanceRecords"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"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_arlj5ieu", "name" : "WeltenbauerClub"}, "date" : {"day" : 1623369600, "full" : 1623437959, "month" : 1622505600, "week" : 1622937600}, "id" : "t3_nxnh7r", "picture" : {"filesize" : 283546, "fullUrl" : "https://preview.redd.it/crtna3izoo471.jpg?width=1816&format=pjpg&auto=webp&s=c379ecefb704c6d71... | 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"}},... |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"class": {"type": "object", "properties": {"defaultDistinct": {"type": "string"}, "defaultKind": {"type": "string"}, "defaultOrdered": {"type": "string"}, "isAbstract": {"type": "string"}, "label": {"type": "string"}}, "required"... | {"class" : {"defaultDistinct" : "lr 3/9/2006 11:33", "defaultKind" : "lr 9/3/2009 17:23", "defaultOrdered" : "lr 3/9/2006 11:33", "isAbstract" : "lr 3/9/2006 11:33", "label" : "lr 3/9/2006 11:33"}, "instance" : {"acceptMagritte:" : "StephanEggermont 4/16/2015 11:06", "beDistinct" : "lr 3/9/2006 11:32", "beIndefinite" :... | json_instruct | {"type": "object", "properties": {"class": {"type": "object", "properties": {"defaultDistinct": {"type": "string"}, "defaultKind": {"type": "string"}, "defaultOrdered": {"type": "string"}, "isAbstract": {"type": "string"}, "label": {"type": "string"}}, "required": ["defaultDistinct", "defaultKind", "defaultOrdered", "i... |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"assessment": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "weight": {"type": "integer"}}, "required": ["name", "weight"]}}}, "required": ["assessment"], "$schema": "http://json-schema.... | {"assessment" : [{"name" : "Blog Posts and Essay", "weight" : 50}, {"name" : "Research Report", "weight" : 50}]} | json_instruct | {"type": "object", "properties": {"assessment": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "weight": {"type": "integer"}}, "required": ["name", "weight"]}}}, "required": ["assessment"], "$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"}, "bin": {"type": "object", "properties": {"electron-temaki-sushi": {"type": "string"}}, "required": ["electron-temak... | {"name" : "electron-temaki-sushi", "version" : "0.0.3", "description" : "Electron Temaki Sushi", "bin" : {"electron-temaki-sushi" : "src/cli.js"}, "scripts" : {"test" : "gulp test"}, "repository" : {"type" : "git", "url" : "git+https://github.com/mh61503891/electron-temaki-sushi.git"}, "keywords" : ["electron"], "autho... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "bin": {"type": "object", "properties": {"electron-temaki-sushi": {"type": "string"}}, "required": ["electron-temaki-sushi"]}, "scripts": {"type": "object", "properties": {"test": {"type": "st... |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"language": {"type": "string"}, "ignoreWordsList": {"type": "array", "items": {"type": "string"}}, "documentTypes": {"type": "array", "items": {"type": "string"}}, "ignoreRegExp": {"type": "array", "items": {}}, "igno... | {"language" : "en_US", "ignoreWordsList" : ["ButtonLink", "IconButtonLink", "onlyActiveOnIndex", "vscode", "awcache", "pids", "wscript", "jspm", "repl"], "documentTypes" : ["markdown", "latex", "plaintext"], "ignoreRegExp" : [], "ignoreFileExtensions" : [], "checkInterval" : 5000} | json_instruct | {"type": "object", "properties": {"language": {"type": "string"}, "ignoreWordsList": {"type": "array", "items": {"type": "string"}}, "documentTypes": {"type": "array", "items": {"type": "string"}}, "ignoreRegExp": {"type": "array", "items": {}}, "ignoreFileExtensions": {"type": "array", "items": {}}, "checkInterval": {... |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"(0, 0, 2)": {"type": "string"}, "(0, 1, 1)": {"type": "string"}, "(1, 0, 1)": {"type": "string"}, "(1, 1, 1)": {"type": "string"}, "(2, 0, 1)": {"type": "string"}, "(2, 1, 1)": {"type": "string"}, "(3, 0, 1)": {"type": "str... | {"(0, 0, 2)" : "Women's artistic individual all-around", "(0, 1, 1)" : "at the Games of the XXX Olympiad", "(1, 0, 1)" : "Venue", "(1, 1, 1)" : "North Greenwich Arena", "(2, 0, 1)" : "Date", "(2, 1, 1)" : "2 August", "(3, 0, 1)" : "Competitors", "(3, 1, 1)" : "28\u00a0from 21\u00a0nations"} | json_instruct | {"type": "object", "properties": {"(0, 0, 2)": {"type": "string"}, "(0, 1, 1)": {"type": "string"}, "(1, 0, 1)": {"type": "string"}, "(1, 1, 1)": {"type": "string"}, "(2, 0, 1)": {"type": "string"}, "(2, 1, 1)": {"type": "string"}, "(3, 0, 1)": {"type": "string"}, "(3, 1, 1)": {"type": "string"}}, "required": ["(0, 0, ... |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"parent": {"type": "string"}, "textures": {"type": "object", "properties": {"layer0": {"type": "string"}}, "required": ["layer0"]}}, "required": ["parent", "textures"], "$schema": "http://json-schema.org/draft-07/s... | {"parent" : "item/generated", "textures" : {"layer0" : "bewitchment:blocks/crop_mandrake_root"}} | json_instruct | {"type": "object", "properties": {"parent": {"type": "string"}, "textures": {"type": "object", "properties": {"layer0": {"type": "string"}}, "required": ["layer0"]}}, "required": ["parent", "textures"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"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" : [[[-103.25118, 44.056476], [-103.249741, 44.059091], [-103.250056, 44.063074], [-103.248692, 44.063422], [-103.249324, 44.066681], [-103.250838, 44.069196], [-103.25019, 44.070705], [-103.251004, 44.07131], [-103.249602, 44.... | 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 a JSON structure that matches this schema definition:
{"type": "object", "properties": {"nom": {"type": "string"}, "dpt": {"type": "string"}, "inscrits": {"type": "integer"}, "abs": {"type": "integer"}, "votants": {"type": "integer"}, "blancs": {"type": "integer"}, "nuls": {"type": "integer"}, "exp": {"type": "... | {"nom" : "Saint-Etienne-de-Brillouet", "dpt" : "Vend\u00e9e", "inscrits" : 376, "abs" : 81, "votants" : 295, "blancs" : 29, "nuls" : 11, "exp" : 255, "res" : [{"panneau" : "1", "voix" : 136}, {"panneau" : "2", "voix" : 119}]} | json_instruct | {"type": "object", "properties": {"nom": {"type": "string"}, "dpt": {"type": "string"}, "inscrits": {"type": "integer"}, "abs": {"type": "integer"}, "votants": {"type": "integer"}, "blancs": {"type": "integer"}, "nuls": {"type": "integer"}, "exp": {"type": "integer"}, "res": {"type": "array", "items": {"type": "object"... |
Following the schema specification below, generate a valid JSON instance:
{"type": "array", "items": {"type": "object", "properties": {"node": {"type": "string"}, "expanded": {"type": "boolean"}, "format": {"type": "integer"}}, "required": ["node", "expanded", "format"]}, "$schema": "http://json-schema.org/draft-07/sc... | [{"node" : "GPIOA.ODR", "expanded" : true, "format" : 0}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"node": {"type": "string"}, "expanded": {"type": "boolean"}, "format": {"type": "integer"}}, "required": ["node", "expanded", "format"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"id": {"type": "string"}, "priv_key": {"type": "object", "properties": {"type": {"type": "string"}, "value": {"type": "string"}}, "required": ["type", "value"]}}, "required": ["id", "priv_key"], "$schema": "http://json-schem... | {"id" : "b424c87bc7d439b8b45db31c08e8729d8a1ff9c0", "priv_key" : {"type" : "tendermint/PrivKeyEd25519", "value" : "U6LWEvjsC7vhbKM7l7XDSQVptdAyFLSK+shUt5xOnqjoO06/1LKatdwAw/fcLhW9yVkeQ2NGkyxFHAdn/++vlw=="}} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "priv_key": {"type": "object", "properties": {"type": {"type": "string"}, "value": {"type": "string"}}, "required": ["type", "value"]}}, "required": ["id", "priv_key"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"eslint.runtime": {"type": "string"}, "typescript.tsdk": {"type": "string"}, "debug.javascript.terminalOptions": {"type": "object", "properties": {"skipFiles": {"type": "array", "items": {"type": "string"}}}, "required": ["skipFi... | {"eslint.runtime" : "third_party/node/node.py", "typescript.tsdk" : "node_modules/typescript/lib", "debug.javascript.terminalOptions" : {"skipFiles" : ["node_modules/typescript/**"]}} | json_instruct | {"type": "object", "properties": {"eslint.runtime": {"type": "string"}, "typescript.tsdk": {"type": "string"}, "debug.javascript.terminalOptions": {"type": "object", "properties": {"skipFiles": {"type": "array", "items": {"type": "string"}}}, "required": ["skipFiles"]}}, "required": ["eslint.runtime", "typescript.tsdk"... |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"data": {"type": "object", "properties": {"allMarkdownRemark": {"type": "object", "properties": {"edges": {"type": "array", "items": {"type": "object", "properties": {"node": {"type": "object", "properties": {... | {"data" : {"allMarkdownRemark" : {"edges" : [{"node" : {"excerpt" : "Are you a student in the Wellington region and interested in sharing your passion for space with others? Do you have great initiative and the ability tot work in a team?\nThen look no further! Apply to\u2026", "frontmatter" : {"title" : "Committee Rol... | json_instruct | {"type": "object", "properties": {"data": {"type": "object", "properties": {"allMarkdownRemark": {"type": "object", "properties": {"edges": {"type": "array", "items": {"type": "object", "properties": {"node": {"type": "object", "properties": {"excerpt": {"type": "string"}, "frontmatter": {"type": "object", "properties"... |
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" : "Predicting Clinical Outcomes Across Changing Electronic Health Record Systems.", "fields" : ["semantic equivalence", "rendering", "medical record", "health care", "data mining"], "abstract" : "Existing machine learning methods typically assume consistency in how semantically equivalent information is encode... | 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": {"platform": {"type": "string"}, "type": {"type": "string"}, "xml": {"type": "string"}}, "required": ["platform", "type", "xml"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"platform" : "wbit", "type" : "json", "xml" : "<xml xmlns=\"http://www.w3.org/1999/xhtml\">\n <block type=\"board\" id=\"dp=4(mR_v20rAqtNiH)=\" x=\"13\" y=\"62\">\n <field name=\"type_\">bit</field>\n <statement name=\"callbacks_\">\n <block type=\"controls_loop_forever\" id=\"8YyNlQ6wmA8E0(m,xb+;\">\n ... | json_instruct | {"type": "object", "properties": {"platform": {"type": "string"}, "type": {"type": "string"}, "xml": {"type": "string"}}, "required": ["platform", "type", "xml"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"class": {"type": "object", "properties": {"devices": {"type": "string"}}, "required": ["devices"]}, "instance": {"type": "object", "properties": {"move:": {"type": "string"}}, "required": ["move:"]}}, "required": ["class", "in... | {"class" : {"devices" : "Richo 8/7/2014 14:09"}, "instance" : {"move:" : "Richo 7/30/2014 17:32"}} | json_instruct | {"type": "object", "properties": {"class": {"type": "object", "properties": {"devices": {"type": "string"}}, "required": ["devices"]}, "instance": {"type": "object", "properties": {"move:": {"type": "string"}}, "required": ["move:"]}}, "required": ["class", "instance"], "$schema": "http://json-schema.org/draft-07/schem... |
Create a JSON structure that matches this 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"}, "wof:id": {"type... | {"id" : 404382671, "type" : "Feature", "properties" : {"src:alt_label" : "quattroshapes_pg", "src:geom" : "quattroshapes_pg", "wof:geomhash" : "e7ef84ded4f063566751559bd510aba0", "wof:id" : 404382671, "wof:repo" : "whosonfirst-data-admin-fr"}, "bbox" : [1.90694, 43.70167, 1.90694, 43.70167], "geometry" : {"coordinates"... | json_instruct | {"type": "object", "properties": {"id": {"type": "integer"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"src:alt_label": {"type": "string"}, "src:geom": {"type": "string"}, "wof:geomhash": {"type": "string"}, "wof:id": {"type": "integer"}, "wof:repo": {"type": "string"}}, "required": ["... |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "files": {"type": "array", "items": {"type": "string"}}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"pr... | {"name" : "rapidjson-writable", "version" : "1.2.1", "description" : "API to rapidjson that supports writing data asynchronously.", "files" : ["include/", "include-dirs.js"], "main" : "include-dirs.js", "scripts" : {"pretest" : "make test_minify", "test" : "tape test/*.js"}, "repository" : {"type" : "git", "url" : "git... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "files": {"type": "array", "items": {"type": "string"}}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"pretest": {"type": "string"}, "test": {"type": "string"}}, "r... |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"Delete": {"type": "string"}, "Edit": {"type": "string"}}, "required": ["Delete", "Edit"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"Delete" : "Obri\u0161i", "Edit" : "Uredi"} | json_instruct | {"type": "object", "properties": {"Delete": {"type": "string"}, "Edit": {"type": "string"}}, "required": ["Delete", "Edit"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"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"}, "wo... | {"id" : 404342549, "type" : "Feature", "properties" : {"src:alt_label" : "quattroshapes_pg", "src:geom" : "quattroshapes_pg", "wof:geomhash" : "466f3712cdb9fb4be22547be2d244253", "wof:id" : 404342549, "wof:repo" : "whosonfirst-data-admin-es"}, "bbox" : [-3.73326, 41.42412, -3.73326, 41.42412], "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": ["... |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"env": {"type": "object", "properties": {"browser": {"type": "boolean"}, "es2020": {"type": "boolean"}}, "required": ["browser", "es2020"]}, "extends": {"type": "array", "items": {"type": "string"}}, "parserOptions": {"type"... | {"env" : {"browser" : true, "es2020" : true}, "extends" : ["airbnb-base"], "parserOptions" : {"ecmaVersion" : 11, "sourceType" : "module"}, "rules" : {"strict" : "off", "no-console" : "off", "import/no-unresolved" : "off", "class-methods-use-this" : "off", "no-unused-vars" : "off"}} | json_instruct | {"type": "object", "properties": {"env": {"type": "object", "properties": {"browser": {"type": "boolean"}, "es2020": {"type": "boolean"}}, "required": ["browser", "es2020"]}, "extends": {"type": "array", "items": {"type": "string"}}, "parserOptions": {"type": "object", "properties": {"ecmaVersion": {"type": "integer"},... |
Construct a JSON document that adheres to this schema specification:
{"type": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [[1911, 6], [1912, 6], [1913, 11], [1914, 12], [1915, 8], [1916, 18], [1917, 18], [1918, 27], [1919, 26], [1920, 44], [1921, 37], [1922, 43], [1923, 58], [1924, 68], [1925, 57], [1926, 70], [1927, 73], [1928, 73], [1929, 64], [1930, 54], [1931, 61], [1932, 60], [1933, 38], [1934, 43], [1935, 36], [1936, 28], [1937, 34]... | 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": {"schema_version": {"type": "string"}, "id": {"type": "string"}, "modified": {"type": "string"}, "published": {"type": "string"}, "aliases": {"type": "array", "items": {"type": "string"}}, "details": {"type": "string"}, "seve... | {"schema_version" : "1.2.0", "id" : "GHSA-pcmr-f7vq-p97c", "modified" : "2022-04-30T18:20:57Z", "published" : "2022-04-30T18:20:57Z", "aliases" : ["CVE-2002-1312"], "details" : "Buffer overflow in the Web management interface in Linksys BEFW11S4 wireless access point router 2 and BEFSR11, BEFSR41, and BEFSRU31 EtherFas... | 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": {}}, "affected": {"type": "a... |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"category": {"type": "string"}, "description": {"type": "string"}, "ignore": {"type": "boolean"}, "images": {"type": "array", "items": {"type": "string"}}, "keywords": {"type": "array", "items": {"type": "string"}}, "redirect_f... | {"category" : "Search and Query", "description" : "Execute an attribute and spatial query on the sublayers of an ArcGIS map image layer.", "ignore" : false, "images" : ["query-map-image-sublayer.png"], "keywords" : ["Search and Query", "ArcGISMapImageLayer", "ArcGISMapImageSublayer", "QueryParameters", "ServiceFeatureT... | json_instruct | {"type": "object", "properties": {"category": {"type": "string"}, "description": {"type": "string"}, "ignore": {"type": "boolean"}, "images": {"type": "array", "items": {"type": "string"}}, "keywords": {"type": "array", "items": {"type": "string"}}, "redirect_from": {"type": "string"}, "relevant_apis": {"type": "array"... |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"@fortawesome/fontawesome-free": {"type":... | {"name" : "gramex-apps-ui", "version" : "1.58.0", "author" : "Bhanu K <bhanu.kamapantula@gramener.com>", "license" : "MIT", "dependencies" : {"@fortawesome/fontawesome-free" : "5", "bootstrap" : "4.4.1", "bootstrap-select" : "1.13", "d3" : "4", "d3-scale-chromatic" : "*", "d3v5" : "npm:d3@5", "daterangepicker" : "2", "... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"@fortawesome/fontawesome-free": {"type": "string"}, "bootstrap": {"type": "string"}, "bootstrap-select": {"type": "... |
Please provide a valid JSON object following 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.375, 42.583333333333336], [129.375, 42.666666666666664], [129.5, 42.666666666666664], [129.5, 42.583333333333336], [129.375, 42.583333333333336]]]}, "properties" : {"code" : 632973, "url" : "http://madefor.github.io/0410/api/v1/632973.geojson... | 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... |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"classAWithElementRef": {"type": "object", "properties": {"theValues": {"type": "array", "items": {}}, "a": {"type": "string"}}, "required": ["theValues", "a"]}}, "required": ["classAWithElementRef"], "$schema": "http://json-sche... | {"classAWithElementRef" : {"theValues" : [], "a" : "someValue"}} | json_instruct | {"type": "object", "properties": {"classAWithElementRef": {"type": "object", "properties": {"theValues": {"type": "array", "items": {}}, "a": {"type": "string"}}, "required": ["theValues", "a"]}}, "required": ["classAWithElementRef"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"id": {"type": "string"}, "district_id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "district_id", "name"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "9417061002", "district_id" : "9417061", "name" : "BUMI"} | 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 a JSON structure that matches this schema definition:
{"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "frequency": {"type": "integer"}, "gender": {"type": "string"}}, "required": ["name", "frequency", "gender"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"name" : "THREASA", "frequency" : 3, "gender" : "female"}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "frequency": {"type": "integer"}, "gender": {"type": "string"}}, "required": ["name", "frequency", "gender"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"id_9728": {"type": "object", "properties": {"title": {"type": "string"}, "language": {"type": "string"}, "totaltime": {"type": "string"}, "url_librivox": {"type": "string"}, "url_iarchive": {"type": "string"}, "readers": {"typ... | {"id_9728" : {"title" : "Defence of the Bride and Other Poems", "language" : "English", "totaltime" : "03:04:43", "url_librivox" : "http://librivox.org/the-defence-of-the-bride-and-other-poems-by-anna-katharine-green/", "url_iarchive" : "http://archive.org/details/the_defence_of_the_bride_1509_librivox", "readers" : ["... | json_instruct | {"type": "object", "properties": {"id_9728": {"type": "object", "properties": {"title": {"type": "string"}, "language": {"type": "string"}, "totaltime": {"type": "string"}, "url_librivox": {"type": "string"}, "url_iarchive": {"type": "string"}, "readers": {"type": "array", "items": {"type": "string"}}, "authors": {"typ... |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "repository": {"type": "string"}, "author": {"type": "string"}, "license": {"type": "string"}, "keywords": {"type": "array... | {"name" : "@backbrace/sample-app", "version" : "0.1.0-alpha.1", "description" : "Sample backbrace app.", "repository" : "https://github.com/backbrace/backbrace/tree/master/packages/backbrace-sample-app", "author" : "Paul Fisher <paulfisher53@gmail.com>", "license" : "MIT", "keywords" : ["backbrace", "sample"], "depende... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "repository": {"type": "string"}, "author": {"type": "string"}, "license": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "dependencies": {"type": "object", "p... |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"name": {"type": "string"}, "type": {"type": "string"}, "symbol": {"type": "string"}, "decimals": {"type": "integer"}, "website": {"type": "string"}, "description": {"type": "string"}, "explorer": {"type": "string"}, "status... | {"name" : "Dare Token", "type" : "BEP20", "symbol" : "DRE", "decimals" : 18, "website" : "https://www.daretoken.io/", "description" : "DareToken is a revolutionary funtech market project aimed at decentralizing online competitions and challenges", "explorer" : "https://bscscan.com/token/0xD589699b20903fC061701Ad6A35Cb7... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "type": {"type": "string"}, "symbol": {"type": "string"}, "decimals": {"type": "integer"}, "website": {"type": "string"}, "description": {"type": "string"}, "explorer": {"type": "string"}, "status": {"type": "string"}, "id": {"type": "string"}, "logo": {"typ... |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"description": {"type": "string"}, "duration": {"type": "integer"}, "recorded": {"type": "string"}, "speakers": {"type": "array", "items": {"type": "string"}}, "thumbnail_url": {"type": "string"}, "title": {"t... | {"description" : "Testing applications integrated with django CMS can be complex with a\nlot of boilerplate code and some dark corners This talk will try to make\nit clearer and easier to write tests and will present tools to reduce\nthe effort and the boilerplate", "duration" : 1793, "recorded" : "2015-09-20", "speake... | json_instruct | {"type": "object", "properties": {"description": {"type": "string"}, "duration": {"type": "integer"}, "recorded": {"type": "string"}, "speakers": {"type": "array", "items": {"type": "string"}}, "thumbnail_url": {"type": "string"}, "title": {"type": "string"}, "videos": {"type": "array", "items": {"type": "object", "pro... |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "lint": {"type": "string"}}, "requ... | {"name" : "curry-uuid", "version" : "1.0.0", "description" : "A UUID generation system that uses currying.", "main" : "./src/index.js", "scripts" : {"test" : "mocha test.js", "lint" : "eslint \"./**/*.js\" --ignore-path .gitignore"}, "repository" : {"type" : "git", "url" : "git+https://github.com/haykam821/Curry-UUID.g... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "lint": {"type": "string"}}, "required": ["test", "lint"]}, "repository": {"type": "object"... |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"last_date": {"type": "string"}, "provinsi": {"type": "string"}, "kasus_total": {"type": "integer"}, "kasus_tanpa_tgl": {"type": "integer"}, "kasus_dengan_tgl": {"type": "integer"}, "meninggal_persen": {"type": "number"}, "meni... | {"last_date" : "2020-09-22", "provinsi" : "SUMATERA SELATAN", "kasus_total" : 5497, "kasus_tanpa_tgl" : 1, "kasus_dengan_tgl" : 5496, "meninggal_persen" : 5.9123158086228855, "meninggal_tanpa_tgl" : 2, "meninggal_dengan_tgl" : 323, "sembuh_persen" : 73.62197562306713, "sembuh_tanpa_tgl" : 1, "sembuh_dengan_tgl" : 4046,... | json_instruct | {"type": "object", "properties": {"last_date": {"type": "string"}, "provinsi": {"type": "string"}, "kasus_total": {"type": "integer"}, "kasus_tanpa_tgl": {"type": "integer"}, "kasus_dengan_tgl": {"type": "integer"}, "meninggal_persen": {"type": "number"}, "meninggal_tanpa_tgl": {"type": "integer"}, "meninggal_dengan_tg... |
Construct a JSON document that adheres to this schema specification:
{"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "idPlugin": {"type": "string"}, "scope": {"type": "string"}, "idModel": {"type": "string"}, "value": {"type": "string"}, "access": {"type": "string"}, "dateLastUpd... | [{"id" : "5fd0e140d3128233297a8d59", "idPlugin" : "597cbecff4fe5f1d91d4b614", "scope" : "card", "idModel" : "5fc4b6f17248ea063a8cb809", "value" : "{\"estimate\":\"2\"}", "access" : "shared", "dateLastUpdated" : "2020-12-09T14:37:52.089Z"}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "idPlugin": {"type": "string"}, "scope": {"type": "string"}, "idModel": {"type": "string"}, "value": {"type": "string"}, "access": {"type": "string"}, "dateLastUpdated": {"type": "string"}}, "required": ["id", "idPlugin", "scope", "i... |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"patthana16.26:1.1": {"type": "string"}, "patthana16.26:2.1": {"type": "string"}, "patthana16.26:3.1": {"type": "string"}, "patthana16.26:4.1": {"type": "string"}, "patthana16.26:5.1": {"type": "string"}, "patthana16... | {"patthana16.26:1.1" : "bj52.1553, ms40P16_168, msdiv65, sc1, sya45.255", "patthana16.26:2.1" : "ms40P16_169, sc2", "patthana16.26:3.1" : "csp2ed40.266, ms40P16_170, sc3", "patthana16.26:4.1" : "ms40P16_171, sc4", "patthana16.26:5.1" : "ms40P16_172, msdiv66, ndp41.238, sc5", "patthana16.26:6.1" : "dr45.251, ms40P16_173... | json_instruct | {"type": "object", "properties": {"patthana16.26:1.1": {"type": "string"}, "patthana16.26:2.1": {"type": "string"}, "patthana16.26:3.1": {"type": "string"}, "patthana16.26:4.1": {"type": "string"}, "patthana16.26:5.1": {"type": "string"}, "patthana16.26:6.1": {"type": "string"}, "patthana16.26:7.1": {"type": "string"},... |
Create a JSON structure that matches this schema definition:
{"type": "array", "items": {"type": "object", "properties": {"info": {"type": "string"}, "user_id": {"type": "integer"}, "links": {"type": "array", "items": {"type": "string"}}, "task_id": {"type": "integer"}, "created": {"type": "string"}, "finish_time": {"... | [{"info" : "{\"mmsi\":\"418197905\",\"vesselType\":\"not_fishing\",\"search\":\"Yes\",\"search_url\":\"https://www.fleetmon.com/vessels/penghai16_0_10107296/?language=en\"}", "user_id" : 20, "links" : ["<link rel='parent' title='project' href='http://crowd.globalfishingwatch.org/api/project/19'/>", "<link rel='parent' ... | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"info": {"type": "string"}, "user_id": {"type": "integer"}, "links": {"type": "array", "items": {"type": "string"}}, "task_id": {"type": "integer"}, "created": {"type": "string"}, "finish_time": {"type": "string"}, "calibration": {"type": "null"}, "user_ip": ... |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "start": {"type": "... | {"name" : "dockers", "version" : "1.0.0", "description" : "'Wilson, Sons Academy'", "main" : "index.js", "scripts" : {"test" : "echo \"Error: no test specified\" && exit 1", "start" : "npm run open", "open" : "concurrently \"http-server -a localhost -p 8080\" \"open http://localhost:8080/build\""}, "repository" : {"typ... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "start": {"type": "string"}, "open": {"type": "string"}}, "required": ["test", "start", "op... |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"name": {"type": "string"}, "desc": {"type": "string"}, "url": {"type": "string"}, "oauth2": {"type": "object", "properties": {"authorize": {"type": "string"}, "access_token": {"type": "string"}, "request": {"... | {"name" : "QIP.ru", "desc" : "QIP is a multiprotocol instant messaging client. It is a closed source freeware program originally developed by Ilgam Zyulkorneev. In 2008 it was bought by RosBusinessConsulting media group and named most popular RBC service in 2009.", "url" : "https://openapi.qip.ru/oauth", "oauth2" : {"a... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "desc": {"type": "string"}, "url": {"type": "string"}, "oauth2": {"type": "object", "properties": {"authorize": {"type": "string"}, "access_token": {"type": "string"}, "request": {"type": "object", "properties": {"query": {"type": "object", "properties": {"a... |
The schema below describes a JSON structure. Generate a valid example:
{"type": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [[1924, 6], [1925, 8], [1926, 6], [1932, 5]] | 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": {"as3mxml.sdk.framework": {"type": "string"}}, "required": ["as3mxml.sdk.framework"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"as3mxml.sdk.framework" : "f:\\FlexSDKs\\33.1.713"} | json_instruct | {"type": "object", "properties": {"as3mxml.sdk.framework": {"type": "string"}}, "required": ["as3mxml.sdk.framework"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"accession_number": {"type": "string"}, "actors": {"type": "array", "items": {"type": "object", "properties": {"ULAN": {"type": "object", "properties": {"Name": {"type": "string"}, "UlanIdNo": {"type": "string"}}, "required"... | {"accession_number" : "1996.134", "actors" : [{"ULAN" : {"Name" : "Jay, Isabella Lee", "UlanIdNo" : "500029744"}, "after_follower" : null, "birth_date" : "active from 1879", "collaboration" : null, "death_date" : "1919", "display_name" : "Jay, Isabella Lee", "first" : "Isabella", "fullname" : "Isabella L. Jay", "irn" :... | json_instruct | {"type": "object", "properties": {"accession_number": {"type": "string"}, "actors": {"type": "array", "items": {"type": "object", "properties": {"ULAN": {"type": "object", "properties": {"Name": {"type": "string"}, "UlanIdNo": {"type": "string"}}, "required": ["Name", "UlanIdNo"]}, "after_follower": {"type": "null"}, "... |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"cam/image_array": {"type": "string"}, "user/throttle": {"type": "number"}, "timestamp": {"type": "string"}, "user/angle": {"type": "number"}, "user/mode": {"type": "string"}}, "required": ["cam/image_array", "u... | {"cam/image_array" : "888_cam-image_array_.jpg", "user/throttle" : 0.14846644489883115, "timestamp" : "2019-02-17 21:48:27.477931", "user/angle" : 0.0, "user/mode" : "user"} | json_instruct | {"type": "object", "properties": {"cam/image_array": {"type": "string"}, "user/throttle": {"type": "number"}, "timestamp": {"type": "string"}, "user/angle": {"type": "number"}, "user/mode": {"type": "string"}}, "required": ["cam/image_array", "user/throttle", "timestamp", "user/angle", "user/mode"], "$schema": "http://... |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"id": {"type": "string"}, "instances": {"type": "integer"}, "container": {"type": "object", "properties": {"type": {"type": "string"}, "docker": {"type": "object", "properties": {"image": {"type": "string"}}, ... | {"id" : "/kafka-client", "instances" : 1, "container" : {"type" : "MESOS", "docker" : {"image" : "wurstmeister/kafka:0.11.0.0"}}, "cpus" : 0.5, "mem" : 256, "cmd" : "sleep 100000"} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "instances": {"type": "integer"}, "container": {"type": "object", "properties": {"type": {"type": "string"}, "docker": {"type": "object", "properties": {"image": {"type": "string"}}, "required": ["image"]}}, "required": ["type", "docker"]}, "cpus": {"type": "n... |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"name": {"type": "string"}, "$collection": {"type": "string"}, "uuid": {"type": "string"}, "font__name": {"type": "string"}, "code": {"type": "integer"}}, "required": ["name", "$collection", "uuid", "font__name", "co... | {"name" : "FontAwesome | caret-square-o-left", "$collection" : "main.glyphs", "uuid" : "6063fdf2-97f1-4078-9def-a0a8a310382e", "font__name" : "FontAwesome", "code" : 61841} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "$collection": {"type": "string"}, "uuid": {"type": "string"}, "font__name": {"type": "string"}, "code": {"type": "integer"}}, "required": ["name", "$collection", "uuid", "font__name", "code"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"glamorous.umd.js": {"type": "string"}, "glamorous.umd.min.js": {"type": "string"}}, "required": ["glamorous.umd.js", "glamorous.umd.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"glamorous.umd.js" : "sha256-5NodONBOsTPiswwKXgNHLVziobevjbR+OlvT/EZk66Y=", "glamorous.umd.min.js" : "sha256-0wFaDjQ5tP6k8jVYsuXJh3xbnnR0E/ovEZBXS0NZ97w="} | json_instruct | {"type": "object", "properties": {"glamorous.umd.js": {"type": "string"}, "glamorous.umd.min.js": {"type": "string"}}, "required": ["glamorous.umd.js", "glamorous.umd.min.js"], "$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" : ["Heat oil in a Dutch oven over medium-high heat. Cook and stir green bell pepper, yellow bell pepper, onion, and garlic in hot oil until tender, 5 to 7 minutes. Season the mixture with salt and pepper.", "Stir tomatoes, wine, 1/4 cup parsley, basil, oregano, and red pepper flakes into the bell pepper m... | 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... |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "author": {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"]}, "dependencies": {"type": "object", "p... | {"name" : "nodeToProcessing", "version" : "0.1.0", "description" : "simple serial-to-broswer server application", "author" : {"name" : "Tom Igoe"}, "dependencies" : {"serialport" : "1.1.x", "express" : "3.x"}, "engines" : {"node" : "0.10.x", "npm" : "1.3.x"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "author": {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"]}, "dependencies": {"type": "object", "properties": {"serialport": {"type": "string"}, "express": {... |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"timestamp": {"type": "string"}, "data": {"type": "array", "items": {"type": "object", "properties": {"data_type": {"type": "string"}, "value": {"type": "string"}, "max": {"type": "string"}, "min": {"type": "string"}, "sd": {"t... | {"timestamp" : "2020-12-21T22:12:35Z", "data" : [{"data_type" : "pm10", "value" : "21.77", "max" : "26.00", "min" : "18.00", "sd" : "1.44"}, {"data_type" : "pm2.5", "value" : "19.97", "max" : "23.00", "min" : "17.00", "sd" : "1.32"}, {"data_type" : "pm1", "value" : "12.73", "max" : "15.00", "min" : "11.00", "sd" : "1.1... | json_instruct | {"type": "object", "properties": {"timestamp": {"type": "string"}, "data": {"type": "array", "items": {"type": "object", "properties": {"data_type": {"type": "string"}, "value": {"type": "string"}, "max": {"type": "string"}, "min": {"type": "string"}, "sd": {"type": "string"}}, "required": ["data_type", "value", "max",... |
The schema below describes a JSON structure. Generate a valid example:
{"type": "array", "items": {"type": "object", "properties": {"namaKab": {"type": "string"}, "originalFilename": {"type": "string"}, "namaPartai": {"type": "string"}, "id": {"type": "integer"}, "noUrut": {"type": "integer"}, "nama": {"type": "string... | [{"namaKab" : "BEKASI", "originalFilename" : "JAMIL - Foto (2).jpg", "namaPartai" : "PARTAI AMANAT NASIONAL", "id" : 65793, "noUrut" : 1, "nama" : "JAMIL, SE", "stringJenisKelamin" : "Laki-Laki"}, {"namaKab" : "BEKASI", "originalFilename" : "AGUS PRAMULYANA - new.jpg", "namaPartai" : "PARTAI AMANAT NASIONAL", "id" : 51... | 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", "... |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "license": {"type": "string"}, "description": {"type": "string"}, "author": {"type": "string"}, "main": {"type": "string"}, "types": {"type": "string"}, "scripts": {"ty... | {"name" : "posthtml-plugin-template", "version" : "0.2.0", "license" : "MIT", "description" : "Template for authoring PostHTML plugins in TypeScript", "author" : "Eric Liu (https://github.com/metonym)", "main" : "lib/plugin.js", "types" : "lib/plugin.d.ts", "scripts" : {"test" : "tsnd src/**.test.ts", "test:tdd" : "tsn... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "license": {"type": "string"}, "description": {"type": "string"}, "author": {"type": "string"}, "main": {"type": "string"}, "types": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "... |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"900086961": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900086962": {"type": "object", "properties": {"nama": {"t... | {"900086961" : {"nama" : "TPS 1", "dapil" : [1501, 11504, 2157203]}, "900086962" : {"nama" : "TPS 2", "dapil" : [1501, 11504, 2157203]}} | json_instruct | {"type": "object", "properties": {"900086961": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900086962": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": ... |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "json_class": {"type": "string"}, "default_attributes": {"type": "object", "properties": {"env": {"type": "object", "properties": {"packages": {"type":... | {"name" : "os-ha-database", "description" : "Highly available database server role for all OpenStack services", "json_class" : "Chef::Role", "default_attributes" : {"env" : {"packages" : {"debian" : ["percona-xtradb-cluster-galera-2.x"]}}, "percona" : {"main_config_file" : "/etc/mysql/my.cnf", "server" : {"bind_address... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "json_class": {"type": "string"}, "default_attributes": {"type": "object", "properties": {"env": {"type": "object", "properties": {"packages": {"type": "object", "properties": {"debian": {"type": "array", "items": {"type": ... |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"900008992": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900008993": {"type": "object", "properties": {"nam... | {"900008992" : {"nama" : "TPS 1", "dapil" : [1102, 11103, 2111105]}, "900008993" : {"nama" : "TPS 2", "dapil" : [1102, 11103, 2111105]}} | json_instruct | {"type": "object", "properties": {"900008992": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900008993": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": ... |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"total": {"type": "integer"}, "list": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "title": {"type": "string"}, "content": {"type": "string"}, "id": {"type": "integer"... | {"total" : 7, "list" : [{"name" : "\u6211\u7684\u806a", "title" : "\u5361\u673a\u561b", "content" : "\u5361\u673a\u561b\uff0c\u554a\u90fdK", "id" : 1559640872592, "time" : "2019-06-04 17:34:32"}, {"name" : "\u82e6\u6da9\u7684\u6c99", "title" : "\u5439\u62c2\u8138\u5e9e", "content" : "\u7684\u8d76\u811a\uff0c\u5361\u673... | json_instruct | {"type": "object", "properties": {"total": {"type": "integer"}, "list": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "title": {"type": "string"}, "content": {"type": "string"}, "id": {"type": "integer"}, "time": {"type": "string"}}, "required": ["name", "title", "content", "i... |
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"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": ... | {"name" : "promises-retry", "version" : "3.0.5", "description" : "Retry promises with exponential back-off strategy. Exit on custom logic before the maximum number of retries.", "main" : "index.js", "repository" : {"type" : "git", "url" : "https://github.com/tudor33sud/promises-retry"}, "scripts" : {"test" : "mocha ./t... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "scripts": {"type": "object", ... |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"variants": {"type": "object", "properties": {"": {"type": "object", "properties": {"model": {"type": "string"}}, "required": ["model"]}}, "required": [""]}}, "required": ["variants"], "$schema": "http://json-... | {"variants" : {"" : {"model" : "rechiseled_compat:block/genericeco_walnut_planks_bricks_connecting"}}} | json_instruct | {"type": "object", "properties": {"variants": {"type": "object", "properties": {"": {"type": "object", "properties": {"model": {"type": "string"}}, "required": ["model"]}}, "required": [""]}}, "required": ["variants"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"id": {"type": "string"}, "provinceId": {"type": "string"}, "regencyId": {"type": "string"}, "districtId": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "provinceId", "regencyId", "distri... | {"id" : "2021", "provinceId" : "33", "regencyId" : "16", "districtId" : "09", "name" : "Patalan"} | 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": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["ty... | {"name" : "@appku/secure", "version" : "0.5.0", "description" : "A utility library to provide cryptographic functionality to the AppKu ecosystem of tools and apps.", "repository" : {"type" : "git", "url" : "git@github.com:appku/secure.git"}, "bugs" : {"url" : "https://github.com/appku/secure/issues"}, "keywords" : ["cr... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "bugs": {"type": "object", "properties": {"url": {"type": ... |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"probe_id": {"type": "integer"}, "resolvers": {"type": "array", "items": {"type": "object", "properties": {"ipv6_tcp": {"type": "boolean"}, "resolver_asn": {"type": "integer"}, "resolver_net": {"type": "string"}, "... | {"probe_id" : 16898, "resolvers" : [{"ipv6_tcp" : true, "resolver_asn" : 15169, "resolver_net" : "74.125.0.0/18", "ipv4_tcp" : true, "internal" : "10.200.0.1", "ipv6_cap" : true, "edns0_client_subnet" : "207.255.62.0/24"}]} | json_instruct | {"type": "object", "properties": {"probe_id": {"type": "integer"}, "resolvers": {"type": "array", "items": {"type": "object", "properties": {"ipv6_tcp": {"type": "boolean"}, "resolver_asn": {"type": "integer"}, "resolver_net": {"type": "string"}, "ipv4_tcp": {"type": "boolean"}, "internal": {"type": "string"}, "ipv6_ca... |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "location": {"type": "string"}, "building": {"type": "string"}, "room": {"type": "string"}, "start": {"type": "string"}, "end": {"type": "string"}, "weekday": {... | [{"name" : "Einf\u00fchrung in die Software-Entwicklung (Pulverm\u00fcller, Huning, Baumgartner)", "location" : "Vorlesung", "building" : "", "room" : "", "start" : "16:00", "end" : "18:00", "weekday" : 0, "color" : "#682c8b"}, {"name" : "Masterseminar Software Engineering (Pulverm\u00fcller, Baumgartner, Huning et al.... | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "location": {"type": "string"}, "building": {"type": "string"}, "room": {"type": "string"}, "start": {"type": "string"}, "end": {"type": "string"}, "weekday": {"type": "integer"}, "color": {"type": "string"}}, "required": ["name", ... |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"videojs-dash.js": {"type": "string"}, "videojs-dash.min.js": {"type": "string"}}, "required": ["videojs-dash.js", "videojs-dash.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"videojs-dash.js" : "sha512-BgqZy0TFW8dWjeUfmjDgsEaf9c+YFImPrEkkaoTcCIRzYCekxDhAQXzabH4hfEn2z3oApqTXcwdGMbh5CZKg4Q==", "videojs-dash.min.js" : "sha512-yQlMSjAkljDcwC6BF4FXWQtwHtNo4p7HQUsQUQ/ra4CPuvCM6GwidToo21hDTAtxaIYXonDgAyX3CrIuEvLThw=="} | json_instruct | {"type": "object", "properties": {"videojs-dash.js": {"type": "string"}, "videojs-dash.min.js": {"type": "string"}}, "required": ["videojs-dash.js", "videojs-dash.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"compilerOptions": {"type": "object", "properties": {"baseUrl": {"type": "string"}, "paths": {"type": "object", "properties": {"@utils/*": {"type": "array", "items": {"type": "string"}}, "@tests/*": {"type": "ar... | {"compilerOptions" : {"baseUrl" : "backend/src", "paths" : {"@utils/*" : ["utils/*"], "@tests/*" : ["test/*"], "@modules/*" : ["modules/*"], "@shared/*" : ["shared/*"], "@schemas/*" : ["schemas/*"], "@config/*" : ["config/*"], "@validations/*" : ["validations/*"], "@controllers/*" : ["controllers/*"], "@models/*" : ["m... | json_instruct | {"type": "object", "properties": {"compilerOptions": {"type": "object", "properties": {"baseUrl": {"type": "string"}, "paths": {"type": "object", "properties": {"@utils/*": {"type": "array", "items": {"type": "string"}}, "@tests/*": {"type": "array", "items": {"type": "string"}}, "@modules/*": {"type": "array", "items"... |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"responses": {"type": "array", "items": {"type": "object", "properties": {"labelAnnotations": {"type": "array", "items": {"type": "object", "properties": {"mid": {"type": "string"}, "description": {"type": "string"... | {"responses" : [{"labelAnnotations" : [{"mid" : "/m/02q08p0", "description" : "Dish", "score" : 0.99340349, "topicality" : 0.99340349}, {"mid" : "/m/01ykh", "description" : "Cuisine", "score" : 0.98642081, "topicality" : 0.98642081}, {"mid" : "/m/02wbm", "description" : "Food", "score" : 0.97343695, "topicality" : 0.97... | json_instruct | {"type": "object", "properties": {"responses": {"type": "array", "items": {"type": "object", "properties": {"labelAnnotations": {"type": "array", "items": {"type": "object", "properties": {"mid": {"type": "string"}, "description": {"type": "string"}, "score": {"type": "number"}, "topicality": {"type": "number"}}, "requ... |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"tutorial": {"type": "string"}, "pageNumber": {"type": "integer"}, "type": {"type": "string"}, "definition": {"type": "object", "properties": {"icon": {"type": "object", "properties": {"project": {"type": "string"}, "name": ... | {"tutorial" : "Defining a Trading Idea", "pageNumber" : 17, "type" : "Tutorial Step - Breakdown of the BBs", "definition" : {"icon" : {"project" : "Foundations", "name" : "layer-candles"}, "text" : "Weak-hands Buster is based on the idea that a breakdown of the BB may predict a deepening of a downtrend and some reversa... | json_instruct | {"type": "object", "properties": {"tutorial": {"type": "string"}, "pageNumber": {"type": "integer"}, "type": {"type": "string"}, "definition": {"type": "object", "properties": {"icon": {"type": "object", "properties": {"project": {"type": "string"}, "name": {"type": "string"}}, "required": ["project", "name"]}, "text":... |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "e... | {"name" : "binjar/breadcrumbs", "description" : "This build breadcumbs easily", "authors" : [{"name" : "Touhidur Rahman", "email" : "shantotrs@gmail.com"}], "license" : "MIT License", "require" : {}, "autoload" : {"psr-4" : {"Binjar\\Breadcrumbs\\" : "src/"}}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}}, "license": {"type": "string"}, "require": {"type": "object",... |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"Name": {"type": "string"}, "ShortName": {"type": "string"}, "Description": {"type": "string"}}, "required": ["Name", "ShortName", "Description"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"Name" : "R\u00e9ducteur de son Fischer Development FD917", "ShortName" : "FD917", "Description" : "R\u00e9ducteur de son QD (Quick Detach) produit par Fischer Development."} | json_instruct | {"type": "object", "properties": {"Name": {"type": "string"}, "ShortName": {"type": "string"}, "Description": {"type": "string"}}, "required": ["Name", "ShortName", "Description"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"74654": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "74651": {"type": "object", "properties": {"nama": {"type": "s... | {"74654" : {"nama" : "ANAIWOI", "dapil" : [74, 7401, 17401, 2747105]}, "74651" : {"nama" : "BENDE", "dapil" : [74, 7401, 17401, 2747105]}, "74650" : {"nama" : "KADIA", "dapil" : [74, 7401, 17401, 2747105]}, "74652" : {"nama" : "PONDAMBEA", "dapil" : [74, 7401, 17401, 2747105]}, "74653" : {"nama" : "WOWAWANGGU", "dapil"... | json_instruct | {"type": "object", "properties": {"74654": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "74651": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer... |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"index_patterns": {"type": "array", "items": {"type": "string"}}, "template": {"type": "object", "properties": {"aliases": {"type": "object", "properties": {"nrm-tomcat-localhost": {"type": "object", "properties": {}, "required... | {"index_patterns" : ["nrm-tomcat-localhost-*"], "template" : {"aliases" : {"nrm-tomcat-localhost" : {}}, "settings" : {"number_of_shards" : 1, "number_of_replicas" : 1}, "mappings" : {"dynamic" : "strict"}}, "priority" : 300, "composed_of" : ["ecs_agent_1.12", "ecs_base_1.12", "ecs_ecs_1.12", "ecs_event_1.12", "ecs_hos... | json_instruct | {"type": "object", "properties": {"index_patterns": {"type": "array", "items": {"type": "string"}}, "template": {"type": "object", "properties": {"aliases": {"type": "object", "properties": {"nrm-tomcat-localhost": {"type": "object", "properties": {}, "required": []}}, "required": ["nrm-tomcat-localhost"]}, "settings":... |
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" : "0x3eab8761584f71b51a096a622f7294f045c2357c", "tool" : "solhint", "start" : 1563434972.8452387, "end" : 1563434975.9302473, "duration" : 3.0850086212158203, "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://... |
Construct a JSON document that adheres to this schema specification:
{"type": "array", "items": {"type": "object", "properties": {"WATER_SYSTEM_NUMBER": {"type": "string"}, "WATER_SYSTEM_NAME": {"type": "string"}, "CITY": {"type": "string"}, "COUNTY": {"type": "string"}, "ZIPCODE": {"type": "string"}, "CLASSIFICATION"... | [{"WATER_SYSTEM_NUMBER" : "CA2400071", "WATER_SYSTEM_NAME" : "WASHINGTON SCHOOL", "CITY" : "WINTON", "COUNTY" : "MERCED", "ZIPCODE" : "95388", "CLASSIFICATION" : "NON-TRANSIENT NON-COMMUNITY", "POPULATION" : "190", "SERVICE_CONNECTIONS" : "4", "REGULATING_AGENCY" : "DISTRICT 11 - MERCED", "VIOLATION_NUMBER" : "9600004"... | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"WATER_SYSTEM_NUMBER": {"type": "string"}, "WATER_SYSTEM_NAME": {"type": "string"}, "CITY": {"type": "string"}, "COUNTY": {"type": "string"}, "ZIPCODE": {"type": "string"}, "CLASSIFICATION": {"type": "string"}, "POPULATION": {"type": "string"}, "SERVICE_CONNE... |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "description": {"type": "string"}, "user": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "email": {"type": "str... | {"id" : 170928, "name" : "Hide avatar on Google services", "description" : "A simple, yet useful Userstyle to hide your avatar on some Google services. This was primarily written because all Google dark themes I found inverted the avatar for some reason.\r\nIf there's demand for it, I'll expand this onto other services... | json_instruct | {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "description": {"type": "string"}, "user": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "email": {"type": "string"}, "paypal_email": {"type": "null"}, "homepage": {"type": "null"}, "about... |
Based on the schema below, produce a valid JSON object:
{"type": "array", "items": {"type": "object", "properties": {"results": {"type": "array", "items": {"type": "object", "properties": {"tech": {"type": "integer"}, "pts": {"type": "integer"}, "connections": {"type": "integer"}, "capacity": {"type": "integer"}, "inv... | [{"results" : [{"tech" : 1, "pts" : 4743, "connections" : 458648, "capacity" : 38077724, "investments" : 565128501}, {"tech" : 7, "pts" : 27, "connections" : 1567, "capacity" : 172452, "investments" : 1585399}, {"tech" : 3, "pts" : 184, "connections" : 4247, "capacity" : 1052456, "investments" : 5788529}, {"tech" : 5, ... | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"results": {"type": "array", "items": {"type": "object", "properties": {"tech": {"type": "integer"}, "pts": {"type": "integer"}, "connections": {"type": "integer"}, "capacity": {"type": "integer"}, "investments": {"type": "integer"}}, "required": ["tech", "pt... |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"val score indist": {"type": "number"}, "val score outdist": {"type": "number"}, "collisions indist": {"type": "number"}, "collisions outdist": {"type": "number"}, "_step": {"type": "integer"}, "_runtime": {"t... | {"val score indist" : 0.06407450235401008, "val score outdist" : 0.0488614703531389, "collisions indist" : Infinity, "collisions outdist" : Infinity, "_step" : 33, "_runtime" : 1045, "_timestamp" : 1610650580, "Chunk Loss" : 0.0216, "Seconds per iter" : 11, "LR" : 0.0003, "Total time (min)" : 17} | json_instruct | {"type": "object", "properties": {"val score indist": {"type": "number"}, "val score outdist": {"type": "number"}, "collisions indist": {"type": "number"}, "collisions outdist": {"type": "number"}, "_step": {"type": "integer"}, "_runtime": {"type": "integer"}, "_timestamp": {"type": "integer"}, "Chunk Loss": {"type": "... |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"nedb.js": {"type": "string"}, "nedb.min.js": {"type": "string"}}, "required": ["nedb.js", "nedb.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"nedb.js" : "sha256-1TbdgQ6EmE7rVwtjPhRzAI053f94nzOB9QPyNbt69i8=", "nedb.min.js" : "sha256-J/ebvtWhzKcMVpSNQ6CRDnvSJYFLUOUs22uo+xvx1AI="} | json_instruct | {"type": "object", "properties": {"nedb.js": {"type": "string"}, "nedb.min.js": {"type": "string"}}, "required": ["nedb.js", "nedb.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"variants": {"type": "object", "properties": {"flowering=false": {"type": "object", "properties": {"model": {"type": "string"}}, "required": ["model"]}, "flowering=true": {"type": "object", "properties": {"mod... | {"variants" : {"flowering=false" : {"model" : "wildnature:block/forsythia_leaves"}, "flowering=true" : {"model" : "wildnature:block/forsythia_leaves_flowering"}}} | json_instruct | {"type": "object", "properties": {"variants": {"type": "object", "properties": {"flowering=false": {"type": "object", "properties": {"model": {"type": "string"}}, "required": ["model"]}, "flowering=true": {"type": "object", "properties": {"model": {"type": "string"}}, "required": ["model"]}}, "required": ["flowering=fa... |
Generate a valid JSON object that conforms to the following schema:
{"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" : [661.961, 246.894, 1, 641.563, 257.172, 1, 626.738, 250.147, 1, 608.268, 294.308, 1, 643.077, 333.756, 1, 657.6, 261, 1, 656.417, 308.002, 1, 659.413, 315.783, 1, 643.149, 371.373, 1, 630.073, 434.633, 1, 636.769, 490.708, 1, 667.483, 372.74, 1, 669.441, 415.706, 1, ... | json_instruct | {"type": "object", "properties": {"version": {"type": "number"}, "people": {"type": "array", "items": {"type": "object", "properties": {"pose_keypoints_2d": {"type": "array", "items": {"type": "number"}}, "face_keypoints_2d": {"type": "array", "items": {}}, "hand_left_keypoints_2d": {"type": "array", "items": {}}, "han... |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"Name": {"type": "string"}, "ShortName": {"type": "string"}, "Description": {"type": "string"}}, "required": ["Name", "ShortName", "Description"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"Name" : "Rollo de papel higi\u00e9nico", "ShortName" : "P.H.", "Description" : "Rollo de papel higi\u00e9nico extrasuave y de doble capa. \u00a1Todo un tesoro en estos tiempos de mierda!"} | json_instruct | {"type": "object", "properties": {"Name": {"type": "string"}, "ShortName": {"type": "string"}, "Description": {"type": "string"}}, "required": ["Name", "ShortName", "Description"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "array", "items": {"type": "object", "properties": {"Id": {"type": "string"}, "ThreadId": {"type": "string"}, "Html": {"type": "string"}, "PostedDate": {"type": "string"}, "UserRole": {"type": "null"}, "MarkedAsAnswerDate": {"type": "null"}... | [{"Id" : "506796", "ThreadId" : "230797", "Html" : "<p>Does this version of Storm work with WS HTTP Bindings?</p>\r\n<p>When I try to add my Web Service I get the following output:</p>\r\n<p>Acquiring the wsdl...Resolving the wsdlendpoint...Generating code...Code generation failed.Microsoft.FSharp.Core.FailureException... | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"Id": {"type": "string"}, "ThreadId": {"type": "string"}, "Html": {"type": "string"}, "PostedDate": {"type": "string"}, "UserRole": {"type": "null"}, "MarkedAsAnswerDate": {"type": "null"}}, "required": ["Id", "ThreadId", "Html", "PostedDate", "UserRole", "Ma... |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"type": {"type": "string"}, "bbox": {"type": "array", "items": {"type": "number"}}, "transform": {"type": "object", "properties": {"scale": {"type": "array", "items": {"type": "number"}}, "translate": {"type": "array", "items":... | {"type" : "Topology", "bbox" : [132.2634288370001, -1.2843388379999396, 132.36312430100008, -1.1891564419999554], "transform" : {"scale" : [9.970543454343287e-06, 9.51919151915034e-06], "translate" : [132.2634288370001, -1.2843388379999396]}, "objects" : {"map" : {"type" : "GeometryCollection", "geometries" : [{"type" ... | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "bbox": {"type": "array", "items": {"type": "number"}}, "transform": {"type": "object", "properties": {"scale": {"type": "array", "items": {"type": "number"}}, "translate": {"type": "array", "items": {"type": "number"}}}, "required": ["scale", "translate"]},... |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"code": {"type": "string"}, "lang": {"type": "string"}, "description": {"type": "null"}, "name": {"type": "string"}, "type": {"type": "string"}}, "required": ["code", "lang", "description", "name", "type"], "$... | {"code" : "WZ93N2", "lang" : "de", "description" : null, "name" : "WZ1993 (2-Steller): Investitionserhebung", "type" : "Merkmal"} | json_instruct | {"type": "object", "properties": {"code": {"type": "string"}, "lang": {"type": "string"}, "description": {"type": "null"}, "name": {"type": "string"}, "type": {"type": "string"}}, "required": ["code", "lang", "description", "name", "type"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"rules": {"type": "object", "properties": {".read": {"type": "boolean"}, ".write": {"type": "boolean"}, "shortenedLinks": {"type": "object", "properties": {".read": {"type": "string"}, "$linkId": {"type": "object", "properties"... | {"rules" : {".read" : false, ".write" : false, "shortenedLinks" : {".read" : "auth != null && root.child('/admins/' + auth.uid).exists()", "$linkId" : {"target" : {".read" : true}}}, "admins" : {"$uid" : {".read" : "auth.uid === $uid"}}}} | json_instruct | {"type": "object", "properties": {"rules": {"type": "object", "properties": {".read": {"type": "boolean"}, ".write": {"type": "boolean"}, "shortenedLinks": {"type": "object", "properties": {".read": {"type": "string"}, "$linkId": {"type": "object", "properties": {"target": {"type": "object", "properties": {".read": {"t... |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "array", "items": {}}}, "required": ["co... | {"contract" : "0x58978e8caccf56fadaa80ef52f5c684045306839", "tool" : "osiris", "start" : 1564600369.502494, "end" : 1564600372.1046371, "duration" : 2.6021430492401123, "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://... |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"Department": {"type": "string"}, "Region": {"type": "string"}, "Position": {"type": "string"}, "Name": {"type": "string"}, "\u0414\u0435\u043a\u043b\u0430\u0440\u0430\u0446\u0456\u0457 2013": {"type": "string"}, "... | {"Department" : "\u0421\u043b\u043e\u0431\u0456\u0434\u0441\u044c\u043a\u0438\u0439 \u0432\u0456\u0434\u0434\u0456\u043b \u0425\u0430\u0440\u043a\u0456\u0432\u0441\u044c\u043a\u043e\u0457 \u043c\u0456\u0441\u0446\u0435\u0432\u043e\u0457 \u043f\u0440\u043e\u043a\u0443\u0440\u0430\u0442\u0443\u0440\u0438 \u2116 5", "Regi... | json_instruct | {"type": "object", "properties": {"Department": {"type": "string"}, "Region": {"type": "string"}, "Position": {"type": "string"}, "Name": {"type": "string"}, "\u0414\u0435\u043a\u043b\u0430\u0440\u0430\u0446\u0456\u0457 2013": {"type": "string"}, "\u0414\u0435\u043a\u043b\u0430\u0440\u0430\u0446\u0456\u0457 2014": {"ty... |
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": {"dev": {"type": "string"}, "build": {"type":... | {"name" : "my-first-react-app", "version" : "1.0.0", "description" : "Just a starter application for learning react :)", "main" : "index.js", "scripts" : {"dev" : "webpack -d --watch", "build" : "webpack -p"}, "repository" : {"type" : "git", "url" : "my-react-app"}, "keywords" : ["basic", "react", "app"], "author" : "Y... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"dev": {"type": "string"}, "build": {"type": "string"}}, "required": ["dev", "build"]}, "repository": {"type": "object"... |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"id": {"type": "integer"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"src:alt_label": {"type": "string"}, "src:geom": {"type": "string"}, "wof:geomhash": {"type": "string"}, "wof:i... | {"id" : 1226492555, "type" : "Feature", "properties" : {"src:alt_label" : "geonames", "src:geom" : "geonames", "wof:geomhash" : "eaddaf4becce3fe9a8dfa304da471278", "wof:id" : 1226492555, "wof:repo" : "whosonfirst-data-admin-ro"}, "bbox" : [26.21728, 44.78482, 26.21728, 44.78482], "geometry" : {"coordinates" : [26.21728... | 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": ["... |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "array", "items": {"type": "object", "properties": {"namaKab": {"type": "string"}, "originalFilename": {"type": "string"}, "namaPartai": {"type": "string"}, "id": {"type": "integer"}, "noUrut": {"type": "integer"}, "nama": {"type": "string"... | [{"namaKab" : "JAKARTA SELATAN", "originalFilename" : "Hamka B Kady_3174090260570003_Pasfoto 4x6.jpg", "namaPartai" : "Partai Golongan Karya", "id" : 84481, "noUrut" : 1, "nama" : "Drs. HAMKA B. KADY, M.S.", "stringJenisKelamin" : "Laki-Laki"}, {"namaKab" : "KOTA TANGERANG SELATAN", "originalFilename" : "ERNAWATI TAHAN... | 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.