input
stringlengths
159
2.05k
output
stringlengths
5
10.3k
task
stringclasses
1 value
schema
stringlengths
100
1.99k
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "start": {"type": "string"}}, "r...
{"name" : "node-nes", "version" : "1.0.0", "description" : "A NES emulator written in node for use on the web!", "main" : "src/nes.js", "scripts" : {"test" : "echo \"Error: no test specified\" && exit 1", "start" : "budo main.js --live --dir ."}, "repository" : {"type" : "git", "url" : "git+https://github.com/ande765a/...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "start": {"type": "string"}}, "required": ["test", "start"]}, "repository": {"type": "objec...
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"accounts": {"type": "array", "items": {"type": "object", "properties": {"accountNumber": {"type": "string"}, "type": {"type": "string"}, "fee": {"type": "string"}, "licenceNumber": {"type": "string"}, "accoun...
{"accounts" : [{"accountNumber" : "999101", "type" : "Personal functional licence", "fee" : "145", "licenceNumber" : "999101-F-123456-001", "accountStart" : "2014-02-12T00:00:00", "renewalDate" : "2019-02-12T00:00:00", "renewalDue" : "yes", "surrender" : "no", "accountName" : "Wade Winston Wilson", "title" : "Mr", "fir...
json_instruct
{"type": "object", "properties": {"accounts": {"type": "array", "items": {"type": "object", "properties": {"accountNumber": {"type": "string"}, "type": {"type": "string"}, "fee": {"type": "string"}, "licenceNumber": {"type": "string"}, "accountStart": {"type": "string"}, "renewalDate": {"type": "string"}, "renewalDue":...
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"manifest_version": {"type": "integer"}, "name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "permissions": {"type": "array", "items": {"type": "string"}}, "background": {"...
{"manifest_version" : 2, "name" : "DownloadSelected", "version" : "0.11", "description" : "Download selected URLs of images as Zip", "permissions" : ["contextMenus", "activeTab", "downloads", "<all_urls>"], "background" : {"scripts" : ["background.js"]}, "browser_action" : {}}
json_instruct
{"type": "object", "properties": {"manifest_version": {"type": "integer"}, "name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "permissions": {"type": "array", "items": {"type": "string"}}, "background": {"type": "object", "properties": {"scripts": {"type": "array", "items": {"...
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"title": {"type": "string"}, "fields": {"type": "array", "items": {"type": "string"}}, "abstract": {"type": "string"}, "citation": {"type": "string"}, "departments": {"type": "array", "items": {"type": "string...
{"title" : "Learning Networks of Stochastic Differential Equations.", "fields" : ["directed graph", "graphical model", "stochastic differential equation", "model selection", "stochastic neural network"], "abstract" : "We consider linear models for stochastic dynamics. To any such model can be associated a network (name...
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...
Generate sample JSON data that conforms to the following schema definition: {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "is_in_staging": {"type": "boolean"}, "is_partition": {"type": "boolean"}, "type": {"type": "string"}, "mode": {"type":...
[{"name" : "dia", "description" : "Dia", "is_in_staging" : true, "is_partition" : false, "type" : "INTEGER", "mode" : "NULLABLE"}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "is_in_staging": {"type": "boolean"}, "is_partition": {"type": "boolean"}, "type": {"type": "string"}, "mode": {"type": "string"}}, "required": ["name", "description", "is_in_staging", "is_partiti...
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "properties": {"type": "object", "properties": {"...
{"type" : "MultiPolygon", "coordinates" : [[[[-94.38741317199997, 39.04494662900003], [-94.41514436199996, 39.04604308400007], [-94.41500730499993, 39.05061164900007], [-94.41482456299994, 39.052895932000055], [-94.41487024799993, 39.056687841000034], [-94.41496161999997, 39.057373126000066], [-94.41487024799993, 39.06...
json_instruct
{"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "properties": {"type": "object", "properties": {"id": {"type": "string"}, "type": {"type": "string"}, "name": {...
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"dependencies": {"type": "object", "properties": {"babel-plugin-transform-object-rest-spread": {"type": "string"}}, "required": ["babel-plugin-transform-object-rest-spread"]}}, "required": ["dependencies"], "$schema": "http:...
{"dependencies" : {"babel-plugin-transform-object-rest-spread" : "6.19.0"}}
json_instruct
{"type": "object", "properties": {"dependencies": {"type": "object", "properties": {"babel-plugin-transform-object-rest-spread": {"type": "string"}}, "required": ["babel-plugin-transform-object-rest-spread"]}}, "required": ["dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"model": {"type": "string"}, "dataset": {"type": "string"}, "rmse_train": {"type": "number"}, "rmse_test": {"type": "number"}, "log_score_train": {"type": "number"}, "log_score_test": {"type": "number"}, "crps...
{"model" : "MC dropout", "dataset" : "concrete", "rmse_train" : 5.096575494216125, "rmse_test" : 5.463808733530373, "log_score_train" : -2.8978580212427945, "log_score_test" : -3.0305877099294394, "crps_train" : 2.632653185096601, "crps_test" : 2.8718385636670396, "picp_train" : 0.9848975188781014, "picp_test" : 0.9514...
json_instruct
{"type": "object", "properties": {"model": {"type": "string"}, "dataset": {"type": "string"}, "rmse_train": {"type": "number"}, "rmse_test": {"type": "number"}, "log_score_train": {"type": "number"}, "log_score_test": {"type": "number"}, "crps_train": {"type": "number"}, "crps_test": {"type": "number"}, "picp_train": {...
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"t": {"type": "string"}, "h": {"type": "array", "items": {"type": "object", "properties": {"d": {"type": "array", "items": {"type": "object", "properties": {"f": {"type": "string"}, "e": {"type": "array", "items": {"type": "str...
{"t" : "mipakalaolaan", "h" : [{"d" : [{"f" : "\u66fe\u7d93\u4f7f\u4e4b\u5a1b\u6a02\u3001\u958b\u5fc3\u4e86\u3002", "e" : ["\ufff9`Mipakalaola~`a~`n~ `ni~ `wama~ `kora~ `wawa~ `a~ `misalama~.\ufffa\ufffb\u7236\u89aa\u8b93\u5b69\u5b50\u73a9\u5f97\u958b\u5fc3\u4e86\u3002"]}, {"f" : "\u6307\u66fe\u4f7f\u4e4b\u6109\u5feb\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"}, "e": {"type": "array", "items": {"type": "string"}}}, "required": ["f", "e"]}}}, "required": ["d"]}}, "s...
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"note": {"type": "string"}, "benchmarks": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "set": {"type": "integer"}, "get1": {"type": "integer"}, "update": {"type": "integer...
{"note" : "higher is better", "benchmarks" : [{"name" : "tiny-lru", "set" : 37879, "get1" : 151515, "update" : 118871, "get2" : 122511, "evict" : 20812}, {"name" : "hashlru", "set" : 58140, "get1" : 60377, "update" : 62016, "get2" : 58267, "evict" : 19249}, {"name" : "mnemonist-object", "set" : 67058, "get1" : 224090, ...
json_instruct
{"type": "object", "properties": {"note": {"type": "string"}, "benchmarks": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "set": {"type": "integer"}, "get1": {"type": "integer"}, "update": {"type": "integer"}, "get2": {"type": "integer"}, "evict": {"type": "integer"}}, "requir...
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"540302100": {"type": "string"}, "540302101": {"type": "string"}, "540302102": {"type": "string"}, "540302200": {"type": "string"}, "540302201": {"type": "string"}, "540302202": {"type": "string"}, "540302203": ...
{"540302100" : "\u57ce\u5173\u9547", "540302101" : "\u4fc4\u6d1b\u9547", "540302102" : "\u5361\u82e5\u9547", "540302200" : "\u8292\u8fbe\u4e61", "540302201" : "\u6c99\u8d21\u4e61", "540302202" : "\u82e5\u5df4\u4e61", "540302203" : "\u57c3\u897f\u4e61", "540302204" : "\u5982\u610f\u4e61", "540302205" : "\u65e5\u901a\u4e...
json_instruct
{"type": "object", "properties": {"540302100": {"type": "string"}, "540302101": {"type": "string"}, "540302102": {"type": "string"}, "540302200": {"type": "string"}, "540302201": {"type": "string"}, "540302202": {"type": "string"}, "540302203": {"type": "string"}, "540302204": {"type": "string"}, "540302205": {"type": ...
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"nom": {"type": "string"}, "dpt": {"type": "string"}, "inscrits": {"type": "integer"}, "abs": {"type": "integer"}, "votants": {"type": "integer"}, "blancs": {"type": "integer"}, "nuls": {"type": "integer"}, "exp...
{"nom" : "Vaudeurs", "dpt" : "Yonne", "inscrits" : 392, "abs" : 71, "votants" : 321, "blancs" : 45, "nuls" : 6, "exp" : 270, "res" : [{"panneau" : "2", "voix" : 146}, {"panneau" : "1", "voix" : 124}]}
json_instruct
{"type": "object", "properties": {"nom": {"type": "string"}, "dpt": {"type": "string"}, "inscrits": {"type": "integer"}, "abs": {"type": "integer"}, "votants": {"type": "integer"}, "blancs": {"type": "integer"}, "nuls": {"type": "integer"}, "exp": {"type": "integer"}, "res": {"type": "array", "items": {"type": "object"...
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"author": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "name"]}, "date": {"type": "object", "properties": {"day": {"type": "integer"}, "full": {"type": "integer"}, ...
{"author" : {"id" : "t2_12so9x", "name" : "limithron"}, "date" : {"day" : 1617235200, "full" : 1617288345, "month" : 1617235200, "week" : 1616889600}, "id" : "t3_mhwuo8", "misc" : {"postHint" : "image"}, "picture" : {"filesize" : 94136, "fullUrl" : "https://preview.redd.it/nbop2bo0rkq61.jpg?auto=webp&s=d2dfac61cf734d7b...
json_instruct
{"type": "object", "properties": {"author": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "name"]}, "date": {"type": "object", "properties": {"day": {"type": "integer"}, "full": {"type": "integer"}, "month": {"type": "integer"}, "week": {"type": "integer"}},...
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"3427": {"type": "string"}, "3429": {"type": "string"}}, "required": ["3427", "3429"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"3427" : "3428", "3429" : "3430"}
json_instruct
{"type": "object", "properties": {"3427": {"type": "string"}, "3429": {"type": "string"}}, "required": ["3427", "3429"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"logEventType": {"type": "string"}, "servicePointId": {"type": "string"}, "loanId": {"type": "string"}, "isLoanClosed": {"type": "boolean"}, "systemReturnDate": {"type": "string"}, "returnDate": {"type": "string"}, "dueDate": {...
{"logEventType" : "CHECK_IN_EVENT", "servicePointId" : "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "loanId" : "f93c3359-682c-4c87-aed5-2d3e9357d41d", "isLoanClosed" : true, "systemReturnDate" : "2020-09-25T08:44:16.574Z", "returnDate" : "2020-09-25T08:44:17.000Z", "dueDate" : "2020-09-26T08:42:05.004Z", "holdingsRecordId" ...
json_instruct
{"type": "object", "properties": {"logEventType": {"type": "string"}, "servicePointId": {"type": "string"}, "loanId": {"type": "string"}, "isLoanClosed": {"type": "boolean"}, "systemReturnDate": {"type": "string"}, "returnDate": {"type": "string"}, "dueDate": {"type": "string"}, "holdingsRecordId": {"type": "string"}, ...
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "array", "items": {}}}, "required": ["contract",...
{"contract" : "0x37e343f2cc245754595f1ae3656b460c35d636fb", "tool" : "osiris", "start" : 1564581841.683525, "end" : 1564581844.3147616, "duration" : 2.6312365531921387, "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://...
Please provide a valid JSON object following this schema: {"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"}
["react-bootstrap-native-slider", "react-bootstrap-slider", "react-html5-slider", "yw-react-bootstrap-slider"]
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": {"id": {"type": "integer"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"src:alt_label": {"type": "string"}, "src:geom": {"type": "string"}, "wof:geomhash": {"type": "string"}, "wof:i...
{"id" : 1260122815, "type" : "Feature", "properties" : {"src:alt_label" : "geonames", "src:geom" : "geonames", "wof:geomhash" : "c92332d1aea9792ef4e824b0799aaa28", "wof:id" : 1260122815, "wof:repo" : "whosonfirst-data-admin-ro"}, "bbox" : [27.44981, 46.49611, 27.44981, 46.49611], "geometry" : {"coordinates" : [27.44981...
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": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test...
{"name" : "image_combiner", "version" : "1.0.0", "description" : "Overlays one image atop the other.", "main" : "index.js", "scripts" : {"test" : "mocha"}, "repository" : {"type" : "git", "url" : "git+https://github.com/awzuelsdorf/ImageCombiner.git"}, "keywords" : ["image", "overlay", "drape", "layer", "combine", "pro...
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...
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"name": {"type": "string"}, "bin": {"type": "object", "properties": {"yt": {"type": "string"}}, "required": ["yt"]}, "files": {"type": "array", "items": {"type": "string"}}, "script": {"type": "object", "properties"...
{"name" : "y-todo", "bin" : {"yt" : "cli.js"}, "files" : ["*.js"], "script" : {"test" : "jest"}, "description" : "A simple node todo application", "version" : "0.0.2", "main" : "index.js", "license" : "MIT", "dependencies" : {"commander" : "^3.0.2", "inquirer" : "^7.0.0"}, "devDependencies" : {"@types/jest" : "^24.0.19...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "bin": {"type": "object", "properties": {"yt": {"type": "string"}}, "required": ["yt"]}, "files": {"type": "array", "items": {"type": "string"}}, "script": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "description": {...
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"format_version": {"type": "integer"}, "header": {"type": "object", "properties": {"description": {"type": "string"}, "name": {"type": "string"}, "uuid": {"type": "string"}, "version": {"type": "array", "items": {"ty...
{"format_version" : 1, "header" : {"description" : "The sounds of We will bedrock u, don't remove", "name" : "We will Bedrock U Sound Pack", "uuid" : "acd2fc9e-acd5-fc8f-a04d-33e2e36bdd68", "version" : [1, 0, 0]}, "modules" : [{"description" : "Don't remove, please.", "type" : "resources", "uuid" : "6cd8a38a-2ee1-b50d-...
json_instruct
{"type": "object", "properties": {"format_version": {"type": "integer"}, "header": {"type": "object", "properties": {"description": {"type": "string"}, "name": {"type": "string"}, "uuid": {"type": "string"}, "version": {"type": "array", "items": {"type": "integer"}}}, "required": ["description", "name", "uuid", "versio...
Generate a valid JSON object that conforms to the following schema: {"type": "array", "items": {"type": "object", "properties": {"comment": {"type": "string"}, "definition": {"type": "string"}, "orthologs": {"type": "object", "properties": {"K04097": {"type": "string"}, "K00799": {"type": "string"}, "K13299": {"type":...
[{"comment" : "", "definition" : "2-Bromoacetaldehyde + Glutathione <=> S-(Formylmethyl)glutathione + Hydrobromic acid", "orthologs" : {"K04097" : "prostaglandin-H2 D-isomerase / glutathione transferase [EC:5.3.99.2 2.5.1.18]", "K00799" : "glutathione S-transferase [EC:2.5.1.18]", "K13299" : "glutathione S-transferase ...
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"comment": {"type": "string"}, "definition": {"type": "string"}, "orthologs": {"type": "object", "properties": {"K04097": {"type": "string"}, "K00799": {"type": "string"}, "K13299": {"type": "string"}}, "required": ["K04097", "K00799", "K13299"]}, "name": {"t...
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "summary": {"type": "string"}, "description": {"type": "string"}, "homepage": {"type": "string"}, "screenshots": {"type": "string"}, "license": {"type": "st...
{"name" : "TTWKPieChart", "version" : "0.2.0", "summary" : "Animated Apple Watch pie chart aka activity aka progress view.", "description" : " A component that simplifies creating of animated Apple Watch style pie charts\n similar to the ones displayed by the Activity app.\...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "summary": {"type": "string"}, "description": {"type": "string"}, "homepage": {"type": "string"}, "screenshots": {"type": "string"}, "license": {"type": "string"}, "authors": {"type": "object", "properties": {"TouchTribe B.V.":...
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "array", "items": {"type": "object", "pr...
{"contract" : "0xb320506cca8b7894df25a8149542bbd2ea99ebc2", "tool" : "osiris", "start" : 1564590275.2303693, "end" : 1564590279.006093, "duration" : 3.775723695755005, "analysis" : [{"errors" : [], "file" : "/unique_chucks/18/0xb320506cca8b7894df25a8149542bbd2ea99ebc2.sol", "name" : "RegistroBlockchain"}]}
json_instruct
{"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "array", "items": {"type": "object", "properties": {"errors": {"type": "array", "items": {}}, "file": {"type": "strin...
Create an example JSON object that satisfies this schema: {"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"}, "severit...
{"schema_version" : "1.2.0", "id" : "GHSA-5hhv-2pjm-ghc2", "modified" : "2022-05-01T18:09:00Z", "published" : "2022-05-01T18:09:00Z", "aliases" : ["CVE-2007-2950"], "details" : "Centennial Discovery 2006 Feature Pack 1, which is used by (1) Numara Asset Manager 8.0 and (2) Symantec Discovery 6.5, uses insecure permissi...
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...
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"recordingRecordReference": {"type": "string"}, "recordingRecordStatus": {"type": "string"}}, "required": ["recordingRecordReference", "recordingRecordStatus"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"recordingRecordReference" : "RRR123", "recordingRecordStatus" : "Applied"}
json_instruct
{"type": "object", "properties": {"recordingRecordReference": {"type": "string"}, "recordingRecordStatus": {"type": "string"}}, "required": ["recordingRecordReference", "recordingRecordStatus"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"}
["node-ethereum"]
json_instruct
{"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"appname": {"type": "string"}, "appport": {"type": "string"}, "mode": {"type": "string"}, "url": {"type": "string"}, "globals": {"type": "object", "properties": {"AP": {"type": "string"}}, "required": ["AP"]}, "window": {"type"...
{"appname" : "newmyappts", "appport" : "5006", "mode" : "browser", "url" : "/", "globals" : {"AP" : "Njs"}, "window" : {"width" : "1000", "height" : "700", "fullscreen" : false, "alwaysontop" : false, "needsReload" : true, "iconfile" : "app/assets/img/neutralino.png", "enableinspector" : false, "borderless" : false, "m...
json_instruct
{"type": "object", "properties": {"appname": {"type": "string"}, "appport": {"type": "string"}, "mode": {"type": "string"}, "url": {"type": "string"}, "globals": {"type": "object", "properties": {"AP": {"type": "string"}}, "required": ["AP"]}, "window": {"type": "object", "properties": {"width": {"type": "string"}, "he...
Create a JSON structure that matches this schema definition: {"type": "array", "items": {"type": "object", "properties": {"bbox": {"type": "string"}, "used": {"type": "boolean"}, "class_name": {"type": "string"}}, "required": ["bbox", "used", "class_name"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"bbox" : "250 78 356 359", "used" : false, "class_name" : "person"}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"bbox": {"type": "string"}, "used": {"type": "boolean"}, "class_name": {"type": "string"}}, "required": ["bbox", "used", "class_name"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"css/material.css": {"type": "array", "items": {"type": "string"}}, "css/custom.css": {"type": "array", "items": {"type": "string"}}, "css/print.css": {"type": "array", "items": {"type": "string"}}, "js/custom.js":...
{"css/material.css" : ["public/css/material.css"], "css/custom.css" : ["public/css/custom.css"], "css/print.css" : ["public/css/print.css"], "js/custom.js" : ["public/js/fix.js", "public/js/extra.js", "public/js/custom.js", "public/js/util.js", "public/js/helper.js", "public/js/print.js"], "js/core.js" : ["public/js/co...
json_instruct
{"type": "object", "properties": {"css/material.css": {"type": "array", "items": {"type": "string"}}, "css/custom.css": {"type": "array", "items": {"type": "string"}}, "css/print.css": {"type": "array", "items": {"type": "string"}}, "js/custom.js": {"type": "array", "items": {"type": "string"}}, "js/core.js": {"type": ...
Construct a JSON document that adheres to this schema specification: {"type": "array", "items": {"type": "object", "properties": {"input": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}, "output": {"type": "array", "items": {"type": "string"}}}, "required": ["input", "output"]}, "$schema": ...
[{"input" : [["en"], ["en-GB", "de", "en-US"]], "output" : ["en-US", "en-GB"]}, {"input" : [["en"], ["en-Latn-GB", "de", "en-Latn-US"]], "output" : ["en-Latn-US", "en-Latn-GB"]}, {"input" : [["fr"], ["fr-CA", "fr-FR"]], "output" : ["fr-FR", "fr-CA"]}, {"input" : [["az-IR"], ["az-Latn", "az-Arab"]], "output" : ["az-Arab...
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"input": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}, "output": {"type": "array", "items": {"type": "string"}}}, "required": ["input", "output"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"replace": {"type": "boolean"}, "values": {"type": "array", "items": {"type": "string"}}}, "required": ["replace", "values"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"replace" : false, "values" : ["pokecube:meowth", "pokecube:meowth_alola", "pokecube:meowth_galar", "pokecube:persian", "pokecube:persian_alola", "pokecube:abra", "pokecube:mew", "pokecube:skitty", "pokecube:delcatty", "pokecube:absol", "pokecube:shinx", "pokecube:luxio", "pokecube:luxray", "pokecube:glameow", "pokecu...
json_instruct
{"type": "object", "properties": {"replace": {"type": "boolean"}, "values": {"type": "array", "items": {"type": "string"}}}, "required": ["replace", "values"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"Version": {"type": "string"}, "Statement": {"type": "array", "items": {"type": "object", "properties": {"Sid": {"type": "string"}, "Effect": {"type": "string"}, "Action": {"type": "string"}, "Resource": {"type": "st...
{"Version" : "2012-10-17", "Statement" : [{"Sid" : "DenyS3DeleteBucket", "Effect" : "Deny", "Action" : "s3:DeleteBucket", "Resource" : "arn:aws:s3:::scp-test-bucket"}]}
json_instruct
{"type": "object", "properties": {"Version": {"type": "string"}, "Statement": {"type": "array", "items": {"type": "object", "properties": {"Sid": {"type": "string"}, "Effect": {"type": "string"}, "Action": {"type": "string"}, "Resource": {"type": "string"}}, "required": ["Sid", "Effect", "Action", "Resource"]}}}, "requ...
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "qualified_name": {"type": "string"}, "examine": {"type": "string"}, "members": {"type": "boolean"}, "release_date": {"type": "string"}, "quest": {"type": "boolean"}, "weig...
{"id" : 7495, "name" : "Yellow spice (1)", "qualified_name" : "Yellow spice (1)", "examine" : "Allows for equal distribution of spice.", "members" : true, "release_date" : "2006-03-15", "quest" : true, "weight" : 0.001, "value" : 110, "alchemy" : {"high" : 66, "low" : 44}, "tradeable" : false, "stackable" : false, "not...
json_instruct
{"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "qualified_name": {"type": "string"}, "examine": {"type": "string"}, "members": {"type": "boolean"}, "release_date": {"type": "string"}, "quest": {"type": "boolean"}, "weight": {"type": "number"}, "value": {"type": "integer"}, "alc...
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"translation-revision-date": {"type": "string"}, "generator": {"type": "string"}, "domain": {"type": "string"}, "locale_data": {"type": "object", "properties": {"messages": {"type": "object", "properties": {"": {"type...
{"translation-revision-date" : "2020-10-14 19:07:37+0000", "generator" : "GlotPress/3.0.0-alpha.2", "domain" : "messages", "locale_data" : {"messages" : {"" : {"domain" : "messages", "plural-forms" : "nplurals=2; plural=n != 1;", "lang" : "en_NZ"}, "This block shows a list of all product reviews. Your store does not ha...
json_instruct
{"type": "object", "properties": {"translation-revision-date": {"type": "string"}, "generator": {"type": "string"}, "domain": {"type": "string"}, "locale_data": {"type": "object", "properties": {"messages": {"type": "object", "properties": {"": {"type": "object", "properties": {"domain": {"type": "string"}, "plural-for...
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "config": {"type": "object", "properties": {"unsafe-perm": {"type": "boolean"}}, "required": ["unsafe-per...
{"name" : "mit-scheme", "version" : "0.4.9", "description" : "MIT Scheme wrapped in JavaScript", "main" : "index.js", "config" : {"unsafe-perm" : false}, "scripts" : {"test" : "nodejs test.js", "install" : "scripts/install.sh"}, "repository" : {"type" : "git", "url" : "git+https://github.com/joeltg/mit-scheme.git"}, "k...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "config": {"type": "object", "properties": {"unsafe-perm": {"type": "boolean"}}, "required": ["unsafe-perm"]}, "scripts": {"type": "object", "properties": {"test": ...
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"id": {"type": "string"}, "timestamp": {"type": "string"}, "displayName": {"type": "string"}, "executablePath": {"type": "string"}, "arguments": {"type": "string"}, "supportedItemKind": {"type": "string"}, "minVersi...
{"id" : "5094d620-9cb3-4fd1-a2ea-5dbaf6b6ebf1", "timestamp" : "636643485391968428", "displayName" : "Open in VS Code", "executablePath" : "$(ExeFilePath(code))", "arguments" : "\"$(FileOrDirPath)\"", "supportedItemKind" : "any", "minVersion" : "4", "tooltipTitle" : "Open in VS Code", "tooltipDescription" : "Open the se...
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "timestamp": {"type": "string"}, "displayName": {"type": "string"}, "executablePath": {"type": "string"}, "arguments": {"type": "string"}, "supportedItemKind": {"type": "string"}, "minVersion": {"type": "string"}, "tooltipTitle": {"type": "string"}, "tooltipDe...
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"PREVALENCE_BY_GENDER_AGE_YEAR": {"type": "object", "properties": {"TRELLIS_NAME": {"type": "array", "items": {}}, "SERIES_NAME": {"type": "array", "items": {}}, "X_CALENDAR_YEAR": {"type": "array", "items": {}}, "Y_PREVALENCE_...
{"PREVALENCE_BY_GENDER_AGE_YEAR" : {"TRELLIS_NAME" : [], "SERIES_NAME" : [], "X_CALENDAR_YEAR" : [], "Y_PREVALENCE_1000PP" : []}, "PREVALENCE_BY_MONTH" : {"X_CALENDAR_MONTH" : [], "Y_PREVALENCE_1000PP" : []}, "CONDITIONS_BY_TYPE" : {"CONCEPT_NAME" : "EHR Chief Complaint", "COUNT_VALUE" : 41}, "AGE_AT_FIRST_DIAGNOSIS" :...
json_instruct
{"type": "object", "properties": {"PREVALENCE_BY_GENDER_AGE_YEAR": {"type": "object", "properties": {"TRELLIS_NAME": {"type": "array", "items": {}}, "SERIES_NAME": {"type": "array", "items": {}}, "X_CALENDAR_YEAR": {"type": "array", "items": {}}, "Y_PREVALENCE_1000PP": {"type": "array", "items": {}}}, "required": ["TRE...
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"reportSchema": {"type": "string"}, "scanInfo": {"type": "object", "properties": {"engineVersion": {"type": "string"}, "dataSource": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "str...
{"reportSchema" : "1.1", "scanInfo" : {"engineVersion" : "5.2.4", "dataSource" : [{"name" : "NVD CVE Checked", "timestamp" : "2020-01-09T20:44:04"}, {"name" : "NVD CVE Modified", "timestamp" : "2020-01-09T19:03:00"}, {"name" : "VersionCheckOn", "timestamp" : "2020-01-09T20:44:04"}]}, "projectInfo" : {"name" : "", "repo...
json_instruct
{"type": "object", "properties": {"reportSchema": {"type": "string"}, "scanInfo": {"type": "object", "properties": {"engineVersion": {"type": "string"}, "dataSource": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "timestamp": {"type": "string"}}, "required": ["name", "timestam...
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"type": {"type": "string"}, "name": {"type": "string"}, "children": {"type": "array", "items": {"type": "string"}}}, "required": ["type", "name", "children"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"type" : "databases", "name" : "db", "children" : ["TEST"]}
json_instruct
{"type": "object", "properties": {"type": {"type": "string"}, "name": {"type": "string"}, "children": {"type": "array", "items": {"type": "string"}}}, "required": ["type", "name", "children"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"id": {"type": "string"}}, "required": ["id"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : "bdeb79ae4393f7e2607c7179f263f6c86c4db62a"}
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}}, "required": ["id"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"t": {"type": "string"}, "h": {"type": "array", "items": {"type": "object", "properties": {"d": {"type": "array", "items": {"type": "object", "properties": {"f": {"type": "string"}, "s": {"type": "array", "items": ...
{"t" : "pafohafohen", "h" : [{"d" : [{"f" : "\u8b93\u2026\u9a45\u8d95\u3001\u9a45\u9010\uff0c\u628a\u2026\u9a45\u8d95\u3001\u9a45\u9010\u3002", "s" : ["`paloh~`a~`p~`oh~`e~`n~"]}]}], "stem" : "fohafoh"}
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"}, "s": {"type": "array", "items": {"type": "string"}}}, "required": ["f", "s"]}}}, "required": ["d"]}}, "s...
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"id": {"type": "string"}, "title": {"type": "string"}, "body": {"type": "string"}, "choices": {"type": "array", "items": {"type": "string"}}, "start": {"type": "integer"}, "end": {"type": "integer"}, "snapshot": {"type": "strin...
{"id" : "QmasGb1FgiSw3iga3WLh3XcyCzpfLagqiL1UNLumRaco4X", "title" : "Test", "body" : "test", "choices" : ["te", "st"], "start" : 1625655600, "end" : 1625914800, "snapshot" : "8894545", "state" : "closed", "author" : "0xC281855f23c08Acff1bF6d4593A9973e9273a339", "space" : {"id" : "alongdomainisacheapdomain.eth", "name" ...
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "title": {"type": "string"}, "body": {"type": "string"}, "choices": {"type": "array", "items": {"type": "string"}}, "start": {"type": "integer"}, "end": {"type": "integer"}, "snapshot": {"type": "string"}, "state": {"type": "string"}, "author": {"type": "strin...
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"main": {"type": "string"}, "name": {"type": "string"}, "description": {"type": "string"}, "version": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "window": {"type": "object", "pro...
{"main" : "hyper/ui/hyper-ui.html", "name" : "Evothings Workbench", "description" : "HTML/JS IoT mobile app development tool", "version" : "1.1.0", "keywords" : ["Evothings Studio", "mobile", "JavaScript"], "window" : {"title" : "Evothings Workbench 1.1.0", "toolbar" : false, "frame" : true, "width" : 700, "height" : 6...
json_instruct
{"type": "object", "properties": {"main": {"type": "string"}, "name": {"type": "string"}, "description": {"type": "string"}, "version": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "window": {"type": "object", "properties": {"title": {"type": "string"}, "toolbar": {"type": "boolean"},...
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"categories": {"type": "array", "items": {"type": "string"}}, "desc": {"type": "string"}, "details": {"type": "object", "properties": {"authors": {"type": "string"}, "format": {"type": "string"}, "isbn-10": {"type": ...
{"categories" : ["Manual", "Programming"], "desc" : "\n", "details" : {"authors" : "Joshua Noble, Rich Tretola, David Tucker", "format" : "pdf", "isbn-10" : "0596805616", "isbn-13" : "978-0596805616", "pages" : "768 pages", "publication date" : "May 30, 2010", "publisher" : "Adobe Developer Library", "size" : "4.01Mb"}...
json_instruct
{"type": "object", "properties": {"categories": {"type": "array", "items": {"type": "string"}}, "desc": {"type": "string"}, "details": {"type": "object", "properties": {"authors": {"type": "string"}, "format": {"type": "string"}, "isbn-10": {"type": "string"}, "isbn-13": {"type": "string"}, "pages": {"type": "string"},...
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"type": {"type": "string"}, "features": {"type": "array", "items": {"type": "object", "properties": {"geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "ar...
{"type" : "FeatureCollection", "features" : [{"geometry" : {"type" : "Polygon", "coordinates" : [[[-88.304251, 43.05161], [-88.30403, 43.058934], [-88.30185, 43.064264], [-88.298423, 43.064877], [-88.294958, 43.06679], [-88.285347, 43.06836], [-88.276564, 43.068343], [-88.268888, 43.074989], [-88.270869, 43.076421], [-...
json_instruct
{"type": "object", "properties": {"type": {"type": "string"}, "features": {"type": "array", "items": {"type": "object", "properties": {"geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "numbe...
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"name": {"type": "string"}, "author": {"type": "string"}, "description": {"type": "string"}, "version": {"type": "string"}, "scripts": {"type": "object", "properties": {"build": {"type": "string"}, "run": {"type": "st...
{"name" : "http_server_in_cpp", "author" : "Alejandro Medici", "description" : "Yes... C++ works perfect making server", "version" : "0.0.1", "scripts" : {"build" : "mkdir build && cp cmake/* build/ && cd build && cmake . && make", "run" : " ./build/lithium_server", "start" : "npm run clean && npm run build && npm run ...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "author": {"type": "string"}, "description": {"type": "string"}, "version": {"type": "string"}, "scripts": {"type": "object", "properties": {"build": {"type": "string"}, "run": {"type": "string"}, "start": {"type": "string"}, "clean": {"type": "string"}}, "r...
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"name": {"type": "string"}, "symbol": {"type": "string"}, "address": {"type": "string"}, "decimals": {"type": "integer"}, "dharmaVerificationStatus": {"type": "string"}}, "required": ["name", "symbol", "address", "decimals", "d...
{"name" : "BuyerSolve", "symbol" : "BYS", "address" : "0x302CDF3FA8d63c1A2C594c8336D69Ee6813b9E7E", "decimals" : 18, "dharmaVerificationStatus" : "UNVERIFIED"}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "symbol": {"type": "string"}, "address": {"type": "string"}, "decimals": {"type": "integer"}, "dharmaVerificationStatus": {"type": "string"}}, "required": ["name", "symbol", "address", "decimals", "dharmaVerificationStatus"], "$schema": "http://json-schema.o...
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"videomail-client.js": {"type": "string"}, "videomail-client.min.js": {"type": "string"}}, "required": ["videomail-client.js", "videomail-client.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"videomail-client.js" : "sha256-JdL9qKVe7oVqrpJS2Z9NySju0NCrTeTR6uDxcFP13yw=", "videomail-client.min.js" : "sha256-bjkFMI/V9lNhK4xOzrOX6WqzPolAutsIP5XG2Yxfgxk="}
json_instruct
{"type": "object", "properties": {"videomail-client.js": {"type": "string"}, "videomail-client.min.js": {"type": "string"}}, "required": ["videomail-client.js", "videomail-client.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
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-rpc6-67vh-jrfm", "modified" : "2022-05-01T23:45:23Z", "published" : "2022-05-01T23:45:23Z", "aliases" : ["CVE-2008-1976"], "details" : "Multiple cross-site scripting (XSS) vulnerabilities in the Drupal modules (1) Internationalization (i18n) 5.x before 5.x-2.3 and 5.x-1.1 and 6...
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...
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"copyright": {"type": "string"}, "email": {"type": "string"}}, "required": ["copyright", "email"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"copyright" : "Nicholas Narsing", "email" : "soren121@sorenstudios.com"}
json_instruct
{"type": "object", "properties": {"copyright": {"type": "string"}, "email": {"type": "string"}}, "required": ["copyright", "email"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"nom": {"type": "string"}, "dpt": {"type": "string"}, "inscrits": {"type": "integer"}, "abs": {"type": "integer"}, "votants": {"type": "integer"}, "blancs": {"type": "integer"}, "nuls": {"type": "integer"}, "exp": {"type": "int...
{"nom" : "Valdurenque", "dpt" : "Tarn", "inscrits" : 617, "abs" : 112, "votants" : 505, "blancs" : 42, "nuls" : 19, "exp" : 444, "res" : [{"panneau" : "2", "voix" : 236}, {"panneau" : "1", "voix" : 208}]}
json_instruct
{"type": "object", "properties": {"nom": {"type": "string"}, "dpt": {"type": "string"}, "inscrits": {"type": "integer"}, "abs": {"type": "integer"}, "votants": {"type": "integer"}, "blancs": {"type": "integer"}, "nuls": {"type": "integer"}, "exp": {"type": "integer"}, "res": {"type": "array", "items": {"type": "object"...
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "scripts": {"type": "object", "properties": {"tsc": {"type": "string"}, "start": {"type": "string"}}, "required": ["tsc", "start"]}, "dependencies": {"type"...
{"name" : "angular2-demo", "version" : "0.0.1", "scripts" : {"tsc" : "tsc -p src -w", "start" : "live-server --open=src"}, "dependencies" : {"angular2" : "2.0.0-alpha.45", "systemjs" : "0.19.4"}, "devDependencies" : {"live-server" : "*", "typescript" : "~1.6.0"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "scripts": {"type": "object", "properties": {"tsc": {"type": "string"}, "start": {"type": "string"}}, "required": ["tsc", "start"]}, "dependencies": {"type": "object", "properties": {"angular2": {"type": "string"}, "systemjs": ...
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"900087389": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900087390": {"type": "object", "properties": {"nama": {"type...
{"900087389" : {"nama" : "TPS 1", "dapil" : [1501, 11504, 2150102]}, "900087390" : {"nama" : "TPS 2", "dapil" : [1501, 11504, 2150102]}, "900087391" : {"nama" : "TPS 3", "dapil" : [1501, 11504, 2150102]}, "900087392" : {"nama" : "TPS 4", "dapil" : [1501, 11504, 2150102]}}
json_instruct
{"type": "object", "properties": {"900087389": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900087390": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": ...
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"h": {"type": "string"}, "c": {"type": "object", "properties": {"pages/index": {"type": "boolean"}}, "required": ["pages/index"]}}, "required": ["h", "c"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"h" : "ed5b4c2dd3982137868a", "c" : {"pages/index" : true}}
json_instruct
{"type": "object", "properties": {"h": {"type": "string"}, "c": {"type": "object", "properties": {"pages/index": {"type": "boolean"}}, "required": ["pages/index"]}}, "required": ["h", "c"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"candidates": {"type": "array", "items": {"type": "string"}}, "mandates": {"type": "integer"}, "ballots_ab": {"type": "object", "properties": {"1:2:3:4": {"type": "integer"}, "0:0:0:1": {"type": "integer"}}, "required": ["1:2:3:4...
{"candidates" : ["A", "B", "C", "D"], "mandates" : 4, "ballots_ab" : {"1:2:3:4" : 7, "0:0:0:1" : 2}, "expected" : ["A", "B", "C", "D"], "expected_replacements" : [[], [], [], []]}
json_instruct
{"type": "object", "properties": {"candidates": {"type": "array", "items": {"type": "string"}}, "mandates": {"type": "integer"}, "ballots_ab": {"type": "object", "properties": {"1:2:3:4": {"type": "integer"}, "0:0:0:1": {"type": "integer"}}, "required": ["1:2:3:4", "0:0:0:1"]}, "expected": {"type": "array", "items": {"...
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"h": {"type": "string"}, "c": {"type": "object", "properties": {"main": {"type": "boolean"}}, "required": ["main"]}}, "required": ["h", "c"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"h" : "9271b9184dbc14875916", "c" : {"main" : true}}
json_instruct
{"type": "object", "properties": {"h": {"type": "string"}, "c": {"type": "object", "properties": {"main": {"type": "boolean"}}, "required": ["main"]}}, "required": ["h", "c"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"appid": {"type": "integer"}, "name": {"type": "string"}, "windows": {"type": "boolean"}, "mac": {"type": "boolean"}, "linux": {"type": "boolean"}, "early_access": {"type": "boolean"}, "lookup_time": {"type": "inte...
{"appid" : 589170, "name" : "Panzer Panic VR", "windows" : true, "mac" : false, "linux" : false, "early_access" : false, "lookup_time" : 1491010107}
json_instruct
{"type": "object", "properties": {"appid": {"type": "integer"}, "name": {"type": "string"}, "windows": {"type": "boolean"}, "mac": {"type": "boolean"}, "linux": {"type": "boolean"}, "early_access": {"type": "boolean"}, "lookup_time": {"type": "integer"}}, "required": ["appid", "name", "windows", "mac", "linux", "early_...
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"Protein L2": {"type": "string"}, "12.1 kDa protein": {"type": "string"}, "Coat protein": {"type": "string"}, "CP": {"type": "string"}, "MP": {"type": "string"}, "Protein L4": {"type": "string"}, "16.1 kDa prote...
{"Protein L2" : "Q91J26", "12.1 kDa protein" : "Q77HP2", "Coat protein" : "P14984", "CP" : "P14984", "MP" : "Q91J29", "Protein L4" : "Q91J24", "16.1 kDa protein" : "P14994", "Protein C3" : "P14994", "Protein L3" : "P14994", "REn" : "P14994", "40.8 kDa protein" : "P14991", "Protein C1" : "P14991", "Rep" : "P14991", "Q91...
json_instruct
{"type": "object", "properties": {"Protein L2": {"type": "string"}, "12.1 kDa protein": {"type": "string"}, "Coat protein": {"type": "string"}, "CP": {"type": "string"}, "MP": {"type": "string"}, "Protein L4": {"type": "string"}, "16.1 kDa protein": {"type": "string"}, "Protein C3": {"type": "string"}, "Protein L3": {"...
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "number"}}}, "required": ["type", "coordinates"]}, "type": {"type": "string"}, "id":...
{"geometry" : {"type" : "Point", "coordinates" : [-101.72, 34.19]}, "type" : "Feature", "id" : "79073", "properties" : {"other_cities" : "", "city" : "Plainview", "state" : "TX", "county" : "Hale 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...
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"symbol": {"type": "string"}, "name": {"type": "string"}, "decimals": {"type": "integer"}, "address": {"type": "string"}}, "required": ["symbol", "name", "decimals", "address"], "$schema": "http://json-schema.or...
{"symbol" : "BEFX", "name" : "Belifex", "decimals" : 8, "address" : "0xfbcecb002177e530695b8976638fbd18d2038c3c"}
json_instruct
{"type": "object", "properties": {"symbol": {"type": "string"}, "name": {"type": "string"}, "decimals": {"type": "integer"}, "address": {"type": "string"}}, "required": ["symbol", "name", "decimals", "address"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"parent": {"type": "string"}}, "required": ["parent"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"parent" : "compressium:block/soulsoil_9"}
json_instruct
{"type": "object", "properties": {"parent": {"type": "string"}}, "required": ["parent"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "category": {"type": "string"}, "description": {"type": "string"}}, "required": ["type", "category", "description"]}, "$schema": "http://json-schema.org/draft-07/schema#"} ...
[{"type" : "feature", "category" : "AccessAnalyzer", "description" : "This release includes improvements and fixes bugs for the IAM Access Analyzer feature."}, {"type" : "feature", "category" : "AppMesh", "description" : "App Mesh now supports Transport Layer Security (TLS) between Virtual Nodes in a Mesh. Customers ca...
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "category": {"type": "string"}, "description": {"type": "string"}}, "required": ["type", "category", "description"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"id": {"type": "integer"}, "info": {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "additionalInfo": {"type": "null"}, "format": {"type": "string"}, "category": {"type": "string"...
{"id" : 117079, "info" : {"name" : "No More Verdana", "description" : "No more verdana. Replace the verdana for some other font (san serif 12)", "additionalInfo" : null, "format" : "uso", "category" : "gamestudies", "createdAt" : "2015-07-29T05:04:28.000Z", "updatedAt" : "2015-07-29T22:40:46.000Z", "license" : "CC0-1.0...
json_instruct
{"type": "object", "properties": {"id": {"type": "integer"}, "info": {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "additionalInfo": {"type": "null"}, "format": {"type": "string"}, "category": {"type": "string"}, "createdAt": {"type": "string"}, "updatedAt": {"type": "...
Create a JSON structure that matches this schema definition: {"type": "array", "items": {"type": "object", "properties": {"comment": {"type": "string"}, "definition": {"type": "string"}, "orthologs": {"type": "object", "properties": {"K00552": {"type": "string"}}, "required": ["K00552"]}, "name": {"type": "string"}, "...
[{"comment" : "further methylation of sarcosine to N,N-dimethylglycine (ec 2.1.1.156, see R07243)", "definition" : "S-Adenosyl-L-methionine + Glycine <=> S-Adenosyl-L-homocysteine + Sarcosine", "orthologs" : {"K00552" : "glycine N-methyltransferase [EC:2.1.1.20]"}, "name" : "S-Adenosyl-L-methionine:glycine N-methyltran...
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"comment": {"type": "string"}, "definition": {"type": "string"}, "orthologs": {"type": "object", "properties": {"K00552": {"type": "string"}}, "required": ["K00552"]}, "name": {"type": "string"}, "product_stoichiometries": {"type": "array", "items": {"type": ...
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"place_name": {"type": "string"}, "state_name": {"type": "string"}, "state_abbrv": {"type": "string"}, "lat": {"type": "string"}, "long": {"type": "string"}}, "required": ["place_name", "state_name", "state_abbrv", "lat", "long"]...
{"place_name" : "Saint Johnsbury Center", "state_name" : "Vermont", "state_abbrv" : "VT", "lat" : "44.4567", "long" : "-72.0157"}
json_instruct
{"type": "object", "properties": {"place_name": {"type": "string"}, "state_name": {"type": "string"}, "state_abbrv": {"type": "string"}, "lat": {"type": "string"}, "long": {"type": "string"}}, "required": ["place_name", "state_name", "state_abbrv", "lat", "long"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"title": {"type": "string"}, "block": {"type": "object", "properties": {"type": {"type": "string"}, "lead": {"type": "string"}, "title": {"type": "string"}, "excerpt": {"type": "string"}, "content": {"type": "st...
{"title" : "Home Hero", "block" : {"type" : "content", "lead" : "This is a lead", "title" : "This is the Title", "excerpt" : "This is the excerpt", "content" : "Lorem ipsum dolor sit amet consectetur adipisicing elit. Tenetur, sapiente? Corrupti, laborum quae voluptatem impedit architecto incidunt quam dolorum veniam."...
json_instruct
{"type": "object", "properties": {"title": {"type": "string"}, "block": {"type": "object", "properties": {"type": {"type": "string"}, "lead": {"type": "string"}, "title": {"type": "string"}, "excerpt": {"type": "string"}, "content": {"type": "string"}}, "required": ["type", "lead", "title", "excerpt", "content"]}, "pag...
The schema below describes a JSON structure. Generate a valid example: {"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"}
["My name is Honey, and I am a Beetective. The Beekeeper has gone missing, and it is up to me to figure out where. My investigation has led me to three key witnesses, who may be able to aid in my investigation."]
json_instruct
{"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
[[853, 142]]
json_instruct
{"type": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "scripts": {"type": "object", "properties": {"prepublish": {"type": "string"}, "build": {"type": "string"}, "generate-doc": {"type": ...
{"name" : "sass-a11ycolor", "version" : "2.0.0", "description" : "Generate the nearest accessible color with Sass.", "scripts" : {"prepublish" : "npm run build && npm run generate-doc && npm run test", "build" : "rm -rf ./dist/ && mkdir ./dist/ && cat ./src/* > dist/_index.scss", "generate-doc" : "./node_modules/.bin/s...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "scripts": {"type": "object", "properties": {"prepublish": {"type": "string"}, "build": {"type": "string"}, "generate-doc": {"type": "string"}, "test": {"type": "string"}, "watch": {"type": "s...
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" : "2003", "provinceId" : "91", "regencyId" : "17", "districtId" : "14", "name" : "Keta"}
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": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
[[1942, 6], [1944, 5], [1949, 12], [1950, 11], [1951, 10], [1952, 15], [1953, 17], [1954, 17], [1955, 33], [1956, 41], [1957, 24], [1958, 31], [1959, 56], [1960, 61], [1961, 52], [1962, 38], [1963, 46], [1964, 41], [1965, 35], [1966, 34], [1967, 28], [1968, 56], [1969, 51], [1970, 48], [1971, 44], [1972, 56], [1973, 55...
json_instruct
{"type": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"pools": {"type": "array", "items": {"type": "object", "properties": {"rolls": {"type": "integer"}, "entries": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "name": {"type": ...
{"pools" : [{"rolls" : 1, "entries" : [{"type" : "minecraft:item", "name" : "minecraft:diamond_chestplate", "functions" : [{"function" : "minecraft:set_nbt", "tag" : "{argus_item:1,HideFlags:2,AttributeModifiers:[{AttributeName:\"generic.armor\",Name:\"generic.armor\",Amount:1,Operation:0,UUID:[I;74220401,1381125866,-1...
json_instruct
{"type": "object", "properties": {"pools": {"type": "array", "items": {"type": "object", "properties": {"rolls": {"type": "integer"}, "entries": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "name": {"type": "string"}, "functions": {"type": "array", "items": {"type": "object",...
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"name": {"type": "string"}, "status": {"type": "string"}, "verifiableDataRegistry": {"type": "string"}, "contactName": {"type": "string"}, "contactEmail": {"type": "string"}, "contactWebsite": {"type": "string"}...
{"name" : "celo", "status" : "registered", "verifiableDataRegistry" : "Celo", "contactName" : "Ontology Foundation", "contactEmail" : "", "contactWebsite" : "", "specification" : "https://github.com/ontology-tech/DID-method-specs/blob/master/did-celo/DID-Method-celo.md"}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "status": {"type": "string"}, "verifiableDataRegistry": {"type": "string"}, "contactName": {"type": "string"}, "contactEmail": {"type": "string"}, "contactWebsite": {"type": "string"}, "specification": {"type": "string"}}, "required": ["name", "status", "ver...
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"name": {"type": "string"}, "symbol": {"type": "string"}, "address": {"type": "string"}, "decimals": {"type": "integer"}, "dharmaVerificationStatus": {"type": "string"}}, "required": ["name", "symbol", "address", "...
{"name" : "UNI Token", "symbol" : "UXT", "address" : "0x27824111DD062Ca9062067B493Fbf512328928BA", "decimals" : 8, "dharmaVerificationStatus" : "UNVERIFIED"}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "symbol": {"type": "string"}, "address": {"type": "string"}, "decimals": {"type": "integer"}, "dharmaVerificationStatus": {"type": "string"}}, "required": ["name", "symbol", "address", "decimals", "dharmaVerificationStatus"], "$schema": "http://json-schema.o...
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "type": {"type": "string"}, "exports": {"type": "object", "properties": {"./route1": {"type": "string"}}, "required...
{"name" : "@hello-world/hello-pl", "version" : "1.0.0", "description" : "", "type" : "module", "exports" : {"./route1" : "./lib/route1/index.js"}, "scripts" : {"test" : "echo \"Error: no test specified\" && exit 1"}, "author" : "", "license" : "ISC", "dependencies" : {"pinglue" : "^0.0.0"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "type": {"type": "string"}, "exports": {"type": "object", "properties": {"./route1": {"type": "string"}}, "required": ["./route1"]}, "scripts": {"type": "object", "properties": {"test": {"type...
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {"type": "integer"}}, "productReviews": {"type": "array", "items": {"type": "object", "properties": {"productId": {...
{"userId" : 60943, "cartId" : "f660aaf9-75f6-41af-b355-670591865399", "preferredProducts" : [3896, 3720, 153, 3904, 4707, 1883], "productReviews" : [{"productId" : 4264, "reviewText" : "one of my hobbies is guitar. and when i'm playing guitar this works great.", "reviewDate" : "2019-06-08T02:07:17.1201355+03:00"}, {"pr...
json_instruct
{"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {"type": "integer"}}, "productReviews": {"type": "array", "items": {"type": "object", "properties": {"productId": {"type": "integer"}, "reviewText": {"type": "string"}, "reviewD...
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"name": {"type": "string"}, "displayName": {"type": "string"}, "version": {"type": "string"}, "unity": {"type": "string"}, "description": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {...
{"name" : "ch.sttz.quicksearch.docs", "displayName" : "Quick Search Docs", "version" : "0.2.0", "unity" : "2019.3", "description" : "Unity Docs SearchProvider for Unity Quick Search.", "keywords" : ["unity", "quicksearch", "docs"], "author" : {"name" : "Adrian Stutz", "email" : "adrian@sttz.ch", "url" : "https://sttz.c...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "displayName": {"type": "string"}, "version": {"type": "string"}, "unity": {"type": "string"}, "description": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "object", "properties": {"name": {"type": "string...
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"index": {"type": "integer"}, "hash": {"type": "integer"}, "artDyeHash": {"type": "integer"}, "redacted": {"type": "boolean"}, "dyeManifestHash": {"type": "integer"}, "blacklisted": {"type": "boolean"}}, "required": ["index"...
{"index" : 5638, "hash" : 2012700095, "artDyeHash" : 2012700095, "redacted" : false, "dyeManifestHash" : 3324466111, "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...
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"timestamp": {"type": "string"}, "data": {"type": "array", "items": {"type": "object", "properties": {"data_type": {"type": "string"}, "value": {"type": "string"}, "max": {"type": "string"}, "min": {"type": "string"}, "sd": ...
{"timestamp" : "2020-11-29T00:22:17Z", "data" : [{"data_type" : "pm10", "value" : "1.80", "max" : "4.00", "min" : "0.00", "sd" : "1.32"}, {"data_type" : "pm2.5", "value" : "0.80", "max" : "3.00", "min" : "0.00", "sd" : "0.94"}, {"data_type" : "pm1", "value" : "0.00", "max" : "0.00", "min" : "0.00", "sd" : "0.00"}, {"da...
json_instruct
{"type": "object", "properties": {"timestamp": {"type": "string"}, "data": {"type": "array", "items": {"type": "object", "properties": {"data_type": {"type": "string"}, "value": {"type": "string"}, "max": {"type": "string"}, "min": {"type": "string"}, "sd": {"type": "string"}}, "required": ["data_type", "value", "max",...
Create a JSON structure that matches this schema definition: {"type": "array", "items": {"type": "object", "properties": {"IP": {"type": "string"}, "sysName": {"type": "string"}, "OS": {"type": "string"}, "sysObjectID": {"type": "string"}, "sysDescr": {"type": "string"}}, "required": ["IP", "sysName", "OS", "sysObject...
[{"IP" : "193.86.244.19", "sysName" : "konecna1180-puda", "OS" : "tplink", "sysObjectID" : ".1.3.6.1.4.1.11863.1.1.4", "sysDescr" : "16G Managed Switch"}, {"IP" : "91.135.21.103", "sysName" : "TL-SG3216", "OS" : "tplink", "sysObjectID" : ".1.3.6.1.4.1.11863.1.1.4", "sysDescr" : "16G Managed Switch"}, {"IP" : "93.99.117...
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"IP": {"type": "string"}, "sysName": {"type": "string"}, "OS": {"type": "string"}, "sysObjectID": {"type": "string"}, "sysDescr": {"type": "string"}}, "required": ["IP", "sysName", "OS", "sysObjectID", "sysDescr"]}, "$schema": "http://json-schema.org/draft-07...
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"value": {"type": "array", "items": {"type": "string"}}}, "required": ["value"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"value" : ["70686B62676D6163796D7761746674676F786C6E6F6967716366736D7173706E6868716D6863636966677471626C6D736165616C686D", "79786E746F65636879666F69766D716D6E7474626B6A787671767968757165646A62766A6A68646C6571686C76", "6F6D716F78686D636964766374706C75747472796C7663666C63686C7968767269777671796F79716162646B796C6A7065777...
json_instruct
{"type": "object", "properties": {"value": {"type": "array", "items": {"type": "string"}}}, "required": ["value"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"extends": {"type": "string"}, "compilerOptions": {"type": "object", "properties": {"baseUrl": {"type": "string"}, "paths": {"type": "object", "properties": {"@ltb-layout/*": {"type": "array", "items": {"type": "strin...
{"extends" : "../../tsconfig.base.json", "compilerOptions" : {"baseUrl" : "src", "paths" : {"@ltb-layout/*" : ["./app/layout/*"], "@ltb-directive/*" : ["./app/directive/*"], "@ltb-guard/*" : ["./app/guard/*"], "@ltb-interceptor/*" : ["./app/interceptor/*"], "@ltb-model/*" : ["./app/model/*"], "@ltb-service/*" : ["./app...
json_instruct
{"type": "object", "properties": {"extends": {"type": "string"}, "compilerOptions": {"type": "object", "properties": {"baseUrl": {"type": "string"}, "paths": {"type": "object", "properties": {"@ltb-layout/*": {"type": "array", "items": {"type": "string"}}, "@ltb-directive/*": {"type": "array", "items": {"type": "string...
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"molecule-shapes-basics.title": {"type": "object", "properties": {"value": {"type": "string"}, "history": {"type": "array", "items": {"type": "object", "properties": {"userId": {"type": "integer"}, "timestamp"...
{"molecule-shapes-basics.title" : {"value" : "Modelli molecolari: concetti base", "history" : [{"userId" : 157247, "timestamp" : 1454414331816, "oldValue" : "", "newValue" : "Modelli molecolari: concetti base", "explanation" : null}]}}
json_instruct
{"type": "object", "properties": {"molecule-shapes-basics.title": {"type": "object", "properties": {"value": {"type": "string"}, "history": {"type": "array", "items": {"type": "object", "properties": {"userId": {"type": "integer"}, "timestamp": {"type": "integer"}, "oldValue": {"type": "string"}, "newValue": {"type": "...
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"authors": {"type": "object", "properties": {"name": {"type": "string"}, "url": {"type": "string"}}, "required": ["name", "url"]}, "description": {"type": "string"}, "examples": {"type": "array", "items": {"type": "string"}}, "fr...
{"authors" : {"name" : "Cl\u00e9ment BENOIT", "url" : "https://os.mbed.com/users/clemounet/"}, "description" : "CanInterface Dispatcher, it depends on MyThread (MyThings lib)", "examples" : ["https://os.mbed.com/users/clemounet/code/PYRN/"], "frameworks" : "mbed", "keywords" : "CAN", "name" : "CAN", "platforms" : "*", ...
json_instruct
{"type": "object", "properties": {"authors": {"type": "object", "properties": {"name": {"type": "string"}, "url": {"type": "string"}}, "required": ["name", "url"]}, "description": {"type": "string"}, "examples": {"type": "array", "items": {"type": "string"}}, "frameworks": {"type": "string"}, "keywords": {"type": "stri...
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"layout": {"type": "object", "properties": {"title": {"type": "string"}}, "required": ["title"]}}, "required": ["layout"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"layout" : {"title" : "Transaction Log"}}
json_instruct
{"type": "object", "properties": {"layout": {"type": "object", "properties": {"title": {"type": "string"}}, "required": ["title"]}}, "required": ["layout"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"OrchardCore": {"type": "object", "properties": {"SwaggerUiClientSecret": {"type": "string"}}, "required": ["SwaggerUiClientSecret"]}}, "required": ["OrchardCore"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"OrchardCore" : {"SwaggerUiClientSecret" : "developmentsecret"}}
json_instruct
{"type": "object", "properties": {"OrchardCore": {"type": "object", "properties": {"SwaggerUiClientSecret": {"type": "string"}}, "required": ["SwaggerUiClientSecret"]}}, "required": ["OrchardCore"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
[[1976, 6], [1978, 6], [1981, 7], [1984, 5], [2007, 5]]
json_instruct
{"type": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
[[1987, 8], [1989, 5], [1991, 6], [1992, 15], [1993, 10], [1995, 7], [1996, 8], [1997, 12], [1999, 7], [2002, 6], [2004, 5], [2006, 5]]
json_instruct
{"type": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "dependencies": {"type": "object", "properties": {"polymer": {"type": "string"}, "iron-menu-behavior": {"type": "string"}, "paper-input": {"type": "string"...
{"name" : "paper-typeahead", "version" : "v0.7.0", "dependencies" : {"polymer" : "^1.7.0", "iron-menu-behavior" : "polymerelements/iron-menu-behavior#~1.0.4", "paper-input" : "PolymerElements/paper-input#~1.0.14", "paper-item" : "PolymerElements/paper-item#~1.0.5", "paper-styles" : "PolymerElements/paper-styles#~1.0.11...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "dependencies": {"type": "object", "properties": {"polymer": {"type": "string"}, "iron-menu-behavior": {"type": "string"}, "paper-input": {"type": "string"}, "paper-item": {"type": "string"}, "paper-styles": {"type": "string"},...
Following the schema specification below, generate a valid JSON instance: {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "nama": {"type": "string"}}, "required": ["id", "nama"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"id" : "3313152001", "nama" : "Sewurejo"}, {"id" : "3313152002", "nama" : "Ngadirejo"}, {"id" : "3313152003", "nama" : "Mojogedang"}, {"id" : "3313152004", "nama" : "Pojok"}, {"id" : "3313152005", "nama" : "Mojoroto"}, {"id" : "3313152006", "nama" : "Kaliboto"}, {"id" : "3313152007", "nama" : "Buntar"}, {"id" : "3313...
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "nama": {"type": "string"}}, "required": ["id", "nama"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"controls": {"type": "object", "properties": {"label_wide_format": {"type": "string"}, "description_wide_format_enabled": {"type": "string"}, "description_wide_format_disabled": {"type": "string"}, "label_show_mini_toc": {"type...
{"controls" : {"label_wide_format" : "Wide format", "description_wide_format_enabled" : "Enabled", "description_wide_format_disabled" : "Disabled", "label_show_mini_toc" : "Navigation for the article", "description_show_mini_toc" : "Show navigation", "label_dark_theme" : "Dark theme", "description_enabled_dark_theme" :...
json_instruct
{"type": "object", "properties": {"controls": {"type": "object", "properties": {"label_wide_format": {"type": "string"}, "description_wide_format_enabled": {"type": "string"}, "description_wide_format_disabled": {"type": "string"}, "label_show_mini_toc": {"type": "string"}, "description_show_mini_toc": {"type": "string...
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"build": {"type": "string"}, "start": {"type": "st...
{"name" : "whatsapp-clone-javascript", "version" : "1.0.0", "description" : "A clone of WhatsApp Web using pure JavaScript - HCode course.", "main" : "index.js", "scripts" : {"build" : "webpack --config webpack.config.js", "start" : "webpack-dev-server"}, "repository" : {"type" : "git", "url" : "git+https://github.com/...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"build": {"type": "string"}, "start": {"type": "string"}}, "required": ["build", "start"]}, "repository": {"type": "obj...
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {"type": "integer"}}, "productReviews": {"type": "array", "items": {"type": "object", "properties": {"productId": {"ty...
{"userId" : 84782, "cartId" : "7cdd8c84-c685-4b29-8a73-7f8efeffff6b", "preferredProducts" : [4341, 909, 4529, 792, 278, 3860], "productReviews" : [{"productId" : 474, "reviewText" : "It only works when I'm Martinique.", "reviewDate" : "2020-03-03T16:11:10.6101625+02:00"}, {"productId" : 423, "reviewText" : "My ant love...
json_instruct
{"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {"type": "integer"}}, "productReviews": {"type": "array", "items": {"type": "object", "properties": {"productId": {"type": "integer"}, "reviewText": {"type": "string"}, "reviewD...
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"name": {"type": "string"}, "authors": {"type": "array", "items": {"type": "string"}}, "description": {"type": "string"}, "main": {"type": "string"}, "moduleType": {"type": "array", "items": {}}, "license": {"type"...
{"name" : "coding-in-your-classroom-frontend", "authors" : ["Lorenz Cuno Klopfenstein <lck@klopfenstein.net>"], "description" : "Frontend for \"Coding in your Classroom live\"", "main" : "", "moduleType" : [], "license" : "MIT", "homepage" : "", "private" : true, "ignore" : ["**/.*", "node_modules", "bower_components",...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "authors": {"type": "array", "items": {"type": "string"}}, "description": {"type": "string"}, "main": {"type": "string"}, "moduleType": {"type": "array", "items": {}}, "license": {"type": "string"}, "homepage": {"type": "string"}, "private": {"type": "boolea...
Please provide a valid JSON object following this schema: {"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" : 85905385, "type" : "Feature", "properties" : {"src:alt_label" : "quattroshapes", "src:geom" : "quattroshapes", "wof:geomhash" : "db7c52a724d900c74fc91bf1148d76f4", "wof:id" : 85905385, "wof:repo" : "whosonfirst-data-admin-se"}, "bbox" : [18.27360693040447, 59.27832459438632, 18.30790377543724, 59.29814830892512...
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": ["...
Generate a valid JSON object that conforms to the following schema: {"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...
{"name" : "by-zer0/laravel-query-log", "description" : "Log database queries.", "keywords" : ["laravel", "db", "log"], "type" : "library", "license" : "MIT", "authors" : [{"name" : "Andrew Baranov", "email" : "zer0sandrew@gmail.com"}], "require" : {"php" : ">=7.2.0", "illuminate/contracts" : "^5.6", "illuminate/databas...
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...
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"ARCHER": {"type": "object", "properties": {"DROW": {"type": "object", "properties": {"health": {"type": "integer"}, "mana": {"type": "integer"}, "stamina": {"type": "integer"}}, "required": ["health", "mana", "stamina"]}, "DWA...
{"ARCHER" : {"DROW" : {"health" : 410, "mana" : 0, "stamina" : 500}, "DWARF" : {"health" : 475, "mana" : 0, "stamina" : 500}, "ELF" : {"health" : 440, "mana" : 0, "stamina" : 500}, "GNOME" : {"health" : 410, "mana" : 0, "stamina" : 500}, "HUMAN" : {"health" : 460, "mana" : 0, "stamina" : 500}}}
json_instruct
{"type": "object", "properties": {"ARCHER": {"type": "object", "properties": {"DROW": {"type": "object", "properties": {"health": {"type": "integer"}, "mana": {"type": "integer"}, "stamina": {"type": "integer"}}, "required": ["health", "mana", "stamina"]}, "DWARF": {"type": "object", "properties": {"health": {"type": "...
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"900712349": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900712350": {"type": "object", "properties": {"nama": {"type...
{"900712349" : {"nama" : "TPS 1", "dapil" : [7201, 17202, 2720804]}, "900712350" : {"nama" : "TPS 2", "dapil" : [7201, 17202, 2720804]}, "900712351" : {"nama" : "TPS 3", "dapil" : [7201, 17202, 2720804]}, "900712352" : {"nama" : "TPS 4", "dapil" : [7201, 17202, 2720804]}, "900712353" : {"nama" : "TPS 5", "dapil" : [720...
json_instruct
{"type": "object", "properties": {"900712349": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900712350": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": ...
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"name": {"type": "string"}, "name_long": {"type": "string"}, "fips": {"type": "string"}, "state_code_int": {"type": "integer"}, "state_code_postal": {"...
{"type" : "Feature", "properties" : {"name" : "Yadkin County", "name_long" : "Yadkin County, NC", "fips" : "37197", "state_code_int" : 37, "state_code_postal" : "NC", "state_code_iso" : "US-NC", "county_code" : 197, "population" : 37667, "countrylevel_id" : "fips:37197", "census_data" : {"COUNTYNS" : "01008597", "AFFGE...
json_instruct
{"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"name": {"type": "string"}, "name_long": {"type": "string"}, "fips": {"type": "string"}, "state_code_int": {"type": "integer"}, "state_code_postal": {"type": "string"}, "state_code_iso": {"type": "string"}, "co...