input stringlengths 159 2.05k | output stringlengths 5 10.3k | task stringclasses 1
value | schema stringlengths 100 1.99k |
|---|---|---|---|
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"pageContext": {"type": "object", "properties": {"slug": {"type": "string"}}, "required": ["slug"]}}, "required": ["pageContext"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"pageContext" : {"slug" : "/den-dar-javla-toasitsen/"}} | json_instruct | {"type": "object", "properties": {"pageContext": {"type": "object", "properties": {"slug": {"type": "string"}}, "required": ["slug"]}}, "required": ["pageContext"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"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" : "6203101013", "district_id" : "6203101", "name" : "TANJUNG HARAPAN"} | 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#"} |
Following the schema specification below, generate a valid 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": "num... | {"type" : "Feature", "geometry" : {"type" : "Polygon", "coordinates" : [[[143.125, 45.083333333333336], [143.125, 45.166666666666664], [143.25, 45.166666666666664], [143.25, 45.083333333333336], [143.125, 45.083333333333336]]]}, "properties" : {"code" : 674351, "url" : "http://madefor.github.io/0410/api/v1/674351.geojs... | 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... |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"text": {"type": "string"}, "url": {"type": "string"}}, "required": ["text", "url"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"text" : " How to verify an identity by combining terms\n\n[imath]\\cos x+\\sin x \\tan x=\\sec x[/imath]\n\n\n", "url" : "https://www.youtube.com/watch?v=lmvOm3KmT1E"} | json_instruct | {"type": "object", "properties": {"text": {"type": "string"}, "url": {"type": "string"}}, "required": ["text", "url"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"description": {"type": "string"}, "cc": {"type": "array", "items": {"type": "string"}}, "reviewers": {"type": "array", "items": {"type": "string"}}, "messages": {"type": "array", "items": {"type": "object", "proper... | {"description" : "build: fix build\n\nMissing file during last CL.", "cc" : ["golang-dev@googlegroups.com"], "reviewers" : ["r@golang.org"], "messages" : [{"sender" : "rsc@golang.org", "recipients" : ["rsc@golang.org", "r@golang.org", "golang-dev@googlegroups.com", "reply@codereview-hr.appspotmail.com"], "text" : "Hell... | json_instruct | {"type": "object", "properties": {"description": {"type": "string"}, "cc": {"type": "array", "items": {"type": "string"}}, "reviewers": {"type": "array", "items": {"type": "string"}}, "messages": {"type": "array", "items": {"type": "object", "properties": {"sender": {"type": "string"}, "recipients": {"type": "array", "... |
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" : "Eames Lounge Chair", "description" : "A chair.", "url" : "http://www.hermanmiller.com/products/seating/lounge-seating/eames-lounge-chair-and-ottoman.html"} | 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#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"type": {"type": "string"}, "id": {"type": "string"}, "properties": {"type": "object", "properties": {"addr:city": {"type": "string"}, "addr:housenumber": {"type": "string"}, "addr:postcode": {"type": "string"},... | {"type" : "Feature", "id" : "way/139662310", "properties" : {"addr:city" : "Mannheim", "addr:housenumber" : "3", "addr:postcode" : "68309", "addr:street" : "Freiberger Ring", "addr:suburb" : "Vogelstang", "amenity" : "marketplace", "name" : "Marktplatz", "opening_hours" : "We 07:00-13:30; Fr 07:00-13:30", "place" : "sq... | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "id": {"type": "string"}, "properties": {"type": "object", "properties": {"addr:city": {"type": "string"}, "addr:housenumber": {"type": "string"}, "addr:postcode": {"type": "string"}, "addr:street": {"type": "string"}, "addr:suburb": {"type": "string"}, "ame... |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "private": {"type": "boolean"}, "blocklyDemoConfig": {"type": "object", "properties": {"title": {"type": "string"}, "description": {"type": "string"}, "files": {"type":... | {"name" : "blockly-mirror-demo", "version" : "0.0.0", "private" : true, "blocklyDemoConfig" : {"title" : "Mirrored Blockly", "description" : "Two Blockly instances connected as leader-follower.", "files" : ["index.html"]}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "private": {"type": "boolean"}, "blocklyDemoConfig": {"type": "object", "properties": {"title": {"type": "string"}, "description": {"type": "string"}, "files": {"type": "array", "items": {"type": "string"}}}, "required": ["titl... |
Based on the schema below, produce a valid JSON object:
{"type": "array", "items": {"type": "array", "items": {"type": "string"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [["341822104001", "\u8def\u4e1c\u793e\u533a\u5c45\u59d4\u4f1a", "121", "0"], ["341822104002", "\u6d41\u6d1e\u793e\u533a\u5c45\u59d4\u4f1a", "121", "0"], ["341822104003", "\u72ec\u5c71\u793e\u533a\u5c45\u59d4\u4f1a", "121", "0"], ["341822104004", "\u7816\u6865\u793e\u533a\u5c45\u59d4\u4f1a", "122", "0"], ["341822104005"... | json_instruct | {"type": "array", "items": {"type": "array", "items": {"type": "string"}}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"nom": {"type": "string"}, "circ": {"type": "string"}, "dpt": {"type": "string"}, "inscrits": {"type": "integer"}, "abs": {"type": "integer"}, "votants": {"type": "integer"}, "blancs": {"type": "integer"}, "nuls": {"type": "int... | {"nom" : "Le Garn", "circ" : "4\u00e8me circonscription", "dpt" : "Gard", "inscrits" : 210, "abs" : 94, "votants" : 116, "blancs" : 7, "nuls" : 6, "exp" : 103, "res" : [{"nuance" : "REM", "nom" : "Mme Annie CHAPELIER", "voix" : 75}, {"nuance" : "FN", "nom" : "Mme Brigitte ROULLAUD", "voix" : 28}]} | 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"... |
Generate a valid JSON object that conforms to the following schema:
{"type": "array", "items": {"type": "object", "properties": {"message": {"type": "string"}, "line": {"type": "integer"}, "column": {"type": "integer"}}, "required": ["message", "line", "column"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
... | [{"message" : "Missing space after key 'JSON like'.", "line" : 4, "column" : 5}, {"message" : "Missing space before value for key 'JSON like'.", "line" : 4, "column" : 17}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"message": {"type": "string"}, "line": {"type": "integer"}, "column": {"type": "integer"}}, "required": ["message", "line", "column"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"directions": {"type": "array", "items": {"type": "string"}}, "ingredients": {"type": "array", "items": {"type": "string"}}, "language": {"type": "string"}, "source": {"type": "string"}, "tags": {"type": "array", "... | {"directions" : ["Preheat oven to 375 degrees F (or 190 degrees C). Grease cookie sheets.", "Put all ingredients except raisins (or chips) and walnuts in food processor. Mix well.", "Put in bowl and add raisins and walnuts, stir.", "Drop by teaspoons onto greased cookie sheets. Bake for 12-15 minutes. NOTE: Can ... | 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... |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "author": {"type": "string"}, "license": {"type": "string"}, "private": {"type": "boolean"}, "devDependencies": {"t... | {"name" : "hello-hugo", "version" : "1.0.0", "description" : "hugo blog", "author" : "Lynn Speng", "license" : "MIT", "private" : true, "devDependencies" : {"autoprefixer" : "^10.3.3", "postcss" : "^8.3.6", "postcss-cli" : "^8.3.1", "postcss-import" : "^14.0.2", "prettier" : "^2.3.2", "prettier-plugin-go-template" : "^... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "author": {"type": "string"}, "license": {"type": "string"}, "private": {"type": "boolean"}, "devDependencies": {"type": "object", "properties": {"autoprefixer": {"type": "string"}, "postcss":... |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"knapsack_capacities": {"type": "array", "items": {"type": "integer"}}, "item_weights": {"type": "array", "items": {"type": "integer"}}, "item_profits": {"type": "array", "items": {"type": "integer"}}}, "required": ... | {"knapsack_capacities" : [158], "item_weights" : [19, 24, 46, 44, 14, 17, 22, 46, 35, 33, 12], "item_profits" : [457, 123, 424, 408, 113, 425, 410, 161, 146, 159, 410]} | json_instruct | {"type": "object", "properties": {"knapsack_capacities": {"type": "array", "items": {"type": "integer"}}, "item_weights": {"type": "array", "items": {"type": "integer"}}, "item_profits": {"type": "array", "items": {"type": "integer"}}}, "required": ["knapsack_capacities", "item_weights", "item_profits"], "$schema": "ht... |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"candidate name": {"type": "string"}, "description": {"type": "string"}, "website": {"type": "string"}, "raised vs spent": {"type": "array", "items": {"type": "object", "properties": {"Raised": {"type": "string"}, "Spent": {... | {"candidate name" : "Scott Sherman", "description" : "City Councilman", "website" : "https://www.sherman2020.com/", "raised vs spent" : [{"Raised" : "364504", "Spent" : "579417", "Donors" : "1430", "Average Donor" : "204"}], "by industry" : [{"industry 1" : ["Retired", "102244", "28"], "industry 2" : ["Real Estate", "1... | json_instruct | {"type": "object", "properties": {"candidate name": {"type": "string"}, "description": {"type": "string"}, "website": {"type": "string"}, "raised vs spent": {"type": "array", "items": {"type": "object", "properties": {"Raised": {"type": "string"}, "Spent": {"type": "string"}, "Donors": {"type": "string"}, "Average Dono... |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"an5.169:1.1": {"type": "string"}, "an5.169:2.1": {"type": "string"}, "an5.169:3.1": {"type": "string"}}, "required": ["an5.169:1.1", "an5.169:2.1", "an5.169:3.1"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"an5.169:1.1" : "dr22.220, ms16A5_985, msdiv169", "an5.169:2.1" : "bj20.326, csp1ed16.177, csp2ed16.177, ms16A5_986, ndp17.448", "an5.169:3.1" : "ms16A5_987, vri37.187"} | json_instruct | {"type": "object", "properties": {"an5.169:1.1": {"type": "string"}, "an5.169:2.1": {"type": "string"}, "an5.169:3.1": {"type": "string"}}, "required": ["an5.169:1.1", "an5.169:2.1", "an5.169:3.1"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "author": {"type": "string"}, "summary": {"type": "string"}, "license": {"type": "string"}, "source": {"type": "string"}, "project_page": {"type": "string"},... | {"name" : "denver-colorprompt", "version" : "2.1.3", "author" : "dmcanally", "summary" : "Add colors to your bash prompt", "license" : "Apache-2.0", "source" : "git://github.com/dmcanally/denver-colorprompt.git", "project_page" : "https://github.com/dmcanally/denver-colorprompt", "issues_url" : "https://github.com/dmca... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "author": {"type": "string"}, "summary": {"type": "string"}, "license": {"type": "string"}, "source": {"type": "string"}, "project_page": {"type": "string"}, "issues_url": {"type": "string"}, "operatingsystem_support": {"type":... |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"name": {"type": "string"}, "filename": {"type": "string"}, "description": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ... | {"name" : "tAutocomplete", "filename" : "tautocomplete.min.js", "description" : "Automplete drop-down lists the details in a table format. The plugin is useful when multiple details has to be displayed.", "repository" : {"type" : "git", "url" : "https://github.com/vyasrao/tAutocomplete.git"}, "keywords" : ["autocomplet... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "filename": {"type": "string"}, "description": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "keywords": {"type": "array", "items": {"type": "string"}... |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"minAppVersion": {"type": "integer"}, "shaderType": {"type": "integer"}, "itemList": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "frameDuration": {"type": "integer"}, "frames": {"type": ... | {"minAppVersion" : 350, "shaderType" : 0, "itemList" : [{"id" : "ear", "frameDuration" : 83, "frames" : 24, "height" : 404, "width" : 780, "triggerType" : 2, "playCount" : 0, "alwaysTriggered" : 1, "type" : 2, "alignFacePoints" : [86, 88], "anchorPoint" : [390, 360], "scalePivots" : [0, 18], "scaleFactor" : 480}, {"id"... | json_instruct | {"type": "object", "properties": {"minAppVersion": {"type": "integer"}, "shaderType": {"type": "integer"}, "itemList": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "frameDuration": {"type": "integer"}, "frames": {"type": "integer"}, "height": {"type": "integer"}, "width": {"typ... |
The schema below describes a JSON structure. Generate a valid example:
{"type": "array", "items": {"type": "object", "properties": {"province": {"type": "string"}, "city": {"type": "string"}, "area": {"type": "string"}, "name": {"type": "string"}, "code": {"type": "string"}, "address": {"type": "string"}, "phone": {"t... | [{"province" : "\u6c5f\u82cf\u7701", "city" : "\u8fde\u4e91\u6e2f\u5e02", "area" : "\u6d77\u5dde\u533a", "name" : "\u8fde\u4e91\u6e2f\u5e02\u6d77\u660c\u8def\u90ae\u653f\u652f\u5c40", "code" : "222002", "address" : "\u8fde\u4e91\u6e2f\u5e02\u6d77\u5dde\u533a\u89e3\u653e\u4e2d\u8def22-118\u53f7", "phone" : "0518-8545582... | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"province": {"type": "string"}, "city": {"type": "string"}, "area": {"type": "string"}, "name": {"type": "string"}, "code": {"type": "string"}, "address": {"type": "string"}, "phone": {"type": "string"}}, "required": ["province", "city", "area", "name", "code... |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"search.trending": {"type": "string"}, "search.popular": {"type": "string"}}, "required": ["search.trending", "search.popular"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"search.trending" : "Tren", "search.popular" : "Populer"} | json_instruct | {"type": "object", "properties": {"search.trending": {"type": "string"}, "search.popular": {"type": "string"}}, "required": ["search.trending", "search.popular"], "$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"}, "lockfileVersion": {"type": "integer"}, "requires": {"type": "boolean"}, "dependencies": {"type": "object", "properties": {"@fluencelabs/aqua": {"type": "o... | {"name" : "@fluencelabs/aqua-dht", "version" : "0.2.0", "lockfileVersion" : 1, "requires" : true, "dependencies" : {"@fluencelabs/aqua" : {"version" : "0.3.1-228", "resolved" : "https://registry.npmjs.org/@fluencelabs/aqua/-/aqua-0.3.1-228.tgz", "integrity" : "sha512-uTgCNa+tBhUyl18Ejq0CpoJxxD3CsOI4+BU64Hdkm9LNE9nu94k8... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "lockfileVersion": {"type": "integer"}, "requires": {"type": "boolean"}, "dependencies": {"type": "object", "properties": {"@fluencelabs/aqua": {"type": "object", "properties": {"version": {"type": "string"}, "resolved": {"type... |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"name": {"type": "string"}, "displayName": {"type": "string"}}, "required": ["name", "displayName"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "NativeX", "displayName" : "NativeX"} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "displayName": {"type": "string"}}, "required": ["name", "displayName"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "array", "items": {"type": "object", "properties": {"merged": {"type": "string"}, "source": {"type": "string"}}, "required": ["merged", "source"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"merged" : "/home/cpl/hd1/study/Android/ASProjects/coolweather-master1/app/build/intermediates/res/merged/debug/color-v11/abc_background_cache_hint_selector_material_light.xml", "source" : "/home/cpl/.android/build-cache/bc9783100e85bb4b82cea8f1d235df467fe7161e/output/res/color-v11/abc_background_cache_hint_selector_... | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"merged": {"type": "string"}, "source": {"type": "string"}}, "required": ["merged", "source"]}, "$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"}, "url": {"type": "string"}, "license": {"type": "string"}, "tags": {"type": "array", "items": {"type": "string"}}, "description": {"type": "string"}, "version": {"type": "string"}, "class... | {"name" : "reckoner", "url" : "https://github.com/fal-works/reckoner/", "license" : "MIT", "tags" : ["game"], "description" : "Small library for math and 2D geometry.", "version" : "0.2.0", "classPath" : "src/", "releasenote" : "Added methods of Random and ArcDegrees. Other minor fixes.", "contributors" : ["fal-works"]... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "url": {"type": "string"}, "license": {"type": "string"}, "tags": {"type": "array", "items": {"type": "string"}}, "description": {"type": "string"}, "version": {"type": "string"}, "classPath": {"type": "string"}, "releasenote": {"type": "string"}, "contribut... |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"citations": {"type": "array", "items": {"type": "object", "properties": {"textCitation": {"type": "string"}}, "required": ["textCitation"]}}, "argumentText": {"type": "string"}, "conclusion": {"type": "string... | {"citations" : [{"textCitation" : "[See restt1 on Metamath](http://us.metamath.org/mpegif/restt1.html)"}], "argumentText" : "ARGUMENT\n\n| Step | Hyp | Ref | Expression |\n|---|---|---|---|\n\n| 1 | | #P_t1top | |- ( J e. Fre -> J e. Top ) |\n| 2 | | #P_cnt1 | |- ( ( J e. Fre /\\ ( _I |` ( A i^i U. J ) ) : ( A i^i U.... | json_instruct | {"type": "object", "properties": {"citations": {"type": "array", "items": {"type": "object", "properties": {"textCitation": {"type": "string"}}, "required": ["textCitation"]}}, "argumentText": {"type": "string"}, "conclusion": {"type": "string"}, "language": {"type": "string"}, "lookupTerms": {"type": "array", "items":... |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"disk": {"type": "object", "properties": {"mu": {"type": "array", "items": {"type": "number"}}, "roll": {"type": "number"}, "rEff": {"type": "number"}, "axRatio": {"type": "number"}, "i0": {"type": "number"}, "c": ... | {"disk" : {"mu" : [113.23004150390625, 116.853515625], "roll" : 0.8725554379517314, "rEff" : 67.9490038206328, "axRatio" : 0.840325282204543, "i0" : 0.2, "c" : 2, "n" : 1}, "bulge" : {"mu" : [115.03472900390625, 115.951171875], "roll" : 0.0906598872007453, "rEff" : 3.5880164929269243, "axRatio" : 0.5621940733997497, "i... | json_instruct | {"type": "object", "properties": {"disk": {"type": "object", "properties": {"mu": {"type": "array", "items": {"type": "number"}}, "roll": {"type": "number"}, "rEff": {"type": "number"}, "axRatio": {"type": "number"}, "i0": {"type": "number"}, "c": {"type": "integer"}, "n": {"type": "integer"}}, "required": ["mu", "roll... |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"menu": {"type": "object", "properties": {"item": {"type": "string"}, "category": {"type": "string"}, "category-1": {"type": "string"}}, "required": ["item", "category", "category-1"]}, "rules": {"type": "object", "pr... | {"menu" : {"item" : "{{#levelRepeat}} {{/levelRepeat}}* [{{{title}}}]({{{link}}})\n", "category" : "{{#levelRepeat}} {{/levelRepeat}}* {{#link}}[{{{title}}}]({{{link}}}){{/link}}{{^link}}{{{title}}}{{/link}}\n{{{subitems}}}", "category-1" : "{{{subitems}}}\n"}, "rules" : {"exclude" : [], "order" : ["Home.md"]}, "sepa... | json_instruct | {"type": "object", "properties": {"menu": {"type": "object", "properties": {"item": {"type": "string"}, "category": {"type": "string"}, "category-1": {"type": "string"}}, "required": ["item", "category", "category-1"]}, "rules": {"type": "object", "properties": {"exclude": {"type": "array", "items": {}}, "order": {"typ... |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"dev": {"type": "string"}, "start": {"type": "str... | {"name" : "space-jelly-twitch-bot", "version" : "1.0.0", "description" : "", "main" : "index.js", "scripts" : {"dev" : "nodemon server.js", "start" : "node server.js", "test" : "echo \"Error: no test specified\" && exit 1"}, "author" : "", "license" : "MIT", "dependencies" : {"bufferutil" : "^4.0.3", "date-fns" : "^2.1... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"dev": {"type": "string"}, "start": {"type": "string"}, "test": {"type": "string"}}, "required": ["dev", "start", "test... |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "dependencies": {"type": "object", "properties": {"firebase-admin": {"type": "string"}, "firebase-functions": {"type": "string"}, "next": {"type": "... | {"name" : "io-dot-com-function", "description" : "Function to SSR iolivares.com", "dependencies" : {"firebase-admin" : "5.8.1", "firebase-functions" : "^0.8.1", "next" : "^5.0.1-canary.13", "react" : "^16.2.0", "react-dom" : "^16.2.0"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "dependencies": {"type": "object", "properties": {"firebase-admin": {"type": "string"}, "firebase-functions": {"type": "string"}, "next": {"type": "string"}, "react": {"type": "string"}, "react-dom": {"type": "string"}}, "r... |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"oid": {"type": "string"}, "hafta": {"type": "integer"}, "buyukIkramiyeKazananIl": {"type": "string"}, "cekilisTarihi": {"type": "string"}, "cekilisTuru": {"type": "string"}, "rakamlar": {"type": "string"}, "rakamlarNumaraSi... | {"oid" : "st_2003-06-25", "hafta" : 106, "buyukIkramiyeKazananIl" : "", "cekilisTarihi" : "25/06/2003", "cekilisTuru" : "SANS_TOPU", "rakamlar" : "07#11#12#25#31#14", "rakamlarNumaraSirasi" : "7 - 11 - 12 - 25 - 31 - <b>14</b>", "devretti" : true, "devirSayisi" : 0, "bilenKisiler" : [{"oid" : "st_2003-06-25_51", "kisiB... | json_instruct | {"type": "object", "properties": {"oid": {"type": "string"}, "hafta": {"type": "integer"}, "buyukIkramiyeKazananIl": {"type": "string"}, "cekilisTarihi": {"type": "string"}, "cekilisTuru": {"type": "string"}, "rakamlar": {"type": "string"}, "rakamlarNumaraSirasi": {"type": "string"}, "devretti": {"type": "boolean"}, "d... |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"webpackCompilationHash": {"type": "string"}}, "required": ["webpackCompilationHash"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"webpackCompilationHash" : "6e38641a19bf173a56f5"} | json_instruct | {"type": "object", "properties": {"webpackCompilationHash": {"type": "string"}}, "required": ["webpackCompilationHash"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"word" : "subdulcid", "definition" : "Somewhat sweet; sweetish. [R.]"} | json_instruct | {"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"jquery.flexdatalist.css": {"type": "string"}, "jquery.flexdatalist.js": {"type": "string"}, "jquery.flexdatalist.min.css": {"type": "string"}, "jquery.flexdatalist.min.js": {"type": "string"}}, "required": ["jquery.flexdata... | {"jquery.flexdatalist.css" : "sha512-XDI7qYLn1oi6uo6NP8NeEqU7xjl5l2ZfiPz9zSKrqKsbEOYQnf2TSRcFcdITM/+6fVz7i13T+DvGw/XAbHjrpg==", "jquery.flexdatalist.js" : "sha512-mJfZC1Fc62gcSdLo+kRX8g+13ZyJmD9OiQOn59tBgRU1F6twNTU8KUL3rEPBnZlzfz1X17evz9DQPFpoqi42Mg==", "jquery.flexdatalist.min.css" : "sha512-vwbVGAv2zBgYvGZmXhpAf5rmtK... | json_instruct | {"type": "object", "properties": {"jquery.flexdatalist.css": {"type": "string"}, "jquery.flexdatalist.js": {"type": "string"}, "jquery.flexdatalist.min.css": {"type": "string"}, "jquery.flexdatalist.min.js": {"type": "string"}}, "required": ["jquery.flexdatalist.css", "jquery.flexdatalist.js", "jquery.flexdatalist.min.... |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"kind": {"type": "string"}, "state": {"type": "string"}}, "required": ["kind", "state"]}, "features": {"type": "array", "items": {"type": "o... | {"type" : "FeatureCollection", "properties" : {"kind" : "state", "state" : "OR"}, "features" : [{"type" : "Feature", "properties" : {"kind" : "county", "name" : "Jackson", "state" : "OR"}, "geometry" : {"type" : "MultiPolygon", "coordinates" : [[[[-122.2803, 42.992], [-122.2912, 42.0062], [-123.2333, 42.0062], [-123.22... | 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... |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "main": {"type": "string"}, "license": {"type": "string"}, "private": {"type": "boolean"}, "module": {"type": "string"}, "preconstruct": {"type": "object", "properties"... | {"name" : "entrypoint-pkg-json-missing", "version" : "1.0.0", "main" : "dist/entrypoint-pkg-json-missing.cjs.js", "license" : "MIT", "private" : true, "module" : "dist/entrypoint-pkg-json-missing.esm.js", "preconstruct" : {"entrypoints" : [".", "other"]}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "main": {"type": "string"}, "license": {"type": "string"}, "private": {"type": "boolean"}, "module": {"type": "string"}, "preconstruct": {"type": "object", "properties": {"entrypoints": {"type": "array", "items": {"type": "stri... |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"type": {"type": "string"}, "objects": {"type": "object", "properties": {"E01012373": {"type": "object", "properties": {"type": {"type": "string"}, "crs": {"type": "object", "properties": {"type": {"type": "string"}, "proper... | {"type" : "Topology", "objects" : {"E01012373" : {"type" : "GeometryCollection", "crs" : {"type" : "name", "properties" : {"name" : "urn:ogc:def:crs:OGC:1.3:CRS84"}}, "geometries" : [{"type" : "Polygon", "properties" : {"OA11CD" : "E00062414", "LAD11CD" : "E06000006"}, "arcs" : [[0, 1, 2, 3]]}, {"type" : "Polygon", "pr... | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "objects": {"type": "object", "properties": {"E01012373": {"type": "object", "properties": {"type": {"type": "string"}, "crs": {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"name": {"type": "str... |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"extends": {"type": "string"}}, "required": ["extends"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"extends" : "@entermedia-llc/eslint-config/next"} | json_instruct | {"type": "object", "properties": {"extends": {"type": "string"}}, "required": ["extends"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"word" : "spermatospore", "definition" : "Same as Spermospore."} | json_instruct | {"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"n_dim": {"type": "integer"}, "n_trials": {"type": "integer"}, "objective": {"type": "string"}, "white": {"type": "string"}, "black": {"type": "string"}, "traceback": {"type": "array", "items": {"type": "string"}}, "best_val... | {"n_dim" : 5, "n_trials" : 80, "objective" : "markowitz_analytic_on_cube", "white" : "bayesopt_ei", "black" : "pymoo_nsga2", "traceback" : ["passing", "passing"], "best_val" : [0.1447520490983002, 0.6628091902990216], "best_x" : [[0.1443822274913511, 0.13022445781557002, 0.1392319738361949, 0.021424369860892245, 0.5691... | json_instruct | {"type": "object", "properties": {"n_dim": {"type": "integer"}, "n_trials": {"type": "integer"}, "objective": {"type": "string"}, "white": {"type": "string"}, "black": {"type": "string"}, "traceback": {"type": "array", "items": {"type": "string"}}, "best_val": {"type": "array", "items": {"type": "number"}}, "best_x": {... |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]... | {"name" : "superfeedr-connect-middleware", "version" : "0.0.0", "description" : "PuSH & Superfeedr middleware for Node.js (Connect/Express)", "main" : "index.js", "scripts" : {"test" : "mocha"}, "repository" : {"type" : "git", "url" : "git://github.com/superfeedr/superfeedr-connect-middleware.git"}, "keywords" : ["supe... | 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... |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"limit": {"type": "integer"}, "name": {"type": "string"}, "value": {"type": "integer"}, "highalch": {"type": "integer"}, "id": {"type": "integer"}, "lowalch": {"type": "integer"}, "name_pt": {"type": "string"}, "price": {"type": ... | {"limit" : 100, "name" : "Off-hand rune crossbow", "value" : 1101, "highalch" : 660, "id" : 25891, "lowalch" : 440, "name_pt" : "Balestra r\u00fanica secund\u00e1ria", "price" : 13122, "last" : 13393} | json_instruct | {"type": "object", "properties": {"limit": {"type": "integer"}, "name": {"type": "string"}, "value": {"type": "integer"}, "highalch": {"type": "integer"}, "id": {"type": "integer"}, "lowalch": {"type": "integer"}, "name_pt": {"type": "string"}, "price": {"type": "integer"}, "last": {"type": "integer"}}, "required": ["l... |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"status_code": {"type": "integer"}, "data": {"type": "object", "properties": {"MD5OfMessageBody": {"type": "string"}, "MD5OfMessageAttributes": {"type": "string"}, "ResponseMetadata": {"type": "object", "properties": {"HTTPStat... | {"status_code" : 200, "data" : {"MD5OfMessageBody" : "3d70962590c76eb549cc40d2619a02e0", "MD5OfMessageAttributes" : "946cd3de20375a35edac1cfb851bb312", "ResponseMetadata" : {"HTTPStatusCode" : 200, "RequestId" : "726cb40f-1642-5fce-a755-fba788ed7881"}, "MessageId" : "dca9a2f1-39e9-45bf-bb7b-01ea35b75abe"}} | json_instruct | {"type": "object", "properties": {"status_code": {"type": "integer"}, "data": {"type": "object", "properties": {"MD5OfMessageBody": {"type": "string"}, "MD5OfMessageAttributes": {"type": "string"}, "ResponseMetadata": {"type": "object", "properties": {"HTTPStatusCode": {"type": "integer"}, "RequestId": {"type": "string... |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"name": {"type": "string"}, "id": {"type": "string"}, "address": {"type": "string"}, "school_type": {"type": "string"}, "phone": {"type": "string"}, "full_time_school": {"type": "boolean"}, "programs": {"type": "object", "propert... | {"name" : "Leinebergschule\nGrundschule", "id" : "NI-32438-0", "address" : "Weserstr. 32, 37081\u00a0G\u00f6ttingen", "school_type" : "Grundschule Ganztagsschule", "phone" : "0551 4005759", "full_time_school" : false, "programs" : {"programs" : []}, "state" : "NI", "lon" : 9.912279, "lat" : 51.526704} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "id": {"type": "string"}, "address": {"type": "string"}, "school_type": {"type": "string"}, "phone": {"type": "string"}, "full_time_school": {"type": "boolean"}, "programs": {"type": "object", "properties": {"programs": {"type": "array", "items": {}}}, "requ... |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"levels": {"type": "array", "items": {"type": "string"}}, "thumbnail": {"type": "string"}, "starter": {"type": "string"}}, "required": ["levels", "thumbnail", "starter"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"levels" : ["coloring/00.json"], "thumbnail" : "mt_thumbnail", "starter" : "MATCH_THREE"} | json_instruct | {"type": "object", "properties": {"levels": {"type": "array", "items": {"type": "string"}}, "thumbnail": {"type": "string"}, "starter": {"type": "string"}}, "required": ["levels", "thumbnail", "starter"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"id": {"type": "string"}, "code": {"type": "string"}, "name": {"type": "string"}, "description": {"type": "string"}, "division": {"type": "string"}, "department": {"type": "string"}, "prerequisites": {"type": "string"}, "exclusio... | {"id" : "PPG200H1F20199", "code" : "PPG200H1F", "name" : "Microeconomics for Policy Analysis", "description" : "The objectives are: (1) To provide students with a foundation in microeconomic analysis and; (2) To demonstrate how this foundation can be applied to design, predict the effects of and evaluate public policie... | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "code": {"type": "string"}, "name": {"type": "string"}, "description": {"type": "string"}, "division": {"type": "string"}, "department": {"type": "string"}, "prerequisites": {"type": "string"}, "exclusions": {"type": "string"}, "level": {"type": "integer"}, "c... |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"latest_version": {"type": "array", "items": {"type": "string"}}, "meta": {"type": "object", "properties": {"description": {"type": "string"}, "homepage": {"type": "string"}, "license": {"type": "string"}}, "require... | {"latest_version" : ["0.3"], "meta" : {"description" : "Testlink Console", "homepage" : "https://github.com/chbrun/testlinkconsole", "license" : "BSD"}, "versions" : {"0.1" : {"sha256" : "74ebfa8e8855105f6d512283f1fdd123921285a75209f338ba162d4ba60f14d3", "url" : "https://files.pythonhosted.org/packages/44/1b/b648f5f0fd... | json_instruct | {"type": "object", "properties": {"latest_version": {"type": "array", "items": {"type": "string"}}, "meta": {"type": "object", "properties": {"description": {"type": "string"}, "homepage": {"type": "string"}, "license": {"type": "string"}}, "required": ["description", "homepage", "license"]}, "versions": {"type": "obje... |
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" : "pollock", "definition" : "A marine gadoid fish (Pollachius carbonarius), native both of the European and American coasts. It is allied to the cod, and like it is salted and dried. In England it is called coalfish, lob, podley, podling, pollack, etc."} | json_instruct | {"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"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" : "1409030012", "district_id" : "1409030", "name" : "TELUK PIYAI"} | 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#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"success": {"type": "boolean"}, "code": {"type": "string"}, "data": {"type": "object", "properties": {"states": {"type": "null"}, "districts": {"type": "array", "items": {"type": "object", "properties": {"name": {"... | {"success" : true, "code" : "SUCCESS", "data" : {"states" : null, "districts" : [{"name" : "bengaluru urban", "registeredUsers" : 2553312}, {"name" : "mysuru", "registeredUsers" : 205044}, {"name" : "belagavi", "registeredUsers" : 194698}, {"name" : "dharwad", "registeredUsers" : 144884}, {"name" : "ballari", "register... | json_instruct | {"type": "object", "properties": {"success": {"type": "boolean"}, "code": {"type": "string"}, "data": {"type": "object", "properties": {"states": {"type": "null"}, "districts": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "registeredUsers": {"type": "integer"}}, "required": [... |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"id": {"type": "string"}, "provinceId": {"type": "string"}, "regencyId": {"type": "string"}, "districtId": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "provinceId", "regencyId", "districtId"... | {"id" : "2031", "provinceId" : "11", "regencyId" : "13", "districtId" : "01", "name" : "Bustanussalam"} | 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#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"black": {"type": "string"}, "white": {"type": "string"}, "winner": {"type": "string"}, "playedAt": {"type": "string"}, "location": {"type": "string"}, "event": {"type": "string"}, "moves": {"type": "string"}}, "requi... | {"black" : "Jobava,Ba", "white" : "Caruana,F", "winner" : "Draw", "playedAt" : "2015.05.19", "location" : "Khanty-Mansiysk RUS", "event" : "KM FIDE GP 2015", "moves" : "pgn1.e4 c6 2.d4 d5 3.e5 Bf5 4.Nf3 e6 5.Be2 f6 6.O-O fxe5 7.Nxe5 Nd7 8.Bd3 Ngf6\n9.Re1 Be7 10.Nf3 Ne4 11.Nc3 Ndf6 12.Bg5 O-O 13.Nxe4 dxe4 14.Bxf6 exd3\n... | json_instruct | {"type": "object", "properties": {"black": {"type": "string"}, "white": {"type": "string"}, "winner": {"type": "string"}, "playedAt": {"type": "string"}, "location": {"type": "string"}, "event": {"type": "string"}, "moves": {"type": "string"}}, "required": ["black", "white", "winner", "playedAt", "location", "event", "... |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"BallAgentStage3": {"type": "object", "properties": {"checkpoints": {"type": "array", "items": {"type": "object", "properties": {"steps": {"type": "integer"}, "file_path": {"type": "string"}, "reward": {"type": ... | {"BallAgentStage3" : {"checkpoints" : [{"steps" : 3067, "file_path" : "results\\t3454t\\BallAgentStage3\\BallAgentStage3-3067.onnx", "reward" : 0.06349206349206349, "creation_time" : 1613917891.1530938}], "final_checkpoint" : {"steps" : 3067, "file_path" : "results\\t3454t\\BallAgentStage3.onnx", "reward" : 0.063492063... | json_instruct | {"type": "object", "properties": {"BallAgentStage3": {"type": "object", "properties": {"checkpoints": {"type": "array", "items": {"type": "object", "properties": {"steps": {"type": "integer"}, "file_path": {"type": "string"}, "reward": {"type": "number"}, "creation_time": {"type": "number"}}, "required": ["steps", "fil... |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"id": {"type": "integer"}, "info": {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "additionalInfo": {"type": "string"}, "format": {"type": "string"}, "category":... | {"id" : 111061, "info" : {"name" : "Aywas Ugly Easier Adventure - jump", "description" : "Jump everything! Or at least try. Works off the ugly easier adventure base.", "additionalInfo" : "Forum here: http://www.aywas.com/forum/topic/2004478530/", "format" : "uso", "category" : "aywas", "createdAt" : "2015-03-02T10:35... | json_instruct | {"type": "object", "properties": {"id": {"type": "integer"}, "info": {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "additionalInfo": {"type": "string"}, "format": {"type": "string"}, "category": {"type": "string"}, "createdAt": {"type": "string"}, "updatedAt": {"type":... |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "is_illegal": {"type": "boolean"}, "is_custom": {"type": "boolean"}, "text": {"type": "string"}, "images": {"type": "array", "items": {"type": "string"}}, "... | {"id" : 11522979, "name" : "Number C69: Heraldry Crest of Horror", "is_illegal" : false, "is_custom" : false, "text" : "4 Level 5 monsters\nWhen an opponent's monster declares an attack: You can destroy all cards your opponent controls. If this card has \"Number 69: Heraldry Crest\" as an Xyz Material, it gains this ef... | json_instruct | {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "is_illegal": {"type": "boolean"}, "is_custom": {"type": "boolean"}, "text": {"type": "string"}, "images": {"type": "array", "items": {"type": "string"}}, "type": {"type": "string"}, "attribute": {"type": "string"}, "atk": {"type":... |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": [... | {"name" : "jasmine2-protractor-utils", "version" : "1.3.0", "description" : "Utilities for Protractor with jasmine2 [HTML Reports, Screenshot, Browser Console log and more]", "main" : "index.js", "scripts" : {"test" : "echo \"Error: no test specified\" && exit 1"}, "repository" : {"type" : "git", "url" : "git+https://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"}}, "required": ["test"]}, "repository": {"type": "object", "properties": {"type": {"type": "s... |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"description": {"type": "string"}, "favorite": {"type": "string"}, "length": {"type": "string"}, "likes": {"type": "string"}, "recorded": {"type": "string"}, "speakers": {"type": "array", "items": {"type": "string"}},... | {"description" : "DrupalSouth Gold Coast 2016\nhttps://goldcoast2016.drupal.org.au/\n\nHuman vs Machine: A love story\nRoom: Doghouse Agency (Level 2)\nThu, 27-Oct, 15:15\nBeginner - Building\nSimon Chisnall\n\nAt Webscope, we\u2019ve spent years refining and adding to our developer workflow and now we think we\u2019ve... | json_instruct | {"type": "object", "properties": {"description": {"type": "string"}, "favorite": {"type": "string"}, "length": {"type": "string"}, "likes": {"type": "string"}, "recorded": {"type": "string"}, "speakers": {"type": "array", "items": {"type": "string"}}, "tags": {"type": "array", "items": {}}, "thumbnail_url": {"type": "s... |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"type": {"type": "string"}, "description": {"type": "string"}, "services": {"type": "array", "items": {"type": "object", "properties": {"iid": {"type": "integer"}, "type": {"type": "string"}, "description": {"type": "string"}, ... | {"type" : "urn:xiot-spec:device:light:0000A001:uiot:light2:1", "description" : "Light", "services" : [{"iid" : 357, "type" : "urn:xiot-spec:service:device-information:00007801:uiot:light2:1", "description" : "Device Information", "properties" : [{"iid" : 904, "type" : "urn:xiot-spec:property:manufacturer:00000001:uiot:... | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "description": {"type": "string"}, "services": {"type": "array", "items": {"type": "object", "properties": {"iid": {"type": "integer"}, "type": {"type": "string"}, "description": {"type": "string"}, "properties": {"type": "array", "items": {"type": "object",... |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"Python": {"type": "integer"}}, "required": ["Python"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"Python" : 67202} | json_instruct | {"type": "object", "properties": {"Python": {"type": "integer"}}, "required": ["Python"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible 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"}, "wof:id... | {"id" : 102030385, "type" : "Feature", "properties" : {"src:alt_label" : "quattroshapes_pg", "src:geom" : "quattroshapes_pg", "wof:geomhash" : "8b9188958f3260642b6d1ef1b3aad996", "wof:id" : 102030385, "wof:repo" : "whosonfirst-data-admin-in"}, "bbox" : [76.79498, 28.20665, 76.79498, 28.20665], "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": ["... |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"type": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "array"... | {"type" : "Feature", "geometry" : {"type" : "MultiPolygon", "coordinates" : [[[[-0.090834, 51.520872], [-0.090767, 51.521091], [-0.091408, 51.521153], [-0.091319, 51.521627], [-0.091712, 51.521618], [-0.091745, 51.521255], [-0.092454, 51.521223], [-0.092387, 51.521033], [-0.090834, 51.520872]]]]}, "properties" : {"refe... | 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": "array", "items": {"type": "number"}}}}}}, "required": ["type", "coordinates"]}... |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"pageContext": {"type": "object", "properties": {"id": {"type": "string"}}, "required": ["id"]}}, "required": ["pageContext"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"pageContext" : {"id" : "f1723061-cdab-535e-9dd5-91a4a2e36b53"}} | json_instruct | {"type": "object", "properties": {"pageContext": {"type": "object", "properties": {"id": {"type": "string"}}, "required": ["id"]}}, "required": ["pageContext"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"stations": {"type": "object", "properties": {"838": {"type": "object", "properties": {"ffmc": {"type": "null"}, "isi": {"type": "null"}, "bui": {"type": "null"}, "years": {"type": "array", "items": {"type": "in... | {"stations" : {"838" : {"ffmc" : null, "isi" : null, "bui" : null, "years" : [2010, 2011, 2012, 2013, 2014, 2015, 2016, 2017, 2018], "station" : {"code" : 838, "name" : "AKOKLI CREEK", "lat" : 49.4358, "long" : -116.7464, "ecodivision_name" : "HUMID CONTINENTAL HIGHLANDS", "core_season" : {"start_month" : 5, "start_day... | json_instruct | {"type": "object", "properties": {"stations": {"type": "object", "properties": {"838": {"type": "object", "properties": {"ffmc": {"type": "null"}, "isi": {"type": "null"}, "bui": {"type": "null"}, "years": {"type": "array", "items": {"type": "integer"}}, "station": {"type": "object", "properties": {"code": {"type": "in... |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"title": {"type": "string"}, "description": {"type": "string"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"name": {"type": "object", "properties": {"title": {"type": "string"}, "description": {... | {"title" : "Customer Profile", "description" : "Alpaca Farm Ice Cream Customer Profile Form.", "type" : "object", "properties" : {"name" : {"title" : "Name", "description" : "Enter your full name.", "type" : "string", "required" : true}, "age" : {"title" : "Age", "description" : "Enter your age.", "type" : "number"}, "... | json_instruct | {"type": "object", "properties": {"title": {"type": "string"}, "description": {"type": "string"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"name": {"type": "object", "properties": {"title": {"type": "string"}, "description": {"type": "string"}, "type": {"type": "string"}, "required": ... |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"title": {"type": "string"}, "description": {"type": "string"}, "difficulty": {"type": "string"}, "time": {"type": "string"}, "details": {"type": "object", "properties": {"steps": {"type": "array", "items": {"type": ... | {"title" : "Getting Started with Kubernetes Upstream Development", "description" : "Install Basic Tools", "difficulty" : "beginner", "time" : "10 minutes", "details" : {"steps" : [{"title" : "Step 1 - Create a fork on github", "text" : "step1.md"}, {"title" : "Step 2 - Install basic tools", "text" : "step2.md"}, {"titl... | json_instruct | {"type": "object", "properties": {"title": {"type": "string"}, "description": {"type": "string"}, "difficulty": {"type": "string"}, "time": {"type": "string"}, "details": {"type": "object", "properties": {"steps": {"type": "array", "items": {"type": "object", "properties": {"title": {"type": "string"}, "text": {"type":... |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"tiers": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "sponsors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "url": {"type": "... | {"tiers" : [{"name" : "Diamond Tier", "sponsors" : [{"name" : "Sponsor Name", "url" : "http://www.example.com", "logo" : "/img/sponsor1.png"}, {"name" : "Sponsor Name", "url" : "http://www.example.com", "logo" : "/img/sponsor2.png"}, {"name" : "Sponsor Name", "url" : "http://www.example.com", "logo" : "/img/sponsor3.pn... | json_instruct | {"type": "object", "properties": {"tiers": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "sponsors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "url": {"type": "string"}, "logo": {"type": "string"}}, "required": ["name", "url", "lo... |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"account": {"type": "string"}, "token": {"type": "string"}}, "required": ["account", "token"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"account" : "ip1-xxxxx", "token" : "LXmCpjxwGRze2F"} | json_instruct | {"type": "object", "properties": {"account": {"type": "string"}, "token": {"type": "string"}}, "required": ["account", "token"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"extends": {"type": "array", "items": {"type": "string"}}, "semanticCommits": {"type": "boolean"}, "rangeStrategy": {"type": "string"}, "prCreation": {"type": "string"}, "masterIssue": {"type": "boolean"}, "pr... | {"extends" : ["config:base"], "semanticCommits" : true, "rangeStrategy" : "bump", "prCreation" : "not-pending", "masterIssue" : true, "prHourlyLimit" : 0, "packageRules" : [{"packagePatterns" : ["^@types/"], "automerge" : true}]} | json_instruct | {"type": "object", "properties": {"extends": {"type": "array", "items": {"type": "string"}}, "semanticCommits": {"type": "boolean"}, "rangeStrategy": {"type": "string"}, "prCreation": {"type": "string"}, "masterIssue": {"type": "boolean"}, "prHourlyLimit": {"type": "integer"}, "packageRules": {"type": "array", "items":... |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"MatVecMulUncoalesced10": {"type": "object", "properties": {"write": {"type": "object", "properties": {"device_start": {"type": "number"}, "host_queued_start": {"type": "number"}, "device_queued": {"type": "number"}, "device... | {"MatVecMulUncoalesced10" : {"write" : {"device_start" : 1586197526.3646228, "host_queued_start" : 1586197609.337112, "device_queued" : 1586197526.3645911, "device_end" : 1586197526.3646395, "host_queued_end" : 1586197609.337465}, "device" : "gpu", "nd_range" : {"device_start" : 1586197526.364745, "device_end" : 158619... | json_instruct | {"type": "object", "properties": {"MatVecMulUncoalesced10": {"type": "object", "properties": {"write": {"type": "object", "properties": {"device_start": {"type": "number"}, "host_queued_start": {"type": "number"}, "device_queued": {"type": "number"}, "device_end": {"type": "number"}, "host_queued_end": {"type": "number... |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"IsRecentlyVerified": {"type": "boolean"}, "ID": {"type": "integer"}, "UUID": {"type": "string"}, "DataProviderID": {"type": "integer"}, "OperatorID": {"type": "integer"}, "UsageTypeID": {"type": "integer"}, "UsageCost": {"type":... | {"IsRecentlyVerified" : false, "ID" : 87758, "UUID" : "6D8E3E80-A6CC-4B67-BFF2-10D42062DF17", "DataProviderID" : 1, "OperatorID" : 45, "UsageTypeID" : 7, "UsageCost" : "By negotiation.", "AddressInfo" : {"ID" : 88104, "Title" : "Invercargill Top 10 Holiday Park", "AddressLine1" : "77 McIvor Road", "Town" : "Waikiwi, In... | json_instruct | {"type": "object", "properties": {"IsRecentlyVerified": {"type": "boolean"}, "ID": {"type": "integer"}, "UUID": {"type": "string"}, "DataProviderID": {"type": "integer"}, "OperatorID": {"type": "integer"}, "UsageTypeID": {"type": "integer"}, "UsageCost": {"type": "string"}, "AddressInfo": {"type": "object", "properties... |
Generate a valid JSON object that conforms to the following schema:
{"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"}
| ["angular-oauth2", "angular-oauth2-extended", "census-boundaries", "check-build", "cpr", "crx", "defaults-deep-safe", "docker-mock", "dredd-bench", "fg-lodash", "good-logentries-fg", "good-logmatic", "gulp-cli", "gulp-cli4", "gulp4-ing-cli", "hostname-is-private", "immutable-props", "input-components", "isoc", "joola",... | json_instruct | {"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"username": {"type": "string"}, "itemtype": {"type": "string"}, "comments": {"type": "string"}}, "required": ["username", "itemtype", "comments"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"username" : "raaga", "itemtype" : "ligers", "comments" : "I like the guild too much"} | json_instruct | {"type": "object", "properties": {"username": {"type": "string"}, "itemtype": {"type": "string"}, "comments": {"type": "string"}}, "required": ["username", "itemtype", "comments"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"order": {"type": "object", "properties": {"amountOfMoney": {"type": "object", "properties": {"currencyCode": {"type": "string"}, "amount": {"type": "integer"}}, "required": ["currencyCode", "amount"]}, "customer": {"type": "obje... | {"order" : {"amountOfMoney" : {"currencyCode" : "EUR", "amount" : 2345}, "customer" : {"billingAddress" : {"countryCode" : "BE", "city" : "Zaventem", "zip" : "1930", "street" : "Da Vincilaan", "houseNumber" : "3"}, "personalInformation" : {"dateOfBirth" : "19370929", "name" : {"firstName" : "Wile", "surname" : "Coyote"... | json_instruct | {"type": "object", "properties": {"order": {"type": "object", "properties": {"amountOfMoney": {"type": "object", "properties": {"currencyCode": {"type": "string"}, "amount": {"type": "integer"}}, "required": ["currencyCode", "amount"]}, "customer": {"type": "object", "properties": {"billingAddress": {"type": "object", ... |
Create an example JSON object that satisfies this schema:
{"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"}
| ["pinecast-uploader"] | json_instruct | {"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this 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" : "8172040004", "district_id" : "8172040", "name" : "KEL. MASRUM"} | 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#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"id": {"type": "string"}, "playerTags": {"type": "array", "items": {}}, "teamTags": {"type": "array", "items": {"type": "string"}}, "gameTags": {"type": "array", "items": {"type": "string"}}, "metadata": {"typ... | {"id" : "19164168-c652-4108-bb14-e5afb892be2c", "playerTags" : [], "teamTags" : ["c73b705c-40ad-4633-a6ed-d357ee2e2bcf", "747b8e4a-7e50-4638-a973-ea7950a3e739"], "gameTags" : ["8d8d1c63-7a88-48ff-be5e-6fed21d0d8f0"], "metadata" : {"away" : "c73b705c-40ad-4633-a6ed-d357ee2e2bcf", "home" : "747b8e4a-7e50-4638-a973-ea7950... | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "playerTags": {"type": "array", "items": {}}, "teamTags": {"type": "array", "items": {"type": "string"}}, "gameTags": {"type": "array", "items": {"type": "string"}}, "metadata": {"type": "object", "properties": {"away": {"type": "string"}, "home": {"type": "st... |
The schema below describes a JSON structure. Generate a valid example:
{"type": "array", "items": {"type": "object", "properties": {"package": {"type": "string"}, "downloads": {"type": "integer"}, "count": {"type": "integer"}}, "required": ["package", "downloads", "count"]}, "$schema": "http://json-schema.org/draft-07... | [{"package" : "bioconductor-htmg430pmprobe", "downloads" : 1200, "count" : 1069}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"package": {"type": "string"}, "downloads": {"type": "integer"}, "count": {"type": "integer"}}, "required": ["package", "downloads", "count"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"success": {"type": "boolean"}, "message": {"type": "string"}, "updatedRequest": {"type": "object", "properties": {"request": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, ... | {"success" : true, "message" : "Verification Successful", "updatedRequest" : {"request" : {"id" : "AWQqIucjm", "name" : "Bolton Opondo", "tripType" : "oneWay", "manager" : "Bolton Opondo", "gender" : "Male", "department" : "Fellowship-Programs", "role" : "Technical Team Lead", "status" : "Verified", "userId" : "-LaGj_y... | json_instruct | {"type": "object", "properties": {"success": {"type": "boolean"}, "message": {"type": "string"}, "updatedRequest": {"type": "object", "properties": {"request": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "tripType": {"type": "string"}, "manager": {"type": "string"}, "gender":... |
Please provide a valid JSON object following this schema:
{"type": "array", "items": {"type": "object", "properties": {"manufacturer": {"type": "string"}, "market_name": {"type": "string"}, "codename": {"type": "string"}, "model": {"type": "string"}}, "required": ["manufacturer", "market_name", "codename", "model"]}, ... | [{"manufacturer" : "TCT (Alcatel)", "market_name" : "TCL 950", "codename" : "idol4s_cn", "model" : "TCL 950"}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"manufacturer": {"type": "string"}, "market_name": {"type": "string"}, "codename": {"type": "string"}, "model": {"type": "string"}}, "required": ["manufacturer", "market_name", "codename", "model"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"type": {"type": "string"}, "level": {"type": "string"}, "label": {"type": "string"}, "locale": {"type": "string"}, "country_id": {"type": "integer"}, ... | {"type" : "Feature", "properties" : {"type" : "barangay", "level" : "4", "label" : "Banisilon, Aloran, Misamis Occidental, Northern Mindanao (Region X), PH", "locale" : "ph.northern-mindanao-region-x.misamis-occidental.aloran.banisilon", "country_id" : 177, "country_reference" : 177, "country_name" : "Philippines", "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": "object", "properties": {"KESKNE_IMAGE_TAG": {"type": "string"}, "KESKNE_LOGS_DIR": {"type": "string"}, "ROOT_HOSTNAME": {"type": "string"}, "RPS_HOSTNAME": {"type": "string"}, "LAULUD_HOSTNAME": {"type": "string"}}, "required": ["KESKNE_IMAGE_TAG", "K... | {"KESKNE_IMAGE_TAG" : "latest", "KESKNE_LOGS_DIR" : "/var/log/keskne/", "ROOT_HOSTNAME" : "lucaspickering.me", "RPS_HOSTNAME" : "rps.lucaspickering.me", "LAULUD_HOSTNAME" : "laulud.lucaspickering.me"} | json_instruct | {"type": "object", "properties": {"KESKNE_IMAGE_TAG": {"type": "string"}, "KESKNE_LOGS_DIR": {"type": "string"}, "ROOT_HOSTNAME": {"type": "string"}, "RPS_HOSTNAME": {"type": "string"}, "LAULUD_HOSTNAME": {"type": "string"}}, "required": ["KESKNE_IMAGE_TAG", "KESKNE_LOGS_DIR", "ROOT_HOSTNAME", "RPS_HOSTNAME", "LAULUD_H... |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "array", "items": {"type": "array", "items": {... | {"contract" : "0x018d7d179350f1bb9853d04982820e37cce13a92", "tool" : "manticore", "start" : 1563982931.9746482, "end" : 1563984734.2122166, "duration" : 1802.2375683784485, "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": {"type": "array", "items": {}}}}, "required": ["contract", "tool", "start", "end", "duration", "ana... |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"type": {"type": "string"}, "objects": {"type": "object", "properties": {"E01027965": {"type": "object", "properties": {"type": {"type": "string"}, "crs": {"type": "object", "properties": {"type": {"type": "st... | {"type" : "Topology", "objects" : {"E01027965" : {"type" : "GeometryCollection", "crs" : {"type" : "name", "properties" : {"name" : "urn:ogc:def:crs:OGC:1.3:CRS84"}}, "geometries" : [{"type" : "Polygon", "properties" : {"OA11CD" : "E00142477", "LAD11CD" : "E07000170"}, "arcs" : [[0, 1, 2]]}, {"type" : "Polygon", "prope... | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "objects": {"type": "object", "properties": {"E01027965": {"type": "object", "properties": {"type": {"type": "string"}, "crs": {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"name": {"type": "str... |
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" : 101773731, "type" : "Feature", "properties" : {"src:alt_label" : "quattroshapes", "src:geom" : "quattroshapes", "wof:geomhash" : "8814714a3188abea6b9feaa290931c0a", "wof:id" : 101773731, "wof:repo" : "whosonfirst-data-admin-fr"}, "bbox" : [3.45973889536606, 43.37805023402899, 3.48030335414831, 43.39399038895033... | 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": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"}
| ["wheelchair", "crutches", "Untitled Label"] | json_instruct | {"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"ast": {"type": "null"}, "code": {"type": "string"}, "map": {"type": "null"}, "metadata": {"type": "object", "properties": {}, "required": []}, "sourceType": {"type": "string"}}, "required": ["ast", "code", "map", ... | {"ast" : null, "code" : "import defaultSource from \"./defaultSource\";\nexport default (function sourceRandomIrwinHall(source) {\n function randomIrwinHall(n) {\n return function () {\n for (var sum = 0, i = 0; i < n; ++i) sum += source();\n\n return sum;\n };\n }\n\n randomIrwinHall.source = source... | json_instruct | {"type": "object", "properties": {"ast": {"type": "null"}, "code": {"type": "string"}, "map": {"type": "null"}, "metadata": {"type": "object", "properties": {}, "required": []}, "sourceType": {"type": "string"}}, "required": ["ast", "code", "map", "metadata", "sourceType"], "$schema": "http://json-schema.org/draft-07/s... |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"id": {"type": "integer"}, "date": {"type": "string"}, "user": {"type": "string"}, "post": {"type": "string"}}, "required": ["id", "date", "user", "post"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : 163919, "date" : "2020-04-10 14:43:46", "user" : "ninzo59", "post" : "Hello LET !\r\n\r\nHope you are doing well and you are all healthy :)\r\n\r\nWe have released a new server (available till 20th April) with a 500 mbps bandwidth (vs 250 Mbps usually)\r\n\r\n**SYS-S-3**\r\n\r\nIntel Xeon E5-1630v3\r\n4c / 8t ... | json_instruct | {"type": "object", "properties": {"id": {"type": "integer"}, "date": {"type": "string"}, "user": {"type": "string"}, "post": {"type": "string"}}, "required": ["id", "date", "user", "post"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"title": {"type": "string"}, "recipe": {"type": "string"}}, "required": ["title", "recipe"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"title" : "Tinker Station Crafting", "recipe" : "tconstruct:tables/tinker_station"} | json_instruct | {"type": "object", "properties": {"title": {"type": "string"}, "recipe": {"type": "string"}}, "required": ["title", "recipe"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"name": {"type": "string"}, "flags": {"type": "integer"}, "props": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "name": {"type": "string"}, "flags": {"type": "integer"}}, "r... | {"name" : "gameNPCstubData", "flags" : 2, "props" : [{"type" : "entEntityID", "name" : "spawnerID", "flags" : 6627016704}, {"type" : "CName", "name" : "entryID", "flags" : 6627016704}]} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "flags": {"type": "integer"}, "props": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "name": {"type": "string"}, "flags": {"type": "integer"}}, "required": ["type", "name", "flags"]}}}, "required": ["name", "flags",... |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"type": {"type": "string"}, "objects": {"type": "object", "properties": {"E01005593": {"type": "object", "properties": {"type": {"type": "string"}, "crs": {"type": "object", "properties": {"type": {"type": "string"},... | {"type" : "Topology", "objects" : {"E01005593" : {"type" : "GeometryCollection", "crs" : {"type" : "name", "properties" : {"name" : "urn:ogc:def:crs:OGC:1.3:CRS84"}}, "geometries" : [{"type" : "Polygon", "properties" : {"OA11CD" : "E00028306", "LAD11CD" : "E08000005"}, "arcs" : [[0, 1, 2, 3]]}, {"type" : "Polygon", "pr... | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "objects": {"type": "object", "properties": {"E01005593": {"type": "object", "properties": {"type": {"type": "string"}, "crs": {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"name": {"type": "str... |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"t": {"type": "string"}, "h": {"type": "array", "items": {"type": "object", "properties": {"d": {"type": "array", "items": {"type": "object", "properties": {"f": {"type": "string"}}, "required": ["f"]}}}, "required": ... | {"t" : "malaolahay", "h" : [{"d" : [{"f" : "\u76f8\u611b\u7684\uff0c\u6069\u611b\u7684\uff0c\u5f7c\u6b64\u559c\u6b61\u7684\u3002"}, {"f" : "`Ora~"}]}, {"d" : [{"f" : "`kapah~ `ato~ `k~`ai~`y~`i~`ng~ `tada~ `malaolah~`ay~.\u90a3\u4f4d"}]}, {"d" : [{"f" : "\u5e74\u8f15\u4eba\u548c\u5c0f\u59d0\u5f7c\u6b64\u975e\u5e38\u559... | json_instruct | {"type": "object", "properties": {"t": {"type": "string"}, "h": {"type": "array", "items": {"type": "object", "properties": {"d": {"type": "array", "items": {"type": "object", "properties": {"f": {"type": "string"}}, "required": ["f"]}}}, "required": ["d"]}}, "stem": {"type": "string"}}, "required": ["t", "h", "stem"],... |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"name": {"type": "string"}, "main": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "author": {"type": "string"}, "keywords": {"type": "array", "items": {}}, "repository": {"typ... | {"name" : "blame", "main" : "./lib/init", "version" : "0.10.0", "description" : "Show git blame as a gutter.", "author" : "Josa Gesell <josa@gesell.me>", "keywords" : [], "repository" : "https://github.com/josa42/atom-blame", "license" : "MIT", "engines" : {"atom" : ">=1.0.0 <2.0.0"}, "activationCommands" : {"atom-work... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "main": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "author": {"type": "string"}, "keywords": {"type": "array", "items": {}}, "repository": {"type": "string"}, "license": {"type": "string"}, "engines": {"type": "obje... |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}, "pack": {"type": "st... | {"name" : "rask-vask", "version" : "0.1.0", "description" : "RaskVask Desktop App", "main" : "main.js", "scripts" : {"start" : "electron .", "pack" : "electron-packager . --icon \"app_icons/Icon.icns\" --overwrite"}, "author" : "Merethe \u00d8lst\u00f8ren", "license" : "MIT", "dependencies" : {"electron" : "^1.6.7", "e... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}, "pack": {"type": "string"}}, "required": ["start", "pack"]}, "author": {"type": "string"},... |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"kind": {"type": "string"}, "state": {"type": "string"}}, "required": ["kind", "state"]}, "features": {"type": "array", "items": {"ty... | {"type" : "FeatureCollection", "properties" : {"kind" : "state", "state" : "TX"}, "features" : [{"type" : "Feature", "properties" : {"kind" : "county", "name" : "San Jacinto", "state" : "TX"}, "geometry" : {"type" : "MultiPolygon", "coordinates" : [[[[-95.3118, 30.8825], [-95.2461, 30.9044], [-95.2023, 30.8223], [-95.1... | 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... |
Create an example JSON object that satisfies this schema:
{"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [[[-4033, -807, -8009, -682, 1406, 780, 1975, 2068, -245, -11657, -840, -3701, -376, 2885, 3085, 2908, 860, -929, -662, 451, -312, 1048, 25985, -3224, 4939, -19106, -1179, 4832, -155, 410, 1416, -1217, 501, -3122, 293, -3276, -986, 368, 1914, 104, 192, 1224, 1005, 374, 585, -1025, -4271, -2, -572, -3543, 2112, 863, -45... | json_instruct | {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"private": {"type": "boolean"}, "workspaces": {"type": "object", "properties": {"packages": {"type": "array", "items": {"type": "string"}}, "nohoist": {"type": "array", "items": {}}}, "required": ["packages", "nohois... | {"private" : true, "workspaces" : {"packages" : ["packages/*"], "nohoist" : []}, "scripts" : {"release" : "lerna publish"}, "devDependencies" : {"lerna" : "^3.22.1"}, "author" : {"name" : "Ash Connell", "email" : "hello@ashconnell.com"}, "license" : "MIT"} | json_instruct | {"type": "object", "properties": {"private": {"type": "boolean"}, "workspaces": {"type": "object", "properties": {"packages": {"type": "array", "items": {"type": "string"}}, "nohoist": {"type": "array", "items": {}}}, "required": ["packages", "nohoist"]}, "scripts": {"type": "object", "properties": {"release": {"type":... |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"t": {"type": "string"}, "h": {"type": "array", "items": {"type": "object", "properties": {"d": {"type": "array", "items": {"type": "object", "properties": {"f": {"type": "string"}}, "required": ["f"]}}}, "required": ["d"]}}, "st... | {"t" : "mipapiparacan", "h" : [{"d" : [{"f" : "\u66fe\u7d93\u53d7\u547d\u5e72\u64fe\u4e86\u3001\u59a8\u7919\u4e86\u3002"}]}, {"d" : [{"f" : "`Mipapiparac~`a~`n~ `ako~ `ci~`nira~ `a~ `mafuti'~.\u6211\u8b93\u4eba\u5e72\u64fe\u4ed6\u7761\u89ba\u7684\u3002"}, {"f" : "\u6307\u53d7\u547d\u5e72\u64fe\u6216\u59a8\u7919\u4ed6\u... | json_instruct | {"type": "object", "properties": {"t": {"type": "string"}, "h": {"type": "array", "items": {"type": "object", "properties": {"d": {"type": "array", "items": {"type": "object", "properties": {"f": {"type": "string"}}, "required": ["f"]}}}, "required": ["d"]}}, "stem": {"type": "string"}}, "required": ["t", "h", "stem"],... |
Generate a valid JSON object that conforms to the following schema:
{"type": "array", "items": {"type": "object", "properties": {"subreddit": {"type": "string"}, "hour": {"type": "string"}, "avg": {"type": "number"}}, "required": ["subreddit", "hour", "avg"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"subreddit" : "TrumpNicknames", "hour" : "01", "avg" : 4.8125}, {"subreddit" : "TrumpNicknames", "hour" : "02", "avg" : 6.423076923076923}, {"subreddit" : "TrumpNicknames", "hour" : "03", "avg" : 8.125}, {"subreddit" : "TrumpNicknames", "hour" : "04", "avg" : 10.0}, {"subreddit" : "TrumpNicknames", "hour" : "05", "av... | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"subreddit": {"type": "string"}, "hour": {"type": "string"}, "avg": {"type": "number"}}, "required": ["subreddit", "hour", "avg"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"canvasXpress.css": {"type": "string"}, "canvasXpress.min.css": {"type": "string"}, "canvasXpress.min.js": {"type": "string"}}, "required": ["canvasXpress.css", "canvasXpress.min.css", "canvasXpress.min.js"], "$schema": "http:/... | {"canvasXpress.css" : "sha512-tVvRwbf2/yMoX+pVtbnFk+WFpWHNhFTw/F24O49iLCITAA4Hg2Tv8idWCOHApzewp9tKqDlQBTuLudI//Z5hoQ==", "canvasXpress.min.css" : "sha512-O4cMgXFulwlbQ3T+e5lnW4uq2cuFwWQ4K8hmc92HqfrRwgJbZd8RBJ8a1U3rWlg4xWzX02nPLL5UtY5QYIyLkw==", "canvasXpress.min.js" : "sha512-sP52On5paUWzXbVMrxvn38+3oFVaLGikuiBoJTjLhYF... | json_instruct | {"type": "object", "properties": {"canvasXpress.css": {"type": "string"}, "canvasXpress.min.css": {"type": "string"}, "canvasXpress.min.js": {"type": "string"}}, "required": ["canvasXpress.css", "canvasXpress.min.css", "canvasXpress.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"count": {"type": "integer"}, "self": {"type": "number"}, "total": {"type": "number"}, "children": {"type": "null"}, "gauges": {"type": "object", "properties": {}, "required": []}, "metadata": {"type": "object", "p... | {"count" : 1, "self" : 115.27162879999999, "total" : 115.2716238, "children" : null, "gauges" : {}, "metadata" : {"timer_format_version" : "0.1.0", "start_time_seconds" : "1639938335", "unity_version" : "2020.3.17f1", "command_line_arguments" : "C:\\Program Files\\2020.3.17f1\\Editor\\Unity.exe -projectpath C:/Users/gr... | json_instruct | {"type": "object", "properties": {"count": {"type": "integer"}, "self": {"type": "number"}, "total": {"type": "number"}, "children": {"type": "null"}, "gauges": {"type": "object", "properties": {}, "required": []}, "metadata": {"type": "object", "properties": {"timer_format_version": {"type": "string"}, "start_time_sec... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.