input stringlengths 159 2.05k | output stringlengths 5 10.3k | task stringclasses 1
value | schema stringlengths 100 1.99k |
|---|---|---|---|
Create an example JSON object that satisfies this schema:
{"type": "array", "items": {"type": "object", "properties": {"manufacturer": {"type": "string"}, "market_name": {"type": "string"}, "codename": {"type": "string"}, "model": {"type": "string"}}, "required": ["manufacturer", "market_name", "codename", "model"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"manufacturer" : "POPTEL", "market_name" : "P8", "codename" : "P8", "model" : "P8"}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"manufacturer": {"type": "string"}, "market_name": {"type": "string"}, "codename": {"type": "string"}, "model": {"type": "string"}}, "required": ["manufacturer", "market_name", "codename", "model"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"parent": {"type": "string"}}, "required": ["parent"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"parent" : "mythiccraft:block/charredcobble_wall_inventory"} | json_instruct | {"type": "object", "properties": {"parent": {"type": "string"}}, "required": ["parent"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [[9, 1, 2], [10, 11, 12], [14, 15, 16]] | json_instruct | {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"state": {"type": "string"}, "result": {"type": "string"}}, "required": ["state", "result"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"state" : "COMPLETE", "result" : "SIGNATURE_HASH_MISMATCH"} | json_instruct | {"type": "object", "properties": {"state": {"type": "string"}, "result": {"type": "string"}}, "required": ["state", "result"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "array", "items": {"type": "object", "properties": {"id_sitio": {"type": "string"}, "id_canal": {"type": "string"}, "id_promocion": {"type": "string"}, "descripcion_promocion": {"type": "string"}, "url_imagen": {"type": "string"}, "fecha_inicio_promo": {"type": "string"}, "costo": {"type": "string"}, "moneda": {"type": "string"}, "taxable": {"type": "string"}, "texto_oferta": {"type": "string"}, "order_code_type": {"type": "string"}, "nombre_order_code_type": {"type": "string"}, "issue_id": {"type": "string"}, "issue_date": {"type": "string"}, "descripcion_issue": {"type": "string"}, "oc_id": {"type": "string"}, "id_publicacion": {"type": "string"}, "nombre_publicacion": {"type": "string"}, "descripcion_publicacion": {"type": "string"}, "descripcion_publicacion_larga": {"type": "null"}, "id_formato": {"type": "string"}, "nombre_formato": {"type": "string"}, "product_id": {"type": "string"}}, "required": ["id_sitio", "id_canal", "id_promocion", "descripcion_promocion", "url_imagen", "fecha_inicio_promo", "costo", "moneda", "taxable", "texto_oferta", "order_code_type", "nombre_order_code_type", "issue_id", "issue_date", "descripcion_issue", "oc_id", "id_publicacion", "nombre_publicacion", "descripcion_publicacion", "descripcion_publicacion_larga", "id_formato", "nombre_formato", "product_id"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"id_sitio" : "3", "id_canal" : "27", "id_promocion" : "542", "descripcion_promocion" : "NUEVO ESQUEMA DE PAGOS PARA PERSONAS FISICAS", "url_imagen" : "cSEMPIDC.jpg", "fecha_inicio_promo" : "24/08/2012", "costo" : "2500.0000", "moneda" : "MX", "taxable" : "1", "texto_oferta" : "\u00a1Contin\u00faan los Cambios FISCALES en este 2012!", "order_code_type" : "2", "nombre_order_code_type" : "Product", "issue_id" : "0", "issue_date" : "", "descripcion_issue" : "", "oc_id" : "705", "id_publicacion" : "1", "nombre_publicacion" : "IDC", "descripcion_publicacion" : "Seguridad Jur\u00eddica Integral para su Empresa ", "descripcion_publicacion_larga" : null, "id_formato" : "5", "nombre_formato" : "Seminarios", "product_id" : "0"}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"id_sitio": {"type": "string"}, "id_canal": {"type": "string"}, "id_promocion": {"type": "string"}, "descripcion_promocion": {"type": "string"}, "url_imagen": {"type": "string"}, "fecha_inicio_promo": {"type": "string"}, "costo": {"type": "string"}, "moneda": {"type": "string"}, "taxable": {"type": "string"}, "texto_oferta": {"type": "string"}, "order_code_type": {"type": "string"}, "nombre_order_code_type": {"type": "string"}, "issue_id": {"type": "string"}, "issue_date": {"type": "string"}, "descripcion_issue": {"type": "string"}, "oc_id": {"type": "string"}, "id_publicacion": {"type": "string"}, "nombre_publicacion": {"type": "string"}, "descripcion_publicacion": {"type": "string"}, "descripcion_publicacion_larga": {"type": "null"}, "id_formato": {"type": "string"}, "nombre_formato": {"type": "string"}, "product_id": {"type": "string"}}, "required": ["id_sitio", "id_canal", "id_promocion", "descripcion_promocion", "url_imagen", "fecha_inicio_promo", "costo", "moneda", "taxable", "texto_oferta", "order_code_type", "nombre_order_code_type", "issue_id", "issue_date", "descripcion_issue", "oc_id", "id_publicacion", "nombre_publicacion", "descripcion_publicacion", "descripcion_publicacion_larga", "id_formato", "nombre_formato", "product_id"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"}
| ["bnt-seshat", "mysql-bindings-benchmarks", "mysql-session-store"] | json_instruct | {"type": "array", "items": {"type": "string"}, "$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#"}
| [["atran cargo airlines", "anchorage", "united states", "iliamna", "united states", "0"], ["atran cargo airlines", "iliamna", "united states", "anchorage", "united states", "0"]] | json_instruct | {"type": "array", "items": {"type": "array", "items": {"type": "string"}}, "$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"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "start": {"type": "string"}}, "required": ["test", "start"]}, "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"}, "engines": {"type": "object", "properties": {"node": {"type": "string"}}, "required": ["node"]}, "dependencies": {"type": "object", "properties": {"asciify-image": {"type": "string"}, "axios": {"type": "string"}, "dotenv": {"type": "string"}, "google-images": {"type": "string"}}, "required": ["asciify-image", "axios", "dotenv", "google-images"]}, "devDependencies": {"type": "object", "properties": {"prettier": {"type": "string"}}, "required": ["prettier"]}}, "required": ["name", "version", "description", "main", "scripts", "repository", "keywords", "author", "license", "bugs", "homepage", "engines", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "ascii-anything", "version" : "1.0.0", "description" : "Ascii anything: Just type it!", "main" : "index.js", "scripts" : {"test" : "jest", "start" : "node index.js"}, "repository" : {"type" : "git", "url" : "git+https://github.com/lopno/ascii-anything.git"}, "keywords" : ["ascii"], "author" : "Mikael Midtgaard", "license" : "MIT", "bugs" : {"url" : "https://github.com/lopno/ascii-anything/issues"}, "homepage" : "https://github.com/lopno/ascii-anything#readme", "engines" : {"node" : ">=8"}, "dependencies" : {"asciify-image" : "^0.1.5", "axios" : "^0.18.0", "dotenv" : "^8.0.0", "google-images" : "^2.1.0"}, "devDependencies" : {"prettier" : "^1.17.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"}, "start": {"type": "string"}}, "required": ["test", "start"]}, "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"}, "engines": {"type": "object", "properties": {"node": {"type": "string"}}, "required": ["node"]}, "dependencies": {"type": "object", "properties": {"asciify-image": {"type": "string"}, "axios": {"type": "string"}, "dotenv": {"type": "string"}, "google-images": {"type": "string"}}, "required": ["asciify-image", "axios", "dotenv", "google-images"]}, "devDependencies": {"type": "object", "properties": {"prettier": {"type": "string"}}, "required": ["prettier"]}}, "required": ["name", "version", "description", "main", "scripts", "repository", "keywords", "author", "license", "bugs", "homepage", "engines", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"h": {"type": "array", "items": {"type": "object", "properties": {"d": {"type": "array", "items": {"type": "object", "properties": {"e": {"type": "array", "items": {"type": "string"}}, "f": {"type": "string"}}, "required": ["e", "f"]}}}, "required": ["d"]}}, "stem": {"type": "string"}, "t": {"type": "string"}}, "required": ["h", "stem", "t"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"h" : [{"d" : [{"e" : ["\ufff9`Ka'alitadan~ `no~ `koli~.\ufffa\ufffb\u51b0\u51dd\u56fa\u6210\u584a\u3002"], "f" : "\u51dd\u56fa\u6210\u584a\u7684\u3002"}]}], "stem" : "'alitad", "t" : "ka'alitadan"} | json_instruct | {"type": "object", "properties": {"h": {"type": "array", "items": {"type": "object", "properties": {"d": {"type": "array", "items": {"type": "object", "properties": {"e": {"type": "array", "items": {"type": "string"}}, "f": {"type": "string"}}, "required": ["e", "f"]}}}, "required": ["d"]}}, "stem": {"type": "string"}, "t": {"type": "string"}}, "required": ["h", "stem", "t"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"t": {"type": "string"}, "h": {"type": "array", "items": {"type": "object", "properties": {"d": {"type": "array", "items": {"type": "object", "properties": {"f": {"type": "string"}, "e": {"type": "array", "items": {"type": "string"}}}, "required": ["f", "e"]}}}, "required": ["d"]}}}, "required": ["t", "h"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"t" : "cenget", "h" : [{"d" : [{"f" : "\u725b\u99ac\u7b49\u7684\u8671\u5b50\u3001\u8df3\u86a4\u3002", "e" : ["\ufff9`Ci~`c~`e~`ng~`e~`t~ `ko~ `kolong~.\ufffa\ufffb\u8eab\u4e0a\u9577\u725b\u86a4\u3002"]}]}]} | json_instruct | {"type": "object", "properties": {"t": {"type": "string"}, "h": {"type": "array", "items": {"type": "object", "properties": {"d": {"type": "array", "items": {"type": "object", "properties": {"f": {"type": "string"}, "e": {"type": "array", "items": {"type": "string"}}}, "required": ["f", "e"]}}}, "required": ["d"]}}}, "required": ["t", "h"], "$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"}, "type": {"type": "string"}, "keywords": {"type": "array", "items": {"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": {"yiisoft/yii2": {"type": "string"}, "froala/wysiwyg-editor": {"type": "string"}, "rmrevin/yii2-fontawesome": {"type": "string"}}, "required": ["yiisoft/yii2", "froala/wysiwyg-editor", "rmrevin/yii2-fontawesome"]}, "autoload": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"froala\\froalaeditor\\": {"type": "string"}}, "required": ["froala\\froalaeditor\\"]}}, "required": ["psr-4"]}}, "required": ["name", "version", "description", "type", "keywords", "license", "authors", "require", "autoload"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "froala/yii2-froala-editor", "version" : "3.1.0", "description" : "A beautiful WYSIWYG HTML text editor based on HTML5 technology. Cross browser, with mobile support, high performance and Retina Ready modern design.", "type" : "yii2-extension", "keywords" : ["froala", "html", "text", "editor", "wysiwyg", "rich editor", "rich text editor", "rte", "javascript"], "license" : "MIT", "authors" : [{"name" : "dungphanxuan", "email" : "dungphanxuan999@gmail.com"}], "require" : {"yiisoft/yii2" : "^2.0", "froala/wysiwyg-editor" : "3.1.0", "rmrevin/yii2-fontawesome" : "^2.0 | ^3.0"}, "autoload" : {"psr-4" : {"froala\\froalaeditor\\" : "src/"}}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "type": {"type": "string"}, "keywords": {"type": "array", "items": {"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": {"yiisoft/yii2": {"type": "string"}, "froala/wysiwyg-editor": {"type": "string"}, "rmrevin/yii2-fontawesome": {"type": "string"}}, "required": ["yiisoft/yii2", "froala/wysiwyg-editor", "rmrevin/yii2-fontawesome"]}, "autoload": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"froala\\froalaeditor\\": {"type": "string"}}, "required": ["froala\\froalaeditor\\"]}}, "required": ["psr-4"]}}, "required": ["name", "version", "description", "type", "keywords", "license", "authors", "require", "autoload"], "$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" : 85922861, "type" : "Feature", "properties" : {"src:alt_label" : "quattroshapes_pg", "src:geom" : "quattroshapes_pg", "wof:geomhash" : "849fdaf4e2ec32e291a7726e08166bc3", "wof:id" : 85922861, "wof:repo" : "whosonfirst-data-admin-tw"}, "bbox" : [121.548722, 25.021023, 121.548722, 25.021023], "geometry" : {"coordinates" : [121.548722, 25.021023], "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#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"id": {"type": "string"}, "expression": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}}, "required": ["id"]}}}, "required": ["id", "expression"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "http://data.doremus.org/performance/e922359a-c868-3e43-b220-38324ea7f43c", "expression" : [{"id" : "http://data.doremus.org/expression/bc4454c6-761f-3fc9-b95c-c312a3e2ec90"}, {"id" : "http://data.doremus.org/expression/cfc93583-b6a8-31c1-b7af-0f18dd46cae6"}, {"id" : "http://data.doremus.org/expression/e8fe3b5d-06f3-3796-9baf-60da17a37505"}, {"id" : "http://data.doremus.org/expression/22b4fae2-954a-3d36-a065-c2e8345db853"}, {"id" : "http://data.doremus.org/expression/c5485258-c9ea-33b1-9ff7-b8a1082ffcbe"}, {"id" : "http://data.doremus.org/expression/b7ee904a-7d3b-37ca-a61c-f54539df23fd"}, {"id" : "http://data.doremus.org/expression/efd8fa81-1438-345e-af44-783f4f8eb2be"}, {"id" : "http://data.doremus.org/expression/74462999-647d-328d-a4d5-4ee60020b549"}, {"id" : "http://data.doremus.org/expression/85cb219c-c077-3758-8cc3-451b5ebcb262"}, {"id" : "http://data.doremus.org/expression/b455ff05-45a8-3ac3-9c8a-5f1155f85fc4"}, {"id" : "http://data.doremus.org/expression/91ceb17a-a7a1-3f30-ab7e-60ef34215df0"}, {"id" : "http://data.doremus.org/expression/95b82bf2-7ba3-3ef1-a15b-cce64245f9d4"}, {"id" : "http://data.doremus.org/expression/6636eec6-dbe0-3d7f-b072-1c44dfb389f6"}, {"id" : "http://data.doremus.org/expression/23b62fe3-d4bc-3de9-b512-b52233248c80"}, {"id" : "http://data.doremus.org/expression/0230b9fa-1669-3b88-ac1b-c872224442e7"}]} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "expression": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}}, "required": ["id"]}}}, "required": ["id", "expression"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"body": {"type": "string"}, "attachments": {"type": "array", "items": {}}, "created_by_name": {"type": "string"}, "created_at": {"type": "string"}, "created_by": {"type": "string"}, "parent_id": {"type": "string"}, "id": {"type": "string"}}, "required": ["body", "attachments", "created_by_name", "created_at", "created_by", "parent_id", "id"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"body" : "Hi Greg,\n\n\nthank you for that whole bunch of information! ;-) I have no redirecting \nsurfaces, but I use (mk)illums to bundle groups of light sources for the \nindirect calculation. I do not know if this causes additional start-up \nprocessing.\n\n\nThe idea to deactivate the obstruction cache is quite promising for my \ncase. I have one illuminated room, so all those light sources are not \nhidden by surfaces any way. That means that all that caching is for \nnothing and just wastes the start-up time in this special scenario.\n\n\nI will try this as soon as the next image is done (I guess tomorrow) and \nreport any success.\n\n\nThe idea to use -P is a good one - but I wonder how to do this when \nusing ranimate to control the rendering. Maybe you remember, I am that \ncrazy guy using ranimate to render stills - which is nice cause I can \nuse it to continue after broken processes, distribute processes both on \nsmp and on clusters, and all that... ;-) I will have a look at the \nranimate documentation once again.\n\n\nCU and thanks, Lars.\n___\n<sup>Automatically generated content from [radiance mailing-list](https://radiance-online.org/pipermail/radiance-general/2008-April/004930.html).</sup>", "attachments" : [], "created_by_name" : "Lars O. Grobe", "created_at" : "April 16, 2008 at 02:04PM", "created_by" : "Lars_O._Grobe", "parent_id" : "radiance-general_004928", "id" : "radiance-general_004930"} | json_instruct | {"type": "object", "properties": {"body": {"type": "string"}, "attachments": {"type": "array", "items": {}}, "created_by_name": {"type": "string"}, "created_at": {"type": "string"}, "created_by": {"type": "string"}, "parent_id": {"type": "string"}, "id": {"type": "string"}}, "required": ["body", "attachments", "created_by_name", "created_at", "created_by", "parent_id", "id"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"Main": {"type": "object", "properties": {"title": {"type": "object", "properties": {"type": {"type": "string"}, "config": {"type": "object", "properties": {"label": {"type": "string"}, "placeholder": {"type": "string"}, "useAsTitle": {"type": "boolean"}}, "required": ["label", "placeholder", "useAsTitle"]}}, "required": ["type", "config"]}, "body": {"type": "object", "properties": {"type": {"type": "string"}, "config": {"type": "object", "properties": {"multi": {"type": "string"}, "allowTargetBlank": {"type": "boolean"}, "label": {"type": "string"}, "labels": {"type": "array", "items": {"type": "string"}}}, "required": ["multi", "allowTargetBlank", "label", "labels"]}}, "required": ["type", "config"]}}, "required": ["title", "body"]}}, "required": ["Main"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"Main" : {"title" : {"type" : "Text", "config" : {"label" : "Title", "placeholder" : "Agency", "useAsTitle" : true}}, "body" : {"type" : "StructuredText", "config" : {"multi" : "paragraph, heading2, heading3, heading4, heading5, heading6, em, hyperlink", "allowTargetBlank" : true, "label" : "Body", "labels" : ["superscript"]}}}} | json_instruct | {"type": "object", "properties": {"Main": {"type": "object", "properties": {"title": {"type": "object", "properties": {"type": {"type": "string"}, "config": {"type": "object", "properties": {"label": {"type": "string"}, "placeholder": {"type": "string"}, "useAsTitle": {"type": "boolean"}}, "required": ["label", "placeholder", "useAsTitle"]}}, "required": ["type", "config"]}, "body": {"type": "object", "properties": {"type": {"type": "string"}, "config": {"type": "object", "properties": {"multi": {"type": "string"}, "allowTargetBlank": {"type": "boolean"}, "label": {"type": "string"}, "labels": {"type": "array", "items": {"type": "string"}}}, "required": ["multi", "allowTargetBlank", "label", "labels"]}}, "required": ["type", "config"]}}, "required": ["title", "body"]}}, "required": ["Main"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"gender": {"type": "string"}, "name": {"type": "object", "properties": {"title": {"type": "string"}, "first": {"type": "string"}, "last": {"type": "string"}}, "required": ["title", "first", "last"]}, "location": {"type": "object", "properties": {"street": {"type": "string"}, "city": {"type": "string"}, "state": {"type": "string"}, "postcode": {"type": "integer"}}, "required": ["street", "city", "state", "postcode"]}, "email": {"type": "string"}, "dob": {"type": "string"}, "phone": {"type": "string"}, "cell": {"type": "string"}, "id": {"type": "string"}, "picture": {"type": "object", "properties": {"large": {"type": "string"}, "medium": {"type": "string"}, "thumbnail": {"type": "string"}}, "required": ["large", "medium", "thumbnail"]}}, "required": ["gender", "name", "location", "email", "dob", "phone", "cell", "id", "picture"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"gender" : "male", "name" : {"title" : "mr", "first" : "marion", "last" : "jenkins"}, "location" : {"street" : "2386 adams st", "city" : "providence", "state" : "georgia", "postcode" : 87899}, "email" : "marion.jenkins@example.com", "dob" : "1984-11-17 18:31:08", "phone" : "(628)-148-5022", "cell" : "(461)-022-1247", "id" : "967-62-4736", "picture" : {"large" : "https://randomuser.me/api/portraits/men/16.jpg", "medium" : "https://randomuser.me/api/portraits/med/men/16.jpg", "thumbnail" : "https://randomuser.me/api/portraits/thumb/men/16.jpg"}} | json_instruct | {"type": "object", "properties": {"gender": {"type": "string"}, "name": {"type": "object", "properties": {"title": {"type": "string"}, "first": {"type": "string"}, "last": {"type": "string"}}, "required": ["title", "first", "last"]}, "location": {"type": "object", "properties": {"street": {"type": "string"}, "city": {"type": "string"}, "state": {"type": "string"}, "postcode": {"type": "integer"}}, "required": ["street", "city", "state", "postcode"]}, "email": {"type": "string"}, "dob": {"type": "string"}, "phone": {"type": "string"}, "cell": {"type": "string"}, "id": {"type": "string"}, "picture": {"type": "object", "properties": {"large": {"type": "string"}, "medium": {"type": "string"}, "thumbnail": {"type": "string"}}, "required": ["large", "medium", "thumbnail"]}}, "required": ["gender", "name", "location", "email", "dob", "phone", "cell", "id", "picture"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"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" : "\"use strict\";\n\nfunction __export(m) {\n for (var p in m) {\n if (!exports.hasOwnProperty(p)) exports[p] = m[p];\n }\n}\n/**\n * Created by vadimdez on 20/01/2017.\n */\n\n\n__export(require(\"./src/ng2-order.module\"));\n\n__export(require(\"./src/ng2-order.pipe\")); //# sourceMappingURL=index.js.map", "map" : null, "metadata" : {}, "sourceType" : "script"} | 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#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"id": {"type": "string"}, "provinceId": {"type": "string"}, "regencyId": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "provinceId", "regencyId", "name"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "09", "provinceId" : "12", "regencyId" : "17", "name" : "Sitio-tio"} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "provinceId": {"type": "string"}, "regencyId": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "provinceId", "regencyId", "name"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"cheet.js": {"type": "string"}, "cheet.min.js": {"type": "string"}}, "required": ["cheet.js", "cheet.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"cheet.js" : "sha512-ulIBE6ydLtvZdJFAo00EJee7xiLzwJeOm7RrJOnKtqTebvkcBcEGaWV2nvMhrcoOe/T2gITECwP0/BwRRrvrpg==", "cheet.min.js" : "sha512-xnF85FZ2nca0q+THdTBOOHQl66tPWU+ta5LhAUHPSHnwoiUp/xwdKEJiWwDNIQbuEVBH3XpNUvZkRX7RE0prbA=="} | json_instruct | {"type": "object", "properties": {"cheet.js": {"type": "string"}, "cheet.min.js": {"type": "string"}}, "required": ["cheet.js", "cheet.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"variants": {"type": "object", "properties": {"": {"type": "object", "properties": {"model": {"type": "string"}}, "required": ["model"]}}, "required": [""]}}, "required": ["variants"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"variants" : {"" : {"model" : "block/houstonia"}}} | json_instruct | {"type": "object", "properties": {"variants": {"type": "object", "properties": {"": {"type": "object", "properties": {"model": {"type": "string"}}, "required": ["model"]}}, "required": [""]}}, "required": ["variants"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"name": {"type": "string"}, "requires": {"type": "boolean"}, "lockfileVersion": {"type": "integer"}, "dependencies": {"type": "object", "properties": {"@inrupt/template-ts": {"type": "object", "properties": {"version": {"type": "string"}, "resolved": {"type": "string"}, "integrity": {"type": "string"}}, "required": ["version", "resolved", "integrity"]}}, "required": ["@inrupt/template-ts"]}}, "required": ["name", "requires", "lockfileVersion", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "cd-packaging-test-node", "requires" : true, "lockfileVersion" : 1, "dependencies" : {"@inrupt/template-ts" : {"version" : "0.0.2", "resolved" : "https://registry.npmjs.org/@inrupt/template-ts/-/template-ts-0.0.2.tgz", "integrity" : "sha512-KR4phNLdjCbypwMHt1sJbKH3bNIZxD/V/FQZYYRO3vBgtq/UU2W34DT9tU/3we30WgoGo51l78FE+Aj9Arzylg=="}}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "requires": {"type": "boolean"}, "lockfileVersion": {"type": "integer"}, "dependencies": {"type": "object", "properties": {"@inrupt/template-ts": {"type": "object", "properties": {"version": {"type": "string"}, "resolved": {"type": "string"}, "integrity": {"type": "string"}}, "required": ["version", "resolved", "integrity"]}}, "required": ["@inrupt/template-ts"]}}, "required": ["name", "requires", "lockfileVersion", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"angular-material.css": {"type": "string"}, "angular-material.js": {"type": "string"}, "angular-material.min.css": {"type": "string"}, "angular-material.min.js": {"type": "string"}}, "required": ["angular-material.css", "angular-material.js", "angular-material.min.css", "angular-material.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"angular-material.css" : "sha256-AbetpgABHnIQT27XFZkS+SrsKiMuhcCb3Yi3CzBDstQ=", "angular-material.js" : "sha256-dqcBUa2BOnZ7W4VSlr9vZ1/siyO7Yo1pT97a49PKslI=", "angular-material.min.css" : "sha256-gvQKtbV/4PIwMz/T8u5WEUicSptANmY12OxOM7SJVEQ=", "angular-material.min.js" : "sha256-nk2rDSPkvbR54Il3IynosipPhQBjgmO8imYokgCb7YI="} | json_instruct | {"type": "object", "properties": {"angular-material.css": {"type": "string"}, "angular-material.js": {"type": "string"}, "angular-material.min.css": {"type": "string"}, "angular-material.min.js": {"type": "string"}}, "required": ["angular-material.css", "angular-material.js", "angular-material.min.css", "angular-material.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"index": {"type": "integer"}, "name": {"type": "string"}, "size": {"type": "string"}, "type": {"type": "string"}, "subtype": {"type": "null"}, "alignment": {"type": "string"}, "armor_class": {"type": "integer"}, "hit_points": {"type": "integer"}, "hit_dice": {"type": "string"}, "speed": {"type": "string"}, "strength": {"type": "integer"}, "dexterity": {"type": "integer"}, "constitution": {"type": "integer"}, "intelligence": {"type": "integer"}, "wisdom": {"type": "integer"}, "charisma": {"type": "integer"}, "damage_vulnerabilities": {"type": "array", "items": {}}, "damage_resistances": {"type": "array", "items": {"type": "string"}}, "damage_immunities": {"type": "array", "items": {}}, "condition_immunities": {"type": "array", "items": {"type": "string"}}, "senses": {"type": "string"}, "languages": {"type": "string"}, "challenge_rating": {"type": "number"}, "special_abilities": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "desc": {"type": "string"}, "attack_bonus": {"type": "integer"}}, "required": ["name", "desc", "attack_bonus"]}}, "actions": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "desc": {"type": "string"}, "attack_bonus": {"type": "integer"}, "damage_dice": {"type": "string"}}, "required": ["name", "desc", "attack_bonus", "damage_dice"]}}, "url": {"type": "string"}}, "required": ["index", "name", "size", "type", "subtype", "alignment", "armor_class", "hit_points", "hit_dice", "speed", "strength", "dexterity", "constitution", "intelligence", "wisdom", "charisma", "damage_vulnerabilities", "damage_resistances", "damage_immunities", "condition_immunities", "senses", "languages", "challenge_rating", "special_abilities", "actions", "url"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"index" : 278, "name" : "Swarm of Rats", "size" : "Medium", "type" : "swarm of Tiny beasts", "subtype" : null, "alignment" : "unaligned", "armor_class" : 10, "hit_points" : 24, "hit_dice" : "7d8", "speed" : "30 ft.", "strength" : 9, "dexterity" : 11, "constitution" : 9, "intelligence" : 2, "wisdom" : 10, "charisma" : 3, "damage_vulnerabilities" : [], "damage_resistances" : ["bludgeoning", "piercing", "slashing"], "damage_immunities" : [], "condition_immunities" : ["charmed", "frightened", "grappled", "paralyzed", "petrified", "prone", "restrained", "stunned"], "senses" : "darkvision 30 ft., passive Perception 10", "languages" : "", "challenge_rating" : 0.25, "special_abilities" : [{"name" : "Keen Smell", "desc" : "The swarm has advantage on Wisdom (Perception) checks that rely on smell.", "attack_bonus" : 0}, {"name" : "Swarm", "desc" : "The swarm can occupy another creature's space and vice versa, and the swarm can move through any opening large enough for a Tiny rat. The swarm can't regain hit points or gain temporary hit points.", "attack_bonus" : 0}], "actions" : [{"name" : "Bites", "desc" : "Melee Weapon Attack: +2 to hit, reach 0 ft., one target in the swarm's space. Hit: 7 (2d6) piercing damage, or 3 (1d6) piercing damage if the swarm has half of its hit points or fewer.", "attack_bonus" : 2, "damage_dice" : "2d6"}], "url" : "http://www.dnd5eapi.co/api/monsters/278"} | json_instruct | {"type": "object", "properties": {"index": {"type": "integer"}, "name": {"type": "string"}, "size": {"type": "string"}, "type": {"type": "string"}, "subtype": {"type": "null"}, "alignment": {"type": "string"}, "armor_class": {"type": "integer"}, "hit_points": {"type": "integer"}, "hit_dice": {"type": "string"}, "speed": {"type": "string"}, "strength": {"type": "integer"}, "dexterity": {"type": "integer"}, "constitution": {"type": "integer"}, "intelligence": {"type": "integer"}, "wisdom": {"type": "integer"}, "charisma": {"type": "integer"}, "damage_vulnerabilities": {"type": "array", "items": {}}, "damage_resistances": {"type": "array", "items": {"type": "string"}}, "damage_immunities": {"type": "array", "items": {}}, "condition_immunities": {"type": "array", "items": {"type": "string"}}, "senses": {"type": "string"}, "languages": {"type": "string"}, "challenge_rating": {"type": "number"}, "special_abilities": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "desc": {"type": "string"}, "attack_bonus": {"type": "integer"}}, "required": ["name", "desc", "attack_bonus"]}}, "actions": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "desc": {"type": "string"}, "attack_bonus": {"type": "integer"}, "damage_dice": {"type": "string"}}, "required": ["name", "desc", "attack_bonus", "damage_dice"]}}, "url": {"type": "string"}}, "required": ["index", "name", "size", "type", "subtype", "alignment", "armor_class", "hit_points", "hit_dice", "speed", "strength", "dexterity", "constitution", "intelligence", "wisdom", "charisma", "damage_vulnerabilities", "damage_resistances", "damage_immunities", "condition_immunities", "senses", "languages", "challenge_rating", "special_abilities", "actions", "url"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"key": {"type": "string"}, "short_name": {"type": "string"}, "name": {"type": "string"}, "category": {"type": "string"}, "owner": {"type": "string"}, "homepage_url": {"type": "string"}, "spdx_license_key": {"type": "string"}, "text_urls": {"type": "array", "items": {"type": "string"}}, "faq_url": {"type": "string"}}, "required": ["key", "short_name", "name", "category", "owner", "homepage_url", "spdx_license_key", "text_urls", "faq_url"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"key" : "owfa-1.0", "short_name" : "OWFa 1.0", "name" : "Open Web Foundation Final Specification Agreement (OWFa 1.0)", "category" : "Proprietary Free", "owner" : "Open Web Foundation", "homepage_url" : "http://www.openwebfoundation.org/legal/the-owf-1-0-agreements/owfa-1-0", "spdx_license_key" : "LicenseRef-scancode-owfa-1.0", "text_urls" : ["http://www.openwebfoundation.org/legal/the-owf-1-0-agreements/owfa-1-0"], "faq_url" : "http://www.openwebfoundation.org/faqs/open-web-foundation-cla-1-0-owfa-1-0-faq"} | json_instruct | {"type": "object", "properties": {"key": {"type": "string"}, "short_name": {"type": "string"}, "name": {"type": "string"}, "category": {"type": "string"}, "owner": {"type": "string"}, "homepage_url": {"type": "string"}, "spdx_license_key": {"type": "string"}, "text_urls": {"type": "array", "items": {"type": "string"}}, "faq_url": {"type": "string"}}, "required": ["key", "short_name", "name", "category", "owner", "homepage_url", "spdx_license_key", "text_urls", "faq_url"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"id": {"type": "integer"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"src:alt_label": {"type": "string"}, "src:geom": {"type": "string"}, "wof:geomhash": {"type": "string"}, "wof:id": {"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" : 1126057837, "type" : "Feature", "properties" : {"src:alt_label" : "qs_pg", "src:geom" : "qs_pg", "wof:geomhash" : "492ab2750b91b1935bee86036057489d", "wof:id" : 1126057837, "wof:repo" : "whosonfirst-data-admin-fr"}, "bbox" : [0.22934, 48.83411, 0.22934, 48.83411], "geometry" : {"coordinates" : [0.22934, 48.83411], "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#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "author": {"type": "string"}, "description": {"type": "string"}, "license": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"build": {"type": "string"}}, "required": ["build"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "devDependencies": {"type": "object", "properties": {"autoprefixer": {"type": "string"}, "grunt": {"type": "string"}, "grunt-contrib-copy": {"type": "string"}, "grunt-contrib-sass": {"type": "string"}, "grunt-contrib-watch": {"type": "string"}, "grunt-postcss": {"type": "string"}}, "required": ["autoprefixer", "grunt", "grunt-contrib-copy", "grunt-contrib-sass", "grunt-contrib-watch", "grunt-postcss"]}}, "required": ["name", "version", "author", "description", "license", "main", "scripts", "repository", "keywords", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "apidocs.css", "version" : "1.0.0", "author" : "SyntaxCacao", "description" : "Custom Javadoc 8 stylesheet", "license" : "MIT", "main" : "src/index.scss", "scripts" : {"build" : "grunt"}, "repository" : {"type" : "git", "url" : "https://www.github.com/SyntaxCacao/apidocs.css"}, "keywords" : ["javadoc", "apidocs.css"], "devDependencies" : {"autoprefixer" : "^8.5.0", "grunt" : "^1.0.2", "grunt-contrib-copy" : "^1.0.0", "grunt-contrib-sass" : "^1.0.0", "grunt-contrib-watch" : "^1.1.0", "grunt-postcss" : "^0.9.0"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "author": {"type": "string"}, "description": {"type": "string"}, "license": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"build": {"type": "string"}}, "required": ["build"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "devDependencies": {"type": "object", "properties": {"autoprefixer": {"type": "string"}, "grunt": {"type": "string"}, "grunt-contrib-copy": {"type": "string"}, "grunt-contrib-sass": {"type": "string"}, "grunt-contrib-watch": {"type": "string"}, "grunt-postcss": {"type": "string"}}, "required": ["autoprefixer", "grunt", "grunt-contrib-copy", "grunt-contrib-sass", "grunt-contrib-watch", "grunt-postcss"]}}, "required": ["name", "version", "author", "description", "license", "main", "scripts", "repository", "keywords", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"type": {"type": "string"}, "features": {"type": "array", "items": {"type": "object", "properties": {"geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["type", "coordinates"]}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"cartodb_id": {"type": "integer"}}, "required": ["cartodb_id"]}}, "required": ["geometry", "type", "properties"]}}}, "required": ["type", "features"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"type" : "FeatureCollection", "features" : [{"geometry" : {"type" : "Polygon", "coordinates" : [[[-81.794826, 26.547209], [-81.776016, 26.547639], [-81.775863, 26.540556], [-81.781907, 26.540375], [-81.781907, 26.537998], [-81.785833, 26.537934], [-81.785447, 26.511073], [-81.725557, 26.511378], [-81.725358, 26.540206], [-81.733339, 26.540121], [-81.733357, 26.546475], [-81.726378, 26.551717], [-81.726459, 26.554737], [-81.734152, 26.554952], [-81.734134, 26.563252], [-81.721677, 26.575859], [-81.715499, 26.579236], [-81.713749, 26.581703], [-81.71288, 26.581379], [-81.661653, 26.559127], [-81.661218, 26.540898], [-81.640491, 26.54108], [-81.635397, 26.541977], [-81.632768, 26.53747], [-81.629119, 26.535092], [-81.563827, 26.518469], [-81.562684, 26.451426], [-81.687747, 26.450026], [-81.696149, 26.453492], [-81.738311, 26.451283], [-81.742275, 26.449571], [-81.743307, 26.451361], [-81.747561, 26.449648], [-81.783686, 26.448849], [-81.79412, 26.485613], [-81.794826, 26.547209]]]}, "type" : "Feature", "properties" : {"cartodb_id" : 15322}}]} | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "features": {"type": "array", "items": {"type": "object", "properties": {"geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["type", "coordinates"]}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"cartodb_id": {"type": "integer"}}, "required": ["cartodb_id"]}}, "required": ["geometry", "type", "properties"]}}}, "required": ["type", "features"], "$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": {"mocha": {"type": "string"}, "test": {"type": "string"}}, "required": ["mocha", "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": {"chalk": {"type": "string"}, "check-types": {"type": "string"}, "mongodb": {"type": "string"}}, "required": ["chalk", "check-types", "mongodb"]}, "devDependencies": {"type": "object", "properties": {"chai": {"type": "string"}, "chai-as-promised": {"type": "string"}, "mocha": {"type": "string"}, "mockery": {"type": "string"}, "sinon": {"type": "string"}}, "required": ["chai", "chai-as-promised", "mocha", "mockery", "sinon"]}}, "required": ["name", "version", "description", "main", "scripts", "repository", "keywords", "author", "license", "bugs", "homepage", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "mongosetup", "version" : "0.1.1", "description" : "A promise based mongo db initialization library", "main" : "index.js", "scripts" : {"mocha" : "mocha", "test" : "mocha"}, "repository" : {"type" : "git", "url" : "git+https://github.com/dejanfajfar/mongosetup.node.git"}, "keywords" : ["mongo", "promises", "setup", "mongodb", "cli", "shell", "tool", "setup", "standalone"], "author" : "Dejan Fajfar <dejan@fajfar.com>", "license" : "ISC", "bugs" : {"url" : "https://github.com/dejanfajfar/mongosetup.node/issues"}, "homepage" : "https://github.com/dejanfajfar/mongosetup.node#readme", "dependencies" : {"chalk" : "^2.4.2", "check-types" : "^8.0.3", "mongodb" : "^3.2.6"}, "devDependencies" : {"chai" : "^4.2.0", "chai-as-promised" : "^7.1.1", "mocha" : "^6.1.4", "mockery" : "^2.1.0", "sinon" : "^7.3.2"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"mocha": {"type": "string"}, "test": {"type": "string"}}, "required": ["mocha", "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": {"chalk": {"type": "string"}, "check-types": {"type": "string"}, "mongodb": {"type": "string"}}, "required": ["chalk", "check-types", "mongodb"]}, "devDependencies": {"type": "object", "properties": {"chai": {"type": "string"}, "chai-as-promised": {"type": "string"}, "mocha": {"type": "string"}, "mockery": {"type": "string"}, "sinon": {"type": "string"}}, "required": ["chai", "chai-as-promised", "mocha", "mockery", "sinon"]}}, "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": {"task": {"type": "string"}}, "required": ["task"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"task" : "load_data"} | json_instruct | {"type": "object", "properties": {"task": {"type": "string"}}, "required": ["task"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"source": {"type": "string"}, "word": {"type": "string"}, "infinitivo": {"type": "string"}, "participio": {"type": "array", "items": {"type": "string"}}, "gerundio": {"type": "array", "items": {"type": "string"}}, "tenses": {"type": "object", "properties": {"3": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}, "4": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}, "5": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}, "6": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}, "7": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}, "8": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}, "9": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}, "10": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}, "11": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}, "12": {"type": "object", "properties": {"1": {"type": "array", "items": {"type": "string"}}, "2": {"type": "array", "items": {"type": "string"}}, "3": {"type": "array", "items": {"type": "string"}}, "4": {"type": "array", "items": {"type": "string"}}, "5": {"type": "array", "items": {"type": "string"}}}, "required": ["1", "2", "3", "4", "5"]}}, "required": ["3", "4", "5", "6", "7", "8", "9", "10", "11", "12"]}}, "required": ["source", "word", "infinitivo", "participio", "gerundio", "tenses"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"source" : "http://lema.rae.es/drae/srv/search?val=conmocionar", "word" : "conmocionar", "infinitivo" : "conmocionar", "participio" : ["conmocionado"], "gerundio" : ["conmocionando"], "tenses" : {"3" : [["conmociono"], ["conmocionas", "conmocion\u00e1s"], ["conmociona"], ["conmocionamos"], ["conmocion\u00e1is", "conmocionan"], ["conmocionan"]], "4" : [["conmocion\u00e9"], ["conmocionaste"], ["conmocion\u00f3"], ["conmocionamos"], ["conmocionasteis", "conmocionaron"], ["conmocionaron"]], "5" : [["conmocionaba"], ["conmocionabas"], ["conmocionaba"], ["conmocion\u00e1bamos"], ["conmocionabais", "conmocionaban"], ["conmocionaban"]], "6" : [["conmocionar\u00eda"], ["conmocionar\u00edas"], ["conmocionar\u00eda"], ["conmocionar\u00edamos"], ["conmocionar\u00edais", "conmocionar\u00edan"], ["conmocionar\u00edan"]], "7" : [["conmocionar\u00e9"], ["conmocionar\u00e1s"], ["conmocionar\u00e1"], ["conmocionaremos"], ["conmocionar\u00e9is", "conmocionar\u00e1n"], ["conmocionar\u00e1n"]], "8" : [["conmocione"], ["conmociones"], ["conmocione"], ["conmocionemos"], ["conmocion\u00e9is", "conmocionen"], ["conmocionen"]], "9" : [["conmocionara"], ["conmocionaras"], ["conmocionara"], ["conmocion\u00e1ramos"], ["conmocionarais", "conmocionaran"], ["conmocionaran"]], "10" : [["conmocionase"], ["conmocionases"], ["conmocionase"], ["conmocion\u00e1semos"], ["conmocionaseis", "conmocionasen"], ["conmocionasen"]], "11" : [["conmocionare"], ["conmocionares"], ["conmocionare"], ["conmocion\u00e1remos"], ["conmocionareis", "conmocionaren"], ["conmocionaren"]], "12" : {"1" : ["conmociona"], "2" : ["conmocione"], "3" : ["conmocionemos"], "4" : ["conmocionad"], "5" : ["conmocionen"]}}} | json_instruct | {"type": "object", "properties": {"source": {"type": "string"}, "word": {"type": "string"}, "infinitivo": {"type": "string"}, "participio": {"type": "array", "items": {"type": "string"}}, "gerundio": {"type": "array", "items": {"type": "string"}}, "tenses": {"type": "object", "properties": {"3": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}, "4": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}, "5": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}, "6": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}, "7": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}, "8": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}, "9": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}, "10": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}, "11": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}, "12": {"type": "object", "properties": {"1": {"type": "array", "items": {"type": "string"}}, "2": {"type": "array", "items": {"type": "string"}}, "3": {"type": "array", "items": {"type": "string"}}, "4": {"type": "array", "items": {"type": "string"}}, "5": {"type": "array", "items": {"type": "string"}}}, "required": ["1", "2", "3", "4", "5"]}}, "required": ["3", "4", "5", "6", "7", "8", "9", "10", "11", "12"]}}, "required": ["source", "word", "infinitivo", "participio", "gerundio", "tenses"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"nom": {"type": "string"}, "hp": {"type": "string"}, "magic": {"type": "string"}, "atk": {"type": "string"}, "mdef": {"type": "string"}, "meva": {"type": "string"}, "pdef": {"type": "string"}, "peva": {"type": "string"}, "mov": {"type": "string"}}, "required": ["nom", "hp", "magic", "atk", "mdef", "meva", "pdef", "peva", "mov"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"nom" : "Rifter", "hp" : "25,30,30,35,40,45,45", "magic" : "2,3,4,5,6,7,8", "atk" : "2,3,4,5,6,7,8", "mdef" : "2,4,7,9,11,13,15", "meva" : "0,0,0,1,1,1,1", "pdef" : "2,4,7,9,11,13,15", "peva" : "0,0,0,1,1,1,1", "mov" : "3,3,3,3,3,3,3"} | json_instruct | {"type": "object", "properties": {"nom": {"type": "string"}, "hp": {"type": "string"}, "magic": {"type": "string"}, "atk": {"type": "string"}, "mdef": {"type": "string"}, "meva": {"type": "string"}, "pdef": {"type": "string"}, "peva": {"type": "string"}, "mov": {"type": "string"}}, "required": ["nom", "hp", "magic", "atk", "mdef", "meva", "pdef", "peva", "mov"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"place_name": {"type": "string"}, "state_name": {"type": "string"}, "state_abbrv": {"type": "string"}, "lat": {"type": "string"}, "long": {"type": "string"}}, "required": ["place_name", "state_name", "state_abbrv", "lat", "long"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"place_name" : "Rocky Mount", "state_name" : "North Carolina", "state_abbrv" : "NC", "lat" : "35.9356", "long" : "-77.7808"} | json_instruct | {"type": "object", "properties": {"place_name": {"type": "string"}, "state_name": {"type": "string"}, "state_abbrv": {"type": "string"}, "lat": {"type": "string"}, "long": {"type": "string"}}, "required": ["place_name", "state_name", "state_abbrv", "lat", "long"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"name": {"type": "string"}, "lsg_code": {"type": "string"}, "district": {"type": "string"}, "state": {"type": "string"}, "no_of_wards": {"type": "integer"}, "wards": {"type": "array", "items": {"type": "object", "properties": {"ward_no": {"type": "string"}, "ward_name": {"type": "string"}, "ward_id": {"type": "string"}}, "required": ["ward_no", "ward_name", "ward_id"]}}}, "required": ["name", "lsg_code", "district", "state", "no_of_wards", "wards"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "Mangawan", "lsg_code" : "250793", "district" : "Rewa", "state" : "Madhya Pradesh", "no_of_wards" : 15, "wards" : [{"ward_no" : "6", "ward_name" : "Hanuman Ward", "ward_id" : "13020"}, {"ward_no" : "13", "ward_name" : "Sanjay Gandhi Ward", "ward_id" : "13027"}, {"ward_no" : "9", "ward_name" : "Jagjivan Ram ward", "ward_id" : "13023"}, {"ward_no" : "3", "ward_name" : "Azad Ward", "ward_id" : "13017"}, {"ward_no" : "10", "ward_name" : "Shastri Ward", "ward_id" : "13024"}, {"ward_no" : "15", "ward_name" : "JP Ward", "ward_id" : "13029"}, {"ward_no" : "14", "ward_name" : "Rajiv Gandhi Ward", "ward_id" : "13028"}, {"ward_no" : "1", "ward_name" : "Gandhi Ward", "ward_id" : "13015"}, {"ward_no" : "4", "ward_name" : "Subhash Ward", "ward_id" : "13018"}, {"ward_no" : "11", "ward_name" : "Rajendra Ward", "ward_id" : "13025"}, {"ward_no" : "12", "ward_name" : "Indira Gandhi Ward", "ward_id" : "13026"}, {"ward_no" : "8", "ward_name" : "Ambedkar Ward", "ward_id" : "13022"}, {"ward_no" : "5", "ward_name" : "Bhagat Singh Ward", "ward_id" : "13019"}, {"ward_no" : "7", "ward_name" : "Chandrashekhar Ward", "ward_id" : "13021"}, {"ward_no" : "2", "ward_name" : "Jawahar ward", "ward_id" : "13016"}]} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "lsg_code": {"type": "string"}, "district": {"type": "string"}, "state": {"type": "string"}, "no_of_wards": {"type": "integer"}, "wards": {"type": "array", "items": {"type": "object", "properties": {"ward_no": {"type": "string"}, "ward_name": {"type": "string"}, "ward_id": {"type": "string"}}, "required": ["ward_no", "ward_name", "ward_id"]}}}, "required": ["name", "lsg_code", "district", "state", "no_of_wards", "wards"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"responses": {"type": "array", "items": {"type": "object", "properties": {"landmarkAnnotations": {"type": "array", "items": {"type": "object", "properties": {"mid": {"type": "string"}, "description": {"type": "string"}, "score": {"type": "number"}, "boundingPoly": {"type": "object", "properties": {"vertices": {"type": "array", "items": {"type": "object", "properties": {"x": {"type": "integer"}, "y": {"type": "integer"}}, "required": ["x", "y"]}}}, "required": ["vertices"]}, "locations": {"type": "array", "items": {"type": "object", "properties": {"latLng": {"type": "object", "properties": {"latitude": {"type": "number"}, "longitude": {"type": "number"}}, "required": ["latitude", "longitude"]}}, "required": ["latLng"]}}}, "required": ["mid", "description", "score", "boundingPoly", "locations"]}}, "labelAnnotations": {"type": "array", "items": {"type": "object", "properties": {"mid": {"type": "string"}, "description": {"type": "string"}, "score": {"type": "number"}, "topicality": {"type": "number"}}, "required": ["mid", "description", "score", "topicality"]}}}, "required": ["landmarkAnnotations", "labelAnnotations"]}}}, "required": ["responses"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"responses" : [{"landmarkAnnotations" : [{"mid" : "/m/05w70m", "description" : "San Francisco", "score" : 0.7395556, "boundingPoly" : {"vertices" : [{"x" : 122, "y" : 391}, {"x" : 446, "y" : 391}, {"x" : 446, "y" : 418}, {"x" : 122, "y" : 418}]}, "locations" : [{"latLng" : {"latitude" : 37.802294, "longitude" : -122.41971015930176}}]}, {"mid" : "/m/0163pw", "description" : "Oakland Bay Bridge", "score" : 0.67126739, "boundingPoly" : {"vertices" : [{"x" : 40, "y" : 391}, {"x" : 453, "y" : 391}, {"x" : 453, "y" : 428}, {"x" : 40, "y" : 428}]}, "locations" : [{"latLng" : {"latitude" : 37.795294, "longitude" : -122.388961}}]}], "labelAnnotations" : [{"mid" : "/m/01bqvp", "description" : "Sky", "score" : 0.99223089, "topicality" : 0.99223089}, {"mid" : "/m/0csby", "description" : "Cloud", "score" : 0.98084843, "topicality" : 0.98084843}, {"mid" : "/m/0838f", "description" : "Water", "score" : 0.96742356, "topicality" : 0.96742356}, {"mid" : "/m/02q7ylj", "description" : "Daytime", "score" : 0.96172577, "topicality" : 0.96172577}, {"mid" : "/m/0d1n2", "description" : "Horizon", "score" : 0.93850464, "topicality" : 0.93850464}, {"mid" : "/m/01g5v", "description" : "Blue", "score" : 0.93717742, "topicality" : 0.93717742}, {"mid" : "/m/01n32", "description" : "City", "score" : 0.92796332, "topicality" : 0.92796332}, {"mid" : "/m/015s2f", "description" : "Water resources", "score" : 0.89999384, "topicality" : 0.89999384}, {"mid" : "/m/0204fg", "description" : "Skyline", "score" : 0.8989985, "topicality" : 0.8989985}, {"mid" : "/m/05kq4", "description" : "Ocean", "score" : 0.88585317, "topicality" : 0.88585317}]}]} | json_instruct | {"type": "object", "properties": {"responses": {"type": "array", "items": {"type": "object", "properties": {"landmarkAnnotations": {"type": "array", "items": {"type": "object", "properties": {"mid": {"type": "string"}, "description": {"type": "string"}, "score": {"type": "number"}, "boundingPoly": {"type": "object", "properties": {"vertices": {"type": "array", "items": {"type": "object", "properties": {"x": {"type": "integer"}, "y": {"type": "integer"}}, "required": ["x", "y"]}}}, "required": ["vertices"]}, "locations": {"type": "array", "items": {"type": "object", "properties": {"latLng": {"type": "object", "properties": {"latitude": {"type": "number"}, "longitude": {"type": "number"}}, "required": ["latitude", "longitude"]}}, "required": ["latLng"]}}}, "required": ["mid", "description", "score", "boundingPoly", "locations"]}}, "labelAnnotations": {"type": "array", "items": {"type": "object", "properties": {"mid": {"type": "string"}, "description": {"type": "string"}, "score": {"type": "number"}, "topicality": {"type": "number"}}, "required": ["mid", "description", "score", "topicality"]}}}, "required": ["landmarkAnnotations", "labelAnnotations"]}}}, "required": ["responses"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"141102": {"type": "object", "properties": {"name": {"type": "string"}, "next": {"type": "integer"}}, "required": ["name", "next"]}, "141121": {"type": "object", "properties": {"name": {"type": "string"}, "next": {"type": "integer"}}, "required": ["name", "next"]}, "141122": {"type": "object", "properties": {"name": {"type": "string"}, "next": {"type": "integer"}}, "required": ["name", "next"]}, "141123": {"type": "object", "properties": {"name": {"type": "string"}, "next": {"type": "integer"}}, "required": ["name", "next"]}, "141124": {"type": "object", "properties": {"name": {"type": "string"}, "next": {"type": "integer"}}, "required": ["name", "next"]}, "141125": {"type": "object", "properties": {"name": {"type": "string"}, "next": {"type": "integer"}}, "required": ["name", "next"]}, "141126": {"type": "object", "properties": {"name": {"type": "string"}, "next": {"type": "integer"}}, "required": ["name", "next"]}, "141127": {"type": "object", "properties": {"name": {"type": "string"}, "next": {"type": "integer"}}, "required": ["name", "next"]}, "141128": {"type": "object", "properties": {"name": {"type": "string"}, "next": {"type": "integer"}}, "required": ["name", "next"]}, "141129": {"type": "object", "properties": {"name": {"type": "string"}, "next": {"type": "integer"}}, "required": ["name", "next"]}, "141130": {"type": "object", "properties": {"name": {"type": "string"}, "next": {"type": "integer"}}, "required": ["name", "next"]}, "141181": {"type": "object", "properties": {"name": {"type": "string"}, "next": {"type": "integer"}}, "required": ["name", "next"]}, "141182": {"type": "object", "properties": {"name": {"type": "string"}, "next": {"type": "integer"}}, "required": ["name", "next"]}}, "required": ["141102", "141121", "141122", "141123", "141124", "141125", "141126", "141127", "141128", "141129", "141130", "141181", "141182"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"141102" : {"name" : "\u79bb\u77f3\u533a", "next" : 1}, "141121" : {"name" : "\u6587\u6c34\u53bf", "next" : 1}, "141122" : {"name" : "\u4ea4\u57ce\u53bf", "next" : 1}, "141123" : {"name" : "\u5174\u53bf", "next" : 1}, "141124" : {"name" : "\u4e34\u53bf", "next" : 1}, "141125" : {"name" : "\u67f3\u6797\u53bf", "next" : 1}, "141126" : {"name" : "\u77f3\u697c\u53bf", "next" : 1}, "141127" : {"name" : "\u5c9a\u53bf", "next" : 1}, "141128" : {"name" : "\u65b9\u5c71\u53bf", "next" : 1}, "141129" : {"name" : "\u4e2d\u9633\u53bf", "next" : 1}, "141130" : {"name" : "\u4ea4\u53e3\u53bf", "next" : 1}, "141181" : {"name" : "\u5b5d\u4e49\u5e02", "next" : 1}, "141182" : {"name" : "\u6c7e\u9633\u5e02", "next" : 1}} | json_instruct | {"type": "object", "properties": {"141102": {"type": "object", "properties": {"name": {"type": "string"}, "next": {"type": "integer"}}, "required": ["name", "next"]}, "141121": {"type": "object", "properties": {"name": {"type": "string"}, "next": {"type": "integer"}}, "required": ["name", "next"]}, "141122": {"type": "object", "properties": {"name": {"type": "string"}, "next": {"type": "integer"}}, "required": ["name", "next"]}, "141123": {"type": "object", "properties": {"name": {"type": "string"}, "next": {"type": "integer"}}, "required": ["name", "next"]}, "141124": {"type": "object", "properties": {"name": {"type": "string"}, "next": {"type": "integer"}}, "required": ["name", "next"]}, "141125": {"type": "object", "properties": {"name": {"type": "string"}, "next": {"type": "integer"}}, "required": ["name", "next"]}, "141126": {"type": "object", "properties": {"name": {"type": "string"}, "next": {"type": "integer"}}, "required": ["name", "next"]}, "141127": {"type": "object", "properties": {"name": {"type": "string"}, "next": {"type": "integer"}}, "required": ["name", "next"]}, "141128": {"type": "object", "properties": {"name": {"type": "string"}, "next": {"type": "integer"}}, "required": ["name", "next"]}, "141129": {"type": "object", "properties": {"name": {"type": "string"}, "next": {"type": "integer"}}, "required": ["name", "next"]}, "141130": {"type": "object", "properties": {"name": {"type": "string"}, "next": {"type": "integer"}}, "required": ["name", "next"]}, "141181": {"type": "object", "properties": {"name": {"type": "string"}, "next": {"type": "integer"}}, "required": ["name", "next"]}, "141182": {"type": "object", "properties": {"name": {"type": "string"}, "next": {"type": "integer"}}, "required": ["name", "next"]}}, "required": ["141102", "141121", "141122", "141123", "141124", "141125", "141126", "141127", "141128", "141129", "141130", "141181", "141182"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"symbol": {"type": "string"}, "name": {"type": "string"}, "decimals": {"type": "integer"}, "address": {"type": "string"}}, "required": ["symbol", "name", "decimals", "address"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"symbol" : "KGC", "name" : "Krypton Galaxy Coin", "decimals" : 18, "address" : "0xa8262eb913fccea4c3f77fc95b8b4043b384cfbb"} | json_instruct | {"type": "object", "properties": {"symbol": {"type": "string"}, "name": {"type": "string"}, "decimals": {"type": "integer"}, "address": {"type": "string"}}, "required": ["symbol", "name", "decimals", "address"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"n_dim": {"type": "integer"}, "n_trials": {"type": "integer"}, "objective": {"type": "string"}, "white": {"type": "string"}, "black": {"type": "string"}, "traceback": {"type": "array", "items": {"type": "string"}}, "best_val": {"type": "array", "items": {"type": "number"}}, "best_x": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}, "feval_count": {"type": "array", "items": {"type": "integer"}}, "n_trials_instructed": {"type": "array", "items": {"type": "integer"}}, "passing": {"type": "array", "items": {"type": "boolean"}}, "completed": {"type": "boolean"}, "points": {"type": "number"}, "winner": {"type": "string"}, "loser": {"type": "string"}}, "required": ["n_dim", "n_trials", "objective", "white", "black", "traceback", "best_val", "best_x", "feval_count", "n_trials_instructed", "passing", "completed", "points", "winner", "loser"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"n_dim" : 34, "n_trials" : 340, "objective" : "deap_combo2_on_cube", "white" : "ultraopt_etpe", "black" : "pymoo_nelder", "traceback" : ["passing", "passing"], "best_val" : [21.392776858706338, 22.323556368732675], "best_x" : [[0.6076297355426314, 0.7403617689832506, 0.5264017946167291, 0.44650747709737226, 0.3399127413486807, 0.6740161480952096, 0.4726532481950946, 0.6179420470984223, 0.5982357148985902, 0.5433667960613182, 0.5735126690498535, 0.8119610018046683, 0.37018153161778117, 0.29497570946441287, 0.42035229885104813, 0.2119272230265935, 0.11795086769433161, 0.24726555730391167, 0.5617526533035826, 0.4439343888615826, 0.3604300630998703, 0.46501452888696865, 0.5033457622007729, 0.29274626713713936, 0.4524031704188513, 0.8023991958654346, 0.5885837819867773, 0.3034224569586823, 0.04799019047462148, 0.3600561529319839, 0.12985282639305665, 0.8323155987670573, 0.21976278787835685, 0.7363851266146546], [0.15699305440907546, 0.8849128031990524, 0.8377912265475116, 0.6348241431885423, 0.18984621362597862, 0.5457589131240878, 0.5275144721130385, 0.7354805904342107, 0.5531180272691625, 0.4357004681418604, 0.3644441970268701, 0.7610611477896124, 0.937297709196106, 0.2690374392379367, 0.8265889584558334, 0.6729131303714485, 0.22566584577634322, 0.7054697766580541, 0.15358521598232844, 0.39284714089419087, 0.26805456209315204, 0.536043605520242, 0.5039024763025678, 0.6499924996247227, 0.7854631541876474, 0.6360101869593081, 0.47177618848338476, 0.7970401177831937, 0.9955154146038945, 0.4386521219363503, 0.4579530658698929, 0.2961028815106256, 0.63167994986999, 0.41013897181376324]], "feval_count" : [340, 340], "n_trials_instructed" : [340, 340], "passing" : [true, true], "completed" : true, "points" : 1.0, "winner" : "ultraopt_etpe", "loser" : "pymoo_nelder"} | json_instruct | {"type": "object", "properties": {"n_dim": {"type": "integer"}, "n_trials": {"type": "integer"}, "objective": {"type": "string"}, "white": {"type": "string"}, "black": {"type": "string"}, "traceback": {"type": "array", "items": {"type": "string"}}, "best_val": {"type": "array", "items": {"type": "number"}}, "best_x": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}, "feval_count": {"type": "array", "items": {"type": "integer"}}, "n_trials_instructed": {"type": "array", "items": {"type": "integer"}}, "passing": {"type": "array", "items": {"type": "boolean"}}, "completed": {"type": "boolean"}, "points": {"type": "number"}, "winner": {"type": "string"}, "loser": {"type": "string"}}, "required": ["n_dim", "n_trials", "objective", "white", "black", "traceback", "best_val", "best_x", "feval_count", "n_trials_instructed", "passing", "completed", "points", "winner", "loser"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"id": {"type": "string"}, "text": {"type": "string"}}, "required": ["id", "text"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "d788-78", "text" : "COPT\nCOPT\n-2-\nthe Southwest, the Midwest etc*, and a study of the \"American\" language would\nalso offer interesting program material*\nI do hope these suggestions are not too late to receive consideration and I\nappreciate the opportunity to make my wishes known in the matter*\nBest regards.\nRFV/ris\nCopied at NAEB Hqs\u201e on Nov* 2, 195>U-cp\n/s/ Dick"} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "text": {"type": "string"}}, "required": ["id", "text"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"title": {"type": "string"}, "fields": {"type": "array", "items": {"type": "string"}}, "abstract": {"type": "string"}, "citation": {"type": "string"}, "departments": {"type": "array", "items": {"type": "string"}}, "authors": {"type": "array", "items": {"type": "string"}}, "conf": {"type": "string"}, "year": {"type": "string"}, "pages": {"type": "integer"}}, "required": ["title", "fields", "abstract", "citation", "departments", "authors", "conf", "year", "pages"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"title" : "MixApart: decoupled analytics for shared storage systems.", "fields" : ["enterprise system", "converged storage", "data efficiency", "analytics", "enterprise data management", "enterprise information system", "information repository"], "abstract" : "Data analytics and enterprise applications have very different storage functionality requirements. For this reason, enterprise deployments of data analytics are on a separate storage silo. This may generate additional costs and inefficiencies in data management, e.g., whenever data needs to be archived, copied, or migrated across silos. We introduce MixApart, a scalable data processing framework for shared enterprise storage systems. With MixApart, a single consolidated storage back-end manages enterprise data and services all types of workloads, thereby lowering hardware costs and simplifying data management. In addition, MixApart enables the local storage performance required by analytics through an integrated data caching and scheduling solution. Our preliminary evaluation shows that MixApart can be 45% faster than the traditional ingest-then-compute workflow used in enterprise IT analytics, while requiring one third of storage capacity when compared to HDFS.", "citation" : "Citations (29)", "departments" : ["University of Toronto", "University of Toronto", "University of Toronto", "NetApp", "University of Toronto", "NetApp"], "authors" : ["Madalin Mihailescu.....http://dblp.org/pers/hd/m/Mihailescu:Madalin", "Gokul Soundararajan.....http://dblp.org/pers/hd/s/Soundararajan:Gokul", "Cristiana Amza.....http://dblp.org/pers/hd/a/Amza:Cristiana"], "conf" : "fast", "year" : "2013", "pages" : 14} | json_instruct | {"type": "object", "properties": {"title": {"type": "string"}, "fields": {"type": "array", "items": {"type": "string"}}, "abstract": {"type": "string"}, "citation": {"type": "string"}, "departments": {"type": "array", "items": {"type": "string"}}, "authors": {"type": "array", "items": {"type": "string"}}, "conf": {"type": "string"}, "year": {"type": "string"}, "pages": {"type": "integer"}}, "required": ["title", "fields", "abstract", "citation", "departments", "authors", "conf", "year", "pages"], "$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"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "scripts": {"type": "object", "properties": {"prepublish": {"type": "string"}, "build": {"type": "string"}, "serve": {"type": "string"}, "test": {"type": "string"}}, "required": ["prepublish", "build", "serve", "test"]}, "author": {"type": "object", "properties": {"name": {"type": "string"}, "url": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "url", "email"]}, "homepage": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "license": {"type": "string"}, "main": {"type": "string"}, "types": {"type": "string"}, "peerDependencies": {"type": "object", "properties": {"moment": {"type": "string"}, "moment-range": {"type": "string"}}, "required": ["moment", "moment-range"]}, "devDependencies": {"type": "object", "properties": {"moment": {"type": "string"}, "moment-range": {"type": "string"}, "@types/jasmine": {"type": "string"}, "@types/moment-range": {"type": "string"}, "@types/node": {"type": "string"}, "jasmine-core": {"type": "string"}, "karma": {"type": "string"}, "karma-chrome-launcher": {"type": "string"}, "karma-jasmine": {"type": "string"}, "karma-typescript": {"type": "string"}, "typescript": {"type": "string"}}, "required": ["moment", "moment-range", "@types/jasmine", "@types/moment-range", "@types/node", "jasmine-core", "karma", "karma-chrome-launcher", "karma-jasmine", "karma-typescript", "typescript"]}}, "required": ["name", "version", "description", "repository", "scripts", "author", "homepage", "bugs", "license", "main", "types", "peerDependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "moment-range-alias", "version" : "0.2.4", "description" : "A class to convert a `moment-range` into an alias and vice versa", "repository" : {"type" : "git", "url" : "git+https://github.com/Dyljyn/moment-range-alias.git"}, "scripts" : {"prepublish" : "npm run build", "build" : "tsc", "serve" : "tsc -w", "test" : "karma start"}, "author" : {"name" : "Dyljyn", "url" : "https://github.com/Dyljyn", "email" : "vanbommeldylan@gmail"}, "homepage" : "https://github.com/Dyljyn/moment-range-alias#readme", "bugs" : {"url" : "https://github.com/Dyljyn/moment-range-alias/issues"}, "license" : "MIT", "main" : "dist/range-alias.js", "types" : "dist/range-alias.d.ts", "peerDependencies" : {"moment" : "2.*", "moment-range" : "3.*"}, "devDependencies" : {"moment" : "2.*", "moment-range" : "3.*", "@types/jasmine" : "3.5.10", "@types/moment-range" : "3.1.2", "@types/node" : "13.9.8", "jasmine-core" : "3.5.0", "karma" : "4.4.1", "karma-chrome-launcher" : "3.1.0", "karma-jasmine" : "3.1.1", "karma-typescript" : "5.0.1", "typescript" : "3.*"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "scripts": {"type": "object", "properties": {"prepublish": {"type": "string"}, "build": {"type": "string"}, "serve": {"type": "string"}, "test": {"type": "string"}}, "required": ["prepublish", "build", "serve", "test"]}, "author": {"type": "object", "properties": {"name": {"type": "string"}, "url": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "url", "email"]}, "homepage": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "license": {"type": "string"}, "main": {"type": "string"}, "types": {"type": "string"}, "peerDependencies": {"type": "object", "properties": {"moment": {"type": "string"}, "moment-range": {"type": "string"}}, "required": ["moment", "moment-range"]}, "devDependencies": {"type": "object", "properties": {"moment": {"type": "string"}, "moment-range": {"type": "string"}, "@types/jasmine": {"type": "string"}, "@types/moment-range": {"type": "string"}, "@types/node": {"type": "string"}, "jasmine-core": {"type": "string"}, "karma": {"type": "string"}, "karma-chrome-launcher": {"type": "string"}, "karma-jasmine": {"type": "string"}, "karma-typescript": {"type": "string"}, "typescript": {"type": "string"}}, "required": ["moment", "moment-range", "@types/jasmine", "@types/moment-range", "@types/node", "jasmine-core", "karma", "karma-chrome-launcher", "karma-jasmine", "karma-typescript", "typescript"]}}, "required": ["name", "version", "description", "repository", "scripts", "author", "homepage", "bugs", "license", "main", "types", "peerDependencies", "devDependencies"], "$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"}, "keywords": {"type": "array", "items": {"type": "string"}}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "dependencies": {"type": "object", "properties": {"co": {"type": "string"}, "clone": {"type": "string"}, "commander": {"type": "string"}, "dot-component": {"type": "string"}, "js-yaml": {"type": "string"}, "mongodb": {"type": "string"}, "mongodb-extended-json": {"type": "string"}, "mongodb-ns": {"type": "string"}, "thunkify": {"type": "string"}}, "required": ["co", "clone", "commander", "dot-component", "js-yaml", "mongodb", "mongodb-extended-json", "mongodb-ns", "thunkify"]}, "devDependencies": {"type": "object", "properties": {"acquit": {"type": "string"}, "acquit-ignore": {"type": "string"}, "acquit-markdown": {"type": "string"}, "lodash": {"type": "string"}, "mocha": {"type": "string"}}, "required": ["acquit", "acquit-ignore", "acquit-markdown", "lodash", "mocha"]}, "engines": {"type": "object", "properties": {"node": {"type": "string"}}, "required": ["node"]}, "bin": {"type": "string"}}, "required": ["name", "version", "description", "keywords", "scripts", "dependencies", "devDependencies", "engines", "bin"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "dookie", "version" : "0.1.0", "description" : "Stylus-inspired preprocessor for MongoDB data sets and fixtures", "keywords" : ["mongodb", "fixture", "fixtures", "test", "data", "dataset", "import"], "scripts" : {"test" : "mocha ./test/*.test.js"}, "dependencies" : {"co" : "4.6.0", "clone" : "1.0.2", "commander" : "2.8.1", "dot-component" : "0.1.1", "js-yaml" : "3.2.1", "mongodb" : "~2.0.47", "mongodb-extended-json" : "1.5.3", "mongodb-ns" : "1.0.0", "thunkify" : "2.1.2"}, "devDependencies" : {"acquit" : "0.4.0", "acquit-ignore" : "0.0.3", "acquit-markdown" : "0.0.2", "lodash" : "3.10.1", "mocha" : "2.2.4"}, "engines" : {"node" : ">= 4.0.0"}, "bin" : "./bin/dookie.js"} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "dependencies": {"type": "object", "properties": {"co": {"type": "string"}, "clone": {"type": "string"}, "commander": {"type": "string"}, "dot-component": {"type": "string"}, "js-yaml": {"type": "string"}, "mongodb": {"type": "string"}, "mongodb-extended-json": {"type": "string"}, "mongodb-ns": {"type": "string"}, "thunkify": {"type": "string"}}, "required": ["co", "clone", "commander", "dot-component", "js-yaml", "mongodb", "mongodb-extended-json", "mongodb-ns", "thunkify"]}, "devDependencies": {"type": "object", "properties": {"acquit": {"type": "string"}, "acquit-ignore": {"type": "string"}, "acquit-markdown": {"type": "string"}, "lodash": {"type": "string"}, "mocha": {"type": "string"}}, "required": ["acquit", "acquit-ignore", "acquit-markdown", "lodash", "mocha"]}, "engines": {"type": "object", "properties": {"node": {"type": "string"}}, "required": ["node"]}, "bin": {"type": "string"}}, "required": ["name", "version", "description", "keywords", "scripts", "dependencies", "devDependencies", "engines", "bin"], "$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#"}
| [["360425107001", "\u6885\u68e0\u8857\u793e\u533a\u5c45\u59d4\u4f1a", "121", "0"], ["360425107002", "\u5927\u576a\u793e\u533a\u5c45\u59d4\u4f1a", "121", "0"], ["360425107200", "\u6768\u5cad\u6751\u59d4\u4f1a", "122", "0"], ["360425107201", "\u7965\u6797\u6751\u59d4\u4f1a", "220", "0"], ["360425107202", "\u5927\u5858\u6751\u59d4\u4f1a", "122", "0"], ["360425107203", "\u65b0\u5e84\u6751\u59d4\u4f1a", "220", "0"], ["360425107204", "\u4e2d\u5fc3\u6751\u59d4\u4f1a", "220", "0"], ["360425107205", "\u7530\u57e0\u6751\u59d4\u4f1a", "220", "0"], ["360425107206", "\u77f3\u6865\u6751\u59d4\u4f1a", "220", "0"], ["360425107207", "\u539a\u57ce\u6751\u59d4\u4f1a", "122", "0"]] | json_instruct | {"type": "array", "items": {"type": "array", "items": {"type": "string"}}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"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" : "0xfd2dfa00ba5941958eaec567e59b42c2aa9dbf70", "tool" : "osiris", "start" : 1564622381.290287, "end" : 1564622384.0686388, "duration" : 2.7783517837524414, "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#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"id": {"type": "string"}, "symbol": {"type": "string"}, "name": {"type": "string"}, "platforms": {"type": "object", "properties": {"ethereum": {"type": "string"}}, "required": ["ethereum"]}, "hashing_algorithm": {"type": "null"}, "categories": {"type": "array", "items": {"type": "string"}}, "description": {"type": "object", "properties": {"en": {"type": "string"}}, "required": ["en"]}, "country_origin": {"type": "string"}, "genesis_date": {"type": "null"}, "contract_address": {"type": "string"}, "url": {"type": "string"}, "explorers": {"type": "array", "items": {"type": "string"}}, "twitter": {"type": "string"}, "facebook": {"type": "string"}, "telegram": {"type": "string"}, "github_org": {"type": "string"}}, "required": ["id", "symbol", "name", "platforms", "hashing_algorithm", "categories", "description", "country_origin", "genesis_date", "contract_address", "url", "explorers", "twitter", "facebook", "telegram", "github_org"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "ultrain", "symbol" : "ugas", "name" : "Ultrain", "platforms" : {"ethereum" : "0x8716fc5da009d3a208f0178b637a50f4ef42400f"}, "hashing_algorithm" : null, "categories" : ["Infrastructure"], "description" : {"en" : "Ultrain is committed to construct a responsible and sustainable commercial ecosystem that enables all industrial applications. With its groundbreaking innovations in cryptography and based upon a complete decentralized public network, Ultrain is able to provide multi-folds more advanced technical performance to fundamentally solve the performance and scalability issues comparing to other traditional public blockchain platforms."}, "country_origin" : "SG", "genesis_date" : null, "contract_address" : "0x8716fc5da009d3a208f0178b637a50f4ef42400f", "url" : "https://www.ultrain.io/", "explorers" : ["https://etherscan.io/token/0x8716fc5da009d3a208f0178b637a50f4ef42400f", "https://ethplorer.io/address/0x8716fc5da009d3a208f0178b637a50f4ef42400f", "https://ugas.tokenview.com/"], "twitter" : "UltrainB", "facebook" : "Ultraincommunity", "telegram" : "UltrainOfficial", "github_org" : "ultrain-os"} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "symbol": {"type": "string"}, "name": {"type": "string"}, "platforms": {"type": "object", "properties": {"ethereum": {"type": "string"}}, "required": ["ethereum"]}, "hashing_algorithm": {"type": "null"}, "categories": {"type": "array", "items": {"type": "string"}}, "description": {"type": "object", "properties": {"en": {"type": "string"}}, "required": ["en"]}, "country_origin": {"type": "string"}, "genesis_date": {"type": "null"}, "contract_address": {"type": "string"}, "url": {"type": "string"}, "explorers": {"type": "array", "items": {"type": "string"}}, "twitter": {"type": "string"}, "facebook": {"type": "string"}, "telegram": {"type": "string"}, "github_org": {"type": "string"}}, "required": ["id", "symbol", "name", "platforms", "hashing_algorithm", "categories", "description", "country_origin", "genesis_date", "contract_address", "url", "explorers", "twitter", "facebook", "telegram", "github_org"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"vendor": {"type": "string"}, "filename": {"type": "string"}, "release_type": {"type": "string"}, "version": {"type": "string"}, "java_version": {"type": "string"}, "jvm_impl": {"type": "string"}, "os": {"type": "string"}, "architecture": {"type": "string"}, "file_type": {"type": "string"}, "image_type": {"type": "string"}, "features": {"type": "array", "items": {}}, "url": {"type": "string"}, "md5": {"type": "string"}, "md5_file": {"type": "string"}, "sha1": {"type": "string"}, "sha1_file": {"type": "string"}, "sha256": {"type": "string"}, "sha256_file": {"type": "string"}, "sha512": {"type": "string"}, "sha512_file": {"type": "string"}, "size": {"type": "integer"}}, "required": ["vendor", "filename", "release_type", "version", "java_version", "jvm_impl", "os", "architecture", "file_type", "image_type", "features", "url", "md5", "md5_file", "sha1", "sha1_file", "sha256", "sha256_file", "sha512", "sha512_file", "size"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"vendor" : "zulu", "filename" : "zulu16.0.73-ea-jdk16.0.0-ea.28-macosx_x64.tar.gz", "release_type" : "ea", "version" : "16.0.73", "java_version" : "16.0.0-ea.28", "jvm_impl" : "hotspot", "os" : "macosx", "architecture" : "x86_64", "file_type" : "tar.gz", "image_type" : "jdk", "features" : [], "url" : "https://static.azul.com/zulu/bin/zulu16.0.73-ea-jdk16.0.0-ea.28-macosx_x64.tar.gz", "md5" : "ffb15400460c5e38373927c5543aff30", "md5_file" : "zulu16.0.73-ea-jdk16.0.0-ea.28-macosx_x64.tar.gz.md5", "sha1" : "6705a58fb3d88476c58b84ae5475cf07c95bb212", "sha1_file" : "zulu16.0.73-ea-jdk16.0.0-ea.28-macosx_x64.tar.gz.sha1", "sha256" : "19655cc701d0c32b9d47905237cb683dfd04a9c1f7c858ce605411fd3257921f", "sha256_file" : "zulu16.0.73-ea-jdk16.0.0-ea.28-macosx_x64.tar.gz.sha256", "sha512" : "dfe399ff500ccbb325a4d81411d9a4b7dcb0176134f942a3bd74fa17af559ae7ea3c7c563caa61e34211e4fe426c5b0a476d56bf06945e1d1d3d10f38de63728", "sha512_file" : "zulu16.0.73-ea-jdk16.0.0-ea.28-macosx_x64.tar.gz.sha512", "size" : 206375327} | json_instruct | {"type": "object", "properties": {"vendor": {"type": "string"}, "filename": {"type": "string"}, "release_type": {"type": "string"}, "version": {"type": "string"}, "java_version": {"type": "string"}, "jvm_impl": {"type": "string"}, "os": {"type": "string"}, "architecture": {"type": "string"}, "file_type": {"type": "string"}, "image_type": {"type": "string"}, "features": {"type": "array", "items": {}}, "url": {"type": "string"}, "md5": {"type": "string"}, "md5_file": {"type": "string"}, "sha1": {"type": "string"}, "sha1_file": {"type": "string"}, "sha256": {"type": "string"}, "sha256_file": {"type": "string"}, "sha512": {"type": "string"}, "sha512_file": {"type": "string"}, "size": {"type": "integer"}}, "required": ["vendor", "filename", "release_type", "version", "java_version", "jvm_impl", "os", "architecture", "file_type", "image_type", "features", "url", "md5", "md5_file", "sha1", "sha1_file", "sha256", "sha256_file", "sha512", "sha512_file", "size"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"id": {"type": "string"}, "code": {"type": "string"}, "name": {"type": "string"}, "description": {"type": "string"}, "division": {"type": "string"}, "department": {"type": "string"}, "prerequisites": {"type": "string"}, "exclusions": {"type": "string"}, "level": {"type": "integer"}, "campus": {"type": "string"}, "term": {"type": "string"}, "breadths": {"type": "array", "items": {}}, "meeting_sections": {"type": "array", "items": {"type": "object", "properties": {"code": {"type": "string"}, "instructors": {"type": "array", "items": {}}, "times": {"type": "array", "items": {"type": "object", "properties": {"day": {"type": "string"}, "start": {"type": "integer"}, "end": {"type": "integer"}, "duration": {"type": "integer"}, "location": {"type": "string"}}, "required": ["day", "start", "end", "duration", "location"]}}, "size": {"type": "integer"}, "enrolment": {"type": "integer"}}, "required": ["code", "instructors", "times", "size", "enrolment"]}}}, "required": ["id", "code", "name", "description", "division", "department", "prerequisites", "exclusions", "level", "campus", "term", "breadths", "meeting_sections"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "MAT231H1F20199", "code" : "MAT231H1F", "name" : "Modelling with Differential and Difference Equations", "description" : "Ordinary differential equations. Equations of first order and first degree. Linear equations of order n. Equations of second order. Systems of simultaneous equations. Difference equations. Linear control. Forecasting. Business dynamics. Throughout the course: formulating and analysing differential or difference equation models for real-world problems.", "division" : "Faculty of Applied Science & Engineering", "department" : "Mechanical & Industrial Engineering", "prerequisites" : "", "exclusions" : "", "level" : 200, "campus" : "UTSG", "term" : "2019 Fall", "breadths" : [], "meeting_sections" : [{"code" : "T0101", "instructors" : [], "times" : [{"day" : "MONDAY", "start" : 54000, "end" : 61200, "duration" : 7200, "location" : "BA 2165"}], "size" : 42, "enrolment" : 0}, {"code" : "T0102", "instructors" : [], "times" : [{"day" : "MONDAY", "start" : 54000, "end" : 61200, "duration" : 7200, "location" : "HA 316"}], "size" : 42, "enrolment" : 0}, {"code" : "T0103", "instructors" : [], "times" : [{"day" : "MONDAY", "start" : 54000, "end" : 61200, "duration" : 7200, "location" : "BA 1230"}], "size" : 42, "enrolment" : 0}, {"code" : "L0101", "instructors" : ["M Sourisseau"], "times" : [{"day" : "FRIDAY", "start" : 36000, "end" : 39600, "duration" : 3600, "location" : "SF 1105"}, {"day" : "MONDAY", "start" : 36000, "end" : 39600, "duration" : 3600, "location" : "BA 1190"}, {"day" : "THURSDAY", "start" : 39600, "end" : 43200, "duration" : 3600, "location" : "PB B250"}], "size" : 125, "enrolment" : 0}]} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "code": {"type": "string"}, "name": {"type": "string"}, "description": {"type": "string"}, "division": {"type": "string"}, "department": {"type": "string"}, "prerequisites": {"type": "string"}, "exclusions": {"type": "string"}, "level": {"type": "integer"}, "campus": {"type": "string"}, "term": {"type": "string"}, "breadths": {"type": "array", "items": {}}, "meeting_sections": {"type": "array", "items": {"type": "object", "properties": {"code": {"type": "string"}, "instructors": {"type": "array", "items": {}}, "times": {"type": "array", "items": {"type": "object", "properties": {"day": {"type": "string"}, "start": {"type": "integer"}, "end": {"type": "integer"}, "duration": {"type": "integer"}, "location": {"type": "string"}}, "required": ["day", "start", "end", "duration", "location"]}}, "size": {"type": "integer"}, "enrolment": {"type": "integer"}}, "required": ["code", "instructors", "times", "size", "enrolment"]}}}, "required": ["id", "code", "name", "description", "division", "department", "prerequisites", "exclusions", "level", "campus", "term", "breadths", "meeting_sections"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"author": {"type": "string"}, "classification": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "period": {"type": "string"}, "reference": {"type": "string"}, "region": {"type": "string"}, "text": {"type": "array", "items": {"type": "string"}}, "title": {"type": "string"}, "year": {"type": "string"}}, "required": ["author", "classification", "keywords", "period", "reference", "region", "text", "title", "year"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"author" : "Louis Simpson", "classification" : "Blank Verse", "keywords" : ["War", "Conflict", "History", "Politics", "Death", "Living", "Social Commentaries"], "period" : "", "reference" : "http://www.poetryfoundation.org/poem/171539", "region" : "U.S., New England", "text" : ["I dreamed that in a city dark as Paris", "I stood alone in a deserted square.", "The night was trembling with a violet", "Expectancy. At the far edge it moved", "And rumbled; on that flickering horizon", "The guns were pumping color in the sky.", "There was the Front. But I was lonely here,", "Left behind, abandoned by the army.", "The empty city and the empty square", "Was my inhabitation, my unrest.", "The helmet with its vestige of a crest,", "The rifle in my hands, long out of date,", "The belt I wore, the trailing overcoat", "And hobnail boots, were those of a", ".", "I was the man, as awkward as a bear.", "Over the rooftops where cathedrals loomed", "In speaking majesty, two aeroplanes", "Forlorn as birds, appeared. Then growing large,", "The German", "and the", ",", "They chased each other tumbling through the sky,", "Till one streamed down on fire to the earth.", "These wars have been so great, they are forgotten", "Like the Egyptian dynasts. My confrere", "In whose thick boots I stood, were you amazed", "To wander through my brain four decades later", "As I have wandered in a dream through yours?", "The violence of waking life disrupts", "The order of our death. Strange dreams occur,", "For dreams are licensed as they never were."], "title" : "I Dreamed That in a City Dark as Paris", "year" : ""} | json_instruct | {"type": "object", "properties": {"author": {"type": "string"}, "classification": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "period": {"type": "string"}, "reference": {"type": "string"}, "region": {"type": "string"}, "text": {"type": "array", "items": {"type": "string"}}, "title": {"type": "string"}, "year": {"type": "string"}}, "required": ["author", "classification", "keywords", "period", "reference", "region", "text", "title", "year"], "$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"}, "author": {"type": "string"}, "slug": {"type": "string"}, "type": {"type": "string"}, "keywords": {"type": "string"}, "homepage": {"type": "string"}, "documentation": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "bugs": {"type": "string"}, "shortDescription": {"type": "string"}, "license": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}}, "contributors": {"type": "array", "items": {}}, "ignore": {"type": "array", "items": {"type": "string"}}, "testbox": {"type": "object", "properties": {"runner": {"type": "string"}}, "required": ["runner"]}, "devDependencies": {"type": "object", "properties": {"testbox": {"type": "string"}}, "required": ["testbox"]}, "installPaths": {"type": "object", "properties": {"coldbox": {"type": "string"}, "testbox": {"type": "string"}}, "required": ["coldbox", "testbox"]}, "dependencies": {"type": "object", "properties": {"coldbox": {"type": "string"}}, "required": ["coldbox"]}}, "required": ["name", "version", "author", "slug", "type", "keywords", "homepage", "documentation", "repository", "bugs", "shortDescription", "license", "contributors", "ignore", "testbox", "devDependencies", "installPaths", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "AppTemplate", "version" : "1.0.0", "author" : "", "slug" : "app-template", "type" : "", "keywords" : "", "homepage" : "", "documentation" : "", "repository" : {"type" : "", "url" : ""}, "bugs" : "", "shortDescription" : "", "license" : [{"type" : "Apache2", "url" : "http://www.apache.org/licenses/LICENSE-2.0.html"}], "contributors" : [], "ignore" : ["**/.*", "tests", "*/.md"], "testbox" : {"runner" : ""}, "devDependencies" : {"testbox" : "2.2.0"}, "installPaths" : {"coldbox" : "coldbox", "testbox" : "testbox"}, "dependencies" : {"coldbox" : "4.1.0+00002"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "author": {"type": "string"}, "slug": {"type": "string"}, "type": {"type": "string"}, "keywords": {"type": "string"}, "homepage": {"type": "string"}, "documentation": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "bugs": {"type": "string"}, "shortDescription": {"type": "string"}, "license": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}}, "contributors": {"type": "array", "items": {}}, "ignore": {"type": "array", "items": {"type": "string"}}, "testbox": {"type": "object", "properties": {"runner": {"type": "string"}}, "required": ["runner"]}, "devDependencies": {"type": "object", "properties": {"testbox": {"type": "string"}}, "required": ["testbox"]}, "installPaths": {"type": "object", "properties": {"coldbox": {"type": "string"}, "testbox": {"type": "string"}}, "required": ["coldbox", "testbox"]}, "dependencies": {"type": "object", "properties": {"coldbox": {"type": "string"}}, "required": ["coldbox"]}}, "required": ["name", "version", "author", "slug", "type", "keywords", "homepage", "documentation", "repository", "bugs", "shortDescription", "license", "contributors", "ignore", "testbox", "devDependencies", "installPaths", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"schemaVersion": {"type": "integer"}, "mediaType": {"type": "string"}, "manifests": {"type": "array", "items": {"type": "object", "properties": {"mediaType": {"type": "string"}, "size": {"type": "integer"}, "digest": {"type": "string"}, "platform": {"type": "object", "properties": {"architecture": {"type": "string"}, "os": {"type": "string"}}, "required": ["architecture", "os"]}}, "required": ["mediaType", "size", "digest", "platform"]}}}, "required": ["schemaVersion", "mediaType", "manifests"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"schemaVersion" : 2, "mediaType" : "application/vnd.docker.distribution.manifest.list.v2+json", "manifests" : [{"mediaType" : "application/vnd.docker.distribution.manifest.v2+json", "size" : 529, "digest" : "sha256:365fc7f33107869dfcf2b3ba220ce0aa42e16d3f8e8b3c21d72af1ee622f0cf0", "platform" : {"architecture" : "amd64", "os" : "linux"}}, {"mediaType" : "application/vnd.docker.distribution.manifest.v2+json", "size" : 529, "digest" : "sha256:a757bdb58fcfd0656121b77e2fef6629c27062563219e0729ee77bb291e29d5a", "platform" : {"architecture" : "arm", "os" : "linux", "variant" : "v7"}}, {"mediaType" : "application/vnd.docker.distribution.manifest.v2+json", "size" : 529, "digest" : "sha256:ce1e4e9809d1b12e379e7a812f4e41aea4f6eaf6075136a99f64898d5e889626", "platform" : {"architecture" : "arm64", "os" : "linux", "variant" : "v8"}}, {"mediaType" : "application/vnd.docker.distribution.manifest.v2+json", "size" : 529, "digest" : "sha256:d070fe76cc044d7cda5e5f9623cfa875ec53ddc268c3e7799c6a00b05bab3ca9", "platform" : {"architecture" : "386", "os" : "linux"}}, {"mediaType" : "application/vnd.docker.distribution.manifest.v2+json", "size" : 529, "digest" : "sha256:d0f81db1a19cb5b6b22fca24069b7c66583e5baf42d36fd6df0c84a68776ce7e", "platform" : {"architecture" : "ppc64le", "os" : "linux"}}]} | json_instruct | {"type": "object", "properties": {"schemaVersion": {"type": "integer"}, "mediaType": {"type": "string"}, "manifests": {"type": "array", "items": {"type": "object", "properties": {"mediaType": {"type": "string"}, "size": {"type": "integer"}, "digest": {"type": "string"}, "platform": {"type": "object", "properties": {"architecture": {"type": "string"}, "os": {"type": "string"}}, "required": ["architecture", "os"]}}, "required": ["mediaType", "size", "digest", "platform"]}}}, "required": ["schemaVersion", "mediaType", "manifests"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "array", "items": {"type": "object", "properties": {"title": {"type": "string"}, "value": {"type": "number"}, "units": {"type": "string"}, "percentage": {"type": "string"}}, "required": ["title", "value", "units", "percentage"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"title" : "Subscriber count", "value" : 1.2, "units" : "Million", "percentage" : "(80.4%)"}, {"title" : "Off Network", "value" : 2.1, "units" : "Million", "percentage" : "last 24 hours"}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"title": {"type": "string"}, "value": {"type": "number"}, "units": {"type": "string"}, "percentage": {"type": "string"}}, "required": ["title", "value", "units", "percentage"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"courseCode": {"type": "string"}, "courseCredit": {"type": "string"}, "description": {"type": "string"}, "faculty": {"type": "string"}, "title": {"type": "string"}}, "required": ["courseCode", "courseCredit", "description", "faculty", "title"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"courseCode" : "MT5022", "courseCredit" : "4", "description" : "This course introduces students/engineers to digital strategies. Even though companies have been subject to successive shocks such as the industrial and computing revolutions, technology and innovation management has remained critical for their product strategy, differentiation, and competitiveness. Today, however, digital corporations (e.g. Google, Amazon, Facebook, Alibaba, Uber, Netflix, Bitcoin\u2026) are changing this status quo and revolutionizing business. They have few products but many services, and they connect people to one another. This module introduces students to digital strategies and prepares them to think of innovation in a digital context, and export this to their organizations to engage in disruptive transformation.", "faculty" : "Engineering", "title" : "Digital Disruption and Technology Strategy"} | json_instruct | {"type": "object", "properties": {"courseCode": {"type": "string"}, "courseCredit": {"type": "string"}, "description": {"type": "string"}, "faculty": {"type": "string"}, "title": {"type": "string"}}, "required": ["courseCode", "courseCredit", "description", "faculty", "title"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"English": {"type": "string"}, "\u4e2d\u6587(\u7b80\u4f53)": {"type": "string"}, "Deutschland": {"type": "string"}}, "required": ["English", "\u4e2d\u6587(\u7b80\u4f53)", "Deutschland"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"English" : "en", "\u4e2d\u6587(\u7b80\u4f53)" : "zh", "Deutschland" : "de"} | json_instruct | {"type": "object", "properties": {"English": {"type": "string"}, "\u4e2d\u6587(\u7b80\u4f53)": {"type": "string"}, "Deutschland": {"type": "string"}}, "required": ["English", "\u4e2d\u6587(\u7b80\u4f53)", "Deutschland"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"main.css": {"type": "string"}, "main.js": {"type": "string"}, "main.js.map": {"type": "string"}, "runtime~main.js": {"type": "string"}, "runtime~main.js.map": {"type": "string"}, "static/js/2.e708b1a0.chunk.js": {"type": "string"}, "static/js/2.e708b1a0.chunk.js.map": {"type": "string"}, "index.html": {"type": "string"}, "precache-manifest.28d0b4aba47ee71247259f45765722c9.js": {"type": "string"}, "service-worker.js": {"type": "string"}, "static/css/main.1c9b0ac2.chunk.css.map": {"type": "string"}, "static/media/App.css": {"type": "string"}, "static/media/breakout-lite.gif": {"type": "string"}, "static/media/brospipe-lite.gif": {"type": "string"}, "static/media/livecoding480.gif": {"type": "string"}, "static/media/loshermanosbros-lite.gif": {"type": "string"}, "static/media/mapdemo.gif": {"type": "string"}, "static/media/musicdemo.gif": {"type": "string"}, "static/media/pauserewind.gif": {"type": "string"}, "static/media/slider480.gif": {"type": "string"}, "static/media/spritedemo.gif": {"type": "string"}, "static/media/toggle.gif": {"type": "string"}}, "required": ["main.css", "main.js", "main.js.map", "runtime~main.js", "runtime~main.js.map", "static/js/2.e708b1a0.chunk.js", "static/js/2.e708b1a0.chunk.js.map", "index.html", "precache-manifest.28d0b4aba47ee71247259f45765722c9.js", "service-worker.js", "static/css/main.1c9b0ac2.chunk.css.map", "static/media/App.css", "static/media/breakout-lite.gif", "static/media/brospipe-lite.gif", "static/media/livecoding480.gif", "static/media/loshermanosbros-lite.gif", "static/media/mapdemo.gif", "static/media/musicdemo.gif", "static/media/pauserewind.gif", "static/media/slider480.gif", "static/media/spritedemo.gif", "static/media/toggle.gif"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"main.css" : "/static/css/main.1c9b0ac2.chunk.css", "main.js" : "/static/js/main.ba086089.chunk.js", "main.js.map" : "/static/js/main.ba086089.chunk.js.map", "runtime~main.js" : "/static/js/runtime~main.a8a9905a.js", "runtime~main.js.map" : "/static/js/runtime~main.a8a9905a.js.map", "static/js/2.e708b1a0.chunk.js" : "/static/js/2.e708b1a0.chunk.js", "static/js/2.e708b1a0.chunk.js.map" : "/static/js/2.e708b1a0.chunk.js.map", "index.html" : "/index.html", "precache-manifest.28d0b4aba47ee71247259f45765722c9.js" : "/precache-manifest.28d0b4aba47ee71247259f45765722c9.js", "service-worker.js" : "/service-worker.js", "static/css/main.1c9b0ac2.chunk.css.map" : "/static/css/main.1c9b0ac2.chunk.css.map", "static/media/App.css" : "/static/media/VT323-latin.e3552630.woff2", "static/media/breakout-lite.gif" : "/static/media/breakout-lite.a4d778a2.gif", "static/media/brospipe-lite.gif" : "/static/media/brospipe-lite.82f3b93a.gif", "static/media/livecoding480.gif" : "/static/media/livecoding480.20d1866a.gif", "static/media/loshermanosbros-lite.gif" : "/static/media/loshermanosbros-lite.c3b13663.gif", "static/media/mapdemo.gif" : "/static/media/mapdemo.23680514.gif", "static/media/musicdemo.gif" : "/static/media/musicdemo.c1b0f3bd.gif", "static/media/pauserewind.gif" : "/static/media/pauserewind.741e69fa.gif", "static/media/slider480.gif" : "/static/media/slider480.dc4d8c4b.gif", "static/media/spritedemo.gif" : "/static/media/spritedemo.76159464.gif", "static/media/toggle.gif" : "/static/media/toggle.4ab6d6b6.gif"} | json_instruct | {"type": "object", "properties": {"main.css": {"type": "string"}, "main.js": {"type": "string"}, "main.js.map": {"type": "string"}, "runtime~main.js": {"type": "string"}, "runtime~main.js.map": {"type": "string"}, "static/js/2.e708b1a0.chunk.js": {"type": "string"}, "static/js/2.e708b1a0.chunk.js.map": {"type": "string"}, "index.html": {"type": "string"}, "precache-manifest.28d0b4aba47ee71247259f45765722c9.js": {"type": "string"}, "service-worker.js": {"type": "string"}, "static/css/main.1c9b0ac2.chunk.css.map": {"type": "string"}, "static/media/App.css": {"type": "string"}, "static/media/breakout-lite.gif": {"type": "string"}, "static/media/brospipe-lite.gif": {"type": "string"}, "static/media/livecoding480.gif": {"type": "string"}, "static/media/loshermanosbros-lite.gif": {"type": "string"}, "static/media/mapdemo.gif": {"type": "string"}, "static/media/musicdemo.gif": {"type": "string"}, "static/media/pauserewind.gif": {"type": "string"}, "static/media/slider480.gif": {"type": "string"}, "static/media/spritedemo.gif": {"type": "string"}, "static/media/toggle.gif": {"type": "string"}}, "required": ["main.css", "main.js", "main.js.map", "runtime~main.js", "runtime~main.js.map", "static/js/2.e708b1a0.chunk.js", "static/js/2.e708b1a0.chunk.js.map", "index.html", "precache-manifest.28d0b4aba47ee71247259f45765722c9.js", "service-worker.js", "static/css/main.1c9b0ac2.chunk.css.map", "static/media/App.css", "static/media/breakout-lite.gif", "static/media/brospipe-lite.gif", "static/media/livecoding480.gif", "static/media/loshermanosbros-lite.gif", "static/media/mapdemo.gif", "static/media/musicdemo.gif", "static/media/pauserewind.gif", "static/media/slider480.gif", "static/media/spritedemo.gif", "static/media/toggle.gif"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"id": {"type": "string"}, "firstName": {"type": "string"}, "lastName": {"type": "string"}, "email": {"type": "string"}, "username": {"type": "string"}, "password": {"type": "string"}, "organisations": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "code": {"type": "string"}, "name": {"type": "string"}, "permissions": {"type": "array", "items": {}}, "notifications": {"type": "array", "items": {"type": "string"}}}, "required": ["id", "code", "name", "permissions", "notifications"]}}, "createdAt": {"type": "string"}, "updatedAt": {"type": "string"}, "active": {"type": "boolean"}}, "required": ["id", "firstName", "lastName", "email", "username", "password", "organisations", "createdAt", "updatedAt", "active"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "d39164cc-72cc-4e0a-b049-ea37b17017e1", "firstName" : "Loren", "lastName" : "Buckridge", "email" : "loren.buckridge-10530@example.com", "username" : "loren.buckridge-10530@example.com", "password" : "bat", "organisations" : [{"id" : "f23a9c8a-3433-4016-8a60-2a33971ddbb5", "code" : "1JR", "name" : "Manchester Trusts and Schools Alliance", "permissions" : [], "notifications" : ["course_published", "course_changed", "course_withdrawn", "course_vacancies_changed"]}], "createdAt" : "2022-03-07T12:34:07.429Z", "updatedAt" : "2022-03-08T20:09:44.194Z", "active" : true} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "firstName": {"type": "string"}, "lastName": {"type": "string"}, "email": {"type": "string"}, "username": {"type": "string"}, "password": {"type": "string"}, "organisations": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "code": {"type": "string"}, "name": {"type": "string"}, "permissions": {"type": "array", "items": {}}, "notifications": {"type": "array", "items": {"type": "string"}}}, "required": ["id", "code", "name", "permissions", "notifications"]}}, "createdAt": {"type": "string"}, "updatedAt": {"type": "string"}, "active": {"type": "boolean"}}, "required": ["id", "firstName", "lastName", "email", "username", "password", "organisations", "createdAt", "updatedAt", "active"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"system": {"type": "string"}, "code": {"type": "string"}, "description": {"type": "string"}, "children": {"type": "array", "items": {"type": "object", "properties": {"system": {"type": "string"}, "code": {"type": "string"}, "display": {"type": "string"}}, "required": ["system", "code", "display"]}}}, "required": ["system", "code", "description", "children"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"system" : "SNOMED Clinical Terms", "code" : "127788007", "description" : "", "children" : [{"system" : "http://snomed.info/sct", "code" : "127788007", "display" : "Apheresis"}, {"system" : "http://snomed.info/sct", "code" : "438839005", "display" : "Erythrocytapheresis"}, {"system" : "http://snomed.info/sct", "code" : "83794005", "display" : "Extracorporeal photopheresis"}, {"system" : "http://snomed.info/sct", "code" : "77257005", "display" : "Leukopheresis"}, {"system" : "http://snomed.info/sct", "code" : "233594006", "display" : "Lipopheresis"}, {"system" : "http://snomed.info/sct", "code" : "448955002", "display" : "Low density lipoprotein apheresis"}, {"system" : "http://snomed.info/sct", "code" : "19647005", "display" : "Plasma exchange"}, {"system" : "http://snomed.info/sct", "code" : "20720000", "display" : "Plasmapheresis"}, {"system" : "http://snomed.info/sct", "code" : "233564000", "display" : "Platelet apheresis using HLA matched donors"}, {"system" : "http://snomed.info/sct", "code" : "233565004", "display" : "Platelet apheresis using random donors"}, {"system" : "http://snomed.info/sct", "code" : "72541002", "display" : "Plateletpheresis"}, {"system" : "http://snomed.info/sct", "code" : "225067007", "display" : "Therapeutic plasma exchange"}]} | json_instruct | {"type": "object", "properties": {"system": {"type": "string"}, "code": {"type": "string"}, "description": {"type": "string"}, "children": {"type": "array", "items": {"type": "object", "properties": {"system": {"type": "string"}, "code": {"type": "string"}, "display": {"type": "string"}}, "required": ["system", "code", "display"]}}}, "required": ["system", "code", "description", "children"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"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"]}, "publishConfig": {"type": "object", "properties": {"registry": {"type": "string"}}, "required": ["registry"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}}, "required": ["name", "version", "description", "main", "scripts", "repository", "publishConfig", "keywords", "author", "license", "bugs", "homepage"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "@trejocode/package", "version" : "1.0.1", "description" : "Get random \"Hello\" message", "main" : "index.js", "scripts" : {"test" : "echo \"Error: no test specified\" && exit 1"}, "repository" : {"type" : "git", "url" : "git+https://github.com/TrejoCode/package.git"}, "publishConfig" : {"registry" : "https://npm.pkg.github.com"}, "keywords" : ["hello", "messages", "random"], "author" : "Trejocode", "license" : "MIT", "bugs" : {"url" : "https://github.com/TrejoCode/package/issues"}, "homepage" : "https://github.com/TrejoCode/package#readme"} | 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"]}, "publishConfig": {"type": "object", "properties": {"registry": {"type": "string"}}, "required": ["registry"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}}, "required": ["name", "version", "description", "main", "scripts", "repository", "publishConfig", "keywords", "author", "license", "bugs", "homepage"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"nom": {"type": "string"}, "circ": {"type": "string"}, "dpt": {"type": "string"}, "inscrits": {"type": "integer"}, "abs": {"type": "integer"}, "votants": {"type": "integer"}, "blancs": {"type": "integer"}, "nuls": {"type": "integer"}, "exp": {"type": "integer"}, "res": {"type": "array", "items": {"type": "object", "properties": {"nuance": {"type": "string"}, "nom": {"type": "string"}, "voix": {"type": "integer"}}, "required": ["nuance", "nom", "voix"]}}}, "required": ["nom", "circ", "dpt", "inscrits", "abs", "votants", "blancs", "nuls", "exp", "res"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"nom" : "Saint-Hilaire-du-Harcou\u00ebt", "circ" : "2\u00e8me circonscription", "dpt" : "Manche", "inscrits" : 4583, "abs" : 2101, "votants" : 2482, "blancs" : 42, "nuls" : 18, "exp" : 2422, "res" : [{"nuance" : "REM", "nom" : "M. Bertrand SORRE", "voix" : 1040}, {"nuance" : "LR", "nom" : "M. Guenha\u00ebl HUET", "voix" : 853}, {"nuance" : "FN", "nom" : "Mme Marie-Fran\u00e7oise KURDZIEL", "voix" : 200}, {"nuance" : "FI", "nom" : "M. Patrick GRIMBERT", "voix" : 115}, {"nuance" : "COM", "nom" : "M. Miloud MANSOUR", "voix" : 60}, {"nuance" : "DVG", "nom" : "M. Nicolas FERREIRA", "voix" : 49}, {"nuance" : "ECO", "nom" : "Mme Sophie NICKLAUS", "voix" : 35}, {"nuance" : "EXG", "nom" : "Mme Laurence DERREY", "voix" : 26}, {"nuance" : "DIV", "nom" : "Mme Am\u00e9lia BERTRAND", "voix" : 21}, {"nuance" : "EXD", "nom" : "M. Quentin DOUT\u00c9", "voix" : 10}, {"nuance" : "ECO", "nom" : "M. Jean-Fran\u00e7ois H\u00c8ME", "voix" : 7}, {"nuance" : "DVG", "nom" : "M. R\u00e9gis BREUX", "voix" : 6}]} | json_instruct | {"type": "object", "properties": {"nom": {"type": "string"}, "circ": {"type": "string"}, "dpt": {"type": "string"}, "inscrits": {"type": "integer"}, "abs": {"type": "integer"}, "votants": {"type": "integer"}, "blancs": {"type": "integer"}, "nuls": {"type": "integer"}, "exp": {"type": "integer"}, "res": {"type": "array", "items": {"type": "object", "properties": {"nuance": {"type": "string"}, "nom": {"type": "string"}, "voix": {"type": "integer"}}, "required": ["nuance", "nom", "voix"]}}}, "required": ["nom", "circ", "dpt", "inscrits", "abs", "votants", "blancs", "nuls", "exp", "res"], "$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": {"title": {"type": "string"}, "ups": {"type": "integer"}}, "required": ["title", "ups"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"title" : "My detailed HPB post", "ups" : 35}, {"title" : "We are moving to /r/HPBtrader/ it's already active.", "ups" : 6}, {"title" : "Is there some proof of partnership with unionpay?", "ups" : 5}, {"title" : "HPB Blockchain on Twitter", "ups" : 2}, {"title" : "New to this coin", "ups" : 3}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"title": {"type": "string"}, "ups": {"type": "integer"}}, "required": ["title", "ups"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"directions": {"type": "array", "items": {"type": "string"}}, "ingredients": {"type": "array", "items": {"type": "string"}}, "language": {"type": "string"}, "source": {"type": "string"}, "tags": {"type": "array", "items": {}}, "title": {"type": "string"}, "url": {"type": "string"}}, "required": ["directions", "ingredients", "language", "source", "tags", "title", "url"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"directions" : ["Place chicken breasts in a large pot and cover with water. Bring to a boil; cook chicken until an instant-read thermometer inserted into the center reads at least 165 degrees F (74 degrees C), about 15 minutes. Drain and cool until easily handled, about 5 minutes; slice into smaller pieces.", "Preheat oven to 350 degrees F (175 degrees C).", "Bring a large pot of lightly salted water to a boil; add penne and cook, stirring occasionally, until tender yet firm to the bite, about 9 minutes. Drain.", "Mix chicken slices, penne, Alfredo sauce, artichoke hearts, spinach, and diced tomatoes together in a 9x13-inch baking dish. Season with salt and pepper.", "Bake in the preheated oven until sauce is bubbly, about 30 minutes."], "ingredients" : ["6 chicken breasts", "1 (16 ounce) box penne pasta", "4 (12 ounce) jars Alfredo sauce", "1 (12 ounce) jar quartered marinated artichoke hearts, drained", "1 (10 ounce) box frozen chopped spinach, thawed and drained", "1 (10 ounce) can diced tomatoes with green chile peppers (such as RO*TEL\u00ae)", "salt and ground black pepper to taste"], "language" : "en-US", "source" : "allrecipes.com", "tags" : [], "title" : "Kena's Chicken Spinach Artichoke Pasta", "url" : "http://allrecipes.com/recipe/255843/kenas-chicken-spinach-artichoke-past/"} | json_instruct | {"type": "object", "properties": {"directions": {"type": "array", "items": {"type": "string"}}, "ingredients": {"type": "array", "items": {"type": "string"}}, "language": {"type": "string"}, "source": {"type": "string"}, "tags": {"type": "array", "items": {}}, "title": {"type": "string"}, "url": {"type": "string"}}, "required": ["directions", "ingredients", "language", "source", "tags", "title", "url"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"Type": {"type": "string"}, "Git repository": {"type": "string"}, "Git ref": {"type": "string"}, "Git commit": {"type": "string"}, "Binary file": {"type": "string"}, "Context dir": {"type": "string"}, "Dockerfile": {"type": "string"}, "JenskinsFile path": {"type": "string"}, "Build from": {"type": "string"}, "Output to": {"type": "string"}, "Push secret": {"type": "string"}, "Run policy": {"type": "string"}, "Resource limits": {"type": "string"}, "Triggers": {"type": "string"}}, "required": ["Type", "Git repository", "Git ref", "Git commit", "Binary file", "Context dir", "Dockerfile", "JenskinsFile path", "Build from", "Output to", "Push secret", "Run policy", "Resource limits", "Triggers"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"Type" : "Type", "Git repository" : "Git repository", "Git ref" : "Git ref", "Git commit" : "Git commit", "Binary file" : "Binary file", "Context dir" : "Context dir", "Dockerfile" : "Dockerfile", "JenskinsFile path" : "JenskinsFile path", "Build from" : "Build from", "Output to" : "Output to", "Push secret" : "Push secret", "Run policy" : "Run policy", "Resource limits" : "Resource limits", "Triggers" : "Triggers"} | json_instruct | {"type": "object", "properties": {"Type": {"type": "string"}, "Git repository": {"type": "string"}, "Git ref": {"type": "string"}, "Git commit": {"type": "string"}, "Binary file": {"type": "string"}, "Context dir": {"type": "string"}, "Dockerfile": {"type": "string"}, "JenskinsFile path": {"type": "string"}, "Build from": {"type": "string"}, "Output to": {"type": "string"}, "Push secret": {"type": "string"}, "Run policy": {"type": "string"}, "Resource limits": {"type": "string"}, "Triggers": {"type": "string"}}, "required": ["Type", "Git repository", "Git ref", "Git commit", "Binary file", "Context dir", "Dockerfile", "JenskinsFile path", "Build from", "Output to", "Push secret", "Run policy", "Resource limits", "Triggers"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "object", "properties": {"error": {"type": "null"}, "issues": {"type": "array", "items": {}}, "success": {"type": "boolean"}}, "required": ["error", "issues", "success"]}}, "required": ["contract", "tool", "start", "end", "duration", "analysis"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"contract" : "0x5fc15be6890d2d5d5efe293bf916f3e25fe173a4", "tool" : "mythril", "start" : 1563487386.9443896, "end" : 1563487395.9130087, "duration" : 8.968619108200073, "analysis" : {"error" : null, "issues" : [], "success" : true}} | json_instruct | {"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "object", "properties": {"error": {"type": "null"}, "issues": {"type": "array", "items": {}}, "success": {"type": "boolean"}}, "required": ["error", "issues", "success"]}}, "required": ["contract", "tool", "start", "end", "duration", "analysis"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"WorkItem": {"type": "object", "properties": {"AffectedComponent": {"type": "object", "properties": {"Name": {"type": "string"}, "DisplayName": {"type": "string"}}, "required": ["Name", "DisplayName"]}, "ClosedComment": {"type": "string"}, "ClosedDate": {"type": "null"}, "CommentCount": {"type": "integer"}, "Custom": {"type": "null"}, "Description": {"type": "string"}, "LastUpdatedDate": {"type": "string"}, "PlannedForRelease": {"type": "string"}, "ReleaseVisibleToPublic": {"type": "boolean"}, "Priority": {"type": "object", "properties": {"Name": {"type": "string"}, "Severity": {"type": "integer"}, "Id": {"type": "integer"}}, "required": ["Name", "Severity", "Id"]}, "ProjectName": {"type": "string"}, "ReportedDate": {"type": "string"}, "Status": {"type": "object", "properties": {"Name": {"type": "string"}, "Id": {"type": "integer"}}, "required": ["Name", "Id"]}, "ReasonClosed": {"type": "object", "properties": {"Name": {"type": "string"}}, "required": ["Name"]}, "Summary": {"type": "string"}, "Type": {"type": "object", "properties": {"Name": {"type": "string"}, "Id": {"type": "integer"}}, "required": ["Name", "Id"]}, "VoteCount": {"type": "integer"}, "Id": {"type": "integer"}}, "required": ["AffectedComponent", "ClosedComment", "ClosedDate", "CommentCount", "Custom", "Description", "LastUpdatedDate", "PlannedForRelease", "ReleaseVisibleToPublic", "Priority", "ProjectName", "ReportedDate", "Status", "ReasonClosed", "Summary", "Type", "VoteCount", "Id"]}, "FileAttachments": {"type": "array", "items": {}}, "Comments": {"type": "array", "items": {}}}, "required": ["WorkItem", "FileAttachments", "Comments"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"WorkItem" : {"AffectedComponent" : {"Name" : "", "DisplayName" : ""}, "ClosedComment" : "", "ClosedDate" : null, "CommentCount" : 0, "Custom" : null, "Description" : "Supposedly this is the fix...\n\nModified line 774 of HtmlEntity.cs to check for key in dictionary:\n\nstring entity = _entityName.ContainsKey(code) \n ? _entityName[code] as string\n : null;", "LastUpdatedDate" : "2017-02-02T09:36:53.103-08:00", "PlannedForRelease" : "", "ReleaseVisibleToPublic" : false, "Priority" : {"Name" : "Unassigned", "Severity" : 0, "Id" : 0}, "ProjectName" : "htmlagilitypack", "ReportedDate" : "2013-05-31T11:36:33.983-07:00", "Status" : {"Name" : "Proposed", "Id" : 1}, "ReasonClosed" : {"Name" : "Unassigned"}, "Summary" : "HtmlEntity.DeEntitize throws KeyNotFoundException if there is an & in the text", "Type" : {"Name" : "Unassigned", "Id" : 5}, "VoteCount" : 4, "Id" : 34122}, "FileAttachments" : [], "Comments" : []} | json_instruct | {"type": "object", "properties": {"WorkItem": {"type": "object", "properties": {"AffectedComponent": {"type": "object", "properties": {"Name": {"type": "string"}, "DisplayName": {"type": "string"}}, "required": ["Name", "DisplayName"]}, "ClosedComment": {"type": "string"}, "ClosedDate": {"type": "null"}, "CommentCount": {"type": "integer"}, "Custom": {"type": "null"}, "Description": {"type": "string"}, "LastUpdatedDate": {"type": "string"}, "PlannedForRelease": {"type": "string"}, "ReleaseVisibleToPublic": {"type": "boolean"}, "Priority": {"type": "object", "properties": {"Name": {"type": "string"}, "Severity": {"type": "integer"}, "Id": {"type": "integer"}}, "required": ["Name", "Severity", "Id"]}, "ProjectName": {"type": "string"}, "ReportedDate": {"type": "string"}, "Status": {"type": "object", "properties": {"Name": {"type": "string"}, "Id": {"type": "integer"}}, "required": ["Name", "Id"]}, "ReasonClosed": {"type": "object", "properties": {"Name": {"type": "string"}}, "required": ["Name"]}, "Summary": {"type": "string"}, "Type": {"type": "object", "properties": {"Name": {"type": "string"}, "Id": {"type": "integer"}}, "required": ["Name", "Id"]}, "VoteCount": {"type": "integer"}, "Id": {"type": "integer"}}, "required": ["AffectedComponent", "ClosedComment", "ClosedDate", "CommentCount", "Custom", "Description", "LastUpdatedDate", "PlannedForRelease", "ReleaseVisibleToPublic", "Priority", "ProjectName", "ReportedDate", "Status", "ReasonClosed", "Summary", "Type", "VoteCount", "Id"]}, "FileAttachments": {"type": "array", "items": {}}, "Comments": {"type": "array", "items": {}}}, "required": ["WorkItem", "FileAttachments", "Comments"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"}
| ["With feet together, step in with your left foot to 12 o'clock (into a left neutral bow) and deliver a left extended outward to the inside of opponent's right wrist. Simultaneously deliver a right vertical punch to opponent's face.", "Slide your right foot clockwise to 10 o'clock (into a left neutral bow) as you deliver a left uppercut over and under opponent's left arm to break the elbow.", "Shift your left foot back to 11 o'clock, still pinning opponent's left arm, and quickly circle your right foot clockwise and back of opponent's right leg (to 6 o'clock) into a left forward bow as you deliver a right heel of palm strike to opponent's jaw thus forcing your opponent to the ground.", "Step back with your right foot toward 8 o'clock; left front crossover and cover out twice toward 8 o'clock."] | json_instruct | {"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"}, "status": {"type": "string"}, "verifiableDataRegistry": {"type": "string"}, "contactName": {"type": "string"}, "contactEmail": {"type": "string"}, "contactWebsite": {"type": "string"}, "specification": {"type": "string"}}, "required": ["name", "status", "verifiableDataRegistry", "contactName", "contactEmail", "contactWebsite", "specification"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "sol", "status" : "registered", "verifiableDataRegistry" : "Solana", "contactName" : "Daniel Kelleher", "contactEmail" : "", "contactWebsite" : "https://github.com/dankelleher", "specification" : "https://identity-com.github.io/sol-did/did-method-spec.html"} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "status": {"type": "string"}, "verifiableDataRegistry": {"type": "string"}, "contactName": {"type": "string"}, "contactEmail": {"type": "string"}, "contactWebsite": {"type": "string"}, "specification": {"type": "string"}}, "required": ["name", "status", "verifiableDataRegistry", "contactName", "contactEmail", "contactWebsite", "specification"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"category": {"type": "string"}, "description": {"type": "string"}, "ignore": {"type": "boolean"}, "images": {"type": "array", "items": {"type": "string"}}, "keywords": {"type": "array", "items": {"type": "string"}}, "redirect_from": {"type": "array", "items": {}}, "relevant_apis": {"type": "array", "items": {"type": "string"}}, "snippets": {"type": "array", "items": {"type": "string"}}, "title": {"type": "string"}}, "required": ["category", "description", "ignore", "images", "keywords", "redirect_from", "relevant_apis", "snippets", "title"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"category" : "Layers", "description" : "Edit the values of a KML ground overlay.", "ignore" : false, "images" : ["edit-kml-ground-overlay.png"], "keywords" : ["KML", "KMZ", "Keyhole", "OGC", "imagery", "AGSKMLDataset", "AGSKMLGroundOverlay", "AGSKMLIcon", "AGSKMLLayer"], "redirect_from" : [], "relevant_apis" : ["AGSKMLDataset", "AGSKMLGroundOverlay", "AGSKMLIcon", "AGSKMLLayer"], "snippets" : ["EditKMLGroundOverlayViewController.swift"], "title" : "Edit KML ground overlay"} | json_instruct | {"type": "object", "properties": {"category": {"type": "string"}, "description": {"type": "string"}, "ignore": {"type": "boolean"}, "images": {"type": "array", "items": {"type": "string"}}, "keywords": {"type": "array", "items": {"type": "string"}}, "redirect_from": {"type": "array", "items": {}}, "relevant_apis": {"type": "array", "items": {"type": "string"}}, "snippets": {"type": "array", "items": {"type": "string"}}, "title": {"type": "string"}}, "required": ["category", "description", "ignore", "images", "keywords", "redirect_from", "relevant_apis", "snippets", "title"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "keywords": {"type": "array", "items": {"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"]}, "autoload": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"Ozanmuyes\\Paraveley\\": {"type": "string"}}, "required": ["Ozanmuyes\\Paraveley\\"]}}, "required": ["psr-4"]}}, "required": ["name", "description", "keywords", "license", "authors", "require", "autoload"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "ozanmuyes/paraveley", "description" : " Automatically generate Parsley rules depending on Laravel's FormRequest.", "keywords" : ["laravel 5", "parsley", "form", "request"], "license" : "MIT", "authors" : [{"name" : "Ozan M\u00fcyessero\u011flu", "email" : "ozanmuyes@gmail.com"}], "require" : {"php" : ">=5.4.0"}, "autoload" : {"psr-4" : {"Ozanmuyes\\Paraveley\\" : "src/"}}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "keywords": {"type": "array", "items": {"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"]}, "autoload": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"Ozanmuyes\\Paraveley\\": {"type": "string"}}, "required": ["Ozanmuyes\\Paraveley\\"]}}, "required": ["psr-4"]}}, "required": ["name", "description", "keywords", "license", "authors", "require", "autoload"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "author": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}, "url": {"type": "string"}}, "required": ["name", "email", "url"]}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"node-getopt": {"type": "string"}, "realm": {"type": "string"}}, "required": ["node-getopt", "realm"]}}, "required": ["name", "version", "description", "main", "scripts", "author", "license", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "permission-demo", "version" : "1.0.0", "description" : "A tool for granting permission", "main" : "index.js", "scripts" : {"test" : "echo \"Error: no test specified\" && exit 1"}, "author" : {"name" : "Realm Inc.", "email" : "info@realm.io", "url" : "https://realm.io"}, "license" : "Apache-2.0", "dependencies" : {"node-getopt" : "^0.3.2", "realm" : "^2.16.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"]}, "author": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}, "url": {"type": "string"}}, "required": ["name", "email", "url"]}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"node-getopt": {"type": "string"}, "realm": {"type": "string"}}, "required": ["node-getopt", "realm"]}}, "required": ["name", "version", "description", "main", "scripts", "author", "license", "dependencies"], "$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"}, "author": {"type": "string"}, "license": {"type": "string"}}, "required": ["name", "version", "description", "main", "author", "license"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "eslint-config-ghornich-es5", "version" : "1.0.1", "description" : "", "main" : "eslintrc.js", "author" : "ghornich", "license" : "MIT"} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "author": {"type": "string"}, "license": {"type": "string"}}, "required": ["name", "version", "description", "main", "author", "license"], "$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"}, "keywords": {"type": "array", "items": {"type": "string"}}, "homepage": {"type": "string"}, "license": {"type": "string"}, "filename": {"type": "string"}, "dependencies": {"type": "object", "properties": {"jquery": {"type": "string"}}, "required": ["jquery"]}, "repositories": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}}, "autoupdate": {"type": "object", "properties": {"source": {"type": "string"}, "target": {"type": "string"}, "basePath": {"type": "string"}, "files": {"type": "array", "items": {"type": "string"}}}, "required": ["source", "target", "basePath", "files"]}}, "required": ["name", "version", "description", "keywords", "homepage", "license", "filename", "dependencies", "repositories", "autoupdate"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "jquery.poptrox", "version" : "2.5.1", "description" : "A lightbox gallery plugin for jQuery.", "keywords" : ["jquery", "gallery", "lightbox"], "homepage" : "http://n33.co", "license" : "MIT", "filename" : "jquery.poptrox.min.js", "dependencies" : {"jquery" : ">=1.7"}, "repositories" : [{"type" : "git", "url" : "git://github.com/n33/jquery.poptrox"}], "autoupdate" : {"source" : "git", "target" : "git://github.com/n33/jquery.poptrox.git", "basePath" : "", "files" : ["jquery.poptrox.js", "jquery.poptrox.min.js"]}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "homepage": {"type": "string"}, "license": {"type": "string"}, "filename": {"type": "string"}, "dependencies": {"type": "object", "properties": {"jquery": {"type": "string"}}, "required": ["jquery"]}, "repositories": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}}, "autoupdate": {"type": "object", "properties": {"source": {"type": "string"}, "target": {"type": "string"}, "basePath": {"type": "string"}, "files": {"type": "array", "items": {"type": "string"}}}, "required": ["source", "target", "basePath", "files"]}}, "required": ["name", "version", "description", "keywords", "homepage", "license", "filename", "dependencies", "repositories", "autoupdate"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"}
| ["rhapsodify"] | json_instruct | {"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"certificate_id": {"type": "integer"}, "perm_registration_num": {"type": "string"}, "perm_registration_date": {"type": "string"}, "perm_expiry_date": {"type": "string"}, "perm_place_marking": {"type": "string"}, "perm_chief_name": {"type": "string"}, "perm_chief_org": {"type": "string"}}, "required": ["certificate_id", "perm_registration_num", "perm_registration_date", "perm_expiry_date", "perm_place_marking", "perm_chief_name", "perm_chief_org"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"certificate_id" : 1, "perm_registration_num" : "saasasa", "perm_registration_date" : "2018-12-13 00:00:00 UTC", "perm_expiry_date" : "2018-12-11 00:00:00 UTC", "perm_place_marking" : "rererer", "perm_chief_name" : "121", "perm_chief_org" : "4343"} | json_instruct | {"type": "object", "properties": {"certificate_id": {"type": "integer"}, "perm_registration_num": {"type": "string"}, "perm_registration_date": {"type": "string"}, "perm_expiry_date": {"type": "string"}, "perm_place_marking": {"type": "string"}, "perm_chief_name": {"type": "string"}, "perm_chief_org": {"type": "string"}}, "required": ["certificate_id", "perm_registration_num", "perm_registration_date", "perm_expiry_date", "perm_place_marking", "perm_chief_name", "perm_chief_org"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"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" : "3271050002", "district_id" : "3271050", "name" : "PASIRKUDA"} | 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#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"372012": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}, "count": {"type": "integer"}, "15113X": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}, "434171": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}, "353031": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}, "N.A.//": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}}, "required": ["372012", "count", "15113X", "434171", "353031", "N.A.//"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"372012" : {"count" : 1}, "count" : 8, "15113X" : {"count" : 1}, "434171" : {"count" : 1}, "353031" : {"count" : 1}, "N.A.//" : {"count" : 4}} | json_instruct | {"type": "object", "properties": {"372012": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}, "count": {"type": "integer"}, "15113X": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}, "434171": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}, "353031": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}, "N.A.//": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}}, "required": ["372012", "count", "15113X", "434171", "353031", "N.A.//"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"result": {"type": "object", "properties": {"explosive": {"type": "string"}, "count": {"type": "integer"}}, "required": ["explosive", "count"]}, "pattern": {"type": "array", "items": {"type": "string"}}, "type": {"type": "string"}, "key": {"type": "object", "properties": {"c": {"type": "object", "properties": {"type": {"type": "string"}, "explosive": {"type": "string"}}, "required": ["type", "explosive"]}, "r": {"type": "object", "properties": {"item": {"type": "string"}, "data": {"type": "integer"}}, "required": ["item", "data"]}}, "required": ["c", "r"]}}, "required": ["result", "pattern", "type", "key"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"result" : {"explosive" : "icbmclassic:contagious", "count" : 2}, "pattern" : [" c ", "crc", " c "], "type" : "icbmclassic:explosive", "key" : {"c" : {"type" : "icbmclassic:explosive", "explosive" : "icbmclassic:chemical"}, "r" : {"item" : "minecraft:rotten_flesh", "data" : 0}}} | json_instruct | {"type": "object", "properties": {"result": {"type": "object", "properties": {"explosive": {"type": "string"}, "count": {"type": "integer"}}, "required": ["explosive", "count"]}, "pattern": {"type": "array", "items": {"type": "string"}}, "type": {"type": "string"}, "key": {"type": "object", "properties": {"c": {"type": "object", "properties": {"type": {"type": "string"}, "explosive": {"type": "string"}}, "required": ["type", "explosive"]}, "r": {"type": "object", "properties": {"item": {"type": "string"}, "data": {"type": "integer"}}, "required": ["item", "data"]}}, "required": ["c", "r"]}}, "required": ["result", "pattern", "type", "key"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"id": {"type": "integer"}, "ot": {"type": "integer"}, "alias": {"type": "integer"}, "setcode": {"type": "integer"}, "type": {"type": "integer"}, "atk": {"type": "integer"}, "def": {"type": "integer"}, "level": {"type": "integer"}, "race": {"type": "integer"}, "attribute": {"type": "integer"}, "category": {"type": "integer"}, "name": {"type": "string"}, "desc": {"type": "string"}, "str1": {"type": "string"}, "str2": {"type": "string"}, "str3": {"type": "string"}, "str4": {"type": "string"}, "str5": {"type": "string"}, "str6": {"type": "string"}, "str7": {"type": "string"}, "str8": {"type": "string"}, "str9": {"type": "string"}, "str10": {"type": "string"}, "str11": {"type": "string"}, "str12": {"type": "string"}, "str13": {"type": "string"}, "str14": {"type": "string"}, "str15": {"type": "string"}, "str16": {"type": "string"}, "links": {"type": "array", "items": {}}, "cardpool": {"type": "string"}, "ocg": {"type": "object", "properties": {"pack": {"type": "string"}, "pack_id": {"type": "string"}, "date": {"type": "string"}}, "required": ["pack", "pack_id", "date"]}, "tcg": {"type": "object", "properties": {"pack": {"type": "string"}, "pack_id": {"type": "string"}, "date": {"type": "string"}}, "required": ["pack", "pack_id", "date"]}, "picture": {"type": "string"}}, "required": ["id", "ot", "alias", "setcode", "type", "atk", "def", "level", "race", "attribute", "category", "name", "desc", "str1", "str2", "str3", "str4", "str5", "str6", "str7", "str8", "str9", "str10", "str11", "str12", "str13", "str14", "str15", "str16", "links", "cardpool", "ocg", "tcg", "picture"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : 83866861, "ot" : 3, "alias" : 0, "setcode" : 173, "type" : 97, "atk" : 2800, "def" : 2000, "level" : 8, "race" : 8, "attribute" : 32, "category" : 0, "name" : "Frightfur Chimera", "desc" : "3 \"Frightfur\" monsters\nMust be Fusion Summoned and cannot be Special Summoned by other ways. If this card battles, your opponent cannot activate cards or effects until the end of the Damage Step. When this card destroys an opponent's monster by battle and sends it to the Graveyard: You can Special Summon that monster to your field, but its ATK is halved. You can only use this effect of \"Frightfur Chimera\" once per turn. This card gains 300 ATK for each monster you control that is owned by your opponent.", "str1" : "", "str2" : "", "str3" : "", "str4" : "", "str5" : "", "str6" : "", "str7" : "", "str8" : "", "str9" : "", "str10" : "", "str11" : "", "str12" : "", "str13" : "", "str14" : "", "str15" : "", "str16" : "", "links" : [], "cardpool" : "OCG/TCG", "ocg" : {"pack" : "Crossed Souls", "pack_id" : "CROS-JP043", "date" : "2015-02-14"}, "tcg" : {"pack" : "Crossed Souls", "pack_id" : "CROS-DE043", "date" : "2015-05-14"}, "picture" : "https://vignette.wikia.nocookie.net/yugioh/images/4/45/FrightfurChimera-SP17-EN-C-1E.png"} | json_instruct | {"type": "object", "properties": {"id": {"type": "integer"}, "ot": {"type": "integer"}, "alias": {"type": "integer"}, "setcode": {"type": "integer"}, "type": {"type": "integer"}, "atk": {"type": "integer"}, "def": {"type": "integer"}, "level": {"type": "integer"}, "race": {"type": "integer"}, "attribute": {"type": "integer"}, "category": {"type": "integer"}, "name": {"type": "string"}, "desc": {"type": "string"}, "str1": {"type": "string"}, "str2": {"type": "string"}, "str3": {"type": "string"}, "str4": {"type": "string"}, "str5": {"type": "string"}, "str6": {"type": "string"}, "str7": {"type": "string"}, "str8": {"type": "string"}, "str9": {"type": "string"}, "str10": {"type": "string"}, "str11": {"type": "string"}, "str12": {"type": "string"}, "str13": {"type": "string"}, "str14": {"type": "string"}, "str15": {"type": "string"}, "str16": {"type": "string"}, "links": {"type": "array", "items": {}}, "cardpool": {"type": "string"}, "ocg": {"type": "object", "properties": {"pack": {"type": "string"}, "pack_id": {"type": "string"}, "date": {"type": "string"}}, "required": ["pack", "pack_id", "date"]}, "tcg": {"type": "object", "properties": {"pack": {"type": "string"}, "pack_id": {"type": "string"}, "date": {"type": "string"}}, "required": ["pack", "pack_id", "date"]}, "picture": {"type": "string"}}, "required": ["id", "ot", "alias", "setcode", "type", "atk", "def", "level", "race", "attribute", "category", "name", "desc", "str1", "str2", "str3", "str4", "str5", "str6", "str7", "str8", "str9", "str10", "str11", "str12", "str13", "str14", "str15", "str16", "links", "cardpool", "ocg", "tcg", "picture"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "exports": {"type": "object", "properties": {"require": {"type": "string"}, "import": {"type": "string"}}, "required": ["require", "import"]}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "build": {"type": "string"}, "build:js": {"type": "string"}, "build:dts": {"type": "string"}, "build:doc": {"type": "string"}}, "required": ["test", "build", "build:js", "build:dts", "build:doc"]}, "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"}, "dependencies": {"type": "object", "properties": {"k8w-extend-native": {"type": "string"}, "tsbuffer": {"type": "string"}, "tslib": {"type": "string"}, "tsrpc-proto": {"type": "string"}}, "required": ["k8w-extend-native", "tsbuffer", "tslib", "tsrpc-proto"]}, "devDependencies": {"type": "object", "properties": {"@microsoft/api-documenter": {"type": "string"}, "@microsoft/api-extractor": {"type": "string"}, "mocha": {"type": "string"}, "rollup": {"type": "string"}, "rollup-plugin-typescript2": {"type": "string"}, "ts-node": {"type": "string"}, "typescript": {"type": "string"}}, "required": ["@microsoft/api-documenter", "@microsoft/api-extractor", "mocha", "rollup", "rollup-plugin-typescript2", "ts-node", "typescript"]}}, "required": ["name", "version", "description", "main", "exports", "scripts", "repository", "author", "license", "bugs", "homepage", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "tsrpc-base-client", "version" : "2.0.5", "description" : "TSRPC Base Client", "main" : "index.js", "exports" : {"require" : "./index.js", "import" : "./index.mjs"}, "scripts" : {"test" : "npx ts-node test/test.ts", "build" : "npm run build:js && npm run build:dts && npm run build:doc && cp package.json LICENSE README.md dist/", "build:js" : "rm -rf dist && npx rollup -c", "build:dts" : "rm -rf lib && npx tsc && npx api-extractor run --local --verbose && node scripts/removePrivate.js && rm -rf lib", "build:doc" : "rm -rf docs/api && npx api-documenter markdown --input temp --output docs/api"}, "repository" : {"type" : "git", "url" : "git+https://github.com/k8w/tsrpc-base-client.git"}, "author" : "", "license" : "MIT", "bugs" : {"url" : "https://github.com/k8w/tsrpc-base-client/issues"}, "homepage" : "https://github.com/k8w/tsrpc-base-client#readme", "dependencies" : {"k8w-extend-native" : "^1.4.6", "tsbuffer" : "^2.2.2", "tslib" : "*", "tsrpc-proto" : "^1.4.1"}, "devDependencies" : {"@microsoft/api-documenter" : "^7.17.8", "@microsoft/api-extractor" : "^7.22.1", "mocha" : "^9.2.2", "rollup" : "^2.70.1", "rollup-plugin-typescript2" : "^0.31.2", "ts-node" : "^10.7.0", "typescript" : "^4.6.3"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "exports": {"type": "object", "properties": {"require": {"type": "string"}, "import": {"type": "string"}}, "required": ["require", "import"]}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "build": {"type": "string"}, "build:js": {"type": "string"}, "build:dts": {"type": "string"}, "build:doc": {"type": "string"}}, "required": ["test", "build", "build:js", "build:dts", "build:doc"]}, "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"}, "dependencies": {"type": "object", "properties": {"k8w-extend-native": {"type": "string"}, "tsbuffer": {"type": "string"}, "tslib": {"type": "string"}, "tsrpc-proto": {"type": "string"}}, "required": ["k8w-extend-native", "tsbuffer", "tslib", "tsrpc-proto"]}, "devDependencies": {"type": "object", "properties": {"@microsoft/api-documenter": {"type": "string"}, "@microsoft/api-extractor": {"type": "string"}, "mocha": {"type": "string"}, "rollup": {"type": "string"}, "rollup-plugin-typescript2": {"type": "string"}, "ts-node": {"type": "string"}, "typescript": {"type": "string"}}, "required": ["@microsoft/api-documenter", "@microsoft/api-extractor", "mocha", "rollup", "rollup-plugin-typescript2", "ts-node", "typescript"]}}, "required": ["name", "version", "description", "main", "exports", "scripts", "repository", "author", "license", "bugs", "homepage", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"sweetalert2.all.js": {"type": "string"}, "sweetalert2.all.min.js": {"type": "string"}, "sweetalert2.common.js": {"type": "string"}, "sweetalert2.css": {"type": "string"}, "sweetalert2.js": {"type": "string"}, "sweetalert2.min.css": {"type": "string"}, "sweetalert2.min.js": {"type": "string"}}, "required": ["sweetalert2.all.js", "sweetalert2.all.min.js", "sweetalert2.common.js", "sweetalert2.css", "sweetalert2.js", "sweetalert2.min.css", "sweetalert2.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"sweetalert2.all.js" : "sha512-NJPc7q73jjNYI81UPBvYdhGeWOUO/nQFgKQuY4RydTotOuWA8H1+h6r43Xh4iAmtlGpwiOK4GcUFsvqmACWoXg==", "sweetalert2.all.min.js" : "sha512-fKRlk3+SoDIuMvRczGD9F3VRh1XD5zSjapMjUmVz03aEil/pu1tL2ywt3gFJ0nuXNEVzKNpVIUkhiZLDso48JA==", "sweetalert2.common.js" : "sha512-LWbvPhoN3GDrZlHIp1lAaG7WHye03DCCRDNV8EQA3ug9sKbThjtgHdUyv0HG1dOGb2dtnC4NWNBH5GgCqt2cuA==", "sweetalert2.css" : "sha512-TIR7E7g9w6KJe5dQGYo0whMtaQUuca57Zjv1Jyf1PzqKaEphsj1G7l6Gv7weMobpirBhgOb948r6kUCJ4tjWeA==", "sweetalert2.js" : "sha512-hJF9oyDYlXjYnRVHxvVdqCe9wHzW/JLlxqttwRLnLY2jKFnbld6oHzVUs+OZ+k3OmsKrT8eWYKQFguI1G2IrEw==", "sweetalert2.min.css" : "sha512-XWEJzjvIH7Gw4C6J/dxEhNxL2d8OpguY832eU49LZNi5SGHDWFp0DXKaWhylD0oeY1wuQi5q4cs8uknIU4C5Rw==", "sweetalert2.min.js" : "sha512-x0qvEw6FugAaJmTKulqvFiinzaoS+qdmIo1THglVfEAyN2DOMqFCdeFltE3eC01t9xj6CKA245GfyuiVgJbCSw=="} | json_instruct | {"type": "object", "properties": {"sweetalert2.all.js": {"type": "string"}, "sweetalert2.all.min.js": {"type": "string"}, "sweetalert2.common.js": {"type": "string"}, "sweetalert2.css": {"type": "string"}, "sweetalert2.js": {"type": "string"}, "sweetalert2.min.css": {"type": "string"}, "sweetalert2.min.js": {"type": "string"}}, "required": ["sweetalert2.all.js", "sweetalert2.all.min.js", "sweetalert2.common.js", "sweetalert2.css", "sweetalert2.js", "sweetalert2.min.css", "sweetalert2.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"recordings": {"type": "array", "items": {"type": "object", "properties": {"method": {"type": "string"}, "url": {"type": "string"}, "query": {"type": "object", "properties": {"api-version": {"type": "string"}}, "required": ["api-version"]}, "requestBody": {"type": "string"}, "status": {"type": "integer"}, "response": {"type": "string"}, "responseHeaders": {"type": "object", "properties": {"content-type": {"type": "string"}}, "required": ["content-type"]}}, "required": ["method", "url", "query", "requestBody", "status", "response", "responseHeaders"]}}, "uniqueTestInfo": {"type": "object", "properties": {"uniqueName": {"type": "object", "properties": {}, "required": []}, "newDate": {"type": "object", "properties": {}, "required": []}}, "required": ["uniqueName", "newDate"]}, "hash": {"type": "string"}}, "required": ["recordings", "uniqueTestInfo", "hash"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"recordings" : [{"method" : "POST", "url" : "https://endpoint/identities", "query" : {"api-version" : "2021-03-07"}, "requestBody" : "{\"createTokenWithScopes\":[\"chat\"]}", "status" : 201, "response" : "{\"identity\":{\"id\":\"8:acs:a6b1db05-01f4-4539-95c4-d37fdd6d9a2d_00000007-e53e-a629-eef0-8b3a0d0042d0\"},\"accessToken\":{\"token\":\"token\",\"expiresOn\":\"2021-01-28T19:40:58.5245267+00:00\"}}", "responseHeaders" : {"content-type" : "application/json; charset=utf-8"}}, {"method" : "POST", "url" : "https://endpoint/chat/threads/19%3Afd140860689b488d8b0a9be080e92317%40thread.v2/members", "query" : {"api-version" : "2020-09-21-preview2"}, "requestBody" : "{\"members\":[{\"id\":\"8:acs:a6b1db05-01f4-4539-95c4-d37fdd6d9a2d_00000007-e53e-a629-eef0-8b3a0d0042d0\"}]}", "status" : 207, "response" : "{\"multipleStatus\":[{\"id\":\"8:acs:a6b1db05-01f4-4539-95c4-d37fdd6d9a2d_00000007-e53e-a629-eef0-8b3a0d0042d0\",\"statusCode\":201,\"type\":\"ThreadMember\"}]}", "responseHeaders" : {"content-type" : "application/json; charset=utf-8"}}], "uniqueTestInfo" : {"uniqueName" : {}, "newDate" : {}}, "hash" : "e065e22d1460a516eff29fccfde9cdde"} | json_instruct | {"type": "object", "properties": {"recordings": {"type": "array", "items": {"type": "object", "properties": {"method": {"type": "string"}, "url": {"type": "string"}, "query": {"type": "object", "properties": {"api-version": {"type": "string"}}, "required": ["api-version"]}, "requestBody": {"type": "string"}, "status": {"type": "integer"}, "response": {"type": "string"}, "responseHeaders": {"type": "object", "properties": {"content-type": {"type": "string"}}, "required": ["content-type"]}}, "required": ["method", "url", "query", "requestBody", "status", "response", "responseHeaders"]}}, "uniqueTestInfo": {"type": "object", "properties": {"uniqueName": {"type": "object", "properties": {}, "required": []}, "newDate": {"type": "object", "properties": {}, "required": []}}, "required": ["uniqueName", "newDate"]}, "hash": {"type": "string"}}, "required": ["recordings", "uniqueTestInfo", "hash"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "array", "items": {"type": "object", "properties": {"year": {"type": "integer"}, "sex": {"type": "string"}, "n": {"type": "integer"}, "prop": {"type": "number"}}, "required": ["year", "sex", "n", "prop"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"year" : 1913, "sex" : "F", "n" : 6, "prop" : 9.16e-06}, {"year" : 1914, "sex" : "F", "n" : 5, "prop" : 6.28e-06}, {"year" : 1916, "sex" : "F", "n" : 6, "prop" : 5.53e-06}, {"year" : 1918, "sex" : "F", "n" : 10, "prop" : 8.32e-06}, {"year" : 1919, "sex" : "F", "n" : 6, "prop" : 5.11e-06}, {"year" : 1924, "sex" : "F", "n" : 9, "prop" : 6.95e-06}, {"year" : 1927, "sex" : "F", "n" : 5, "prop" : 4.04e-06}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"year": {"type": "integer"}, "sex": {"type": "string"}, "n": {"type": "integer"}, "prop": {"type": "number"}}, "required": ["year", "sex", "n", "prop"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"AB": {"type": "array", "items": {"type": "string"}}, "AW": {"type": "array", "items": {"type": "string"}}, "SZ": {"type": "string"}, "C": {"type": "string"}, "SOL": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}}, "required": ["AB", "AW", "SZ", "C", "SOL"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"AB" : ["qg", "qi", "oi", "pb", "nc", "kc"], "AW" : ["qc", "pd", "pf", "qf", "ph", "qk", "ok", "pq", "po"], "SZ" : "19", "C" : "Black to play", "SOL" : [["B", "pg", "", ""]]} | json_instruct | {"type": "object", "properties": {"AB": {"type": "array", "items": {"type": "string"}}, "AW": {"type": "array", "items": {"type": "string"}}, "SZ": {"type": "string"}, "C": {"type": "string"}, "SOL": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}}, "required": ["AB", "AW", "SZ", "C", "SOL"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"title": {"type": "string"}, "author": {"type": "string"}, "description": {"type": "string"}, "thumb": {"type": "string"}, "download": {"type": "string"}, "origin": {"type": "string"}}, "required": ["title", "author", "description", "thumb", "download", "origin"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"title" : "Celestine Lucross [KUROINU] - Reversible Campaign [\u30ea\u30d0\u30fc\u30b7\u30d6\u30eb\u30fb\u30ad\u30e3\u30f3\u30da\u30fc\u30f3]", "author" : "STALKERMMD", "description" : "PleaseundefinedsupportundefinedmyundefinedPatreon:undefined<aundefinedhref='https://www.patreon.com/STALKERMMD'>https://www.patreon.com/STALKERMMD</a>undefined", "thumb" : "//i.iwara.tv/sites/default/files/styles/thumbnail/public/video_embed_field_thumbnails/youtube/cZKSwtWMy6M.jpg?itok=x24kxU3B", "download" : "https://www.iwara.tv/api/video/yj4mpuemoio2oewg", "origin" : "https://www.iwara.tv/videos/yj4mpuemoio2oewg"} | json_instruct | {"type": "object", "properties": {"title": {"type": "string"}, "author": {"type": "string"}, "description": {"type": "string"}, "thumb": {"type": "string"}, "download": {"type": "string"}, "origin": {"type": "string"}}, "required": ["title", "author", "description", "thumb", "download", "origin"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"h": {"type": "array", "items": {"type": "object", "properties": {"d": {"type": "array", "items": {"type": "object", "properties": {"s": {"type": "array", "items": {"type": "string"}}, "f": {"type": "string"}}, "required": ["s", "f"]}}}, "required": ["d"]}}, "t": {"type": "string"}}, "required": ["h", "t"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"h" : [{"d" : [{"s" : ["`cemot~"], "f" : "\u9b5a\u920e\u3002"}]}], "t" : "tiked"} | json_instruct | {"type": "object", "properties": {"h": {"type": "array", "items": {"type": "object", "properties": {"d": {"type": "array", "items": {"type": "object", "properties": {"s": {"type": "array", "items": {"type": "string"}}, "f": {"type": "string"}}, "required": ["s", "f"]}}}, "required": ["d"]}}, "t": {"type": "string"}}, "required": ["h", "t"], "$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"}, "homepage": {"type": "string"}, "author": {"type": "string"}, "private": {"type": "boolean"}, "licence": {"type": "string"}, "scripts": {"type": "object", "properties": {"docs:dev": {"type": "string"}, "docs:build": {"type": "string"}, "docs:serve": {"type": "string"}}, "required": ["docs:dev", "docs:build", "docs:serve"]}, "dependencies": {"type": "object", "properties": {"vuepress": {"type": "string"}, "vuepress-plugin-medium-zoom": {"type": "string"}, "vuepress-plugin-redirect": {"type": "string"}}, "required": ["vuepress", "vuepress-plugin-medium-zoom", "vuepress-plugin-redirect"]}, "devDependencies": {"type": "object", "properties": {"@vuepress/plugin-back-to-top": {"type": "string"}, "@vuepress/plugin-pwa": {"type": "string"}, "babel-eslint": {"type": "string"}, "eslint": {"type": "string"}, "eslint-plugin-vue": {"type": "string"}, "vuepress-plugin-serve": {"type": "string"}}, "required": ["@vuepress/plugin-back-to-top", "@vuepress/plugin-pwa", "babel-eslint", "eslint", "eslint-plugin-vue", "vuepress-plugin-serve"]}, "engines": {"type": "object", "properties": {"node": {"type": "string"}, "npm": {"type": "string"}, "yarn": {"type": "string"}}, "required": ["node", "npm", "yarn"]}}, "required": ["name", "version", "description", "homepage", "author", "private", "licence", "scripts", "dependencies", "devDependencies", "engines"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "hyperion-docs", "version" : "1.0.0", "description" : "Hyperion Documentation", "homepage" : "https://www.hyperion-project.org", "author" : "brindosch", "private" : true, "licence" : "MIT", "scripts" : {"docs:dev" : "vuepress dev docs", "docs:build" : "vuepress build docs", "docs:serve" : "vuepress serve docs --build --open"}, "dependencies" : {"vuepress" : "^1.4.1", "vuepress-plugin-medium-zoom" : "^1.1.8", "vuepress-plugin-redirect" : "^1.2.3"}, "devDependencies" : {"@vuepress/plugin-back-to-top" : "^1.4.1", "@vuepress/plugin-pwa" : "^1.4.1", "babel-eslint" : "^10.1.0", "eslint" : "^6.8.0", "eslint-plugin-vue" : "^6.2.2", "vuepress-plugin-serve" : "^2.0.2"}, "engines" : {"node" : ">= 10.16.0", "npm" : ">= 5.6.0", "yarn" : ">= 1.19.0"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "homepage": {"type": "string"}, "author": {"type": "string"}, "private": {"type": "boolean"}, "licence": {"type": "string"}, "scripts": {"type": "object", "properties": {"docs:dev": {"type": "string"}, "docs:build": {"type": "string"}, "docs:serve": {"type": "string"}}, "required": ["docs:dev", "docs:build", "docs:serve"]}, "dependencies": {"type": "object", "properties": {"vuepress": {"type": "string"}, "vuepress-plugin-medium-zoom": {"type": "string"}, "vuepress-plugin-redirect": {"type": "string"}}, "required": ["vuepress", "vuepress-plugin-medium-zoom", "vuepress-plugin-redirect"]}, "devDependencies": {"type": "object", "properties": {"@vuepress/plugin-back-to-top": {"type": "string"}, "@vuepress/plugin-pwa": {"type": "string"}, "babel-eslint": {"type": "string"}, "eslint": {"type": "string"}, "eslint-plugin-vue": {"type": "string"}, "vuepress-plugin-serve": {"type": "string"}}, "required": ["@vuepress/plugin-back-to-top", "@vuepress/plugin-pwa", "babel-eslint", "eslint", "eslint-plugin-vue", "vuepress-plugin-serve"]}, "engines": {"type": "object", "properties": {"node": {"type": "string"}, "npm": {"type": "string"}, "yarn": {"type": "string"}}, "required": ["node", "npm", "yarn"]}}, "required": ["name", "version", "description", "homepage", "author", "private", "licence", "scripts", "dependencies", "devDependencies", "engines"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"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" : 27204, "cartId" : "0a034137-a82e-4687-a521-0d82e3285277", "preferredProducts" : [2689], "productReviews" : [{"productId" : 4168, "reviewText" : "talk about anticipation!", "reviewDate" : "2017-06-30T08:46:52.2580202+03:00"}, {"productId" : 673, "reviewText" : "My co-worker Skylar has one of these. He says it looks sweaty.", "reviewDate" : "2016-09-30T01:24:50.2932466+03:00"}, {"productId" : 3549, "reviewText" : "The box this comes in is 4 yard by 5 inch and weights 12 pound!", "reviewDate" : "2019-07-26T21:13:17.0916661+03:00"}, {"productId" : 1256, "reviewText" : "I tried to grab it but got bonbon all over it.", "reviewDate" : "2020-04-13T07:26:17.5297257+03:00"}, {"productId" : 248, "reviewText" : "My co-worker Merwin has one of these. He says it looks bubbly.", "reviewDate" : "2019-02-11T17:37:41.0647894+02: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": {"schema_version": {"type": "string"}, "id": {"type": "string"}, "modified": {"type": "string"}, "published": {"type": "string"}, "aliases": {"type": "array", "items": {"type": "string"}}, "details": {"type": "string"}, "severity": {"type": "array", "items": {}}, "affected": {"type": "array", "items": {}}, "references": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}}, "database_specific": {"type": "object", "properties": {"cwe_ids": {"type": "array", "items": {}}, "severity": {"type": "string"}, "github_reviewed": {"type": "boolean"}}, "required": ["cwe_ids", "severity", "github_reviewed"]}}, "required": ["schema_version", "id", "modified", "published", "aliases", "details", "severity", "affected", "references", "database_specific"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"schema_version" : "1.2.0", "id" : "GHSA-prr4-c7f2-m66w", "modified" : "2022-04-30T18:20:34Z", "published" : "2022-04-30T18:20:34Z", "aliases" : ["CVE-2002-1116"], "details" : "The \"View Bugs\" page (view_all_bug_page.php) in Mantis 0.17.4a and earlier includes summaries of private bugs for users that do not have access to any projects.", "severity" : [], "affected" : [], "references" : [{"type" : "ADVISORY", "url" : "https://nvd.nist.gov/vuln/detail/CVE-2002-1116"}, {"type" : "WEB", "url" : "https://exchange.xforce.ibmcloud.com/vulnerabilities/9955"}, {"type" : "WEB", "url" : "http://marc.info/?l=bugtraq&m=103014152320112&w=2"}, {"type" : "WEB", "url" : "http://www.debian.org/security/2002/dsa-161"}, {"type" : "WEB", "url" : "http://www.securityfocus.com/bid/5565"}], "database_specific" : {"cwe_ids" : [], "severity" : "HIGH", "github_reviewed" : false}} | json_instruct | {"type": "object", "properties": {"schema_version": {"type": "string"}, "id": {"type": "string"}, "modified": {"type": "string"}, "published": {"type": "string"}, "aliases": {"type": "array", "items": {"type": "string"}}, "details": {"type": "string"}, "severity": {"type": "array", "items": {}}, "affected": {"type": "array", "items": {}}, "references": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}}, "database_specific": {"type": "object", "properties": {"cwe_ids": {"type": "array", "items": {}}, "severity": {"type": "string"}, "github_reviewed": {"type": "boolean"}}, "required": ["cwe_ids", "severity", "github_reviewed"]}}, "required": ["schema_version", "id", "modified", "published", "aliases", "details", "severity", "affected", "references", "database_specific"], "$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" : [[[147.0, 37.333333333333336], [147.0, 38.0], [148.0, 38.0], [148.0, 37.333333333333336], [147.0, 37.333333333333336]]]}, "properties" : {"code" : 5647, "url" : "http://madefor.github.io/0410/api/v1/5647.geojson", "view" : "https://github.com/madefor/0410/blob/gh-pages/api/v1/5647.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#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"id": {"type": "integer"}, "source": {"type": "string"}, "verse_id": {"type": "integer"}, "verse_count": {"type": "integer"}, "reference": {"type": "string"}, "title": {"type": "string"}, "html": {"type": "string"}, "audit": {"type": "null"}}, "required": ["id", "source", "verse_id", "verse_count", "reference", "title", "html", "audit"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : 10977, "source" : "ellicott", "verse_id" : 17937, "verse_count" : 1, "reference" : "14:8", "title" : "", "html" : " <p> (8) Yea, the fir trees rejoice at thee.\u2014The tree has been identified (Carruthers, in Bible Educator, 4, 359) with the Aleppo pine (Pinus halepensis), which grows abundantly on the Lebanon range above the zone of the evergreen oaks. The LXX. often translates it by \u201ccypress,\u201d the Vulgate and Authorised version commonly by \u201cfir tree.\u201d Its wood was largely used in house and ship-building, but was less precious than the cedar (<a class=\"ref\">1 Kings 5:10; 1 Kings 6:15; 1 Kings 6:34</a>; <a class=\"isa\" verses=\"WzE4NDcxLDIxMTI3XQ==\">Isaiah 41:19; Ezekiel 27:5</a>). </p> \n <p>No feller is come up against us\u2014The literal and figurative senses melt into each other, the former perhaps being the more prominent. It was the boast of Assurbanipal and other Assyrian kings that wherever they conquered they cut down forests and left the land bare. (Comp. <a class=\"isa\" verses=\"WzE4Mzc3XQ==\">Isaiah 37:24</a>: Records of the Past, i. 86.) As the fir tree, the cedar, and the oak were the natural symbols of kingly rule (<a class=\"ref\">Jeremiah 22:7; Ezekiel 17:3; Ezekiel 31:3</a>), this devastation represented the triumph of the Chald\u00e6an king over other princes. On his downfall, the trees on the mountain, the kings and chieftains in their palaces, would alike rejoice. </p> ", "audit" : null} | json_instruct | {"type": "object", "properties": {"id": {"type": "integer"}, "source": {"type": "string"}, "verse_id": {"type": "integer"}, "verse_count": {"type": "integer"}, "reference": {"type": "string"}, "title": {"type": "string"}, "html": {"type": "string"}, "audit": {"type": "null"}}, "required": ["id", "source", "verse_id", "verse_count", "reference", "title", "html", "audit"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"authors": {"type": "array", "items": {"type": "object", "properties": {"author": {"type": "string"}}, "required": ["author"]}}, "doi": {"type": "string"}, "publication_date": {"type": "string"}, "id": {"type": "string"}, "url": {"type": "string"}, "source": {"type": "string"}, "source_url": {"type": "string"}, "licence": {"type": "string"}, "language": {"type": "string"}, "type": {"type": "string"}, "description": {"type": "string"}, "text": {"type": "string"}}, "required": ["authors", "doi", "publication_date", "id", "url", "source", "source_url", "licence", "language", "type", "description", "text"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"authors" : [{"author" : "Hanane Hadj Kacem"}, {"author" : " Ghiwlane Kharrasse"}, {"author" : " Tijani El Harroudi"}], "doi" : "10.11604/pamj.2014.19.230.4838", "publication_date" : "2014-10-30", "id" : "FR101211", "url" : "https://www.panafrican-med-journal.com/content/article/19/230/full/", "source" : "The Pan African Medical Journal", "source_url" : "https://www.panafrican-med-journal.com/", "licence" : "CC BY 4.0", "language" : "fr", "type" : "journal", "description" : "", "text" : "Il s'agit d'un patient \u00e2g\u00e9 de 45ans, admis aux urgences pour douleurs abdominales aigues associ\u00e9es \u00e0 des vomissements et un arr\u00eat de gaz et du transit depuis trois jours. Le patient n'a pas d'ant\u00e9c\u00e9dents m\u00e9dicaux ou chirurgicaux particuliers. L'examen clinique retrouve un abdomen augment\u00e9 de volume et sensible \u00e0 la palpation. La radiographie pulmonaire et l'abdomen sans pr\u00e9paration montrent une distension gr\u00ealique avec niveaux hydroa\u00e9riques associ\u00e9e \u00e0 des images a\u00e9riques peri-intestinales situ\u00e9es \u00e0 gauche. Un pneumop\u00e9ritoine est suspect\u00e9 et une TDM abdominale est r\u00e9alis\u00e9e confirmant la distension gr\u00ealique en amont d'une anse l\u00e9g\u00e8rement distendue renfermant de multiples formations kystiques pari\u00e9tales en \u00abgrappe de raisin \u00bb diffuses, certains kystes sont assez volumineux r\u00e9duisant la lumi\u00e8re de cette anse et expliquant le syndrome occlusif). Il n'y avait pas de pneumop\u00e9ritoine associ\u00e9.\nLe bilan biologique retrouve une hyperleucocytose et une hyponatr\u00e9mie. L'exploration chirurgicale d\u00e9couvere la pr\u00e9sence d'une distension gr\u00ealique en amont d'une pneumatose kystique au niveau de l'il\u00e9on \u00e0 10 cm de la valvule de Bauhin. Une r\u00e9section de 40 cm du gr\u00eale avec anastomose termino-terminale est r\u00e9alis\u00e9e. Les suites op\u00e9ratoires ont \u00e9t\u00e9 simples. L'examen anatomo-pathologique de la pi\u00e8ce op\u00e9ratoire a r\u00e9v\u00e9l\u00e9 la pr\u00e9sence d'une pneumatose kystique sans autre l\u00e9sion associ\u00e9e."} | json_instruct | {"type": "object", "properties": {"authors": {"type": "array", "items": {"type": "object", "properties": {"author": {"type": "string"}}, "required": ["author"]}}, "doi": {"type": "string"}, "publication_date": {"type": "string"}, "id": {"type": "string"}, "url": {"type": "string"}, "source": {"type": "string"}, "source_url": {"type": "string"}, "licence": {"type": "string"}, "language": {"type": "string"}, "type": {"type": "string"}, "description": {"type": "string"}, "text": {"type": "string"}}, "required": ["authors", "doi", "publication_date", "id", "url", "source", "source_url", "licence", "language", "type", "description", "text"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"description": {"type": "string"}, "number": {"type": "string"}, "class": {"type": "string"}}, "required": ["description", "number", "class"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"description" : "Dye, solid, corrosive, n.o.s. or Dye intermediate, solid, corrosive, n.o.s.", "number" : "3147", "class" : "8"} | json_instruct | {"type": "object", "properties": {"description": {"type": "string"}, "number": {"type": "string"}, "class": {"type": "string"}}, "required": ["description", "number", "class"], "$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": "string"}, "text": {"type": "string"}}, "required": ["id", "text"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"id" : "510113002", "text" : "\u5927\u5f2f\u8857\u9053"}, {"id" : "510113003", "text" : "\u5927\u540c\u8857\u9053"}, {"id" : "510113102", "text" : "\u5f25\u725f\u9547"}, {"id" : "510113104", "text" : "\u57ce\u53a2\u9547"}, {"id" : "510113106", "text" : "\u59da\u6e21\u9547"}, {"id" : "510113108", "text" : "\u6e05\u6cc9\u9547"}, {"id" : "510113111", "text" : "\u798f\u6d2a\u9547"}] | 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#"} |
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"]}, "author": {"type": "string"}, "license": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"grunt": {"type": "string"}, "grunt-cli": {"type": "string"}, "grunt-contrib-concat": {"type": "string"}, "grunt-contrib-copy": {"type": "string"}, "grunt-contrib-jshint": {"type": "string"}, "grunt-contrib-uglify": {"type": "string"}, "grunt-contrib-watch": {"type": "string"}, "grunt-karma": {"type": "string"}, "grunt-sass": {"type": "string"}, "grunt-touch": {"type": "string"}, "jasmine-core": {"type": "string"}, "karma": {"type": "string"}, "karma-coverage": {"type": "string"}, "karma-jasmine": {"type": "string"}, "karma-junit-reporter": {"type": "string"}, "karma-phantomjs-launcher": {"type": "string"}, "karma-sinon": {"type": "string"}, "matchdep": {"type": "string"}, "ng-annotate": {"type": "string"}, "phantomjs": {"type": "string"}, "sinon": {"type": "string"}}, "required": ["grunt", "grunt-cli", "grunt-contrib-concat", "grunt-contrib-copy", "grunt-contrib-jshint", "grunt-contrib-uglify", "grunt-contrib-watch", "grunt-karma", "grunt-sass", "grunt-touch", "jasmine-core", "karma", "karma-coverage", "karma-jasmine", "karma-junit-reporter", "karma-phantomjs-launcher", "karma-sinon", "matchdep", "ng-annotate", "phantomjs", "sinon"]}, "dependencies": {"type": "object", "properties": {"jquery": {"type": "string"}, "lodash": {"type": "string"}}, "required": ["jquery", "lodash"]}}, "required": ["name", "version", "description", "main", "scripts", "author", "license", "devDependencies", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "barebones-wordpress-plugin", "version" : "1.0.0", "description" : "Wordpress plug-in template using Maven and jQuery.", "main" : "index.js", "scripts" : {"test" : "echo \"Error: no test specified\" && exit 1"}, "author" : "Dan Watling", "license" : "Apache 2.0", "devDependencies" : {"grunt" : "^0.4.5", "grunt-cli" : "^0.1.13", "grunt-contrib-concat" : "^0.5.1", "grunt-contrib-copy" : "^0.8.1", "grunt-contrib-jshint" : "^0.11.3", "grunt-contrib-uglify" : "^0.9.2", "grunt-contrib-watch" : "^0.6.1", "grunt-karma" : "^0.12.1", "grunt-sass" : "1.1.0-beta", "grunt-touch" : "^0.1.0", "jasmine-core" : "^2.4.1", "karma" : "^0.13.21", "karma-coverage" : "^0.5.4", "karma-jasmine" : "^0.3.7", "karma-junit-reporter" : "^0.3.4", "karma-phantomjs-launcher" : "^0.2.3", "karma-sinon" : "^1.0.4", "matchdep" : "^0.3.0", "ng-annotate" : "^1.2.1", "phantomjs" : "^2.1.3", "sinon" : "^1.17.3"}, "dependencies" : {"jquery" : "2.2.0", "lodash" : "4.5.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"]}, "author": {"type": "string"}, "license": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"grunt": {"type": "string"}, "grunt-cli": {"type": "string"}, "grunt-contrib-concat": {"type": "string"}, "grunt-contrib-copy": {"type": "string"}, "grunt-contrib-jshint": {"type": "string"}, "grunt-contrib-uglify": {"type": "string"}, "grunt-contrib-watch": {"type": "string"}, "grunt-karma": {"type": "string"}, "grunt-sass": {"type": "string"}, "grunt-touch": {"type": "string"}, "jasmine-core": {"type": "string"}, "karma": {"type": "string"}, "karma-coverage": {"type": "string"}, "karma-jasmine": {"type": "string"}, "karma-junit-reporter": {"type": "string"}, "karma-phantomjs-launcher": {"type": "string"}, "karma-sinon": {"type": "string"}, "matchdep": {"type": "string"}, "ng-annotate": {"type": "string"}, "phantomjs": {"type": "string"}, "sinon": {"type": "string"}}, "required": ["grunt", "grunt-cli", "grunt-contrib-concat", "grunt-contrib-copy", "grunt-contrib-jshint", "grunt-contrib-uglify", "grunt-contrib-watch", "grunt-karma", "grunt-sass", "grunt-touch", "jasmine-core", "karma", "karma-coverage", "karma-jasmine", "karma-junit-reporter", "karma-phantomjs-launcher", "karma-sinon", "matchdep", "ng-annotate", "phantomjs", "sinon"]}, "dependencies": {"type": "object", "properties": {"jquery": {"type": "string"}, "lodash": {"type": "string"}}, "required": ["jquery", "lodash"]}}, "required": ["name", "version", "description", "main", "scripts", "author", "license", "devDependencies", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"urls": {"type": "array", "items": {"type": "object", "properties": {"location": {"type": "string"}}, "required": ["location"]}}}, "required": ["urls"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"urls" : [{"location" : "https://apps.dtic.mil/docs/citations/AD1001411"}]} | json_instruct | {"type": "object", "properties": {"urls": {"type": "array", "items": {"type": "object", "properties": {"location": {"type": "string"}}, "required": ["location"]}}}, "required": ["urls"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"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" : "0x96b6344b33639632d5d471b52cca0bee1e1a87d0c7b925b244d203f54b7379fb", "parentHash" : "0xefcb5680cfcb6258025079d882a2275bbc091df1f44e8caca280569ddb48202e", "number" : 31088, "timestamp" : 1438668669, "nonce" : "0xaeb6c53331732b3a", "difficulty" : 1189446723601, "gasLimit" : {"_hex" : "0x1388"}, "gasUsed" : {"_hex" : "0x0"}, "miner" : "0x88D74a59454F6cF3B51ef6b9136AFb6b9D405A88", "extraData" : "0x476574682f76312e302e302d66633739643332642f6c696e75782f676f312e34", "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#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"word" : "pipy", "definition" : "Like a pipe; hollow-stemmed. Keats."} | json_instruct | {"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"chef_type": {"type": "string"}, "description": {"type": "string"}, "name": {"type": "string"}, "env_run_lists": {"type": "object", "properties": {}, "required": []}, "run_list": {"type": "array", "items": {"type": "string"}}, "default_attributes": {"type": "object", "properties": {"postgresql": {"type": "object", "properties": {"password": {"type": "object", "properties": {"postgres": {"type": "string"}}, "required": ["postgres"]}}, "required": ["password"]}}, "required": ["postgresql"]}, "override_attributes": {"type": "object", "properties": {}, "required": []}, "json_class": {"type": "string"}}, "required": ["chef_type", "description", "name", "env_run_lists", "run_list", "default_attributes", "override_attributes", "json_class"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"chef_type" : "role", "description" : "Runs a development version of pythondotorg", "name" : "python-dev-box", "env_run_lists" : {}, "run_list" : ["recipe[apt]", "recipe[pythondotorg::locale]", "recipe[build-essential]", "recipe[python]", "recipe[ruby::1.9.1]", "recipe[postgresql::client]", "recipe[postgresql::server]", "recipe[git]", "recipe[mercurial]", "recipe[pythondotorg::db]", "recipe[pythondotorg::prereq]", "recipe[pythondotorg::project]"], "default_attributes" : {"postgresql" : {"password" : {"postgres" : "pydotorg"}}}, "override_attributes" : {}, "json_class" : "Chef::Role"} | json_instruct | {"type": "object", "properties": {"chef_type": {"type": "string"}, "description": {"type": "string"}, "name": {"type": "string"}, "env_run_lists": {"type": "object", "properties": {}, "required": []}, "run_list": {"type": "array", "items": {"type": "string"}}, "default_attributes": {"type": "object", "properties": {"postgresql": {"type": "object", "properties": {"password": {"type": "object", "properties": {"postgres": {"type": "string"}}, "required": ["postgres"]}}, "required": ["password"]}}, "required": ["postgresql"]}, "override_attributes": {"type": "object", "properties": {}, "required": []}, "json_class": {"type": "string"}}, "required": ["chef_type", "description", "name", "env_run_lists", "run_list", "default_attributes", "override_attributes", "json_class"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"extends": {"type": "string"}, "compilerOptions": {"type": "object", "properties": {"lib": {"type": "array", "items": {"type": "string"}}, "module": {"type": "string"}, "moduleResolution": {"type": "string"}, "newLine": {"type": "string"}, "rootDir": {"type": "string"}, "target": {"type": "string"}}, "required": ["lib", "module", "moduleResolution", "newLine", "rootDir", "target"]}, "files": {"type": "array", "items": {"type": "string"}}}, "required": ["extends", "compilerOptions", "files"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"extends" : "@tsconfig/recommended/tsconfig.json", "compilerOptions" : {"lib" : ["DOM", "ES2015"], "module" : "ESNext", "moduleResolution" : "Node", "newLine" : "lf", "rootDir" : ".", "target" : "ES5"}, "files" : ["index.ts"]} | json_instruct | {"type": "object", "properties": {"extends": {"type": "string"}, "compilerOptions": {"type": "object", "properties": {"lib": {"type": "array", "items": {"type": "string"}}, "module": {"type": "string"}, "moduleResolution": {"type": "string"}, "newLine": {"type": "string"}, "rootDir": {"type": "string"}, "target": {"type": "string"}}, "required": ["lib", "module", "moduleResolution", "newLine", "rootDir", "target"]}, "files": {"type": "array", "items": {"type": "string"}}}, "required": ["extends", "compilerOptions", "files"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "repository": {"type": "string"}, "logo": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "description", "repository", "logo", "keywords"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "JSON Remote Encode Utility", "description" : "Extract data from any kind of Web Service and import it into Google Spreadsheet", "repository" : "https://github.com/javanile/json", "logo" : "https://github.com/javanile/xdata/raw/master/public/xdata.png", "keywords" : ["vtiger", "crm", "propan"]} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "repository": {"type": "string"}, "logo": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "description", "repository", "logo", "keywords"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"miner": {"type": "integer"}, "name": {"type": "string"}, "columnName": {"type": "string"}, "newPreprocessing": {"type": "object", "properties": {"name": {"type": "string"}, "type": {"type": "string"}, "bins": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "values": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "values"]}}}, "required": ["name", "type", "bins"]}}, "required": ["miner", "name", "columnName", "newPreprocessing"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"miner" : 0, "name" : "new attribute name", "columnName" : "data column name", "newPreprocessing" : {"name" : "preprocessing name (optional)", "type" : "nominalEnumeration", "bins" : [{"name" : "group1", "values" : ["value1"]}, {"name" : "group2", "values" : ["value2", "value3"]}]}} | json_instruct | {"type": "object", "properties": {"miner": {"type": "integer"}, "name": {"type": "string"}, "columnName": {"type": "string"}, "newPreprocessing": {"type": "object", "properties": {"name": {"type": "string"}, "type": {"type": "string"}, "bins": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "values": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "values"]}}}, "required": ["name", "type", "bins"]}}, "required": ["miner", "name", "columnName", "newPreprocessing"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"name": {"type": "string"}, "displayName": {"type": "string"}, "description": {"type": "string"}, "license": {"type": "string"}, "version": {"type": "string"}, "publisher": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "engines": {"type": "object", "properties": {"vscode": {"type": "string"}}, "required": ["vscode"]}, "categories": {"type": "array", "items": {"type": "string"}}, "contributes": {"type": "object", "properties": {"grammars": {"type": "array", "items": {"type": "object", "properties": {"scopeName": {"type": "string"}, "path": {"type": "string"}, "injectTo": {"type": "array", "items": {"type": "string"}}}, "required": ["scopeName", "path", "injectTo"]}}}, "required": ["grammars"]}}, "required": ["name", "displayName", "description", "license", "version", "publisher", "repository", "engines", "categories", "contributes"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "elixir-tiny-ls", "displayName" : "ElixirTinyLS", "description" : "Additional Elixir language support for markdown code block and Croma", "license" : "MIT", "version" : "0.2.1", "publisher" : "irisTa56", "repository" : {"type" : "git", "url" : "https://github.com/irisTa56/elixir-tiny-ls.git"}, "engines" : {"vscode" : "^1.35.0"}, "categories" : ["Programming Languages"], "contributes" : {"grammars" : [{"scopeName" : "source.elixir-croma", "path" : "./syntaxes/elixir-croma.json", "injectTo" : ["source.elixir"]}, {"scopeName" : "markdown.elixir.codeblock", "path" : "./syntaxes/codeblock.json", "injectTo" : ["text.html.markdown"], "embeddedLanguages" : {"meta.embedded.block.elixir" : "source.elixir"}}]}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "displayName": {"type": "string"}, "description": {"type": "string"}, "license": {"type": "string"}, "version": {"type": "string"}, "publisher": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "engines": {"type": "object", "properties": {"vscode": {"type": "string"}}, "required": ["vscode"]}, "categories": {"type": "array", "items": {"type": "string"}}, "contributes": {"type": "object", "properties": {"grammars": {"type": "array", "items": {"type": "object", "properties": {"scopeName": {"type": "string"}, "path": {"type": "string"}, "injectTo": {"type": "array", "items": {"type": "string"}}}, "required": ["scopeName", "path", "injectTo"]}}}, "required": ["grammars"]}}, "required": ["name", "displayName", "description", "license", "version", "publisher", "repository", "engines", "categories", "contributes"], "$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"}, "slug": {"type": "string"}, "description": {"type": "string"}, "url": {"type": "string"}, "startup": {"type": "string"}, "boot": {"type": "string"}, "audio": {"type": "boolean"}, "options": {"type": "object", "properties": {"host": {"type": "string"}, "hostID": {"type": "string"}}, "required": ["host", "hostID"]}, "schema": {"type": "object", "properties": {"host": {"type": "string"}, "hostID": {"type": "string"}}, "required": ["host", "hostID"]}, "arch": {"type": "array", "items": {"type": "string"}}, "image": {"type": "string"}}, "required": ["name", "version", "slug", "description", "url", "startup", "boot", "audio", "options", "schema", "arch", "image"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "Snapclient", "version" : "0.0.7", "slug" : "snapclient", "description" : "Snapcast - Synchronous audio player", "url" : "https://github.com/amatashkin/hassio-addons/tree/master/snapclient", "startup" : "system", "boot" : "auto", "audio" : true, "options" : {"host" : "homeassistant", "hostID" : "HomeAssistant"}, "schema" : {"host" : "str?", "hostID" : "str?"}, "arch" : ["amd64"], "image" : "amatashkin/hassio-snapclient-{arch}"} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "slug": {"type": "string"}, "description": {"type": "string"}, "url": {"type": "string"}, "startup": {"type": "string"}, "boot": {"type": "string"}, "audio": {"type": "boolean"}, "options": {"type": "object", "properties": {"host": {"type": "string"}, "hostID": {"type": "string"}}, "required": ["host", "hostID"]}, "schema": {"type": "object", "properties": {"host": {"type": "string"}, "hostID": {"type": "string"}}, "required": ["host", "hostID"]}, "arch": {"type": "array", "items": {"type": "string"}}, "image": {"type": "string"}}, "required": ["name", "version", "slug", "description", "url", "startup", "boot", "audio", "options", "schema", "arch", "image"], "$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.