input stringlengths 159 2.05k | output stringlengths 5 10.3k | task stringclasses 1
value | schema stringlengths 100 1.99k |
|---|---|---|---|
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"id": {"type": "integer"}, "source": {"type": "string"}, "verse_id": {"type": "integer"}, "verse_count": {"type": "integer"}, "reference": {"type": "string"}, "title": {"type": "string"}, "html": {"type": "string"},... | {"id" : 12733, "source" : "wen", "verse_id" : 18104, "verse_count" : 1, "reference" : "24:8", "title" : "", "html" : "Tabrets\u2014Which they used in their feasts. The noise\u2014The word properly signifies a confused clamour, such as drunken men make.", "audit" : null} | json_instruct | {"type": "object", "properties": {"id": {"type": "integer"}, "source": {"type": "string"}, "verse_id": {"type": "integer"}, "verse_count": {"type": "integer"}, "reference": {"type": "string"}, "title": {"type": "string"}, "html": {"type": "string"}, "audit": {"type": "null"}}, "required": ["id", "source", "verse_id", "... |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"artist": {"type": "string"}, "artworkName": {"type": "string"}, "description": {"type": "string"}, "attributes": {"type": "object", "properties": {"tags": {"type": "array", "items": {"type": "string"}}}, "req... | {"artist" : "Lev Polyakov", "artworkName" : "Punkin", "description" : "A fractal super-entity that floats around the etheric heavens in a state of pure bliss.", "attributes" : {"tags" : ["digital", "high res", "illustration", "asset", "rare", "card", "punkin"]}, "external_uri" : "http://knownorigin.io"} | json_instruct | {"type": "object", "properties": {"artist": {"type": "string"}, "artworkName": {"type": "string"}, "description": {"type": "string"}, "attributes": {"type": "object", "properties": {"tags": {"type": "array", "items": {"type": "string"}}}, "required": ["tags"]}, "external_uri": {"type": "string"}}, "required": ["artist"... |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"id_5536": {"type": "object", "properties": {"publicdate": {"type": "string"}, "title": {"type": "string"}}, "required": ["publicdate", "title"]}}, "required": ["id_5536"], "$schema": "http://json-schema.org/draft-07/schema#"}
... | {"id_5536" : {"publicdate" : "2011-10-19 00:04:17", "title" : "A Fair Barbarian"}} | json_instruct | {"type": "object", "properties": {"id_5536": {"type": "object", "properties": {"publicdate": {"type": "string"}, "title": {"type": "string"}}, "required": ["publicdate", "title"]}}, "required": ["id_5536"], "$schema": "http://json-schema.org/draft-07/schema#"} |
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#"}
| [["441826109201", "\u9999\u576a\u6751\u59d4\u4f1a", "121", "0"], ["441826109202", "\u4e03\u661f\u6751\u59d4\u4f1a", "220", "0"], ["441826109203", "\u9f99\u6c34\u6751\u59d4\u4f1a", "220", "0"], ["441826109205", "\u76d8\u77f3\u6751\u59d4\u4f1a", "220", "0"], ["441826109206", "\u5858\u5176\u513f\u6751\u59d4\u4f1a", "220",... | json_instruct | {"type": "array", "items": {"type": "array", "items": {"type": "string"}}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"name": {"type": "string"}, "private": {"type": "boolean"}, "main": {"type": "string"}, "dependencies": {"type": "object", "properties": {"socket.io": {"type": "string"}}, "required": ["socket.io"]}}, "required": ["... | {"name" : "example", "private" : true, "main" : "server.js", "dependencies" : {"socket.io" : "^2.1.0"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "private": {"type": "boolean"}, "main": {"type": "string"}, "dependencies": {"type": "object", "properties": {"socket.io": {"type": "string"}}, "required": ["socket.io"]}}, "required": ["name", "private", "main", "dependencies"], "$schema": "http://json-sche... |
Generate sample JSON data that conforms to the following schema definition:
{"type": "array", "items": {"type": "object", "properties": {"namaKab": {"type": "string"}, "originalFilename": {"type": "string"}, "namaPartai": {"type": "string"}, "id": {"type": "integer"}, "noUrut": {"type": "integer"}, "nama": {"type": "s... | [{"namaKab" : "MIMIKA", "originalFilename" : "abdul karim.jpg", "namaPartai" : "Partai Keadilan Sejahtera", "id" : 80533, "noUrut" : 1, "nama" : "H. ABDUL KARIM, S.Ag", "stringJenisKelamin" : "Laki-Laki"}, {"namaKab" : "MIMIKA", "originalFilename" : "LENA 2.jpg", "namaPartai" : "Partai Keadilan Sejahtera", "id" : 16566... | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"namaKab": {"type": "string"}, "originalFilename": {"type": "string"}, "namaPartai": {"type": "string"}, "id": {"type": "integer"}, "noUrut": {"type": "integer"}, "nama": {"type": "string"}, "stringJenisKelamin": {"type": "string"}}, "required": ["namaKab", "... |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"id": {"type": "string"}, "queryName": {"type": "string"}, "severity": {"type": "string"}, "category": {"type": "string"}, "descriptionText": {"type": "string"}, "descriptionUrl": {"type": "string"}, "platform": {"t... | {"id" : "72d259ca-9741-48dd-9f62-eb11f2936b37", "queryName" : "Header Parameter Named as 'Content-Type'", "severity" : "INFO", "category" : "Best Practices", "descriptionText" : "The header Parameter should not be named as 'Content-Type'. If so, it will be ignored.", "descriptionUrl" : "https://swagger.io/specification... | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "queryName": {"type": "string"}, "severity": {"type": "string"}, "category": {"type": "string"}, "descriptionText": {"type": "string"}, "descriptionUrl": {"type": "string"}, "platform": {"type": "string"}}, "required": ["id", "queryName", "severity", "category... |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"AbusiveParents": {"type": "array", "items": {"type": "string"}}}, "required": ["AbusiveParents"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"AbusiveParents" : ["ParentalIncest", "RapeIsASpecialKindOfEvil", "FreudianExcuse", "DefiedTrope", "CharacterDevelopment", "TroublingUnchildlikeBehavior", "WickedStepmother", "OffingTheOffspring", "Revenge", "SelfMadeOrphan", "CallingTheOldManOut", "TheReasonYouSuckSpeech", "FriendsAreChosenFamilyArent", "SlidingScale... | json_instruct | {"type": "object", "properties": {"AbusiveParents": {"type": "array", "items": {"type": "string"}}}, "required": ["AbusiveParents"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"accession_number": {"type": "string"}, "actors": {"type": "array", "items": {}}, "creation_date": {"type": "string"}, "credit_line": {"type": "string"}, "cultures": {"type": "array", "items": {}}, "dimensions": {"type": "strin... | {"accession_number" : "1986.243", "actors" : [], "creation_date" : "1980s", "credit_line" : "Gift of Benigno A. Ramirez in memory of his mother Ida Alonzo Ramirez", "cultures" : [], "dimensions" : "L: 56 1/4 in.", "dynasty" : null, "images" : [], "irn" : 23523, "materials" : "Silk Crepe-back Satin | silk organza", "on_... | json_instruct | {"type": "object", "properties": {"accession_number": {"type": "string"}, "actors": {"type": "array", "items": {}}, "creation_date": {"type": "string"}, "credit_line": {"type": "string"}, "cultures": {"type": "array", "items": {}}, "dimensions": {"type": "string"}, "dynasty": {"type": "null"}, "images": {"type": "array... |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"locationData": {"type": "object", "properties": {"relativeBoundingBox": {"type": "object", "properties": {"xmin": {"type": "number"}, "width": {"type": "number"}, "ymin": {"type": "number"}, "height": {"type": "nu... | {"locationData" : {"relativeBoundingBox" : {"xmin" : 0.59579563, "width" : 0.0677135, "ymin" : 0.6820944, "height" : 0.084641874}, "relativeKeypoints" : [{"y" : 0.68954986, "x" : 0.62514335}, {"y" : 0.7570398, "x" : 0.64420736}, {"y" : 0.7578714, "x" : 0.6291901}, {"y" : 0.75341237, "x" : 0.615211}, {"y" : 0.74609846, ... | json_instruct | {"type": "object", "properties": {"locationData": {"type": "object", "properties": {"relativeBoundingBox": {"type": "object", "properties": {"xmin": {"type": "number"}, "width": {"type": "number"}, "ymin": {"type": "number"}, "height": {"type": "number"}}, "required": ["xmin", "width", "ymin", "height"]}, "relativeKeyp... |
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": {"camelcase": {"type": "object", ... | {"name" : "Weekly Average Example", "version" : "0.0.1", "lockfileVersion" : 1, "requires" : true, "dependencies" : {"camelcase" : {"version" : "5.3.1", "resolved" : "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz", "integrity" : "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQ... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "lockfileVersion": {"type": "integer"}, "requires": {"type": "boolean"}, "dependencies": {"type": "object", "properties": {"camelcase": {"type": "object", "properties": {"version": {"type": "string"}, "resolved": {"type": "stri... |
Generate a valid JSON object that conforms to the following schema:
{"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"}
| ["statto-backend-fs", "statto-backend-leveldb", "statto-backend-memory"] | 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": {"\u5de5\u5ee0\u540d\u7a31": {"type": "string"}, "\u5de5\u5ee0\u767b\u8a18\u7de8\u865f": {"type": "string"}, "\u5de5\u5ee0\u8a2d\u7acb\u8a31\u53ef\u6848\u865f": {"type": "string"}, "\u5de5\u5ee0\u5730\u5740": {"type": "string... | {"\u5de5\u5ee0\u540d\u7a31" : "\u9673\u65b0\u5bf6\u5be6\u696d\u6709\u9650\u516c\u53f8\u9ebb\u8c46\u5ee0", "\u5de5\u5ee0\u767b\u8a18\u7de8\u865f" : "67001533", "\u5de5\u5ee0\u8a2d\u7acb\u8a31\u53ef\u6848\u865f" : "", "\u5de5\u5ee0\u5730\u5740" : "\u81fa\u5357\u5e02\u9ebb\u8c46\u5340\u9ebb\u53e3\u91cc\u9ebb\u8c46\u53e31\... | json_instruct | {"type": "object", "properties": {"\u5de5\u5ee0\u540d\u7a31": {"type": "string"}, "\u5de5\u5ee0\u767b\u8a18\u7de8\u865f": {"type": "string"}, "\u5de5\u5ee0\u8a2d\u7acb\u8a31\u53ef\u6848\u865f": {"type": "string"}, "\u5de5\u5ee0\u5730\u5740": {"type": "string"}, "\u5de5\u5ee0\u5e02\u93ae\u9109\u6751\u91cc": {"type": "st... |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"body": {"type": "string"}, "user": {"type": "string"}, "url": {"type": "string"}, "updated_at": {"type": "string"}, "created_at": {"type": "string"}, "closed_at": {"type": "string"}, "state": {"type": "string"}, "t... | {"body" : "### Summary\r\nI am tempted to file this as a bug, but I suppose it is technically a feature request :)\r\n\r\n`cxxflags` and `cflags` as specified in `package.yaml` or even on the command line do not automatically get passed into CMake. (both ways just get into the `spec`.)\r\n\r\n### Rationale\r\nI current... | json_instruct | {"type": "object", "properties": {"body": {"type": "string"}, "user": {"type": "string"}, "url": {"type": "string"}, "updated_at": {"type": "string"}, "created_at": {"type": "string"}, "closed_at": {"type": "string"}, "state": {"type": "string"}, "title": {"type": "string"}, "number": {"type": "integer"}, "milestone": ... |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"directions": {"type": "array", "items": {"type": "string"}}, "ingredients": {"type": "array", "items": {"type": "string"}}, "language": {"type": "string"}, "source": {"type": "string"}, "tags": {"type": "array", "items": {}}, ... | {"directions" : ["Heat olive oil in a large pot over medium heat. Cook the bacon just until it starts to brown a bit, 5 to 8 minutes. Add the olive oil, onion, and bell pepper; cook and stir until vegetables begin to soften, about 5 minutes.", "Stir in the garlic, tomatoes, sausage, and bay leaf; cook about 4 minutes. ... | 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... |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "manifest_version": {"type": "integer"}, "description": {"type": "string"}, "icons": {"type": "object", "properties": {"16": {"type": "string"}, "48": {... | {"name" : "change-me", "version" : "1.0.0", "manifest_version" : 2, "description" : "change-me", "icons" : {"16" : "img/icon_16.png", "48" : "img/icon_48.png", "128" : "img/icon_128.png"}, "permissions" : ["tabs", "storage", "http://*/*", "https://*/*"], "content_scripts" : [{"matches" : ["http://*/*", "https://*/*"], ... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "manifest_version": {"type": "integer"}, "description": {"type": "string"}, "icons": {"type": "object", "properties": {"16": {"type": "string"}, "48": {"type": "string"}, "128": {"type": "string"}}, "required": ["16", "48", "12... |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"from": {"type": "integer"}, "size": {"type": "integer"}, "terminate_after": {"type": "integer"}, "query": {"type": "object", "properties": {}, "required": []}, "sort": {"type": "array", "items": {"type": "object",... | {"from" : 0, "size" : 1, "terminate_after" : 1, "query" : {}, "sort" : [{"created" : {"order" : "desc"}}]} | json_instruct | {"type": "object", "properties": {"from": {"type": "integer"}, "size": {"type": "integer"}, "terminate_after": {"type": "integer"}, "query": {"type": "object", "properties": {}, "required": []}, "sort": {"type": "array", "items": {"type": "object", "properties": {"created": {"type": "object", "properties": {"order": {"... |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"Version": {"type": "string"}}, "required": ["Version"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"Version" : "10.14"} | json_instruct | {"type": "object", "properties": {"Version": {"type": "string"}}, "required": ["Version"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"name": {"type": "string"}, "iso2": {"type": "string"}, "admin_level": {"type": "integer"}, "osm_id": {"type": "integer"}, "wikidata_id": {"... | {"type" : "Feature", "properties" : {"name" : "Smiltenes novads", "iso2" : "LV-094", "admin_level" : 6, "osm_id" : 1806957, "wikidata_id" : "Q1959984", "wikipedia_id" : "lv:Smiltenes novads", "population" : 12015, "countrylevel_id" : "iso2:LV-094", "osm_data" : {"localname" : "Smiltenes novads", "official_name" : "", "... | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"name": {"type": "string"}, "iso2": {"type": "string"}, "admin_level": {"type": "integer"}, "osm_id": {"type": "integer"}, "wikidata_id": {"type": "string"}, "wikipedia_id": {"type": "string"}, "population": {"... |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "dependencies": {"type": "object", "properties": {"body-parser": {"type": "string"}, "dis... | {"name" : "realtime-logger", "version" : "1.0.0", "description" : "Realtime logging", "main" : "realtime-logger.js", "dependencies" : {"body-parser" : "^1.18.2", "diskspace" : "^2.0.0", "express" : "^4.16.1", "os-utils" : "^0.0.14", "socket.io" : "^2.0.3", "systeminformation" : "^3.42.0", "os-usage" : "^0.0.3", "ejs" :... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "dependencies": {"type": "object", "properties": {"body-parser": {"type": "string"}, "diskspace": {"type": "string"}, "express": {"type": "string"}, "os-utils": {"t... |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {"type": "integer"}}, "productReviews": {"type": "array", "items": {"type": "object", "properties": {"produ... | {"userId" : 70700, "cartId" : "75532247-a8cc-4747-8312-53b963736eff", "preferredProducts" : [1678, 783], "productReviews" : [{"productId" : 3884, "reviewText" : "This Metal works so well. It delightedly improves my football by a lot.", "reviewDate" : "2017-10-01T15:48:48.2281443+03:00"}, {"productId" : 29, "reviewText"... | 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... |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"FileAPI.js": {"type": "string"}, "FileAPI.min.js": {"type": "string"}, "ng-file-upload-all.js": {"type": "string"}, "ng-file-upload-all.min.js": {"type": "string"}, "ng-file-upload-shim.js": {"type": "string"}, "ng... | {"FileAPI.js" : "sha512-odxOv+8PAOqf0fkECJaW3biBK2NqP3LwDcVf/2mxhbD/tIuJnhaRwa539m6ewJgOln6DufD/9TNBcMEM6GXs7A==", "FileAPI.min.js" : "sha512-eRljSF7KljvC/xMlqrjQIfgKOGxJ3mD6Q7YQn5X+FHAjBR+pa4YDkemiSG9bOUHKKi9LrbtfLaB2bsXXecwPHQ==", "ng-file-upload-all.js" : "sha512-/4UuiO5gX3UUT3ju5Fh06w5ZcKMnt3X9q93yDa1bY2jCFdhwSZN/n... | json_instruct | {"type": "object", "properties": {"FileAPI.js": {"type": "string"}, "FileAPI.min.js": {"type": "string"}, "ng-file-upload-all.js": {"type": "string"}, "ng-file-upload-all.min.js": {"type": "string"}, "ng-file-upload-shim.js": {"type": "string"}, "ng-file-upload-shim.min.js": {"type": "string"}, "ng-file-upload.js": {"t... |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"name": {"type": "string"}, "members": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "value": {"type": "integer"}}, "required": ["name", "value"]}}}, "required": ["name", "m... | {"name" : "RipperdocFilter", "members" : [{"name" : "All", "value" : 0}, {"name" : "Vendor", "value" : 1}, {"name" : "Player", "value" : 2}]} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "members": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "value": {"type": "integer"}}, "required": ["name", "value"]}}}, "required": ["name", "members"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"siteId": {"type": "string"}}, "required": ["siteId"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"siteId" : "1f8fe80d-f1bb-49ac-8956-f18c669bc928"} | json_instruct | {"type": "object", "properties": {"siteId": {"type": "string"}}, "required": ["siteId"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"results": {"type": "array", "items": {"type": "object", "properties": {"created_at": {"type": "string"}, "from_user": {"type": "string"}, "text": {"type": "string"}}, "required": ["created_at", "from_user", "text"]... | {"results" : [{"created_at" : "Thu, 29 Dec 2011 21:46:01 +0000", "from_user" : "xxx", "text" : "Lorem ipsum dolor sit amet"}, {"created_at" : "Mon, 26 Dec 2011 21:18:37 +0000", "from_user" : "xxx", "text" : "consectetur adipisicing elit"}]} | json_instruct | {"type": "object", "properties": {"results": {"type": "array", "items": {"type": "object", "properties": {"created_at": {"type": "string"}, "from_user": {"type": "string"}, "text": {"type": "string"}}, "required": ["created_at", "from_user", "text"]}}}, "required": ["results"], "$schema": "http://json-schema.org/draft-... |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "license": {"type": "string"}, "homepage": {"type": "string"}, "author... | {"name" : "bauer-cache", "version" : "0.1.10", "description" : "Disk-cache library.", "keywords" : ["disk", "cache", "json", "expire"], "license" : "MIT", "homepage" : "https://github.com/yneves/node-bauer-cache", "author" : {"name" : "Yuri Neves Silveira", "url" : "http://yneves.com/", "email" : "yurinevessilveira@gma... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "license": {"type": "string"}, "homepage": {"type": "string"}, "author": {"type": "object", "properties": {"name": {"type": "string"... |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"chromeMetadata": {"type": "object", "properties": {"OS": {"type": "string"}, "application": {"type": "string"}, "revision": {"type": "string"}, "version": {"type": "string"}}, "required": ["OS", "application"... | {"chromeMetadata" : {"OS" : "Android 9; JAT-L29 Build/HUAWEIJAT-L29", "application" : "Google Chrome", "revision" : "762b831055eeea48bb1d2deb03aabc70324e238a-refs/branch-heads/4183@{#1651}", "version" : "85.0.4183.81 (\u0e23\u0e38\u0e48\u0e19\u0e17\u0e35\u0e48\u0e40\u0e1b\u0e47\u0e19\u0e17\u0e32\u0e07\u0e01\u0e32\u0e23... | json_instruct | {"type": "object", "properties": {"chromeMetadata": {"type": "object", "properties": {"OS": {"type": "string"}, "application": {"type": "string"}, "revision": {"type": "string"}, "version": {"type": "string"}}, "required": ["OS", "application", "revision", "version"]}, "chromePolicies": {"type": "object", "properties":... |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"protocol": {"type": "object", "properties": {"inputHeader": {"type": "boolean"}, "outputHeader": {"type": "string"}, "addKeepRowsCol": {"type": "boolean"}, "allParties": {"type": "array", "items": {"type": "integer"... | {"protocol" : {"inputHeader" : true, "outputHeader" : "a,b,c,keeprows", "addKeepRowsCol" : true, "allParties" : [1, 2, 3], "inputParty" : 1, "zp" : 16777729, "preprocessing" : false, "serverPort" : 8080, "serverIp" : "localhost", "computationId" : "test", "filePath" : "<path_to_in.csv>", "chunkSize" : 1000}, "jiffPath"... | json_instruct | {"type": "object", "properties": {"protocol": {"type": "object", "properties": {"inputHeader": {"type": "boolean"}, "outputHeader": {"type": "string"}, "addKeepRowsCol": {"type": "boolean"}, "allParties": {"type": "array", "items": {"type": "integer"}}, "inputParty": {"type": "integer"}, "zp": {"type": "integer"}, "pre... |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"word" : "interaxis", "definition" : "The space between two axes. See Axis, 6. The doors, windows, niches, and the like, are then placed centrally in the interaxes. Gwilt."} | json_instruct | {"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$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"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "directories": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["tes... | {"name" : "testimonium", "version" : "1.0.0", "description" : "", "main" : "truffle-config.js", "directories" : {"test" : "test"}, "scripts" : {"test" : "echo \"Error: no test specified\" && exit 1"}, "repository" : {"type" : "git", "url" : "git+https://github.com/pf92/testimonium.git"}, "author" : "", "license" : "MIT... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "directories": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "scripts": {"type": "object", "properties": {"test": {"type": "... |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"data": {"type": "object", "properties": {"id": {"type": "integer"}, "title": {"type": "string"}, "primoId": {"type": "string"}, "slug": {"type": "string"}, "shortcode": {"type": "string"}, "imageUrl": {"type": "stri... | {"data" : {"id" : 47109, "title" : "John Garland, Minister of Justice", "primoId" : "ADLIB110112701", "slug" : "adlib110112701", "shortcode" : "", "imageUrl" : "https://dxlab.sl.nsw.gov.au/images-newselfwales/selfie1525913597133.jpg", "content" : "ministers (government), politicians, portraits, Adult Males", "imageType... | json_instruct | {"type": "object", "properties": {"data": {"type": "object", "properties": {"id": {"type": "integer"}, "title": {"type": "string"}, "primoId": {"type": "string"}, "slug": {"type": "string"}, "shortcode": {"type": "string"}, "imageUrl": {"type": "string"}, "content": {"type": "string"}, "imageType": {"type": "string"}, ... |
Generate a valid JSON object that conforms to the following schema:
{"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "dt": {"type": "integer"}, "ar": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}}, "required": ... | [{"id" : 1890448889, "name" : "C\u0169ng H\u00f3a Ng\u01b0\u1eddi D\u01b0ng", "dt" : 218801, "ar" : {"id" : 37482971, "name" : "V\u0169 Phan D\u01b0\u01a1ng Ninh"}, "al" : {"id" : 135380025, "name" : "C\u0169ng H\u00f3a Ng\u01b0\u1eddi D\u01b0ng", "picUrl" : "https://p1.music.126.net/nUL4YI7-q2J6FeJ5UQlisw==/1099511665... | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "dt": {"type": "integer"}, "ar": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}}, "required": ["id", "name"]}, "al": {"type": "object", "properties": {"id": {"type... |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"tourLengthSafetyMargin": {"type": "integer"}, "id": {"type": "integer"}}, "required": ["tourLengthSafetyMargin", "id"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"tourLengthSafetyMargin" : 10, "id" : 233} | json_instruct | {"type": "object", "properties": {"tourLengthSafetyMargin": {"type": "integer"}, "id": {"type": "integer"}}, "required": ["tourLengthSafetyMargin", "id"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"IsRecentlyVerified": {"type": "boolean"}, "ID": {"type": "integer"}, "UUID": {"type": "string"}, "DataProviderID": {"type": "integer"}, "OperatorID": {"type": "integer"}, "UsageTypeID": {"type": "integer"}, "Ad... | {"IsRecentlyVerified" : false, "ID" : 57201, "UUID" : "422FEC54-A03D-49B6-BCBC-1C7D291E8D3D", "DataProviderID" : 1, "OperatorID" : 45, "UsageTypeID" : 5, "AddressInfo" : {"ID" : 57547, "Title" : "Schlossbergstellplatz", "AddressLine1" : "Keltenstra\u00dfe", "AddressLine2" : "Im Gschlatt", "Town" : "Marktoberdorf", "Sta... | json_instruct | {"type": "object", "properties": {"IsRecentlyVerified": {"type": "boolean"}, "ID": {"type": "integer"}, "UUID": {"type": "string"}, "DataProviderID": {"type": "integer"}, "OperatorID": {"type": "integer"}, "UsageTypeID": {"type": "integer"}, "AddressInfo": {"type": "object", "properties": {"ID": {"type": "integer"}, "T... |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"name": {"type": "string"}, "private": {"type": "boolean"}, "scripts": {"type": "object", "properties": {"build:test": {"type": "string"}, "build:production": {"type": "string"}, "build:development": {"type": "strin... | {"name" : "micropost_sample_app", "private" : true, "scripts" : {"build:test" : "NODE_ENV=test webpack --config webpack.config.js", "build:production" : "NODE_ENV=production webpack --config webpack.config.js", "build:development" : "NODE_ENV=development webpack -w --config webpack.config.js"}, "cacheDirectories" : ["n... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "private": {"type": "boolean"}, "scripts": {"type": "object", "properties": {"build:test": {"type": "string"}, "build:production": {"type": "string"}, "build:development": {"type": "string"}}, "required": ["build:test", "build:production", "build:development... |
Create a JSON structure that matches this schema definition:
{"type": "array", "items": {"type": "object", "properties": {"date": {"type": "string"}, "total": {"type": "integer"}, "delta": {"type": "integer"}, "version": {"type": "string"}}, "required": ["date", "total", "delta", "version"]}, "$schema": "http://json-s... | [{"date" : "2022-04-02", "total" : 849, "delta" : 2, "version" : "0.1.2"}, {"date" : "2022-04-08", "total" : 867, "delta" : 18, "version" : "0.1.2"}, {"date" : "2022-04-10", "total" : 877, "delta" : 10, "version" : "0.1.2"}, {"date" : "2022-04-12", "total" : 883, "delta" : 6, "version" : "0.1.2"}, {"date" : "2022-04-13... | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"date": {"type": "string"}, "total": {"type": "integer"}, "delta": {"type": "integer"}, "version": {"type": "string"}}, "required": ["date", "total", "delta", "version"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"dependencies": {"type": "object", "properties": {"bootstrap": {"type": "string"}, "popper.js": {"type": "string"}, "jquery": {"type": "string"}, "jquery-validation": {"type": "string"}, "jquery-validation-unobtrus... | {"dependencies" : {"bootstrap" : "^4.1.3", "popper.js" : "^1.14.3", "jquery" : "^3.3.1", "jquery-validation" : "^1.17.0", "jquery-validation-unobtrusive" : "^3.2.10"}} | json_instruct | {"type": "object", "properties": {"dependencies": {"type": "object", "properties": {"bootstrap": {"type": "string"}, "popper.js": {"type": "string"}, "jquery": {"type": "string"}, "jquery-validation": {"type": "string"}, "jquery-validation-unobtrusive": {"type": "string"}}, "required": ["bootstrap", "popper.js", "jquer... |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "default": {"type": "string"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}, "build": {"t... | {"name" : "forkify", "version" : "1.0.0", "description" : "Recipe application", "default" : "index.html", "scripts" : {"start" : "parcel index.html", "build" : "parcel build index.html --out-dir ./dist"}, "author" : "Ekremina Arik", "license" : "ISC", "devDependencies" : {"babel-core" : "^6.26.3", "babel-loader" : "^7.... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "default": {"type": "string"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}, "build": {"type": "string"}}, "required": ["start", "build"]}, "author": {"type": "stri... |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "repository": {"type": "string"}, "author": {"type": "string"}, "license": {"type": "string"}... | {"name" : "elm-pokedex", "version" : "1.0.0", "description" : "Pokedex Api Client built with Elm", "main" : "index.js", "repository" : "https://github.com/dev-danilosilva/elm-pokedex.git", "author" : "Danilo Silva <danilo_silva@ethercity.tech>", "license" : "MIT", "scripts" : {"start" : "parcel public/index.html", "bui... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "repository": {"type": "string"}, "author": {"type": "string"}, "license": {"type": "string"}, "scripts": {"type": "object", "properties": {"start": {"type": "strin... |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"backend": {"type": "object", "properties": {"module": {"type": "string"}, "module_class": {"type": "string"}, "path": {"type": "string"}, "discovery": {"type": "object", "properties": {"title": {"type": "string"}, "descript... | {"backend" : {"module" : "medallion.backends.directory_backend", "module_class" : "DirectoryBackend", "path" : "./example_configs/directory/", "discovery" : {"title" : "Some TAXII Server", "description" : "This TAXII Server contains a listing of...", "contact" : "string containing contact information", "host" : "http:/... | json_instruct | {"type": "object", "properties": {"backend": {"type": "object", "properties": {"module": {"type": "string"}, "module_class": {"type": "string"}, "path": {"type": "string"}, "discovery": {"type": "object", "properties": {"title": {"type": "string"}, "description": {"type": "string"}, "contact": {"type": "string"}, "host... |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"parent": {"type": "string"}}, "required": ["parent"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"parent" : "betterdungeons:block/dungeon_portal_frame"} | json_instruct | {"type": "object", "properties": {"parent": {"type": "string"}}, "required": ["parent"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"dependencies": {"type": "object", "properties": {"runtime": {"type": "object", "properties": {"Standard": {"type": "object", "properties": {"version": {"type": "string"}}, "required": ["version"]}}, "required": ["St... | {"dependencies" : {"runtime" : {"Standard" : {"version" : "1.0.0"}}}, "name" : "example-2", "readme" : "./README.md", "type" : "executable", "version" : "1.0.0"} | json_instruct | {"type": "object", "properties": {"dependencies": {"type": "object", "properties": {"runtime": {"type": "object", "properties": {"Standard": {"type": "object", "properties": {"version": {"type": "string"}}, "required": ["version"]}}, "required": ["Standard"]}}, "required": ["runtime"]}, "name": {"type": "string"}, "rea... |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"title": {"type": "string"}, "author": {"type": "string"}, "description": {"type": "string"}, "thumb": {"type": "string"}, "download": {"type": "string"}, "origin": {"type": "string"}}, "required": ["title", "author... | {"title" : "\u3010Kawaii Strike\u3011\u62ff\u7834\u5d19 \u3093\u3063\u3042\u3063\u3042\u3002\u3010sdPBR\u3011", "author" : "stanwell", "description" : "NULL", "thumb" : "//i.iwara.tv/sites/default/files/styles/thumbnail/public/video_embed_field_thumbnails/youtube/WDt8IPAIuzw.jpg?itok=bjiqIz3H", "download" : "https://ww... | json_instruct | {"type": "object", "properties": {"title": {"type": "string"}, "author": {"type": "string"}, "description": {"type": "string"}, "thumb": {"type": "string"}, "download": {"type": "string"}, "origin": {"type": "string"}}, "required": ["title", "author", "description", "thumb", "download", "origin"], "$schema": "http://js... |
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"}, "directories": {"type": "object", "properties": {"test": {"type": "string"}}, "required... | {"name" : "smtp-connection-mit", "version" : "3.2.1", "description" : "Connect to SMTP servers", "main" : "lib/smtp-connection-mit.js", "directories" : {"test" : "test"}, "repository" : {"type" : "git", "url" : "git://github.com/dex4er/js-smtp-connection-mit.git"}, "keywords" : ["SMTP"], "author" : "Piotr Roszatycki", ... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "directories": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "repository": {"type": "object", "properties": {"type": {"type"... |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {"type": "integer"}}, "productReviews": {"type": "array", "items": {"type": "object", "properties": {"prod... | {"userId" : 64847, "cartId" : "60f2c735-6751-436e-b42a-0ba107c1df80", "preferredProducts" : [4761, 3712], "productReviews" : [{"productId" : 2605, "reviewText" : "this models is slurpee.", "reviewDate" : "2019-02-13T18:28:50.1645386+02:00"}, {"productId" : 4854, "reviewText" : "My neighbor Eller has one of these. She w... | 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": {"type": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "requir... | {"type" : "Feature", "geometry" : {"type" : "Polygon", "coordinates" : [[[142.75, 37.083333333333336], [142.75, 37.166666666666664], [142.875, 37.166666666666664], [142.875, 37.083333333333336], [142.75, 37.083333333333336]]]}, "properties" : {"code" : 554256, "url" : "http://madefor.github.io/0410/api/v1/554256.geojso... | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["type", "coordinates"]}, "properties": {"type": "ob... |
The schema below describes a JSON structure. Generate a valid example:
{"type": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [[1987, 5], [1988, 5], [1989, 9], [1990, 10], [1991, 10], [1993, 12], [1994, 8], [1995, 12], [1996, 11], [1997, 11], [1998, 6], [2000, 12], [2002, 10], [2003, 6], [2004, 8], [2006, 6], [2007, 9], [2008, 7], [2009, 6], [2010, 8], [2011, 6], [2012, 10], [2013, 9], [2014, 9]] | json_instruct | {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"type": {"type": "string"}, "pattern": {"type": "array", "items": {"type": "string"}}, "key": {"type": "object", "properties": {"A": {"type": "object", "properties": {"tag": {"type": "string"}}, "required": ["... | {"type" : "crafting_shaped", "pattern" : ["AAA", "ABA", "AAA"], "key" : {"A" : {"tag" : "wooden_slabs"}, "B" : {"item" : "chest"}}, "result" : {"item" : "phstorage:chest_wall"}} | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "pattern": {"type": "array", "items": {"type": "string"}}, "key": {"type": "object", "properties": {"A": {"type": "object", "properties": {"tag": {"type": "string"}}, "required": ["tag"]}, "B": {"type": "object", "properties": {"item": {"type": "string"}}, "... |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"name": {"type": "string"}, "codepoint": {"type": "string"}, "background": {"type": "string"}, "colorStyle": {"type": "string"}, "title": {"type": "string"}, "slug": {"type": "string"}, "svg": {"type": "string... | {"name" : "let-s-encrypt", "codepoint" : "", "background" : "#003A70", "colorStyle" : "brands-item--light", "title" : "Let\u2019s Encrypt", "slug" : "letsencrypt", "svg" : "<svg role=\"img\" viewBox=\"0 0 24 24\" xmlns=\"http://www.w3.org/2000/svg\"><title>Let's Encrypt icon</title><path d=\"M18.197 24H5.804a.965.... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "codepoint": {"type": "string"}, "background": {"type": "string"}, "colorStyle": {"type": "string"}, "title": {"type": "string"}, "slug": {"type": "string"}, "svg": {"type": "string"}, "aliases": {"type": "array", "items": {}}, "tags": {"type": "array", "ite... |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"nft": {"type": "object", "properties": {"id": {"type": "integer"}, "image": {"type": "string"}, "attributes": {"type": "array", "items": {"type": "object", "properties": {"trait_type": {"type": "string"}, "value": {"type": ... | {"nft" : {"id" : 496, "image" : "ipfs://QmUJNBa5Fg43QKSYAv5NLPwxAHsb4wwgwPD8EXa2b55GTX", "attributes" : [{"trait_type" : "Mouth", "value" : "Grin"}, {"trait_type" : "Eyes", "value" : "Blue Beams"}, {"trait_type" : "Fur", "value" : "Red"}, {"trait_type" : "Hat", "value" : "Fez"}, {"trait_type" : "Background", "value" : ... | json_instruct | {"type": "object", "properties": {"nft": {"type": "object", "properties": {"id": {"type": "integer"}, "image": {"type": "string"}, "attributes": {"type": "array", "items": {"type": "object", "properties": {"trait_type": {"type": "string"}, "value": {"type": "string"}}, "required": ["trait_type", "value"]}}}, "required"... |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"id": {"type": "string"}, "group": {"type": "string"}, "checksum": {"type": "object", "properties": {"type": {"type": "string"}, "value": {"type": "string"}}, "required": ["type", "value"]}, "text": {"type": "string"}}, "requir... | {"id" : "02004", "group" : "easy-ham-1", "checksum" : {"type" : "MD5", "value" : "58880d4612fa6d656058f7d919a8a931"}, "text" : "From rssfeeds@jmason.org Thu Sep 26 16:43:28 2002\nReturn-Path: <rssfeeds@spamassassin.taint.org>\nDelivered-To: yyyy@localhost.spamassassin.taint.org\nReceived: from localhost (jalapeno [127... | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "group": {"type": "string"}, "checksum": {"type": "object", "properties": {"type": {"type": "string"}, "value": {"type": "string"}}, "required": ["type", "value"]}, "text": {"type": "string"}}, "required": ["id", "group", "checksum", "text"], "$schema": "http:... |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"id": {"type": "integer"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"src:alt_label": {"type": "string"}, "src:geom": {"type": "string"}, "wof:geomhash": {"type": "string"}, "... | {"id" : 85907617, "type" : "Feature", "properties" : {"src:alt_label" : "quattroshapes_pg", "src:geom" : "quattroshapes_pg", "wof:geomhash" : "956e2a7624c29570ed7689e4e33b6296", "wof:id" : 85907617, "wof:repo" : "whosonfirst-data-admin-cz"}, "bbox" : [18.248162, 49.804867, 18.248162, 49.804867], "geometry" : {"coordina... | json_instruct | {"type": "object", "properties": {"id": {"type": "integer"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"src:alt_label": {"type": "string"}, "src:geom": {"type": "string"}, "wof:geomhash": {"type": "string"}, "wof:id": {"type": "integer"}, "wof:repo": {"type": "string"}}, "required": ["... |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "start": {"type": "string"}}, "req... | {"name" : "bod-ws", "version" : "1.0.0", "description" : "", "main" : "server.js", "scripts" : {"test" : "echo \"Error: no test specified\" && exit 1", "start" : "nodemon server.js"}, "keywords" : [], "author" : "mraynal2008@gmail.com", "license" : "MIT", "dependencies" : {"body-parser" : "^1.19.0", "dotenv" : "^8.2.0"... | 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"]}, "keywords": {"type": "array",... |
Create a JSON structure that matches this schema definition:
{"type": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [[1985, 6], [1993, 8], [1995, 8], [1998, 5], [2005, 5]] | json_instruct | {"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": {"install": {"type": "object", "properties": {"assets": {"type": "object", "properties": {"url": {"type": "string"}, "folder": {"type": "string"}}, "required": ["url", "folder"]}, "dependencies": {"type": "object", "p... | {"install" : {"assets" : {"url" : "https://github.com/pe77/pkframework-assets/archive/master.zip", "folder" : "assets"}, "dependencies" : {"pkframework" : {"url" : "https://github.com/pe77/pkframework/archive/master.zip", "use" : "build/"}}}} | json_instruct | {"type": "object", "properties": {"install": {"type": "object", "properties": {"assets": {"type": "object", "properties": {"url": {"type": "string"}, "folder": {"type": "string"}}, "required": ["url", "folder"]}, "dependencies": {"type": "object", "properties": {"pkframework": {"type": "object", "properties": {"url": {... |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"edges": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}, "features": {"type": "object", "properties": {"0": {"type": "string"}, "1": {"type": "string"}, "2": {"type": "string"}, "3": {"... | {"edges" : [[19, 1], [6, 5], [18, 14], [35, 14], [38, 14], [0, 36], [14, 33], [14, 11], [1, 12], [14, 11], [3, 37], [6, 27], [14, 21], [40, 14], [29, 14], [14, 9], [40, 14], [7, 39], [0, 16], [3, 31], [1, 4], [8, 20], [14, 25], [41, 14], [42, 14], [14, 5], [30, 14], [14, 23], [14, 2], [14, 18], [17, 14], [43, 14], [11,... | json_instruct | {"type": "object", "properties": {"edges": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}, "features": {"type": "object", "properties": {"0": {"type": "string"}, "1": {"type": "string"}, "2": {"type": "string"}, "3": {"type": "string"}, "4": {"type": "string"}, "5": {"type": "string"}, "6":... |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"name": {"type": "string"}, "alt_name": {"type": "string"}, "country": {"type": "string"}, "state": {"type": "null"}, "address": {"type": "object", "properties": {"street": {"type": "string"}, "city": {"type": "strin... | {"name" : "Centre for Advanced Studies of the State of Aguascalientes", "alt_name" : "Centro de Estudios Superiores del Estado de Aguascalientes", "country" : "Mexico", "state" : null, "address" : {"street" : "Av. Las Am\u00e9ricas No. 502 - Fracc. Las Am\u00e9ricas", "city" : "Aguascalientes", "province" : "Aguascalie... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "alt_name": {"type": "string"}, "country": {"type": "string"}, "state": {"type": "null"}, "address": {"type": "object", "properties": {"street": {"type": "string"}, "city": {"type": "string"}, "province": {"type": "string"}, "postal_code": {"type": "null"}},... |
Generate sample JSON data that conforms to the following schema definition:
{"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_ab... | {"place_name" : "Ashburn", "state_name" : "Virginia", "state_abbrv" : "VA", "lat" : "39.0373", "long" : "-77.4805"} | 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#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"IsRecentlyVerified": {"type": "boolean"}, "ID": {"type": "integer"}, "UUID": {"type": "string"}, "DataProviderID": {"type": "integer"}, "DataProvidersReference": {"type": "string"}, "UsageTypeID": {"type": "integer"}... | {"IsRecentlyVerified" : false, "ID" : 111147, "UUID" : "11B66F35-391F-414A-B26C-EBD89A852A77", "DataProviderID" : 2, "DataProvidersReference" : "83014", "UsageTypeID" : 1, "AddressInfo" : {"ID" : 111493, "Title" : "Town of Hanover - Heritage Square Park", "AddressLine1" : "358 10th St", "Town" : "Hanover", "StateOrProv... | json_instruct | {"type": "object", "properties": {"IsRecentlyVerified": {"type": "boolean"}, "ID": {"type": "integer"}, "UUID": {"type": "string"}, "DataProviderID": {"type": "integer"}, "DataProvidersReference": {"type": "string"}, "UsageTypeID": {"type": "integer"}, "AddressInfo": {"type": "object", "properties": {"ID": {"type": "in... |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "nodes": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "id": {"type": "integer"}, "lat": {"type": "number"}, "lon": {"type": "number... | {"id" : "74265227", "name" : "Watson Close", "nodes" : [{"type" : "node", "id" : 878165602, "lat" : 52.3136001, "lon" : -0.7238175}, {"type" : "node", "id" : 878165811, "lat" : 52.3135365, "lon" : -0.7232398}, {"type" : "node", "id" : 878166084, "lat" : 52.3135365, "lon" : -0.7235171}], "volunteer_postcode" : "NN8 5FD"... | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "nodes": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "id": {"type": "integer"}, "lat": {"type": "number"}, "lon": {"type": "number"}}, "required": ["type", "id", "lat", "lon"]}}, "volunte... |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"name": {"type": "string"}, "title": {"type": "array", "items": {"type": "string"}}, "description": {"type": "array", "items": {"type": "string"}}, "why_it_matters": {"type": "array", "items": {"type": "string... | {"name" : "Antibiotic stewardship: volume of antibiotic prescribing (KTT9)", "title" : ["Antibiotic stewardship: volume of antibiotic prescribing (KTT9)"], "description" : ["Number of prescription items for all antibacterial drugs (BNF 5.1)", "per oral antibacterials (BNF 5.1 sub-set) item-based STAR-PU."], "why_it_mat... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "title": {"type": "array", "items": {"type": "string"}}, "description": {"type": "array", "items": {"type": "string"}}, "why_it_matters": {"type": "array", "items": {"type": "string"}}, "numerator_short": {"type": "string"}, "denominator_short": {"type": "st... |
Using the following JSON schema, generate a compatible JSON instance:
{"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" : "Set Covering with our Eyes Closed.", "fields" : ["facility location problem", "universe", "universal set", "set cover problem", "greedy algorithm", "online algorithm"], "abstract" : "Given a universe $U$ of $n$ elements and a weighted collection $\\mathscr{S}$ of $m$ subsets of $U$, the universal set cover ... | 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... |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "ger"} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"text": {"type": "string"}, "created": {"type": "string"}, "type": {"type": "string"}, "flInCalendar": {"type": "boolean"}}, "required": ["text", "created", "type", "flInCalendar"], "$schema": "http://json-schema.org/draft-07/s... | {"text" : "Just for fun. Peter O'Toole dances <a href=\"https://youtu.be/DzbWvmSMiNI?t=27\">The Varsity Drag</a> in <a href=\"https://en.wikipedia.org/wiki/The_Ruling_Class_(film)\">The Ruling Class</a>, one of my favorite movies as a teen (and still is).", "created" : "Wed, 23 Dec 2020 20:39:30 GMT", "type" : "outline... | json_instruct | {"type": "object", "properties": {"text": {"type": "string"}, "created": {"type": "string"}, "type": {"type": "string"}, "flInCalendar": {"type": "boolean"}}, "required": ["text", "created", "type", "flInCalendar"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"PREVALENCE_BY_GENDER_AGE_YEAR": {"type": "object", "properties": {"TRELLIS_NAME": {"type": "string"}, "SERIES_NAME": {"type": "string"}, "X_CALENDAR_YEAR": {"type": "integer"}, "Y_PREVALENCE_1000PP": {"type": "number"}}, "r... | {"PREVALENCE_BY_GENDER_AGE_YEAR" : {"TRELLIS_NAME" : "70-79", "SERIES_NAME" : "MALE", "X_CALENDAR_YEAR" : 2143, "Y_PREVALENCE_1000PP" : 130.43478}, "PREVALENCE_BY_MONTH" : {"X_CALENDAR_MONTH" : [], "Y_PREVALENCE_1000PP" : []}, "CONDITIONS_BY_TYPE" : {"CONCEPT_NAME" : "Claim- Inpatient: Secondary diagnosis", "COUNT_VALU... | json_instruct | {"type": "object", "properties": {"PREVALENCE_BY_GENDER_AGE_YEAR": {"type": "object", "properties": {"TRELLIS_NAME": {"type": "string"}, "SERIES_NAME": {"type": "string"}, "X_CALENDAR_YEAR": {"type": "integer"}, "Y_PREVALENCE_1000PP": {"type": "number"}}, "required": ["TRELLIS_NAME", "SERIES_NAME", "X_CALENDAR_YEAR", "... |
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" : 98299, "cartId" : "3839e2be-56ca-47ca-bb2f-e8819d80cd9b", "preferredProducts" : [3372, 414, 2849, 324, 3122, 2312, 400, 2570], "productReviews" : [{"productId" : 3683, "reviewText" : "i use it from now on when i'm in my safehouse.", "reviewDate" : "2020-03-20T14:00:48.1230123+02:00"}, {"productId" : 3239, "... | 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... |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"id_7358": {"type": "object", "properties": {"publicdate": {"type": "string"}, "downloads": {"type": "integer"}}, "required": ["publicdate", "downloads"]}}, "required": ["id_7358"], "$schema": "http://json-schema.org/draft-0... | {"id_7358" : {"publicdate" : "2016-08-01 12:04:51", "downloads" : 0}} | json_instruct | {"type": "object", "properties": {"id_7358": {"type": "object", "properties": {"publicdate": {"type": "string"}, "downloads": {"type": "integer"}}, "required": ["publicdate", "downloads"]}}, "required": ["id_7358"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "array", "items": {"type": "object", "properties": {"deputyNum": {"type": "integer"}, "guildDonateTimes": {"type": "integer"}, "level": {"type": "integer"}, "maintainCost": {"type": "integer"}, "maxNum": {"type": "integer"}, "updateMo... | [{"deputyNum" : 3, "guildDonateTimes" : 300, "level" : 1, "maintainCost" : 1000, "maxNum" : 30, "updateMoney" : 550800}, {"deputyNum" : 3, "guildDonateTimes" : 400, "level" : 2, "maintainCost" : 2000, "maxNum" : 32, "updateMoney" : 1045786}, {"deputyNum" : 3, "guildDonateTimes" : 500, "level" : 3, "maintainCost" : 3000... | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"deputyNum": {"type": "integer"}, "guildDonateTimes": {"type": "integer"}, "level": {"type": "integer"}, "maintainCost": {"type": "integer"}, "maxNum": {"type": "integer"}, "updateMoney": {"type": "integer"}}, "required": ["deputyNum", "guildDonateTimes", "le... |
Create an example JSON object that satisfies this schema:
{"type": "array", "items": {"type": "object", "properties": {"skyblock_id": {"type": "string"}, "quantity": {"type": "string"}, "item_name": {"type": "string"}}, "required": ["skyblock_id", "quantity", "item_name"]}, "$schema": "http://json-schema.org/draft-07/... | [{"skyblock_id" : "ENCHANTED_IRON_BLOCK", "quantity" : "1", "item_name" : "Enchanted iron block"}, {"skyblock_id" : "ENCHANTED_IRON_BLOCK", "quantity" : "1", "item_name" : "Enchanted iron block"}, {"skyblock_id" : "ENCHANTED_IRON_BLOCK", "quantity" : "1", "item_name" : "Enchanted iron block"}, {"skyblock_id" : "ENCHANT... | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"skyblock_id": {"type": "string"}, "quantity": {"type": "string"}, "item_name": {"type": "string"}}, "required": ["skyblock_id", "quantity", "item_name"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"count": {"type": "integer"}, "474041": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}, "N.A.//": {"type": "object", "properties": {"count": {"type": "integer"}}, "requ... | {"count" : 36, "474041" : {"count" : 1}, "N.A.//" : {"count" : 27}, "37201X" : {"count" : 1}, "533030" : {"count" : 1}, "472031" : {"count" : 1}, "472130" : {"count" : 1}, "472061" : {"count" : 2}, "352010" : {"count" : 1}, "431011" : {"count" : 1}} | json_instruct | {"type": "object", "properties": {"count": {"type": "integer"}, "474041": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}, "N.A.//": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}, "37201X": {"type": "object", "properties": {"count": {"typ... |
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" : 1126048739, "type" : "Feature", "properties" : {"src:alt_label" : "qs_pg", "src:geom" : "qs_pg", "wof:geomhash" : "e92541bdd1f114ce4bfc21b890ec0a80", "wof:id" : 1126048739, "wof:repo" : "whosonfirst-data-admin-fr"}, "bbox" : [6.22148, 47.90264, 6.22148, 47.90264], "geometry" : {"coordinates" : [6.22148, 47.9026... | 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": ["... |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"separator": {"type": "string"}, "verticalSeparator": {"type": "string"}}, "required": ["separator", "verticalSeparator"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"separator" : "^---\r?\n", "verticalSeparator" : "^--\r?\n"} | json_instruct | {"type": "object", "properties": {"separator": {"type": "string"}, "verticalSeparator": {"type": "string"}}, "required": ["separator", "verticalSeparator"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "versionCode": {"type": "integer"}, "versionName": {"type": "string"}, "packageName": {"type": "string"}, "description": {"type": "string"}, "minThanoxVersion"... | [{"name" : "Su Enabler", "versionCode" : 2031443, "versionName" : "1.2.2", "packageName" : "github.tornaco.android.plugin.su", "description" : "\u4e3a\u60c5\u666f\u6a21\u5f0fsu API\u63d0\u4f9b\u652f\u6301", "minThanoxVersion" : 1, "updateTimeMills" : 1587822650040, "downloadUrl" : "plugins/plugin_su_enabler_1.2.2-dirty... | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "versionCode": {"type": "integer"}, "versionName": {"type": "string"}, "packageName": {"type": "string"}, "description": {"type": "string"}, "minThanoxVersion": {"type": "integer"}, "updateTimeMills": {"type": "integer"}, "download... |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"value": {"type": "string"}}, "required": ["value"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"value" : "P2030Y11M30DT20H45M46S"} | json_instruct | {"type": "object", "properties": {"value": {"type": "string"}}, "required": ["value"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"DataFileName": {"type": "string"}, "Title": {"type": "string"}, "TabTitle": {"type": "string"}, "LegendTitle": {"type": "string"}, "LegendLabels": {"type": "array", "items": {"type": "string"}}, "ColorDomain": {"type": "array"... | {"DataFileName" : "data.csv", "Title" : "US Population by County", "TabTitle" : "US Population", "LegendTitle" : "Population", "LegendLabels" : ["< 0", "0+", "15,000+", "30,000+", "45,000+", "60,000+", "75,000+", "90,000+", "120,000+", "135,000+", "150,000+", "165,000+", "180,000+"], "ColorDomain" : [0, 15000, 30000, 4... | json_instruct | {"type": "object", "properties": {"DataFileName": {"type": "string"}, "Title": {"type": "string"}, "TabTitle": {"type": "string"}, "LegendTitle": {"type": "string"}, "LegendLabels": {"type": "array", "items": {"type": "string"}}, "ColorDomain": {"type": "array", "items": {"type": "integer"}}, "ExtColorDomain": {"type":... |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"name": {"type": "string"}, "type": {"type": "string"}, "path": {"type": "string"}, "src": {"type": "string"}, "namespace": {"type": "string"}, "relative": {"type": "boolean"}, "markdown": {"type": "boolean"}, "bind": {"type... | {"name" : "Zeta Ret ProtoSS - Prototype Supers-Subclass", "type" : "protossdox", "path" : "dox/", "src" : "", "namespace" : "zetaret.global.packages.protoss", "relative" : true, "markdown" : true, "bind" : false, "version" : "1.8.2", "license" : "MIT"} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "type": {"type": "string"}, "path": {"type": "string"}, "src": {"type": "string"}, "namespace": {"type": "string"}, "relative": {"type": "boolean"}, "markdown": {"type": "boolean"}, "bind": {"type": "boolean"}, "version": {"type": "string"}, "license": {"typ... |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "author": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}, "description": {... | {"name" : "r2frida", "version" : "0.1.4", "author" : {"name" : "pancake", "email" : "pancake@nowsecure.com"}, "description" : "Radare2 and Frida together", "contributors" : [], "main" : "./bin/r2frida.js", "bin" : {"r2frida" : "./bin/r2frida.js"}, "repository" : {"type" : "git", "url" : "git@github.com:viaforensics/r2f... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "author": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}, "description": {"type": "string"}, "contributors": {"type": "array", "items": {}}, "main": {"... |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["t... | {"name" : "wordpress-angular", "version" : "1.0.0", "description" : "Wordpres theme using angular js and JSON API (Wordpress plugin)", "main" : "index.js", "scripts" : {"test" : "echo \"Error: no test specified\" && exit 1"}, "repository" : {"type" : "git", "url" : "git+https://github.com/RSRawat/wordpress-angular.git"... | 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... |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "number"}}}, "required": ["type", "coordinates"]}, "type": {"type": "string"}, "id": {"ty... | {"geometry" : {"type" : "Point", "coordinates" : [-95.21, 44.79]}, "type" : "Feature", "id" : "56284", "properties" : {"other_cities" : "", "city" : "Renville", "state" : "MN", "county" : "Renville 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... |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"_id": {"type": "string"}, "index": {"type": "integer"}, "guid": {"type": "string"}, "isActive": {"type": "boolean"}, "balance": {"type": "string"}, "picture": {"type": "string"}, "age": {"type": "integer"}, "eyeColo... | {"_id" : "55ee5e996675bb195e93c8b2", "index" : 2992, "guid" : "6b8d66d5-09e3-43a8-9c5c-03135931411d", "isActive" : true, "balance" : "$32,829.80", "picture" : "http://placehold.it/32x32", "age" : 65, "eyeColor" : "hazel", "name" : "Flynn Barker", "gender" : "male", "company" : "BULLJUICE", "email" : "flynnbarker@bullju... | json_instruct | {"type": "object", "properties": {"_id": {"type": "string"}, "index": {"type": "integer"}, "guid": {"type": "string"}, "isActive": {"type": "boolean"}, "balance": {"type": "string"}, "picture": {"type": "string"}, "age": {"type": "integer"}, "eyeColor": {"type": "string"}, "name": {"type": "string"}, "gender": {"type":... |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "cable_id": {"type": "integer"}, "landing_points": {"type": "array", "items": {"type": "object", "properties": {"landing_point_id": {"type": "integer"}, "id": {"t... | {"id" : "havsil", "name" : "Havsil", "cable_id" : 2095, "landing_points" : [{"landing_point_id" : 18005, "id" : "hanstholm-denmark", "name" : "Hanstholm, Denmark", "latlon" : "57.111640,8.616177", "url" : "#/landing-point/hanstholm-denmark"}, {"landing_point_id" : 3131, "id" : "kristiansand-norway", "name" : "Kristians... | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "cable_id": {"type": "integer"}, "landing_points": {"type": "array", "items": {"type": "object", "properties": {"landing_point_id": {"type": "integer"}, "id": {"type": "string"}, "name": {"type": "string"}, "latlon": {"type": "strin... |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"Administrator": {"type": "object", "properties": {"RoleId": {"type": "string"}, "Name": {"type": "string"}, "Description": {"type": "string"}, "IsPredefined": {"type": "boolean"}, "AssignedPrivileges": {"type":... | {"Administrator" : {"RoleId" : "Administrator", "Name" : "Administrator Role", "Description" : "Pre-Defined Administrator Role", "IsPredefined" : true, "AssignedPrivileges" : ["Login", "ConfigureManager", "ConfigureUsers", "ConfigureSelf", "ConfigureComponents"]}, "Operator" : {"RoleId" : "Operator", "Name" : "Operator... | json_instruct | {"type": "object", "properties": {"Administrator": {"type": "object", "properties": {"RoleId": {"type": "string"}, "Name": {"type": "string"}, "Description": {"type": "string"}, "IsPredefined": {"type": "boolean"}, "AssignedPrivileges": {"type": "array", "items": {"type": "string"}}}, "required": ["RoleId", "Name", "De... |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"name": {"type": "string"}, "properties": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "name": {"type": "string"}}, "required": ["type", "name"]}}}, "required": ["name", "... | {"name" : "Comment", "properties" : [{"type" : "STRING", "name" : "externalProviderType"}, {"type" : "STRING", "name" : "entityType"}, {"type" : "STRING", "name" : "compositeId"}, {"type" : "STRING", "name" : "id"}, {"type" : "STRING", "name" : "replyOwnerId"}, {"type" : "NUMBER", "name" : "commentsCount"}, {"type" : "... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "properties": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "name": {"type": "string"}}, "required": ["type", "name"]}}}, "required": ["name", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"parent": {"type": "string"}, "textures": {"type": "object", "properties": {"flat": {"type": "string"}}, "required": ["flat"]}}, "required": ["parent", "textures"], "$schema": "http://json-schema.org/draft-07/schem... | {"parent" : "minecraft:item/template_flat", "textures" : {"flat" : "minecraft:block/glow_lichen"}} | json_instruct | {"type": "object", "properties": {"parent": {"type": "string"}, "textures": {"type": "object", "properties": {"flat": {"type": "string"}}, "required": ["flat"]}}, "required": ["parent", "textures"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"title": {"type": "string"}, "author": {"type": "string"}, "musicType": {"type": "string"}, "musicNo": {"type": "string"}}, "required": ["title", "author", "musicType", "musicNo"], "$schema": "http://json-schema.org... | {"title" : "Journey to the Peace-\u9648\u96ea\u51dd", "author" : "\u9648\u96ea\u51dd", "musicType" : "\u6d41\u884c", "musicNo" : "0011663"} | json_instruct | {"type": "object", "properties": {"title": {"type": "string"}, "author": {"type": "string"}, "musicType": {"type": "string"}, "musicNo": {"type": "string"}}, "required": ["title", "author", "musicType", "musicNo"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"900676253": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900676254": {"type": "object", "properties": {"nam... | {"900676253" : {"nama" : "TPS 1", "dapil" : [6302, 16306, 2630204]}, "900676254" : {"nama" : "TPS 2", "dapil" : [6302, 16306, 2630204]}, "900676255" : {"nama" : "TPS 3", "dapil" : [6302, 16306, 2630204]}, "900676256" : {"nama" : "TPS 4", "dapil" : [6302, 16306, 2630204]}, "900676257" : {"nama" : "TPS 5", "dapil" : [630... | json_instruct | {"type": "object", "properties": {"900676253": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900676254": {"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": {"id": {"type": "integer"}, "title": {"type": "string"}, "title_en": {"type": "string"}, "title_jp": {"type": "string"}, "picture": {"type": "string"}, "synopsis": {"type": "string"}, "type": {"type": "string"}, "ep... | {"id" : 46, "title" : "Rurouni Kenshin: Meiji Kenkaku Romantan - Ishinshishi e no Chinkonka", "title_en" : "Samurai X: The Motion Picture", "title_jp" : "\u308b\u308d\u3046\u306b\u5263\u5fc3 -\u660e\u6cbb\u5263\u5ba2\u6d6a\u6f2b\u8b5a- \u7dad\u65b0\u5fd7\u58eb\u3078\u306e\u93ae\u9b42\u6b4c", "picture" : "http://cdn.mya... | json_instruct | {"type": "object", "properties": {"id": {"type": "integer"}, "title": {"type": "string"}, "title_en": {"type": "string"}, "title_jp": {"type": "string"}, "picture": {"type": "string"}, "synopsis": {"type": "string"}, "type": {"type": "string"}, "episodes": {"type": "integer"}, "tags": {"type": "array", "items": {"type"... |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"name": {"type": "string"}, "symbol": {"type": "string"}, "address": {"type": "string"}, "decimals": {"type": "integer"}, "dharmaVerificationStatus": {"type": "string"}}, "required": ["name", "symbol", "address", "decimals", "dha... | {"name" : "4X4", "symbol" : "4X4", "address" : "0x951A3D201166d0532Cde0c60bd8F8386681fc252", "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... |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"localities": {"type": "array", "items": {"type": "string"}}, "state": {"type": "string"}, "postal_code": {"type": "string"}, "locality": {"type": "string"}, "lat": {"type": "number"}, "region": {"type": "object... | {"localities" : ["Crawford, WV"], "state" : "WV", "postal_code" : "26343", "locality" : "Crawford, WV", "lat" : 38.82223, "region" : {"fips" : "54", "abbr" : "WV", "name" : "West Virginia"}, "city" : "Crawford", "type" : "STANDARD", "lng" : -80.421976, "counties" : [{"fips" : "041", "name" : "Lewis County"}, {"fips" : ... | json_instruct | {"type": "object", "properties": {"localities": {"type": "array", "items": {"type": "string"}}, "state": {"type": "string"}, "postal_code": {"type": "string"}, "locality": {"type": "string"}, "lat": {"type": "number"}, "region": {"type": "object", "properties": {"fips": {"type": "string"}, "abbr": {"type": "string"}, "... |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"id": {"type": "string"}, "provinceId": {"type": "string"}, "regencyId": {"type": "string"}, "districtId": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "provinceId", "regencyId", "districtId", "name"], "$... | {"id" : "2024", "provinceId" : "36", "regencyId" : "02", "districtId" : "01", "name" : "Senanghati"} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "provinceId": {"type": "string"}, "regencyId": {"type": "string"}, "districtId": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "provinceId", "regencyId", "districtId", "name"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "scripts": {"type": "object", "properties": {"build": {"type": "string"}}, "required": ["build"]}, "repository": {"type"... | {"name" : "Tabs2Clipboard", "version" : "1.0.0", "description" : "", "scripts" : {"build" : "web-ext build --source-dir src --overwrite-dest --artifacts-dir build"}, "repository" : {"type" : "git", "url" : "git+https://github.com/Xeoth/Tabs2Clipboard.git"}, "keywords" : [], "author" : "Xeoth", "license" : "MIT", "bugs"... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "scripts": {"type": "object", "properties": {"build": {"type": "string"}}, "required": ["build"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "... |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"commit": {"type": "object", "properties": {"commit": {"type": "string"}, "author": {"type": "string"}, "time": {"type": "string"}, "files": {"type": "integer"}, "merge": {"type": "boolean"}, "message": {"type": "str... | {"commit" : {"commit" : "4cbd856c76eb462e53a14990d445077f746fccb0", "author" : "Carl Boettiger <cboettig@gmail.com>", "time" : "2021-11-05 20:04:09", "files" : 1, "merge" : true, "message" : "Merge pull request #333 from amoeba/issue-332-shiny-att-perf\n\nCache calls to units::valid_udunits_prefixes()"}, "repo" : "http... | json_instruct | {"type": "object", "properties": {"commit": {"type": "object", "properties": {"commit": {"type": "string"}, "author": {"type": "string"}, "time": {"type": "string"}, "files": {"type": "integer"}, "merge": {"type": "boolean"}, "message": {"type": "string"}}, "required": ["commit", "author", "time", "files", "merge", "me... |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"intents": {"type": "array", "items": {"type": "object", "properties": {"intent": {"type": "string"}}, "required": ["intent"]}}}, "required": ["intents"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"intents" : [{"intent" : "AMAZON.PauseIntent"}, {"intent" : "AMAZON.ResumeIntent"}, {"intent" : "AMAZON.CancelIntent"}, {"intent" : "AMAZON.LoopOnIntent"}, {"intent" : "AMAZON.LoopOffIntent"}, {"intent" : "AMAZON.ShuffleOnIntent"}, {"intent" : "AMAZON.ShuffleOffIntent"}, {"intent" : "AMAZON.HelpIntent"}, {"intent" : "... | json_instruct | {"type": "object", "properties": {"intents": {"type": "array", "items": {"type": "object", "properties": {"intent": {"type": "string"}}, "required": ["intent"]}}}, "required": ["intents"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"id": {"type": "string"}, "symbol": {"type": "string"}, "name": {"type": "string"}, "platforms": {"type": "object", "properties": {"binance-smart-chain": {"type": "string"}}, "required": ["binance-smart-chain"]}, "ha... | {"id" : "weather-finance", "symbol" : "weather", "name" : "Weather Finance", "platforms" : {"binance-smart-chain" : "0xbe3e4cfd929156f612df36042d79201ecf5344d7"}, "hashing_algorithm" : null, "categories" : [], "description" : {"en" : "Yield-farming AMM based on BSC"}, "country_origin" : "", "genesis_date" : null, "cont... | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "symbol": {"type": "string"}, "name": {"type": "string"}, "platforms": {"type": "object", "properties": {"binance-smart-chain": {"type": "string"}}, "required": ["binance-smart-chain"]}, "hashing_algorithm": {"type": "null"}, "categories": {"type": "array", "i... |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"functions": {"type": "array", "items": {"type": "string"}}, "properties": {"type": "array", "items": {"type": "string"}}}, "required": ["functions", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"functions" : ["requestFinished", "requestFailed"], "properties" : ["responseHeaders", "init", "description"]} | json_instruct | {"type": "object", "properties": {"functions": {"type": "array", "items": {"type": "string"}}, "properties": {"type": "array", "items": {"type": "string"}}}, "required": ["functions", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "author": {"type": "string"}, "license": {"type": "string"}, "devDependen... | {"name" : "svg-aircraft-instruments", "version" : "0.0.0", "scripts" : {"test" : "echo \"Error: no test specified\" && exit 1"}, "author" : "david howard", "license" : "ISC", "devDependencies" : {"babel" : "^5.8.21", "eslint" : "^1.1.0", "grunt" : "^0.4.5", "grunt-babel" : "^5.0.1", "grunt-contrib-uglify" : "^0.9.2", "... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "author": {"type": "string"}, "license": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"babel": {"type"... |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"Releases": {"type": "array", "items": {"type": "object", "properties": {"Id": {"type": "string"}, "Version": {"type": "string"}, "DownloadUrl": {"type": "string"}}, "required": ["Id", "Version", "DownloadUrl"]}}}, "r... | {"Releases" : [{"Id" : "SolastaDruidClass", "Version" : "1.0.1", "DownloadUrl" : "https://github.com/DubhHerder/SolastaDruidClass/releases/download/V1.0.1/SolastaDruidClass.zip"}]} | json_instruct | {"type": "object", "properties": {"Releases": {"type": "array", "items": {"type": "object", "properties": {"Id": {"type": "string"}, "Version": {"type": "string"}, "DownloadUrl": {"type": "string"}}, "required": ["Id", "Version", "DownloadUrl"]}}}, "required": ["Releases"], "$schema": "http://json-schema.org/draft-07/s... |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"station": {"type": "array", "items": {"type": "object", "properties": {"pref_cd": {"type": "integer"}, "line_cd": {"type": "integer"}, "line_name": {"type": "string"}, "station_cd": {"type": "integer"}, "station_g_c... | {"station" : [{"pref_cd" : 9, "line_cd" : 21003, "line_name" : "\u6771\u6b66\u65e5\u5149\u7dda", "station_cd" : 2100315, "station_g_cd" : 2100315, "station_name" : "\u5bb6\u4e2d", "lon" : 139.747344, "lat" : 36.429783}]} | json_instruct | {"type": "object", "properties": {"station": {"type": "array", "items": {"type": "object", "properties": {"pref_cd": {"type": "integer"}, "line_cd": {"type": "integer"}, "line_name": {"type": "string"}, "station_cd": {"type": "integer"}, "station_g_cd": {"type": "integer"}, "station_name": {"type": "string"}, "lon": {"... |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"\u5de5\u5ee0\u540d\u7a31": {"type": "string"}, "\u5de5\u5ee0\u767b\u8a18\u7de8\u865f": {"type": "string"}, "\u5de5\u5ee0\u8a2d\u7acb\u8a31\u53ef\u6848\u865f": {"type": "string"}, "\u5de5\u5ee0\u5730\u5740": {"type": "string... | {"\u5de5\u5ee0\u540d\u7a31" : "\u5e1d\u904b\u79d1\u6280\u80a1\u4efd\u6709\u9650\u516c\u53f8", "\u5de5\u5ee0\u767b\u8a18\u7de8\u865f" : "64006770", "\u5de5\u5ee0\u8a2d\u7acb\u8a31\u53ef\u6848\u865f" : "", "\u5de5\u5ee0\u5730\u5740" : "\u9ad8\u96c4\u5e02\u524d\u93ae\u5340\u65b0\u8859\u8def286\u4e4b1\u865f2\u6a13\u4e4b1",... | json_instruct | {"type": "object", "properties": {"\u5de5\u5ee0\u540d\u7a31": {"type": "string"}, "\u5de5\u5ee0\u767b\u8a18\u7de8\u865f": {"type": "string"}, "\u5de5\u5ee0\u8a2d\u7acb\u8a31\u53ef\u6848\u865f": {"type": "string"}, "\u5de5\u5ee0\u5730\u5740": {"type": "string"}, "\u5de5\u5ee0\u5e02\u93ae\u9109\u6751\u91cc": {"type": "st... |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"emitters": {"type": "array", "items": {"type": "object", "properties": {"description": {"type": "string"}, "position": {"type": "string"}, "orientation": {"type": "string"}, "size": {"type": "integer"}, "cove... | {"emitters" : [{"description" : "Pointlight (85)", "position" : "-1.5, 1.5, -3.3", "orientation" : "east", "size" : 1, "cover" : 0}, {"description" : "Pointlight (80)", "position" : "-4.8, 1.5, -2.2", "orientation" : "south", "size" : 1, "cover" : 0}, {"description" : "Pointlight (78)", "position" : "-4.9, 1.5, -1.0", ... | json_instruct | {"type": "object", "properties": {"emitters": {"type": "array", "items": {"type": "object", "properties": {"description": {"type": "string"}, "position": {"type": "string"}, "orientation": {"type": "string"}, "size": {"type": "integer"}, "cover": {"type": "integer"}}, "required": ["description", "position", "orientatio... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.