input stringlengths 159 2.05k | output stringlengths 5 10.3k | task stringclasses 1
value | schema stringlengths 100 1.99k |
|---|---|---|---|
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"asciidoctor.js": {"type": "string"}, "asciidoctor.min.js": {"type": "string"}, "css/asciidoctor.css": {"type": "string"}, "css/asciidoctor.min.css": {"type": "string"}, "nashorn/asciidoctor.js": {"type": "string"}, "... | {"asciidoctor.js" : "sha256-dZd97ukbm1dE8jPQbcgtRg87qPhp9pXxaCz+PBoCp1E=", "asciidoctor.min.js" : "sha256-iA57v0fmHTuxd66SWiO2OAKXXYS7bOoZzdkAOlvkwCc=", "css/asciidoctor.css" : "sha256-LKOQbA5+K8PvyNZBtceqHbFKem6g+Rs3/wRoTPZXBpE=", "css/asciidoctor.min.css" : "sha256-AQiLdWVIAXPJbLjLPbWq0X05+lkuIpthQixX+bKOsUI=", "nash... | json_instruct | {"type": "object", "properties": {"asciidoctor.js": {"type": "string"}, "asciidoctor.min.js": {"type": "string"}, "css/asciidoctor.css": {"type": "string"}, "css/asciidoctor.min.css": {"type": "string"}, "nashorn/asciidoctor.js": {"type": "string"}, "nashorn/asciidoctor.min.js": {"type": "string"}}, "required": ["ascii... |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"intelligence": {"type": "integer"}, "strength": {"type": "integer"}, "speed": {"type": "integer"}, "durability": {"type": "integer"}, "power": {"type": "integer"}, "combat": {"type": "integer"}}, "required": ["inte... | {"intelligence" : 50, "strength" : 12, "speed" : 17, "durability" : 60, "power" : 48, "combat" : 30} | json_instruct | {"type": "object", "properties": {"intelligence": {"type": "integer"}, "strength": {"type": "integer"}, "speed": {"type": "integer"}, "durability": {"type": "integer"}, "power": {"type": "integer"}, "combat": {"type": "integer"}}, "required": ["intelligence", "strength", "speed", "durability", "power", "combat"], "$sch... |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"id": {"type": "string"}, "expression": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}}, "required": ["id"]}}}, "required": ["id", "expression"], "$schema": "http://json-schem... | {"id" : "http://data.doremus.org/performance/5790d6cf-df99-325b-9c85-29e6b69343a7", "expression" : [{"id" : "http://data.doremus.org/expression/a6612e92-781a-3b0f-9fc1-12120f13b7cb"}, {"id" : "http://data.doremus.org/expression/e6d66cf3-8109-3b26-be51-dbd5596a869b"}, {"id" : "http://data.doremus.org/expression/b1437083... | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "expression": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}}, "required": ["id"]}}}, "required": ["id", "expression"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"id": {"type": "string"}}, "required": ["id"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "5f1cb31a7b1ac7335ac0685826baedfe6280f2da"} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}}, "required": ["id"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"xammac": {"type": "array", "items": {"type": "integer"}}, "xaml": {"type": "array", "items": {"type": "integer"}}, "xscale": {"type": "array", "items": {"type": "integer"}}, "xheight": {"type": "array", "items": {"type": "i... | {"xammac" : [19202049, 28573700, 282132481, 421462017, 462553089, 463798273], "xaml" : [44564482, 44630017, 51118081, 150798337, 159186945, 159514625, 170721281, 190840833, 209387521, 217776129, 227082241, 231407617, 257359873, 260964353, 432603137, 435617794, 441843714, 443351041, 443875329, 444465153, 449642497, 4620... | json_instruct | {"type": "object", "properties": {"xammac": {"type": "array", "items": {"type": "integer"}}, "xaml": {"type": "array", "items": {"type": "integer"}}, "xscale": {"type": "array", "items": {"type": "integer"}}, "xheight": {"type": "array", "items": {"type": "integer"}}, "xammac2": {"type": "array", "items": {"type": "int... |
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": "object", "properties": {"error": {"type": "null"}, "issues"... | {"contract" : "0xfa24078bd2daa00232733a1bd8df5badf047ffa2", "tool" : "mythril", "start" : 1563674378.7151258, "end" : 1563674382.9659557, "duration" : 4.2508299350738525, "analysis" : {"error" : null, "issues" : [], "success" : true}} | json_instruct | {"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "object", "properties": {"error": {"type": "null"}, "issues": {"type": "array", "items": {}}, "success": {"type": "bo... |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"directions": {"type": "array", "items": {"type": "string"}}, "ingredients": {"type": "array", "items": {"type": "string"}}, "language": {"type": "string"}, "source": {"type": "string"}, "tags": {"type": "array", "items": {}}, ... | {"directions" : ["Beat butter in a large bowl with a hand mixer until fluffy; add vanilla extract, confectioners' sugar, ground cinnamon candies, and cornstarch and mix with hand mixer until combined.", "Incorporate flour 1/4 cup at a time, mixing with your hands until all flour is used and dough comes together.", "Div... | 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... |
Create an example JSON object that satisfies this schema:
{"type": "array", "items": {"type": "object", "properties": {"model": {"type": "string"}, "pk": {"type": "integer"}, "fields": {"type": "object", "properties": {"user": {"type": "integer"}, "generation": {"type": "integer"}, "message": {"type": "string"}, "intr... | [{"model" : "member.profile", "pk" : 1, "fields" : {"user" : 1, "generation" : 16, "message" : "DefoMsg", "intro" : "", "divisions" : [], "created_at" : "2020-04-04T08:12:47.557Z"}}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"model": {"type": "string"}, "pk": {"type": "integer"}, "fields": {"type": "object", "properties": {"user": {"type": "integer"}, "generation": {"type": "integer"}, "message": {"type": "string"}, "intro": {"type": "string"}, "divisions": {"type": "array", "ite... |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"webpackConfigPath": {"type": "string"}}, "required": ["webpackConfigPath"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"webpackConfigPath" : "./app.webpack.config.js"} | json_instruct | {"type": "object", "properties": {"webpackConfigPath": {"type": "string"}}, "required": ["webpackConfigPath"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"detectorType": {"type": "string"}, "beamline": {"type": "string"}, "detector_distance": {"type": "number"}, "wavelength": {"type": "number"}, "orgx": {"type": "number"}, "orgy": {"type": "number"}, "number_row": {"type": "i... | {"detectorType" : "pilatus6m", "beamline" : "id23eh1", "detector_distance" : 294.775, "wavelength" : 0.972423, "orgx" : 1217.81, "orgy" : 1279.13, "number_row" : 24, "number_images" : 1224, "isZigZag" : true, "step_h" : 19.2, "step_v" : 19.6, "beam_shape" : "G", "beam_h" : 20, "beam_v" : 20, "number_apertures" : 5, "ap... | json_instruct | {"type": "object", "properties": {"detectorType": {"type": "string"}, "beamline": {"type": "string"}, "detector_distance": {"type": "number"}, "wavelength": {"type": "number"}, "orgx": {"type": "number"}, "orgy": {"type": "number"}, "number_row": {"type": "integer"}, "number_images": {"type": "integer"}, "isZigZag": {"... |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "number"}}}, "required": ["type", "coordinates"]}, "type": {"type": "string"}, "id": {"type": "string"},... | {"geometry" : {"type" : "Point", "coordinates" : [-88.5, 40.21]}, "type" : "Feature", "id" : "61854", "properties" : {"other_cities" : "", "city" : "Mansfield", "state" : "IL", "county" : "Piatt County"}} | json_instruct | {"type": "object", "properties": {"geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "number"}}}, "required": ["type", "coordinates"]}, "type": {"type": "string"}, "id": {"type": "string"}, "properties": {"type": "object", "properties": {"other_c... |
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"}, "files": {"type": "array", "items": {"type": "string"}}, "scripts": {"type": "object", "prop... | {"name" : "panda-template", "version" : "2.0.2", "description" : "Handlebars + Panda Goodies in a quick and easy interface", "main" : "build/npm/src/index.js", "files" : ["build/npm/src", "LICENSE"], "scripts" : {}, "repository" : {"type" : "git", "url" : "git+https://github.com/pandastrike/panda-template.git"}, "keywo... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "files": {"type": "array", "items": {"type": "string"}}, "scripts": {"type": "object", "properties": {}, "required": []}, "repository": {"type": "object", "properti... |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"@metadata": {"type": "object", "properties": {"authors": {"type": "array", "items": {"type": "string"}}}, "required": ["authors"]}, "Apps.subtitle": {"type": "string"}, "Blockly": {"type": "string"}, "Apps.codeTooltip": {"type... | {"@metadata" : {"authors" : ["Jonbg"]}, "Apps.subtitle" : "sj\u00f3nr\u00e6nt forritunarumhverfi", "Blockly" : "Blockly", "Apps.codeTooltip" : "Sj\u00e1 forriti\u00f0 sem JavaScript k\u00f3\u00f0a.", "Apps.linkTooltip" : "Vista og tengja vi\u00f0 kubba.", "Apps.runTooltip" : "Keyra forriti\u00f0 sem kubbarnir \u00e1 vi... | json_instruct | {"type": "object", "properties": {"@metadata": {"type": "object", "properties": {"authors": {"type": "array", "items": {"type": "string"}}}, "required": ["authors"]}, "Apps.subtitle": {"type": "string"}, "Blockly": {"type": "string"}, "Apps.codeTooltip": {"type": "string"}, "Apps.linkTooltip": {"type": "string"}, "Apps... |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"title": {"type": "string"}, "fields": {"type": "array", "items": {"type": "string"}}, "abstract": {"type": "string"}, "citation": {"type": "string"}, "departments": {"type": "array", "items": {"type": "string"}}, "au... | {"title" : "Positive effects of utilizing relationships between inconsistencies for more effective inconsistency resolution.", "fields" : ["cluster analysis", "observable", "unified modeling language", "expression", "software maintenance"], "abstract" : "State-of-the-art modeling tools can help detect inconsistencies i... | 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": {"name": {"type": "string"}, "description": {"type": "string"}, "repository": {"type": "string"}}, "required": ["name", "description", "repository"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "radiowestcoast", "description" : "Radio Westcoast Home Page", "repository" : "https://github.com/Aimee-MacDonald/radiowestcoast.git"} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "repository": {"type": "string"}}, "required": ["name", "description", "repository"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"citations": {"type": "array", "items": {"type": "object", "properties": {"textCitation": {"type": "string"}}, "required": ["textCitation"]}}, "names": {"type": "array", "items": {"type": "string"}}, "language": {"type": "st... | {"citations" : [{"textCitation" : "[See shft2rab on Metamath](http://us.metamath.org/mpegif/shft2rab.html)"}], "names" : ["shft2rab"], "language" : "METAMATH_SET_MM", "lookupTerms" : ["#T_wph", "#T_wi", "#T_cA", "#T_wss", "#T_cr", "#T_wph", "#T_wi", "#T_cC", "#T_wcel", "#T_cr", "#T_wph", "#T_wi", "#T_cB", "#T_wceq", "#... | json_instruct | {"type": "object", "properties": {"citations": {"type": "array", "items": {"type": "object", "properties": {"textCitation": {"type": "string"}}, "required": ["textCitation"]}}, "names": {"type": "array", "items": {"type": "string"}}, "language": {"type": "string"}, "lookupTerms": {"type": "array", "items": {"type": "st... |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"className": {"type": "string"}, "type": {"type": "string"}, "descr": {"type": "string"}, "parent": {"type": "string"}, "isInnerClass": {"type": "boolean"}, "autoIncrement": {"type": "boolean"}, "fields": {"type": "a... | {"className" : "PractitionerQualification", "type" : "OBJECT", "descr" : "\"A person who is directly or indirectly involved in the provisioning of healthcare.\"", "parent" : "BackboneElement", "isInnerClass" : true, "autoIncrement" : true, "fields" : [{"name" : "identifier", "descr" : "\"An identifier that applies to t... | json_instruct | {"type": "object", "properties": {"className": {"type": "string"}, "type": {"type": "string"}, "descr": {"type": "string"}, "parent": {"type": "string"}, "isInnerClass": {"type": "boolean"}, "autoIncrement": {"type": "boolean"}, "fields": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "st... |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"maintainers": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}}, "keywords": {"type": "array", "items": {"type": "string"}}, ... | {"maintainers" : [{"name" : "josdotso", "email" : "josdotso@cisco.com"}, {"name" : "mumoshu", "email" : "ykuoka@gmail.com"}], "keywords" : ["envoy", "proxy"], "children" : [{"repoHost" : "Docker Hub", "children" : [], "name" : "envoyproxy/envoy", "type" : "image", "version" : "v1.11.1"}], "name" : "envoy:1.9.0", "descr... | json_instruct | {"type": "object", "properties": {"maintainers": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}}, "keywords": {"type": "array", "items": {"type": "string"}}, "children": {"type": "array", "items": {"type": "object", "... |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"title": {"type": "string"}, "meta": {"type": "object", "properties": {"description": {"type": "string"}}, "required": ["description"]}, "info": {"type": "string"}, "how": {"type": "string"}, "rewards": {"type": "string"}}, "requ... | {"title" : "Seg\u00edtsen a Pokebattler ford\u00edt\u00e1s\u00e1ban", "meta" : {"description" : "A Pokebattler ford\u00edt\u00f3 lehet\u0151v\u00e9 teszi a felhaszn\u00e1l\u00f3knak, hogy seg\u00edtsenek nek\u00fcnk az oldal leford\u00edt\u00e1s\u00e1ban, hogy mindenki haszn\u00e1lhassa a vil\u00e1g els\u0151 sz\u00e1m... | json_instruct | {"type": "object", "properties": {"title": {"type": "string"}, "meta": {"type": "object", "properties": {"description": {"type": "string"}}, "required": ["description"]}, "info": {"type": "string"}, "how": {"type": "string"}, "rewards": {"type": "string"}}, "required": ["title", "meta", "info", "how", "rewards"], "$sch... |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"baseId": {"type": "string"}, "blockId": {"type": "string"}}, "required": ["baseId", "blockId"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"baseId" : "appfyAWLApoew43vt", "blockId" : "blkPyU68C0xic8InC"} | json_instruct | {"type": "object", "properties": {"baseId": {"type": "string"}, "blockId": {"type": "string"}}, "required": ["baseId", "blockId"], "$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"}, "description": {"type": "string"}, "version": {"type": "string"}, "main": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"gulp": {"type": "string"}}, "requ... | {"name" : "gulp-sww-app1", "description" : "An example that shows how to use the sww gulp plugin", "version" : "0.0.0", "main" : "gulpfile.js", "devDependencies" : {"gulp" : "^3.9.0"}, "engines" : {"node" : ">=4.2.0"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "version": {"type": "string"}, "main": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"gulp": {"type": "string"}}, "required": ["gulp"]}, "engines": {"type": "object", "properties": {"node": {"type... |
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" : 59501, "cartId" : "b8dfb81a-83c9-4728-9051-37bba52bd53a", "preferredProducts" : [289, 4141, 125, 4204], "productReviews" : [{"productId" : 3401, "reviewText" : "My beagle loves to play with it.", "reviewDate" : "2016-08-20T10:23:22.7197424+03:00"}, {"productId" : 1443, "reviewText" : "heard about this on or... | 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": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "dt": {"type": "integer"}, "ar": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}}, "required... | [{"id" : 1480044227, "name" : "Psycho (Live)", "dt" : 208248, "ar" : {"id" : 13933149, "name" : "\u5d14\u666e\u95f5"}, "al" : {"id" : 0, "name" : "", "picUrl" : "https://p1.music.126.net/qIsVRooXBB02IfCmCmO_QA==/109951165323545759.jpg"}}, {"id" : 1409967020, "name" : "\uc560\uc368", "dt" : 205470, "ar" : {"id" : 126243... | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "dt": {"type": "integer"}, "ar": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}}, "required": ["id", "name"]}, "al": {"type": "object", "properties": {"id": {"type... |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"extends": {"type": "string"}, "include": {"type": "array", "items": {"type": "string"}}, "compilerOptions": {"type": "object", "properties": {"lib": {"type": "array", "items": {"type": "string"}}, "target": {... | {"extends" : "./tsconfig.base.json", "include" : ["./src/application/**/*.ts", "./src/framework/**/*.ts"], "compilerOptions" : {"lib" : ["ESNext", "DOM"], "target" : "ESNext", "module" : "ESNext", "moduleResolution" : "Node", "typeRoots" : ["./src/application/declarations/third-party.d.ts"], "composite" : true, "declar... | json_instruct | {"type": "object", "properties": {"extends": {"type": "string"}, "include": {"type": "array", "items": {"type": "string"}}, "compilerOptions": {"type": "object", "properties": {"lib": {"type": "array", "items": {"type": "string"}}, "target": {"type": "string"}, "module": {"type": "string"}, "moduleResolution": {"type":... |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"nom": {"type": "string"}, "circ": {"type": "string"}, "dpt": {"type": "string"}, "inscrits": {"type": "integer"}, "abs": {"type": "integer"}, "votants": {"type": "integer"}, "blancs": {"type": "integer"}, "nuls... | {"nom" : "Salaise-sur-Sanne", "circ" : "7\u00e8me circonscription", "dpt" : "Is\u00e8re", "inscrits" : 3274, "abs" : 2176, "votants" : 1098, "blancs" : 133, "nuls" : 72, "exp" : 893, "res" : [{"nuance" : "REM", "nom" : "Mme Monique LIMON", "voix" : 544}, {"nuance" : "LR", "nom" : "M. Yannick NEUDER", "voix" : 349}]} | json_instruct | {"type": "object", "properties": {"nom": {"type": "string"}, "circ": {"type": "string"}, "dpt": {"type": "string"}, "inscrits": {"type": "integer"}, "abs": {"type": "integer"}, "votants": {"type": "integer"}, "blancs": {"type": "integer"}, "nuls": {"type": "integer"}, "exp": {"type": "integer"}, "res": {"type": "array"... |
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" : "im:block/lb_cube_panel_top"} | 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": {"index": {"type": "integer"}, "hash": {"type": "integer"}, "artDyeHash": {"type": "integer"}, "redacted": {"type": "boolean"}, "dyeManifestHash": {"type": "integer"}, "blacklisted": {"type": "boolean"}}, "required": ... | {"index" : 4312, "hash" : 285491404, "artDyeHash" : 285491404, "redacted" : false, "dyeManifestHash" : 93079244, "blacklisted" : false} | json_instruct | {"type": "object", "properties": {"index": {"type": "integer"}, "hash": {"type": "integer"}, "artDyeHash": {"type": "integer"}, "redacted": {"type": "boolean"}, "dyeManifestHash": {"type": "integer"}, "blacklisted": {"type": "boolean"}}, "required": ["index", "hash", "artDyeHash", "redacted", "dyeManifestHash", "blackl... |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"build": {"type": "object", "properties": {"env": {"type": "object", "properties": {"HUGO_VERSION": {"type": "string"}}, "required": ["HUGO_VERSION"]}}, "required": ["env"]}, "redirects": {"type": "array", "item... | {"build" : {"env" : {"HUGO_VERSION" : "0.78.2"}}, "redirects" : [{"source" : "/branding", "destination" : "/brand", "permanent" : false}, {"source" : "/branding/", "destination" : "/brand", "permanent" : false}, {"source" : "/act/grant", "destination" : "/grant/apply", "permanent" : false}, {"source" : "/act/research",... | json_instruct | {"type": "object", "properties": {"build": {"type": "object", "properties": {"env": {"type": "object", "properties": {"HUGO_VERSION": {"type": "string"}}, "required": ["HUGO_VERSION"]}}, "required": ["env"]}, "redirects": {"type": "array", "items": {"type": "object", "properties": {"source": {"type": "string"}, "destin... |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"editor.formatOnSave": {"type": "boolean"}, "editor.codeActionsOnSave": {"type": "object", "properties": {"source.fixAll": {"type": "boolean"}, "source.organizeImports": {"type": "boolean"}}, "required": ["sou... | {"editor.formatOnSave" : true, "editor.codeActionsOnSave" : {"source.fixAll" : true, "source.organizeImports" : true}, "[rust]" : {"editor.defaultFormatter" : "matklad.rust-analyzer"}, "terminal.integrated.windowsEnableConpty" : true, "rust-analyzer.checkOnSave.enable" : true, "rust-analyzer.checkOnSave.allFeatures" : ... | json_instruct | {"type": "object", "properties": {"editor.formatOnSave": {"type": "boolean"}, "editor.codeActionsOnSave": {"type": "object", "properties": {"source.fixAll": {"type": "boolean"}, "source.organizeImports": {"type": "boolean"}}, "required": ["source.fixAll", "source.organizeImports"]}, "[rust]": {"type": "object", "proper... |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "object", "properties": {"error": {"type":... | {"contract" : "0xd1a3ace46c98e028229974217201433e7163c4dd", "tool" : "mythril", "start" : 1563667433.0120618, "end" : 1563667438.7994442, "duration" : 5.787382364273071, "analysis" : {"error" : null, "issues" : [], "success" : true}} | json_instruct | {"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "object", "properties": {"error": {"type": "null"}, "issues": {"type": "array", "items": {}}, "success": {"type": "bo... |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"kind": {"type": "string"}, "apiVersion": {"type": "string"}, "metadata": {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"]}, "spec": {"type": "object", "properties": {"tags": {"type": "array",... | {"kind" : "ImageStream", "apiVersion" : "v1", "metadata" : {"name" : "s2i-java"}, "spec" : {"tags" : [{"name" : "latest", "annotations" : {"description" : "Java OpenJDK S2I image", "iconClass" : "icon-jboss", "tags" : "builder,java,maven,gradle,springboot,vertx,widlfly-swarm,dropwizard,microservices,fatjar", "supports"... | json_instruct | {"type": "object", "properties": {"kind": {"type": "string"}, "apiVersion": {"type": "string"}, "metadata": {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"]}, "spec": {"type": "object", "properties": {"tags": {"type": "array", "items": {"type": "object", "properties": {"name": {"type"... |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"name": {"type": "string"}, "author": {"type": "string"}, "version": {"type": "string"}, "main": {"type": "string"}, "license": {"type": "string"}, "scripts": {"type": "object", "properties": {"clean": {"type"... | {"name" : "@tscc/tscc-spec", "author" : "theseanl", "version" : "0.6.4", "main" : "dist/index.js", "license" : "MIT", "scripts" : {"clean" : "rm -rf dist"}, "dependencies" : {"fast-glob" : "^3.2.5", "fs-extra" : "^9.0.1"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "author": {"type": "string"}, "version": {"type": "string"}, "main": {"type": "string"}, "license": {"type": "string"}, "scripts": {"type": "object", "properties": {"clean": {"type": "string"}}, "required": ["clean"]}, "dependencies": {"type": "object", "pro... |
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" : "0x72acaab5b211b9a69bf71f4a6bb1f56546451509", "tool" : "osiris", "start" : 1564592738.6668997, "end" : 1564592742.007363, "duration" : 3.340463399887085, "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://... |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"Strategy Metrics": {"type": "object", "properties": {"Daily Swing Trade Return": {"type": "number"}, "Buy & Hold Return": {"type": "number"}, "Auto13($22000) Return": {"type": "number"}}, "required": ["Daily Swing Trade Return",... | {"Strategy Metrics" : {"Daily Swing Trade Return" : 15.017500000000005, "Buy & Hold Return" : 3.7975000000000003, "Auto13($22000) Return" : 19296.29800000004}, "Model Metrics" : {"loss" : 10.746058464050293, "mean_squared_error" : 10.746058464050293, "mean_absolute_error" : 3.1756772994995117, "accuracy" : 0.0985915511... | json_instruct | {"type": "object", "properties": {"Strategy Metrics": {"type": "object", "properties": {"Daily Swing Trade Return": {"type": "number"}, "Buy & Hold Return": {"type": "number"}, "Auto13($22000) Return": {"type": "number"}}, "required": ["Daily Swing Trade Return", "Buy & Hold Return", "Auto13($22000) Return"]}, "Model M... |
Construct a JSON document that adheres to this schema specification:
{"type": "array", "items": {"type": "object", "properties": {"Similarity": {"type": "string"}, "Title": {"type": "string"}, "Year": {"type": "integer"}}, "required": ["Similarity", "Title", "Year"]}, "$schema": "http://json-schema.org/draft-07/schema... | [{"Similarity" : "0.932", "Title" : "Modeling Idea Generation Sequences Using Hidden Markov Models", "Year" : 2008}, {"Similarity" : "0.921", "Title" : "Opinion Cascades and Echo-Chambers in Online Networks A Proof of Concept Agent-Based Model", "Year" : 2017}, {"Similarity" : "0.901", "Title" : "Statistical Detection ... | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"Similarity": {"type": "string"}, "Title": {"type": "string"}, "Year": {"type": "integer"}}, "required": ["Similarity", "Title", "Year"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "object", "properties": {"error": {"type": "null"}, "issue... | {"contract" : "0xcef78244a3e191c9fec60b042ca8c539c38c4f29", "tool" : "mythril", "start" : 1563552143.6154108, "end" : 1563552148.26743, "duration" : 4.652019262313843, "analysis" : {"error" : null, "issues" : [], "success" : true}} | json_instruct | {"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "object", "properties": {"error": {"type": "null"}, "issues": {"type": "array", "items": {}}, "success": {"type": "bo... |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "license": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"... | {"name" : "melonsmasher/buster-client", "description" : "Buster client library for php.", "keywords" : ["buster", "nginx", "cache", "fastcgi", "proxy", "client"], "license" : "MIT", "authors" : [{"name" : "Alex Markessinis", "email" : "markea125@gmail.com"}], "support" : {"issues" : "https://github.com/MelonSmasher/Bus... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "license": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "r... |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"body": {"type": "string"}, "next": {"type": "string"}}, "required": ["body", "next"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"body" : "AND MAKING ITSELF UNIVERSALLY BE TAKEN NOTICE OF, WOULD NOT FAIL TO MEASURE OUT THE COURSE OF SUCCESSION,", "next" : "https://raw.githubusercontent.com/CAPSELOCKE/CAPSELOCKE/master/tweets/2869.json"} | json_instruct | {"type": "object", "properties": {"body": {"type": "string"}, "next": {"type": "string"}}, "required": ["body", "next"], "$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"}, "description": {"type": "string"}, "minimum-stability": {"type": "string"}, "license": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"n... | {"name" : "uspilot/xml_parser", "description" : "XML parser", "minimum-stability" : "dev", "license" : "MIT", "authors" : [{"name" : "US Pilot"}], "require" : {}, "autoload" : {"psr-4" : {"USPilot\\" : "/"}}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "minimum-stability": {"type": "string"}, "license": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"]}}, "require": {"type": "objec... |
Please provide a valid JSON object following this schema:
{"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/sc... | {"towns" : [{"name" : "Miramar", "url" : "miramar-1"}, {"name" : "Miramar", "url" : "miramar-2"}]} | 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#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "reposit... | {"name" : "feedback-display", "version" : "0.0.1", "description" : "Display collected feedbacks on a website", "main" : "index.js", "scripts" : {"test" : "./node_modules/mocha/bin/mocha"}, "repository" : {"type" : "git", "url" : "https://github.com/fonorobert/feedback-display.git"}, "author" : "@fonorobert", "license" ... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "repository": {"type": "object", "properties": {"type": {"type": "s... |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"/js/app.js": {"type": "string"}, "/css/app.css": {"type": "string"}, "/js/vehicle-search.js": {"type": "string"}, "/js/vehicle-search-admin.js": {"type": "string"}, "/js/vehicle-image-order.js": {"type": "string"}, "/js/modal-... | {"/js/app.js" : "/js/app.js?id=725cb119acaba73e5f4e", "/css/app.css" : "/css/app.css?id=7215f5a5808e5b2ab852", "/js/vehicle-search.js" : "/js/vehicle-search.js?id=ba1b969622fdf4c252de", "/js/vehicle-search-admin.js" : "/js/vehicle-search-admin.js?id=d1884add4551508d751d", "/js/vehicle-image-order.js" : "/js/vehicle-ima... | json_instruct | {"type": "object", "properties": {"/js/app.js": {"type": "string"}, "/css/app.css": {"type": "string"}, "/js/vehicle-search.js": {"type": "string"}, "/js/vehicle-search-admin.js": {"type": "string"}, "/js/vehicle-image-order.js": {"type": "string"}, "/js/modal-gallery.js": {"type": "string"}, "/js/datepicker.js": {"typ... |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "license": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "pr... | {"name" : "ooooliu/pay", "description" : "For easy pay.", "keywords" : ["alipay", "wechat", "pay"], "license" : "MIT", "authors" : [{"name" : "Lyn", "email" : "yan252079467@vip.qq.com"}], "minimum-stability" : "dev", "require" : {"php" : ">=5.6", "guzzlehttp/guzzle" : "^6.3"}, "autoload" : {"psr-4" : {"Ooooliu\\Pay\\" ... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "license": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "r... |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"eval_loss": {"type": "number"}, "eval_accuracy": {"type": "number"}, "epoch": {"type": "number"}}, "required": ["eval_loss", "eval_accuracy", "epoch"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"eval_loss" : 0.5928863706571531, "eval_accuracy" : 0.7292418772563177, "epoch" : 10.0} | json_instruct | {"type": "object", "properties": {"eval_loss": {"type": "number"}, "eval_accuracy": {"type": "number"}, "epoch": {"type": "number"}}, "required": ["eval_loss", "eval_accuracy", "epoch"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"word" : "ineffability", "definition" : "The quality or state of being ineffable; ineffableness; unspeakableness."} | json_instruct | {"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"creation_epoch": {"type": "string"}, "start_epoch": {"type": "string"}, "start_XGBoost_def_1": {"type": "string"}, "start_XGBoost_def_2": {"type": "string"}, "start_XGBoost_def_3": {"type": "string"}, "start_... | {"creation_epoch" : "1594662995", "start_epoch" : "1594662995", "start_XGBoost_def_1" : "1594662995", "start_XGBoost_def_2" : "1594663000", "start_XGBoost_def_3" : "1594663003", "start_GLM_def_1" : "1594663005", "start_DRF_def_1" : "1594663011", "start_GBM_def_1" : "1594663015", "start_GBM_def_2" : "1594663018", "start... | json_instruct | {"type": "object", "properties": {"creation_epoch": {"type": "string"}, "start_epoch": {"type": "string"}, "start_XGBoost_def_1": {"type": "string"}, "start_XGBoost_def_2": {"type": "string"}, "start_XGBoost_def_3": {"type": "string"}, "start_GLM_def_1": {"type": "string"}, "start_DRF_def_1": {"type": "string"}, "start... |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "license": {"type": "string"}, "scripts": {"type": "object", "properties": {"dev": {"type": "string"}, "lint": {"type": "string"}, "build": {"type": "string"}}, "requir... | {"name" : "landing", "version" : "3.0.0", "license" : "MIT", "scripts" : {"dev" : "vite", "lint" : "vuedx-typecheck .", "build" : "vite build"}, "dependencies" : {"date-fns" : "^2.16.1", "vue" : "^3.0.5", "vue-router" : "^4.0.2"}, "devDependencies" : {"@types/node" : "^14.14.20", "@vitejs/plugin-vue" : "^1.0.4", "@vue/... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "license": {"type": "string"}, "scripts": {"type": "object", "properties": {"dev": {"type": "string"}, "lint": {"type": "string"}, "build": {"type": "string"}}, "required": ["dev", "lint", "build"]}, "dependencies": {"type": "o... |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"title": {"type": "string"}, "author": {"type": "string"}, "musicType": {"type": "string"}, "musicNo": {"type": "string"}}, "required": ["title", "author", "musicType", "musicNo"], "$schema": "http://json-schema.org... | {"title" : "Perfect-Ed Sheeran", "author" : "Ed Sheeran", "musicType" : "\u6d41\u884c", "musicNo" : "0008290"} | json_instruct | {"type": "object", "properties": {"title": {"type": "string"}, "author": {"type": "string"}, "musicType": {"type": "string"}, "musicNo": {"type": "string"}}, "required": ["title", "author", "musicType", "musicNo"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"source": {"type": "string"}, "target": {"type": "string"}, "app": {"type": "object", "properties": {"css": {"type": "array", "items": {"type": "string"}}, "js": {"type": "array", "items": {"type": "string"}}}, "required": ["cs... | {"source" : "./", "target" : "../dist/", "app" : {"css" : ["scss/**.scss"], "js" : ["js/**.js"]}, "fonts" : ["fonts/**/*"], "css" : [], "js" : []} | json_instruct | {"type": "object", "properties": {"source": {"type": "string"}, "target": {"type": "string"}, "app": {"type": "object", "properties": {"css": {"type": "array", "items": {"type": "string"}}, "js": {"type": "array", "items": {"type": "string"}}}, "required": ["css", "js"]}, "fonts": {"type": "array", "items": {"type": "s... |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "url": {"type": "string"}}, "required": ["name", "description", "url"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "ACDSee", "description" : "An image and photo manager.", "url" : "http://www.acdsee.com/en/products/acdsee"} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "url": {"type": "string"}}, "required": ["name", "description", "url"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "types": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "bu... | {"name" : "new-typescript-package-template", "version" : "1.0.0", "description" : "[](./LICENSE) [](./CONTRIBUTING.md)", "main" : "./lib/index.js", "types" : "lib/index.d.ts", "scr... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "types": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "build": {"type": "string"}, "format": {"type": "string"}, "li... |
Following the schema specification below, generate a valid JSON instance:
{"type": "array", "items": {"type": "object", "properties": {"fileName": {"type": "string"}, "bg": {"type": "string"}, "title": {"type": "string"}, "desc": {"type": "string"}}, "required": ["fileName", "bg", "title", "desc"]}, "$schema": "http:/... | [{"fileName" : "1.jpeg", "bg" : "red", "title" : "pic1", "desc" : "IU\u5927\u7f8e\u5973\u5566\u5566\u5566\u5566\u5566\u5566111111111111111111111"}, {"fileName" : "2.jpeg", "bg" : "yellow", "title" : "pic2", "desc" : "IU\u5927\u7f8e\u5973\u5566\u5566\u5566\u5566\u5566\u5566222222222222"}, {"fileName" : "3.jpeg", "bg" : ... | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"fileName": {"type": "string"}, "bg": {"type": "string"}, "title": {"type": "string"}, "desc": {"type": "string"}}, "required": ["fileName", "bg", "title", "desc"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"getsSuccess": {"type": "integer"}, "getsFail": {"type": "integer"}, "setsSuccess": {"type": "integer"}, "setsFail": {"type": "integer"}, "deleteSuccess": {"type": "integer"}, "deleteFail": {"type": "integer"}... | {"getsSuccess" : 1685131, "getsFail" : 922428, "setsSuccess" : 733, "setsFail" : 123, "deleteSuccess" : 2468, "deleteFail" : 2138, "updateSuccess" : 4576, "updateFail" : 0, "createSuccess" : 6468, "createFail" : 2508, "compareAndSwapSuccess" : 9156, "compareAndSwapFail" : 355, "compareAndDeleteSuccess" : 2047, "compare... | json_instruct | {"type": "object", "properties": {"getsSuccess": {"type": "integer"}, "getsFail": {"type": "integer"}, "setsSuccess": {"type": "integer"}, "setsFail": {"type": "integer"}, "deleteSuccess": {"type": "integer"}, "deleteFail": {"type": "integer"}, "updateSuccess": {"type": "integer"}, "updateFail": {"type": "integer"}, "c... |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"name": {"type": "string"}, "publicFields": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "type": {"type": "string"}}, "required": ["name", "type"]}}, "collections": {"type": "array", "i... | {"name" : "dealUrls", "publicFields" : [{"name" : "id", "type" : "primaryKey"}, {"name" : "dealId", "type" : "foreignKey", "table" : "deals", "mandatory" : true}, {"name" : "category", "type" : "text", "maxLength" : 80}, {"name" : "isPublished", "type" : "bit"}, {"name" : "isBundleItem", "type" : "bit"}, {"name" : "dis... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "publicFields": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "type": {"type": "string"}}, "required": ["name", "type"]}}, "collections": {"type": "array", "items": {}}}, "required": ["name", "publicFields", "collec... |
Following the schema specification below, generate a valid JSON instance:
{"type": "array", "items": {"type": "object", "properties": {"crf_estimate": {"type": "object", "properties": {"place": {"type": "array", "items": {"type": "string"}}, "place_indicator": {"type": "array", "items": {"type": "string"}}}, "required... | [{"crf_estimate" : {"place" : ["\u6771\u4eac\u90fd\u4e16\u7530\u8c37\u533a\u4ee3\u7530"], "place_indicator" : ["\u52e4\u52d9\u5730"]}, "title" : "check6-0"}, {"crf_estimate" : {"place" : ["\u6771\u4eac\u90fd\u4e16\u7530\u8c37\u533a"], "place_indicator" : ["\u6240\u5728\u5730"]}, "title" : "check6-1"}, {"crf_estimate" :... | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"crf_estimate": {"type": "object", "properties": {"place": {"type": "array", "items": {"type": "string"}}, "place_indicator": {"type": "array", "items": {"type": "string"}}}, "required": ["place", "place_indicator"]}, "title": {"type": "string"}}, "required":... |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"type": {"type": "string"}, "objects": {"type": "object", "properties": {"W01000241": {"type": "object", "properties": {"type": {"type": "string"}, "crs": {"type": "object", "properties": {"type": {"type": "stri... | {"type" : "Topology", "objects" : {"W01000241" : {"type" : "GeometryCollection", "crs" : {"type" : "name", "properties" : {"name" : "urn:ogc:def:crs:OGC:1.3:CRS84"}}, "geometries" : [{"type" : "Polygon", "properties" : {"OA11CD" : "W00001286", "LAD11CD" : "W06000004"}, "arcs" : [[0, 1, 2, 3]]}, {"type" : "Polygon", "pr... | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "objects": {"type": "object", "properties": {"W01000241": {"type": "object", "properties": {"type": {"type": "string"}, "crs": {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"name": {"type": "str... |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"id": {"type": "string"}, "provinceId": {"type": "string"}, "regencyId": {"type": "string"}, "districtId": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "provinceId", "regencyId", "district... | {"id" : "2015", "provinceId" : "75", "regencyId" : "04", "districtId" : "04", "name" : "Batubilotahu"} | 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#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"datasource_0": {"type": "object", "properties": {"id": {"type": "integer"}, "input_path": {"type": "string"}, "input_bbox": {"type": "array", "items": {"type": "integer"}}, "input_mean": {"type": "number"}, "input_s... | {"datasource_0" : {"id" : 0, "input_path" : "/tmpscratch/webknossos/Connectomics_Department/2018-11-13_scMS109_1to7199_v01_l4_06_24_fixed_mag8/color/1", "input_bbox" : [27742, 15611, 2293, 980, 980, 1], "input_mean" : 148.0, "input_std" : 36.0, "target_path" : "/tmpscratch/webknossos/Connectomics_Department/2018-11-13_... | json_instruct | {"type": "object", "properties": {"datasource_0": {"type": "object", "properties": {"id": {"type": "integer"}, "input_path": {"type": "string"}, "input_bbox": {"type": "array", "items": {"type": "integer"}}, "input_mean": {"type": "number"}, "input_std": {"type": "number"}, "target_path": {"type": "string"}, "target_bb... |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"word" : "spalt", "definition" : "Spelter. [Colloq.]\n\n1. Liable to break or split; brittle; as, spalt timber. [Prov. Eng.] Halliwell. 2. Heedless; clumsy; pert; saucy. [Prov. Eng.]\n\nTo split off; to cleave off, as chips from a piece of timber, with an ax. [Prov. Eng. & Local, U.S.]"} | json_instruct | {"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"id": {"type": "string"}, "author": {"type": "string"}, "subject": {"type": "string"}, "body": {"type": "string"}, "message_date": {"type": "string"}}, "required": ["id", "author", "subject", "body", "message_date"], "$schema":... | {"id" : "45", "author" : "Mr. Dingle", "subject" : "Re: My Favorite Lupin!", "body" : "I just got my favorite Lupin the 3rd CD so far....it's called \"Lupin the 3rd Music From The Original Motion Picture Soundtrack Score\" and basically it's cover versions of the music from the first series (lovingly compiled on the Lu... | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "author": {"type": "string"}, "subject": {"type": "string"}, "body": {"type": "string"}, "message_date": {"type": "string"}}, "required": ["id", "author", "subject", "body", "message_date"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "description": {"type": "string"}, "requirement": {"type": "string"}, "locked_text": {"type": "string"}, "type": {"type": "string"}, "flags": {"type": "array", "items": ... | {"id" : 4216, "name" : "[FTT 100] Intro to Field Tech Turret Dynamics", "description" : "", "requirement" : "Use a micro cloud to break down and analyze an Inquest turret, or speak with the krewe leader at the main camp once it has been fully established.", "locked_text" : "", "type" : "Default", "flags" : ["Permanent"... | json_instruct | {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "description": {"type": "string"}, "requirement": {"type": "string"}, "locked_text": {"type": "string"}, "type": {"type": "string"}, "flags": {"type": "array", "items": {"type": "string"}}, "tiers": {"type": "array", "items": {"typ... |
Based on the schema below, produce a valid JSON object:
{"type": "array", "items": {"type": "object", "properties": {"version": {"type": "string"}, "count": {"type": "integer"}}, "required": ["version", "count"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"version" : "0.0.1", "count" : 133}, {"version" : "2.0.0", "count" : 145}, {"version" : "0.0.2", "count" : 131}, {"version" : "0.0.3", "count" : 133}, {"version" : "3.0.0", "count" : 571}, {"version" : "0.1.0", "count" : 134}, {"version" : "1.0.0", "count" : 145}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"version": {"type": "string"}, "count": {"type": "integer"}}, "required": ["version", "count"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"type": {"type": "string"}, "features": {"type": "array", "items": {"type": "object", "properties": {"geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "it... | {"type" : "FeatureCollection", "features" : [{"geometry" : {"type" : "Polygon", "coordinates" : [[[-76.645148, 39.941875], [-76.640643, 39.942777], [-76.629477, 39.947621], [-76.60604, 39.928136], [-76.604543, 39.936016], [-76.602684, 39.939062], [-76.603126, 39.941435], [-76.600655, 39.944969], [-76.59343, 39.949397],... | 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... |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"values": {"type": "array", "items": {"type": "string"}}}, "required": ["values"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"values" : ["#luigis_mansion:all_ignore", "#minecraft:slabs", "#minecraft:stairs"]} | json_instruct | {"type": "object", "properties": {"values": {"type": "array", "items": {"type": "string"}}}, "required": ["values"], "$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"}, "alt_name": {"type": "string"}, "country": {"type": "string"}, "state": {"type": "null"}, "address": {"type": "object", "properties": {"street": {"type": "string"}, "city": {"type": "str... | {"name" : "Catholic University of the West, Angers", "alt_name" : "Universit\u00e9 catholique de l'Ouest (UCO)", "country" : "France", "state" : null, "address" : {"street" : "3, place Andr\u00e9 Leroy", "city" : "Angers", "province" : null, "postal_code" : "49008"}, "contact" : {"telephone" : "+33(2) 41-81-66-00", "we... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "alt_name": {"type": "string"}, "country": {"type": "string"}, "state": {"type": "null"}, "address": {"type": "object", "properties": {"street": {"type": "string"}, "city": {"type": "string"}, "province": {"type": "null"}, "postal_code": {"type": "string"}},... |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"14929": {"type": "string"}}, "required": ["14929"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"14929" : "EXIT"} | json_instruct | {"type": "object", "properties": {"14929": {"type": "string"}}, "required": ["14929"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"status": {"type": "object", "properties": {"delivered": {"type": "string"}, "totalresults": {"type": "string"}, "status": {"type": "string"}}, "required": ["delivered", "totalresults", "status"]}}, "required": ["sta... | {"status" : {"delivered" : "", "totalresults" : "1", "status" : "incomplete"}} | json_instruct | {"type": "object", "properties": {"status": {"type": "object", "properties": {"delivered": {"type": "string"}, "totalresults": {"type": "string"}, "status": {"type": "string"}}, "required": ["delivered", "totalresults", "status"]}}, "required": ["status"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"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"... | {"type" : "Feature", "geometry" : {"type" : "Polygon", "coordinates" : [[[131.375, 25.916666666666668], [131.375, 26.0], [131.5, 26.0], [131.5, 25.916666666666668], [131.375, 25.916666666666668]]]}, "properties" : {"code" : 383173, "url" : "http://madefor.github.io/0410/api/v1/383173.geojson", "view" : "https://github.... | 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... |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"id": {"type": "string"}, "district_id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "district_id", "name"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "6305010019", "district_id" : "6305010", "name" : "MEKAR SARI"} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "district_id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "district_id", "name"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"attackers": {"type": "array", "items": {"type": "object", "properties": {"alliance_id": {"type": "integer"}, "character_id": {"type": "integer"}, "corporation_id": {"type": "integer"}, "damage_done": {"type": "integer"}, "fact... | {"attackers" : [{"alliance_id" : 99006625, "character_id" : 96582714, "corporation_id" : 98401847, "damage_done" : 443, "faction_id" : 500004, "final_blow" : true, "security_status" : -9.8, "ship_type_id" : 644, "weapon_type_id" : 3995}], "killmail_id" : 71243051, "killmail_time" : "2018-07-14T09:36:27-07:00", "solar_s... | json_instruct | {"type": "object", "properties": {"attackers": {"type": "array", "items": {"type": "object", "properties": {"alliance_id": {"type": "integer"}, "character_id": {"type": "integer"}, "corporation_id": {"type": "integer"}, "damage_done": {"type": "integer"}, "faction_id": {"type": "integer"}, "final_blow": {"type": "boole... |
Generate a valid JSON object that conforms to the following schema:
{"type": "array", "items": {"type": "array", "items": {"type": "string"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [["513423219200", "\u8349\u9e82\u6751\u6751\u6c11\u59d4\u5458\u4f1a", "220", "0"], ["513423219201", "\u6843\u5b50\u6751\u6751\u6c11\u59d4\u5458\u4f1a", "220", "0"], ["513423219202", "\u7532\u7c73\u6751\u6751\u6c11\u59d4\u5458\u4f1a", "220", "0"], ["513423219203", "\u73bb\u7483\u6751\u6751\u6c11\u59d4\u5458\u4f1a", "210... | json_instruct | {"type": "array", "items": {"type": "array", "items": {"type": "string"}}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "main": {"type": "string"}, "repository": {"type": "string"}, "author": {"type": "string"}, "license": {"type": "string"}, "private": {"type": "boolean"... | {"name" : "mockvif", "version" : "1.0.0", "main" : "index.js", "repository" : "git@github.com:kruschid/mockvif.git", "author" : "Denis Kruschinski <denis.kruschinski@gmail.com>", "license" : "MIT", "private" : false, "scripts" : {"build" : "tsc", "start" : "tsc && node ."}, "dependencies" : {"body-parser" : "^1.19.0", ... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "main": {"type": "string"}, "repository": {"type": "string"}, "author": {"type": "string"}, "license": {"type": "string"}, "private": {"type": "boolean"}, "scripts": {"type": "object", "properties": {"build": {"type": "string"}... |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"type": {"type": "string"}, "level": {"type": "string"}, "label": {"type": "string"}, "locale": {"type": "string"}, "country_id": {"type": "i... | {"type" : "Feature", "properties" : {"type" : "barangay", "level" : "4", "label" : "Maglipad, Calauag, Quezon, CALABARZON (Region IV-A), PH", "locale" : "ph.calabarzon-region-iv-a.quezon.calauag.maglipad", "country_id" : 177, "country_reference" : 177, "country_name" : "Philippines", "region_id" : "4", "region_referenc... | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"type": {"type": "string"}, "level": {"type": "string"}, "label": {"type": "string"}, "locale": {"type": "string"}, "country_id": {"type": "integer"}, "country_reference": {"type": "integer"}, "country_name": {... |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "type": {"type": "string"}, "license": {"type": "string"}, "authors": {"type": "array", "item... | {"name" : "pedrosancao/wordpress-static-bootstrap-template", "description" : "Bootstrap template for static site generator using Wordpress API as content source.", "keywords" : ["static-site-generator", "wordpress-rest", "wordpress-api", "wp-json", "bootstrap", "twig", "sass"], "type" : "project", "license" : "MIT", "a... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "type": {"type": "string"}, "license": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "ema... |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"appId": {"type": "string"}, "appName": {"type": "string"}, "bundledWebRuntime": {"type": "boolean"}, "webDir": {"type": "string"}, "server": {"type": "object", "properties": {"url": {"type": "string"}}, "required": [... | {"appId" : "page.0x77.total", "appName" : "Total", "bundledWebRuntime" : false, "webDir" : "dist", "server" : {"url" : "http://10.103.7.233:8080"}} | json_instruct | {"type": "object", "properties": {"appId": {"type": "string"}, "appName": {"type": "string"}, "bundledWebRuntime": {"type": "boolean"}, "webDir": {"type": "string"}, "server": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}}, "required": ["appId", "appName", "bundledWebRuntime", "webD... |
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" : 1126052567, "type" : "Feature", "properties" : {"src:alt_label" : "qs_pg", "src:geom" : "qs_pg", "wof:geomhash" : "c559f436fc93c68ffe6fac0a2c7ff498", "wof:id" : 1126052567, "wof:repo" : "whosonfirst-data-admin-fr"}, "bbox" : [5.73466, 45.80931, 5.73466, 45.80931], "geometry" : {"coordinates" : [5.73466, 45.8093... | 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": "object", "properties": {"": {"type": "array", "items": {"type": "string"}}, "useVSCodeVersionOption": {"type": "string"}, "useWorkspaceVersionOption": {"type": "string"}, "learnMore": {"type": "string"}, "selectTsVersion": {"type": "string... | {"" : ["--------------------------------------------------------------------------------------------", "Copyright (c) Microsoft Corporation. All rights reserved.", "Licensed under the Source EULA. See License.txt in the project root for license information.", "-----------------------------------------------------------... | json_instruct | {"type": "object", "properties": {"": {"type": "array", "items": {"type": "string"}}, "useVSCodeVersionOption": {"type": "string"}, "useWorkspaceVersionOption": {"type": "string"}, "learnMore": {"type": "string"}, "selectTsVersion": {"type": "string"}}, "required": ["", "useVSCodeVersionOption", "useWorkspaceVersionOpt... |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"compileOnSave": {"type": "boolean"}, "compilerOptions": {"type": "object", "properties": {"strict": {"type": "boolean"}, "noImplicitAny": {"type": "boolean"}, "skipLibCheck": {"type": "boolean"}, "experimentalD... | {"compileOnSave" : false, "compilerOptions" : {"strict" : true, "noImplicitAny" : true, "skipLibCheck" : true, "experimentalDecorators" : true, "moduleResolution" : "node", "sourceMap" : true, "lib" : ["webworker", "esnext", "dom"], "module" : "ESNext", "target" : "ES2019", "jsx" : "react", "jsxFactory" : "h", "allowSy... | json_instruct | {"type": "object", "properties": {"compileOnSave": {"type": "boolean"}, "compilerOptions": {"type": "object", "properties": {"strict": {"type": "boolean"}, "noImplicitAny": {"type": "boolean"}, "skipLibCheck": {"type": "boolean"}, "experimentalDecorators": {"type": "boolean"}, "moduleResolution": {"type": "string"}, "s... |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"schema_version": {"type": "string"}, "id": {"type": "string"}, "modified": {"type": "string"}, "published": {"type": "string"}, "aliases": {"type": "array", "items": {"type": "string"}}, "details": {"type": "string"... | {"schema_version" : "1.2.0", "id" : "GHSA-j8pc-j426-mj2v", "modified" : "2022-03-30T00:00:53Z", "published" : "2022-03-24T00:00:15Z", "aliases" : ["CVE-2022-25221"], "details" : "Money Transfer Management System Version 1.0 allows an attacker to inject JavaScript code in the URL and then trick a user into visit the lin... | json_instruct | {"type": "object", "properties": {"schema_version": {"type": "string"}, "id": {"type": "string"}, "modified": {"type": "string"}, "published": {"type": "string"}, "aliases": {"type": "array", "items": {"type": "string"}}, "details": {"type": "string"}, "severity": {"type": "array", "items": {"type": "object", "properti... |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"schema_version": {"type": "string"}, "id": {"type": "string"}, "modified": {"type": "string"}, "published": {"type": "string"}, "aliases": {"type": "array", "items": {"type": "string"}}, "details": {"type": "string... | {"schema_version" : "1.2.0", "id" : "GHSA-vmrg-crrh-jrmg", "modified" : "2022-05-02T03:39:01Z", "published" : "2022-05-02T03:39:01Z", "aliases" : ["CVE-2009-2832"], "details" : "Buffer overflow in FTP Server in Apple Mac OS X before 10.6.2 allows remote attackers to execute arbitrary code or cause a denial of service (... | 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... |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"best_index": {"type": "array", "items": {"type": "integer"}}, "auroc": {"type": "array", "items": {"type": "number"}}, "acc": {"type": "array", "items": {"type": "number"}}, "aps": {"type": "array", "items": ... | {"best_index" : [101, 16, 83, 130, 125], "auroc" : [0.51007371007371, 0.5007371007371008, 0.5282555282555284, 0.5012285012285013, 0.5498771498771499], "acc" : [0.40217391304347827, 0.5978260869565217, 0.5, 0.40217391304347827, 0.40217391304347827], "aps" : [0.4117362395934847, 0.39860354565615586, 0.4117050550122453, 0... | json_instruct | {"type": "object", "properties": {"best_index": {"type": "array", "items": {"type": "integer"}}, "auroc": {"type": "array", "items": {"type": "number"}}, "acc": {"type": "array", "items": {"type": "number"}}, "aps": {"type": "array", "items": {"type": "number"}}, "f1": {"type": "array", "items": {"type": "number"}}, "a... |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"kind": {"type": "string"}, "state": {"type": "string"}}, "required": ["kind", "state"]}, "features": {"type": "array", "items": {"type": ... | {"type" : "FeatureCollection", "properties" : {"kind" : "state", "state" : "PR"}, "features" : [{"type" : "Feature", "properties" : {"kind" : "county", "name" : "Guayanilla", "state" : "PR"}, "geometry" : {"type" : "MultiPolygon", "coordinates" : [[[[-66.7989, 18.1322], [-66.7715, 18.1377], [-66.766, 18.0391], [-66.738... | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"kind": {"type": "string"}, "state": {"type": "string"}}, "required": ["kind", "state"]}, "features": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"typ... |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"id": {"type": "string"}}, "required": ["id"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "17e5bc85c4ecc5c5f576de73d79b0e5591920c14"} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}}, "required": ["id"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"lang": {"type": "object", "properties": {"en": {"type": "object", "properties": {"title": {"type": "string"}, "description": {"type": "string"}}, "required": ["title", "description"]}}, "required": ["en"]}, "gather"... | {"lang" : {"en" : {"title" : "Elytra", "description" : "Gather elytra."}}, "gather" : {"minecraft:elytra" : 2}, "rewards" : {"items" : {"minecraft:emerald" : 4, "minecraft:elytra" : "2-3", "minecraft:phantom_membrane" : "6-12"}, "xp" : {"count" : 100}}} | json_instruct | {"type": "object", "properties": {"lang": {"type": "object", "properties": {"en": {"type": "object", "properties": {"title": {"type": "string"}, "description": {"type": "string"}}, "required": ["title", "description"]}}, "required": ["en"]}, "gather": {"type": "object", "properties": {"minecraft:elytra": {"type": "inte... |
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" : [835.479, 214.502, 1, 842.215, 242.049, 1, 807.695, 247.177, 1, 777.968, 296.597, 1, 823.257, 287.392, 1, 874.169, 244.145, 1, 898.609, 261.975, 1, 846.782, 283.269, 0, 813.529, 346.931, 1, 776.545, 421.817, 1, 754.543, 490.257, 1, 855.966, 349.527, 1, 878.789, 416.9... | json_instruct | {"type": "object", "properties": {"version": {"type": "number"}, "people": {"type": "array", "items": {"type": "object", "properties": {"pose_keypoints_2d": {"type": "array", "items": {"type": "number"}}, "face_keypoints_2d": {"type": "array", "items": {}}, "hand_left_keypoints_2d": {"type": "array", "items": {}}, "han... |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"config": {"type": "object", "properties": {"abort": {"type": "object", "properties": {"all_configured": {"type": "string"}}, "required": ["all_configured"]}, "step": {"type": "object", "properties": {"user": {"type": "objec... | {"config" : {"abort" : {"all_configured" : "Keng nei Pulse Hubs entdeckt."}, "step" : {"user" : {"data" : {"id" : "Host ID"}, "title" : "Wiel den Hub aus dee soll dob\u00e4igesat ginn."}}}, "title" : "Rollease ACmeda Automate"} | json_instruct | {"type": "object", "properties": {"config": {"type": "object", "properties": {"abort": {"type": "object", "properties": {"all_configured": {"type": "string"}}, "required": ["all_configured"]}, "step": {"type": "object", "properties": {"user": {"type": "object", "properties": {"data": {"type": "object", "properties": {"... |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"type": {"type": "string"}, "features": {"type": "array", "items": {"type": "object", "properties": {"geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "it... | {"type" : "FeatureCollection", "features" : [{"geometry" : {"type" : "Polygon", "coordinates" : [[[-90.277014, 43.878714], [-90.27702, 43.879136], [-90.277024, 43.879593], [-90.278369, 43.879544], [-90.279395, 43.879498], [-90.279584, 43.879489], [-90.279561, 43.881508], [-90.27763, 43.881557], [-90.276905, 43.881592],... | 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": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "array", "items": {"type": "object", "properties": {"er... | {"contract" : "0x578d7a63bdd0fbd2123cc7b592994db91984b562", "tool" : "osiris", "start" : 1564607050.6211374, "end" : 1564607104.1007798, "duration" : 53.479642391204834, "analysis" : [{"errors" : [{"line" : 43, "column" : 33, "message" : "overflow_bugs"}, {"line" : 51, "column" : 16, "message" : "overflow_bugs"}, {"lin... | 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": {"type": "object", "properti... |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"steps": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "label": {"type": "string"}, "parameters": {"type": "object", "properties": {"executable": {"type": "array", "i... | {"steps" : [{"name" : "cmd", "label" : "sleeping...", "parameters" : {"executable" : ["/bin/sleep"], "args" : ["60"]}}]} | json_instruct | {"type": "object", "properties": {"steps": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "label": {"type": "string"}, "parameters": {"type": "object", "properties": {"executable": {"type": "array", "items": {"type": "string"}}, "args": {"type": "array", "items": {"type": "stri... |
Generate sample JSON data that conforms to the following schema definition:
{"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "frequency": {"type": "integer"}, "males": {"type": "string"}, "females": {"type": "string"}}, "required": ["name", "frequency", "males", "females"]}, "$s... | [{"name" : "MIKA", "frequency" : 11573, "males" : "50.928886200639425 %", "females" : "49.07111379936058 %"}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "frequency": {"type": "integer"}, "males": {"type": "string"}, "females": {"type": "string"}}, "required": ["name", "frequency", "males", "females"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"id": {"type": "string"}, "text": {"type": "string"}}, "required": ["id", "text"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "d501-172", "text" : "PROGRAMS TO BE PROMOTED* \u2022*\npegs 2\nCONSERVATION\nApproach both the National Conservation Society (this group has\nalready made some overtures to Si) end the Fund for the Conser\u00ac\nvation of National Resources (ask for their help).\nSEYMOUR SIEGETi~^tifts already been working on ... | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "text": {"type": "string"}}, "required": ["id", "text"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"h": {"type": "string"}, "c": {"type": "object", "properties": {"0": {"type": "boolean"}}, "required": ["0"]}}, "required": ["h", "c"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"h" : "49ba468827c0e25cf030", "c" : {"0" : true}} | json_instruct | {"type": "object", "properties": {"h": {"type": "string"}, "c": {"type": "object", "properties": {"0": {"type": "boolean"}}, "required": ["0"]}}, "required": ["h", "c"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {"type": "integer"}}, "productReviews": {"type": "array", "items": {"type": "object", "properties": {"prod... | {"userId" : 48382, "cartId" : "dc55d59c-ed2b-4f7d-a26e-9c3ce16552e6", "preferredProducts" : [3617, 2195, 278, 209], "productReviews" : [{"productId" : 1932, "reviewText" : "talk about sadness!", "reviewDate" : "2016-12-30T04:01:44.8864892+02:00"}, {"productId" : 114, "reviewText" : "The box this comes in is 3 meter by ... | 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": {"image_name": {"type": "string"}, "image_height": {"type": "integer"}, "camera_gps": {"type": "string"}, "bbox": {"type": "array", "items": {"type": "object", "properties": {"score": {"type": "number"}, "frontview"... | {"image_name" : "lesion1294.png", "image_height" : 512, "camera_gps" : "", "bbox" : [{"score" : 1.0, "frontview" : true, "other" : {"region_attributes" : {"id" : 1.0, "type" : "car"}}, "category_id" : "car", "segmentation" : "345.0,223.0,345.0,216.0,343.0,213.0,339.0,209.0,332.0,209.0,327.0,211.0,320.0,214.0,316.0,217.... | json_instruct | {"type": "object", "properties": {"image_name": {"type": "string"}, "image_height": {"type": "integer"}, "camera_gps": {"type": "string"}, "bbox": {"type": "array", "items": {"type": "object", "properties": {"score": {"type": "number"}, "frontview": {"type": "boolean"}, "other": {"type": "object", "properties": {"regio... |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"values": {"type": "array", "items": {"type": "string"}}}, "required": ["values"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"values" : ["minecraft:furnace", "minecraft:oak_sign"]} | json_instruct | {"type": "object", "properties": {"values": {"type": "array", "items": {"type": "string"}}}, "required": ["values"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "browser": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"build": {"ty... | {"name" : "interval-timer", "version" : "1.1.2", "description" : "A time accurate count up/down timer", "browser" : "dist/interval-timer.umd.js", "main" : "./src/index.js", "scripts" : {"build" : "rollup -c", "dev" : "rollup -c -w"}, "repository" : {"type" : "git", "url" : "https://github.com/JonFranklin301/interval-ti... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "browser": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"build": {"type": "string"}, "dev": {"type": "string"}}, "required": ["build", "dev"]}, ... |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"status_code": {"type": "integer"}, "data": {"type": "object", "properties": {"UserId": {"type": "string"}, "Account": {"type": "string"}, "Arn": {"type": "string"}, "ResponseMetadata": {"type": "object", "properties": {"Req... | {"status_code" : 200, "data" : {"UserId" : "RANDOMSTRING12314", "Account" : "12345", "Arn" : "arn:aws:iam::12345:user/test", "ResponseMetadata" : {"RequestId" : "ae5ff039-d365-11e7-ba9b-9d9eb3cc14f8", "HTTPStatusCode" : 200, "HTTPHeaders" : {"x-amzn-requestid" : "ae5ff039-d365-11e7-ba9b-9d9eb3cc14f8", "content-type" : ... | json_instruct | {"type": "object", "properties": {"status_code": {"type": "integer"}, "data": {"type": "object", "properties": {"UserId": {"type": "string"}, "Account": {"type": "string"}, "Arn": {"type": "string"}, "ResponseMetadata": {"type": "object", "properties": {"RequestId": {"type": "string"}, "HTTPStatusCode": {"type": "integ... |
Create an example JSON object that satisfies this schema:
{"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "text": {"type": "string"}}, "required": ["id", "text"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"id" : "211223206200", "text" : "\u4e1c\u5c4f\u6751\u6c11\u59d4\u5458\u4f1a"}, {"id" : "211223206201", "text" : "\u6a2a\u8857\u6751\u6c11\u59d4\u5458\u4f1a"}, {"id" : "211223206202", "text" : "\u5c1a\u6587\u6751\u6c11\u59d4\u5458\u4f1a"}, {"id" : "211223206205", "text" : "\u5de8\u82f1\u6751\u6c11\u59d4\u5458\u4f1a"},... | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "text": {"type": "string"}}, "required": ["id", "text"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"id": {"type": "string"}, "provinceId": {"type": "string"}, "regencyId": {"type": "string"}, "districtId": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "provinceId", "regencyId", "districtId",... | {"id" : "2013", "provinceId" : "32", "regencyId" : "18", "districtId" : "05", "name" : "Mekarwangi"} | 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": {"900452072": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900452073": {"type": "object", "properties": {"... | {"900452072" : {"nama" : "TPS 1", "dapil" : [3507, 13509, 2350204]}, "900452073" : {"nama" : "TPS 2", "dapil" : [3507, 13509, 2350204]}, "900452074" : {"nama" : "TPS 3", "dapil" : [3507, 13509, 2350204]}, "900452075" : {"nama" : "TPS 4", "dapil" : [3507, 13509, 2350204]}, "900452076" : {"nama" : "TPS 5", "dapil" : [350... | json_instruct | {"type": "object", "properties": {"900452072": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900452073": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": ... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.