input stringlengths 159 2.05k | output stringlengths 5 10.3k | task stringclasses 1
value | schema stringlengths 100 1.99k |
|---|---|---|---|
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"env": {"type": "object", "properties": {"browser": {"type": "boolean"}, "mocha": {"type": "boolean"}, "node": {"type": "boolean"}}, "required": ["browser", "mocha", "node"]}, "extends": {"type": "string"}, "parser": {"type": "string"}, "plugins": {"type": "array", "items": {"type": "string"}}, "rules": {"type": "object", "properties": {"arrow-body-style": {"type": "integer"}, "react/jsx-filename-extension": {"type": "integer"}}, "required": ["arrow-body-style", "react/jsx-filename-extension"]}, "settings": {"type": "object", "properties": {"import/resolver": {"type": "string"}}, "required": ["import/resolver"]}}, "required": ["env", "extends", "parser", "plugins", "rules", "settings"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"env" : {"browser" : true, "mocha" : true, "node" : true}, "extends" : "airbnb", "parser" : "@babel/eslint-parser", "plugins" : ["react", "react-hooks"], "rules" : {"arrow-body-style" : 0, "react/jsx-filename-extension" : 0}, "settings" : {"import/resolver" : "webpack"}} | json_instruct | {"type": "object", "properties": {"env": {"type": "object", "properties": {"browser": {"type": "boolean"}, "mocha": {"type": "boolean"}, "node": {"type": "boolean"}}, "required": ["browser", "mocha", "node"]}, "extends": {"type": "string"}, "parser": {"type": "string"}, "plugins": {"type": "array", "items": {"type": "string"}}, "rules": {"type": "object", "properties": {"arrow-body-style": {"type": "integer"}, "react/jsx-filename-extension": {"type": "integer"}}, "required": ["arrow-body-style", "react/jsx-filename-extension"]}, "settings": {"type": "object", "properties": {"import/resolver": {"type": "string"}}, "required": ["import/resolver"]}}, "required": ["env", "extends", "parser", "plugins", "rules", "settings"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"lastUpdated": {"type": "integer"}, "username": {"type": "string"}, "scores": {"type": "array", "items": {"type": "object", "properties": {"xp": {"type": "integer"}, "rank": {"type": "integer"}, "cardId": {"type": "integer"}}, "required": ["xp", "rank", "cardId"]}}}, "required": ["lastUpdated", "username", "scores"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"lastUpdated" : 1655019279666, "username" : "Lebabe", "scores" : [{"xp" : 6151, "rank" : 212, "cardId" : 593}, {"xp" : 5221, "rank" : 355, "cardId" : 162}]} | json_instruct | {"type": "object", "properties": {"lastUpdated": {"type": "integer"}, "username": {"type": "string"}, "scores": {"type": "array", "items": {"type": "object", "properties": {"xp": {"type": "integer"}, "rank": {"type": "integer"}, "cardId": {"type": "integer"}}, "required": ["xp", "rank", "cardId"]}}}, "required": ["lastUpdated", "username", "scores"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "is_illegal": {"type": "boolean"}, "is_custom": {"type": "boolean"}, "text": {"type": "string"}, "images": {"type": "array", "items": {"type": "string"}}, "type": {"type": "string"}, "trap_type": {"type": "string"}}, "required": ["id", "name", "is_illegal", "is_custom", "text", "images", "type", "trap_type"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : 88513608, "name" : "Card of Sacrifice", "is_illegal" : false, "is_custom" : false, "text" : "Draw 2 cards, if the combined ATK of all your face-up Attack Position monsters (minimum 2) is less than the ATK of your opponent's face-up monster with the lowest ATK. You cannot Summon or change Battle Position the turn you activate this card.", "images" : ["https://storage.googleapis.com/ygoprodeck.com/pics/88513608.jpg"], "type" : "Trap", "trap_type" : "Normal"} | json_instruct | {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "is_illegal": {"type": "boolean"}, "is_custom": {"type": "boolean"}, "text": {"type": "string"}, "images": {"type": "array", "items": {"type": "string"}}, "type": {"type": "string"}, "trap_type": {"type": "string"}}, "required": ["id", "name", "is_illegal", "is_custom", "text", "images", "type", "trap_type"], "$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": {"id": {"type": "string"}, "name": {"type": "string"}, "brewery_type": {"type": "string"}, "street": {"type": "string"}, "city": {"type": "string"}, "state": {"type": "string"}, "postal_code": {"type": "string"}, "website_url": {"type": "string"}, "phone": {"type": "string"}, "created_at": {"type": "string"}, "updated_at": {"type": "string"}, "country": {"type": "string"}, "longitude": {"type": "string"}, "latitude": {"type": "string"}, "tags": {"type": "array", "items": {}}}, "required": ["id", "name", "brewery_type", "street", "city", "state", "postal_code", "website_url", "phone", "created_at", "updated_at", "country", "longitude", "latitude", "tags"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"id" : "cary-ale-house", "name" : "Cary Ale House", "brewery_type" : "brewpub", "street" : "208 W Main St Lowr 1", "city" : "Cary", "state" : "Illinois", "postal_code" : "60013-2786", "website_url" : "http://caryalehousebrewing.com", "phone" : "8476397244", "created_at" : "2018-07-24 01:33:18.521304", "updated_at" : "2018-08-11 21:37:08.952696", "country" : "United States", "longitude" : "", "latitude" : "", "tags" : []}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "brewery_type": {"type": "string"}, "street": {"type": "string"}, "city": {"type": "string"}, "state": {"type": "string"}, "postal_code": {"type": "string"}, "website_url": {"type": "string"}, "phone": {"type": "string"}, "created_at": {"type": "string"}, "updated_at": {"type": "string"}, "country": {"type": "string"}, "longitude": {"type": "string"}, "latitude": {"type": "string"}, "tags": {"type": "array", "items": {}}}, "required": ["id", "name", "brewery_type", "street", "city", "state", "postal_code", "website_url", "phone", "created_at", "updated_at", "country", "longitude", "latitude", "tags"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "statChanges": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "value": {"type": "integer"}, "bonus": {"type": "integer"}}, "required": ["id", "value", "bonus"]}}, "features": {"type": "array", "items": {"type": "object", "properties": {"level": {"type": "integer"}, "title": {"type": "string"}, "subclass": {"type": "null"}}, "required": ["level", "title", "subclass"]}}}, "required": ["name", "statChanges", "features"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"name" : "Lightfoot Halfling", "statChanges" : [{"id" : "DEX", "value" : 2, "bonus" : 0}, {"id" : "CHA", "value" : 1, "bonus" : 0}], "features" : [{"level" : 0, "title" : "Short", "subclass" : null}, {"level" : 0, "title" : "The one where you re-roll 1s", "subclass" : null}]}, {"name" : "Orc", "statChanges" : [{"id" : "STR", "value" : 2, "bonus" : 0}, {"id" : "CON", "value" : 1, "bonus" : 0}], "features" : [{"level" : 0, "title" : "Tall", "subclass" : null}]}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "statChanges": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "value": {"type": "integer"}, "bonus": {"type": "integer"}}, "required": ["id", "value", "bonus"]}}, "features": {"type": "array", "items": {"type": "object", "properties": {"level": {"type": "integer"}, "title": {"type": "string"}, "subclass": {"type": "null"}}, "required": ["level", "title", "subclass"]}}}, "required": ["name", "statChanges", "features"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"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": ["src:alt_label", "src:geom", "wof:geomhash", "wof:id", "wof:repo"]}, "bbox": {"type": "array", "items": {"type": "number"}}, "geometry": {"type": "object", "properties": {"coordinates": {"type": "array", "items": {"type": "number"}}, "type": {"type": "string"}}, "required": ["coordinates", "type"]}}, "required": ["id", "type", "properties", "bbox", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : 404373697, "type" : "Feature", "properties" : {"src:alt_label" : "quattroshapes_pg", "src:geom" : "quattroshapes_pg", "wof:geomhash" : "1a7dc3eb6e77917eb471260826916893", "wof:id" : 404373697, "wof:repo" : "whosonfirst-data-admin-fr"}, "bbox" : [0.36167, 42.84667, 0.36167, 42.84667], "geometry" : {"coordinates" : [0.36167, 42.84667], "type" : "Point"}} | 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": ["src:alt_label", "src:geom", "wof:geomhash", "wof:id", "wof:repo"]}, "bbox": {"type": "array", "items": {"type": "number"}}, "geometry": {"type": "object", "properties": {"coordinates": {"type": "array", "items": {"type": "number"}}, "type": {"type": "string"}}, "required": ["coordinates", "type"]}}, "required": ["id", "type", "properties", "bbox", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "text": {"type": "string"}}, "required": ["id", "text"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"id" : "522622102001", "text" : "\u5174\u9686\u8857\u5c45\u59d4\u4f1a"}, {"id" : "522622102203", "text" : "\u5929\u5802\u6751\u59d4\u4f1a"}, {"id" : "522622102206", "text" : "\u5927\u4e95\u6751\u59d4\u4f1a"}, {"id" : "522622102208", "text" : "\u4ee3\u652f\u6751\u59d4\u4f1a"}, {"id" : "522622102211", "text" : "\u768e\u6c99\u6751\u59d4\u4f1a"}, {"id" : "522622102218", "text" : "\u9ec4\u7334\u6751\u59d4\u4f1a"}, {"id" : "522622102219", "text" : "\u5927\u77f3\u6751\u59d4\u4f1a"}, {"id" : "522622102220", "text" : "\u6994\u6728\u54e8\u6751\u59d4\u4f1a"}, {"id" : "522622102222", "text" : "\u5ca9\u5934\u6751\u59d4\u4f1a"}, {"id" : "522622102223", "text" : "\u91d1\u9f99\u6751\u59d4\u4f1a"}, {"id" : "522622102224", "text" : "\u77f3\u5934\u5821\u6751\u59d4\u4f1a"}, {"id" : "522622102226", "text" : "\u9a6c\u573a\u6751\u59d4\u4f1a"}, {"id" : "522622102229", "text" : "\u4e0b\u7fc1\u7ec6\u6751\u59d4\u4f1a"}, {"id" : "522622102230", "text" : "\u671b\u575d\u6751\u59d4\u4f1a"}, {"id" : "522622102231", "text" : "\u534a\u5c71\u6751\u59d4\u4f1a"}, {"id" : "522622102232", "text" : "\u5858\u90fd\u6751\u59d4\u4f1a"}, {"id" : "522622102233", "text" : "\u91cd\u5174\u6751\u59d4\u4f1a"}, {"id" : "522622102237", "text" : "\u4e0a\u67ab\u9999\u6751\u59d4\u4f1a"}, {"id" : "522622102240", "text" : "\u5b89\u6c5f\u6751\u59d4\u4f1a"}, {"id" : "522622102241", "text" : "\u9ec4\u91d1\u6751\u59d4\u4f1a"}, {"id" : "522622102242", "text" : "\u4e94\u798f\u6751\u59d4\u4f1a"}, {"id" : "522622102243", "text" : "\u6e05\u6c34\u6c5f\u6751\u59d4\u4f1a"}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "text": {"type": "string"}}, "required": ["id", "text"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "idParent": {"type": "integer"}, "namaWilayah": {"type": "string"}, "tingkatWilayah": {"type": "integer"}, "idPro": {"type": "integer"}, "idKab": {"type": "integer"}, "idKec": {"type": "integer"}, "idKel": {"type": "integer"}, "namaPro": {"type": "string"}, "namaKab": {"type": "string"}, "namaKec": {"type": "string"}, "namaKel": {"type": "string"}, "kodeWilayah": {"type": "string"}}, "required": ["id", "idParent", "namaWilayah", "tingkatWilayah", "idPro", "idKab", "idKec", "idKel", "namaPro", "namaKab", "namaKec", "namaKel", "kodeWilayah"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"id" : 6943, "idParent" : 6942, "namaWilayah" : "BANUA SIBOHOU III", "tingkatWilayah" : 4, "idPro" : 6728, "idKab" : 6888, "idKec" : 6942, "idKel" : 6943, "namaPro" : "SUMATERA UTARA", "namaKab" : "NIAS UTARA", "namaKec" : "ALASA TALUMUZOI", "namaKel" : "BANUA SIBOHOU III", "kodeWilayah" : "12.24.06.2001"}, {"id" : 6944, "idParent" : 6942, "namaWilayah" : "HAREFANAESE", "tingkatWilayah" : 4, "idPro" : 6728, "idKab" : 6888, "idKec" : 6942, "idKel" : 6944, "namaPro" : "SUMATERA UTARA", "namaKab" : "NIAS UTARA", "namaKec" : "ALASA TALUMUZOI", "namaKel" : "HAREFANAESE", "kodeWilayah" : "12.24.06.2002"}, {"id" : 6945, "idParent" : 6942, "namaWilayah" : "HILIMBOWO KARE", "tingkatWilayah" : 4, "idPro" : 6728, "idKab" : 6888, "idKec" : 6942, "idKel" : 6945, "namaPro" : "SUMATERA UTARA", "namaKab" : "NIAS UTARA", "namaKec" : "ALASA TALUMUZOI", "namaKel" : "HILIMBOWO KARE", "kodeWilayah" : "12.24.06.2003"}, {"id" : 6948, "idParent" : 6942, "namaWilayah" : "HILINA'A", "tingkatWilayah" : 4, "idPro" : 6728, "idKab" : 6888, "idKec" : 6942, "idKel" : 6948, "namaPro" : "SUMATERA UTARA", "namaKab" : "NIAS UTARA", "namaKec" : "ALASA TALUMUZOI", "namaKel" : "HILINA'A", "kodeWilayah" : "12.24.06.2006"}, {"id" : 6946, "idParent" : 6942, "namaWilayah" : "LAEHUWA", "tingkatWilayah" : 4, "idPro" : 6728, "idKab" : 6888, "idKec" : 6942, "idKel" : 6946, "namaPro" : "SUMATERA UTARA", "namaKab" : "NIAS UTARA", "namaKec" : "ALASA TALUMUZOI", "namaKel" : "LAEHUWA", "kodeWilayah" : "12.24.06.2004"}, {"id" : 6947, "idParent" : 6942, "namaWilayah" : "MAZINGO", "tingkatWilayah" : 4, "idPro" : 6728, "idKab" : 6888, "idKec" : 6942, "idKel" : 6947, "namaPro" : "SUMATERA UTARA", "namaKab" : "NIAS UTARA", "namaKec" : "ALASA TALUMUZOI", "namaKel" : "MAZINGO", "kodeWilayah" : "12.24.06.2005"}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "idParent": {"type": "integer"}, "namaWilayah": {"type": "string"}, "tingkatWilayah": {"type": "integer"}, "idPro": {"type": "integer"}, "idKab": {"type": "integer"}, "idKec": {"type": "integer"}, "idKel": {"type": "integer"}, "namaPro": {"type": "string"}, "namaKab": {"type": "string"}, "namaKec": {"type": "string"}, "namaKel": {"type": "string"}, "kodeWilayah": {"type": "string"}}, "required": ["id", "idParent", "namaWilayah", "tingkatWilayah", "idPro", "idKab", "idKec", "idKel", "namaPro", "namaKab", "namaKec", "namaKel", "kodeWilayah"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"441223100": {"type": "string"}, "441223102": {"type": "string"}, "441223103": {"type": "string"}, "441223105": {"type": "string"}, "441223106": {"type": "string"}, "441223107": {"type": "string"}, "441223108": {"type": "string"}, "441223109": {"type": "string"}, "441223110": {"type": "string"}, "441223111": {"type": "string"}, "441223112": {"type": "string"}, "441223113": {"type": "string"}, "441223114": {"type": "string"}, "441223115": {"type": "string"}, "441223116": {"type": "string"}}, "required": ["441223100", "441223102", "441223103", "441223105", "441223106", "441223107", "441223108", "441223109", "441223110", "441223111", "441223112", "441223113", "441223114", "441223115", "441223116"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"441223100" : "\u6392\u6c99\u9547", "441223102" : "\u6f6d\u5e03\u9547", "441223103" : "\u6c5f\u5c6f\u9547", "441223105" : "\u87ba\u5c97\u9547", "441223106" : "\u5317\u5e02\u9547", "441223107" : "\u5751\u53e3\u9547", "441223108" : "\u8d64\u5751\u9547", "441223109" : "\u5357\u8857\u9547", "441223110" : "\u5bbe\u4ea8\u9547", "441223111" : "\u4e94\u548c\u9547", "441223112" : "\u6a2a\u5c71\u9547", "441223113" : "\u6728\u683c\u9547", "441223114" : "\u77f3\u5480\u9547", "441223115" : "\u53e4\u6c34\u9547", "441223116" : "\u6d32\u4ed4\u9547"} | json_instruct | {"type": "object", "properties": {"441223100": {"type": "string"}, "441223102": {"type": "string"}, "441223103": {"type": "string"}, "441223105": {"type": "string"}, "441223106": {"type": "string"}, "441223107": {"type": "string"}, "441223108": {"type": "string"}, "441223109": {"type": "string"}, "441223110": {"type": "string"}, "441223111": {"type": "string"}, "441223112": {"type": "string"}, "441223113": {"type": "string"}, "441223114": {"type": "string"}, "441223115": {"type": "string"}, "441223116": {"type": "string"}}, "required": ["441223100", "441223102", "441223103", "441223105", "441223106", "441223107", "441223108", "441223109", "441223110", "441223111", "441223112", "441223113", "441223114", "441223115", "441223116"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"ast": {"type": "null"}, "code": {"type": "string"}, "map": {"type": "object", "properties": {"version": {"type": "integer"}, "sources": {"type": "array", "items": {"type": "string"}}, "names": {"type": "array", "items": {"type": "string"}}, "mappings": {"type": "string"}, "sourcesContent": {"type": "array", "items": {"type": "string"}}}, "required": ["version", "sources", "names", "mappings", "sourcesContent"]}, "metadata": {"type": "object", "properties": {}, "required": []}, "sourceType": {"type": "string"}}, "required": ["ast", "code", "map", "metadata", "sourceType"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"ast" : null, "code" : "'use strict';\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = {\n name: 'htmlTag',\n lookup: function lookup(options) {\n var found = void 0;\n var htmlTag = options.htmlTag || (typeof document !== 'undefined' ? document.documentElement : null);\n\n if (htmlTag && typeof htmlTag.getAttribute === 'function') {\n found = htmlTag.getAttribute('lang');\n }\n\n return found;\n }\n};", "map" : {"version" : 3, "sources" : ["/Users/warrenmason/Downloads/Final Versions/Polygon/Polygon-MoonWalkerSwap-Interface/node_modules/i18next-browser-languagedetector/dist/commonjs/browserLookups/htmlTag.js"], "names" : ["Object", "defineProperty", "exports", "value", "default", "name", "lookup", "options", "found", "htmlTag", "document", "documentElement", "getAttribute"], "mappings" : "AAAA;;AAEAA,MAAM,CAACC,cAAP,CAAsBC,OAAtB,EAA+B,YAA/B,EAA6C;AAC3CC,EAAAA,KAAK,EAAE;AADoC,CAA7C;AAGAD,OAAO,CAACE,OAAR,GAAkB;AAChBC,EAAAA,IAAI,EAAE,SADU;AAGhBC,EAAAA,MAAM,EAAE,SAASA,MAAT,CAAgBC,OAAhB,EAAyB;AAC/B,QAAIC,KAAK,GAAG,KAAK,CAAjB;AACA,QAAIC,OAAO,GAAGF,OAAO,CAACE,OAAR,KAAoB,OAAOC,QAAP,KAAoB,WAApB,GAAkCA,QAAQ,CAACC,eAA3C,GAA6D,IAAjF,CAAd;;AAEA,QAAIF,OAAO,IAAI,OAAOA,OAAO,CAACG,YAAf,KAAgC,UAA/C,EAA2D;AACzDJ,MAAAA,KAAK,GAAGC,OAAO,CAACG,YAAR,CAAqB,MAArB,CAAR;AACD;;AAED,WAAOJ,KAAP;AACD;AAZe,CAAlB", "sourcesContent" : ["'use strict';\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = {\n name: 'htmlTag',\n\n lookup: function lookup(options) {\n var found = void 0;\n var htmlTag = options.htmlTag || (typeof document !== 'undefined' ? document.documentElement : null);\n\n if (htmlTag && typeof htmlTag.getAttribute === 'function') {\n found = htmlTag.getAttribute('lang');\n }\n\n return found;\n }\n};"]}, "metadata" : {}, "sourceType" : "script"} | json_instruct | {"type": "object", "properties": {"ast": {"type": "null"}, "code": {"type": "string"}, "map": {"type": "object", "properties": {"version": {"type": "integer"}, "sources": {"type": "array", "items": {"type": "string"}}, "names": {"type": "array", "items": {"type": "string"}}, "mappings": {"type": "string"}, "sourcesContent": {"type": "array", "items": {"type": "string"}}}, "required": ["version", "sources", "names", "mappings", "sourcesContent"]}, "metadata": {"type": "object", "properties": {}, "required": []}, "sourceType": {"type": "string"}}, "required": ["ast", "code", "map", "metadata", "sourceType"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"cam/image_array": {"type": "string"}, "user/angle": {"type": "number"}, "user/throttle": {"type": "number"}, "user/mode": {"type": "string"}, "pos/pos_x": {"type": "number"}, "pos/pos_y": {"type": "number"}, "pos/pos_z": {"type": "number"}, "pos/speed": {"type": "number"}, "pos/cte": {"type": "number"}, "milliseconds": {"type": "integer"}}, "required": ["cam/image_array", "user/angle", "user/throttle", "user/mode", "pos/pos_x", "pos/pos_y", "pos/pos_z", "pos/speed", "pos/cte", "milliseconds"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"cam/image_array" : "8467_cam-image_array_.jpg", "user/angle" : 0.824, "user/throttle" : 0.634, "user/mode" : "user", "pos/pos_x" : 53.34061, "pos/pos_y" : 0.5519909, "pos/pos_z" : 74.49745, "pos/speed" : 12.39049, "pos/cte" : 2.351629, "milliseconds" : 449834} | json_instruct | {"type": "object", "properties": {"cam/image_array": {"type": "string"}, "user/angle": {"type": "number"}, "user/throttle": {"type": "number"}, "user/mode": {"type": "string"}, "pos/pos_x": {"type": "number"}, "pos/pos_y": {"type": "number"}, "pos/pos_z": {"type": "number"}, "pos/speed": {"type": "number"}, "pos/cte": {"type": "number"}, "milliseconds": {"type": "integer"}}, "required": ["cam/image_array", "user/angle", "user/throttle", "user/mode", "pos/pos_x", "pos/pos_y", "pos/pos_z", "pos/speed", "pos/cte", "milliseconds"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"Sources": {"type": "array", "items": {"type": "object", "properties": {"source": {"type": "string"}, "ra": {"type": "number"}, "dec": {"type": "number"}, "epoch": {"type": "null"}, "equinox": {"type": "string"}, "shortname": {"type": "null"}, "reference": {"type": "string"}, "comments": {"type": "null"}}, "required": ["source", "ra", "dec", "epoch", "equinox", "shortname", "reference", "comments"]}}, "Names": {"type": "array", "items": {"type": "object", "properties": {"other_name": {"type": "string"}}, "required": ["other_name"]}}, "Photometry": {"type": "array", "items": {"type": "object", "properties": {"band": {"type": "string"}, "ucd": {"type": "string"}, "magnitude": {"type": "number"}, "magnitude_error": {"type": "number"}, "telescope": {"type": "string"}, "instrument": {"type": "string"}, "epoch": {"type": "null"}, "comments": {"type": "null"}, "reference": {"type": "string"}}, "required": ["band", "ucd", "magnitude", "magnitude_error", "telescope", "instrument", "epoch", "comments", "reference"]}}, "ProperMotions": {"type": "array", "items": {"type": "object", "properties": {"mu_ra": {"type": "number"}, "mu_ra_error": {"type": "number"}, "mu_dec": {"type": "number"}, "mu_dec_error": {"type": "number"}, "adopted": {"type": "boolean"}, "comments": {"type": "null"}, "reference": {"type": "string"}}, "required": ["mu_ra", "mu_ra_error", "mu_dec", "mu_dec_error", "adopted", "comments", "reference"]}}}, "required": ["Sources", "Names", "Photometry", "ProperMotions"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"Sources" : [{"source" : "SDSS J135923.99+472843.2", "ra" : 209.85, "dec" : 47.4787, "epoch" : null, "equinox" : "2000", "shortname" : null, "reference" : "Knap04", "comments" : null}], "Names" : [{"other_name" : "2MASS J13592403+4728431"}, {"other_name" : "SDSS J135923.99+472843.2"}], "Photometry" : [{"band" : "2MASS.H", "ucd" : "em.IR.H", "magnitude" : 16.05, "magnitude_error" : 0.168, "telescope" : "2MASS", "instrument" : "2MASS", "epoch" : null, "comments" : null, "reference" : "Cutr03"}, {"band" : "2MASS.J", "ucd" : "em.IR.J", "magnitude" : 17.16, "magnitude_error" : 0.228, "telescope" : "2MASS", "instrument" : "2MASS", "epoch" : null, "comments" : null, "reference" : "Cutr03"}, {"band" : "2MASS.Ks", "ucd" : "em.IR.K", "magnitude" : 15.49, "magnitude_error" : 0.188, "telescope" : "2MASS", "instrument" : "2MASS", "epoch" : null, "comments" : null, "reference" : "Cutr03"}], "ProperMotions" : [{"mu_ra" : -144.0, "mu_ra_error" : 10.0, "mu_dec" : 34.0, "mu_dec_error" : 14.0, "adopted" : true, "comments" : null, "reference" : "Fahe09"}]} | json_instruct | {"type": "object", "properties": {"Sources": {"type": "array", "items": {"type": "object", "properties": {"source": {"type": "string"}, "ra": {"type": "number"}, "dec": {"type": "number"}, "epoch": {"type": "null"}, "equinox": {"type": "string"}, "shortname": {"type": "null"}, "reference": {"type": "string"}, "comments": {"type": "null"}}, "required": ["source", "ra", "dec", "epoch", "equinox", "shortname", "reference", "comments"]}}, "Names": {"type": "array", "items": {"type": "object", "properties": {"other_name": {"type": "string"}}, "required": ["other_name"]}}, "Photometry": {"type": "array", "items": {"type": "object", "properties": {"band": {"type": "string"}, "ucd": {"type": "string"}, "magnitude": {"type": "number"}, "magnitude_error": {"type": "number"}, "telescope": {"type": "string"}, "instrument": {"type": "string"}, "epoch": {"type": "null"}, "comments": {"type": "null"}, "reference": {"type": "string"}}, "required": ["band", "ucd", "magnitude", "magnitude_error", "telescope", "instrument", "epoch", "comments", "reference"]}}, "ProperMotions": {"type": "array", "items": {"type": "object", "properties": {"mu_ra": {"type": "number"}, "mu_ra_error": {"type": "number"}, "mu_dec": {"type": "number"}, "mu_dec_error": {"type": "number"}, "adopted": {"type": "boolean"}, "comments": {"type": "null"}, "reference": {"type": "string"}}, "required": ["mu_ra", "mu_ra_error", "mu_dec", "mu_dec_error", "adopted", "comments", "reference"]}}}, "required": ["Sources", "Names", "Photometry", "ProperMotions"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "version": {"type": "string"}, "author": {"type": "string"}, "dependencies": {"type": "object", "properties": {"express": {"type": "string"}, "faye": {"type": "string"}, "inflection": {"type": "string"}, "jade": {"type": "string"}, "nano": {"type": "string"}, "nib": {"type": "string"}, "q": {"type": "string"}, "stylus": {"type": "string"}, "underscore": {"type": "string"}}, "required": ["express", "faye", "inflection", "jade", "nano", "nib", "q", "stylus", "underscore"]}}, "required": ["name", "description", "version", "author", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "broadcast", "description" : "", "version" : "0.1.0", "author" : "", "dependencies" : {"express" : ">= 2.5.5", "faye" : ">= 0.6.7", "inflection" : "1.1.1", "jade" : ">= 0.20.0", "nano" : "1.3.0", "nib" : "0.2.0", "q" : ">= 0.8.2", "stylus" : ">= 0.22.4", "underscore" : "1.3.1"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "version": {"type": "string"}, "author": {"type": "string"}, "dependencies": {"type": "object", "properties": {"express": {"type": "string"}, "faye": {"type": "string"}, "inflection": {"type": "string"}, "jade": {"type": "string"}, "nano": {"type": "string"}, "nib": {"type": "string"}, "q": {"type": "string"}, "stylus": {"type": "string"}, "underscore": {"type": "string"}}, "required": ["express", "faye", "inflection", "jade", "nano", "nib", "q", "stylus", "underscore"]}}, "required": ["name", "description", "version", "author", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "laravel-test"} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"walletType": {"type": "string"}, "accessKeyId": {"type": "string"}, "secretAccessKey": {"type": "string"}, "region": {"type": "string"}, "secretName": {"type": "string"}}, "required": ["walletType", "accessKeyId", "secretAccessKey", "region", "secretName"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"walletType" : "hashicorp_vault", "accessKeyId" : "${AWS_ACCESS_KEY}", "secretAccessKey" : "${AWS_ACCESS_SECRET_KEY}", "region" : "${AWS_REGION}", "secretName" : "aais-hv-credential"} | json_instruct | {"type": "object", "properties": {"walletType": {"type": "string"}, "accessKeyId": {"type": "string"}, "secretAccessKey": {"type": "string"}, "region": {"type": "string"}, "secretName": {"type": "string"}}, "required": ["walletType", "accessKeyId", "secretAccessKey", "region", "secretName"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"nameParser": {"type": "object", "properties": {"loadTestNames": {"type": "string"}, "parse": {"type": "string"}, "or": {"type": "string"}, "selectFile": {"type": "string"}, "pasteNamesToParse": {"type": "string"}, "about": {"type": "string"}, "parser": {"type": "string"}, "nameParserTitle": {"type": "string"}, "dropHere": {"type": "string"}, "excludeUnparsed": {"type": "string"}, "generateCsv": {"type": "string"}, "parsingNames": {"type": "string"}, "nameParserDescription": {"type": "string"}, "nameParserRequirements": {"type": "string"}}, "required": ["loadTestNames", "parse", "or", "selectFile", "pasteNamesToParse", "about", "parser", "nameParserTitle", "dropHere", "excludeUnparsed", "generateCsv", "parsingNames", "nameParserDescription", "nameParserRequirements"]}}, "required": ["nameParser"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"nameParser" : {"loadTestNames" : "Charger les noms \u00e0 tester", "parse" : "Analyser", "or" : "ou", "selectFile" : "S\u00e9lectionner un fichier", "pasteNamesToParse" : "Coller les noms \u00e0 analyser ici", "about" : "\u00c0 propos", "parser" : "Analyseur", "nameParserTitle" : "Analyseur de nom", "dropHere" : "D\u00e9poser ici", "excludeUnparsed" : "Exclure ceux non analys\u00e9s", "generateCsv" : "G\u00e9n\u00e9rer le csv", "parsingNames" : "En cours d'analyse des noms - patientez", "nameParserDescription" : "Il s\u2019agit d\u2019un simple formulaire html permettant d\u2019utiliser l'analyseur de noms de GBIF. L\u2019analyseur est \u00e9crit en java et bas\u00e9 sur des expressions r\u00e9guli\u00e8res afin de diss\u00e9quer les noms en plusieurs composantes. Il ne conserve que les parties du nom n\u00e9cessaire \u00e0 la reconstruction d'un nom complet en 3 parties, avec le sous-genre en option, mais ignore les informations suppl\u00e9mentaires sous l'esp\u00e8ce telles que les sous-esp\u00e8ces donn\u00e9es aux vari\u00e9t\u00e9s. Veuillez consulter notre [documentation API](/developer/species#parser) pour plus de d\u00e9tails.", "nameParserRequirements" : "Vous pouvez copier-coller une liste de noms, un par ligne, ou charger un fichier texte avec un nom par ligne. Les fichiers charg\u00e9s doivent \u00eatre encod\u00e9s en utf-8\u00a0!"}} | json_instruct | {"type": "object", "properties": {"nameParser": {"type": "object", "properties": {"loadTestNames": {"type": "string"}, "parse": {"type": "string"}, "or": {"type": "string"}, "selectFile": {"type": "string"}, "pasteNamesToParse": {"type": "string"}, "about": {"type": "string"}, "parser": {"type": "string"}, "nameParserTitle": {"type": "string"}, "dropHere": {"type": "string"}, "excludeUnparsed": {"type": "string"}, "generateCsv": {"type": "string"}, "parsingNames": {"type": "string"}, "nameParserDescription": {"type": "string"}, "nameParserRequirements": {"type": "string"}}, "required": ["loadTestNames", "parse", "or", "selectFile", "pasteNamesToParse", "about", "parser", "nameParserTitle", "dropHere", "excludeUnparsed", "generateCsv", "parsingNames", "nameParserDescription", "nameParserRequirements"]}}, "required": ["nameParser"], "$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"}, "author": {"type": "string"}, "license": {"type": "string"}, "private": {"type": "boolean"}, "dependencies": {"type": "object", "properties": {"pm2": {"type": "string"}, "redis": {"type": "string"}, "redis-smq": {"type": "string"}}, "required": ["pm2", "redis", "redis-smq"]}}, "required": ["name", "author", "license", "private", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "redis-smq-example", "author" : "Weyoss <weyoss@protonmail.com>", "license" : "MIT", "private" : true, "dependencies" : {"pm2" : "2.5.0", "redis" : "2.7.1", "redis-smq" : "file:../"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "author": {"type": "string"}, "license": {"type": "string"}, "private": {"type": "boolean"}, "dependencies": {"type": "object", "properties": {"pm2": {"type": "string"}, "redis": {"type": "string"}, "redis-smq": {"type": "string"}}, "required": ["pm2", "redis", "redis-smq"]}}, "required": ["name", "author", "license", "private", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"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"]}, "gasUsed": {"type": "object", "properties": {"_hex": {"type": "string"}}, "required": ["_hex"]}, "miner": {"type": "string"}, "extraData": {"type": "string"}, "transactions": {"type": "array", "items": {}}}, "required": ["hash", "parentHash", "number", "timestamp", "nonce", "difficulty", "gasLimit", "gasUsed", "miner", "extraData", "transactions"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"hash" : "0x1e4532b0706ce3fa20fe0d065f2d87412eb12c94c4662e39ff361fb4f9fcf783", "parentHash" : "0xdaa5a66e2225ebfdf9f24d14fab9b003aad7d5cc536166255e6a34fee92e03d7", "number" : 70152, "timestamp" : 1439315516, "nonce" : "0xc0a0947e14610fc2", "difficulty" : 2108506657372, "gasLimit" : {"_hex" : "0x2fefd8"}, "gasUsed" : {"_hex" : "0x0"}, "miner" : "0x88D74a59454F6cF3B51ef6b9136AFb6b9D405A88", "extraData" : "0x476574682f76312e302e312d37666266393930632f6c696e75782f676f312e34", "transactions" : []} | 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"]}, "gasUsed": {"type": "object", "properties": {"_hex": {"type": "string"}}, "required": ["_hex"]}, "miner": {"type": "string"}, "extraData": {"type": "string"}, "transactions": {"type": "array", "items": {}}}, "required": ["hash", "parentHash", "number", "timestamp", "nonce", "difficulty", "gasLimit", "gasUsed", "miner", "extraData", "transactions"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"OLED12864_I2C.DISPLAY_ONOFF.DISPLAY_ON|block": {"type": "string"}, "OLED12864_I2C.DISPLAY_ONOFF.DISPLAY_OFF|block": {"type": "string"}, "OLED12864_I2C.pixel|block": {"type": "string"}, "OLED12864_I2C.String|block": {"type": "string"}, "OLED12864_I2C.Number|block": {"type": "string"}, "OLED12864_I2C.printString|block": {"type": "string"}, "OLED12864_I2C.printNumber|block": {"type": "string"}, "OLED12864_I2C.hline|block": {"type": "string"}, "OLED12864_I2C.vline|block": {"type": "string"}, "OLED12864_I2C.rect|block": {"type": "string"}, "OLED12864_I2C.invert|block": {"type": "string"}, "OLED12864_I2C.clear|block": {"type": "string"}, "OLED12864_I2C.display|block": {"type": "string"}, "OLED12864_I2C.init|block": {"type": "string"}}, "required": ["OLED12864_I2C.DISPLAY_ONOFF.DISPLAY_ON|block", "OLED12864_I2C.DISPLAY_ONOFF.DISPLAY_OFF|block", "OLED12864_I2C.pixel|block", "OLED12864_I2C.String|block", "OLED12864_I2C.Number|block", "OLED12864_I2C.printString|block", "OLED12864_I2C.printNumber|block", "OLED12864_I2C.hline|block", "OLED12864_I2C.vline|block", "OLED12864_I2C.rect|block", "OLED12864_I2C.invert|block", "OLED12864_I2C.clear|block", "OLED12864_I2C.display|block", "OLED12864_I2C.init|block"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"OLED12864_I2C.DISPLAY_ONOFF.DISPLAY_ON|block" : "\u5f00", "OLED12864_I2C.DISPLAY_ONOFF.DISPLAY_OFF|block" : "\u5173", "OLED12864_I2C.pixel|block" : "\u753b\u70b9 x %x|y %y|\u989c\u8272 %color", "OLED12864_I2C.String|block" : "\u663e\u793a\u6587\u5b57 %s|\u5728\u5217 %x|\u884c %y|\u989c\u8272 %color", "OLED12864_I2C.Number|block" : "\u663e\u793a\u6570\u5b57 %num|\u5728\u5217 %x|\u884c %y|\u989c\u8272 %color", "OLED12864_I2C.printString|block" : "\u6253\u5370 %s|\u989c\u8272 %color|\u65b0\u884c %newline", "OLED12864_I2C.printNumber|block" : "\u6253\u5370\u6570\u5b57 %num|\u989c\u8272 %color|\u65b0\u884c %newline", "OLED12864_I2C.hline|block" : "\u7ed8\u5236\u6c34\u5e73\u7ebf\u5728 x %x|y %y|\u957f\u5ea6 %len|\u989c\u8272 %color", "OLED12864_I2C.vline|block" : "\u7ed8\u5236\u5782\u76f4\u7ebf\u5728 x %x|y %y|\u957f\u5ea6 %len|\u989c\u8272 %color", "OLED12864_I2C.rect|block" : "\u7ed8\u5236\u77e9\u5f62\u5728 x1 %x1|y1 %y1|x2 %x2|y2 %y2|\u989c\u8272 %color", "OLED12864_I2C.invert|block" : "\u53cd\u663e\u6a21\u5f0f %d", "OLED12864_I2C.clear|block" : "\u6e05\u9664\u5c4f\u5e55", "OLED12864_I2C.display|block" : "\u663e\u793a %d", "OLED12864_I2C.init|block" : "\u521d\u59cb\u5316"} | json_instruct | {"type": "object", "properties": {"OLED12864_I2C.DISPLAY_ONOFF.DISPLAY_ON|block": {"type": "string"}, "OLED12864_I2C.DISPLAY_ONOFF.DISPLAY_OFF|block": {"type": "string"}, "OLED12864_I2C.pixel|block": {"type": "string"}, "OLED12864_I2C.String|block": {"type": "string"}, "OLED12864_I2C.Number|block": {"type": "string"}, "OLED12864_I2C.printString|block": {"type": "string"}, "OLED12864_I2C.printNumber|block": {"type": "string"}, "OLED12864_I2C.hline|block": {"type": "string"}, "OLED12864_I2C.vline|block": {"type": "string"}, "OLED12864_I2C.rect|block": {"type": "string"}, "OLED12864_I2C.invert|block": {"type": "string"}, "OLED12864_I2C.clear|block": {"type": "string"}, "OLED12864_I2C.display|block": {"type": "string"}, "OLED12864_I2C.init|block": {"type": "string"}}, "required": ["OLED12864_I2C.DISPLAY_ONOFF.DISPLAY_ON|block", "OLED12864_I2C.DISPLAY_ONOFF.DISPLAY_OFF|block", "OLED12864_I2C.pixel|block", "OLED12864_I2C.String|block", "OLED12864_I2C.Number|block", "OLED12864_I2C.printString|block", "OLED12864_I2C.printNumber|block", "OLED12864_I2C.hline|block", "OLED12864_I2C.vline|block", "OLED12864_I2C.rect|block", "OLED12864_I2C.invert|block", "OLED12864_I2C.clear|block", "OLED12864_I2C.display|block", "OLED12864_I2C.init|block"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"year": {"type": "string"}, "metaSession": {"type": "string"}, "pdf1page": {"type": "string"}, "pdfarticle": {"type": "string"}, "abstract": {"type": "string"}, "title": {"type": "string"}, "placeAut": {"type": "array", "items": {"type": "object", "properties": {"place": {"type": "string"}, "country": {"type": "string"}, "location": {"type": "object", "properties": {"lat": {"type": "string"}, "lon": {"type": "string"}}, "required": ["lat", "lon"]}}, "required": ["place", "country", "location"]}}, "series": {"type": "string"}, "location": {"type": "string"}, "place": {"type": "string"}, "booktitle": {"type": "string"}, "idArt": {"type": "string"}, "authors": {"type": "string"}}, "required": ["year", "metaSession", "pdf1page", "pdfarticle", "abstract", "title", "placeAut", "series", "location", "place", "booktitle", "idArt", "authors"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"year" : "2008", "metaSession" : "0", "pdf1page" : "http://editions-rnti.fr/render_pdf.php?p1&p=1000588", "pdfarticle" : "http://editions-rnti.fr/render_pdf.php?p=1000588", "abstract" : "Dans nombre d'applications, les donn\u00e9es pr\u00e9sentent un d\u00e9s\u00e9quilibre entre les classes. La pr\u00e9diction est alors souvent d\u00e9t\u00e9rior\u00e9e pour la classe minoritaire. Pour contourner cela, nous proposons un \u00e9chantillonnage guid\u00e9, lors des it\u00e9rations successives d'une for\u00eat al\u00e9atoire, par les besoins de l'utilisateur.", "title" : "Echantillonnage adaptatif de jeux de donn\u00e9es d\u00e9s\u00e9quilibr\u00e9s pour les for\u00eats al\u00e9atoires", "placeAut" : [{"place" : "Lyon", "country" : "France", "location" : {"lat" : "45.764043", "lon" : "4.835659"}}], "series" : "Revue des Nouvelles Technologies de l'Information", "location" : "{u'lat': 43.6163539, u'lon': 7.0552218}", "place" : "Sophia Antipolis", "booktitle" : "EGC ", "idArt" : "593", "authors" : "['Elie Prudhomme','Julien Thomas','Pierre-Emmanuel Jouve']"} | json_instruct | {"type": "object", "properties": {"year": {"type": "string"}, "metaSession": {"type": "string"}, "pdf1page": {"type": "string"}, "pdfarticle": {"type": "string"}, "abstract": {"type": "string"}, "title": {"type": "string"}, "placeAut": {"type": "array", "items": {"type": "object", "properties": {"place": {"type": "string"}, "country": {"type": "string"}, "location": {"type": "object", "properties": {"lat": {"type": "string"}, "lon": {"type": "string"}}, "required": ["lat", "lon"]}}, "required": ["place", "country", "location"]}}, "series": {"type": "string"}, "location": {"type": "string"}, "place": {"type": "string"}, "booktitle": {"type": "string"}, "idArt": {"type": "string"}, "authors": {"type": "string"}}, "required": ["year", "metaSession", "pdf1page", "pdfarticle", "abstract", "title", "placeAut", "series", "location", "place", "booktitle", "idArt", "authors"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"name": {"type": "string"}, "assets": {"type": "array", "items": {"type": "object", "properties": {"files": {"type": "array", "items": {"type": "string"}}, "version": {"type": "string"}, "mainfile": {"type": "string"}}, "required": ["files", "version", "mainfile"]}}, "versions": {"type": "array", "items": {"type": "string"}}, "zip": {"type": "string"}, "mainfile": {"type": "string"}, "author": {"type": "string"}, "lastversion": {"type": "string"}, "homepage": {"type": "string"}, "description": {"type": "string"}, "github": {"type": "string"}}, "required": ["name", "assets", "versions", "zip", "mainfile", "author", "lastversion", "homepage", "description", "github"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "origamijs", "assets" : [{"files" : ["origami.js", "origami.min.js", "origami.min.js.map"], "version" : "0.3.0", "mainfile" : "origami.min.js"}, {"files" : ["origami.js", "origami.min.js", "origami.min.js.map"], "version" : "0.3.1", "mainfile" : "origami.min.js"}, {"files" : ["origami.js", "origami.min.js", "origami.min.js.map"], "version" : "0.3.2", "mainfile" : "origami.min.js"}, {"files" : ["origami.js", "origami.min.js", "origami.min.js.map"], "version" : "0.4.0", "mainfile" : "origami.min.js"}, {"files" : ["origami.js", "origami.min.js", "origami.min.js.map"], "version" : "0.4.1", "mainfile" : "origami.min.js"}, {"files" : ["origami.js", "origami.min.js", "origami.min.js.map"], "version" : "0.4.2", "mainfile" : "origami.min.js"}, {"files" : ["origami.js", "origami.min.js", "origami.min.js.map"], "version" : "0.4.3", "mainfile" : "origami.min.js"}, {"files" : ["origami.js", "origami.min.js", "origami.min.js.map"], "version" : "0.4.5", "mainfile" : "origami.min.js"}, {"files" : ["origami.js", "origami.min.js", "origami.min.js.map"], "version" : "0.4.6", "mainfile" : "origami.min.js"}, {"files" : ["origami.js", "origami.min.js", "origami.min.js.map"], "version" : "0.4.7", "mainfile" : "origami.min.js"}, {"files" : ["origami.js", "origami.min.js", "origami.min.js.map"], "version" : "0.5.0", "mainfile" : "origami.min.js"}, {"files" : ["origami.js", "origami.min.js", "origami.min.js.map"], "version" : "0.5.1", "mainfile" : "origami.min.js"}], "versions" : ["0.5.1", "0.5.0", "0.4.7", "0.4.6", "0.4.5", "0.4.3", "0.4.2", "0.4.1", "0.4.0", "0.3.2", "0.3.1", "0.3.0"], "zip" : "origamijs.zip", "mainfile" : "origami.min.js", "author" : "Raphael Amorim", "lastversion" : "0.5.1", "homepage" : "http://origamijs.com/", "description" : "HTML5 Canvas for Humans", "github" : "git+https://github.com/raphamorim/origami.js.git"} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "assets": {"type": "array", "items": {"type": "object", "properties": {"files": {"type": "array", "items": {"type": "string"}}, "version": {"type": "string"}, "mainfile": {"type": "string"}}, "required": ["files", "version", "mainfile"]}}, "versions": {"type": "array", "items": {"type": "string"}}, "zip": {"type": "string"}, "mainfile": {"type": "string"}, "author": {"type": "string"}, "lastversion": {"type": "string"}, "homepage": {"type": "string"}, "description": {"type": "string"}, "github": {"type": "string"}}, "required": ["name", "assets", "versions", "zip", "mainfile", "author", "lastversion", "homepage", "description", "github"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"/js/app.js": {"type": "string"}, "/css/app.css": {"type": "string"}, "/js/app.js.map": {"type": "string"}, "/css/app.css.map": {"type": "string"}}, "required": ["/js/app.js", "/css/app.css", "/js/app.js.map", "/css/app.css.map"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"/js/app.js" : "/js/app.js?id=26ab6c84ba9f7a0fca95", "/css/app.css" : "/css/app.css?id=1289e70da44103162aee", "/js/app.js.map" : "/js/app.js.map?id=b723f2cd1d1d12a13509", "/css/app.css.map" : "/css/app.css.map?id=b01bb5aeee6b30f93d44"} | json_instruct | {"type": "object", "properties": {"/js/app.js": {"type": "string"}, "/css/app.css": {"type": "string"}, "/js/app.js.map": {"type": "string"}, "/css/app.css.map": {"type": "string"}}, "required": ["/js/app.js", "/css/app.css", "/js/app.js.map", "/css/app.css.map"], "$schema": "http://json-schema.org/draft-07/schema#"} |
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": "array", "items": {"type": "number"}}}}}}, "required": ["type", "coordinates"]}, "properties": {"type": "object", "properties": {"organisation": {"type": "string"}, "reference": {"type": "string"}, "geography": {"type": "string"}, "name": {"type": "string"}, "geometry": {"type": "string"}, "slug": {"type": "string"}, "entity": {"type": "integer"}, "entry-date": {"type": "string"}}, "required": ["organisation", "reference", "geography", "name", "geometry", "slug", "entity", "entry-date"]}}, "required": ["type", "geometry", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"type" : "Feature", "geometry" : {"type" : "MultiPolygon", "coordinates" : [[[[-0.481975, 51.548328], [-0.481749, 51.547953], [-0.481963, 51.547888], [-0.481937, 51.547852], [-0.482272, 51.547759], [-0.482211, 51.5477], [-0.482267, 51.547672], [-0.482397, 51.54773], [-0.482446, 51.5478], [-0.482446, 51.547934], [-0.481975, 51.548328]]]]}, "properties" : {"organisation" : "local-authority-eng:HIL", "reference" : "12156/APP/2016/4647", "geography" : "brownfield-site:12156/APP/2016/4647", "name" : "Fassnidge Memorial Hall, High Street, Uxbridge, UB8 1JP", "geometry" : "MULTIPOLYGON (((-0.481975 51.548328,-0.481749 51.547953,-0.481963 51.547888,-0.481937 51.547852,-0.482272 51.547759,-0.482211 51.547700,-0.482267 51.547672,-0.482397 51.547730,-0.482446 51.547800,-0.482446 51.547934,-0.481975 51.548328)))", "slug" : "/brownfield-site/local-authority-eng/HIL/12156-APP-2016-4647", "entity" : 513759, "entry-date" : "2020-12-22"}} | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}}, "required": ["type", "coordinates"]}, "properties": {"type": "object", "properties": {"organisation": {"type": "string"}, "reference": {"type": "string"}, "geography": {"type": "string"}, "name": {"type": "string"}, "geometry": {"type": "string"}, "slug": {"type": "string"}, "entity": {"type": "integer"}, "entry-date": {"type": "string"}}, "required": ["organisation", "reference", "geography", "name", "geometry", "slug", "entity", "entry-date"]}}, "required": ["type", "geometry", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"header": {"type": "object", "properties": {"type": {"type": "string"}, "eventId": {"type": "string"}, "triggerTime": {"type": "string"}}, "required": ["type", "eventId", "triggerTime"]}, "device": {"type": "object", "properties": {"serialNumber": {"type": "string"}, "softwareVersion": {"type": "string"}, "hardwareVersion": {"type": "string"}}, "required": ["serialNumber", "softwareVersion", "hardwareVersion"]}, "rollCallData": {"type": "object", "properties": {"sensors": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "sensor": {"type": "string"}, "address": {"type": "string"}, "category": {"type": "string"}}, "required": ["id", "sensor", "address", "category"]}}}, "required": ["sensors"]}}, "required": ["header", "device", "rollCallData"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"header" : {"type" : "DISCOVERY", "eventId" : "383c44a4-adf7-4831-a4f5-f4019087e8db", "triggerTime" : "2020-11-29T03:48:31.218Z"}, "device" : {"serialNumber" : "383c44a4-adf7-4831-a4f5-f4019087e8db", "softwareVersion" : "1.0.0", "hardwareVersion" : "abc"}, "rollCallData" : {"sensors" : [{"id" : 1, "sensor" : "DHT22", "address" : "D2", "category" : "room"}]}} | json_instruct | {"type": "object", "properties": {"header": {"type": "object", "properties": {"type": {"type": "string"}, "eventId": {"type": "string"}, "triggerTime": {"type": "string"}}, "required": ["type", "eventId", "triggerTime"]}, "device": {"type": "object", "properties": {"serialNumber": {"type": "string"}, "softwareVersion": {"type": "string"}, "hardwareVersion": {"type": "string"}}, "required": ["serialNumber", "softwareVersion", "hardwareVersion"]}, "rollCallData": {"type": "object", "properties": {"sensors": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "sensor": {"type": "string"}, "address": {"type": "string"}, "category": {"type": "string"}}, "required": ["id", "sensor", "address", "category"]}}}, "required": ["sensors"]}}, "required": ["header", "device", "rollCallData"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}, "dev": {"type": "string"}, "debug": {"type": "string"}, "warnings": {"type": "string"}}, "required": ["start", "dev", "debug", "warnings"]}, "nodemonConfig": {"type": "object", "properties": {"ignore": {"type": "array", "items": {"type": "string"}}}, "required": ["ignore"]}, "keywords": {"type": "array", "items": {}}, "author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"axios": {"type": "string"}, "cors": {"type": "string"}, "dotenv": {"type": "string"}, "express": {"type": "string"}, "nodemon": {"type": "string"}}, "required": ["axios", "cors", "dotenv", "express", "nodemon"]}}, "required": ["name", "version", "description", "main", "scripts", "nodemonConfig", "keywords", "author", "license", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "efood-analytics", "version" : "1.0.0", "description" : "", "main" : "main.js", "scripts" : {"start" : "node index", "dev" : "nodemon index", "debug" : "node --inspect index", "warnings" : "node --trace-warnings index"}, "nodemonConfig" : {"ignore" : ["orders.json"]}, "keywords" : [], "author" : "", "license" : "ISC", "dependencies" : {"axios" : "^0.26.1", "cors" : "^2.8.5", "dotenv" : "^16.0.0", "express" : "^4.17.1", "nodemon" : "^2.0.14"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}, "dev": {"type": "string"}, "debug": {"type": "string"}, "warnings": {"type": "string"}}, "required": ["start", "dev", "debug", "warnings"]}, "nodemonConfig": {"type": "object", "properties": {"ignore": {"type": "array", "items": {"type": "string"}}}, "required": ["ignore"]}, "keywords": {"type": "array", "items": {}}, "author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"axios": {"type": "string"}, "cors": {"type": "string"}, "dotenv": {"type": "string"}, "express": {"type": "string"}, "nodemon": {"type": "string"}}, "required": ["axios", "cors", "dotenv", "express", "nodemon"]}}, "required": ["name", "version", "description", "main", "scripts", "nodemonConfig", "keywords", "author", "license", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"DRUM_SWING": {"type": "number"}, "DRUM_VOLUME": {"type": "number"}, "DRUM_TYPE": {"type": "string"}, "EXIT_NOTE": {"type": "integer"}, "MAPPED_NOTES": {"type": "object", "properties": {"60": {"type": "integer"}, "62": {"type": "integer"}, "64": {"type": "integer"}, "65": {"type": "integer"}, "12": {"type": "integer"}, "13": {"type": "integer"}}, "required": ["60", "62", "64", "65", "12", "13"]}, "KBD_NOTES": {"type": "object", "properties": {"1": {"type": "integer"}, "2": {"type": "integer"}, "3": {"type": "integer"}, "4": {"type": "integer"}, "q": {"type": "integer"}, "w": {"type": "integer"}}, "required": ["1", "2", "3", "4", "q", "w"]}, "MIDI_PORT_NAMES": {"type": "array", "items": {"type": "string"}}, "MIXER_IN": {"type": "integer"}, "MIXER_OUT": {"type": "integer"}, "TEST": {"type": "integer"}}, "required": ["DRUM_SWING", "DRUM_VOLUME", "DRUM_TYPE", "EXIT_NOTE", "MAPPED_NOTES", "KBD_NOTES", "MIDI_PORT_NAMES", "MIXER_IN", "MIXER_OUT", "TEST"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"DRUM_SWING" : 0.75, "DRUM_VOLUME" : 0.3, "DRUM_TYPE" : "rock", "EXIT_NOTE" : 59, "MAPPED_NOTES" : {"60" : 80, "62" : 90, "64" : 100, "65" : 110, "12" : 40, "13" : 50}, "KBD_NOTES" : {"1" : 60, "2" : 62, "3" : 64, "4" : 65, "q" : 12, "w" : 13}, "MIDI_PORT_NAMES" : ["BlueBoard", "Livid"], "MIXER_IN" : 33, "MIXER_OUT" : 98, "TEST" : 232} | json_instruct | {"type": "object", "properties": {"DRUM_SWING": {"type": "number"}, "DRUM_VOLUME": {"type": "number"}, "DRUM_TYPE": {"type": "string"}, "EXIT_NOTE": {"type": "integer"}, "MAPPED_NOTES": {"type": "object", "properties": {"60": {"type": "integer"}, "62": {"type": "integer"}, "64": {"type": "integer"}, "65": {"type": "integer"}, "12": {"type": "integer"}, "13": {"type": "integer"}}, "required": ["60", "62", "64", "65", "12", "13"]}, "KBD_NOTES": {"type": "object", "properties": {"1": {"type": "integer"}, "2": {"type": "integer"}, "3": {"type": "integer"}, "4": {"type": "integer"}, "q": {"type": "integer"}, "w": {"type": "integer"}}, "required": ["1", "2", "3", "4", "q", "w"]}, "MIDI_PORT_NAMES": {"type": "array", "items": {"type": "string"}}, "MIXER_IN": {"type": "integer"}, "MIXER_OUT": {"type": "integer"}, "TEST": {"type": "integer"}}, "required": ["DRUM_SWING", "DRUM_VOLUME", "DRUM_TYPE", "EXIT_NOTE", "MAPPED_NOTES", "KBD_NOTES", "MIDI_PORT_NAMES", "MIXER_IN", "MIXER_OUT", "TEST"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"ast": {"type": "null"}, "code": {"type": "string"}, "map": {"type": "null"}, "metadata": {"type": "object", "properties": {}, "required": []}, "sourceType": {"type": "string"}}, "required": ["ast", "code", "map", "metadata", "sourceType"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"ast" : null, "code" : "var __jsx = React.createElement;\nimport React from 'react';\nimport Grid from \"../../../../../packages/material-ui/src/Grid\";\nimport Button from \"../../../../../packages/material-ui/src/Button\";\nimport Tooltip from \"../../../../../packages/material-ui/src/Tooltip\";\nimport ClickAwayListener from \"../../../../../packages/material-ui/src/ClickAwayListener\";\n\nvar _ref = __jsx(Grid, {\n item: true\n}, __jsx(Tooltip, {\n disableFocusListener: true,\n title: \"Add\"\n}, __jsx(Button, null, \"Hover or touch\")));\n\nvar _ref2 = __jsx(Grid, {\n item: true\n}, __jsx(Tooltip, {\n disableHoverListener: true,\n title: \"Add\"\n}, __jsx(Button, null, \"Focus or touch\")));\n\nvar _ref3 = __jsx(Grid, {\n item: true\n}, __jsx(Tooltip, {\n disableFocusListener: true,\n disableTouchListener: true,\n title: \"Add\"\n}, __jsx(Button, null, \"Hover\")));\n\nexport default function TriggersTooltips() {\n var _React$useState = React.useState(false),\n open = _React$useState[0],\n setOpen = _React$useState[1];\n\n var handleTooltipClose = function handleTooltipClose() {\n setOpen(false);\n };\n\n var handleTooltipOpen = function handleTooltipOpen() {\n setOpen(true);\n };\n\n return __jsx(\"div\", null, __jsx(Grid, {\n container: true,\n justify: \"center\"\n }, _ref, _ref2, _ref3, __jsx(Grid, {\n item: true\n }, __jsx(ClickAwayListener, {\n onClickAway: handleTooltipClose\n }, __jsx(\"div\", null, __jsx(Tooltip, {\n PopperProps: {\n disablePortal: true\n },\n onClose: handleTooltipClose,\n open: open,\n disableFocusListener: true,\n disableHoverListener: true,\n disableTouchListener: true,\n title: \"Add\"\n }, __jsx(Button, {\n onClick: handleTooltipOpen\n }, \"Click\")))))));\n}", "map" : null, "metadata" : {}, "sourceType" : "module"} | json_instruct | {"type": "object", "properties": {"ast": {"type": "null"}, "code": {"type": "string"}, "map": {"type": "null"}, "metadata": {"type": "object", "properties": {}, "required": []}, "sourceType": {"type": "string"}}, "required": ["ast", "code", "map", "metadata", "sourceType"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"URL": {"type": "string"}, "Text": {"type": "string"}, "_id": {"type": "object", "properties": {"$oid": {"type": "string"}}, "required": ["$oid"]}}, "required": ["URL", "Text", "_id"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"URL" : "http://www.slate.com/blogs/browbeat/2015/08/21/the_final_girls_trailer_starring_taissa_farmiga_and_malin_akerman_promises.html", "Text" : "By now, the meta-horror film, in which characters poke fun at scary-movie tropes even as they embody them, is a well-established genre: Think Scream and its sequels, the Wayans brothers\u2019 Scary Movie , or the 2012 critical hit The Cabin in the Woods . But it looks like director Todd Strauss-Schulson may have found a new twist for the meta-horror formula, judging from the trailer for The Final Girls.\n\nTaissa Farmiga stars as a teenager who, along with a group of friends, is supernaturally drawn inside a 1980s cult classic slasher movie starring her dead mother (Malin Akerman). Since they already know the plot of the movie, the teens have to figure out a way to escape alive. With plenty of jokes about bad writing, fake blood, and the fact that \u201ceveryone who has sex in this movie dies,\u201d The Final Girls aims to please cinephiles and \u201980s nostalgists. Debuting at SXSW earlier this year, The Final Girls got fairly positive reviews, with Variety\u2019s Dennis Harvey calling it \u201cgood fun that should delight genre fans\u201d with \u201can accessible in-joke.\u201d The Final Girls will have a limited release in theaters and hit video on demand in October.", "_id" : {"$oid" : "55daf30804235215b082e47d"}} | json_instruct | {"type": "object", "properties": {"URL": {"type": "string"}, "Text": {"type": "string"}, "_id": {"type": "object", "properties": {"$oid": {"type": "string"}}, "required": ["$oid"]}}, "required": ["URL", "Text", "_id"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"name": {"type": "string"}, "type": {"type": "string"}, "description": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "homepage": {"type": "string"}, "license": {"type": "string"}, "require": {"type": "object", "properties": {"php": {"type": "string"}, "guzzlehttp/guzzle": {"type": "string"}, "guzzlehttp/psr7": {"type": "string"}, "firebase/php-jwt": {"type": "string"}, "webmozart/assert": {"type": "string"}}, "required": ["php", "guzzlehttp/guzzle", "guzzlehttp/psr7", "firebase/php-jwt", "webmozart/assert"]}, "autoload": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"Evance\\": {"type": "string"}}, "required": ["Evance\\"]}}, "required": ["psr-4"]}}, "required": ["name", "type", "description", "keywords", "homepage", "license", "require", "autoload"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "evance/apiclient", "type" : "library", "description" : "Client library for Evance APIs", "keywords" : ["evance"], "homepage" : "https://github.com/evanceit/evance-api-php-client", "license" : "MIT", "require" : {"php" : ">=5.6", "guzzlehttp/guzzle" : "^6.2", "guzzlehttp/psr7" : "^1.2", "firebase/php-jwt" : "~2.0|~3.0|~4.0", "webmozart/assert" : "^1.2"}, "autoload" : {"psr-4" : {"Evance\\" : "src/Evance/"}}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "type": {"type": "string"}, "description": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "homepage": {"type": "string"}, "license": {"type": "string"}, "require": {"type": "object", "properties": {"php": {"type": "string"}, "guzzlehttp/guzzle": {"type": "string"}, "guzzlehttp/psr7": {"type": "string"}, "firebase/php-jwt": {"type": "string"}, "webmozart/assert": {"type": "string"}}, "required": ["php", "guzzlehttp/guzzle", "guzzlehttp/psr7", "firebase/php-jwt", "webmozart/assert"]}, "autoload": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"Evance\\": {"type": "string"}}, "required": ["Evance\\"]}}, "required": ["psr-4"]}}, "required": ["name", "type", "description", "keywords", "homepage", "license", "require", "autoload"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"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"}, "website": {"type": "string"}, "email": {"type": "string"}, "provider": {"type": "null"}, "state": {"type": "string"}, "programs": {"type": "object", "properties": {"programs": {"type": "array", "items": {"type": "string"}}}, "required": ["programs"]}, "full_time_school": {"type": "boolean"}, "lon": {"type": "number"}, "lat": {"type": "number"}}, "required": ["name", "id", "address", "school_type", "legal_status", "fax", "phone", "website", "email", "provider", "state", "programs", "full_time_school", "lon", "lat"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "Stadtteilschule Oldenfelde", "id" : "HH-5660", "address" : "Delingsdorfer Weg 6, 22143 Hamburg", "school_type" : "Stadtteilschule", "legal_status" : 1, "fax" : "+49 40 428 86 63 69", "phone" : "+49 40 428 86 63 50", "website" : "http://www.sts-oldenfelde.de", "email" : "stadtteilschule-oldenfelde@bsb.hamburg.de", "provider" : null, "state" : "HH", "programs" : {"programs" : ["Be smart - don't Start"]}, "full_time_school" : true, "lon" : 10.15806, "lat" : 53.612642} | 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"}, "website": {"type": "string"}, "email": {"type": "string"}, "provider": {"type": "null"}, "state": {"type": "string"}, "programs": {"type": "object", "properties": {"programs": {"type": "array", "items": {"type": "string"}}}, "required": ["programs"]}, "full_time_school": {"type": "boolean"}, "lon": {"type": "number"}, "lat": {"type": "number"}}, "required": ["name", "id", "address", "school_type", "legal_status", "fax", "phone", "website", "email", "provider", "state", "programs", "full_time_school", "lon", "lat"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"githubId": {"type": "string"}, "name": {"type": "string"}, "bio": {"type": "string"}}, "required": ["githubId", "name", "bio"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"githubId" : "sdhiman99", "name" : "Shivansh Dhiman", "bio" : "404"} | json_instruct | {"type": "object", "properties": {"githubId": {"type": "string"}, "name": {"type": "string"}, "bio": {"type": "string"}}, "required": ["githubId", "name", "bio"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"type": {"type": "string"}, "pattern": {"type": "array", "items": {"type": "string"}}, "component": {"type": "string"}, "quantity": {"type": "integer"}}, "required": ["type", "pattern", "component", "quantity"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"type" : "randores:item", "pattern" : ["###", "# #", "# #"], "component" : "randores.items.leggings", "quantity" : 1} | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "pattern": {"type": "array", "items": {"type": "string"}}, "component": {"type": "string"}, "quantity": {"type": "integer"}}, "required": ["type", "pattern", "component", "quantity"], "$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"}, "AddressInfo": {"type": "object", "properties": {"ID": {"type": "integer"}, "Title": {"type": "string"}, "AddressLine1": {"type": "string"}, "Town": {"type": "string"}, "StateOrProvince": {"type": "string"}, "Postcode": {"type": "string"}, "CountryID": {"type": "integer"}, "Latitude": {"type": "number"}, "Longitude": {"type": "number"}, "AccessComments": {"type": "string"}, "DistanceUnit": {"type": "integer"}}, "required": ["ID", "Title", "AddressLine1", "Town", "StateOrProvince", "Postcode", "CountryID", "Latitude", "Longitude", "AccessComments", "DistanceUnit"]}, "Connections": {"type": "array", "items": {"type": "object", "properties": {"ID": {"type": "integer"}, "ConnectionTypeID": {"type": "integer"}, "StatusTypeID": {"type": "integer"}, "LevelID": {"type": "integer"}, "Amps": {"type": "integer"}, "Voltage": {"type": "integer"}, "PowerKW": {"type": "integer"}, "CurrentTypeID": {"type": "integer"}, "Quantity": {"type": "integer"}}, "required": ["ID", "ConnectionTypeID", "StatusTypeID", "LevelID", "Amps", "Voltage", "PowerKW", "CurrentTypeID", "Quantity"]}}, "NumberOfPoints": {"type": "integer"}, "StatusTypeID": {"type": "integer"}, "DateLastStatusUpdate": {"type": "string"}, "DataQualityLevel": {"type": "integer"}, "DateCreated": {"type": "string"}, "SubmissionStatusTypeID": {"type": "integer"}}, "required": ["IsRecentlyVerified", "ID", "UUID", "DataProviderID", "OperatorID", "UsageTypeID", "AddressInfo", "Connections", "NumberOfPoints", "StatusTypeID", "DateLastStatusUpdate", "DataQualityLevel", "DateCreated", "SubmissionStatusTypeID"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"IsRecentlyVerified" : false, "ID" : 105298, "UUID" : "8ABC67F3-1F6A-427B-8692-F2F4E2C4875C", "DataProviderID" : 1, "OperatorID" : 72, "UsageTypeID" : 4, "AddressInfo" : {"ID" : 105644, "Title" : "Am Grindel", "AddressLine1" : "Am Grindel 1", "Town" : "Rheinbach", "StateOrProvince" : "Rhein-Sieg-Kreis", "Postcode" : "53359", "CountryID" : 87, "Latitude" : 50.62650246523384, "Longitude" : 6.944766238098168, "AccessComments" : "24/7 nutzbar mit TankE App oder e-regio App der Rheinenergie.", "DistanceUnit" : 0}, "Connections" : [{"ID" : 148449, "ConnectionTypeID" : 25, "StatusTypeID" : 50, "LevelID" : 2, "Amps" : 32, "Voltage" : 400, "PowerKW" : 22, "CurrentTypeID" : 20, "Quantity" : 2}], "NumberOfPoints" : 2, "StatusTypeID" : 50, "DateLastStatusUpdate" : "2018-06-05T05:09:00Z", "DataQualityLevel" : 1, "DateCreated" : "2018-06-05T05:09:00Z", "SubmissionStatusTypeID" : 200} | 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"}, "Title": {"type": "string"}, "AddressLine1": {"type": "string"}, "Town": {"type": "string"}, "StateOrProvince": {"type": "string"}, "Postcode": {"type": "string"}, "CountryID": {"type": "integer"}, "Latitude": {"type": "number"}, "Longitude": {"type": "number"}, "AccessComments": {"type": "string"}, "DistanceUnit": {"type": "integer"}}, "required": ["ID", "Title", "AddressLine1", "Town", "StateOrProvince", "Postcode", "CountryID", "Latitude", "Longitude", "AccessComments", "DistanceUnit"]}, "Connections": {"type": "array", "items": {"type": "object", "properties": {"ID": {"type": "integer"}, "ConnectionTypeID": {"type": "integer"}, "StatusTypeID": {"type": "integer"}, "LevelID": {"type": "integer"}, "Amps": {"type": "integer"}, "Voltage": {"type": "integer"}, "PowerKW": {"type": "integer"}, "CurrentTypeID": {"type": "integer"}, "Quantity": {"type": "integer"}}, "required": ["ID", "ConnectionTypeID", "StatusTypeID", "LevelID", "Amps", "Voltage", "PowerKW", "CurrentTypeID", "Quantity"]}}, "NumberOfPoints": {"type": "integer"}, "StatusTypeID": {"type": "integer"}, "DateLastStatusUpdate": {"type": "string"}, "DataQualityLevel": {"type": "integer"}, "DateCreated": {"type": "string"}, "SubmissionStatusTypeID": {"type": "integer"}}, "required": ["IsRecentlyVerified", "ID", "UUID", "DataProviderID", "OperatorID", "UsageTypeID", "AddressInfo", "Connections", "NumberOfPoints", "StatusTypeID", "DateLastStatusUpdate", "DataQualityLevel", "DateCreated", "SubmissionStatusTypeID"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"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": "object", "properties": {"code": {"type": "integer"}, "url": {"type": "string"}, "view": {"type": "string"}}, "required": ["code", "url", "view"]}}, "required": ["type", "geometry", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"type" : "Feature", "geometry" : {"type" : "Polygon", "coordinates" : [[[123.5, 31.25], [123.5, 31.333333333333332], [123.625, 31.333333333333332], [123.625, 31.25], [123.5, 31.25]]]}, "properties" : {"code" : 462374, "url" : "http://madefor.github.io/0410/api/v1/462374.geojson", "view" : "https://github.com/madefor/0410/blob/gh-pages/api/v1/462374.geojson"}} | 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": "object", "properties": {"code": {"type": "integer"}, "url": {"type": "string"}, "view": {"type": "string"}}, "required": ["code", "url", "view"]}}, "required": ["type", "geometry", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "license": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}}, "require": {"type": "object", "properties": {"php": {"type": "string"}}, "required": ["php"]}, "require-dev": {"type": "object", "properties": {"phpunit/phpunit": {"type": "string"}}, "required": ["phpunit/phpunit"]}, "autoload": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"Tres\\config\\": {"type": "string"}}, "required": ["Tres\\config\\"]}}, "required": ["psr-4"]}, "support": {"type": "object", "properties": {"documentation": {"type": "string"}, "issues": {"type": "string"}, "source": {"type": "string"}}, "required": ["documentation", "issues", "source"]}}, "required": ["name", "description", "license", "authors", "require", "require-dev", "autoload", "support"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "tres-framework/config", "description" : "Easily load your configuration files.", "license" : "MIT", "authors" : [{"name" : "pedzed", "email" : "pedzed@tresframework.com"}], "require" : {"php" : ">=5.4.0"}, "require-dev" : {"phpunit/phpunit" : "^4.7"}, "autoload" : {"psr-4" : {"Tres\\config\\" : "src/"}}, "support" : {"documentation" : "https://github.com/tres-framework/docs", "issues" : "https://github.com/tres-framework/config/issues", "source" : "https://github.com/tres-framework/config"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "license": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}}, "require": {"type": "object", "properties": {"php": {"type": "string"}}, "required": ["php"]}, "require-dev": {"type": "object", "properties": {"phpunit/phpunit": {"type": "string"}}, "required": ["phpunit/phpunit"]}, "autoload": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"Tres\\config\\": {"type": "string"}}, "required": ["Tres\\config\\"]}}, "required": ["psr-4"]}, "support": {"type": "object", "properties": {"documentation": {"type": "string"}, "issues": {"type": "string"}, "source": {"type": "string"}}, "required": ["documentation", "issues", "source"]}}, "required": ["name", "description", "license", "authors", "require", "require-dev", "autoload", "support"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"ExtraField1": {"type": "string"}, "ExtraField2": {"type": "string"}, "ExtraField3": {"type": "string"}, "ExtraField4": {"type": "array", "items": {}}, "ExtraField5": {"type": "array", "items": {}}, "ExtraField6": {"type": "string"}, "ExtraField7": {"type": "string"}, "ExtraField8": {"type": "array", "items": {}}, "ExtraField9": {"type": "array", "items": {}}, "ExtraField10": {"type": "array", "items": {}}, "ExtraField11": {"type": "array", "items": {}}, "ExtraField12": {"type": "array", "items": {}}, "ExtraField13": {"type": "string"}}, "required": ["ExtraField1", "ExtraField2", "ExtraField3", "ExtraField4", "ExtraField5", "ExtraField6", "ExtraField7", "ExtraField8", "ExtraField9", "ExtraField10", "ExtraField11", "ExtraField12", "ExtraField13"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"ExtraField1" : "123456789", "ExtraField2" : "more custom 2", "ExtraField3" : "and one more 3", "ExtraField4" : [], "ExtraField5" : [], "ExtraField6" : "Extra Field 6 ", "ExtraField7" : "xtr4 f13ld 7 ", "ExtraField8" : [], "ExtraField9" : [], "ExtraField10" : [], "ExtraField11" : [], "ExtraField12" : [], "ExtraField13" : "extreFIeld13"} | json_instruct | {"type": "object", "properties": {"ExtraField1": {"type": "string"}, "ExtraField2": {"type": "string"}, "ExtraField3": {"type": "string"}, "ExtraField4": {"type": "array", "items": {}}, "ExtraField5": {"type": "array", "items": {}}, "ExtraField6": {"type": "string"}, "ExtraField7": {"type": "string"}, "ExtraField8": {"type": "array", "items": {}}, "ExtraField9": {"type": "array", "items": {}}, "ExtraField10": {"type": "array", "items": {}}, "ExtraField11": {"type": "array", "items": {}}, "ExtraField12": {"type": "array", "items": {}}, "ExtraField13": {"type": "string"}}, "required": ["ExtraField1", "ExtraField2", "ExtraField3", "ExtraField4", "ExtraField5", "ExtraField6", "ExtraField7", "ExtraField8", "ExtraField9", "ExtraField10", "ExtraField11", "ExtraField12", "ExtraField13"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"types": {"type": "object", "properties": {"Server": {"type": "object", "properties": {"types": {"type": "object", "properties": {"Simple HTTP": {"type": "object", "properties": {"modules": {"type": "array", "items": {"type": "string"}}, "defaultModules": {"type": "array", "items": {"type": "string"}}, "utils": {"type": "array", "items": {"type": "string"}}, "defaultUtils": {"type": "null"}}, "required": ["modules", "defaultModules", "utils", "defaultUtils"]}, "MVC": {"type": "object", "properties": {"modules": {"type": "array", "items": {"type": "string"}}, "defaultModules": {"type": "array", "items": {"type": "string"}}, "utils": {"type": "array", "items": {"type": "string"}}, "defaultUtils": {"type": "null"}}, "required": ["modules", "defaultModules", "utils", "defaultUtils"]}}, "required": ["Simple HTTP", "MVC"]}}, "required": ["types"]}, "CLI": {"type": "object", "properties": {"modules": {"type": "array", "items": {"type": "string"}}, "defaultModules": {"type": "array", "items": {"type": "string"}}, "utils": {"type": "array", "items": {"type": "string"}}, "defaultUtils": {"type": "null"}}, "required": ["modules", "defaultModules", "utils", "defaultUtils"]}, "Library": {"type": "object", "properties": {"modules": {"type": "array", "items": {"type": "string"}}, "defaultModules": {"type": "array", "items": {"type": "string"}}, "utils": {"type": "array", "items": {"type": "string"}}, "defaultUtils": {"type": "null"}}, "required": ["modules", "defaultModules", "utils", "defaultUtils"]}}, "required": ["Server", "CLI", "Library"]}, "editor": {"type": "string"}}, "required": ["types", "editor"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"types" : {"Server" : {"types" : {"Simple HTTP" : {"modules" : ["express", "hapi", "koa", "restify", "socket.io", "redis", "mongoose"], "defaultModules" : ["express", "socket.io"], "utils" : ["underscore", "lodash", "pm2", "forever", "nodemailer"], "defaultUtils" : null}, "MVC" : {"modules" : ["sails", "total.js", "partial.js", "koa", "locomotive", "express", "flatiron", "express.io", "socketstream", "geddy"], "defaultModules" : ["sails"], "utils" : ["underscore", "lodash", "pm2", "forever", "nodemailer"], "defaultUtils" : null}}}, "CLI" : {"modules" : ["commander", "optimist", "minimist", "yargs", "prompt", "shelljs", "glob", "mkdirp", "fs-extra"], "defaultModules" : ["commander", "shelljs"], "utils" : ["underscore", "lodash", "inquirer", "del", "chalk", "colors"], "defaultUtils" : null}, "Library" : {"modules" : ["gulp", "grunt", "mocha", "tape", "q", "debug", "karma", "jshint", "jslint", "standard", "jscs"], "defaultModules" : ["tape", "jscs"], "utils" : ["underscore", "lodash", "async"], "defaultUtils" : null}}, "editor" : "nano $FILENAME$"} | json_instruct | {"type": "object", "properties": {"types": {"type": "object", "properties": {"Server": {"type": "object", "properties": {"types": {"type": "object", "properties": {"Simple HTTP": {"type": "object", "properties": {"modules": {"type": "array", "items": {"type": "string"}}, "defaultModules": {"type": "array", "items": {"type": "string"}}, "utils": {"type": "array", "items": {"type": "string"}}, "defaultUtils": {"type": "null"}}, "required": ["modules", "defaultModules", "utils", "defaultUtils"]}, "MVC": {"type": "object", "properties": {"modules": {"type": "array", "items": {"type": "string"}}, "defaultModules": {"type": "array", "items": {"type": "string"}}, "utils": {"type": "array", "items": {"type": "string"}}, "defaultUtils": {"type": "null"}}, "required": ["modules", "defaultModules", "utils", "defaultUtils"]}}, "required": ["Simple HTTP", "MVC"]}}, "required": ["types"]}, "CLI": {"type": "object", "properties": {"modules": {"type": "array", "items": {"type": "string"}}, "defaultModules": {"type": "array", "items": {"type": "string"}}, "utils": {"type": "array", "items": {"type": "string"}}, "defaultUtils": {"type": "null"}}, "required": ["modules", "defaultModules", "utils", "defaultUtils"]}, "Library": {"type": "object", "properties": {"modules": {"type": "array", "items": {"type": "string"}}, "defaultModules": {"type": "array", "items": {"type": "string"}}, "utils": {"type": "array", "items": {"type": "string"}}, "defaultUtils": {"type": "null"}}, "required": ["modules", "defaultModules", "utils", "defaultUtils"]}}, "required": ["Server", "CLI", "Library"]}, "editor": {"type": "string"}}, "required": ["types", "editor"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"num_states": {"type": "integer"}, "batch_size": {"type": "integer"}, "index": {"type": "array", "items": {}}}, "required": ["num_states", "batch_size", "index"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"num_states" : 7, "batch_size" : 30000000, "index" : []} | json_instruct | {"type": "object", "properties": {"num_states": {"type": "integer"}, "batch_size": {"type": "integer"}, "index": {"type": "array", "items": {}}}, "required": ["num_states", "batch_size", "index"], "$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"}, "private": {"type": "boolean"}, "dependencies": {"type": "object", "properties": {"preact": {"type": "string"}, "preact-compat": {"type": "string"}, "preact-router": {"type": "string"}}, "required": ["preact", "preact-compat", "preact-router"]}, "devDependencies": {"type": "object", "properties": {"eslint": {"type": "string"}, "eslint-config-synacor": {"type": "string"}, "if-env": {"type": "string"}, "preact-cli": {"type": "string"}}, "required": ["eslint", "eslint-config-synacor", "if-env", "preact-cli"]}}, "required": ["name", "version", "private", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "preact-prerender", "version" : "0.0.1", "private" : true, "dependencies" : {"preact" : "latest", "preact-compat" : "latest", "preact-router" : "latest"}, "devDependencies" : {"eslint" : "^4.1.1", "eslint-config-synacor" : "^1.0.1", "if-env" : "^1.0.0", "preact-cli" : "file:../../../"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "private": {"type": "boolean"}, "dependencies": {"type": "object", "properties": {"preact": {"type": "string"}, "preact-compat": {"type": "string"}, "preact-router": {"type": "string"}}, "required": ["preact", "preact-compat", "preact-router"]}, "devDependencies": {"type": "object", "properties": {"eslint": {"type": "string"}, "eslint-config-synacor": {"type": "string"}, "if-env": {"type": "string"}, "preact-cli": {"type": "string"}}, "required": ["eslint", "eslint-config-synacor", "if-env", "preact-cli"]}}, "required": ["name", "version", "private", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"dist/index.cjs.js": {"type": "object", "properties": {"bundled": {"type": "integer"}, "minified": {"type": "integer"}, "gzipped": {"type": "integer"}}, "required": ["bundled", "minified", "gzipped"]}, "dist/index.esm.js": {"type": "object", "properties": {"bundled": {"type": "integer"}, "minified": {"type": "integer"}, "gzipped": {"type": "integer"}, "treeshaked": {"type": "object", "properties": {"rollup": {"type": "object", "properties": {"code": {"type": "integer"}, "import_statements": {"type": "integer"}}, "required": ["code", "import_statements"]}, "webpack": {"type": "object", "properties": {"code": {"type": "integer"}}, "required": ["code"]}}, "required": ["rollup", "webpack"]}}, "required": ["bundled", "minified", "gzipped", "treeshaked"]}, "index.cjs.js": {"type": "object", "properties": {"bundled": {"type": "integer"}, "minified": {"type": "integer"}, "gzipped": {"type": "integer"}}, "required": ["bundled", "minified", "gzipped"]}, "index.esm.js": {"type": "object", "properties": {"bundled": {"type": "integer"}, "minified": {"type": "integer"}, "gzipped": {"type": "integer"}, "treeshaked": {"type": "object", "properties": {"rollup": {"type": "object", "properties": {"code": {"type": "integer"}, "import_statements": {"type": "integer"}}, "required": ["code", "import_statements"]}, "webpack": {"type": "object", "properties": {"code": {"type": "integer"}}, "required": ["code"]}}, "required": ["rollup", "webpack"]}}, "required": ["bundled", "minified", "gzipped", "treeshaked"]}}, "required": ["dist/index.cjs.js", "dist/index.esm.js", "index.cjs.js", "index.esm.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"dist/index.cjs.js" : {"bundled" : 15357, "minified" : 10776, "gzipped" : 3221}, "dist/index.esm.js" : {"bundled" : 14658, "minified" : 10139, "gzipped" : 3117, "treeshaked" : {"rollup" : {"code" : 8359, "import_statements" : 457}, "webpack" : {"code" : 9895}}}, "index.cjs.js" : {"bundled" : 15357, "minified" : 10776, "gzipped" : 3221}, "index.esm.js" : {"bundled" : 14658, "minified" : 10139, "gzipped" : 3117, "treeshaked" : {"rollup" : {"code" : 8359, "import_statements" : 457}, "webpack" : {"code" : 9895}}}} | json_instruct | {"type": "object", "properties": {"dist/index.cjs.js": {"type": "object", "properties": {"bundled": {"type": "integer"}, "minified": {"type": "integer"}, "gzipped": {"type": "integer"}}, "required": ["bundled", "minified", "gzipped"]}, "dist/index.esm.js": {"type": "object", "properties": {"bundled": {"type": "integer"}, "minified": {"type": "integer"}, "gzipped": {"type": "integer"}, "treeshaked": {"type": "object", "properties": {"rollup": {"type": "object", "properties": {"code": {"type": "integer"}, "import_statements": {"type": "integer"}}, "required": ["code", "import_statements"]}, "webpack": {"type": "object", "properties": {"code": {"type": "integer"}}, "required": ["code"]}}, "required": ["rollup", "webpack"]}}, "required": ["bundled", "minified", "gzipped", "treeshaked"]}, "index.cjs.js": {"type": "object", "properties": {"bundled": {"type": "integer"}, "minified": {"type": "integer"}, "gzipped": {"type": "integer"}}, "required": ["bundled", "minified", "gzipped"]}, "index.esm.js": {"type": "object", "properties": {"bundled": {"type": "integer"}, "minified": {"type": "integer"}, "gzipped": {"type": "integer"}, "treeshaked": {"type": "object", "properties": {"rollup": {"type": "object", "properties": {"code": {"type": "integer"}, "import_statements": {"type": "integer"}}, "required": ["code", "import_statements"]}, "webpack": {"type": "object", "properties": {"code": {"type": "integer"}}, "required": ["code"]}}, "required": ["rollup", "webpack"]}}, "required": ["bundled", "minified", "gzipped", "treeshaked"]}}, "required": ["dist/index.cjs.js", "dist/index.esm.js", "index.cjs.js", "index.esm.js"], "$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#"}
| [["231124411598", "\u79cd\u755c\u573a\u865a\u62df\u751f\u6d3b\u533a", "123", "0"]] | json_instruct | {"type": "array", "items": {"type": "array", "items": {"type": "string"}}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "type": {"type": "string"}, "license": {"type": "string"}, "homepage": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "homepage": {"type": "string"}}, "required": ["name", "homepage"]}}, "repositories": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}}, "require": {"type": "object", "properties": {"php": {"type": "string"}, "ext-curl": {"type": "string"}, "ext-json": {"type": "string"}, "bitwasp/bitcoin_v0071": {"type": "string"}, "drslump/Protobuf-PHP": {"type": "string"}}, "required": ["php", "ext-curl", "ext-json", "bitwasp/bitcoin_v0071", "drslump/Protobuf-PHP"]}, "require-dev": {"type": "object", "properties": {"phpunit/phpunit": {"type": "string"}, "fabpot/goutte": {"type": "string"}}, "required": ["phpunit/phpunit", "fabpot/goutte"]}, "autoload": {"type": "object", "properties": {"psr-0": {"type": "object", "properties": {"BlockCypher": {"type": "string"}}, "required": ["BlockCypher"]}}, "required": ["psr-0"]}}, "required": ["name", "description", "keywords", "type", "license", "homepage", "authors", "repositories", "require", "require-dev", "autoload"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "blockcypher/php-client_v150", "description" : "BlockCypher's PHP SDK for REST API", "keywords" : ["blockcypher", "bitcoin", "rest", "sdk", "blockchain"], "type" : "library", "license" : "Apache2", "homepage" : "https://github.com/blockcypher/php-client", "authors" : [{"name" : "BlockCypher", "homepage" : "https://github.com/blockcypher/php-client/contributors"}], "repositories" : [{"type" : "vcs", "url" : "https://github.com/hopkinskong/bitcoin-php.git"}, {"type" : "vcs", "url" : "https://github.com/drslump/Protobuf-PHP.git"}], "require" : {"php" : ">=5.5.0", "ext-curl" : "*", "ext-json" : "*", "bitwasp/bitcoin_v0071" : "dev-master", "drslump/Protobuf-PHP" : "dev-master"}, "require-dev" : {"phpunit/phpunit" : "4.6.*", "fabpot/goutte" : "1.0.*"}, "autoload" : {"psr-0" : {"BlockCypher" : "lib/"}}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "type": {"type": "string"}, "license": {"type": "string"}, "homepage": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "homepage": {"type": "string"}}, "required": ["name", "homepage"]}}, "repositories": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}}, "require": {"type": "object", "properties": {"php": {"type": "string"}, "ext-curl": {"type": "string"}, "ext-json": {"type": "string"}, "bitwasp/bitcoin_v0071": {"type": "string"}, "drslump/Protobuf-PHP": {"type": "string"}}, "required": ["php", "ext-curl", "ext-json", "bitwasp/bitcoin_v0071", "drslump/Protobuf-PHP"]}, "require-dev": {"type": "object", "properties": {"phpunit/phpunit": {"type": "string"}, "fabpot/goutte": {"type": "string"}}, "required": ["phpunit/phpunit", "fabpot/goutte"]}, "autoload": {"type": "object", "properties": {"psr-0": {"type": "object", "properties": {"BlockCypher": {"type": "string"}}, "required": ["BlockCypher"]}}, "required": ["psr-0"]}}, "required": ["name", "description", "keywords", "type", "license", "homepage", "authors", "repositories", "require", "require-dev", "autoload"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"type": {"type": "string"}, "id": {"type": "string"}, "properties": {"type": "object", "properties": {"addr:city": {"type": "string"}, "addr:housenumber": {"type": "string"}, "addr:street": {"type": "string"}, "addr:suburb": {"type": "string"}, "amenity": {"type": "string"}, "currency:EUR": {"type": "string"}, "opening_hours": {"type": "string"}, "operator": {"type": "string"}, "payment:cash": {"type": "string"}, "payment:coins": {"type": "string"}, "payment:notes": {"type": "string"}, "vending": {"type": "string"}, "id": {"type": "string"}}, "required": ["addr:city", "addr:housenumber", "addr:street", "addr:suburb", "amenity", "currency:EUR", "opening_hours", "operator", "payment:cash", "payment:coins", "payment:notes", "vending", "id"]}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "number"}}}, "required": ["type", "coordinates"]}}, "required": ["type", "id", "properties", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"type" : "Feature", "id" : "node/6374483735", "properties" : {"addr:city" : "Endingen am Kaiserstuhl", "addr:housenumber" : "10", "addr:street" : "Bahnhofstra\u00dfe", "addr:suburb" : "K\u00f6nigschaffhausen", "amenity" : "vending_machine", "currency:EUR" : "yes", "opening_hours" : "24/7", "operator" : "Metzgerei Sexauer", "payment:cash" : "yes", "payment:coins" : "yes", "payment:notes" : "yes", "vending" : "food;sausage;meat;drinks;eggs", "id" : "node/6374483735"}, "geometry" : {"type" : "Point", "coordinates" : [7.6580706, 48.136973]}} | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "id": {"type": "string"}, "properties": {"type": "object", "properties": {"addr:city": {"type": "string"}, "addr:housenumber": {"type": "string"}, "addr:street": {"type": "string"}, "addr:suburb": {"type": "string"}, "amenity": {"type": "string"}, "currency:EUR": {"type": "string"}, "opening_hours": {"type": "string"}, "operator": {"type": "string"}, "payment:cash": {"type": "string"}, "payment:coins": {"type": "string"}, "payment:notes": {"type": "string"}, "vending": {"type": "string"}, "id": {"type": "string"}}, "required": ["addr:city", "addr:housenumber", "addr:street", "addr:suburb", "amenity", "currency:EUR", "opening_hours", "operator", "payment:cash", "payment:coins", "payment:notes", "vending", "id"]}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "number"}}}, "required": ["type", "coordinates"]}}, "required": ["type", "id", "properties", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"id": {"type": "string"}, "type": {"type": "string"}, "start": {"type": "string"}, "end": {"type": "string"}, "data": {"type": "object", "properties": {}, "required": []}}, "required": ["id", "type", "start", "end", "data"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "r910", "type" : "GOAL", "start" : "n250", "end" : "n909", "data" : {}} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "type": {"type": "string"}, "start": {"type": "string"}, "end": {"type": "string"}, "data": {"type": "object", "properties": {}, "required": []}}, "required": ["id", "type", "start", "end", "data"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"textures": {"type": "object", "properties": {"layer0": {"type": "string"}}, "required": ["layer0"]}, "parent": {"type": "string"}}, "required": ["textures", "parent"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"textures" : {"layer0" : "spartanfire:items/saber_dragonsteel_fire"}, "parent" : "spartanweaponry:item/saber_wood"} | json_instruct | {"type": "object", "properties": {"textures": {"type": "object", "properties": {"layer0": {"type": "string"}}, "required": ["layer0"]}, "parent": {"type": "string"}}, "required": ["textures", "parent"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"lastUpdated": {"type": "integer"}, "username": {"type": "string"}, "scores": {"type": "array", "items": {"type": "object", "properties": {"xp": {"type": "integer"}, "rank": {"type": "integer"}, "cardId": {"type": "integer"}}, "required": ["xp", "rank", "cardId"]}}}, "required": ["lastUpdated", "username", "scores"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"lastUpdated" : 1655019279666, "username" : "sealmcsealface", "scores" : [{"xp" : 8516, "rank" : 471, "cardId" : 171}]} | json_instruct | {"type": "object", "properties": {"lastUpdated": {"type": "integer"}, "username": {"type": "string"}, "scores": {"type": "array", "items": {"type": "object", "properties": {"xp": {"type": "integer"}, "rank": {"type": "integer"}, "cardId": {"type": "integer"}}, "required": ["xp", "rank", "cardId"]}}}, "required": ["lastUpdated", "username", "scores"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"goals": {"type": "array", "items": {"type": "object", "properties": {"object": {"type": "string"}, "target": {"type": "string"}, "state": {"type": "string"}, "position": {"type": "string"}, "tolerance": {"type": "integer"}}, "required": ["object", "target", "state", "position", "tolerance"]}}}, "required": ["goals"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"goals" : [{"object" : "milk", "target" : "fridge", "state" : "", "position" : "", "tolerance" : 0}, {"object" : "fridge", "target" : "", "state" : "open", "position" : "", "tolerance" : 0}]} | json_instruct | {"type": "object", "properties": {"goals": {"type": "array", "items": {"type": "object", "properties": {"object": {"type": "string"}, "target": {"type": "string"}, "state": {"type": "string"}, "position": {"type": "string"}, "tolerance": {"type": "integer"}}, "required": ["object", "target", "state", "position", "tolerance"]}}}, "required": ["goals"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"id_0486": {"type": "object", "properties": {"publicdate": {"type": "string"}, "title": {"type": "string"}}, "required": ["publicdate", "title"]}}, "required": ["id_0486"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id_0486" : {"publicdate" : "2007-02-09 16:41:54", "title" : "Le tour du monde en quatre-vingts jours"}} | json_instruct | {"type": "object", "properties": {"id_0486": {"type": "object", "properties": {"publicdate": {"type": "string"}, "title": {"type": "string"}}, "required": ["publicdate", "title"]}}, "required": ["id_0486"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"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": ["src:alt_label", "src:geom", "wof:geomhash", "wof:id", "wof:repo"]}, "bbox": {"type": "array", "items": {"type": "number"}}, "geometry": {"type": "object", "properties": {"coordinates": {"type": "array", "items": {"type": "number"}}, "type": {"type": "string"}}, "required": ["coordinates", "type"]}}, "required": ["id", "type", "properties", "bbox", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : 404417193, "type" : "Feature", "properties" : {"src:alt_label" : "quattroshapes_pg", "src:geom" : "quattroshapes_pg", "wof:geomhash" : "2e740152c511dc5bcbf425eb9b607978", "wof:id" : 404417193, "wof:repo" : "whosonfirst-data-admin-fr"}, "bbox" : [3.79889, 45.1, 3.79889, 45.1], "geometry" : {"coordinates" : [3.79889, 45.1], "type" : "Point"}} | 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": ["src:alt_label", "src:geom", "wof:geomhash", "wof:id", "wof:repo"]}, "bbox": {"type": "array", "items": {"type": "number"}}, "geometry": {"type": "object", "properties": {"coordinates": {"type": "array", "items": {"type": "number"}}, "type": {"type": "string"}}, "required": ["coordinates", "type"]}}, "required": ["id", "type", "properties", "bbox", "geometry"], "$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": {"postal_code": {"type": "string"}, "place_name": {"type": "string"}, "place_type": {"type": "string"}, "county": {"type": "string"}, "state": {"type": "string"}, "city": {"type": "string"}}, "required": ["postal_code", "place_name", "place_type", "county", "state", "city"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"postal_code" : "23083", "place_name" : "El Mezquitito INVI", "place_type" : "Colonia", "county" : "La Paz", "state" : "Baja California Sur", "city" : "La Paz"}, {"postal_code" : "23083", "place_name" : "San Isidro Coto Residencial", "place_type" : "Fraccionamiento", "county" : "La Paz", "state" : "Baja California Sur", "city" : "La Paz"}, {"postal_code" : "23083", "place_name" : "Solidaridad Mezquitito I, II", "place_type" : "Colonia", "county" : "La Paz", "state" : "Baja California Sur", "city" : "La Paz"}, {"postal_code" : "23083", "place_name" : "San Fernando", "place_type" : "Colonia", "county" : "La Paz", "state" : "Baja California Sur", "city" : "La Paz"}, {"postal_code" : "23083", "place_name" : "Misiones II", "place_type" : "Fraccionamiento", "county" : "La Paz", "state" : "Baja California Sur", "city" : "La Paz"}, {"postal_code" : "23083", "place_name" : "Misiones", "place_type" : "Fraccionamiento", "county" : "La Paz", "state" : "Baja California Sur", "city" : "La Paz"}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"postal_code": {"type": "string"}, "place_name": {"type": "string"}, "place_type": {"type": "string"}, "county": {"type": "string"}, "state": {"type": "string"}, "city": {"type": "string"}}, "required": ["postal_code", "place_name", "place_type", "county", "state", "city"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"examine": {"type": "string"}}, "required": ["examine"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"examine" : "The most traditional snowman hat."} | json_instruct | {"type": "object", "properties": {"examine": {"type": "string"}}, "required": ["examine"], "$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": {"bbox": {"type": "string"}, "used": {"type": "boolean"}, "class_name": {"type": "string"}}, "required": ["bbox", "used", "class_name"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"bbox" : "1 1 414 375", "used" : false, "class_name" : "train"}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"bbox": {"type": "string"}, "used": {"type": "boolean"}, "class_name": {"type": "string"}}, "required": ["bbox", "used", "class_name"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "array", "items": {"type": "object", "properties": {"comment": {"type": "string"}, "definition": {"type": "string"}, "orthologs": {"type": "object", "properties": {}, "required": []}, "name": {"type": "string"}, "product_stoichiometries": {"type": "array", "items": {"type": "string"}}, "enzymes": {"type": "array", "items": {"type": "string"}}, "equation": {"type": "string"}, "glycans": {"type": "boolean"}, "substrate_stoichiometries": {"type": "array", "items": {"type": "string"}}, "rpairs": {"type": "object", "properties": {}, "required": []}, "entry_id": {"type": "string"}, "pathways": {"type": "object", "properties": {}, "required": []}, "products": {"type": "array", "items": {"type": "string"}}, "substrates": {"type": "array", "items": {"type": "string"}}}, "required": ["comment", "definition", "orthologs", "name", "product_stoichiometries", "enzymes", "equation", "glycans", "substrate_stoichiometries", "rpairs", "entry_id", "pathways", "products", "substrates"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"comment" : "Ref:1. Biochem J 1972; 130: 373-381 NADPH (see R03638)", "definition" : "Taxifolin + Oxygen + NADH + H+ <=> 2,3-Dihydrogossypetin + NAD+ + H2O", "orthologs" : {}, "name" : "taxifolin,NADH:oxygen oxidoreductase (8-hydroxylating)", "product_stoichiometries" : ["1", "1", "1"], "enzymes" : ["1.14.13.19"], "equation" : "C01617 + C00007 + C00004 + C00080 <=> C03052 + C00003 + C00001", "glycans" : false, "substrate_stoichiometries" : ["1", "1", "1", "1"], "rpairs" : {}, "entry_id" : "R03637", "pathways" : {}, "products" : ["C03052", "C00003", "C00001"], "substrates" : ["C01617", "C00007", "C00004", "C00080"]}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"comment": {"type": "string"}, "definition": {"type": "string"}, "orthologs": {"type": "object", "properties": {}, "required": []}, "name": {"type": "string"}, "product_stoichiometries": {"type": "array", "items": {"type": "string"}}, "enzymes": {"type": "array", "items": {"type": "string"}}, "equation": {"type": "string"}, "glycans": {"type": "boolean"}, "substrate_stoichiometries": {"type": "array", "items": {"type": "string"}}, "rpairs": {"type": "object", "properties": {}, "required": []}, "entry_id": {"type": "string"}, "pathways": {"type": "object", "properties": {}, "required": []}, "products": {"type": "array", "items": {"type": "string"}}, "substrates": {"type": "array", "items": {"type": "string"}}}, "required": ["comment", "definition", "orthologs", "name", "product_stoichiometries", "enzymes", "equation", "glycans", "substrate_stoichiometries", "rpairs", "entry_id", "pathways", "products", "substrates"]}, "$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"}, "initiators": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "params": {"type": "object", "properties": {"address": {"type": "string"}}, "required": ["address"]}}, "required": ["type", "params"]}}, "tasks": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}}, "required": ["type"]}}, "startAt": {"type": "string"}, "endAt": {"type": "null"}, "minPayment": {"type": "string"}}, "required": ["name", "initiators", "tasks", "startAt", "endAt", "minPayment"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "Testjob13", "initiators" : [{"type" : "RunLog", "params" : {"address" : "0xDcE846f83905005a1cE1975CaB24989b0952148f"}}], "tasks" : [{"type" : "HTTPGet"}, {"type" : "JSONParse"}, {"type" : "ethbool"}, {"type" : "EthTx"}], "startAt" : "2020-02-09T15:13:03Z", "endAt" : null, "minPayment" : "1000000000000000000"} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "initiators": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "params": {"type": "object", "properties": {"address": {"type": "string"}}, "required": ["address"]}}, "required": ["type", "params"]}}, "tasks": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}}, "required": ["type"]}}, "startAt": {"type": "string"}, "endAt": {"type": "null"}, "minPayment": {"type": "string"}}, "required": ["name", "initiators", "tasks", "startAt", "endAt", "minPayment"], "$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": {"code": {"type": "string"}, "name": {"type": "string"}, "name_kana": {"type": "string"}}, "required": ["code", "name", "name_kana"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"code" : "682", "name" : "\u9ce5\u53d6", "name_kana" : "\uff84\uff82\uff84\uff98"}, {"code" : "745", "name" : "\u5fb3\u5c71", "name_kana" : "\uff84\uff78\uff94\uff8f"}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"code": {"type": "string"}, "name": {"type": "string"}, "name_kana": {"type": "string"}}, "required": ["code", "name", "name_kana"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"inputs": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}, "outputs": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}}, "required": ["inputs", "outputs"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"inputs" : [["3", "3", "-1 -1 -1", "5", "1 -1 -1 4 1", "4", "4 6 7 -1"]], "outputs" : [["inf", "4", "impossible"]]} | json_instruct | {"type": "object", "properties": {"inputs": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}, "outputs": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}}, "required": ["inputs", "outputs"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "dependencies": {"type": "object", "properties": {"body-parser": {"type": "string"}, "express": {"type": "string"}}, "required": ["body-parser", "express"]}, "devDependencies": {"type": "object", "properties": {"chai": {"type": "string"}, "chai-http": {"type": "string"}, "mocha": {"type": "string"}}, "required": ["chai", "chai-http", "mocha"]}}, "required": ["name", "version", "description", "main", "scripts", "repository", "keywords", "author", "license", "bugs", "homepage", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "xpress-simple-server", "version" : "1.0.0", "description" : "basic express server for projects", "main" : "app.js", "scripts" : {"test" : "echo \"Error: no test specified\" && exit 1"}, "repository" : {"type" : "git", "url" : "git+https://github.com/kentmoreland/Xpress-Server.git"}, "keywords" : ["express", "server", "basic"], "author" : "Kent", "license" : "ISC", "bugs" : {"url" : "https://github.com/kentmoreland/Xpress-Server/issues"}, "homepage" : "https://github.com/kentmoreland/Xpress-Server#readme", "dependencies" : {"body-parser" : "^1.15.2", "express" : "^4.14.0"}, "devDependencies" : {"chai" : "^3.5.0", "chai-http" : "^3.0.0", "mocha" : "^3.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"}}, "required": ["test"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "dependencies": {"type": "object", "properties": {"body-parser": {"type": "string"}, "express": {"type": "string"}}, "required": ["body-parser", "express"]}, "devDependencies": {"type": "object", "properties": {"chai": {"type": "string"}, "chai-http": {"type": "string"}, "mocha": {"type": "string"}}, "required": ["chai", "chai-http", "mocha"]}}, "required": ["name", "version", "description", "main", "scripts", "repository", "keywords", "author", "license", "bugs", "homepage", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"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"}, "reviewDate": {"type": "string"}}, "required": ["productId", "reviewText", "reviewDate"]}}}, "required": ["userId", "cartId", "preferredProducts", "productReviews"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"userId" : 26613, "cartId" : "20f4a58c-396a-4a36-8fc6-8ba916f540c2", "preferredProducts" : [1177], "productReviews" : [{"productId" : 2585, "reviewText" : "talk about pleasure.", "reviewDate" : "2019-10-05T21:11:26.0400416+03:00"}, {"productId" : 4187, "reviewText" : "I saw one of these in Finland and I bought one.", "reviewDate" : "2018-12-11T07:48:07.3853919+02:00"}, {"productId" : 2015, "reviewText" : "My co-worker Reed has one of these. He says it looks microscopic.", "reviewDate" : "2019-05-29T09:07:31.6851643+03:00"}, {"productId" : 4635, "reviewText" : "I saw one of these in Juan de Nova Island and I bought one.", "reviewDate" : "2019-05-16T05:19:48.0045769+03:00"}, {"productId" : 74, "reviewText" : "I saw one of these in Canada and I bought one.", "reviewDate" : "2017-06-02T14:32:25.8915726+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"}, "reviewDate": {"type": "string"}}, "required": ["productId", "reviewText", "reviewDate"]}}}, "required": ["userId", "cartId", "preferredProducts", "productReviews"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"cam/image_array": {"type": "string"}, "user/throttle": {"type": "number"}, "user/angle": {"type": "number"}, "user/mode": {"type": "string"}}, "required": ["cam/image_array", "user/throttle", "user/angle", "user/mode"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"cam/image_array" : "441_cam-image_array_.jpg", "user/throttle" : 0.0, "user/angle" : 0.06817814707756042, "user/mode" : "user"} | json_instruct | {"type": "object", "properties": {"cam/image_array": {"type": "string"}, "user/throttle": {"type": "number"}, "user/angle": {"type": "number"}, "user/mode": {"type": "string"}}, "required": ["cam/image_array", "user/throttle", "user/angle", "user/mode"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"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": "integer"}, "name": {"type": "string"}, "picUrl": {"type": "string"}}, "required": ["id", "name", "picUrl"]}}, "required": ["id", "name", "dt", "ar", "al"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"id" : 27896491, "name" : "\u4e52\u4e52\u4e53\u4e53\u5929\u4e0b\u65e0\u53cc (\u7b2c\u4e00\u5b63)", "dt" : 184281, "ar" : {"id" : 12096059, "name" : "\u4e2d\u56fd\u4e52\u4e53\u7403\u961f"}, "al" : {"id" : 2692020, "name" : "\u70ed\u95e8\u534e\u8bed23", "picUrl" : "https://p1.music.126.net/cpoUinrExafBHL5Nv5iDHQ==/109951166361218466.jpg"}}, {"id" : 425295792, "name" : "\u4e52\u4e52\u4e53\u4e53\u5929\u4e0b\u65e0\u53cc (\u7b2c\u4e03\u5b63)", "dt" : 217730, "ar" : {"id" : 12096059, "name" : "\u4e2d\u56fd\u4e52\u4e53\u7403\u961f"}, "al" : {"id" : 2692020, "name" : "\u70ed\u95e8\u534e\u8bed23", "picUrl" : "https://p1.music.126.net/cpoUinrExafBHL5Nv5iDHQ==/109951166361218466.jpg"}}, {"id" : 425298689, "name" : "\u4e52\u4e52\u4e53\u4e53\u5929\u4e0b\u65e0\u53cc (\u7b2c\u516b\u5b63 : \u8c22\u8c22)", "dt" : 276662, "ar" : {"id" : 12096059, "name" : "\u4e2d\u56fd\u4e52\u4e53\u7403\u961f"}, "al" : {"id" : 2692020, "name" : "\u70ed\u95e8\u534e\u8bed23", "picUrl" : "https://p2.music.126.net/cpoUinrExafBHL5Nv5iDHQ==/109951166361218466.jpg"}}, {"id" : 425137403, "name" : "\u4e52\u4e52\u4e53\u4e53\u5929\u4e0b\u65e0\u53cc (\u7b2c\u4e5d\u5b63 : \u4e52\u4e53\u6d77\u6d0b)", "dt" : 292832, "ar" : {"id" : 12096059, "name" : "\u4e2d\u56fd\u4e52\u4e53\u7403\u961f"}, "al" : {"id" : 2692020, "name" : "\u70ed\u95e8\u534e\u8bed23", "picUrl" : "https://p2.music.126.net/cpoUinrExafBHL5Nv5iDHQ==/109951166361218466.jpg"}}] | 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": "integer"}, "name": {"type": "string"}, "picUrl": {"type": "string"}}, "required": ["id", "name", "picUrl"]}}, "required": ["id", "name", "dt", "ar", "al"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"configuration": {"type": "array", "items": {"type": "string"}}, "stages": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "script": {"type": "string"}}, "required": ["name", "script"]}}, "vm": {"type": "object", "properties": {"memory": {"type": "integer"}, "names": {"type": "array", "items": {"type": "string"}}, "vcpus": {"type": "integer"}}, "required": ["memory", "names", "vcpus"]}}, "required": ["configuration", "stages", "vm"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"configuration" : ["examples/complete", "promenade/schemas"], "stages" : [{"name" : "Gate Setup", "script" : "gate-setup.sh"}, {"name" : "Build Image", "script" : "build-image.sh"}, {"name" : "Generate Certificates", "script" : "generate-certificates.sh"}, {"name" : "Build Scripts", "script" : "build-scripts.sh"}, {"name" : "Create VMs", "script" : "create-vms.sh"}, {"name" : "Genesis", "script" : "genesis.sh", "on_error" : "collect_genesis_info.sh"}], "vm" : {"memory" : 12288, "names" : ["n0"], "vcpus" : 4}} | json_instruct | {"type": "object", "properties": {"configuration": {"type": "array", "items": {"type": "string"}}, "stages": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "script": {"type": "string"}}, "required": ["name", "script"]}}, "vm": {"type": "object", "properties": {"memory": {"type": "integer"}, "names": {"type": "array", "items": {"type": "string"}}, "vcpus": {"type": "integer"}}, "required": ["memory", "names", "vcpus"]}}, "required": ["configuration", "stages", "vm"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies 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": "integer"}, "wof:repo": {"type": "string"}}, "required": ["src:alt_label", "src:geom", "wof:geomhash", "wof:id", "wof:repo"]}, "bbox": {"type": "array", "items": {"type": "number"}}, "geometry": {"type": "object", "properties": {"coordinates": {"type": "array", "items": {"type": "number"}}, "type": {"type": "string"}}, "required": ["coordinates", "type"]}}, "required": ["id", "type", "properties", "bbox", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : 101873893, "type" : "Feature", "properties" : {"src:alt_label" : "quattroshapes_pg", "src:geom" : "quattroshapes_pg", "wof:geomhash" : "4d55c823f812138e79c456a86c06027a", "wof:id" : 101873893, "wof:repo" : "whosonfirst-data-admin-gb"}, "bbox" : [-6.946964, 55.042778, -6.946964, 55.042778], "geometry" : {"coordinates" : [-6.946964, 55.042778], "type" : "Point"}} | 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": ["src:alt_label", "src:geom", "wof:geomhash", "wof:id", "wof:repo"]}, "bbox": {"type": "array", "items": {"type": "number"}}, "geometry": {"type": "object", "properties": {"coordinates": {"type": "array", "items": {"type": "number"}}, "type": {"type": "string"}}, "required": ["coordinates", "type"]}}, "required": ["id", "type", "properties", "bbox", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"phoneNumberToSend": {"type": "string"}, "iotBtnNumber": {"type": "string"}, "singleClickMessage": {"type": "string"}, "doubleClickMessage": {"type": "string"}, "longClickMessage": {"type": "string"}}, "required": ["phoneNumberToSend", "iotBtnNumber", "singleClickMessage", "doubleClickMessage", "longClickMessage"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"phoneNumberToSend" : "19998887766", "iotBtnNumber" : "XXX", "singleClickMessage" : "Pee time", "doubleClickMessage" : "Poop time", "longClickMessage" : "Game time"} | json_instruct | {"type": "object", "properties": {"phoneNumberToSend": {"type": "string"}, "iotBtnNumber": {"type": "string"}, "singleClickMessage": {"type": "string"}, "doubleClickMessage": {"type": "string"}, "longClickMessage": {"type": "string"}}, "required": ["phoneNumberToSend", "iotBtnNumber", "singleClickMessage", "doubleClickMessage", "longClickMessage"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"build": {"type": "string"}, "driver": {"type": "string"}, "driver-start": {"type": "string"}, "driver-update": {"type": "string"}, "protractor": {"type": "string"}, "test": {"type": "string"}}, "required": ["build", "driver", "driver-start", "driver-update", "protractor", "test"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "devDependencies": {"type": "object", "properties": {"@types/cucumber": {"type": "string"}, "@types/node": {"type": "string"}, "@types/selenium-webdriver": {"type": "string"}, "chai": {"type": "string"}, "chai-as-promised": {"type": "string"}, "cucumber": {"type": "string"}, "cucumber-html-reporter": {"type": "string"}, "protractor": {"type": "string"}, "protractor-cucumber-framework": {"type": "string"}, "ts-node": {"type": "string"}, "typescript": {"type": "string"}}, "required": ["@types/cucumber", "@types/node", "@types/selenium-webdriver", "chai", "chai-as-promised", "cucumber", "cucumber-html-reporter", "protractor", "protractor-cucumber-framework", "ts-node", "typescript"]}}, "required": ["name", "version", "description", "main", "scripts", "repository", "author", "license", "bugs", "homepage", "keywords", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "protractor-cucumber-typescript", "version" : "1.0.0", "description" : "e2e boilerplate which consists of Protractor, CucumberJS and TypeScript", "main" : "index.js", "scripts" : {"build" : "tsc", "driver" : "npm run driver-update && npm run driver-start", "driver-start" : "webdriver-manager start", "driver-update" : "webdriver-manager update", "protractor" : "protractor js/config/config.js", "test" : "npm run build && npm run protractor"}, "repository" : {"type" : "git", "url" : "git+https://github.com/harshal-limaye/protractor-cucumber-typescript.git"}, "author" : "Harshal Limaye <harshal.limaye@outlook.com> (https://harshal.co)", "license" : "ISC", "bugs" : {"url" : "https://github.com/harshal-limaye/protractor-cucumber-typescript/issues"}, "homepage" : "https://github.com/harshal-limaye/protractor-cucumber-typescript#readme", "keywords" : ["protractor", "cucumber", "typescript", "angular", "testing", "selenium", "webdriverJS", "gherkin"], "devDependencies" : {"@types/cucumber" : "^4.0.5", "@types/node" : "^11.13.0", "@types/selenium-webdriver" : "^4.0.0", "chai" : "^4.2.0", "chai-as-promised" : "^7.1.1", "cucumber" : "^5.1.0", "cucumber-html-reporter" : "^4.0.5", "protractor" : "^5.4.2", "protractor-cucumber-framework" : "^6.1.1", "ts-node" : "^8.0.3", "typescript" : "^3.4.2"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"build": {"type": "string"}, "driver": {"type": "string"}, "driver-start": {"type": "string"}, "driver-update": {"type": "string"}, "protractor": {"type": "string"}, "test": {"type": "string"}}, "required": ["build", "driver", "driver-start", "driver-update", "protractor", "test"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "devDependencies": {"type": "object", "properties": {"@types/cucumber": {"type": "string"}, "@types/node": {"type": "string"}, "@types/selenium-webdriver": {"type": "string"}, "chai": {"type": "string"}, "chai-as-promised": {"type": "string"}, "cucumber": {"type": "string"}, "cucumber-html-reporter": {"type": "string"}, "protractor": {"type": "string"}, "protractor-cucumber-framework": {"type": "string"}, "ts-node": {"type": "string"}, "typescript": {"type": "string"}}, "required": ["@types/cucumber", "@types/node", "@types/selenium-webdriver", "chai", "chai-as-promised", "cucumber", "cucumber-html-reporter", "protractor", "protractor-cucumber-framework", "ts-node", "typescript"]}}, "required": ["name", "version", "description", "main", "scripts", "repository", "author", "license", "bugs", "homepage", "keywords", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
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": {"errors": {"type": "array", "items": {}}, "file": {"type": "string"}, "name": {"type": "string"}}, "required": ["errors", "file", "name"]}}}, "required": ["contract", "tool", "start", "end", "duration", "analysis"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"contract" : "0xd3a662f654b3eb3f0b71421ffc27a1532b43b9f7", "tool" : "osiris", "start" : 1564606739.7722623, "end" : 1564606791.9865408, "duration" : 52.21427845954895, "analysis" : [{"errors" : [], "file" : "/unique_chucks/28/0xd3a662f654b3eb3f0b71421ffc27a1532b43b9f7.sol", "name" : "CRYPTOKEN"}, {"errors" : [], "file" : "/unique_chucks/28/0xd3a662f654b3eb3f0b71421ffc27a1532b43b9f7.sol", "name" : "Owned"}, {"errors" : [], "file" : "/unique_chucks/28/0xd3a662f654b3eb3f0b71421ffc27a1532b43b9f7.sol", "name" : "SafeMath"}]} | 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": "string"}, "name": {"type": "string"}}, "required": ["errors", "file", "name"]}}}, "required": ["contract", "tool", "start", "end", "duration", "analysis"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"collectionName": {"type": "string"}, "info": {"type": "object", "properties": {"name": {"type": "string"}, "icon": {"type": "string"}, "description": {"type": "string"}}, "required": ["name", "icon", "description"]}, "options": {"type": "object", "properties": {}, "required": []}, "attributes": {"type": "object", "properties": {"SKU": {"type": "object", "properties": {"type": {"type": "string"}, "unique": {"type": "boolean"}, "required": {"type": "boolean"}}, "required": ["type", "unique", "required"]}, "Stock": {"type": "object", "properties": {"type": {"type": "string"}, "required": {"type": "boolean"}}, "required": ["type", "required"]}, "isSoldOut": {"type": "object", "properties": {"type": {"type": "string"}, "default": {"type": "boolean"}, "required": {"type": "boolean"}}, "required": ["type", "default", "required"]}}, "required": ["SKU", "Stock", "isSoldOut"]}}, "required": ["collectionName", "info", "options", "attributes"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"collectionName" : "components_product_inventories", "info" : {"name" : "Inventory", "icon" : "store-alt", "description" : ""}, "options" : {}, "attributes" : {"SKU" : {"type" : "string", "unique" : true, "required" : true}, "Stock" : {"type" : "biginteger", "required" : true}, "isSoldOut" : {"type" : "boolean", "default" : false, "required" : false}}} | json_instruct | {"type": "object", "properties": {"collectionName": {"type": "string"}, "info": {"type": "object", "properties": {"name": {"type": "string"}, "icon": {"type": "string"}, "description": {"type": "string"}}, "required": ["name", "icon", "description"]}, "options": {"type": "object", "properties": {}, "required": []}, "attributes": {"type": "object", "properties": {"SKU": {"type": "object", "properties": {"type": {"type": "string"}, "unique": {"type": "boolean"}, "required": {"type": "boolean"}}, "required": ["type", "unique", "required"]}, "Stock": {"type": "object", "properties": {"type": {"type": "string"}, "required": {"type": "boolean"}}, "required": ["type", "required"]}, "isSoldOut": {"type": "object", "properties": {"type": {"type": "string"}, "default": {"type": "boolean"}, "required": {"type": "boolean"}}, "required": ["type", "default", "required"]}}, "required": ["SKU", "Stock", "isSoldOut"]}}, "required": ["collectionName", "info", "options", "attributes"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"title": {"type": "string"}, "url": {"type": "string"}, "moderators": {"type": "array", "items": {"type": "string"}}, "location": {"type": "object", "properties": {"city": {"type": "string"}, "country": {"type": "string"}, "coordinates": {"type": "object", "properties": {"latitude": {"type": "number"}, "longitude": {"type": "number"}}, "required": ["latitude", "longitude"]}, "utcOffset": {"type": "integer"}, "timezone": {"type": "string"}}, "required": ["city", "country", "coordinates", "utcOffset", "timezone"]}}, "required": ["title", "url", "moderators", "location"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"title" : "Global Day of Coderetreat in Sofia", "url" : "https://www.eventbrite.com/e/global-day-of-coderetreat-2017-tickets-39040657658", "moderators" : ["@KaloyanPetrovOG", "Desislava Ivanovich"], "location" : {"city" : "Sofia", "country" : "Bulgaria", "coordinates" : {"latitude" : 42.700671, "longitude" : 23.306263}, "utcOffset" : 3, "timezone" : "Europe/Sofia"}} | json_instruct | {"type": "object", "properties": {"title": {"type": "string"}, "url": {"type": "string"}, "moderators": {"type": "array", "items": {"type": "string"}}, "location": {"type": "object", "properties": {"city": {"type": "string"}, "country": {"type": "string"}, "coordinates": {"type": "object", "properties": {"latitude": {"type": "number"}, "longitude": {"type": "number"}}, "required": ["latitude", "longitude"]}, "utcOffset": {"type": "integer"}, "timezone": {"type": "string"}}, "required": ["city", "country", "coordinates", "utcOffset", "timezone"]}}, "required": ["title", "url", "moderators", "location"], "$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"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "start": {"type": "string"}}, "required": ["test", "start"]}, "author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"azure-storage": {"type": "string"}, "body-parser": {"type": "string"}, "express": {"type": "string"}, "mongoose": {"type": "string"}, "morgan": {"type": "string"}, "nodemon": {"type": "string"}, "youtube-dl": {"type": "string"}}, "required": ["azure-storage", "body-parser", "express", "mongoose", "morgan", "nodemon", "youtube-dl"]}}, "required": ["name", "version", "description", "main", "scripts", "author", "license", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "goulagtv", "version" : "1.0.0", "description" : "coucou", "main" : "app.js", "scripts" : {"test" : "echo \"Error: no test specified\" && exit 1", "start" : "sh start.sh"}, "author" : "Thomas", "license" : "ISC", "dependencies" : {"azure-storage" : "^2.10.3", "body-parser" : "^1.19.0", "express" : "^4.17.1", "mongoose" : "^5.8.9", "morgan" : "^1.9.1", "nodemon" : "^2.0.2", "youtube-dl" : "^2.1.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"]}, "author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"azure-storage": {"type": "string"}, "body-parser": {"type": "string"}, "express": {"type": "string"}, "mongoose": {"type": "string"}, "morgan": {"type": "string"}, "nodemon": {"type": "string"}, "youtube-dl": {"type": "string"}}, "required": ["azure-storage", "body-parser", "express", "mongoose", "morgan", "nodemon", "youtube-dl"]}}, "required": ["name", "version", "description", "main", "scripts", "author", "license", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"state": {"type": "object", "properties": {"_": {"type": "object", "properties": {"active": {"type": "string"}, "idle": {"type": "string"}, "paused": {"type": "string"}}, "required": ["active", "idle", "paused"]}}, "required": ["_"]}}, "required": ["state"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"state" : {"_" : {"active" : "Attivo", "idle" : "Inattivo", "paused" : "In pausa"}}} | json_instruct | {"type": "object", "properties": {"state": {"type": "object", "properties": {"_": {"type": "object", "properties": {"active": {"type": "string"}, "idle": {"type": "string"}, "paused": {"type": "string"}}, "required": ["active", "idle", "paused"]}}, "required": ["_"]}}, "required": ["state"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"mongoURI": {"type": "string"}}, "required": ["mongoURI"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"mongoURI" : "mongodb+srv://shaz:PxgTVOEcrXPnBZyG@cluster0-hsbjo.mongodb.net/test?retryWrites=true"} | json_instruct | {"type": "object", "properties": {"mongoURI": {"type": "string"}}, "required": ["mongoURI"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"code": {"type": "integer"}, "parent": {"type": "integer"}, "name": {"type": "string"}, "latitude": {"type": "string"}, "longitude": {"type": "string"}, "postal": {"type": "array", "items": {"type": "integer"}}, "children": {"type": "array", "items": {"type": "integer"}}}, "required": ["code", "parent", "name", "latitude", "longitude", "postal", "children"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"code" : 2103042, "parent" : 2103, "name" : "PULAU LAUT", "latitude" : "4.6541383489995", "longitude" : "107.87244553848", "postal" : [29754, 29789], "children" : [2103042001, 2103042002, 2103042003]} | json_instruct | {"type": "object", "properties": {"code": {"type": "integer"}, "parent": {"type": "integer"}, "name": {"type": "string"}, "latitude": {"type": "string"}, "longitude": {"type": "string"}, "postal": {"type": "array", "items": {"type": "integer"}}, "children": {"type": "array", "items": {"type": "integer"}}}, "required": ["code", "parent", "name", "latitude", "longitude", "postal", "children"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "array", "items": {"type": "array", "items": {"type": "string"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [["340322104200", "\u5927\u6768\u6751\u59d4\u4f1a", "220", "0"], ["340322104201", "\u8363\u6e21\u6751\u59d4\u4f1a", "220", "0"], ["340322104202", "\u524d\u674e\u6751\u59d4\u4f1a", "220", "0"], ["340322104203", "\u8042\u5729\u6751\u59d4\u4f1a", "220", "0"], ["340322104204", "\u53cc\u5e99\u6751\u59d4\u4f1a", "121", "0"], ["340322104205", "\u897f\u5c24\u6751\u59d4\u4f1a", "122", "0"], ["340322104206", "\u9646\u5729\u6751\u59d4\u4f1a", "220", "0"], ["340322104207", "\u5cb3\u5e99\u6751\u59d4\u4f1a", "220", "0"], ["340322104208", "\u767d\u58a9\u6751\u59d4\u4f1a", "220", "0"], ["340322104209", "\u5218\u8521\u6751\u59d4\u4f1a", "220", "0"], ["340322104210", "\u67f3\u6e56\u6751\u59d4\u4f1a", "220", "0"], ["340322104211", "\u9648\u80e1\u6751\u59d4\u4f1a", "220", "0"], ["340322104212", "\u9093\u5729\u6751\u59d4\u4f1a", "220", "0"], ["340322104213", "\u5b59\u6e56\u6751\u59d4\u4f1a", "220", "0"], ["340322104214", "\u5f20\u6ee9\u6751\u59d4\u4f1a", "220", "0"], ["340322104215", "\u5355\u6ee9\u6751\u59d4\u4f1a", "220", "0"], ["340322104216", "\u4e09\u5468\u6751\u59d4\u4f1a", "220", "0"], ["340322104217", "\u8a3e\u6e56\u6751\u59d4\u4f1a", "220", "0"], ["340322104218", "\u962e\u5729\u6751\u59d4\u4f1a", "220", "0"]] | json_instruct | {"type": "array", "items": {"type": "array", "items": {"type": "string"}}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"}
| ["fxos-fastlist", "fxos-header", "fxos-toast"] | 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": "array", "items": {"type": "object", "properties": {"direction": {"type": "string"}, "route": {"type": "string"}, "station": {"type": "string"}, "signals": {"type": "string"}, "tracks_in": {"type": "array", "items": {"type": "integer"}}, "tracks_out": {"type": "array", "items": {"type": "integer"}}}, "required": ["direction", "route", "station", "signals", "tracks_in", "tracks_out"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"direction" : "N", "route" : "HML", "station" : "ACT", "signals" : "2", "tracks_in" : [1], "tracks_out" : [1]}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"direction": {"type": "string"}, "route": {"type": "string"}, "station": {"type": "string"}, "signals": {"type": "string"}, "tracks_in": {"type": "array", "items": {"type": "integer"}}, "tracks_out": {"type": "array", "items": {"type": "integer"}}}, "required": ["direction", "route", "station", "signals", "tracks_in", "tracks_out"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "version": {"type": "string"}, "author": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "homepage": {"type": "string"}, "contributors": {"type": "array", "items": {}}, "dependencies": {"type": "object", "properties": {}, "required": []}, "engines": {"type": "object", "properties": {"node": {"type": "string"}}, "required": ["node"]}, "devDependencies": {"type": "object", "properties": {"should": {"type": "string"}, "mocha": {"type": "string"}, "mm": {"type": "string"}, "blanket": {"type": "string"}, "coveralls": {"type": "string"}, "travis-cov": {"type": "string"}, "mocha-lcov-reporter": {"type": "string"}}, "required": ["should", "mocha", "mm", "blanket", "coveralls", "travis-cov", "mocha-lcov-reporter"]}, "scripts": {"type": "object", "properties": {"main": {"type": "string"}, "test": {"type": "string"}, "blanket": {"type": "object", "properties": {"pattern": {"type": "array", "items": {"type": "string"}}}, "required": ["pattern"]}, "travis-cov": {"type": "object", "properties": {"threshold": {"type": "integer"}}, "required": ["threshold"]}}, "required": ["main", "test", "blanket", "travis-cov"]}}, "required": ["name", "description", "keywords", "version", "author", "repository", "homepage", "contributors", "dependencies", "engines", "devDependencies", "scripts"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "httpha", "description" : "`httpha` is a simple client-side load balance and HA module.", "keywords" : ["load balance", "high available", "HA", "client-side"], "version" : "0.1.1", "author" : "Aleafs Zhang (zhangxc83@gmail.com)", "repository" : {"type" : "git", "url" : "git@github.com:aleafs/httpha.git"}, "homepage" : "https://github.com/aleafs/httpha", "contributors" : [], "dependencies" : {}, "engines" : {"node" : ">=0.8.14"}, "devDependencies" : {"should" : ">=0.6.3", "mocha" : ">=1.0.3", "mm" : "*", "blanket" : "*", "coveralls" : "*", "travis-cov" : "*", "mocha-lcov-reporter" : "*"}, "scripts" : {"main" : "index.js", "test" : "make test", "blanket" : {"pattern" : ["/httpha/lib"]}, "travis-cov" : {"threshold" : 95}}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "version": {"type": "string"}, "author": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "homepage": {"type": "string"}, "contributors": {"type": "array", "items": {}}, "dependencies": {"type": "object", "properties": {}, "required": []}, "engines": {"type": "object", "properties": {"node": {"type": "string"}}, "required": ["node"]}, "devDependencies": {"type": "object", "properties": {"should": {"type": "string"}, "mocha": {"type": "string"}, "mm": {"type": "string"}, "blanket": {"type": "string"}, "coveralls": {"type": "string"}, "travis-cov": {"type": "string"}, "mocha-lcov-reporter": {"type": "string"}}, "required": ["should", "mocha", "mm", "blanket", "coveralls", "travis-cov", "mocha-lcov-reporter"]}, "scripts": {"type": "object", "properties": {"main": {"type": "string"}, "test": {"type": "string"}, "blanket": {"type": "object", "properties": {"pattern": {"type": "array", "items": {"type": "string"}}}, "required": ["pattern"]}, "travis-cov": {"type": "object", "properties": {"threshold": {"type": "integer"}}, "required": ["threshold"]}}, "required": ["main", "test", "blanket", "travis-cov"]}}, "required": ["name", "description", "keywords", "version", "author", "repository", "homepage", "contributors", "dependencies", "engines", "devDependencies", "scripts"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "array", "items": {"type": "array", "items": {"type": "number"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [[1334.599262836145, 642.2048409639574], [1364.246461175902, 635.8518698911523], [1393.893659515659, 616.7929566727371]] | json_instruct | {"type": "array", "items": {"type": "array", "items": {"type": "number"}}, "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"id": {"type": "integer"}, "title": {"type": "string"}, "points": {"type": "integer"}, "description": {"type": "string"}, "rewardItems": {"type": "array", "items": {}}, "icon": {"type": "string"}, "criteria": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "description": {"type": "string"}, "orderIndex": {"type": "integer"}, "max": {"type": "integer"}}, "required": ["id", "description", "orderIndex", "max"]}}, "accountWide": {"type": "boolean"}, "factionId": {"type": "integer"}}, "required": ["id", "title", "points", "description", "rewardItems", "icon", "criteria", "accountWide", "factionId"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : 2178, "title" : "Shocking! (10 player)", "points" : 10, "description" : "Defeat Thaddius in Naxxramas without anyone in the raid crossing the negative and positive charges in 10-player mode.", "rewardItems" : [], "icon" : "spell_chargepositive", "criteria" : [{"id" : 7604, "description" : "Thaddius", "orderIndex" : 1, "max" : 1}], "accountWide" : false, "factionId" : 2} | json_instruct | {"type": "object", "properties": {"id": {"type": "integer"}, "title": {"type": "string"}, "points": {"type": "integer"}, "description": {"type": "string"}, "rewardItems": {"type": "array", "items": {}}, "icon": {"type": "string"}, "criteria": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "description": {"type": "string"}, "orderIndex": {"type": "integer"}, "max": {"type": "integer"}}, "required": ["id", "description", "orderIndex", "max"]}}, "accountWide": {"type": "boolean"}, "factionId": {"type": "integer"}}, "required": ["id", "title", "points", "description", "rewardItems", "icon", "criteria", "accountWide", "factionId"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"formly.js": {"type": "string"}, "formly.min.js": {"type": "string"}}, "required": ["formly.js", "formly.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"formly.js" : "sha512-fZgfZTrmh1QP73jYCvJ9Ukj8ndBrrpfZ96s+g/04/na7yKRQ444gqQwJby2LZZCq1T45rvRyW6i2cM+IWueawg==", "formly.min.js" : "sha512-Y/asZHMsVmgJfme27DMZyKMJ1q7tGmPn9mXPkqIlReRBljM7b+7JX8A66FFrRajxNMiOEcCHwRyLcHpBzwd9Qw=="} | json_instruct | {"type": "object", "properties": {"formly.js": {"type": "string"}, "formly.min.js": {"type": "string"}}, "required": ["formly.js", "formly.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"advanced connection settings": {"type": "string"}, "basic settings": {"type": "string"}, "delay after failed login": {"type": "string"}, "delay before applyqueue retry": {"type": "string"}, "delay between login attempts": {"type": "string"}, "login attempts": {"type": "string"}, "on save adapter restarts with new config immediately": {"type": "string"}, "password": {"type": "string"}, "pollinterval": {"type": "string"}, "username": {"type": "string"}}, "required": ["advanced connection settings", "basic settings", "delay after failed login", "delay before applyqueue retry", "delay between login attempts", "login attempts", "on save adapter restarts with new config immediately", "password", "pollinterval", "username"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"advanced connection settings" : "Advanced Connection Settings", "basic settings" : "Basic Settings", "delay after failed login" : "Delay after failed login (seconds)", "delay before applyqueue retry" : "Delay before applyqueue retry (milliseconds)", "delay between login attempts" : "Delay between login attempts (seconds)", "login attempts" : "Login attempts", "on save adapter restarts with new config immediately" : "On save adapter restarts with new config immediately", "password" : "Password", "pollinterval" : "Polling interval", "username" : "Username"} | json_instruct | {"type": "object", "properties": {"advanced connection settings": {"type": "string"}, "basic settings": {"type": "string"}, "delay after failed login": {"type": "string"}, "delay before applyqueue retry": {"type": "string"}, "delay between login attempts": {"type": "string"}, "login attempts": {"type": "string"}, "on save adapter restarts with new config immediately": {"type": "string"}, "password": {"type": "string"}, "pollinterval": {"type": "string"}, "username": {"type": "string"}}, "required": ["advanced connection settings", "basic settings", "delay after failed login", "delay before applyqueue retry", "delay between login attempts", "login attempts", "on save adapter restarts with new config immediately", "password", "pollinterval", "username"], "$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"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"build": {"type": "string"}, "start": {"type": "string"}, "lint": {"type": "string"}, "test": {"type": "string"}}, "required": ["build", "start", "lint", "test"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"@types/node": {"type": "string"}, "@types/amqplib": {"type": "string"}, "@typescript-eslint/eslint-plugin": {"type": "string"}, "@typescript-eslint/parser": {"type": "string"}, "eslint": {"type": "string"}, "eslint-config-airbnb-base": {"type": "string"}, "eslint-plugin-import": {"type": "string"}, "typescript": {"type": "string"}}, "required": ["@types/node", "@types/amqplib", "@typescript-eslint/eslint-plugin", "@typescript-eslint/parser", "eslint", "eslint-config-airbnb-base", "eslint-plugin-import", "typescript"]}, "dependencies": {"type": "object", "properties": {"log4js": {"type": "string"}, "amqplib": {"type": "string"}}, "required": ["log4js", "amqplib"]}}, "required": ["name", "version", "description", "main", "scripts", "repository", "author", "license", "bugs", "homepage", "devDependencies", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "nodetsmessageworker", "version" : "1.0.0", "description" : "A nodets boilerplate code for message consumer", "main" : "dist/server.js", "scripts" : {"build" : "rm -rf ./dist && ./node_modules/.bin/tsc", "start" : "node ./dist/server.js", "lint" : "./node_modules/.bin/eslint --ext ts ./src", "test" : "echo \"Error: no test specified\" && exit 1"}, "repository" : {"type" : "git", "url" : "git+https://github.com/Shikhar1097/NodeTsMessageWorker.git"}, "author" : "Shikhar Dixit", "license" : "ISC", "bugs" : {"url" : "https://github.com/Shikhar1097/NodeTsMessageWorker/issues"}, "homepage" : "https://github.com/Shikhar1097/NodeTsMessageWorker#readme", "devDependencies" : {"@types/node" : "^14.14.8", "@types/amqplib" : "^0.5.14", "@typescript-eslint/eslint-plugin" : "^4.8.1", "@typescript-eslint/parser" : "^4.8.1", "eslint" : "^7.13.0", "eslint-config-airbnb-base" : "^14.0.0", "eslint-plugin-import" : "^2.20.1", "typescript" : "^4.0.5"}, "dependencies" : {"log4js" : "^6.3.0", "amqplib" : "^0.6.0"}} | 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"}, "lint": {"type": "string"}, "test": {"type": "string"}}, "required": ["build", "start", "lint", "test"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"@types/node": {"type": "string"}, "@types/amqplib": {"type": "string"}, "@typescript-eslint/eslint-plugin": {"type": "string"}, "@typescript-eslint/parser": {"type": "string"}, "eslint": {"type": "string"}, "eslint-config-airbnb-base": {"type": "string"}, "eslint-plugin-import": {"type": "string"}, "typescript": {"type": "string"}}, "required": ["@types/node", "@types/amqplib", "@typescript-eslint/eslint-plugin", "@typescript-eslint/parser", "eslint", "eslint-config-airbnb-base", "eslint-plugin-import", "typescript"]}, "dependencies": {"type": "object", "properties": {"log4js": {"type": "string"}, "amqplib": {"type": "string"}}, "required": ["log4js", "amqplib"]}}, "required": ["name", "version", "description", "main", "scripts", "repository", "author", "license", "bugs", "homepage", "devDependencies", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"id": {"type": "string"}, "merged_at": {"type": "string"}, "state": {"type": "string"}}, "required": ["id", "merged_at", "state"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "ab76b483-7569-4e05-b8ec-19abb57641bc", "merged_at" : "never issued", "state" : "closed"} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "merged_at": {"type": "string"}, "state": {"type": "string"}}, "required": ["id", "merged_at", "state"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"custom-ui": {"type": "string"}, "play-with-data": {"type": "string"}}, "required": ["custom-ui", "play-with-data"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"custom-ui" : "Customize path control UI", "play-with-data" : "Play with your own data"} | json_instruct | {"type": "object", "properties": {"custom-ui": {"type": "string"}, "play-with-data": {"type": "string"}}, "required": ["custom-ui", "play-with-data"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"values": {"type": "array", "items": {"type": "string"}}}, "required": ["values"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"values" : ["decorative_blocks:dead_beam"]} | json_instruct | {"type": "object", "properties": {"values": {"type": "array", "items": {"type": "string"}}}, "required": ["values"], "$schema": "http://json-schema.org/draft-07/schema#"} |
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": {"type": "integer"}, "reviewText": {"type": "string"}, "reviewDate": {"type": "string"}}, "required": ["productId", "reviewText", "reviewDate"]}}}, "required": ["userId", "cartId", "preferredProducts", "productReviews"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"userId" : 41232, "cartId" : "6a199ea2-2619-4be1-88df-24aa769818cc", "preferredProducts" : [627, 665, 1469], "productReviews" : [{"productId" : 383, "reviewText" : "i use it this time when i'm in my port-a-potty.", "reviewDate" : "2016-06-17T14:57:51.6103904+03:00"}, {"productId" : 1954, "reviewText" : "this Granite is brown.", "reviewDate" : "2018-10-21T07:01:32.0211255+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"}, "reviewDate": {"type": "string"}}, "required": ["productId", "reviewText", "reviewDate"]}}}, "required": ["userId", "cartId", "preferredProducts", "productReviews"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "author": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "license": {"type": "string"}, "module": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"build": {"type": "string"}, "zip": {"type": "string"}, "lint": {"type": "string"}, "format": {"type": "string"}, "format:fix": {"type": "string"}}, "required": ["build", "zip", "lint", "format", "format:fix"]}, "peerDependencies": {"type": "object", "properties": {"svelte": {"type": "string"}}, "required": ["svelte"]}, "devDependencies": {"type": "object", "properties": {"eslint": {"type": "string"}, "eslint-config-prettier": {"type": "string"}, "eslint-plugin-svelte3": {"type": "string"}, "prettier": {"type": "string"}, "prettier-plugin-svelte": {"type": "string"}, "rollup": {"type": "string"}, "rollup-plugin-node-resolve": {"type": "string"}, "rollup-plugin-svelte": {"type": "string"}, "rollup-plugin-terser": {"type": "string"}, "svelte": {"type": "string"}}, "required": ["eslint", "eslint-config-prettier", "eslint-plugin-svelte3", "prettier", "prettier-plugin-svelte", "rollup", "rollup-plugin-node-resolve", "rollup-plugin-svelte", "rollup-plugin-terser", "svelte"]}, "dependencies": {"type": "object", "properties": {}, "required": []}, "keywords": {"type": "array", "items": {"type": "string"}}, "files": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "version", "description", "author", "repository", "license", "module", "main", "scripts", "peerDependencies", "devDependencies", "dependencies", "keywords", "files"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "svelte-mui", "version" : "0.3.3-3", "description" : "Set of Svelte 3 material ui components", "author" : "viking <vikignt@gmail.com>", "repository" : {"type" : "git", "url" : "https://github.com/vikignt/svelte-mui.git"}, "license" : "MIT", "module" : "index.mjs", "main" : "index.js", "scripts" : {"build" : "rollup -c", "zip" : "gzip -9k index.mjs index.js", "lint" : "eslint src/* --ext .svelte,.js", "format" : "prettier --check \"**\"", "format:fix" : "prettier --write \"**\""}, "peerDependencies" : {"svelte" : "^3.18.0"}, "devDependencies" : {"eslint" : "^6.5.1", "eslint-config-prettier" : "^6.4.0", "eslint-plugin-svelte3" : "^2.7.3", "prettier" : "^1.18.2", "prettier-plugin-svelte" : "^0.7.0", "rollup" : "^1.27.8", "rollup-plugin-node-resolve" : "^5.2.0", "rollup-plugin-svelte" : "^5.1.1", "rollup-plugin-terser" : "^5.1.2", "svelte" : "^3.18.1"}, "dependencies" : {}, "keywords" : ["svelte", "svelte-ui", "svelte-mui", "material", "ui"], "files" : ["src", "index.mjs", "index.js"]} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "author": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "license": {"type": "string"}, "module": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"build": {"type": "string"}, "zip": {"type": "string"}, "lint": {"type": "string"}, "format": {"type": "string"}, "format:fix": {"type": "string"}}, "required": ["build", "zip", "lint", "format", "format:fix"]}, "peerDependencies": {"type": "object", "properties": {"svelte": {"type": "string"}}, "required": ["svelte"]}, "devDependencies": {"type": "object", "properties": {"eslint": {"type": "string"}, "eslint-config-prettier": {"type": "string"}, "eslint-plugin-svelte3": {"type": "string"}, "prettier": {"type": "string"}, "prettier-plugin-svelte": {"type": "string"}, "rollup": {"type": "string"}, "rollup-plugin-node-resolve": {"type": "string"}, "rollup-plugin-svelte": {"type": "string"}, "rollup-plugin-terser": {"type": "string"}, "svelte": {"type": "string"}}, "required": ["eslint", "eslint-config-prettier", "eslint-plugin-svelte3", "prettier", "prettier-plugin-svelte", "rollup", "rollup-plugin-node-resolve", "rollup-plugin-svelte", "rollup-plugin-terser", "svelte"]}, "dependencies": {"type": "object", "properties": {}, "required": []}, "keywords": {"type": "array", "items": {"type": "string"}}, "files": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "version", "description", "author", "repository", "license", "module", "main", "scripts", "peerDependencies", "devDependencies", "dependencies", "keywords", "files"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"nom": {"type": "string"}, "dpt": {"type": "string"}, "inscrits": {"type": "integer"}, "abs": {"type": "integer"}, "votants": {"type": "integer"}, "blancs": {"type": "integer"}, "nuls": {"type": "integer"}, "exp": {"type": "integer"}, "res": {"type": "array", "items": {"type": "object", "properties": {"panneau": {"type": "string"}, "voix": {"type": "integer"}}, "required": ["panneau", "voix"]}}}, "required": ["nom", "dpt", "inscrits", "abs", "votants", "blancs", "nuls", "exp", "res"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"nom" : "Saint-Mars-la-Bri\u00e8re", "dpt" : "Sarthe", "inscrits" : 2028, "abs" : 342, "votants" : 1686, "blancs" : 38, "nuls" : 9, "exp" : 1639, "res" : [{"panneau" : "2", "voix" : 468}, {"panneau" : "11", "voix" : 364}, {"panneau" : "9", "voix" : 343}, {"panneau" : "3", "voix" : 246}, {"panneau" : "1", "voix" : 79}, {"panneau" : "4", "voix" : 72}, {"panneau" : "6", "voix" : 33}, {"panneau" : "5", "voix" : 18}, {"panneau" : "8", "voix" : 11}, {"panneau" : "10", "voix" : 4}, {"panneau" : "7", "voix" : 1}]} | json_instruct | {"type": "object", "properties": {"nom": {"type": "string"}, "dpt": {"type": "string"}, "inscrits": {"type": "integer"}, "abs": {"type": "integer"}, "votants": {"type": "integer"}, "blancs": {"type": "integer"}, "nuls": {"type": "integer"}, "exp": {"type": "integer"}, "res": {"type": "array", "items": {"type": "object", "properties": {"panneau": {"type": "string"}, "voix": {"type": "integer"}}, "required": ["panneau", "voix"]}}}, "required": ["nom", "dpt", "inscrits", "abs", "votants", "blancs", "nuls", "exp", "res"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"id": {"type": "string"}, "text": {"type": "string"}}, "required": ["id", "text"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "d1464-31", "text" : "Here's IVhat Our Listeners Thought of\nJVhat We Did in 1947\nOver a two year period our mail response leaped 141%! JVNYC listeners were listening, enjoying\nand writing to us about it.\n-30-"} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "text": {"type": "string"}}, "required": ["id", "text"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"name": {"type": "string"}, "symbol": {"type": "string"}, "decimals": {"type": "integer"}, "address": {"type": "string"}, "chainId": {"type": "integer"}}, "required": ["name", "symbol", "decimals", "address", "chainId"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "Token 3qqr", "symbol" : "3qqru", "decimals" : 6, "address" : "3qqru6KpGYkCgSntVzBLEpbP11V2GriEeGCMWvfEJLrY", "chainId" : 103} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "symbol": {"type": "string"}, "decimals": {"type": "integer"}, "address": {"type": "string"}, "chainId": {"type": "integer"}}, "required": ["name", "symbol", "decimals", "address", "chainId"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"word" : "ferriprussiate", "definition" : "A ferricyanate; a ferricyanide. [R.]"} | json_instruct | {"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"id": {"type": "string"}, "district_id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "district_id", "name"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "6403160001", "district_id" : "6403160", "name" : "SEMAYANG"} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "district_id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "district_id", "name"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"dependencies": {"type": "object", "properties": {"gulp-postcss": {"type": "string"}}, "required": ["gulp-postcss"]}}, "required": ["dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"dependencies" : {"gulp-postcss" : "6.4.0"}} | json_instruct | {"type": "object", "properties": {"dependencies": {"type": "object", "properties": {"gulp-postcss": {"type": "string"}}, "required": ["gulp-postcss"]}}, "required": ["dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"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": "string"}, "\u5de5\u5ee0\u8ca0\u8cac\u4eba\u59d3\u540d": {"type": "string"}, "\u71df\u5229\u4e8b\u696d\u7d71\u4e00\u7de8\u865f": {"type": "string"}, "\u5de5\u5ee0\u7d44\u7e54\u578b\u614b": {"type": "string"}, "\u5de5\u5ee0\u8a2d\u7acb\u6838\u51c6\u65e5\u671f": {"type": "string"}, "\u5de5\u5ee0\u767b\u8a18\u6838\u51c6\u65e5\u671f": {"type": "string"}, "\u5de5\u5ee0\u767b\u8a18\u72c0\u614b": {"type": "string"}, "\u7522\u696d\u985e\u5225": {"type": "array", "items": {"type": "string"}}, "\u4e3b\u8981\u7522\u54c1": {"type": "array", "items": {"type": "string"}}, "egis": {"type": "null"}}, "required": ["\u5de5\u5ee0\u540d\u7a31", "\u5de5\u5ee0\u767b\u8a18\u7de8\u865f", "\u5de5\u5ee0\u8a2d\u7acb\u8a31\u53ef\u6848\u865f", "\u5de5\u5ee0\u5730\u5740", "\u5de5\u5ee0\u5e02\u93ae\u9109\u6751\u91cc", "\u5de5\u5ee0\u8ca0\u8cac\u4eba\u59d3\u540d", "\u71df\u5229\u4e8b\u696d\u7d71\u4e00\u7de8\u865f", "\u5de5\u5ee0\u7d44\u7e54\u578b\u614b", "\u5de5\u5ee0\u8a2d\u7acb\u6838\u51c6\u65e5\u671f", "\u5de5\u5ee0\u767b\u8a18\u6838\u51c6\u65e5\u671f", "\u5de5\u5ee0\u767b\u8a18\u72c0\u614b", "\u7522\u696d\u985e\u5225", "\u4e3b\u8981\u7522\u54c1", "egis"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"\u5de5\u5ee0\u540d\u7a31" : "\u7f8e\u5982\u5922\u4f01\u696d\u6709\u9650\u516c\u53f8", "\u5de5\u5ee0\u767b\u8a18\u7de8\u865f" : "65005044", "\u5de5\u5ee0\u8a2d\u7acb\u8a31\u53ef\u6848\u865f" : "", "\u5de5\u5ee0\u5730\u5740" : "\u65b0\u5317\u5e02\u4e2d\u548c\u5340\u4e2d\u5c71\u8def2\u6bb5448\u865f2\u6a13", "\u5de5\u5ee0\u5e02\u93ae\u9109\u6751\u91cc" : "\u65b0\u5317\u5e02\u4e2d\u548c\u5340", "\u5de5\u5ee0\u8ca0\u8cac\u4eba\u59d3\u540d" : "\u6797\u7389\u9cf3", "\u71df\u5229\u4e8b\u696d\u7d71\u4e00\u7de8\u865f" : "80478429", "\u5de5\u5ee0\u7d44\u7e54\u578b\u614b" : "\u6709\u9650\u516c\u53f8", "\u5de5\u5ee0\u8a2d\u7acb\u6838\u51c6\u65e5\u671f" : "", "\u5de5\u5ee0\u767b\u8a18\u6838\u51c6\u65e5\u671f" : "1050624", "\u5de5\u5ee0\u767b\u8a18\u72c0\u614b" : "\u751f\u7522\u4e2d", "\u7522\u696d\u985e\u5225" : ["28\u96fb\u529b\u8a2d\u5099\u88fd\u9020\u696d"], "\u4e3b\u8981\u7522\u54c1" : ["285\u5bb6\u7528\u96fb\u5668"], "egis" : null} | 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": "string"}, "\u5de5\u5ee0\u8ca0\u8cac\u4eba\u59d3\u540d": {"type": "string"}, "\u71df\u5229\u4e8b\u696d\u7d71\u4e00\u7de8\u865f": {"type": "string"}, "\u5de5\u5ee0\u7d44\u7e54\u578b\u614b": {"type": "string"}, "\u5de5\u5ee0\u8a2d\u7acb\u6838\u51c6\u65e5\u671f": {"type": "string"}, "\u5de5\u5ee0\u767b\u8a18\u6838\u51c6\u65e5\u671f": {"type": "string"}, "\u5de5\u5ee0\u767b\u8a18\u72c0\u614b": {"type": "string"}, "\u7522\u696d\u985e\u5225": {"type": "array", "items": {"type": "string"}}, "\u4e3b\u8981\u7522\u54c1": {"type": "array", "items": {"type": "string"}}, "egis": {"type": "null"}}, "required": ["\u5de5\u5ee0\u540d\u7a31", "\u5de5\u5ee0\u767b\u8a18\u7de8\u865f", "\u5de5\u5ee0\u8a2d\u7acb\u8a31\u53ef\u6848\u865f", "\u5de5\u5ee0\u5730\u5740", "\u5de5\u5ee0\u5e02\u93ae\u9109\u6751\u91cc", "\u5de5\u5ee0\u8ca0\u8cac\u4eba\u59d3\u540d", "\u71df\u5229\u4e8b\u696d\u7d71\u4e00\u7de8\u865f", "\u5de5\u5ee0\u7d44\u7e54\u578b\u614b", "\u5de5\u5ee0\u8a2d\u7acb\u6838\u51c6\u65e5\u671f", "\u5de5\u5ee0\u767b\u8a18\u6838\u51c6\u65e5\u671f", "\u5de5\u5ee0\u767b\u8a18\u72c0\u614b", "\u7522\u696d\u985e\u5225", "\u4e3b\u8981\u7522\u54c1", "egis"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "is_illegal": {"type": "boolean"}, "is_custom": {"type": "boolean"}, "text": {"type": "string"}, "images": {"type": "array", "items": {"type": "string"}}, "type": {"type": "string"}, "trap_type": {"type": "string"}}, "required": ["id", "name", "is_illegal", "is_custom", "text", "images", "type", "trap_type"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : 164710, "name" : "Mischief of the Gnomes", "is_illegal" : false, "is_custom" : false, "text" : "This turn, reduce the Levels of all monsters in each player's hand by 1 (even after they are Summoned/Set). You can banish this card from the Graveyard; this turn, reduce the Levels of all monsters in each player's hand by 1 (even after they are Summoned/Set).", "images" : ["https://storage.googleapis.com/ygoprodeck.com/pics/164710.jpg"], "type" : "Trap", "trap_type" : "Normal"} | json_instruct | {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "is_illegal": {"type": "boolean"}, "is_custom": {"type": "boolean"}, "text": {"type": "string"}, "images": {"type": "array", "items": {"type": "string"}}, "type": {"type": "string"}, "trap_type": {"type": "string"}}, "required": ["id", "name", "is_illegal", "is_custom", "text", "images", "type", "trap_type"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"globals": {"type": "object", "properties": {"title": {"type": "string"}, "source": {"type": "string"}, "description": {"type": "string"}}, "required": ["title", "source", "description"]}}, "required": ["globals"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"globals" : {"title" : "Labs", "source" : "https://github.com/pschfr/labs/", "description" : "This is a list of my open-source software hosted here on GitHub! More to come soon."}} | json_instruct | {"type": "object", "properties": {"globals": {"type": "object", "properties": {"title": {"type": "string"}, "source": {"type": "string"}, "description": {"type": "string"}}, "required": ["title", "source", "description"]}}, "required": ["globals"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"todos": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "id": {"type": "integer"}}, "required": ["name", "id"]}}}, "required": ["todos"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"todos" : [{"name" : "Test with Android emulator", "id" : 1}, {"name" : "Review cursor height issue", "id" : 2}]} | json_instruct | {"type": "object", "properties": {"todos": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "id": {"type": "integer"}}, "required": ["name", "id"]}}}, "required": ["todos"], "$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"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "license": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"all-contributors-cli": {"type": "string"}}, "required": ["all-contributors-cli"]}}, "required": ["name", "version", "description", "main", "scripts", "keywords", "license", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "react-native-dialogs", "version" : "1.0.2", "description" : "React Native Dialogs", "main" : "index.js", "scripts" : {"test" : "test"}, "keywords" : ["react-native", "android", "react-component"], "license" : "MIT", "devDependencies" : {"all-contributors-cli" : "^4.11.1"}} | 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"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "license": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"all-contributors-cli": {"type": "string"}}, "required": ["all-contributors-cli"]}}, "required": ["name", "version", "description", "main", "scripts", "keywords", "license", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"default-calendar": {"type": "string"}, "separator": {"type": "string"}, "unitOrder": {"type": "string"}, "weekStart": {"type": "integer"}, "placeholder": {"type": "string"}, "days": {"type": "object", "properties": {"narrow": {"type": "array", "items": {"type": "string"}}}, "required": ["narrow"]}, "numerals": {"type": "string"}, "months": {"type": "object", "properties": {"abbreviated": {"type": "array", "items": {"type": "string"}}, "narrow": {"type": "array", "items": {"type": "string"}}, "wide": {"type": "array", "items": {"type": "string"}}}, "required": ["abbreviated", "narrow", "wide"]}}, "required": ["default-calendar", "separator", "unitOrder", "weekStart", "placeholder", "days", "numerals", "months"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"default-calendar" : "gregorian", "separator" : "/", "unitOrder" : "DD/MM/YYYY", "weekStart" : 7, "placeholder" : "DD/MM/YYYY", "days" : {"narrow" : ["D", "L", "M", "M", "J", "V", "S"]}, "numerals" : "0123456789", "months" : {"abbreviated" : ["ene.", "feb.", "mar.", "abr.", "may.", "jun.", "jul.", "ago.", "sept.", "oct.", "nov.", "dic."], "narrow" : ["E", "F", "M", "A", "M", "J", "J", "A", "S", "O", "N", "D"], "wide" : ["enero", "febrero", "marzo", "abril", "mayo", "junio", "julio", "agosto", "septiembre", "octubre", "noviembre", "diciembre"]}} | json_instruct | {"type": "object", "properties": {"default-calendar": {"type": "string"}, "separator": {"type": "string"}, "unitOrder": {"type": "string"}, "weekStart": {"type": "integer"}, "placeholder": {"type": "string"}, "days": {"type": "object", "properties": {"narrow": {"type": "array", "items": {"type": "string"}}}, "required": ["narrow"]}, "numerals": {"type": "string"}, "months": {"type": "object", "properties": {"abbreviated": {"type": "array", "items": {"type": "string"}}, "narrow": {"type": "array", "items": {"type": "string"}}, "wide": {"type": "array", "items": {"type": "string"}}}, "required": ["abbreviated", "narrow", "wide"]}}, "required": ["default-calendar", "separator", "unitOrder", "weekStart", "placeholder", "days", "numerals", "months"], "$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"}, "description": {"type": "string"}, "license": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}}, "require": {"type": "object", "properties": {"php-http/httplug": {"type": "string"}, "php-http/message": {"type": "string"}, "php-http/discovery": {"type": "string"}}, "required": ["php-http/httplug", "php-http/message", "php-http/discovery"]}, "require-dev": {"type": "object", "properties": {"phpunit/phpunit": {"type": "string"}, "php-http/guzzle6-adapter": {"type": "string"}}, "required": ["phpunit/phpunit", "php-http/guzzle6-adapter"]}, "autoload": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"Netsells\\iConfig\\": {"type": "string"}}, "required": ["Netsells\\iConfig\\"]}}, "required": ["psr-4"]}, "minimum-stability": {"type": "string"}}, "required": ["name", "description", "license", "authors", "require", "require-dev", "autoload", "minimum-stability"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "netsells/iconfig-php", "description" : "The iConfig SDK provides a wrapper for the HTTP API.", "license" : "MIT", "authors" : [{"name" : "Sam Jordan", "email" : "sam@netsells.co.uk"}], "require" : {"php-http/httplug" : "^1.0", "php-http/message" : "^1.0", "php-http/discovery" : "^1.0"}, "require-dev" : {"phpunit/phpunit" : "^5.6", "php-http/guzzle6-adapter" : "^1.0"}, "autoload" : {"psr-4" : {"Netsells\\iConfig\\" : "src/"}}, "minimum-stability" : "stable"} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "license": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}}, "require": {"type": "object", "properties": {"php-http/httplug": {"type": "string"}, "php-http/message": {"type": "string"}, "php-http/discovery": {"type": "string"}}, "required": ["php-http/httplug", "php-http/message", "php-http/discovery"]}, "require-dev": {"type": "object", "properties": {"phpunit/phpunit": {"type": "string"}, "php-http/guzzle6-adapter": {"type": "string"}}, "required": ["phpunit/phpunit", "php-http/guzzle6-adapter"]}, "autoload": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"Netsells\\iConfig\\": {"type": "string"}}, "required": ["Netsells\\iConfig\\"]}}, "required": ["psr-4"]}, "minimum-stability": {"type": "string"}}, "required": ["name", "description", "license", "authors", "require", "require-dev", "autoload", "minimum-stability"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "array", "items": {}}}, "required": ["contract", "tool", "start", "end", "duration", "analysis"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"contract" : "0x49965d438d2a5d35dffbc1fdaba0c6bd12749f08", "tool" : "osiris", "start" : 1564610227.0867708, "end" : 1564610229.7110605, "duration" : 2.6242897510528564, "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://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"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#"}
| {"Time" : "2021-06-19T13:00:00Z", "Temp" : 30.1, "RelHum" : 47, "WindSpeed" : 6.5, "WindDir" : 275} | 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#"} |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.