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": {"dist/source.js": {"type": "integer"}, "dist/source.min.js": {"type": "integer"}, "dist/source.min.js.gz": {"type": "integer"}}, "required": ["dist/source.js", "dist/source.min.js", "dist/source.min.js.gz"], "$schema": "http://... | {"dist/source.js" : 2687, "dist/source.min.js" : 305, "dist/source.min.js.gz" : 208} | json_instruct | {"type": "object", "properties": {"dist/source.js": {"type": "integer"}, "dist/source.min.js": {"type": "integer"}, "dist/source.min.js.gz": {"type": "integer"}}, "required": ["dist/source.js", "dist/source.min.js", "dist/source.min.js.gz"], "$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"}, "http": {"type": "object", "properties": {"port": {"type": "integer"}}, "required": ["port"]}}, "required": ["name", "http"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "my well-configured app", "http" : {"port" : 3000}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "http": {"type": "object", "properties": {"port": {"type": "integer"}}, "required": ["port"]}}, "required": ["name", "http"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"version": {"type": "number"}, "people": {"type": "array", "items": {"type": "object", "properties": {"pose_keypoints_2d": {"type": "array", "items": {"type": "number"}}, "face_keypoints_2d": {"type": "array", "items": {}}, "ha... | {"version" : 1.2, "people" : [{"pose_keypoints_2d" : [404.085, 307.988, 1, 424.831, 297.016, 1, 406.784, 295.042, 1, 825.065, 381.783, 0, 832.962, 397.002, 0, 444.291, 299.916, 1, 466.961, 351.28, 1, 441.552, 388.248, 1, 435.11, 376.409, 1, 397.615, 431.2, 1, 387.869, 502.099, 1, 472.855, 380.407, 1, 490.643, 446.751, ... | json_instruct | {"type": "object", "properties": {"version": {"type": "number"}, "people": {"type": "array", "items": {"type": "object", "properties": {"pose_keypoints_2d": {"type": "array", "items": {"type": "number"}}, "face_keypoints_2d": {"type": "array", "items": {}}, "hand_left_keypoints_2d": {"type": "array", "items": {}}, "han... |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "private": {"type": "boolean"}, "description": {"type": "string"}, "main": {"type": "string"}, "directories": {"type": "object", "properties": {"test": {"type": "str... | {"name" : "dv-date-calculator", "version" : "1.0.0", "private" : true, "description" : "A utility for calculating the number of days a project has run", "main" : "index.js", "directories" : {"test" : "test"}, "bin" : {"days" : "./bin/dateCalculator.js"}, "scripts" : {"test" : "./node_modules/.bin/mocha --reporter spec ... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "private": {"type": "boolean"}, "description": {"type": "string"}, "main": {"type": "string"}, "directories": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "bin": {"type": "object", "prop... |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"clients_without_service": {"type": "string"}, "outages": {"type": "string"}, "created_at": {"type": "string"}}, "required": ["clients_without_service", "outages", "created_at"], "$schema": "http://json-schema.o... | {"clients_without_service" : "3ef9890b4105efa341ec35069dbeaa79", "outages" : "ab5109bb5909b37961b32cdbf869efe6", "created_at" : "2021-12-31T06:19:48.164306"} | json_instruct | {"type": "object", "properties": {"clients_without_service": {"type": "string"}, "outages": {"type": "string"}, "created_at": {"type": "string"}}, "required": ["clients_without_service", "outages", "created_at"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"editor.formatOnSave": {"type": "boolean"}, "eslint.workingDirectories": {"type": "array", "items": {"type": "object", "properties": {"mode": {"type": "string"}}, "required": ["mode"]}}, "eslint.validate": {"type": "array", ... | {"editor.formatOnSave" : true, "eslint.workingDirectories" : [{"mode" : "auto"}], "eslint.validate" : ["javascript", "javascriptreact", "html", "typescriptreact", "json"], "editor.codeActionsOnSave" : {"source.fixAll.eslint" : true}, "typescript.updateImportsOnFileMove.enabled" : "always", "typescript.preferences.impor... | json_instruct | {"type": "object", "properties": {"editor.formatOnSave": {"type": "boolean"}, "eslint.workingDirectories": {"type": "array", "items": {"type": "object", "properties": {"mode": {"type": "string"}}, "required": ["mode"]}}, "eslint.validate": {"type": "array", "items": {"type": "string"}}, "editor.codeActionsOnSave": {"ty... |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"name": {"type": "string"}, "version-string": {"type": "string"}, "port-version": {"type": "integer"}, "homepage": {"type": "string"}, "description": {"type": "string"}, "dependencies": {"type": "array", "items": {"type": "string... | {"name" : "gcp-cpp-samples-gcs-indexer", "version-string" : "0.0.1-dev", "port-version" : 1, "homepage" : "https://github.com/GoogleCloudPlatform/cpp-samples/", "description" : "Indexing GCS Buckets with C++ and Cloud Spanner", "dependencies" : ["boost-program-options", "boost-core", "boost-serialization", "boost-asio"... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version-string": {"type": "string"}, "port-version": {"type": "integer"}, "homepage": {"type": "string"}, "description": {"type": "string"}, "dependencies": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "version-string", "port-versio... |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"website": {"type": "string"}, "published_on": {"type": "string"}, "links": {"type": "object", "properties": {"reddit": {"type": "string"}, "github": {"type": "string"}, "twitter": {"type": "string"}}, "required... | {"website" : "https://raiden.network/", "published_on" : "2017-10-18", "links" : {"reddit" : "https://www.reddit.com/r/raidennetwork/", "github" : "https://github.com/raiden-network/raiden/", "twitter" : "https://twitter.com/raiden_network"}, "overview" : {"en" : "The Raiden Network is an off-chain scaling solution, en... | json_instruct | {"type": "object", "properties": {"website": {"type": "string"}, "published_on": {"type": "string"}, "links": {"type": "object", "properties": {"reddit": {"type": "string"}, "github": {"type": "string"}, "twitter": {"type": "string"}}, "required": ["reddit", "github", "twitter"]}, "overview": {"type": "object", "proper... |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"citations": {"type": "array", "items": {"type": "object", "properties": {"textCitation": {"type": "string"}}, "required": ["textCitation"]}}, "names": {"type": "array", "items": {"type": "string"}}, "language": {"t... | {"citations" : [{"textCitation" : "[See iunss1 on Metamath](http://us.metamath.org/mpegif/iunss1.html)"}], "names" : ["iunss1"], "language" : "METAMATH_SET_MM", "lookupTerms" : ["#T_cA", "#T_wss", "#T_cB", "#T_wi", "#T_ciun--1", "#T_vx", "#T_ciun--2", "#T_cA", "#T_cC", "#T_wss", "#T_ciun--1", "#T_vx", "#T_ciun--2", "#T... | json_instruct | {"type": "object", "properties": {"citations": {"type": "array", "items": {"type": "object", "properties": {"textCitation": {"type": "string"}}, "required": ["textCitation"]}}, "names": {"type": "array", "items": {"type": "string"}}, "language": {"type": "string"}, "lookupTerms": {"type": "array", "items": {"type": "st... |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"code": {"type": "integer"}, "parent": {"type": "integer"}, "name": {"type": "string"}, "latitude": {"type": "null"}, "longitude": {"type": "null"}, "postal": {"type": "array", "items": {"type": "integer"}}, "childr... | {"code" : 1273020001, "parent" : 1273020, "name" : "AEK NAULI", "latitude" : null, "longitude" : null, "postal" : [21126], "children" : []} | json_instruct | {"type": "object", "properties": {"code": {"type": "integer"}, "parent": {"type": "integer"}, "name": {"type": "string"}, "latitude": {"type": "null"}, "longitude": {"type": "null"}, "postal": {"type": "array", "items": {"type": "integer"}}, "children": {"type": "array", "items": {}}}, "required": ["code", "parent", "n... |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"kind": {"type": "string"}, "collectionName": {"type": "string"}, "info": {"type": "object", "properties": {"singularName": {"type": "string"}, "pluralName": {"type": "string"}, "displayName": {"type": "string"}}, "required": [... | {"kind" : "collectionType", "collectionName" : "actors", "info" : {"singularName" : "actor", "pluralName" : "actors", "displayName" : "Actor"}, "options" : {"draftAndPublish" : true}, "pluginOptions" : {}, "attributes" : {"first_name" : {"type" : "string"}, "last_name" : {"type" : "string"}, "movies" : {"type" : "relat... | json_instruct | {"type": "object", "properties": {"kind": {"type": "string"}, "collectionName": {"type": "string"}, "info": {"type": "object", "properties": {"singularName": {"type": "string"}, "pluralName": {"type": "string"}, "displayName": {"type": "string"}}, "required": ["singularName", "pluralName", "displayName"]}, "options": {... |
Create an example JSON object that satisfies this schema:
{"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" : "\u88d5\u8c50\u4f01\u696d\u793e", "\u5de5\u5ee0\u767b\u8a18\u7de8\u865f" : "99621994", "\u5de5\u5ee0\u8a2d\u7acb\u8a31\u53ef\u6848\u865f" : "07510003120484", "\u5de5\u5ee0\u5730\u5740" : "\u6843\u5712\u5e02\u4e2d\u58e2\u5340\u6210\u529f\u91cc\u5927\u83ef\u8def\u4e00\u56db\u865f\u4e00\u6a13... | 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": {"Department": {"type": "string"}, "Region": {"type": "string"}, "Position": {"type": "string"}, "Name": {"type": "string"}, "\u0414\u0435\u043a\u043b\u0430\u0440\u0430\u0446\u0456\u0457 2013": {"type": "string... | {"Department" : "\u0416\u0438\u0442\u043e\u043c\u0438\u0440\u0441\u044c\u043a\u0430 \u043c\u0456\u0441\u0446\u0435\u0432\u0430 \u043f\u0440\u043e\u043a\u0443\u0440\u0430\u0442\u0443\u0440\u0430", "Region" : "\u0416\u0438\u0442\u043e\u043c\u0438\u0440\u0441\u044c\u043a\u0430 \u043e\u0431\u043b\u0430\u0441\u0442\u044c", ... | json_instruct | {"type": "object", "properties": {"Department": {"type": "string"}, "Region": {"type": "string"}, "Position": {"type": "string"}, "Name": {"type": "string"}, "\u0414\u0435\u043a\u043b\u0430\u0440\u0430\u0446\u0456\u0457 2013": {"type": "string"}, "\u0414\u0435\u043a\u043b\u0430\u0440\u0430\u0446\u0456\u0457 2014": {"ty... |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "array", "items": {"type": "object", "properties": {"__symbolic": {"type": "string"}, "version": {"type": "integer"}, "metadata": {"type": "object", "properties": {}, "required": []}, "exports": {"type": "array", "items": {"type": "object",... | [{"__symbolic" : "module", "version" : 3, "metadata" : {}, "exports" : [{"from" : "./tabbed-line-chart-group/tabbed-line-chart-group.component"}, {"from" : "./line-chart.component"}, {"from" : "./line-chart.module"}]}, {"__symbolic" : "module", "version" : 1, "metadata" : {}, "exports" : [{"from" : "./tabbed-line-chart... | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"__symbolic": {"type": "string"}, "version": {"type": "integer"}, "metadata": {"type": "object", "properties": {}, "required": []}, "exports": {"type": "array", "items": {"type": "object", "properties": {"from": {"type": "string"}}, "required": ["from"]}}}, "... |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"parserOptions": {"type": "object", "properties": {"sourceType": {"type": "string"}, "ecmaVersion": {"type": "integer"}, "experimentalObjectRestSpread": {"type": "boolean"}}, "required": ["sourceType", "ecmaVersion",... | {"parserOptions" : {"sourceType" : "module", "ecmaVersion" : 2019, "experimentalObjectRestSpread" : true}, "extends" : ["eslint:recommended", "plugin:prettier/recommended"], "env" : {"es6" : true, "node" : true, "jest" : true}, "rules" : {"eqeqeq" : 2, "no-alert" : 2, "no-caller" : 2, "no-eval" : 2, "no-extend-native" ... | json_instruct | {"type": "object", "properties": {"parserOptions": {"type": "object", "properties": {"sourceType": {"type": "string"}, "ecmaVersion": {"type": "integer"}, "experimentalObjectRestSpread": {"type": "boolean"}}, "required": ["sourceType", "ecmaVersion", "experimentalObjectRestSpread"]}, "extends": {"type": "array", "items... |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"title": {"type": "string"}, "source": {"type": "string"}, "time": {"type": "string"}, "content": {"type": "string"}}, "required": ["title", "source", "time", "content"], "$schema": "http://json-schema.org/draft-07... | {"title" : "\u8428\u5229\u5df4\uff1a\u9057\u61be\u4e0d\u80fd\u51fa\u6218\u6cd5\u56fd\u676f\u51b3\u8d5b\uff0c\u6700\u5f00\u59cb\u5c31\u8ff7\u604b\u963f\u68ee\u7eb3", "source" : "Goal.com", "time" : "2020-07-24 08:14:28", "content" : "\u864e\u62517\u670824\u65e5\u8baf\u00a0\u8fd1\u65e5\uff0c\u672c\u8d5b\u5b63\u88ab\u963f... | json_instruct | {"type": "object", "properties": {"title": {"type": "string"}, "source": {"type": "string"}, "time": {"type": "string"}, "content": {"type": "string"}}, "required": ["title", "source", "time", "content"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"body": {"type": "string"}, "attachments": {"type": "array", "items": {}}, "created_by_name": {"type": "string"}, "created_at": {"type": "string"}, "created_by": {"type": "string"}, "parent_id": {"type": "string"}, "... | {"body" : "Lars O. Grobe wrote:\n>> Because unless the campatability link is installed, a large number of\n>> existing scenes won't render, and none of the docs will tell you why. \n>> Can you imagine something more frustrating to a new user?\n> \n> But that is what I am wondering. The new user does not have existing\n... | json_instruct | {"type": "object", "properties": {"body": {"type": "string"}, "attachments": {"type": "array", "items": {}}, "created_by_name": {"type": "string"}, "created_at": {"type": "string"}, "created_by": {"type": "string"}, "parent_id": {"type": "string"}, "id": {"type": "string"}}, "required": ["body", "attachments", "created... |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"client_id": {"type": "integer"}, "experiment_id": {"type": "string"}, "ports": {"type": "object", "properties": {"video": {"type": "integer"}, "result": {"type": "integer"}, "control": {"type": "integer"}}, "... | {"client_id" : 8, "experiment_id" : "LEGOHead_15Client100Benchmark", "ports" : {"video" : 60024, "result" : 60025, "control" : 60026}, "run_results" : {"init" : 1527852529173.818, "end" : 1527852595628.818, "timestamp_error" : 12736.773891517287, "success" : true, "ntp_offset" : -44499.181818181816, "frames" : [{"frame... | json_instruct | {"type": "object", "properties": {"client_id": {"type": "integer"}, "experiment_id": {"type": "string"}, "ports": {"type": "object", "properties": {"video": {"type": "integer"}, "result": {"type": "integer"}, "control": {"type": "integer"}}, "required": ["video", "result", "control"]}, "run_results": {"type": "object",... |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"Time": {"type": "string"}, "Temp": {"type": "number"}, "RelHum": {"type": "integer"}, "WindSpeed": {"type": "number"}, "WindDir": {"type": "integer"}}, "required": ["Time", "Temp", "RelHum", "WindSpeed", "WindDir"], "$schema":... | {"Time" : "2020-10-27T03:00:00Z", "Temp" : 21.5, "RelHum" : 13, "WindSpeed" : 10.7, "WindDir" : 98} | json_instruct | {"type": "object", "properties": {"Time": {"type": "string"}, "Temp": {"type": "number"}, "RelHum": {"type": "integer"}, "WindSpeed": {"type": "number"}, "WindDir": {"type": "integer"}}, "required": ["Time", "Temp", "RelHum", "WindSpeed", "WindDir"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"code": {"type": "string"}, "lang": {"type": "string"}, "description": {"type": "null"}, "name": {"type": "string"}, "type": {"type": "string"}}, "required": ["code", "lang", "description", "name", "type"], "$sc... | {"code" : "ALT112", "lang" : "en", "description" : null, "name" : "Age groups (under 1- 95 years and over)", "type" : "Merkmal"} | json_instruct | {"type": "object", "properties": {"code": {"type": "string"}, "lang": {"type": "string"}, "description": {"type": "null"}, "name": {"type": "string"}, "type": {"type": "string"}}, "required": ["code", "lang", "description", "name", "type"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"topic": {"type": "string"}, "category": {"type": "string"}, "attachments": {"type": "array", "items": {}}, "created_by_name": {"type": "string"}, "created_at": {"type": "string"}, "body": {"type": "string"}, "id": {"type": "st... | {"topic" : "Antimatter and windows", "category" : "radiance-general", "attachments" : [], "created_by_name" : "Zack Rogers", "created_at" : "September 09, 2009 at 04:08PM", "body" : "\n___\n<sup>Automatically generated content from [radiance mailing-list](https://radiance-online.org/pipermail/radiance-general/2009-Sept... | json_instruct | {"type": "object", "properties": {"topic": {"type": "string"}, "category": {"type": "string"}, "attachments": {"type": "array", "items": {}}, "created_by_name": {"type": "string"}, "created_at": {"type": "string"}, "body": {"type": "string"}, "id": {"type": "string"}, "created_by": {"type": "string"}}, "required": ["to... |
Generate a valid JSON object that conforms to the following 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":... | {"id" : 404372267, "type" : "Feature", "properties" : {"src:alt_label" : "quattroshapes_pg", "src:geom" : "quattroshapes_pg", "wof:geomhash" : "3693bbb02034baa9c34d4839f7c37783", "wof:id" : 404372267, "wof:repo" : "whosonfirst-data-admin-fr"}, "bbox" : [3.13944, 45.94722, 3.13944, 45.94722], "geometry" : {"coordinates"... | json_instruct | {"type": "object", "properties": {"id": {"type": "integer"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"src:alt_label": {"type": "string"}, "src:geom": {"type": "string"}, "wof:geomhash": {"type": "string"}, "wof:id": {"type": "integer"}, "wof:repo": {"type": "string"}}, "required": ["... |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"collectionName": {"type": "string"}, "info": {"type": "object", "properties": {"displayName": {"type": "string"}, "icon": {"type": "string"}, "description": {"type": "string"}}, "required": ["displayName", "icon", ... | {"collectionName" : "components_widget_quick_links", "info" : {"displayName" : "QuickLinks", "icon" : "link", "description" : ""}, "options" : {}, "attributes" : {"bgColor" : {"type" : "string"}, "bgPadding" : {"type" : "string"}, "title" : {"type" : "string"}, "itemPadding" : {"type" : "string"}, "itemStyle" : {"type"... | json_instruct | {"type": "object", "properties": {"collectionName": {"type": "string"}, "info": {"type": "object", "properties": {"displayName": {"type": "string"}, "icon": {"type": "string"}, "description": {"type": "string"}}, "required": ["displayName", "icon", "description"]}, "options": {"type": "object", "properties": {}, "requi... |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"manufacturerId": {"type": "integer"}, "name": {"type": "string"}, "addressline1": {"type": "string"}, "addressline2": {"type": "string"}, "city": {"type": "string"}, "state": {"type": "string"}, "zip": {"type": "s... | {"manufacturerId" : 19985678, "name" : "Happy End Searching", "addressline1" : "5 81st Street", "addressline2" : "Suite 100", "city" : "Mountain View", "state" : "CA", "zip" : "94043", "phone" : "650-555-0102", "fax" : "408-555-0103", "email" : "happysearching@example.com", "rep" : "John Snow"} | json_instruct | {"type": "object", "properties": {"manufacturerId": {"type": "integer"}, "name": {"type": "string"}, "addressline1": {"type": "string"}, "addressline2": {"type": "string"}, "city": {"type": "string"}, "state": {"type": "string"}, "zip": {"type": "string"}, "phone": {"type": "string"}, "fax": {"type": "string"}, "email"... |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"extends": {"type": "array", "items": {"type": "string"}}}, "required": ["extends"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"extends" : ["github>financial-times/renovate-config-next"]} | json_instruct | {"type": "object", "properties": {"extends": {"type": "array", "items": {"type": "string"}}}, "required": ["extends"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"$schema": {"type": "string"}, "definitions": {"type": "object", "properties": {"tenant": {"type": "object", "properties": {"type": {"type": "string"}, "description": {"type": "string"}}, "required": ["type", "description"]}}, ... | {"$schema" : "http://json-schema.org/draft-04/schema#", "definitions" : {"tenant" : {"type" : "string", "description" : "shortcode of a tenant"}}, "type" : "array", "items" : {"$ref" : "#/definitions/tenant"}} | json_instruct | {"type": "object", "properties": {"$schema": {"type": "string"}, "definitions": {"type": "object", "properties": {"tenant": {"type": "object", "properties": {"type": {"type": "string"}, "description": {"type": "string"}}, "required": ["type", "description"]}}, "required": ["tenant"]}, "type": {"type": "string"}, "items... |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"id": {"type": "integer"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"src:alt_label": {"type": "string"}, "src:geom": {"type": "string"}, "wof:geomhash": {"type": "string"}, "wof:id": {"type... | {"id" : 85772681, "type" : "Feature", "properties" : {"src:alt_label" : "quattroshapes_pg", "src:geom" : "quattroshapes_pg", "wof:geomhash" : "0eb1065fa93b7cdeed0c9e63d08411ca", "wof:id" : 85772681, "wof:repo" : "whosonfirst-data-admin-za"}, "bbox" : [18.46635, -34.00824, 18.46635, -34.00824], "geometry" : {"coordinate... | json_instruct | {"type": "object", "properties": {"id": {"type": "integer"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"src:alt_label": {"type": "string"}, "src:geom": {"type": "string"}, "wof:geomhash": {"type": "string"}, "wof:id": {"type": "integer"}, "wof:repo": {"type": "string"}}, "required": ["... |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"id": {"type": "string"}}, "required": ["id"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "87ec7d9c6bbd924dc99731e5907f635c40edf357"} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}}, "required": ["id"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"ember-data.model-fragments.js": {"type": "string"}, "ember-data.model-fragments.min.js": {"type": "string"}, "ember-data.model-fragments.prod.js": {"type": "string"}, "ember-data.model-fragments.prod.min.js": {"type": "string"... | {"ember-data.model-fragments.js" : "sha512-pBagMEnrJV5+70xVDci6wvBVB+iMgQ0QDh4Z/SwXD/TKif7c0orHbsH1BlB82AaXJgkekhrRGTy3bTW/M/0mvw==", "ember-data.model-fragments.min.js" : "sha512-guPh/ueGsa+/lHiZMJ7an1/z2UzxBB3Hh4gDnWn3H9RrjJzcBgTdjQhdtpieEQih2j495w9VrIi3sh2bf/w+7Q==", "ember-data.model-fragments.prod.js" : "sha512-X3... | json_instruct | {"type": "object", "properties": {"ember-data.model-fragments.js": {"type": "string"}, "ember-data.model-fragments.min.js": {"type": "string"}, "ember-data.model-fragments.prod.js": {"type": "string"}, "ember-data.model-fragments.prod.min.js": {"type": "string"}}, "required": ["ember-data.model-fragments.js", "ember-da... |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"name": {"type": "string"}, "id": {"type": "string"}, "address": {"type": "string"}, "school_type": {"type": "string"}, "legal_status": {"type": "integer"}, "fax": {"type": "string"}, "phone": {"type": "string"}, "p... | {"name" : "Grundschule Am Schlo\u00df", "id" : "SH-0702942", "address" : "Schulstra\u00dfe 4, 22926 Ahrensburg", "school_type" : "Grundschule", "legal_status" : 1, "fax" : "04102 - 471418", "phone" : "04102 - 471417", "provider" : "Stadt Ahrensburg", "headmaster" : "Herr Lehmann", "state" : "SH", "programs" : {"program... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "id": {"type": "string"}, "address": {"type": "string"}, "school_type": {"type": "string"}, "legal_status": {"type": "integer"}, "fax": {"type": "string"}, "phone": {"type": "string"}, "provider": {"type": "string"}, "headmaster": {"type": "string"}, "state"... |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "repository": {"type": "object", "properties": {"type": {"type": "string"},... | {"name" : "wiegand-daemon", "version" : "1.0.6", "description" : "Local network daemon to connect Wiegand access controller and remote server. \u5fae\u8015\u95e8\u7981\u63a7\u5236\u677f\u5c40\u57df\u7f51\u5b88\u62a4\u8fdb\u7a0b\uff0c\u7528\u4e8e\u4e0e\u8fdc\u7aef\u670d\u52a1\u5668\u901a\u8baf", "keywords" : ["wiegand",... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}... |
Create an example JSON object that satisfies this schema:
{"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": {"error... | {"contract" : "0x3fd2371b53f2db38765220c90f2ffd4ddbe8afd1", "tool" : "honeybadger", "start" : 1565856826.858525, "end" : 1565856938.7771804, "duration" : 111.91865539550781, "analysis" : [{"errors" : [], "file" : "/unique_chucks/10/0x3fd2371b53f2db38765220c90f2ffd4ddbe8afd1.sol", "name" : "Contactable"}, {"errors" : []... | 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... |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"VersionId": {"type": "string"}, "IsDefaultVersion": {"type": "boolean"}, "CreateDate": {"type": "string"}, "PolicyName": {"type": "string"}}, "required": ["VersionId", "IsDefaultVersion", "CreateDate", "PolicyName"], "$schema"... | {"VersionId" : "v1", "IsDefaultVersion" : false, "CreateDate" : "2019-01-23T19:07:10+00:00", "PolicyName" : "AmazonWorkLinkReadOnly"} | json_instruct | {"type": "object", "properties": {"VersionId": {"type": "string"}, "IsDefaultVersion": {"type": "boolean"}, "CreateDate": {"type": "string"}, "PolicyName": {"type": "string"}}, "required": ["VersionId", "IsDefaultVersion", "CreateDate", "PolicyName"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"versionEnd": {"type": "object", "properties": {"versionNum": {"type": "integer"}, "commit": {"type": "string"}, "date": {"type": "string"}}, "required": ["versionNum", "commit", "date"]}, "versionStart": {"type": "object", "prop... | {"versionEnd" : {"versionNum" : 3113, "commit" : "2e626a2b705108b1920b55b5f18a9139e96cd0c1", "date" : "2021-07-29T15:08:37.332Z"}, "versionStart" : {"versionNum" : 3112, "commit" : "fb14da75eb3c54f4f7c36cebfe7a0c116d9db35d", "date" : "2021-07-29T15:07:07.845Z"}, "changes" : ["blockchains/smartchain/allowlist.json", "bl... | json_instruct | {"type": "object", "properties": {"versionEnd": {"type": "object", "properties": {"versionNum": {"type": "integer"}, "commit": {"type": "string"}, "date": {"type": "string"}}, "required": ["versionNum", "commit", "date"]}, "versionStart": {"type": "object", "properties": {"versionNum": {"type": "integer"}, "commit": {"... |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"player_id": {"type": "integer"}, "name": {"type": "string"}, "position": {"type": "string"}, "height": {"type": "string"}, "weight": {"type": "string"}, "current_team": {"type": "null"}, "birth_date": {"type": "string"}, "birt... | {"player_id" : 3129, "name" : "Chuck Bullough", "position" : "LB", "height" : "6-1", "weight" : "238", "current_team" : null, "birth_date" : "1969-03-03", "birth_place" : "East Lansing, MI", "death_date" : null, "college" : "Michigan St.", "high_school" : "Orchard Park, NY", "draft_team" : "Philadelphia Eagles", "draft... | json_instruct | {"type": "object", "properties": {"player_id": {"type": "integer"}, "name": {"type": "string"}, "position": {"type": "string"}, "height": {"type": "string"}, "weight": {"type": "string"}, "current_team": {"type": "null"}, "birth_date": {"type": "string"}, "birth_place": {"type": "string"}, "death_date": {"type": "null"... |
Create an example JSON object that satisfies this schema:
{"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "frequency": {"type": "integer"}, "gender": {"type": "string"}}, "required": ["name", "frequency", "gender"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"name" : "SIN\u00c9ADIN", "frequency" : 1, "gender" : "female"}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "frequency": {"type": "integer"}, "gender": {"type": "string"}}, "required": ["name", "frequency", "gender"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"source": {"type": "string"}, "word": {"type": "string"}, "infinitivo": {"type": "string"}, "participio": {"type": "array", "items": {"type": "string"}}, "gerundio": {"type": "array", "items": {"type": "string"}}, "t... | {"source" : "http://lema.rae.es/drae/srv/search?val=sustanciar", "word" : "sustanciar", "infinitivo" : "sustanciar", "participio" : ["sustanciado"], "gerundio" : ["sustanciando"], "tenses" : {"3" : [["sustancio"], ["sustancias", "sustanci\u00e1s"], ["sustancia"], ["sustanciamos"], ["sustanci\u00e1is", "sustancian"], ["... | json_instruct | {"type": "object", "properties": {"source": {"type": "string"}, "word": {"type": "string"}, "infinitivo": {"type": "string"}, "participio": {"type": "array", "items": {"type": "string"}}, "gerundio": {"type": "array", "items": {"type": "string"}}, "tenses": {"type": "object", "properties": {"3": {"type": "array", "item... |
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"}, "repository": {"type": "string"}, "author": {"type": "string"}, "license": {"type": "st... | {"name" : "power-prompt", "version" : "0.1.5", "description" : "A userscript that super charges your web selection!", "main" : "dist/index.js", "repository" : "https://github.com/tinyws/power-prompt.git", "author" : "Dizy <dev@dizy.cc>", "license" : "MIT", "private" : false, "files" : ["dist", "!*.js.map"], "scripts" :... | 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"}, "private": {"type": "boolean"}, "files": {"type": "array", "items": {... |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"stationId": {"type": "integer"}, "stationGroupId": {"type": "integer"}, "name": {"type": "string"}, "lineId": {"type": "integer"}, "zipCode": {"type": "string"}, "pref": {"type": "string"}, "city": {"type": "... | {"stationId" : 1192328, "stationGroupId" : 1192328, "name" : "\u8c4a\u5f8c\u6e05\u5ddd", "lineId" : 11923, "zipCode" : "879-6902", "pref" : "\u5927\u5206\u770c", "city" : "\u8c4a\u5f8c\u5927\u91ce\u5e02", "town" : "\u6e05\u5ddd\u753a\u96e8\u5824", "longitude" : 131.523558, "latitude" : 32.972974, "status" : 0} | json_instruct | {"type": "object", "properties": {"stationId": {"type": "integer"}, "stationGroupId": {"type": "integer"}, "name": {"type": "string"}, "lineId": {"type": "integer"}, "zipCode": {"type": "string"}, "pref": {"type": "string"}, "city": {"type": "string"}, "town": {"type": "string"}, "longitude": {"type": "number"}, "latit... |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"index": {"type": "integer"}, "hash": {"type": "integer"}, "artDyeHash": {"type": "integer"}, "redacted": {"type": "boolean"}, "dyeManifestHash": {"type": "integer"}, "blacklisted": {"type": "boolean"}}, "required": ["index", "ha... | {"index" : 3673, "hash" : 2103127211, "artDyeHash" : 2103127211, "redacted" : false, "dyeManifestHash" : 3483500203, "blacklisted" : false} | json_instruct | {"type": "object", "properties": {"index": {"type": "integer"}, "hash": {"type": "integer"}, "artDyeHash": {"type": "integer"}, "redacted": {"type": "boolean"}, "dyeManifestHash": {"type": "integer"}, "blacklisted": {"type": "boolean"}}, "required": ["index", "hash", "artDyeHash", "redacted", "dyeManifestHash", "blackl... |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"runtimeOptions": {"type": "object", "properties": {"additionalProbingPaths": {"type": "array", "items": {"type": "string"}}}, "required": ["additionalProbingPaths"]}}, "required": ["runtimeOptions"], "$schema":... | {"runtimeOptions" : {"additionalProbingPaths" : ["/home/tim/.dotnet/store/|arch|/|tfm|", "/home/tim/.nuget/packages", "/usr/share/dotnet/sdk/NuGetFallbackFolder"]}} | json_instruct | {"type": "object", "properties": {"runtimeOptions": {"type": "object", "properties": {"additionalProbingPaths": {"type": "array", "items": {"type": "string"}}}, "required": ["additionalProbingPaths"]}}, "required": ["runtimeOptions"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "repository": {"type": "string"}, "version": {"type": "string"}, "main": {"type": "string"}, "license": {"type": "string"}, "scripts": {"type": "object",... | {"name" : "test-demo", "description" : "", "repository" : "", "version" : "1.0.0", "main" : "index.js", "license" : "MIT", "scripts" : {"start-leaf-device-dps" : "node start-leaf-device-dps.js", "start-iotedge-downstream-device" : "node start-iotedge-downstream-device.js", "start-dev" : "nodemon index.js"}, "dependenci... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "repository": {"type": "string"}, "version": {"type": "string"}, "main": {"type": "string"}, "license": {"type": "string"}, "scripts": {"type": "object", "properties": {"start-leaf-device-dps": {"type": "string"}, "start-io... |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"AB": {"type": "array", "items": {"type": "string"}}, "AW": {"type": "array", "items": {"type": "string"}}, "SZ": {"type": "string"}, "C": {"type": "string"}, "SOL": {"type": "array", "items": {"type": "array", "ite... | {"AB" : ["qa", "qb", "qc", "pc", "od", "nd", "mc", "lc", "lb", "la", "nb"], "AW" : ["ra", "rb", "rc", "ma", "ka", "kb", "kc", "kd", "ld", "md", "ne", "oe", "pd", "qd"], "SZ" : "19", "C" : "White to play", "SOL" : [["W", "ob", "", ""]]} | json_instruct | {"type": "object", "properties": {"AB": {"type": "array", "items": {"type": "string"}}, "AW": {"type": "array", "items": {"type": "string"}}, "SZ": {"type": "string"}, "C": {"type": "string"}, "SOL": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}}, "required": ["AB", "AW", "SZ", "C", "SOL"],... |
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"}, "year": {"type": "string"}, "departments": {"type": "array... | {"title" : "Fractional Langevin Monte Carlo: Exploring Levy Driven Stochastic Differential Equations for Markov Chain Monte Carlo.", "fields" : ["monte carlo molecular modeling", "dynamic monte carlo method", "monte carlo method in statistical physics", "markov chain mixing time", "hybrid monte carlo"], "abstract" : "A... | json_instruct | {"type": "object", "properties": {"title": {"type": "string"}, "fields": {"type": "array", "items": {"type": "string"}}, "abstract": {"type": "string"}, "citation": {"type": "string"}, "year": {"type": "string"}, "departments": {"type": "array", "items": {"type": "string"}}, "conf": {"type": "string"}, "authors": {"typ... |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"pl__title": {"type": "string"}, "en__title": {"type": "string"}, "de__title": {"type": "string"}, "xx__background": {"type": "string"}, "pl__description": {"type": "string"}, "en__description": {"type": "string"}, "de__desc... | {"pl__title" : "Dermatochirurgia", "en__title" : "Dermatochirurgia", "de__title" : "Dermatochirurgia", "xx__background" : "/images/uploads/adobestock_232552089.jpeg", "pl__description" : "", "en__description" : "", "de__description" : ""} | json_instruct | {"type": "object", "properties": {"pl__title": {"type": "string"}, "en__title": {"type": "string"}, "de__title": {"type": "string"}, "xx__background": {"type": "string"}, "pl__description": {"type": "string"}, "en__description": {"type": "string"}, "de__description": {"type": "string"}}, "required": ["pl__title", "en__... |
The schema below describes a JSON structure. Generate a valid example:
{"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "frequency": {"type": "integer"}, "gender": {"type": "string"}}, "required": ["name", "frequency", "gender"]}, "$schema": "http://json-schema.org/draft-07/sche... | [{"name" : "FLORIN-NISTOR", "frequency" : 1, "gender" : "male"}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "frequency": {"type": "integer"}, "gender": {"type": "string"}}, "required": ["name", "frequency", "gender"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"/js/app.js": {"type": "string"}}, "required": ["/js/app.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"/js/app.js" : "/js/app.js?id=5bc5cfd79f30fe3dfc4c"} | json_instruct | {"type": "object", "properties": {"/js/app.js": {"type": "string"}}, "required": ["/js/app.js"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"airis kira n9010": {"type": "object", "properties": {"deviceName": {"type": "string"}, "marketingName": {"type": "string"}, "manufacturer": {"type": "string"}, "brand": {"type": "string"}, "display": {"type": "object", "pro... | {"airis kira n9010" : {"deviceName" : "KIRA N9010", "marketingName" : "KIRA N9010", "manufacturer" : "airis", "brand" : "airis", "display" : {"width" : 800, "height" : 480, "touch" : false, "size" : 9}, "type" : "laptop", "platform" : "android"}} | json_instruct | {"type": "object", "properties": {"airis kira n9010": {"type": "object", "properties": {"deviceName": {"type": "string"}, "marketingName": {"type": "string"}, "manufacturer": {"type": "string"}, "brand": {"type": "string"}, "display": {"type": "object", "properties": {"width": {"type": "integer"}, "height": {"type": "i... |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"h": {"type": "array", "items": {"type": "object", "properties": {"d": {"type": "array", "items": {"type": "object", "properties": {"e": {"type": "array", "items": {"type": "string"}}, "f": {"type": "string"}}, "re... | {"h" : [{"d" : [{"e" : ["\ufff9`Maco'af~ `ko~ `wawa~ `a~ `komaen~ `to~ `holo~.\ufffa\ufffb\u5b69\u5b50\u5403\u98ef\u6642\u564e\u4f4f\u4e86\u611f\u5230\u5835\u3002", "\ufff9`Maco'af~ `no~ `kohaw~ `kako~, `fafahasa~ `kako~.\ufffa\ufffb\u6211\u559d\u6e6f\u88ab\u55c6\u5230\uff0c\u4e00\u76f4\u54b3\u55fd\u3002"], "f" : "(\u8... | json_instruct | {"type": "object", "properties": {"h": {"type": "array", "items": {"type": "object", "properties": {"d": {"type": "array", "items": {"type": "object", "properties": {"e": {"type": "array", "items": {"type": "string"}}, "f": {"type": "string"}}, "required": ["e", "f"]}}}, "required": ["d"]}}, "stem": {"type": "string"},... |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"version": {"type": "string"}, "salt": {"type": "string"}, "pass_hash": {"type": "string"}, "keys": {"type": "array", "items": {"type": "object", "properties": {"key": {"type": "string"}, "iv": {"type": "string"}},... | {"version" : "5.0", "salt" : "35U2Bkavb7s9tx1uiFym4oHMufr6", "pass_hash" : "jqS7bny1Zx2xBSNvuzxR9oEdDLGvTBCVb4xPsWjRkhS32FEwd", "keys" : [{"key" : "4VeLbSytCaFQfkWfJ4aWgT27J8eAg8SdEMkqVX1pgxLQFReHuMS1SGd6RTQdLv452b5woXLxPaPijybvA8rBUjhtF4oGRDzEcq167NsjUaZYNv2WyYHaL9QhCeRQwJYeksQkkqYGY832Jfmk1hPK7P8z7z3mHtK6z8CTPnCnz4mZ... | json_instruct | {"type": "object", "properties": {"version": {"type": "string"}, "salt": {"type": "string"}, "pass_hash": {"type": "string"}, "keys": {"type": "array", "items": {"type": "object", "properties": {"key": {"type": "string"}, "iv": {"type": "string"}}, "required": ["key", "iv"]}}}, "required": ["version", "salt", "pass_has... |
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"}, "scripts": {"type": "object", "properties": {"build": {"type": "string"}, "start": {"type": "... | {"name" : "react-responsive-see-more", "version" : "1.0.1", "description" : "this package will recieve a list (array) of components and show them responcively in your wrapper", "main" : "dist/index.js", "scripts" : {"build" : "rollup -c", "start" : "rollup -c -w"}, "repository" : {"type" : "git", "url" : "git+https://g... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"build": {"type": "string"}, "start": {"type": "string"}}, "required": ["build", "start"]}, "repository": {"type": "obj... |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"name": {"type": "string"}, "namespace": {"type": "string"}, "description": {"type": "string"}, "versions": {"type": "array", "items": {"type": "object", "properties": {"1.0.0": {"type": "string"}}, "required"... | {"name" : "Mass Delete", "namespace" : "Stanford\\MassDelete", "description" : "A module for deleting a large number of records - be careful!!!", "versions" : [{"1.0.0" : "Initial Development Version"}], "framework-version" : 6, "authors" : [{"name" : "Andy Martin", "email" : "andy123@stanford.edu", "institution" : "St... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "namespace": {"type": "string"}, "description": {"type": "string"}, "versions": {"type": "array", "items": {"type": "object", "properties": {"1.0.0": {"type": "string"}}, "required": ["1.0.0"]}}, "framework-version": {"type": "integer"}, "authors": {"type": ... |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"P26698": {"type": "string"}, "PIGM_RHOST": {"type": "string"}, "Pigment production hydroxylase": {"type": "string"}}, "required": ["P26698", "PIGM_RHOST", "Pigment production hydroxylase"], "$schema": "http://json-schema.org/dra... | {"P26698" : "P26698", "PIGM_RHOST" : "P26698", "Pigment production hydroxylase" : "P26698"} | json_instruct | {"type": "object", "properties": {"P26698": {"type": "string"}, "PIGM_RHOST": {"type": "string"}, "Pigment production hydroxylase": {"type": "string"}}, "required": ["P26698", "PIGM_RHOST", "Pigment production hydroxylase"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "cordova": {"type": "object", "properties": {"id": {"type": "string"}, "platforms": {"type": "array", "items": {"type": "... | {"name" : "cordova-plugin-hide-webview-popover", "version" : "0.1.0", "description" : "Cordova StatusBar Plugin", "cordova" : {"id" : "cordova-plugin-hide-webview-popove", "platforms" : ["ios"]}, "repository" : {"type" : "git", "url" : "https://github.com/BowlingX/cordova-hide-webview-popover.git"}, "engines" : [{"name... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "cordova": {"type": "object", "properties": {"id": {"type": "string"}, "platforms": {"type": "array", "items": {"type": "string"}}}, "required": ["id", "platforms"]}, "repository": {"type": "o... |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"name": {"type": "string"}, "homepage": {"type": "string"}, "authors": {"type": "array", "items": {"type": "string"}}, "description": {"type": "string"}, "main": {"type": "string"}, "moduleType": {"type": "array", "items": {}},... | {"name" : "ArticlesTranslation", "homepage" : "https://github.com/saleh199/ArticlesTranslation", "authors" : ["Saleh Saeed <saleh.saiid@gmail.com>"], "description" : "", "main" : "", "moduleType" : [], "license" : "MIT", "private" : true, "ignore" : ["**/.*", "node_modules", "bower_components", "test", "tests"], "depen... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "homepage": {"type": "string"}, "authors": {"type": "array", "items": {"type": "string"}}, "description": {"type": "string"}, "main": {"type": "string"}, "moduleType": {"type": "array", "items": {}}, "license": {"type": "string"}, "private": {"type": "boolea... |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"event": {"type": "object", "properties": {"requestContext": {"type": "object", "properties": {"domainName": {"type": "string"}, "connectionId": {"type": "string"}}, "required": ["domainName", "connectionId"]}}, "required": ["r... | {"event" : {"requestContext" : {"domainName" : "localhost", "connectionId" : "123456"}}, "context" : {}} | json_instruct | {"type": "object", "properties": {"event": {"type": "object", "properties": {"requestContext": {"type": "object", "properties": {"domainName": {"type": "string"}, "connectionId": {"type": "string"}}, "required": ["domainName", "connectionId"]}}, "required": ["requestContext"]}, "context": {"type": "object", "properties... |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"name": {"type": "string"}, "title": {"type": "string"}, "version": {"type": "string"}, "main": {"type": "string"}, "private": {"type": "boolean"}, "files": {"type": "array", "items": {"type": "string"}}, "keywords": {"type": "... | {"name" : "@azuread/msal-react-native-android-poc", "title" : "MSALModule", "version" : "1.0.6", "main" : "index.js", "private" : true, "files" : ["README.md", "android", "index.js"], "keywords" : ["react-native"], "repository" : {"type" : "git", "url" : "https://github.com/AzureAD/microsoft-authentication-library-for-... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "title": {"type": "string"}, "version": {"type": "string"}, "main": {"type": "string"}, "private": {"type": "boolean"}, "files": {"type": "array", "items": {"type": "string"}}, "keywords": {"type": "array", "items": {"type": "string"}}, "repository": {"type"... |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"type": {"type": "string"}, "features": {"type": "array", "items": {"type": "object", "properties": {"geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "... | {"type" : "FeatureCollection", "features" : [{"geometry" : {"type" : "Polygon", "coordinates" : [[[-97.718124, 31.105106], [-97.713661, 31.109941], [-97.711983, 31.11421], [-97.671644, 31.101131], [-97.671244, 31.100365], [-97.674307, 31.092646], [-97.673347, 31.087574], [-97.67514, 31.082811], [-97.676773, 31.081455],... | 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": {"t": {"type": "string"}, "h": {"type": "array", "items": {"type": "object", "properties": {"d": {"type": "array", "items": {"type": "object", "properties": {"f": {"type": "string"}, "e": {"type": "array", "items": {"t... | {"t" : "tapila'", "h" : [{"d" : [{"f" : "\u7c6e\u7b50\uff0c\u5c0f\u85e4\u7c69\u3002", "e" : ["\ufff9`O~ `ta~`pi~`la~`'~ `ko~ `pi~`palo~`a~`n~ `to~ `hakhak~.\ufffa\ufffb\u7cef\u7c73\u98ef\u653e\u5728\u85e4\u7b50\u5167\u3002"]}]}]} | 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"]}}}, "... |
Based on the schema below, produce a valid JSON object:
{"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "nama": {"type": "string"}}, "required": ["id", "nama"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"id" : "3521160001", "nama" : "TAMBAK BOYO"}, {"id" : "3521160002", "nama" : "PAKAH"}, {"id" : "3521160003", "nama" : "KEDUNGHARJO"}, {"id" : "3521160004", "nama" : "MANTINGAN"}, {"id" : "3521160005", "nama" : "SAMBIREJO"}, {"id" : "3521160006", "nama" : "PENGKOL"}, {"id" : "3521160007", "nama" : "JATIMULYO"}] | 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": {"issuer_ca_id": {"type": "integer"}, "issuer_name": {"type": "string"}, "name_value": {"type": "string"}, "min_cert_id": {"type": "integer"}, "min_entry_timestamp": {"type": "string"}, "not_before": {"type": "string"}, "not_aft... | {"issuer_ca_id" : 16418, "issuer_name" : "C=US, O=Let's Encrypt, CN=Let's Encrypt Authority X3", "name_value" : "docker-registry-default.51.144.125.123.nip.io", "min_cert_id" : 1062948087, "min_entry_timestamp" : "2018-12-28T07:26:27.01", "not_before" : "2018-12-28T06:26:25", "not_after" : "2019-03-28T06:26:25"} | json_instruct | {"type": "object", "properties": {"issuer_ca_id": {"type": "integer"}, "issuer_name": {"type": "string"}, "name_value": {"type": "string"}, "min_cert_id": {"type": "integer"}, "min_entry_timestamp": {"type": "string"}, "not_before": {"type": "string"}, "not_after": {"type": "string"}}, "required": ["issuer_ca_id", "iss... |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"rmse": {"type": "array", "items": {"type": "number"}}}, "required": ["rmse"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"rmse" : [25.29570586563567]} | json_instruct | {"type": "object", "properties": {"rmse": {"type": "array", "items": {"type": "number"}}}, "required": ["rmse"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"authors": {"type": "array", "items": {"type": "object", "properties": {"author": {"type": "string"}}, "required": ["author"]}}, "doi": {"type": "string"}, "publication_date": {"type": "string"}, "id": {"type": "string"}, "url": ... | {"authors" : [{"author" : "Min Zhu"}, {"author" : "JunJun Zheng"}, {"author" : "Yuanzhao Zhu"}, {"author" : "Hui Wan"}, {"author" : "Yuchen Wu"}, {"author" : "Daojun Hong"}], "doi" : "10.1186/s12883-015-0341-1", "publication_date" : "2015-05-11", "id" : "EN115305", "url" : "https://pubmed.ncbi.nlm.nih.gov/25957575", "s... | json_instruct | {"type": "object", "properties": {"authors": {"type": "array", "items": {"type": "object", "properties": {"author": {"type": "string"}}, "required": ["author"]}}, "doi": {"type": "string"}, "publication_date": {"type": "string"}, "id": {"type": "string"}, "url": {"type": "string"}, "source": {"type": "string"}, "source... |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"name": {"type": "string"}, "methods": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "descriptor": {"type": "string"}}, "required": ["name", "descriptor"]}}}, "required": ... | {"name" : "cbp", "methods" : [{"name" : "<init>", "descriptor" : "(Lceg$c;)V"}, {"name" : "a", "descriptor" : "(Lceh;Lbrx;Lfx;Laqa;)V", "parameters" : [{"index" : 1, "name" : "pState"}, {"index" : 2, "name" : "pWorldIn"}, {"index" : 3, "name" : "pPos"}, {"index" : 4, "name" : "pEntityIn"}]}]} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "methods": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "descriptor": {"type": "string"}}, "required": ["name", "descriptor"]}}}, "required": ["name", "methods"], "$schema": "http://json-schema.org/draft-07/schema#... |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "license": {"type": "null"}, "starNum": {"type": "integer"}, "folkNum": {"type": "integer"}, "watchNum": {"type": "integer"}, "topic": {"type": "array", "items": {"ty... | {"name" : "opensourcecontributors", "description" : "Find all contributions for a user through the GitHub Archive", "license" : null, "starNum" : 71, "folkNum" : 11, "watchNum" : 71, "topic" : ["data", "golang-server", "open-source"]} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "license": {"type": "null"}, "starNum": {"type": "integer"}, "folkNum": {"type": "integer"}, "watchNum": {"type": "integer"}, "topic": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "description", "li... |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "array", "items": {}}}, "required": ["contract", "tool", "... | {"contract" : "0x26e75307fc0c021472feb8f727839531f112f317", "tool" : "osiris", "start" : 1564571667.5316074, "end" : 1564571670.5645103, "duration" : 3.032902956008911, "analysis" : []} | json_instruct | {"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "array", "items": {}}}, "required": ["contract", "tool", "start", "end", "duration", "analysis"], "$schema": "http://... |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"items": {"type": "array", "items": {"type": "object", "properties": {"c": {"type": "string"}, "v": {"type": "string"}}, "required": ["c", "v"]}}}, "required": ["items"], "$schema": "http://json-schema.org/draft-07/s... | {"items" : [{"c" : "Percent of gross domestic product (GDP)", "v" : "PC_GDP"}, {"c" : "Million units of national currency", "v" : "MIO_NAC"}]} | json_instruct | {"type": "object", "properties": {"items": {"type": "array", "items": {"type": "object", "properties": {"c": {"type": "string"}, "v": {"type": "string"}}, "required": ["c", "v"]}}}, "required": ["items"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"text": {"type": "string"}, "historical": {"type": "string"}, "credits": {"type": "string"}, "sections": {"type": "array", "items": {"type": "object", "properties": {"prefix": {"type": "string"}, "text": {"type": "s... | {"text" : "", "historical" : "Prior Codifications\n\n1981 Ed., \u00a7 21-105.\n\n1973 Ed., \u00a7 21-105.\n\nDC CODE \u00a7 21-105\n\nCurrent through December 11, 2012", "credits" : "(Sept. 14, 1965, 79 Stat. 738, Pub. L. 89-183, \u00a7 1.)", "sections" : [{"prefix" : "a", "text" : " In case of the death of either pare... | json_instruct | {"type": "object", "properties": {"text": {"type": "string"}, "historical": {"type": "string"}, "credits": {"type": "string"}, "sections": {"type": "array", "items": {"type": "object", "properties": {"prefix": {"type": "string"}, "text": {"type": "string"}}, "required": ["prefix", "text"]}}, "division": {"type": "objec... |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {".js": {"type": "string"}}, "required": [".js"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {".js" : "9bb368686f7d40124d85ecaf2d936eec9d19b88a.js"} | json_instruct | {"type": "object", "properties": {".js": {"type": "string"}}, "required": [".js"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"Update": {"type": "string"}, "answer": {"type": "array", "items": {"type": "string"}}, "category": {"type": "string"}, "choices": {"type": "array", "items": {"type": "string"}}, "detail": {"type": "string"}, "expl... | {"Update" : "2020-03-23 15:28:16", "answer" : ["B"], "category" : "saa", "choices" : ["A.\u5177\u6709\u6700\u65e9\u542f\u52a8\u914d\u7f6e\u7684\u5b9e\u4f8b", "B.\u53ef\u7528\u6027\u533a\u57df\u4e2d\u5177\u6709\u5927\u591a\u6570\u5b9e\u4f8b\u7684\u5b9e\u4f8b", "C.\u6700\u63a5\u8fd1\u4e0b\u4e00\u4e2a\u8ba1\u8d39\u5c0f\u6... | json_instruct | {"type": "object", "properties": {"Update": {"type": "string"}, "answer": {"type": "array", "items": {"type": "string"}}, "category": {"type": "string"}, "choices": {"type": "array", "items": {"type": "string"}}, "detail": {"type": "string"}, "explanation": {"type": "array", "items": {"type": "string"}}, "id": {"type":... |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"hash": {"type": "string"}, "parentHash": {"type": "string"}, "number": {"type": "integer"}, "timestamp": {"type": "integer"}, "nonce": {"type": "string"}, "difficulty": {"type": "integer"}, "gasLimit": {"type": "obj... | {"hash" : "0x13c7dfaaffa71c27f45c45643b682f1d42f1e8c70e6a433d72acc62f9c6241f5", "parentHash" : "0x4142966e11d9db2589d90d3d06ab11eaafcc36b6b593212591745a9fb98259da", "number" : 69276, "timestamp" : 1439301100, "nonce" : "0x933f80a017110da2", "difficulty" : 2065921894541, "gasLimit" : {"_hex" : "0x2fefd8"}, "gasUsed" : {... | json_instruct | {"type": "object", "properties": {"hash": {"type": "string"}, "parentHash": {"type": "string"}, "number": {"type": "integer"}, "timestamp": {"type": "integer"}, "nonce": {"type": "string"}, "difficulty": {"type": "integer"}, "gasLimit": {"type": "object", "properties": {"_hex": {"type": "string"}}, "required": ["_hex"]... |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"id": {"type": "integer"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"src:alt_label": {"type": "string"}, "src:geom": {"type": "string"}, "wof:geomhash": {"type": "string"}, "wof:id... | {"id" : 85863559, "type" : "Feature", "properties" : {"src:alt_label" : "quattroshapes_pg", "src:geom" : "quattroshapes_pg", "wof:geomhash" : "562021b4f7e89e8a64894d8e2e37c741", "wof:id" : 85863559, "wof:repo" : "whosonfirst-data-admin-es"}, "bbox" : [-3.688638, 40.471959, -3.688638, 40.471959], "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": ["... |
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" : "np-time-tracker", "version" : "1.0.0", "description" : "SMS-based time tracking system for November Project's PR day", "main" : "lib/app.js", "scripts" : {"test" : "echo \"Error: no test specified\" && exit 1"}, "repository" : {"type" : "git", "url" : "git+https://github.com/gtracy/np-time-tracker.git"}, "au... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "repository": {"type": "object", "properties": {"type": {"type": "s... |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "autoload": {"type": "object", "properties": {"classmap": {"type": "array", "items": {"type": "string"}}}, "required": ["classmap"]}}, "required": ["name", "v... | {"name" : "IvanPrat/PHPEasyDeploy", "version" : "dev-master", "autoload" : {"classmap" : ["src/"]}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "autoload": {"type": "object", "properties": {"classmap": {"type": "array", "items": {"type": "string"}}}, "required": ["classmap"]}}, "required": ["name", "version", "autoload"], "$schema": "http://json-schema.org/draft-07/sch... |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"path": {"type": "string"}, "templateID": {"type": "integer"}, "sharedPropsHashes": {"type": "object", "properties": {}, "required": []}, "localProps": {"type": "object", "properties": {}, "required": []}}, "req... | {"path" : "speakers", "templateID" : 1, "sharedPropsHashes" : {}, "localProps" : {}} | json_instruct | {"type": "object", "properties": {"path": {"type": "string"}, "templateID": {"type": "integer"}, "sharedPropsHashes": {"type": "object", "properties": {}, "required": []}, "localProps": {"type": "object", "properties": {}, "required": []}}, "required": ["path", "templateID", "sharedPropsHashes", "localProps"], "$schema... |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"contacts": {"type": "array", "items": {}}, "guideStarURL": {"type": "string"}, "name": {"type": "string"}, "primaryEmail": {"type": "string"}, "website": {"type": "string"}, "organisationType": {"type": "array", "items": {"... | {"contacts" : [], "guideStarURL" : "http://www.guidestarindia.org/Summary.aspx?CCReg=5452", "name" : "Heart of Life", "primaryEmail" : "services.heartoflife@gmail.com", "website" : "https://sites.google.com/site/heartoflife1991", "organisationType" : ["Advocacy & Campaigning", "Direct Service", "Grant-making", "Network... | json_instruct | {"type": "object", "properties": {"contacts": {"type": "array", "items": {}}, "guideStarURL": {"type": "string"}, "name": {"type": "string"}, "primaryEmail": {"type": "string"}, "website": {"type": "string"}, "organisationType": {"type": "array", "items": {"type": "string"}}, "telephone": {"type": "array", "items": {"t... |
Using the following JSON schema, generate a compatible JSON instance:
{"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_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" : "Claim- Inpatient: Primary diagnosis", "COUNT_VALUE" : 8}, "AGE_AT_FIR... | 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... |
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" : "typeface-roboto-slab-cyrillic", "version" : "0.0.1", "description" : "Typeface Roboto Slab with cyrillic characters", "main" : "index.css", "scripts" : {"test" : "echo \"No test specified\""}, "repository" : {"type" : "git", "url" : "git+https://github.com/akolybelnikov/typeface-roboto-slab-cyrillic.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... |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "license": {"type": "string"}, "summary": {"type": "string"}, "homepage": {"type": "string"}, "authors": {"type": "object", "properties": {"Peter Jiho... | {"name" : "ConciseKit", "version" : "0.1.1", "license" : "MIT", "summary" : "A set of Objective-C additions and macros that lets you write code more quickly.", "homepage" : "http://github.com/petejkim/ConciseKit", "authors" : {"Peter Jihoon Kim" : "raingrove@gmail.com"}, "source" : {"git" : "https://github.com/petejkim... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "license": {"type": "string"}, "summary": {"type": "string"}, "homepage": {"type": "string"}, "authors": {"type": "object", "properties": {"Peter Jihoon Kim": {"type": "string"}}, "required": ["Peter Jihoon Kim"]}, "source": {"... |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"h": {"type": "string"}, "c": {"type": "object", "properties": {"0": {"type": "boolean"}}, "required": ["0"]}}, "required": ["h", "c"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"h" : "d92f1eff8fd67c4fc924", "c" : {"0" : true}} | json_instruct | {"type": "object", "properties": {"h": {"type": "string"}, "c": {"type": "object", "properties": {"0": {"type": "boolean"}}, "required": ["0"]}}, "required": ["h", "c"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"name": {"type": "string"}, "symbol": {"type": "string"}, "address": {"type": "string"}, "decimals": {"type": "integer"}, "dharmaVerificationStatus": {"type": "string"}}, "required": ["name", "symbol", "address", "decimals",... | {"name" : "88KPH", "symbol" : "KPH", "address" : "0x143B6d01195FCfcAE864A5E8C11fC89880e3CeA0", "decimals" : 0, "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": {"id": {"type": "string"}, "name": {"type": "string"}, "source": {"type": "string"}}, "required": ["id", "name", "source"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "b0f97013-87f5-4bab-87f2-ac4a5191b489", "name" : "will not lend", "source" : "folio"} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "source": {"type": "string"}}, "required": ["id", "name", "source"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "array", "items": {}}}, "required": ["cont... | {"contract" : "0x286bbee3f20f1702e707e58d33dc28a69e7efd4e", "tool" : "osiris", "start" : 1564591848.2163415, "end" : 1564591850.912009, "duration" : 2.6956675052642822, "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://... |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"description": {"type": "string"}, "code": {"type": "string"}, "ldc": {"type": "array", "items": {}}, "constructores": {"type": "array", "items": {"type": "object", "properties": {"nombre": {"type": "string"}, "description": {"... | {"description" : "", "code" : "", "ldc" : [], "constructores" : [{"nombre" : "TimerNotification", "description" : "", "parametros" : [{"nombre" : "Object source", "description" : ""}, {"nombre" : "String msg", "description" : ""}, {"nombre" : "String type", "description" : ""}, {"nombre" : "long timeStamp", "descriptio... | json_instruct | {"type": "object", "properties": {"description": {"type": "string"}, "code": {"type": "string"}, "ldc": {"type": "array", "items": {}}, "constructores": {"type": "array", "items": {"type": "object", "properties": {"nombre": {"type": "string"}, "description": {"type": "string"}, "parametros": {"type": "array", "items": ... |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"type": {"type": "string"}, "objects": {"type": "object", "properties": {"E01008497": {"type": "object", "properties": {"type": {"type": "string"}, "crs": {"type": "object", "properties": {"type": {"type": "string"}, "properties"... | {"type" : "Topology", "objects" : {"E01008497" : {"type" : "GeometryCollection", "crs" : {"type" : "name", "properties" : {"name" : "urn:ogc:def:crs:OGC:1.3:CRS84"}}, "geometries" : [{"type" : "Polygon", "properties" : {"OA11CD" : "E00043099", "LAD11CD" : "E08000022"}, "arcs" : [[0, 1, 2, 3]]}, {"type" : "Polygon", "pr... | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "objects": {"type": "object", "properties": {"E01008497": {"type": "object", "properties": {"type": {"type": "string"}, "crs": {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"name": {"type": "str... |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"source": {"type": "string"}, "word": {"type": "string"}, "infinitivo": {"type": "string"}, "participio": {"type": "array", "items": {"type": "string"}}, "gerundio": {"type": "array", "items": {"type": "string"}}, "... | {"source" : "http://lema.rae.es/drae/srv/search?val=anquilosar", "word" : "anquilosar", "infinitivo" : "anquilosar", "participio" : ["anquilosado"], "gerundio" : ["anquilosando"], "tenses" : {"3" : [["anquiloso"], ["anquilosas", "anquilos\u00e1s"], ["anquilosa"], ["anquilosamos"], ["anquilos\u00e1is", "anquilosan"], ["... | json_instruct | {"type": "object", "properties": {"source": {"type": "string"}, "word": {"type": "string"}, "infinitivo": {"type": "string"}, "participio": {"type": "array", "items": {"type": "string"}}, "gerundio": {"type": "array", "items": {"type": "string"}}, "tenses": {"type": "object", "properties": {"3": {"type": "array", "item... |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"limit": {"type": "integer"}, "name": {"type": "string"}, "value": {"type": "integer"}, "highalch": {"type": "integer"}, "id": {"type": "integer"}, "lowalch": {"type": "integer"}, "name_pt": {"type": "string"}, "price": {"ty... | {"limit" : 2, "name" : "Adamant platebody (g)", "value" : 12800, "highalch" : 7680, "id" : 2607, "lowalch" : 5120, "name_pt" : "Cota placa adamantio (o)", "price" : 31500, "last" : 31500} | json_instruct | {"type": "object", "properties": {"limit": {"type": "integer"}, "name": {"type": "string"}, "value": {"type": "integer"}, "highalch": {"type": "integer"}, "id": {"type": "integer"}, "lowalch": {"type": "integer"}, "name_pt": {"type": "string"}, "price": {"type": "integer"}, "last": {"type": "integer"}}, "required": ["l... |
Generate a valid JSON object that conforms to the following schema:
{"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"}
| ["bitcoin-explorer", "bitcoin-p2p", "bitcoinjs"] | json_instruct | {"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"gd-sprest-bs.js": {"type": "string"}, "gd-sprest-bs.min.js": {"type": "string"}}, "required": ["gd-sprest-bs.js", "gd-sprest-bs.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"gd-sprest-bs.js" : "sha512-gBYp6afxJ/iMEZ4NPYrUv2EvLN47I0uH3tzI3c/69gQ0u/u4ZHQhXpUrt4xYvvM+BdmdmC1uE1s7gbpvvlINJw==", "gd-sprest-bs.min.js" : "sha512-QkuL5w5ciOlB63MtuZh89AooNfPzcOnwHZybTeN5THkO6USdrFd5Fh2RMJ+KbOdRk72sIPGJ2kqaNwvmwMnHAg=="} | json_instruct | {"type": "object", "properties": {"gd-sprest-bs.js": {"type": "string"}, "gd-sprest-bs.min.js": {"type": "string"}}, "required": ["gd-sprest-bs.js", "gd-sprest-bs.min.js"], "$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" : "77cc1fd16f48264ad213c41b32bbcb9392404ca7"} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}}, "required": ["id"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "manifest_version": {"type": "integer"}, "page_action": {"type": "object", "properties": {}, "required": []}}, "required": ["name", "version", "manifest_vers... | {"name" : "Page Action Extension", "version" : "1.0", "manifest_version" : 2, "page_action" : {}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "manifest_version": {"type": "integer"}, "page_action": {"type": "object", "properties": {}, "required": []}}, "required": ["name", "version", "manifest_version", "page_action"], "$schema": "http://json-schema.org/draft-07/sche... |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {"type": "integer"}}, "productReviews": {"type": "array", "items": {"type": "object", "properties": {"productId": {"type... | {"userId" : 11682, "cartId" : "bb01c70f-0107-4216-8a67-06b1bee8e4db", "preferredProducts" : [170, 2817, 3233, 1379, 4881, 2108, 319, 4852, 4370, 3534], "productReviews" : [{"productId" : 4025, "reviewText" : "this Senior is snowy.", "reviewDate" : "2019-07-05T04:28:31.7087398+03:00"}]} | 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... |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"status": {"type": "string"}, "staticIpAddress": {"type": "string"}}, "required": ["status", "staticIpAddress"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"status" : " 'stop' or 'start' ", "staticIpAddress" : "10.4.6.22"} | json_instruct | {"type": "object", "properties": {"status": {"type": "string"}, "staticIpAddress": {"type": "string"}}, "required": ["status", "staticIpAddress"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"repoId": {"type": "string"}, "lastSync": {"type": "integer"}}, "required": ["repoId", "lastSync"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"repoId" : "e9acb822-72ba-4f17-8667-54d18b0ab98d", "lastSync" : 0} | json_instruct | {"type": "object", "properties": {"repoId": {"type": "string"}, "lastSync": {"type": "integer"}}, "required": ["repoId", "lastSync"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"class": {"type": "object", "properties": {}, "required": []}, "instance": {"type": "object", "properties": {"valuesBenchAppend": {"type": "string"}, "valuesBenchAppendn": {"type": "string"}, "valuesBenchCollect": {"type": "str... | {"class" : {}, "instance" : {"valuesBenchAppend" : "topa 7/29/2019 13:47", "valuesBenchAppendn" : "topa 9/19/2019 13:23", "valuesBenchCollect" : "topa 9/2/2019 11:33", "valuesBenchCollectn" : "topa 9/19/2019 13:24", "valuesBenchConcat" : "topa 9/2/2019 11:46", "valuesBenchConcatn" : "topa 9/19/2019 13:24", "valuesBench... | json_instruct | {"type": "object", "properties": {"class": {"type": "object", "properties": {}, "required": []}, "instance": {"type": "object", "properties": {"valuesBenchAppend": {"type": "string"}, "valuesBenchAppendn": {"type": "string"}, "valuesBenchCollect": {"type": "string"}, "valuesBenchCollectn": {"type": "string"}, "valuesBe... |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"format_version": {"type": "string"}, "render_controllers": {"type": "object", "properties": {"controller.render.northern_princess": {"type": "object", "properties": {"arrays": {"type": "object", "properties": {"textu... | {"format_version" : "1.8.0", "render_controllers" : {"controller.render.northern_princess" : {"arrays" : {"textures" : {"array.skins" : ["texture.default", "texture.angry"]}}, "geometry" : "Geometry.default", "materials" : [{"*" : "Material.default"}], "textures" : ["query.has_target ? array.skins[1] : array.skins[0]"]... | json_instruct | {"type": "object", "properties": {"format_version": {"type": "string"}, "render_controllers": {"type": "object", "properties": {"controller.render.northern_princess": {"type": "object", "properties": {"arrays": {"type": "object", "properties": {"textures": {"type": "object", "properties": {"array.skins": {"type": "arra... |
Please provide a valid JSON object following this schema:
{"type": "array", "items": {"type": "object", "properties": {"label": {"type": "string"}, "normalizedVertices": {"type": "array", "items": {"type": "object", "properties": {"x": {"type": "number"}, "y": {"type": "number"}}, "required": ["x", "y"]}}, "score": {"... | [{"label" : "Fish", "normalizedVertices" : [{"x" : 0.08619241, "y" : 0.70339745}, {"x" : 0.6698076, "y" : 0.70339745}, {"x" : 0.6698076, "y" : 0.99660265}, {"x" : 0.08619241, "y" : 0.99660265}], "score" : 0.8900253}, {"label" : "Animal", "normalizedVertices" : [{"x" : 0.08054535, "y" : 0.6033974}, {"x" : 0.6698076, "y"... | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"label": {"type": "string"}, "normalizedVertices": {"type": "array", "items": {"type": "object", "properties": {"x": {"type": "number"}, "y": {"type": "number"}}, "required": ["x", "y"]}}, "score": {"type": "number"}}, "required": ["label", "normalizedVertice... |
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" : "0x814c1aea6d67a6a39fea1a341ef2ef8dc1253af0", "tool" : "honeybadger", "start" : 1565844514.3102622, "end" : 1565844574.1471057, "duration" : 59.836843490600586, "analysis" : [{"errors" : [], "file" : "/unique_chucks/44/0x814c1aea6d67a6a39fea1a341ef2ef8dc1253af0.sol", "name" : "MegaXToken"}, {"errors" : []... | 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... |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"vue-filter.js": {"type": "string"}, "vue-filter.min.js": {"type": "string"}}, "required": ["vue-filter.js", "vue-filter.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"vue-filter.js" : "sha256-DeTs/AYgQSojxO70xUQ38KVH3fr25vBxytLmDZ5kGR4=", "vue-filter.min.js" : "sha256-b5gcoIWlMXajyiJgncFrJ49cbnLnC0gZlwDqmDgAj2A="} | json_instruct | {"type": "object", "properties": {"vue-filter.js": {"type": "string"}, "vue-filter.min.js": {"type": "string"}}, "required": ["vue-filter.js", "vue-filter.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"strokes": {"type": "array", "items": {"type": "string"}}, "medians": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}}}, "required": ["strokes", "medians"... | {"strokes" : ["M 734 450 Q 785 459 939 443 Q 964 439 970 449 Q 977 462 965 475 Q 895 538 824 518 Q 778 509 734 501 L 692 495 Q 592 486 528 476 L 487 471 Q 402 465 345 457 L 294 452 Q 290 452 285 451 Q 209 439 93 438 Q 80 438 78 426 Q 77 413 96 398 Q 114 385 146 373 Q 158 369 176 377 Q 203 386 291 400 L 341 410 Q 405 42... | json_instruct | {"type": "object", "properties": {"strokes": {"type": "array", "items": {"type": "string"}}, "medians": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}}}, "required": ["strokes", "medians"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.