input stringlengths 159 2.05k | output stringlengths 5 10.3k | task stringclasses 1
value | schema stringlengths 100 1.99k |
|---|---|---|---|
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"title": {"type": "string"}, "cells": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "language": {"type": "string"}, "data": {"type": "string"}}, "required": ["type", "language", "data"]}}}, "required": ["title", "cells"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"title" : "Theoretical Worksheet Problem 5", "cells" : [{"type" : "latex", "language" : "latex", "data" : "Q: Show that the set $V = \\Bigl\\{ \\matrixstart a & b \\\\ c & d \\matrixend : a + b = 0 \\land c - d = 0 \\Bigr\\}$ is a subspace of $\\mathbb{R}^{2 \\times 2}$.\n\nA: Recall that the definition of a subspace requires three componenents:\n(a) $0 \\in V$.\n(b) $u,v \\in V \\implies (u+v) \\in V$.\n(c) $r \\in \\mathbb{R}, u \\in V \\implies ru \\in V$.\n\nWorking in order,\n(a) Clearly $a = b = c = d = 0$ satisfies the restrictions on the set ($0 + 0 = 0 - 0 = 0$) and is the $0$ element of $\\mathbb{R}^{2 \\times 2}$.\n\n$\\therefore 0 \\in V, \\checkmark$.\n\n(b) Let $u,v \\in V = \\matrixstart a_u & b_u \\\\ c_u & d_u \\matrixend, \\matrixstart a_u & b_v \\\\ c_v & d_v \\matrixend$, respectively.\n\nThen $u + v = \\matrixstart a_u + a_v & b_u + b_v \\\\ c_u + c_v & d_u + d_v \\matrixend$.\n\nIf $u + v$ satisfies the conditions on the set $V$, it will be in $V$.\n$(a_u + a_v) + (b_u + b_v) = (a_u + b_u) + (a_v + b_v) = 0 + 0 = 0$.\n$(c_u + c_v) - (d_u + d_v) = (c_u - d_u) + (c_v - d_v) = 0 + 0 = 0$.\n\n$\\therefore u+v \\in V, \\checkmark$.\n\n(c) $r$ is a scalar in $\\mathbb{R}, u \\in V$.\n\nThen $ru = \\matrixstart ra & rb \\\\ rc & rd \\matrixend$.\n\n$ra + rb = r(a+b) = r0 = 0$.\n$rc - rd = r(c-d) = r0 = 0$.\n\n$\\therefore ru \\in V, \\checkmark, \\square$.\n\nI have neither given nor recieved any aid on this assignment: David Ben Knoble.\nI verify that this is my own intellectual work: David Ben Knoble."}]} | json_instruct | {"type": "object", "properties": {"title": {"type": "string"}, "cells": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "language": {"type": "string"}, "data": {"type": "string"}}, "required": ["type", "language", "data"]}}}, "required": ["title", "cells"], "$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"}, "tel": {"type": "string"}, "fax": {"type": "string"}, "licensee": {"type": "string"}, "licensePeriod": {"type": "string"}, "licenseClass": {"type": "string"}, "hciCode": {"type": "string"}, "address": {"type": "string"}, "doctorInCharge": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "qualifications": {"type": "array", "items": {"type": "string"}}, "specialties": {"type": "array", "items": {}}}, "required": ["name", "qualifications", "specialties"]}}, "detailedServices": {"type": "object", "properties": {"General Dental": {"type": "boolean"}, "Specialist Dental": {"type": "array", "items": {"type": "string"}}}, "required": ["General Dental", "Specialist Dental"]}, "operatingHours": {"type": "object", "properties": {"Monday to Friday": {"type": "string"}, "Saturday": {"type": "string"}, "Sunday and Public Holiday": {"type": "string"}}, "required": ["Monday to Friday", "Saturday", "Sunday and Public Holiday"]}}, "required": ["name", "tel", "fax", "licensee", "licensePeriod", "licenseClass", "hciCode", "address", "doctorInCharge", "detailedServices", "operatingHours"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "T32 DENTAL CENTRE AT FINANCIAL DISTICT", "tel" : "63851788", "fax" : "67338100", "licensee" : "T32 DENTAL CENTRE AT FINANCIAL DISTRICT PTE. LTD.", "licensePeriod" : "02/09/2015 to 01/09/2017", "licenseClass" : "[ 2 Years ( 2A ) ]", "hciCode" : "15D0299", "address" : "138 MARKET STREET, CAPITAGREEN, #02-01 Singapore 048946", "doctorInCharge" : [{"name" : "NARAYANASAMY SIVANESAN", "qualifications" : ["BDS (National University of Singapore, Singapore) 1999"], "specialties" : []}], "detailedServices" : {"General Dental" : true, "Specialist Dental" : ["Dental Public Health", "Endodontics", "Oral & Maxillo-Facial Surgery", "Orthodontics", "Paediatric Dentistry", "Periodontology", "Prosthodontics"]}, "operatingHours" : {"Monday to Friday" : "08:00 am to 07:00 pm", "Saturday" : "09:00 am to 01:00 pm", "Sunday and Public Holiday" : "Closed"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "tel": {"type": "string"}, "fax": {"type": "string"}, "licensee": {"type": "string"}, "licensePeriod": {"type": "string"}, "licenseClass": {"type": "string"}, "hciCode": {"type": "string"}, "address": {"type": "string"}, "doctorInCharge": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "qualifications": {"type": "array", "items": {"type": "string"}}, "specialties": {"type": "array", "items": {}}}, "required": ["name", "qualifications", "specialties"]}}, "detailedServices": {"type": "object", "properties": {"General Dental": {"type": "boolean"}, "Specialist Dental": {"type": "array", "items": {"type": "string"}}}, "required": ["General Dental", "Specialist Dental"]}, "operatingHours": {"type": "object", "properties": {"Monday to Friday": {"type": "string"}, "Saturday": {"type": "string"}, "Sunday and Public Holiday": {"type": "string"}}, "required": ["Monday to Friday", "Saturday", "Sunday and Public Holiday"]}}, "required": ["name", "tel", "fax", "licensee", "licensePeriod", "licenseClass", "hciCode", "address", "doctorInCharge", "detailedServices", "operatingHours"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"private": {"type": "boolean"}, "name": {"type": "string"}, "author": {"type": "string"}, "version": {"type": "string"}, "scripts": {"type": "object", "properties": {"build": {"type": "string"}, "watch": {"type": "string"}, "dev": {"type": "string"}, "start": {"type": "string"}}, "required": ["build", "watch", "dev", "start"]}, "devDependencies": {"type": "object", "properties": {"@rollup/plugin-commonjs": {"type": "string"}, "@rollup/plugin-node-resolve": {"type": "string"}, "@wasm-tool/rollup-plugin-rust": {"type": "string"}, "npm-run-all": {"type": "string"}, "rollup": {"type": "string"}, "rollup-plugin-glslify": {"type": "string"}, "rollup-plugin-terser": {"type": "string"}, "rollup-plugin-uglify": {"type": "string"}}, "required": ["@rollup/plugin-commonjs", "@rollup/plugin-node-resolve", "@wasm-tool/rollup-plugin-rust", "npm-run-all", "rollup", "rollup-plugin-glslify", "rollup-plugin-terser", "rollup-plugin-uglify"]}}, "required": ["private", "name", "author", "version", "scripts", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"private" : true, "name" : "xsthree", "author" : "monsieurbadia <iammonsieurbadia@gmail.com>", "version" : "0.1.0", "scripts" : {"build" : "rollup -c", "watch" : "rollup -c -w", "dev" : "npm-run-all --parallel start watch", "start" : "serve examples"}, "devDependencies" : {"@rollup/plugin-commonjs" : "^19.0.0", "@rollup/plugin-node-resolve" : "^13.0.0", "@wasm-tool/rollup-plugin-rust" : "^1.0.0", "npm-run-all" : "^4.1.5", "rollup" : "^2.50.2", "rollup-plugin-glslify" : "^1.2.0", "rollup-plugin-terser" : "^7.0.2", "rollup-plugin-uglify" : "^6.0.4"}} | json_instruct | {"type": "object", "properties": {"private": {"type": "boolean"}, "name": {"type": "string"}, "author": {"type": "string"}, "version": {"type": "string"}, "scripts": {"type": "object", "properties": {"build": {"type": "string"}, "watch": {"type": "string"}, "dev": {"type": "string"}, "start": {"type": "string"}}, "required": ["build", "watch", "dev", "start"]}, "devDependencies": {"type": "object", "properties": {"@rollup/plugin-commonjs": {"type": "string"}, "@rollup/plugin-node-resolve": {"type": "string"}, "@wasm-tool/rollup-plugin-rust": {"type": "string"}, "npm-run-all": {"type": "string"}, "rollup": {"type": "string"}, "rollup-plugin-glslify": {"type": "string"}, "rollup-plugin-terser": {"type": "string"}, "rollup-plugin-uglify": {"type": "string"}}, "required": ["@rollup/plugin-commonjs", "@rollup/plugin-node-resolve", "@wasm-tool/rollup-plugin-rust", "npm-run-all", "rollup", "rollup-plugin-glslify", "rollup-plugin-terser", "rollup-plugin-uglify"]}}, "required": ["private", "name", "author", "version", "scripts", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"name": {"type": "string"}, "private": {"type": "boolean"}, "dependencies": {"type": "object", "properties": {"@rails/actioncable": {"type": "string"}, "@rails/ujs": {"type": "string"}, "@rails/webpacker": {"type": "string"}, "date-fns": {"type": "string"}, "formdata-polyfill": {"type": "string"}, "jquery": {"type": "string"}}, "required": ["@rails/actioncable", "@rails/ujs", "@rails/webpacker", "date-fns", "formdata-polyfill", "jquery"]}, "version": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"webpack-dev-server": {"type": "string"}}, "required": ["webpack-dev-server"]}}, "required": ["name", "private", "dependencies", "version", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "mpp_jquery_crud", "private" : true, "dependencies" : {"@rails/actioncable" : "^6.0.0", "@rails/ujs" : "^6.0.0", "@rails/webpacker" : "4.2.2", "date-fns" : "^2.11.0", "formdata-polyfill" : "^3.0.19", "jquery" : "^3.4.1"}, "version" : "0.1.0", "devDependencies" : {"webpack-dev-server" : "^3.10.3"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "private": {"type": "boolean"}, "dependencies": {"type": "object", "properties": {"@rails/actioncable": {"type": "string"}, "@rails/ujs": {"type": "string"}, "@rails/webpacker": {"type": "string"}, "date-fns": {"type": "string"}, "formdata-polyfill": {"type": "string"}, "jquery": {"type": "string"}}, "required": ["@rails/actioncable", "@rails/ujs", "@rails/webpacker", "date-fns", "formdata-polyfill", "jquery"]}, "version": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"webpack-dev-server": {"type": "string"}}, "required": ["webpack-dev-server"]}}, "required": ["name", "private", "dependencies", "version", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"type": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "number"}}}, "required": ["type", "coordinates"]}, "properties": {"type": "object", "properties": {"listed-building-grade": {"type": "string"}, "documentation-url": {"type": "string"}, "point": {"type": "string"}, "name": {"type": "string"}, "listed-building": {"type": "string"}, "start-date": {"type": "string"}, "slug": {"type": "string"}, "entry-date": {"type": "string"}}, "required": ["listed-building-grade", "documentation-url", "point", "name", "listed-building", "start-date", "slug", "entry-date"]}}, "required": ["type", "geometry", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"type" : "Feature", "geometry" : {"type" : "Point", "coordinates" : [-1.799564, 51.06383]}, "properties" : {"listed-building-grade" : "I", "documentation-url" : "https://historicengland.org.uk/listing/the-list/list-entry/1023629", "point" : "POINT (-1.799564 51.063830)", "name" : "RETAINING WALL, SCREEN RAILINGS, PIERS AND GATES TO FRONT GARDEN OF NO 68", "listed-building" : "1023629", "start-date" : "1972-10-12", "slug" : "/listed-building/1023629", "entry-date" : "2021-05-28"}} | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "number"}}}, "required": ["type", "coordinates"]}, "properties": {"type": "object", "properties": {"listed-building-grade": {"type": "string"}, "documentation-url": {"type": "string"}, "point": {"type": "string"}, "name": {"type": "string"}, "listed-building": {"type": "string"}, "start-date": {"type": "string"}, "slug": {"type": "string"}, "entry-date": {"type": "string"}}, "required": ["listed-building-grade", "documentation-url", "point", "name", "listed-building", "start-date", "slug", "entry-date"]}}, "required": ["type", "geometry", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"out": {"type": "array", "items": {"type": "string"}}}, "required": ["out"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"out" : ["/bin/ytt"]} | json_instruct | {"type": "object", "properties": {"out": {"type": "array", "items": {"type": "string"}}}, "required": ["out"], "$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": {"type": "string"}, "text": {"type": "string"}}, "required": ["id", "text"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"id" : "210504001", "text" : "\u91d1\u5c71\u8857\u9053"}, {"id" : "210504002", "text" : "\u5317\u5730\u8857\u9053"}, {"id" : "210504004", "text" : "\u9ad8\u5cea\u8857\u9053"}, {"id" : "210504005", "text" : "\u660e\u5c71\u8857\u9053"}, {"id" : "210504007", "text" : "\u4e1c\u5174\u8857\u9053"}, {"id" : "210504008", "text" : "\u65b0\u660e\u8857\u9053"}, {"id" : "210504009", "text" : "\u725b\u5fc3\u53f0\u8857\u9053"}, {"id" : "210504010", "text" : "\u5367\u9f99\u8857\u9053"}, {"id" : "210504011", "text" : "\u9ad8\u53f0\u5b50\u8857\u9053\u529e\u4e8b\u5904"}] | 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#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"word" : "moustache", "definition" : "Mustache."} | json_instruct | {"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"tape": {"type": "string"}}, "required": ["tape"]}}, "required": ["name", "version", "description", "main", "scripts", "repository", "keywords", "author", "license", "bugs", "homepage", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "se-est", "version" : "0.0.0", "description" : "Standard error of the estimate", "main" : "index.js", "scripts" : {"test" : "tape test.js"}, "repository" : {"type" : "git", "url" : "git+https://github.com/Balou9/se-est.git"}, "keywords" : ["standard", "error", "estimate"], "author" : "Emmanuel Owosekun", "license" : "MIT", "bugs" : {"url" : "https://github.com/Balou9/se-est/issues"}, "homepage" : "https://github.com/Balou9/se-est#readme", "devDependencies" : {"tape" : "^4.9.0"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"tape": {"type": "string"}}, "required": ["tape"]}}, "required": ["name", "version", "description", "main", "scripts", "repository", "keywords", "author", "license", "bugs", "homepage", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "description": {"type": "string"}, "user": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "email": {"type": "string"}, "paypal_email": {"type": "null"}, "homepage": {"type": "null"}, "about": {"type": "null"}, "license": {"type": "null"}}, "required": ["id", "name", "email", "paypal_email", "homepage", "about", "license"]}, "updated": {"type": "string"}, "weekly_install_count": {"type": "integer"}, "total_install_count": {"type": "integer"}, "rating": {"type": "null"}, "after_screenshot_name": {"type": "string"}, "obsoleting_style_id": {"type": "null"}, "obsoleting_style_name": {"type": "null"}, "obsolete": {"type": "integer"}, "admin_delete_reason_id": {"type": "null"}, "obsoletion_message": {"type": "null"}, "screenshots": {"type": "null"}, "license": {"type": "string"}, "created": {"type": "string"}, "category": {"type": "string"}, "raw_subcategory": {"type": "string"}, "subcategory": {"type": "string"}, "additional_info": {"type": "string"}, "style_tags": {"type": "array", "items": {}}, "css": {"type": "string"}, "discussions": {"type": "array", "items": {}}, "discussionsCount": {"type": "integer"}, "commentsCount": {"type": "integer"}, "userjs_url": {"type": "string"}, "style_settings": {"type": "array", "items": {}}}, "required": ["id", "name", "description", "user", "updated", "weekly_install_count", "total_install_count", "rating", "after_screenshot_name", "obsoleting_style_id", "obsoleting_style_name", "obsolete", "admin_delete_reason_id", "obsoletion_message", "screenshots", "license", "created", "category", "raw_subcategory", "subcategory", "additional_info", "style_tags", "css", "discussions", "discussionsCount", "commentsCount", "userjs_url", "style_settings"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : 109966, "name" : "Poofify", "description" : "POOF", "user" : {"id" : 283833, "name" : "Kevin van der Velden", "email" : "redacted", "paypal_email" : null, "homepage" : null, "about" : null, "license" : null}, "updated" : "2015-01-31T22:50:58.000Z", "weekly_install_count" : 0, "total_install_count" : 41, "rating" : null, "after_screenshot_name" : "https://userstyles.org/auto_style_screenshots/109966-after.png?r=1527768388", "obsoleting_style_id" : null, "obsoleting_style_name" : null, "obsolete" : 0, "admin_delete_reason_id" : null, "obsoletion_message" : null, "screenshots" : null, "license" : "publicdomain", "created" : "2015-01-31T22:50:58.000Z", "category" : "site", "raw_subcategory" : "stackexchange", "subcategory" : "stackexchange", "additional_info" : "Changes (removed) into (poof) at request of @Unionhawk.\r\n\r\nNot to be used by any internet oracles.", "style_tags" : [], "css" : "@-moz-document url-prefix(\"http://chat.stackexchange.com/rooms/\") {\r\nspan.deleted {\r\n font-size:0;\r\n}\r\nspan.deleted::after {\r\n content: \"(poof)\";\r\n font-size: 12px;\r\n}\r\n}", "discussions" : [], "discussionsCount" : 0, "commentsCount" : 0, "userjs_url" : "/styles/userjs/109966/poofify.user.js", "style_settings" : []} | json_instruct | {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "description": {"type": "string"}, "user": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "email": {"type": "string"}, "paypal_email": {"type": "null"}, "homepage": {"type": "null"}, "about": {"type": "null"}, "license": {"type": "null"}}, "required": ["id", "name", "email", "paypal_email", "homepage", "about", "license"]}, "updated": {"type": "string"}, "weekly_install_count": {"type": "integer"}, "total_install_count": {"type": "integer"}, "rating": {"type": "null"}, "after_screenshot_name": {"type": "string"}, "obsoleting_style_id": {"type": "null"}, "obsoleting_style_name": {"type": "null"}, "obsolete": {"type": "integer"}, "admin_delete_reason_id": {"type": "null"}, "obsoletion_message": {"type": "null"}, "screenshots": {"type": "null"}, "license": {"type": "string"}, "created": {"type": "string"}, "category": {"type": "string"}, "raw_subcategory": {"type": "string"}, "subcategory": {"type": "string"}, "additional_info": {"type": "string"}, "style_tags": {"type": "array", "items": {}}, "css": {"type": "string"}, "discussions": {"type": "array", "items": {}}, "discussionsCount": {"type": "integer"}, "commentsCount": {"type": "integer"}, "userjs_url": {"type": "string"}, "style_settings": {"type": "array", "items": {}}}, "required": ["id", "name", "description", "user", "updated", "weekly_install_count", "total_install_count", "rating", "after_screenshot_name", "obsoleting_style_id", "obsoleting_style_name", "obsolete", "admin_delete_reason_id", "obsoletion_message", "screenshots", "license", "created", "category", "raw_subcategory", "subcategory", "additional_info", "style_tags", "css", "discussions", "discussionsCount", "commentsCount", "userjs_url", "style_settings"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"oid": {"type": "string"}, "hafta": {"type": "integer"}, "buyukIkramiyeKazananIl": {"type": "string"}, "cekilisTarihi": {"type": "string"}, "cekilisTuru": {"type": "string"}, "rakamlar": {"type": "string"}, "rakamlarNumaraSirasi": {"type": "string"}, "devretti": {"type": "boolean"}, "devirSayisi": {"type": "integer"}, "bilenKisiler": {"type": "array", "items": {"type": "object", "properties": {"oid": {"type": "string"}, "kisiBasinaDusenIkramiye": {"type": "number"}, "kisiSayisi": {"type": "integer"}, "tur": {"type": "string"}}, "required": ["oid", "kisiBasinaDusenIkramiye", "kisiSayisi", "tur"]}}, "buyukIkrKazananIlIlceler": {"type": "array", "items": {}}}, "required": ["oid", "hafta", "buyukIkramiyeKazananIl", "cekilisTarihi", "cekilisTuru", "rakamlar", "rakamlarNumaraSirasi", "devretti", "devirSayisi", "bilenKisiler", "buyukIkrKazananIlIlceler"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"oid" : "on_2007-02-12", "hafta" : 236, "buyukIkramiyeKazananIl" : "", "cekilisTarihi" : "12/02/2007", "cekilisTuru" : "ON_NUMARA", "rakamlar" : "01#02#03#04#08#13#19#27#35#38#45#46#47#50#60#61#62#65#68#73#75#76", "rakamlarNumaraSirasi" : "1 - 2 - 3 - 4 - 8 - 13 - 19 - 27 - 35 - 38 - 45 - 46 - 47 - 50 - 60 - 61 - 62 - 65 - 68 - 73 - 75 - 76", "devretti" : true, "devirSayisi" : 0, "bilenKisiler" : [{"oid" : "on_2007-02-12_10", "kisiBasinaDusenIkramiye" : 37669.6, "kisiSayisi" : 4, "tur" : "$10_BILEN"}, {"oid" : "on_2007-02-12_9", "kisiBasinaDusenIkramiye" : 1769.4, "kisiSayisi" : 71, "tur" : "$9_BILEN"}, {"oid" : "on_2007-02-12_8", "kisiBasinaDusenIkramiye" : 94.05, "kisiSayisi" : 1336, "tur" : "$8_BILEN"}, {"oid" : "on_2007-02-12_7", "kisiBasinaDusenIkramiye" : 10.4, "kisiSayisi" : 13821, "tur" : "$7_BILEN"}, {"oid" : "on_2007-02-12_6", "kisiBasinaDusenIkramiye" : 1.55, "kisiSayisi" : 83539, "tur" : "$6_BILEN"}, {"oid" : "on_2007-02-12_0", "kisiBasinaDusenIkramiye" : 1.15, "kisiSayisi" : 140792, "tur" : "$HIC"}], "buyukIkrKazananIlIlceler" : []} | json_instruct | {"type": "object", "properties": {"oid": {"type": "string"}, "hafta": {"type": "integer"}, "buyukIkramiyeKazananIl": {"type": "string"}, "cekilisTarihi": {"type": "string"}, "cekilisTuru": {"type": "string"}, "rakamlar": {"type": "string"}, "rakamlarNumaraSirasi": {"type": "string"}, "devretti": {"type": "boolean"}, "devirSayisi": {"type": "integer"}, "bilenKisiler": {"type": "array", "items": {"type": "object", "properties": {"oid": {"type": "string"}, "kisiBasinaDusenIkramiye": {"type": "number"}, "kisiSayisi": {"type": "integer"}, "tur": {"type": "string"}}, "required": ["oid", "kisiBasinaDusenIkramiye", "kisiSayisi", "tur"]}}, "buyukIkrKazananIlIlceler": {"type": "array", "items": {}}}, "required": ["oid", "hafta", "buyukIkramiyeKazananIl", "cekilisTarihi", "cekilisTuru", "rakamlar", "rakamlarNumaraSirasi", "devretti", "devirSayisi", "bilenKisiler", "buyukIkrKazananIlIlceler"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"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" : "7405010005", "district_id" : "7405010", "name" : "TELUTU JAYA"} | 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#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"tha-ap255:0.1": {"type": "string"}, "tha-ap255:0.2": {"type": "string"}, "tha-ap255:0.3": {"type": "string"}, "tha-ap255:1.1": {"type": "string"}, "tha-ap255:1.2": {"type": "string"}, "tha-ap255:1.3": {"type": "string"}, "tha-ap255:1.4": {"type": "string"}, "tha-ap255:2.1": {"type": "string"}, "tha-ap255:2.2": {"type": "string"}, "tha-ap255:2.3": {"type": "string"}, "tha-ap255:2.4": {"type": "string"}, "tha-ap255:3.1": {"type": "string"}, "tha-ap255:3.2": {"type": "string"}, "tha-ap255:3.3": {"type": "string"}, "tha-ap255:3.4": {"type": "string"}, "tha-ap255:4.1": {"type": "string"}, "tha-ap255:4.2": {"type": "string"}, "tha-ap255:4.3": {"type": "string"}, "tha-ap255:5.1": {"type": "string"}, "tha-ap255:6.1": {"type": "string"}}, "required": ["tha-ap255:0.1", "tha-ap255:0.2", "tha-ap255:0.3", "tha-ap255:1.1", "tha-ap255:1.2", "tha-ap255:1.3", "tha-ap255:1.4", "tha-ap255:2.1", "tha-ap255:2.2", "tha-ap255:2.3", "tha-ap255:2.4", "tha-ap255:3.1", "tha-ap255:3.2", "tha-ap255:3.3", "tha-ap255:3.4", "tha-ap255:4.1", "tha-ap255:4.2", "tha-ap255:4.3", "tha-ap255:5.1", "tha-ap255:6.1"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"tha-ap255:0.1" : "<article id='tha-ap255'><header><ul><li class='division'>{}</li>", "tha-ap255:0.2" : "<li>{}</li></ul>", "tha-ap255:0.3" : "<h1>{}</h1></header>", "tha-ap255:1.1" : "<blockquote class='gatha'><p><span class='verse-line'>{}</span>", "tha-ap255:1.2" : "<span class='verse-line'>{}</span>", "tha-ap255:1.3" : "<span class='verse-line'>{}</span>", "tha-ap255:1.4" : "<span class='verse-line'>{}</span></p>", "tha-ap255:2.1" : "<p><span class='verse-line'>{}</span>", "tha-ap255:2.2" : "<span class='verse-line'>{}</span>", "tha-ap255:2.3" : "<span class='verse-line'>{}</span>", "tha-ap255:2.4" : "<span class='verse-line'>{}</span></p>", "tha-ap255:3.1" : "<p><span class='verse-line'>{}</span>", "tha-ap255:3.2" : "<span class='verse-line'>{}</span>", "tha-ap255:3.3" : "<span class='verse-line'>{}</span>", "tha-ap255:3.4" : "<span class='verse-line'>{}</span></p>", "tha-ap255:4.1" : "<p><span class='verse-line'>{}</span>", "tha-ap255:4.2" : "<span class='verse-line'>{}</span>", "tha-ap255:4.3" : "<span class='verse-line'>{}</span></p></blockquote>", "tha-ap255:5.1" : "<p>{}</p>", "tha-ap255:6.1" : "<p class='endsutta'>{}</p></article>"} | json_instruct | {"type": "object", "properties": {"tha-ap255:0.1": {"type": "string"}, "tha-ap255:0.2": {"type": "string"}, "tha-ap255:0.3": {"type": "string"}, "tha-ap255:1.1": {"type": "string"}, "tha-ap255:1.2": {"type": "string"}, "tha-ap255:1.3": {"type": "string"}, "tha-ap255:1.4": {"type": "string"}, "tha-ap255:2.1": {"type": "string"}, "tha-ap255:2.2": {"type": "string"}, "tha-ap255:2.3": {"type": "string"}, "tha-ap255:2.4": {"type": "string"}, "tha-ap255:3.1": {"type": "string"}, "tha-ap255:3.2": {"type": "string"}, "tha-ap255:3.3": {"type": "string"}, "tha-ap255:3.4": {"type": "string"}, "tha-ap255:4.1": {"type": "string"}, "tha-ap255:4.2": {"type": "string"}, "tha-ap255:4.3": {"type": "string"}, "tha-ap255:5.1": {"type": "string"}, "tha-ap255:6.1": {"type": "string"}}, "required": ["tha-ap255:0.1", "tha-ap255:0.2", "tha-ap255:0.3", "tha-ap255:1.1", "tha-ap255:1.2", "tha-ap255:1.3", "tha-ap255:1.4", "tha-ap255:2.1", "tha-ap255:2.2", "tha-ap255:2.3", "tha-ap255:2.4", "tha-ap255:3.1", "tha-ap255:3.2", "tha-ap255:3.3", "tha-ap255:3.4", "tha-ap255:4.1", "tha-ap255:4.2", "tha-ap255:4.3", "tha-ap255:5.1", "tha-ap255:6.1"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"packages": {"type": "object", "properties": {"wpackagist-plugin/k0nsl-short-urls": {"type": "object", "properties": {"0.3a": {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "version_normalized": {"type": "string"}, "uid": {"type": "integer"}, "dist": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "source": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}, "reference": {"type": "string"}}, "required": ["type", "url", "reference"]}, "homepage": {"type": "string"}, "require": {"type": "object", "properties": {"composer/installers": {"type": "string"}}, "required": ["composer/installers"]}, "type": {"type": "string"}}, "required": ["name", "version", "version_normalized", "uid", "dist", "source", "homepage", "require", "type"]}, "dev-trunk": {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "version_normalized": {"type": "string"}, "uid": {"type": "integer"}, "time": {"type": "string"}, "dist": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "source": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}, "reference": {"type": "string"}}, "required": ["type", "url", "reference"]}, "homepage": {"type": "string"}, "require": {"type": "object", "properties": {"composer/installers": {"type": "string"}}, "required": ["composer/installers"]}, "type": {"type": "string"}}, "required": ["name", "version", "version_normalized", "uid", "time", "dist", "source", "homepage", "require", "type"]}}, "required": ["0.3a", "dev-trunk"]}}, "required": ["wpackagist-plugin/k0nsl-short-urls"]}}, "required": ["packages"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"packages" : {"wpackagist-plugin/k0nsl-short-urls" : {"0.3a" : {"name" : "wpackagist-plugin/k0nsl-short-urls", "version" : "0.3a", "version_normalized" : "0.3.0.0-alpha", "uid" : 187667, "dist" : {"type" : "zip", "url" : "https://downloads.wordpress.org/plugin/k0nsl-short-urls.zip?timestamp=1364066216"}, "source" : {"type" : "svn", "url" : "https://plugins.svn.wordpress.org/k0nsl-short-urls/", "reference" : "trunk"}, "homepage" : "https://wordpress.org/plugins/k0nsl-short-urls/", "require" : {"composer/installers" : "~1.0"}, "type" : "wordpress-plugin"}, "dev-trunk" : {"name" : "wpackagist-plugin/k0nsl-short-urls", "version" : "dev-trunk", "version_normalized" : "9999999-dev", "uid" : 187668, "time" : "2013-03-23 19:16:56", "dist" : {"type" : "zip", "url" : "https://downloads.wordpress.org/plugin/k0nsl-short-urls.zip?timestamp=1364066216"}, "source" : {"type" : "svn", "url" : "https://plugins.svn.wordpress.org/k0nsl-short-urls/", "reference" : "trunk"}, "homepage" : "https://wordpress.org/plugins/k0nsl-short-urls/", "require" : {"composer/installers" : "~1.0"}, "type" : "wordpress-plugin"}}}} | json_instruct | {"type": "object", "properties": {"packages": {"type": "object", "properties": {"wpackagist-plugin/k0nsl-short-urls": {"type": "object", "properties": {"0.3a": {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "version_normalized": {"type": "string"}, "uid": {"type": "integer"}, "dist": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "source": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}, "reference": {"type": "string"}}, "required": ["type", "url", "reference"]}, "homepage": {"type": "string"}, "require": {"type": "object", "properties": {"composer/installers": {"type": "string"}}, "required": ["composer/installers"]}, "type": {"type": "string"}}, "required": ["name", "version", "version_normalized", "uid", "dist", "source", "homepage", "require", "type"]}, "dev-trunk": {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "version_normalized": {"type": "string"}, "uid": {"type": "integer"}, "time": {"type": "string"}, "dist": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "source": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}, "reference": {"type": "string"}}, "required": ["type", "url", "reference"]}, "homepage": {"type": "string"}, "require": {"type": "object", "properties": {"composer/installers": {"type": "string"}}, "required": ["composer/installers"]}, "type": {"type": "string"}}, "required": ["name", "version", "version_normalized", "uid", "time", "dist", "source", "homepage", "require", "type"]}}, "required": ["0.3a", "dev-trunk"]}}, "required": ["wpackagist-plugin/k0nsl-short-urls"]}}, "required": ["packages"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"nom": {"type": "string"}, "dpt": {"type": "string"}, "inscrits": {"type": "integer"}, "abs": {"type": "integer"}, "votants": {"type": "integer"}, "blancs": {"type": "integer"}, "nuls": {"type": "integer"}, "exp": {"type": "integer"}, "res": {"type": "array", "items": {"type": "object", "properties": {"panneau": {"type": "string"}, "voix": {"type": "integer"}}, "required": ["panneau", "voix"]}}}, "required": ["nom", "dpt", "inscrits", "abs", "votants", "blancs", "nuls", "exp", "res"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"nom" : "Villes\u00e8quelande", "dpt" : "Aude", "inscrits" : 680, "abs" : 77, "votants" : 603, "blancs" : 5, "nuls" : 6, "exp" : 592, "res" : [{"panneau" : "2", "voix" : 233}, {"panneau" : "9", "voix" : 130}, {"panneau" : "3", "voix" : 94}, {"panneau" : "11", "voix" : 65}, {"panneau" : "4", "voix" : 28}, {"panneau" : "1", "voix" : 20}, {"panneau" : "8", "voix" : 13}, {"panneau" : "6", "voix" : 7}, {"panneau" : "10", "voix" : 2}, {"panneau" : "5", "voix" : 0}, {"panneau" : "7", "voix" : 0}]} | json_instruct | {"type": "object", "properties": {"nom": {"type": "string"}, "dpt": {"type": "string"}, "inscrits": {"type": "integer"}, "abs": {"type": "integer"}, "votants": {"type": "integer"}, "blancs": {"type": "integer"}, "nuls": {"type": "integer"}, "exp": {"type": "integer"}, "res": {"type": "array", "items": {"type": "object", "properties": {"panneau": {"type": "string"}, "voix": {"type": "integer"}}, "required": ["panneau", "voix"]}}}, "required": ["nom", "dpt", "inscrits", "abs", "votants", "blancs", "nuls", "exp", "res"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"text": {"type": "object", "properties": {"0": {"type": "object", "properties": {"m1": {"type": "string"}, "m2": {"type": "string"}}, "required": ["m1", "m2"]}, "1": {"type": "object", "properties": {"m1": {"type": "string"}, "m2": {"type": "string"}}, "required": ["m1", "m2"]}}, "required": ["0", "1"]}}, "required": ["text"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"text" : {"0" : {"m1" : "\u0647\u06cc\u0686 \u062f\u0627\u0646\u06cc \u06a9\u0647 \u0686\u06cc\u0633\u062a \u062f\u062e\u0644 \u062d\u0631\u0627\u0645", "m2" : "\u06cc\u0627 \u06a9\u062f\u0627\u0645\u0633\u062a \u062e\u0631\u062c \u0646\u0627\u0641\u0631\u062c\u0627\u0645"}, "1" : {"m1" : "\u0628\u0647 \u06af\u062f\u0627\u06cc\u06cc \u0641\u0631\u0627\u0647\u0645 \u0622\u0648\u0631\u062f\u0646", "m2" : "\u067e\u0633 \u0628\u0647 \u0634\u0648\u062e\u06cc \u0648 \u0645\u0639\u0635\u06cc\u062a \u062e\u0648\u0631\u062f\u0646"}}} | json_instruct | {"type": "object", "properties": {"text": {"type": "object", "properties": {"0": {"type": "object", "properties": {"m1": {"type": "string"}, "m2": {"type": "string"}}, "required": ["m1", "m2"]}, "1": {"type": "object", "properties": {"m1": {"type": "string"}, "m2": {"type": "string"}}, "required": ["m1", "m2"]}}, "required": ["0", "1"]}}, "required": ["text"], "$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": {"province": {"type": "string"}, "city": {"type": "string"}, "area": {"type": "string"}, "name": {"type": "string"}, "code": {"type": "string"}, "address": {"type": "string"}, "phone": {"type": "string"}}, "required": ["province", "city", "area", "name", "code", "address", "phone"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"province" : "\u91cd\u5e86\u5e02", "city" : "\u91cd\u5e86\u5e02", "area" : "\u5f00\u5dde\u533a", "name" : "\u5f00\u5dde\u533a\u5929\u7960\u90ae\u653f\u6240", "code" : "405477", "address" : "\u91cd\u5e86\u5e02\u5f00\u5dde\u533a\u767d\u9e64\u9547\u5929\u7960\u793e\u533a3\u7ec4", "phone" : "023-52204036"}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"province": {"type": "string"}, "city": {"type": "string"}, "area": {"type": "string"}, "name": {"type": "string"}, "code": {"type": "string"}, "address": {"type": "string"}, "phone": {"type": "string"}}, "required": ["province", "city", "area", "name", "code", "address", "phone"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"libphonenumber-js.min.js": {"type": "string"}}, "required": ["libphonenumber-js.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"libphonenumber-js.min.js" : "sha512-7xKs9ezvToYem+VzNJIHgW3RnE1S96drkRjg/lM8QsODtF4patouLf7quEmetPmaVKxamxciIr28zWNjodABBA=="} | json_instruct | {"type": "object", "properties": {"libphonenumber-js.min.js": {"type": "string"}}, "required": ["libphonenumber-js.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"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" : [[[-115.080498, 36.166292], [-115.062164, 36.166533], [-115.06235, 36.159107], [-115.080198, 36.159006], [-115.080498, 36.166292]]]}, "type" : "Feature", "properties" : {"cartodb_id" : 38332}}]} | 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#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"Name": {"type": "string"}, "ShortName": {"type": "string"}, "Description": {"type": "string"}}, "required": ["Name", "ShortName", "Description"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"Name" : "Montura elevadora La Rue Tactical QD LT-101 de tipo Picatinny", "ShortName" : "QD LT-101", "Description" : "Montura con acople r\u00e1pido fabricada por La Rue Tactical. Ofrece un anclaje elevado para colocar miras y \u00f3pticas, as\u00ed se evita cualquier elemento que dificulte la visi\u00f3n a trav\u00e9s del eje \u00f3ptico."} | json_instruct | {"type": "object", "properties": {"Name": {"type": "string"}, "ShortName": {"type": "string"}, "Description": {"type": "string"}}, "required": ["Name", "ShortName", "Description"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"stryker-config": {"type": "object", "properties": {"test-runner": {"type": "string"}, "reporters": {"type": "array", "items": {"type": "string"}}, "log-level": {"type": "string"}, "timeout-ms": {"type": "integer"}, "files-to-exclude": {"type": "array", "items": {"type": "string"}}, "excluded-mutations": {"type": "array", "items": {"type": "string"}}}, "required": ["test-runner", "reporters", "log-level", "timeout-ms", "files-to-exclude", "excluded-mutations"]}}, "required": ["stryker-config"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"stryker-config" : {"test-runner" : "vstest", "reporters" : ["cleartext", "progress", "html"], "log-level" : "info", "timeout-ms" : 20000, "files-to-exclude" : ["./Testing/"], "excluded-mutations" : ["string"]}} | json_instruct | {"type": "object", "properties": {"stryker-config": {"type": "object", "properties": {"test-runner": {"type": "string"}, "reporters": {"type": "array", "items": {"type": "string"}}, "log-level": {"type": "string"}, "timeout-ms": {"type": "integer"}, "files-to-exclude": {"type": "array", "items": {"type": "string"}}, "excluded-mutations": {"type": "array", "items": {"type": "string"}}}, "required": ["test-runner", "reporters", "log-level", "timeout-ms", "files-to-exclude", "excluded-mutations"]}}, "required": ["stryker-config"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "dependencies": {"type": "object", "properties": {"ws": {"type": "string"}}, "required": ["ws"]}, "devDependencies": {"type": "object", "properties": {"@babel/core": {"type": "string"}, "@babel/plugin-transform-runtime": {"type": "string"}, "@babel/preset-env": {"type": "string"}, "@babel/preset-typescript": {"type": "string"}, "@types/jest": {"type": "string"}, "@types/node": {"type": "string"}, "@types/ws": {"type": "string"}, "jest": {"type": "string"}}, "required": ["@babel/core", "@babel/plugin-transform-runtime", "@babel/preset-env", "@babel/preset-typescript", "@types/jest", "@types/node", "@types/ws", "jest"]}, "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"}}, "required": ["name", "version", "description", "main", "scripts", "dependencies", "devDependencies", "repository", "author", "license", "bugs", "homepage"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "testing-websockets", "version" : "1.0.0", "description" : "Repository exemplifying how to write integration tests for WebSocket servers using Jest.", "main" : "index.js", "scripts" : {"test" : "jest"}, "dependencies" : {"ws" : "^7.4.4"}, "devDependencies" : {"@babel/core" : "^7.13.14", "@babel/plugin-transform-runtime" : "^7.13.10", "@babel/preset-env" : "^7.13.12", "@babel/preset-typescript" : "^7.13.0", "@types/jest" : "^26.0.22", "@types/node" : "^14.14.37", "@types/ws" : "^7.4.1", "jest" : "^26.6.3"}, "repository" : {"type" : "git", "url" : "git+https://github.com/ITenthusiasm/testing-websockets.git"}, "author" : "Isaiah Thomason", "license" : "MIT", "bugs" : {"url" : "https://github.com/ITenthusiasm/testing-websockets/issues"}, "homepage" : "https://github.com/ITenthusiasm/testing-websockets#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"]}, "dependencies": {"type": "object", "properties": {"ws": {"type": "string"}}, "required": ["ws"]}, "devDependencies": {"type": "object", "properties": {"@babel/core": {"type": "string"}, "@babel/plugin-transform-runtime": {"type": "string"}, "@babel/preset-env": {"type": "string"}, "@babel/preset-typescript": {"type": "string"}, "@types/jest": {"type": "string"}, "@types/node": {"type": "string"}, "@types/ws": {"type": "string"}, "jest": {"type": "string"}}, "required": ["@babel/core", "@babel/plugin-transform-runtime", "@babel/preset-env", "@babel/preset-typescript", "@types/jest", "@types/node", "@types/ws", "jest"]}, "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"}}, "required": ["name", "version", "description", "main", "scripts", "dependencies", "devDependencies", "repository", "author", "license", "bugs", "homepage"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "nodes": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "id": {"type": "integer"}, "lat": {"type": "number"}, "lon": {"type": "number"}}, "required": ["type", "id", "lat", "lon"]}}, "volunteer_postcode": {"type": "string"}, "closest_distance": {"type": "integer"}}, "required": ["id", "name", "nodes", "volunteer_postcode", "closest_distance"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "56906923", "name" : "Purser Road", "nodes" : [{"type" : "node", "id" : 345442927, "lat" : 52.2456871, "lon" : -0.8738392}, {"type" : "node", "id" : 710848614, "lat" : 52.246014, "lon" : -0.8741373}, {"type" : "node", "id" : 710848633, "lat" : 52.2484689, "lon" : -0.8750026}, {"type" : "node", "id" : 710848647, "lat" : 52.2486401, "lon" : -0.8751087}, {"type" : "node", "id" : 768234784, "lat" : 52.2482832, "lon" : -0.8748976}, {"type" : "node", "id" : 1155364104, "lat" : 52.2459499, "lon" : -0.874104}, {"type" : "node", "id" : 1155364116, "lat" : 52.2457544, "lon" : -0.8739371}], "volunteer_postcode" : "NN1 4PF", "closest_distance" : 146} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "nodes": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "id": {"type": "integer"}, "lat": {"type": "number"}, "lon": {"type": "number"}}, "required": ["type", "id", "lat", "lon"]}}, "volunteer_postcode": {"type": "string"}, "closest_distance": {"type": "integer"}}, "required": ["id", "name", "nodes", "volunteer_postcode", "closest_distance"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"@metadata": {"type": "object", "properties": {"authors": {"type": "array", "items": {"type": "string"}}}, "required": ["authors"]}, "category_redirect-add-template": {"type": "string"}, "category_redirect-change-category": {"type": "string"}, "category_redirect-comment": {"type": "string"}, "category_redirect-fix-double": {"type": "string"}}, "required": ["@metadata", "category_redirect-add-template", "category_redirect-change-category", "category_redirect-comment", "category_redirect-fix-double"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"@metadata" : {"authors" : ["Eukesh"]}, "category_redirect-add-template" : "\u0930\u094b\u092c\u091f: \u092e\u0947\u0928\u094d\u0924\u0947\u0928\u0947\u0928\u094d\u0938\u092f\u093e \u092a\u0941\u091a\u0903 \u092a\u0941\u0928\u0930\u094d\u0928\u093f\u0926\u0947\u0936 \u0925\u093e\u0938\u093e \u0924\u0928\u093e\u091a\u094d\u0935\u0902\u0917\u0941", "category_redirect-change-category" : "\u0930\u094b\u092c\u091f: \u092a\u0941\u0928\u0930\u094d\u0928\u093f\u0926\u0947\u0936\u093f\u0924 \u092a\u0941\u091a\u0903 [[:%(oldCatLink)s|%(oldCatTitle)s]]\u0928\u0902 [[:%(newCatLink)s|%(newCatTitle)s]]\u092f\u094d \u0939\u093f\u0932\u0947\u0917\u0941", "category_redirect-comment" : "\u092a\u0941\u091a\u0903 \u092a\u0941\u0928\u0930\u094d\u0928\u093f\u0926\u0947\u0936 \u0938\u094d\u0935\u0907\u0917\u0941 \u0930\u094b\u092c\u091f", "category_redirect-fix-double" : "\u0930\u094b\u092c\u091f: \u0928\u093f\u0915\u094d\u0935\u0903\u0917\u0941 \u092a\u0941\u0928\u0930\u094d\u0928\u093f\u0926\u0947\u0936\u092f\u093e\u0924 \u092e\u093f\u0932\u092f\u094d\u200c\u092f\u093e\u0928\u093e\u091a\u094d\u0935\u0901\u0917\u0941"} | json_instruct | {"type": "object", "properties": {"@metadata": {"type": "object", "properties": {"authors": {"type": "array", "items": {"type": "string"}}}, "required": ["authors"]}, "category_redirect-add-template": {"type": "string"}, "category_redirect-change-category": {"type": "string"}, "category_redirect-comment": {"type": "string"}, "category_redirect-fix-double": {"type": "string"}}, "required": ["@metadata", "category_redirect-add-template", "category_redirect-change-category", "category_redirect-comment", "category_redirect-fix-double"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"copyright_text": {"type": "null"}, "description": {"type": "string"}, "duration": {"type": "integer"}, "language": {"type": "string"}, "recorded": {"type": "string"}, "related_urls": {"type": "array", "items": {"type": "object", "properties": {"label": {"type": "string"}, "url": {"type": "string"}}, "required": ["label", "url"]}}, "speakers": {"type": "array", "items": {"type": "string"}}, "tags": {"type": "array", "items": {}}, "thumbnail_url": {"type": "string"}, "title": {"type": "string"}, "videos": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}}}, "required": ["copyright_text", "description", "duration", "language", "recorded", "related_urls", "speakers", "tags", "thumbnail_url", "title", "videos"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"copyright_text" : null, "description" : "In this talk, I will present pynt (*py*\\ thon i\\ *nt*\\ eractive), a tool\nwhich leverages the interactive capabilities of Jupyter Notebooks to\nprovide a rich programming environment conducive to the later stages of\nsoftware development. I will begin by discussing common workflow in\nsoftware development, as well their limitations. I will then motivate\nthe merits of pynt by demonstrating how adopting a\nJupyter-Notebook-Driven-Development workflow can overcome some of these\nlimitations, and then how pynt streamlines this workflow. I will end\nwith a feature-tour of pynt and the different approach to software\ndevelopment workflow that pynt encourages.Presenter(s): Speaker: Edward\nBanner, mosss.com\n", "duration" : 1788, "language" : "eng", "recorded" : "2018-07-12", "related_urls" : [{"label" : "Conference schedule", "url" : "https://scipy2018.scipy.org/ehome/299527/721463/"}, {"label" : "Conference slides", "url" : "https://github.com/deniederhut/Slides-SciPyConf-2018"}], "speakers" : ["Edward Banner"], "tags" : [], "thumbnail_url" : "https://i.ytimg.com/vi/MfM_TijHNYE/maxresdefault.jpg", "title" : "Jupyter Notebook Driven Development with PYNT (PYthon iNTeractive)", "videos" : [{"type" : "youtube", "url" : "https://www.youtube.com/watch?v=MfM_TijHNYE"}]} | json_instruct | {"type": "object", "properties": {"copyright_text": {"type": "null"}, "description": {"type": "string"}, "duration": {"type": "integer"}, "language": {"type": "string"}, "recorded": {"type": "string"}, "related_urls": {"type": "array", "items": {"type": "object", "properties": {"label": {"type": "string"}, "url": {"type": "string"}}, "required": ["label", "url"]}}, "speakers": {"type": "array", "items": {"type": "string"}}, "tags": {"type": "array", "items": {}}, "thumbnail_url": {"type": "string"}, "title": {"type": "string"}, "videos": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}}}, "required": ["copyright_text", "description", "duration", "language", "recorded", "related_urls", "speakers", "tags", "thumbnail_url", "title", "videos"], "$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": {"start": {"type": "string"}, "test": {"type": "string"}}, "required": ["start", "test"]}, "author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"@microsoft/recognizers-text-suite": {"type": "string"}, "azure-storage": {"type": "string"}, "botbuilder": {"type": "string"}, "botbuilder-services": {"type": "string"}, "dotenv": {"type": "string"}, "install": {"type": "string"}, "npm": {"type": "string"}, "restify": {"type": "string"}}, "required": ["@microsoft/recognizers-text-suite", "azure-storage", "botbuilder", "botbuilder-services", "dotenv", "install", "npm", "restify"]}}, "required": ["name", "version", "description", "main", "scripts", "author", "license", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "mentobot", "version" : "1.0.0", "description" : "", "main" : "index.js", "scripts" : {"start" : "node ./index.js", "test" : "echo \"Error: no test specified\" && exit 1"}, "author" : "Margaret Ostpchuk", "license" : "MIT", "dependencies" : {"@microsoft/recognizers-text-suite" : "^1.0.0-rc.32.0", "azure-storage" : "^2.8.0", "botbuilder" : "^4.0.0-m1.4", "botbuilder-services" : "^4.0.0-m1.2", "dotenv" : "^5.0.0", "install" : "^0.10.4", "npm" : "^5.6.0", "restify" : "^6.3.4"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}, "test": {"type": "string"}}, "required": ["start", "test"]}, "author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"@microsoft/recognizers-text-suite": {"type": "string"}, "azure-storage": {"type": "string"}, "botbuilder": {"type": "string"}, "botbuilder-services": {"type": "string"}, "dotenv": {"type": "string"}, "install": {"type": "string"}, "npm": {"type": "string"}, "restify": {"type": "string"}}, "required": ["@microsoft/recognizers-text-suite", "azure-storage", "botbuilder", "botbuilder-services", "dotenv", "install", "npm", "restify"]}}, "required": ["name", "version", "description", "main", "scripts", "author", "license", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"url": {"type": "string"}, "name": {"type": "string"}, "description": {"type": "string"}, "twitter": {"type": "string"}}, "required": ["url", "name", "description", "twitter"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"url" : "https://briony.stream/", "name" : "brionykay's Streaming Schedule", "description" : "Twitch streaming schedule for brionykay.", "twitter" : "bassetts"} | json_instruct | {"type": "object", "properties": {"url": {"type": "string"}, "name": {"type": "string"}, "description": {"type": "string"}, "twitter": {"type": "string"}}, "required": ["url", "name", "description", "twitter"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"stickers": {"type": "array", "items": {"type": "object", "properties": {"filename": {"type": "string"}}, "required": ["filename"]}}, "info": {"type": "object", "properties": {"version": {"type": "integer"}, "author": {"type": "string"}}, "required": ["version", "author"]}, "properties": {"type": "object", "properties": {"grid-size": {"type": "string"}}, "required": ["grid-size"]}}, "required": ["stickers", "info", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"stickers" : [{"filename" : "Snobby Wut.sticker"}, {"filename" : "Snobby Smug.sticker"}, {"filename" : "Snobby Rage.sticker"}, {"filename" : "Snobby Thump.sticker"}, {"filename" : "Snobby Peasant.sticker"}, {"filename" : "Snobby Glitch.sticker"}, {"filename" : "Snobby Giraffe (long Neck).sticker"}, {"filename" : "Snobby Eats Cake.sticker"}, {"filename" : "Snobby Blaze It.sticker"}, {"filename" : "Snobby Dab.sticker"}, {"filename" : "Snobby On Fire.sticker"}], "info" : {"version" : 1, "author" : "xcode"}, "properties" : {"grid-size" : "regular"}} | json_instruct | {"type": "object", "properties": {"stickers": {"type": "array", "items": {"type": "object", "properties": {"filename": {"type": "string"}}, "required": ["filename"]}}, "info": {"type": "object", "properties": {"version": {"type": "integer"}, "author": {"type": "string"}}, "required": ["version", "author"]}, "properties": {"type": "object", "properties": {"grid-size": {"type": "string"}}, "required": ["grid-size"]}}, "required": ["stickers", "info", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"type": {"type": "string"}, "attrType": {"type": "integer"}, "page": {"type": "string"}, "attribute": {"type": "object", "properties": {"source": {"type": "string"}}, "required": ["source"]}, "data": {"type": "object", "properties": {"name": {"type": "object", "properties": {"en": {"type": "string"}, "ja": {"type": "string"}, "zh": {"type": "string"}}, "required": ["en", "ja", "zh"]}}, "required": ["name"]}}, "required": ["type", "attrType", "page", "attribute", "data"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"type" : "content-id", "attrType" : 0, "page" : "94\u2013117", "attribute" : {"source" : "fate-extella-material"}, "data" : {"name" : {"en" : "Encyclopedia of Fate EXTELLA", "ja" : "Fate EXTELLA\u7528\u8a9e\u8f9e\u5178", "zh" : "Fate EXTELLA\u7528\u8bed\u8f9e\u5178"}}} | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "attrType": {"type": "integer"}, "page": {"type": "string"}, "attribute": {"type": "object", "properties": {"source": {"type": "string"}}, "required": ["source"]}, "data": {"type": "object", "properties": {"name": {"type": "object", "properties": {"en": {"type": "string"}, "ja": {"type": "string"}, "zh": {"type": "string"}}, "required": ["en", "ja", "zh"]}}, "required": ["name"]}}, "required": ["type", "attrType", "page", "attribute", "data"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"latest_version": {"type": "array", "items": {"type": "string"}}, "meta": {"type": "object", "properties": {"description": {"type": "string"}, "homepage": {"type": "string"}, "license": {"type": "string"}}, "required": ["description", "homepage", "license"]}, "versions": {"type": "object", "properties": {"0.1.0": {"type": "object", "properties": {"sha256": {"type": "string"}, "url": {"type": "string"}}, "required": ["sha256", "url"]}}, "required": ["0.1.0"]}}, "required": ["latest_version", "meta", "versions"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"latest_version" : ["0.1.0"], "meta" : {"description" : "A Pytest plugin to drop duplicated tests during collection", "homepage" : "https://github.com/nicoddemus/pytest-drop-dup-tests", "license" : "MIT"}, "versions" : {"0.1.0" : {"sha256" : "7e3fa8512f002560508026a421108819f447ce971c38b3bc17431e75a44634ee", "url" : "https://files.pythonhosted.org/packages/c7/7c/9eab0c7e401b168a9362684cc6db743090b3d2338a041db0536c53ebdfe3/pytest-drop-dup-tests-0.1.0.zip"}}} | json_instruct | {"type": "object", "properties": {"latest_version": {"type": "array", "items": {"type": "string"}}, "meta": {"type": "object", "properties": {"description": {"type": "string"}, "homepage": {"type": "string"}, "license": {"type": "string"}}, "required": ["description", "homepage", "license"]}, "versions": {"type": "object", "properties": {"0.1.0": {"type": "object", "properties": {"sha256": {"type": "string"}, "url": {"type": "string"}}, "required": ["sha256", "url"]}}, "required": ["0.1.0"]}}, "required": ["latest_version", "meta", "versions"], "$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"}, "playerTags": {"type": "array", "items": {}}, "teamTags": {"type": "array", "items": {"type": "string"}}, "gameTags": {"type": "array", "items": {"type": "string"}}, "metadata": {"type": "object", "properties": {"play": {"type": "integer"}, "subPlay": {"type": "integer"}}, "required": ["play", "subPlay"]}, "created": {"type": "string"}, "season": {"type": "integer"}, "tournament": {"type": "integer"}, "type": {"type": "integer"}, "day": {"type": "integer"}, "phase": {"type": "integer"}, "category": {"type": "integer"}, "description": {"type": "string"}, "nuts": {"type": "integer"}}, "required": ["id", "playerTags", "teamTags", "gameTags", "metadata", "created", "season", "tournament", "type", "day", "phase", "category", "description", "nuts"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "f5ab9379-0ffb-4ef0-ab05-eafcaf9b8c32", "playerTags" : [], "teamTags" : ["a37f9158-7f82-46bc-908c-c9e2dda7c33b", "3f8bbb15-61c0-4e3f-8e4a-907a5fb1565e"], "gameTags" : ["886c4e59-eab3-486b-9881-ecc342cdf5c1"], "metadata" : {"play" : 90, "subPlay" : -1}, "created" : "2021-04-15T14:07:32.893Z", "season" : 15, "tournament" : -1, "type" : 8, "day" : 68, "phase" : 4, "category" : 0, "description" : "Schneider Bendie hit a ground out to Collins Melon.", "nuts" : 0} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "playerTags": {"type": "array", "items": {}}, "teamTags": {"type": "array", "items": {"type": "string"}}, "gameTags": {"type": "array", "items": {"type": "string"}}, "metadata": {"type": "object", "properties": {"play": {"type": "integer"}, "subPlay": {"type": "integer"}}, "required": ["play", "subPlay"]}, "created": {"type": "string"}, "season": {"type": "integer"}, "tournament": {"type": "integer"}, "type": {"type": "integer"}, "day": {"type": "integer"}, "phase": {"type": "integer"}, "category": {"type": "integer"}, "description": {"type": "string"}, "nuts": {"type": "integer"}}, "required": ["id", "playerTags", "teamTags", "gameTags", "metadata", "created", "season", "tournament", "type", "day", "phase", "category", "description", "nuts"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "array", "items": {"type": "object", "properties": {"c_ref": {"type": "string"}, "totals": {"type": "object", "properties": {"Cases": {"type": "integer"}, "Deaths": {"type": "integer"}}, "required": ["Cases", "Deaths"]}, "daily": {"type": "object", "properties": {"Cases": {"type": "integer"}, "Deaths": {"type": "integer"}}, "required": ["Cases", "Deaths"]}}, "required": ["c_ref", "totals", "daily"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"c_ref" : "Kent", "totals" : {"Cases" : 1238, "Deaths" : 53}, "daily" : {"Cases" : 19, "Deaths" : 1}}, {"c_ref" : "New Castle", "totals" : {"Cases" : 2845, "Deaths" : 135}, "daily" : {"Cases" : 107, "Deaths" : 5}}, {"c_ref" : "Sussex", "totals" : {"Cases" : 3904, "Deaths" : 115}, "daily" : {"Cases" : 43, "Deaths" : 1}}, {"c_ref" : "Unassigned", "totals" : {"Cases" : 50, "Deaths" : 1}, "daily" : {"Cases" : -1, "Deaths" : 0}}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"c_ref": {"type": "string"}, "totals": {"type": "object", "properties": {"Cases": {"type": "integer"}, "Deaths": {"type": "integer"}}, "required": ["Cases", "Deaths"]}, "daily": {"type": "object", "properties": {"Cases": {"type": "integer"}, "Deaths": {"type": "integer"}}, "required": ["Cases", "Deaths"]}}, "required": ["c_ref", "totals", "daily"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"link": {"type": "string"}, "date": {"type": "string"}, "time": {"type": "string"}, "content": {"type": "string"}}, "required": ["link", "date", "time", "content"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"link" : "https://www.gov.br/planalto/pt-br/acompanhe-o-planalto/discursos/2019/discurso-do-presidente-da-republica-jair-bolsonaro-durante-a-solenidade-de-comemoracao-do-196o-aniversario-da-criacao-do-batalhao-do-imperador-e-o-59o-de-sua-transferencia-para-a-capital-federal-brasilia-df", "date" : "20190705", "time" : "12h45", "content" : "Senhor General Villas Boas, nosso eterno Comandante, a quem presto a minha continencia,Meus amigos de caserna,Ministros,Meu povo maravilhoso,Meu bom dia a todos voces. E muito bom estar entre amigos, melhor ainda quando esses amigos um dia prestaram juramento de defender a sua Patria com o sacrificio da propria vida, melhor ainda quando esses brasileiros em todos os momentos que ouviu o clamor popular sempre esteve ao lado da democracia e da liberdade.Mais ainda esse Exercito, essas Forcas Armadas que devem acima de tudo uma lealdade impar a voces.Se me permitem, \"onde vais tu esbelto infante? Com seu fuzil lepido a marchar, cadencia certa e peito arfante, onde vais tu a pelejar? Pra longe eu vou a patria ordena, sigo contente o meu tambor, pois quando a Patria nos acena, exibe-se so da propria dor\".Hoje nao sao 24 de maio, mas todos nos somos infantes com muito orgulho, inclusive esse artilheiro que vos fala nesse momento.Nessa data de aniversario de voces, eu os cumprimento pela minha protecao, por ser o batalhao maior que existe no Brasil e por ter essa nobre missao de defender e guardar o Presidente da Republica.Meus parabens a todos voces.Meu muito obrigado por existirem e o meu tradicional: \"Brasil acima de tudo e que Deus nos abencoe\".Muito obrigado. Ouca a integra (02min33s) do discurso do presidente Jair Bolsonaro"} | json_instruct | {"type": "object", "properties": {"link": {"type": "string"}, "date": {"type": "string"}, "time": {"type": "string"}, "content": {"type": "string"}}, "required": ["link", "date", "time", "content"], "$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" : "d659-100", "text" : "- Purdue University\nPURCHASING DEPARTMENT\nLAFAYETTE. INDIANA\nApril 11, 1957\nUniversity of Illinois\nBusiness Office\nUrbana, Illinois\n<^c\\\n*\\X%P\n%\nGentlemen:\nYour statement, dated April 3, 1957, for one subscription to\nthe NAEB TV RESEARCH FACT. SHEET SERVICE is believed to be an error.\nIn February we submitted purchase order #3084 for one renewal subscription\nand paid for this copy February 18.\nWe chose to renew only one subscription for this year so if\nthe statement refers to the second copy directed in the past to Educational\nReference, this copy is to be discontinued.\nVery truly yours."} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "text": {"type": "string"}}, "required": ["id", "text"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"id": {"type": "string"}, "regency_id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "regency_id", "name"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "3523020", "regency_id" : "3523", "name" : "BANGILAN"} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "regency_id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "regency_id", "name"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"status": {"type": "integer"}, "data": {"type": "object", "properties": {"totalSubs": {"type": "integer"}, "subsInEachSource": {"type": "object", "properties": {"feedly": {"type": "integer"}, "inoreader": {"type": "integer"}, "feedsPub": {"type": "integer"}}, "required": ["feedly", "inoreader", "feedsPub"]}, "failedSources": {"type": "object", "properties": {}, "required": []}}, "required": ["totalSubs", "subsInEachSource", "failedSources"]}, "lastModified": {"type": "integer"}}, "required": ["status", "data", "lastModified"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"status" : 200, "data" : {"totalSubs" : 117, "subsInEachSource" : {"feedly" : 40, "inoreader" : 75, "feedsPub" : 2}, "failedSources" : {}}, "lastModified" : 1625443674279} | json_instruct | {"type": "object", "properties": {"status": {"type": "integer"}, "data": {"type": "object", "properties": {"totalSubs": {"type": "integer"}, "subsInEachSource": {"type": "object", "properties": {"feedly": {"type": "integer"}, "inoreader": {"type": "integer"}, "feedsPub": {"type": "integer"}}, "required": ["feedly", "inoreader", "feedsPub"]}, "failedSources": {"type": "object", "properties": {}, "required": []}}, "required": ["totalSubs", "subsInEachSource", "failedSources"]}, "lastModified": {"type": "integer"}}, "required": ["status", "data", "lastModified"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"instance": {"type": "object", "properties": {"baseline:": {"type": "string"}}, "required": ["baseline:"]}, "class": {"type": "object", "properties": {}, "required": []}}, "required": ["instance", "class"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"instance" : {"baseline:" : "PaulDeBruicker 2/5/2019 16:37"}, "class" : {}} | json_instruct | {"type": "object", "properties": {"instance": {"type": "object", "properties": {"baseline:": {"type": "string"}}, "required": ["baseline:"]}, "class": {"type": "object", "properties": {}, "required": []}}, "required": ["instance", "class"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"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" : "52107331-4925-4bf8-87f7-5aaea20dc276", "firstName" : "Rico", "lastName" : "Dietrich", "email" : "rico.dietrich-8143@example.com", "username" : "rico.dietrich-8143@example.com", "password" : "bat", "organisations" : [{"id" : "7b138fe3-4d57-4878-9f94-3ee1952b6ecb", "code" : "197", "name" : "Yorkshire Special Education Partnership (YSEP)", "permissions" : [], "notifications" : ["course_published", "course_changed", "course_withdrawn", "course_vacancies_changed"]}], "createdAt" : "2022-03-07T12:31:16.897Z", "updatedAt" : "2022-03-08T20:09:43.434Z", "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#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"idArt": {"type": "string"}, "placeAut": {"type": "array", "items": {"type": "object", "properties": {"place": {"type": "string"}, "country": {"type": "string"}, "location": {"type": "object", "properties": {"lat": {"type": "number"}, "lon": {"type": "number"}}, "required": ["lat", "lon"]}}, "required": ["place", "country", "location"]}}}, "required": ["idArt", "placeAut"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"idArt" : "457", "placeAut" : [{"place" : "Manouba", "country" : "Tunisie", "location" : {"lat" : 36.807778, "lon" : 10.101110999999946}}, {"place" : "Chatenay-Malabry", "country" : "Paris", "location" : {"lat" : 48.8074637, "lon" : 2.2944142000000056}}]} | json_instruct | {"type": "object", "properties": {"idArt": {"type": "string"}, "placeAut": {"type": "array", "items": {"type": "object", "properties": {"place": {"type": "string"}, "country": {"type": "string"}, "location": {"type": "object", "properties": {"lat": {"type": "number"}, "lon": {"type": "number"}}, "required": ["lat", "lon"]}}, "required": ["place", "country", "location"]}}}, "required": ["idArt", "placeAut"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following 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/e4d286be-6e09-3e72-bf84-a2dc2c572bf3", "expression" : [{"id" : "http://data.doremus.org/expression/6d4b8a30-498b-340b-bc30-61784b78dabd"}, {"id" : "http://data.doremus.org/expression/626ea89f-954b-35e4-9327-acbf3d2e77e5"}, {"id" : "http://data.doremus.org/expression/cd017375-463b-3832-951c-8ee01085261d"}, {"id" : "http://data.doremus.org/expression/a8691dca-468a-36f6-bc96-cb9efb5e13d2"}, {"id" : "http://data.doremus.org/expression/10ac666d-e240-32e0-80b8-c20440b7e15b"}, {"id" : "http://data.doremus.org/expression/e15e12d0-1605-3d18-8929-3d1f3fd54e57"}, {"id" : "http://data.doremus.org/expression/0ac99344-036d-38f6-8d26-f30c85967e49"}, {"id" : "http://data.doremus.org/expression/b6cd3e07-0378-325d-89d2-3919b2382a37"}]} | 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#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"type": {"type": "string"}, "crs": {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"]}}, "required": ["type", "properties"]}, "features": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"id": {"type": "integer"}, "localisati": {"type": "string"}}, "required": ["id", "localisati"]}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "number"}}}, "required": ["type", "coordinates"]}}, "required": ["type", "properties", "geometry"]}}}, "required": ["type", "crs", "features"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"type" : "FeatureCollection", "crs" : {"type" : "name", "properties" : {"name" : "urn:ogc:def:crs:OGC:1.3:CRS84"}}, "features" : [{"type" : "Feature", "properties" : {"id" : 1, "localisati" : "Tours"}, "geometry" : {"type" : "Point", "coordinates" : [0.68502383824815, 47.397671233952494]}}, {"type" : "Feature", "properties" : {"id" : 2, "localisati" : "Bergerac"}, "geometry" : {"type" : "Point", "coordinates" : [0.476284331451879, 44.85474306465258]}}]} | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "crs": {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"]}}, "required": ["type", "properties"]}, "features": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"id": {"type": "integer"}, "localisati": {"type": "string"}}, "required": ["id", "localisati"]}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "number"}}}, "required": ["type", "coordinates"]}}, "required": ["type", "properties", "geometry"]}}}, "required": ["type", "crs", "features"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"episode": {"type": "string"}, "queueAdd": {"type": "string"}, "queueRemove": {"type": "string"}, "filter": {"type": "string"}, "media": {"type": "string"}, "loadMore": {"type": "string"}, "types": {"type": "object", "properties": {"anime": {"type": "string"}, "drama": {"type": "string"}, "both": {"type": "string"}}, "required": ["anime", "drama", "both"]}, "filters": {"type": "object", "properties": {"alphabetical": {"type": "string"}, "featured": {"type": "string"}, "newest": {"type": "string"}, "popular": {"type": "string"}, "simulcast": {"type": "string"}, "updated": {"type": "string"}}, "required": ["alphabetical", "featured", "newest", "popular", "simulcast", "updated"]}, "emptyHistory": {"type": "string"}, "categories": {"type": "string"}, "genres": {"type": "string"}, "seasons": {"type": "string"}, "emptyBrowse": {"type": "string"}, "compact": {"type": "string"}, "markWatched": {"type": "string"}, "markUnwatched": {"type": "string"}}, "required": ["episode", "queueAdd", "queueRemove", "filter", "media", "loadMore", "types", "filters", "emptyHistory", "categories", "genres", "seasons", "emptyBrowse", "compact", "markWatched", "markUnwatched"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"episode" : "Folge {number}", "queueAdd" : "Zur Warteschlange hinzuf\u00fcgen", "queueRemove" : "Aus der Warteschlange entfernen", "filter" : "Filter", "media" : "Medien", "loadMore" : "Mehr laden", "types" : {"anime" : "Anime", "drama" : "Theater", "both" : "Beide"}, "filters" : {"alphabetical" : "Alphabetisch", "featured" : "Vorgestellt", "newest" : "Neueste", "popular" : "Beliebt", "simulcast" : "Simulcast", "updated" : "Aktualisierte"}, "emptyHistory" : "Ihre Geschichte ist derzeit leer.", "categories" : "Kategorien", "genres" : "Genres", "seasons" : "Jahreszeiten", "emptyBrowse" : "Deine Suche ergab keine Ergebnisse.", "compact" : "Kompakt", "markWatched" : "Markiere als beobachtet", "markUnwatched" : "Als nicht \u00fcberwacht markieren"} | json_instruct | {"type": "object", "properties": {"episode": {"type": "string"}, "queueAdd": {"type": "string"}, "queueRemove": {"type": "string"}, "filter": {"type": "string"}, "media": {"type": "string"}, "loadMore": {"type": "string"}, "types": {"type": "object", "properties": {"anime": {"type": "string"}, "drama": {"type": "string"}, "both": {"type": "string"}}, "required": ["anime", "drama", "both"]}, "filters": {"type": "object", "properties": {"alphabetical": {"type": "string"}, "featured": {"type": "string"}, "newest": {"type": "string"}, "popular": {"type": "string"}, "simulcast": {"type": "string"}, "updated": {"type": "string"}}, "required": ["alphabetical", "featured", "newest", "popular", "simulcast", "updated"]}, "emptyHistory": {"type": "string"}, "categories": {"type": "string"}, "genres": {"type": "string"}, "seasons": {"type": "string"}, "emptyBrowse": {"type": "string"}, "compact": {"type": "string"}, "markWatched": {"type": "string"}, "markUnwatched": {"type": "string"}}, "required": ["episode", "queueAdd", "queueRemove", "filter", "media", "loadMore", "types", "filters", "emptyHistory", "categories", "genres", "seasons", "emptyBrowse", "compact", "markWatched", "markUnwatched"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"width": {"type": "number"}, "rotation": {"type": "number"}, "xCenter": {"type": "number"}, "yCenter": {"type": "number"}, "height": {"type": "number"}}, "required": ["width", "rotation", "xCenter", "yCenter", "height"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"width" : 0.25365728, "rotation" : -0.21172321, "xCenter" : 0.35943478, "yCenter" : 0.4782021, "height" : 0.45094624} | json_instruct | {"type": "object", "properties": {"width": {"type": "number"}, "rotation": {"type": "number"}, "xCenter": {"type": "number"}, "yCenter": {"type": "number"}, "height": {"type": "number"}}, "required": ["width", "rotation", "xCenter", "yCenter", "height"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"localities": {"type": "array", "items": {"type": "string"}}, "state": {"type": "string"}, "postal_code": {"type": "string"}, "locality": {"type": "string"}, "lat": {"type": "number"}, "region": {"type": "object", "properties": {"fips": {"type": "string"}, "abbr": {"type": "string"}, "name": {"type": "string"}}, "required": ["fips", "abbr", "name"]}, "city": {"type": "string"}, "type": {"type": "string"}, "lng": {"type": "number"}, "counties": {"type": "array", "items": {"type": "object", "properties": {"fips": {"type": "string"}, "name": {"type": "string"}}, "required": ["fips", "name"]}}}, "required": ["localities", "state", "postal_code", "locality", "lat", "region", "city", "type", "lng", "counties"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"localities" : ["Urb Nuevo San Antonio, PR", "Hacienda Asturias, PR", "Brisas De Campo Alegre, PR", "Parq Ind San Antonio, PR", "Paseos Reales, PR", "San Antonio, PR", "Urb San Antonio, PR"], "state" : "PR", "postal_code" : "00690", "locality" : "San Antonio, PR", "lat" : 18.49551, "region" : {"fips" : "72", "abbr" : "PR", "name" : "Puerto Rico"}, "city" : "San Antonio", "type" : "STANDARD", "lng" : -67.098671, "counties" : [{"fips" : "005", "name" : "Aguadilla Municipio"}, {"fips" : "071", "name" : "Isabela Municipio"}]} | json_instruct | {"type": "object", "properties": {"localities": {"type": "array", "items": {"type": "string"}}, "state": {"type": "string"}, "postal_code": {"type": "string"}, "locality": {"type": "string"}, "lat": {"type": "number"}, "region": {"type": "object", "properties": {"fips": {"type": "string"}, "abbr": {"type": "string"}, "name": {"type": "string"}}, "required": ["fips", "abbr", "name"]}, "city": {"type": "string"}, "type": {"type": "string"}, "lng": {"type": "number"}, "counties": {"type": "array", "items": {"type": "object", "properties": {"fips": {"type": "string"}, "name": {"type": "string"}}, "required": ["fips", "name"]}}}, "required": ["localities", "state", "postal_code", "locality", "lat", "region", "city", "type", "lng", "counties"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"draggable.bundle.js": {"type": "string"}, "draggable.bundle.legacy.js": {"type": "string"}, "draggable.bundle.legacy.min.js": {"type": "string"}, "draggable.bundle.min.js": {"type": "string"}, "draggable.js": {"type": "string"}, "draggable.min.js": {"type": "string"}, "droppable.js": {"type": "string"}, "droppable.min.js": {"type": "string"}, "plugins.js": {"type": "string"}, "plugins.min.js": {"type": "string"}, "sortable.js": {"type": "string"}, "sortable.min.js": {"type": "string"}, "swappable.js": {"type": "string"}, "swappable.min.js": {"type": "string"}}, "required": ["draggable.bundle.js", "draggable.bundle.legacy.js", "draggable.bundle.legacy.min.js", "draggable.bundle.min.js", "draggable.js", "draggable.min.js", "droppable.js", "droppable.min.js", "plugins.js", "plugins.min.js", "sortable.js", "sortable.min.js", "swappable.js", "swappable.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"draggable.bundle.js" : "sha512-deGcyAF5gX3xB1J9DjYi2JdRFVX1b9BFimzzO+IxOpWsytQeJ/KaruNHsFpX8pckeT6ub7z2L/IwyOQPWMRiiw==", "draggable.bundle.legacy.js" : "sha512-5FKJMXE1q1xFoAN2Gjnz5A6XbV/pgECiLYgIDnstV8fuldTbd93IBY/ANOpVCmv+RjnDi9K4Yjx1gjxXntOxkA==", "draggable.bundle.legacy.min.js" : "sha512-Pwa8IRwcgD4ZSfmth2sty92MsuBmtyC3OQathmfzcq9uhgPxkdFNKlByhmTtD7KBx1+sRRxRTtPLICMrqEnswA==", "draggable.bundle.min.js" : "sha512-C8JheOuOsi2yJYdcLPLP/mdI0OJUEGFk26z93pdB7DUqAzsLc9RB1jBOnoP3TbJoOfPr6ONWRFo8YEN08HxyJQ==", "draggable.js" : "sha512-vkEp1JTumdTVq6iVZryqKww3JB/50onWoCqQey9+GpwI7Jc6pWDNW4dqdvNOOoBLq9In0vS20OfPLUhpAH/VaA==", "draggable.min.js" : "sha512-rg7g2y7xVnGmAmTyoUKPdg8URrI2VVKZgKT6n/+wWgRwhip9xO74xGvu4OWnkfvwzXV56J3fi5UK2W9r8wIMEQ==", "droppable.js" : "sha512-frwljSv8POQAJ3oYXlbd1g3Q9DTjsPGWYaWdShG2T6IHiFn48PDhdKqlQ8fhu/Rq+6bB32YVbcBlrfr8jELSrA==", "droppable.min.js" : "sha512-y2JICN3jc+gQM8lcfchFwXnmovPmTnN2PdnJAtx2rDc97NoKdtAkB91+cqxXyw4ilxSml5nb6Q6OKRT3PGMGig==", "plugins.js" : "sha512-HkowfDMa73U0zogcALEtZhYWhjwJCn96JP9Jld3h3w1WxAaUkDoJScPccKTYGvB1h6wR7ZF+K7i8riuD4W6T+A==", "plugins.min.js" : "sha512-/+VbmZszU0AC4UFMUGn/BKtM+uVIHxiEEl6OvytgHP+gtL6vaPXOyOhTkqqCAEs57hX5CT/1BW53bcw4hRICZQ==", "sortable.js" : "sha512-aBgeRi/CyVj8t4zbjUNknHKI/EZa/0hSeDOXl807cMgEOZ6hq3tbstZrzqM+AwHO379wOHhL53jlmAA0K/UXtw==", "sortable.min.js" : "sha512-+4egb3eelqpW5YWFed5HMx2H7ZEPljwNX7zGwfD6kT1nwzSMA0yW3ovsy2ZUQEcwAUyZNJEllxFivYzUZcnZ6w==", "swappable.js" : "sha512-5gie8CZQuvjydYYrunTtCTkgJvWJb4jvjvOA1Qv15QSCN9TwKosKGCRG3xqOfEKiCJ0YzyOt2foya+L1+DriRw==", "swappable.min.js" : "sha512-1mWnQ13MD/RcqOo8ZBsW71zB66SbZqixz2suYlIXRUs/c9WHs0eeYrUXC+FGbxN2L8HcEKYi/oi1oQ6XOr3GDA=="} | json_instruct | {"type": "object", "properties": {"draggable.bundle.js": {"type": "string"}, "draggable.bundle.legacy.js": {"type": "string"}, "draggable.bundle.legacy.min.js": {"type": "string"}, "draggable.bundle.min.js": {"type": "string"}, "draggable.js": {"type": "string"}, "draggable.min.js": {"type": "string"}, "droppable.js": {"type": "string"}, "droppable.min.js": {"type": "string"}, "plugins.js": {"type": "string"}, "plugins.min.js": {"type": "string"}, "sortable.js": {"type": "string"}, "sortable.min.js": {"type": "string"}, "swappable.js": {"type": "string"}, "swappable.min.js": {"type": "string"}}, "required": ["draggable.bundle.js", "draggable.bundle.legacy.js", "draggable.bundle.legacy.min.js", "draggable.bundle.min.js", "draggable.js", "draggable.min.js", "droppable.js", "droppable.min.js", "plugins.js", "plugins.min.js", "sortable.js", "sortable.min.js", "swappable.js", "swappable.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"id": {"type": "integer"}, "title": {"type": "array", "items": {"type": "string"}}, "description": {"type": "array", "items": {"type": "string"}}, "paths": {"type": "array", "items": {"type": "string"}}, "location": {"type": "string"}, "wayto": {"type": "object", "properties": {"20458": {"type": "string"}, "20459": {"type": "string"}, "12269": {"type": "string"}}, "required": ["20458", "20459", "12269"]}, "timeto": {"type": "object", "properties": {"20458": {"type": "number"}, "20459": {"type": "number"}, "12269": {"type": "number"}}, "required": ["20458", "20459", "12269"]}}, "required": ["id", "title", "description", "paths", "location", "wayto", "timeto"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : 20450, "title" : ["[Loelita's Lockpicks]", "[Loelita's Outfitting]"], "description" : ["Beneath an etched seaglass ceiling, a silken sea-themed tapestry hangs on one of the glazed bamboo walls. A heavy lead glass display case and a wide knotted oak counter sit in opposite corners while a braided seagrass rug rests on a glazed bamboo floor."], "paths" : ["Obvious exits: north, west, out"], "location" : "Mist Harbor", "wayto" : {"20458" : "west", "20459" : "north", "12269" : "out"}, "timeto" : {"20458" : 0.2, "20459" : 0.2, "12269" : 0.2}} | json_instruct | {"type": "object", "properties": {"id": {"type": "integer"}, "title": {"type": "array", "items": {"type": "string"}}, "description": {"type": "array", "items": {"type": "string"}}, "paths": {"type": "array", "items": {"type": "string"}}, "location": {"type": "string"}, "wayto": {"type": "object", "properties": {"20458": {"type": "string"}, "20459": {"type": "string"}, "12269": {"type": "string"}}, "required": ["20458", "20459", "12269"]}, "timeto": {"type": "object", "properties": {"20458": {"type": "number"}, "20459": {"type": "number"}, "12269": {"type": "number"}}, "required": ["20458", "20459", "12269"]}}, "required": ["id", "title", "description", "paths", "location", "wayto", "timeto"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"values": {"type": "array", "items": {"type": "string"}}}, "required": ["values"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"values" : ["skymode4:modules/capacitor_bank/main", "skymode4:modules/spike/main"]} | json_instruct | {"type": "object", "properties": {"values": {"type": "array", "items": {"type": "string"}}}, "required": ["values"], "$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"}, "fields": {"type": "array", "items": {"type": "string"}}, "abstract": {"type": "string"}, "citation": {"type": "string"}, "year": {"type": "string"}, "departments": {"type": "array", "items": {"type": "string"}}, "conf": {"type": "string"}, "authors": {"type": "array", "items": {"type": "string"}}, "pages": {"type": "integer"}}, "required": ["title", "fields", "abstract", "citation", "year", "departments", "conf", "authors", "pages"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"title" : "ThumbReels: query sensitive web video previews based on temporal, crowdsourced, semantic tagging.", "fields" : ["crowdsourcing", "online search", "multimedia", "thumbnail", "metadata"], "abstract" : "During online search, the user's expectations often differ from those of the author. This is known as the \"intention gap\" and is particularly problematic when searching for and discriminating between online video content. An author uses description and meta-data tags to label their content, but often cannot predict alternate interpretations or appropriations of their work. To address this intention gap, we present ThumbReels, a concept for query-sensitive video previews generated from crowdsourced, temporally defined semantic tagging. Further, we supply an open-source tool that supports on-the-fly temporal tagging of videos, whose output can be used for later search queries. A first user study validates the tool and concept. We then present a second study that shows participants found ThumbReels to better represent search terms than contemporary preview techniques.", "citation" : "Citations (6)", "year" : "2014", "departments" : ["Lancaster University", "Lancaster University", "Lancaster University"], "conf" : "chi", "authors" : ["Barnaby Craggs.....http://dblp.org/pers/hd/c/Craggs:Barnaby", "Myles Kilgallon Scott.....http://dblp.org/pers/hd/s/Scott:Myles_Kilgallon", "Jason Alexander.....http://dblp.org/pers/hd/a/Alexander:Jason"], "pages" : 4} | json_instruct | {"type": "object", "properties": {"title": {"type": "string"}, "fields": {"type": "array", "items": {"type": "string"}}, "abstract": {"type": "string"}, "citation": {"type": "string"}, "year": {"type": "string"}, "departments": {"type": "array", "items": {"type": "string"}}, "conf": {"type": "string"}, "authors": {"type": "array", "items": {"type": "string"}}, "pages": {"type": "integer"}}, "required": ["title", "fields", "abstract", "citation", "year", "departments", "conf", "authors", "pages"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"month": {"type": "string"}, "num": {"type": "integer"}, "link": {"type": "string"}, "year": {"type": "string"}, "news": {"type": "string"}, "safe_title": {"type": "string"}, "transcript": {"type": "string"}, "alt": {"type": "string"}, "img": {"type": "string"}, "title": {"type": "string"}, "day": {"type": "string"}, "mirror_img": {"type": "string"}}, "required": ["month", "num", "link", "year", "news", "safe_title", "transcript", "alt", "img", "title", "day", "mirror_img"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"month" : "5", "num" : 589, "link" : "", "year" : "2009", "news" : "", "safe_title" : "Designated Drivers", "transcript" : "[[Four people are outside a bar.]]\nMan #1: Wait, who's driving?\nMan #2: Why?\nMan #2: Tom, right?\n\nMan #1: Yes, but we have to leave in two groups. One of which will need at least two drivers.\n\n[[There is a complicated flowchart with arrows between a group of people and 3 locations, labeled 'bar', 'dinner', and 'party'. Lines point from the group of people to the bar, then to the party or dinner, then from dinner to the party and vice versa, as well as leaving the panel or entering the panel in several other directions.]]\nNarrator: Someone has to get Paul, and Julia and Emily have to leave by 10:00.\nNarrator: The logistics of who can get drunk are nontrivial.\n\n[[The third man has an animal on a string behind him, which was previously not visible.]]\nMan #3: Yeah, and I can't ride in a car with the wolf because he'll eat my goat.\nMan #1: Dammit, guys.\n\n{{Title text: Calling a cab means cutting into beer money.}}", "alt" : "Calling a cab means cutting into beer money.", "img" : "https://imgs.xkcd.com/comics/designated_drivers.png", "title" : "Designated Drivers", "day" : "27", "mirror_img" : "https://raw.githubusercontent.com/aghontpi/mirror-xkcd-api/main/api/589/designated_drivers.png"} | json_instruct | {"type": "object", "properties": {"month": {"type": "string"}, "num": {"type": "integer"}, "link": {"type": "string"}, "year": {"type": "string"}, "news": {"type": "string"}, "safe_title": {"type": "string"}, "transcript": {"type": "string"}, "alt": {"type": "string"}, "img": {"type": "string"}, "title": {"type": "string"}, "day": {"type": "string"}, "mirror_img": {"type": "string"}}, "required": ["month", "num", "link", "year", "news", "safe_title", "transcript", "alt", "img", "title", "day", "mirror_img"], "$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#"}
| [["532930203201", "\u897f\u5c71\u6751\u59d4\u4f1a", "210", "0"], ["532930203202", "\u56e2\u7ed3\u6751\u59d4\u4f1a", "220", "0"], ["532930203203", "\u7acb\u576a\u6751\u59d4\u4f1a", "220", "0"], ["532930203204", "\u5efa\u8bbe\u6751\u59d4\u4f1a", "220", "0"], ["532930203205", "\u80dc\u5229\u6751\u59d4\u4f1a", "220", "0"]] | json_instruct | {"type": "array", "items": {"type": "array", "items": {"type": "string"}}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "license": {"type": "string"}, "type": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}}, "config": {"type": "object", "properties": {"vendor-dir": {"type": "string"}}, "required": ["vendor-dir"]}, "require": {"type": "object", "properties": {"skyzyx/alfred-workflow-builder": {"type": "string"}, "cakephp/collection": {"type": "string"}, "rodneyrehm/plist": {"type": "string"}}, "required": ["skyzyx/alfred-workflow-builder", "cakephp/collection", "rodneyrehm/plist"]}, "minimum-stability": {"type": "string"}, "prefer-stable": {"type": "boolean"}, "autoload": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"Workflow\\": {"type": "string"}}, "required": ["Workflow\\"]}}, "required": ["psr-4"]}, "scripts": {"type": "object", "properties": {}, "required": []}}, "required": ["name", "description", "license", "type", "authors", "config", "require", "minimum-stability", "prefer-stable", "autoload", "scripts"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "ramiroaraujo/alfred-workflow-builder", "description" : "A basic PHP workflow builder as a composer project", "license" : "MIT", "type" : "project", "authors" : [{"name" : "Ramiro Araujo", "email" : "rama.araujo@gmail.com"}], "config" : {"vendor-dir" : "workflow/vendor"}, "require" : {"skyzyx/alfred-workflow-builder" : "dev-master", "cakephp/collection" : "3.*", "rodneyrehm/plist" : "^2.0"}, "minimum-stability" : "stable", "prefer-stable" : true, "autoload" : {"psr-4" : {"Workflow\\" : "workflow"}}, "scripts" : {}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "license": {"type": "string"}, "type": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}}, "config": {"type": "object", "properties": {"vendor-dir": {"type": "string"}}, "required": ["vendor-dir"]}, "require": {"type": "object", "properties": {"skyzyx/alfred-workflow-builder": {"type": "string"}, "cakephp/collection": {"type": "string"}, "rodneyrehm/plist": {"type": "string"}}, "required": ["skyzyx/alfred-workflow-builder", "cakephp/collection", "rodneyrehm/plist"]}, "minimum-stability": {"type": "string"}, "prefer-stable": {"type": "boolean"}, "autoload": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"Workflow\\": {"type": "string"}}, "required": ["Workflow\\"]}}, "required": ["psr-4"]}, "scripts": {"type": "object", "properties": {}, "required": []}}, "required": ["name", "description", "license", "type", "authors", "config", "require", "minimum-stability", "prefer-stable", "autoload", "scripts"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"type": {"type": "string"}, "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" : [[[-70.250957, 43.700994], [-70.249182, 43.707365], [-70.249037, 43.710681], [-70.245979, 43.715648], [-70.24642, 43.720409], [-70.2407, 43.725343], [-70.230749, 43.731747], [-70.224548, 43.741626], [-70.219024, 43.748565], [-70.169036, 43.724037], [-70.184663, 43.709114], [-70.207391, 43.694367], [-70.213122, 43.688053], [-70.217104, 43.681123], [-70.245735, 43.690421], [-70.248864, 43.694997], [-70.250957, 43.700994]]]}, "type" : "Feature", "properties" : {"cartodb_id" : 29491}}]} | 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#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"id": {"type": "integer"}, "cites": {"type": "integer"}, "cited_by": {"type": "integer"}, "reference": {"type": "null"}}, "required": ["id", "cites", "cited_by", "reference"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : 8039, "cites" : 50, "cited_by" : 7, "reference" : null} | json_instruct | {"type": "object", "properties": {"id": {"type": "integer"}, "cites": {"type": "integer"}, "cited_by": {"type": "integer"}, "reference": {"type": "null"}}, "required": ["id", "cites", "cited_by", "reference"], "$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" : 1309768709, "type" : "Feature", "properties" : {"src:alt_label" : "geonames", "src:geom" : "geonames", "wof:geomhash" : "6e423c0632387376011f8f2e0ab203d3", "wof:id" : 1309768709, "wof:repo" : "whosonfirst-data-admin-ro"}, "bbox" : [23.18016, 44.78015, 23.18016, 44.78015], "geometry" : {"coordinates" : [23.18016, 44.78015], "type" : "Point"}} | json_instruct | {"type": "object", "properties": {"id": {"type": "integer"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"src:alt_label": {"type": "string"}, "src:geom": {"type": "string"}, "wof:geomhash": {"type": "string"}, "wof:id": {"type": "integer"}, "wof:repo": {"type": "string"}}, "required": ["src:alt_label", "src:geom", "wof:geomhash", "wof:id", "wof:repo"]}, "bbox": {"type": "array", "items": {"type": "number"}}, "geometry": {"type": "object", "properties": {"coordinates": {"type": "array", "items": {"type": "number"}}, "type": {"type": "string"}}, "required": ["coordinates", "type"]}}, "required": ["id", "type", "properties", "bbox", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"main": {"type": "object", "properties": {"sortleftovers": {"type": "boolean"}, "convertembed": {"type": "boolean"}}, "required": ["sortleftovers", "convertembed"]}, "byteam": {"type": "object", "properties": {"default_no_of_teams": {"type": "integer"}}, "required": ["default_no_of_teams"]}, "bypergroup": {"type": "object", "properties": {"default #of pergroup": {"type": "integer"}}, "required": ["default #of pergroup"]}, "blips": {"type": "array", "items": {"type": "string"}}}, "required": ["main", "byteam", "bypergroup", "blips"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"main" : {"sortleftovers" : true, "convertembed" : true}, "byteam" : {"default_no_of_teams" : 2}, "bypergroup" : {"default #of pergroup" : 3}, "blips" : ["Teams are Made!", "Here are teams!", "Fight!", "Groups", "Teams", "Here you go!"]} | json_instruct | {"type": "object", "properties": {"main": {"type": "object", "properties": {"sortleftovers": {"type": "boolean"}, "convertembed": {"type": "boolean"}}, "required": ["sortleftovers", "convertembed"]}, "byteam": {"type": "object", "properties": {"default_no_of_teams": {"type": "integer"}}, "required": ["default_no_of_teams"]}, "bypergroup": {"type": "object", "properties": {"default #of pergroup": {"type": "integer"}}, "required": ["default #of pergroup"]}, "blips": {"type": "array", "items": {"type": "string"}}}, "required": ["main", "byteam", "bypergroup", "blips"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"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" : "warpstonemod:block/warpstone_block"}}} | 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#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"activities_easter": {"type": "array", "items": {}}, "activities_epiphany": {"type": "array", "items": {}}, "activities_michaelmas": {"type": "array", "items": {}}, "code": {"type": "string"}, "title": {"type": "string"}}, "required": ["activities_easter", "activities_epiphany", "activities_michaelmas", "code", "title"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"activities_easter" : [], "activities_epiphany" : [], "activities_michaelmas" : [], "code" : "ANTH3237", "title" : "Poison, Pollution, and The Chemical Anthropocene"} | json_instruct | {"type": "object", "properties": {"activities_easter": {"type": "array", "items": {}}, "activities_epiphany": {"type": "array", "items": {}}, "activities_michaelmas": {"type": "array", "items": {}}, "code": {"type": "string"}, "title": {"type": "string"}}, "required": ["activities_easter", "activities_epiphany", "activities_michaelmas", "code", "title"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"author": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "name"]}, "date": {"type": "object", "properties": {"day": {"type": "integer"}, "full": {"type": "integer"}, "month": {"type": "integer"}, "week": {"type": "integer"}}, "required": ["day", "full", "month", "week"]}, "id": {"type": "string"}, "picture": {"type": "object", "properties": {"filesize": {"type": "integer"}, "fullUrl": {"type": "string"}, "hash": {"type": "string"}, "height": {"type": "integer"}, "lqip": {"type": "string"}, "url": {"type": "string"}, "width": {"type": "integer"}}, "required": ["filesize", "fullUrl", "hash", "height", "lqip", "url", "width"]}, "score": {"type": "object", "properties": {"comments": {"type": "integer"}, "downs": {"type": "integer"}, "isCurated": {"type": "boolean"}, "ratio": {"type": "number"}, "ups": {"type": "integer"}, "value": {"type": "integer"}}, "required": ["comments", "downs", "isCurated", "ratio", "ups", "value"]}, "subreddit": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "name"]}, "tags": {"type": "array", "items": {"type": "string"}}, "title": {"type": "string"}, "url": {"type": "string"}}, "required": ["author", "date", "id", "picture", "score", "subreddit", "tags", "title", "url"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"author" : {"id" : "t2_ebdw9zkj", "name" : "VioletOrchid85"}, "date" : {"day" : 1638748800, "full" : 1638821765, "month" : 1638316800, "week" : 1638662400}, "id" : "t3_ragkop", "picture" : {"filesize" : 92659, "fullUrl" : "https://preview.redd.it/wvdzjmwxcz381.jpg?auto=webp&s=54f947e979edf74b3e75b5aaf4dddaf1c5167c92", "hash" : "aca7d4d612", "height" : 480, "lqip" : "data:image/jpg;base64,/9j/2wBDAAYEBQYFBAYGBQYHBwYIChAKCgkJChQODwwQFxQYGBcUFhYaHSUfGhsjHBYWICwgIyYnKSopGR8tMC0oMCUoKSj/2wBDAQcHBwoIChMKChMoGhYaKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCj/wAARCAAMABADASIAAhEBAxEB/8QAFgABAQEAAAAAAAAAAAAAAAAABgME/8QAJBAAAgIBAwMFAQAAAAAAAAAAAQMCBBEABRITIUEGFDFRYnH/xAAUAQEAAAAAAAAAAAAAAAAAAAAE/8QAGREBAAIDAAAAAAAAAAAAAAAAAQACESEx/9oADAMBAAIRAxEAPwARtO2JjXSySlzn0YMirhE5iYjuO33rWxNA7ReWKlSToIa08kATjnOPGP5onT3p8TWd0kmcEhYzyxjiPGdVueorPt7eEVgWLlEkCWfg/rRbjyINGZ//2Q==", "url" : "https://preview.redd.it/wvdzjmwxcz381.jpg?width=640&crop=smart&auto=webp&s=dc4e0a7a825fd235d75efa508d2739e5fe74c0d3", "width" : 640}, "score" : {"comments" : 4, "downs" : 0, "isCurated" : false, "ratio" : 0.96, "ups" : 50, "value" : 50}, "subreddit" : {"id" : "t5_3isai", "name" : "dndmaps"}, "tags" : ["Dungeon"], "title" : "HeroQuest - Main Board", "url" : "https://www.reddit.com/r/dndmaps/comments/ragkop/heroquest_main_board/"} | json_instruct | {"type": "object", "properties": {"author": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "name"]}, "date": {"type": "object", "properties": {"day": {"type": "integer"}, "full": {"type": "integer"}, "month": {"type": "integer"}, "week": {"type": "integer"}}, "required": ["day", "full", "month", "week"]}, "id": {"type": "string"}, "picture": {"type": "object", "properties": {"filesize": {"type": "integer"}, "fullUrl": {"type": "string"}, "hash": {"type": "string"}, "height": {"type": "integer"}, "lqip": {"type": "string"}, "url": {"type": "string"}, "width": {"type": "integer"}}, "required": ["filesize", "fullUrl", "hash", "height", "lqip", "url", "width"]}, "score": {"type": "object", "properties": {"comments": {"type": "integer"}, "downs": {"type": "integer"}, "isCurated": {"type": "boolean"}, "ratio": {"type": "number"}, "ups": {"type": "integer"}, "value": {"type": "integer"}}, "required": ["comments", "downs", "isCurated", "ratio", "ups", "value"]}, "subreddit": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "name"]}, "tags": {"type": "array", "items": {"type": "string"}}, "title": {"type": "string"}, "url": {"type": "string"}}, "required": ["author", "date", "id", "picture", "score", "subreddit", "tags", "title", "url"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"parent": {"type": "string"}}, "required": ["parent"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"parent" : "onewayglass:block/dead_fire_coral_fan_glass"} | 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": "object", "properties": {"isEditable": {"type": "boolean"}, "cleverbot": {"type": "object", "properties": {"apiUser": {"type": "string"}, "apiKey": {"type": "string"}}, "required": ["apiUser", "apiKey"]}, "discord": {"type": "object", "properties": {"token": {"type": "string"}}, "required": ["token"]}}, "required": ["isEditable", "cleverbot", "discord"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"isEditable" : false, "cleverbot" : {"apiUser" : "Bfa7D3rlzjl3imaH", "apiKey" : "KFWAdnsfyoDIRqyxMfZu3mWgwwkr5fus"}, "discord" : {"token" : "NDA3NDQ3ODE0MjIyNzc0Mjcy.DVBpKA.6zup2uPxyiigiHsZYfTnztVf1N4"}} | json_instruct | {"type": "object", "properties": {"isEditable": {"type": "boolean"}, "cleverbot": {"type": "object", "properties": {"apiUser": {"type": "string"}, "apiKey": {"type": "string"}}, "required": ["apiUser", "apiKey"]}, "discord": {"type": "object", "properties": {"token": {"type": "string"}}, "required": ["token"]}}, "required": ["isEditable", "cleverbot", "discord"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"index": {"type": "integer"}, "hash": {"type": "integer"}, "artDyeHash": {"type": "integer"}, "redacted": {"type": "boolean"}, "dyeManifestHash": {"type": "integer"}, "blacklisted": {"type": "boolean"}}, "required": ["index", "hash", "artDyeHash", "redacted", "dyeManifestHash", "blacklisted"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"index" : 4173, "hash" : 2732077397, "artDyeHash" : 2732077397, "redacted" : false, "dyeManifestHash" : 3321385813, "blacklisted" : false} | json_instruct | {"type": "object", "properties": {"index": {"type": "integer"}, "hash": {"type": "integer"}, "artDyeHash": {"type": "integer"}, "redacted": {"type": "boolean"}, "dyeManifestHash": {"type": "integer"}, "blacklisted": {"type": "boolean"}}, "required": ["index", "hash", "artDyeHash", "redacted", "dyeManifestHash", "blacklisted"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "array", "items": {"type": "array", "items": {"type": "string"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [["511304124201", "\u5e99\u575d\u6751\u6751\u6c11\u59d4\u5458\u4f1a", "220", "0"], ["511304124202", "\u6c34\u9601\u6881\u6751\u6751\u6c11\u59d4\u5458\u4f1a", "220", "0"], ["511304124203", "\u5927\u5634\u6751\u6751\u6c11\u59d4\u5458\u4f1a", "220", "0"], ["511304124204", "\u7389\u576a\u5be8\u6751\u6751\u6c11\u59d4\u5458\u4f1a", "220", "0"], ["511304124205", "\u7ea2\u5ca9\u5b50\u6751\u6751\u6c11\u59d4\u5458\u4f1a", "220", "0"], ["511304124206", "\u5fb7\u80dc\u6c9f\u6751\u6751\u6c11\u59d4\u5458\u4f1a", "220", "0"], ["511304124207", "\u77f3\u5858\u57ad\u6751\u6751\u6c11\u59d4\u5458\u4f1a", "220", "0"], ["511304124208", "\u7ea2\u91d1\u5802\u6751\u6751\u6c11\u59d4\u5458\u4f1a", "220", "0"], ["511304124209", "\u7eb8\u5382\u6865\u6751\u6751\u6c11\u59d4\u5458\u4f1a", "220", "0"], ["511304124210", "\u5927\u78e8\u57ad\u6751\u6751\u6c11\u59d4\u5458\u4f1a", "220", "0"], ["511304124211", "\u4e94\u6850\u5e99\u6751\u6751\u6c11\u59d4\u5458\u4f1a", "220", "0"], ["511304124212", "\u534e\u5174\u6751\u6751\u6c11\u59d4\u5458\u4f1a", "121", "0"], ["511304124213", "\u77f3\u677f\u6ee9\u6751\u6751\u6c11\u59d4\u5458\u4f1a", "220", "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": {"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" : "0x5545ccecd05ef6943bc397773c72252cd7560f41", "tool" : "oyente", "start" : 1563569769.0670042, "end" : 1563569772.6766808, "duration" : 3.6096765995025635, "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#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"an10.68:1.1": {"type": "string"}, "an10.68:2.1": {"type": "string"}, "an10.68:3.1": {"type": "string"}, "an10.68:4.1": {"type": "string"}, "an10.68:5.1": {"type": "string"}, "an10.68:6.1": {"type": "string"}, "an10.68:7.1": {"type": "string"}}, "required": ["an10.68:1.1", "an10.68:2.1", "an10.68:3.1", "an10.68:4.1", "an10.68:5.1", "an10.68:6.1", "an10.68:7.1"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"an10.68:1.1" : "ms17A10_489, msdiv68, sc1, sya24.135", "an10.68:2.1" : "ms17A10_490, pts-vp-pli5.126, sc2", "an10.68:3.1" : "cck24.113, dr24.135, ms17A10_491, ndp19.200, sc3", "an10.68:4.1" : "bj23.228, csp1ed17.357, csp2ed17.357, ms17A10_492, sc4, sya24.136, vri40.105", "an10.68:5.1" : "cck24.114, dr24.136, ms17A10_493, pts-vp-pli5.127, sc5", "an10.68:6.1" : "ms17A10_494, ndp19.201, sc6, sya24.137", "an10.68:7.1" : "bj23.230, cck24.115, csp1ed17.358, csp2ed17.358, dr24.137, ms17A10_495, pts-vp-pli5.128, sc7, vri40.106"} | json_instruct | {"type": "object", "properties": {"an10.68:1.1": {"type": "string"}, "an10.68:2.1": {"type": "string"}, "an10.68:3.1": {"type": "string"}, "an10.68:4.1": {"type": "string"}, "an10.68:5.1": {"type": "string"}, "an10.68:6.1": {"type": "string"}, "an10.68:7.1": {"type": "string"}}, "required": ["an10.68:1.1", "an10.68:2.1", "an10.68:3.1", "an10.68:4.1", "an10.68:5.1", "an10.68:6.1", "an10.68:7.1"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"no_of_atoms": {"type": "integer"}, "centre_of_mass": {"type": "array", "items": {"type": "number"}}, "maximum_diameter": {"type": "object", "properties": {"diameter": {"type": "number"}, "atom_1": {"type": "integer"}, "atom_2": {"type": "integer"}}, "required": ["diameter", "atom_1", "atom_2"]}, "pore_diameter": {"type": "object", "properties": {"diameter": {"type": "number"}, "atom": {"type": "integer"}}, "required": ["diameter", "atom"]}, "pore_volume": {"type": "number"}, "pore_diameter_opt": {"type": "object", "properties": {"diameter": {"type": "number"}, "atom_1": {"type": "integer"}, "centre_of_mass": {"type": "array", "items": {"type": "number"}}}, "required": ["diameter", "atom_1", "centre_of_mass"]}, "pore_volume_opt": {"type": "number"}, "windows": {"type": "object", "properties": {"diameters": {"type": "array", "items": {"type": "number"}}, "centre_of_mass": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}, "required": ["diameters", "centre_of_mass"]}}, "required": ["no_of_atoms", "centre_of_mass", "maximum_diameter", "pore_diameter", "pore_volume", "pore_diameter_opt", "pore_volume_opt", "windows"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"no_of_atoms" : 522, "centre_of_mass" : [23.906121306902985, 9.453902148866606, 16.250795593528423], "maximum_diameter" : {"diameter" : 25.993567519378526, "atom_1" : 268, "atom_2" : 417}, "pore_diameter" : {"diameter" : 1.8227660666766279, "atom" : 124}, "pore_volume" : 3.1709648453433408, "pore_diameter_opt" : {"diameter" : 4.178438452198634, "atom_1" : 103, "centre_of_mass" : [24.8175043402413, 8.542519115528291, 15.979669440454398]}, "pore_volume_opt" : 38.19800231222232, "windows" : {"diameters" : [2.691310551807271, 2.9272527037204186, 2.984063318106307, 2.9194137047311544], "centre_of_mass" : [[22.577017223271454, 8.398891855261354, 17.89693505326048], [27.225787393812542, 7.982807327604947, 17.360344022183416], [25.500614982189038, 11.47615072344859, 14.265591982386743], [24.958276651125797, 6.5468504898725035, 14.952822310485635]]}} | json_instruct | {"type": "object", "properties": {"no_of_atoms": {"type": "integer"}, "centre_of_mass": {"type": "array", "items": {"type": "number"}}, "maximum_diameter": {"type": "object", "properties": {"diameter": {"type": "number"}, "atom_1": {"type": "integer"}, "atom_2": {"type": "integer"}}, "required": ["diameter", "atom_1", "atom_2"]}, "pore_diameter": {"type": "object", "properties": {"diameter": {"type": "number"}, "atom": {"type": "integer"}}, "required": ["diameter", "atom"]}, "pore_volume": {"type": "number"}, "pore_diameter_opt": {"type": "object", "properties": {"diameter": {"type": "number"}, "atom_1": {"type": "integer"}, "centre_of_mass": {"type": "array", "items": {"type": "number"}}}, "required": ["diameter", "atom_1", "centre_of_mass"]}, "pore_volume_opt": {"type": "number"}, "windows": {"type": "object", "properties": {"diameters": {"type": "array", "items": {"type": "number"}}, "centre_of_mass": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}, "required": ["diameters", "centre_of_mass"]}}, "required": ["no_of_atoms", "centre_of_mass", "maximum_diameter", "pore_diameter", "pore_volume", "pore_diameter_opt", "pore_volume_opt", "windows"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"type": {"type": "string"}, "objects": {"type": "object", "properties": {"E01020870": {"type": "object", "properties": {"type": {"type": "string"}, "crs": {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"]}}, "required": ["type", "properties"]}, "geometries": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"OA11CD": {"type": "string"}, "LAD11CD": {"type": "string"}}, "required": ["OA11CD", "LAD11CD"]}, "arcs": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}}, "required": ["type", "properties", "arcs"]}}}, "required": ["type", "crs", "geometries"]}}, "required": ["E01020870"]}, "arcs": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}}, "transform": {"type": "object", "properties": {"scale": {"type": "array", "items": {"type": "number"}}, "translate": {"type": "array", "items": {"type": "number"}}}, "required": ["scale", "translate"]}}, "required": ["type", "objects", "arcs", "transform"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"type" : "Topology", "objects" : {"E01020870" : {"type" : "GeometryCollection", "crs" : {"type" : "name", "properties" : {"name" : "urn:ogc:def:crs:OGC:1.3:CRS84"}}, "geometries" : [{"type" : "Polygon", "properties" : {"OA11CD" : "E00105929", "LAD11CD" : "E06000047"}, "arcs" : [[0, 1, 2]]}, {"type" : "Polygon", "properties" : {"OA11CD" : "E00105933", "LAD11CD" : "E06000047"}, "arcs" : [[3, 4, 5]]}, {"type" : "Polygon", "properties" : {"OA11CD" : "E00105934", "LAD11CD" : "E06000047"}, "arcs" : [[6, -1, 7, 8, -4]]}, {"type" : "Polygon", "properties" : {"OA11CD" : "E00105935", "LAD11CD" : "E06000047"}, "arcs" : [[9, 10, -5, -9]]}, {"type" : "Polygon", "properties" : {"OA11CD" : "E00105937", "LAD11CD" : "E06000047"}, "arcs" : [[-10, -8, -3, 11]]}]}}, "arcs" : [[[5776, 4195], [267, 102], [-66, 603], [588, 337], [64, -314], [366, 261], [83, -466], [290, 85], [-137, 697], [337, 321]], [[7568, 5821], [994, -347], [419, -766], [-91, -654], [1109, -292], [-53, -297], [-321, -330], [-1264, 354], [-882, -847]], [[7479, 2642], [-1029, -180], [-203, 709], [664, -94], [-158, 828], [-564, -262], [-413, 552]], [[6101, 6846], [-139, -534], [-243, -54], [-27, 489], [-589, -659], [-869, -266]], [[4234, 5822], [-382, -96], [-245, -696], [-1451, -637], [-377, -33], [-142, 824], [-1089, -475], [-548, 177]], [[0, 4886], [378, 230], [624, 323], [188, -260], [981, 1036], [661, 1693], [-336, 1608], [471, 483], [3284, -1262], [217, -1568], [-367, -323]], [[6101, 6846], [525, -630], [1085, 553], [-143, -948]], [[5776, 4195], [-277, -46], [-307, 1082], [-561, -158], [-352, 314]], [[4279, 5387], [-45, 435]], [[4279, 5387], [620, -3347], [262, -13], [439, -1200], [714, -413]], [[6314, 414], [-36, -414], [-2876, 888], [-993, 774], [-1196, 1772], [-1213, 1452]], [[7479, 2642], [-268, -907], [-838, -635], [294, -428], [-353, -258]]], "transform" : {"scale" : [1.808367583543866e-06, 7.5953075372127e-07], "translate" : [-1.699807229260088, 54.650732966101344]}} | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "objects": {"type": "object", "properties": {"E01020870": {"type": "object", "properties": {"type": {"type": "string"}, "crs": {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"]}}, "required": ["type", "properties"]}, "geometries": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"OA11CD": {"type": "string"}, "LAD11CD": {"type": "string"}}, "required": ["OA11CD", "LAD11CD"]}, "arcs": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}}, "required": ["type", "properties", "arcs"]}}}, "required": ["type", "crs", "geometries"]}}, "required": ["E01020870"]}, "arcs": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}}, "transform": {"type": "object", "properties": {"scale": {"type": "array", "items": {"type": "number"}}, "translate": {"type": "array", "items": {"type": "number"}}}, "required": ["scale", "translate"]}}, "required": ["type", "objects", "arcs", "transform"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "license": {"type": "object", "properties": {"key": {"type": "string"}, "name": {"type": "string"}, "spdx_id": {"type": "string"}, "url": {"type": "string"}}, "required": ["key", "name", "spdx_id", "url"]}, "starNum": {"type": "integer"}, "folkNum": {"type": "integer"}, "watchNum": {"type": "integer"}, "topic": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "description", "license", "starNum", "folkNum", "watchNum", "topic"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "icon-font-to-png", "description" : "Python script (and library) for exporting icons from icon fonts (e.g. Font Awesome, Octicons) as PNG images", "license" : {"key" : "mit", "name" : "MIT License", "spdx_id" : "MIT", "url" : "https://api.github.com/licenses/mit"}, "starNum" : 125, "folkNum" : 13, "watchNum" : 125, "topic" : ["command-line-tool", "font-awesome", "icon-font", "octicons", "python"]} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "license": {"type": "object", "properties": {"key": {"type": "string"}, "name": {"type": "string"}, "spdx_id": {"type": "string"}, "url": {"type": "string"}}, "required": ["key", "name", "spdx_id", "url"]}, "starNum": {"type": "integer"}, "folkNum": {"type": "integer"}, "watchNum": {"type": "integer"}, "topic": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "description", "license", "starNum", "folkNum", "watchNum", "topic"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"uuid": {"type": "string"}, "name": {"type": "string"}, "description": {"type": "string"}, "extraSearchTerms": {"type": "array", "items": {}}, "tags": {"type": "array", "items": {"type": "string"}}, "code": {"type": "string"}, "location": {"type": "string"}, "dependencies": {"type": "array", "items": {"type": "object", "properties": {"groupId": {"type": "string"}, "artifactId": {"type": "string"}, "version": {"type": "string"}}, "required": ["groupId", "artifactId", "version"]}}}, "required": ["uuid", "name", "description", "extraSearchTerms", "tags", "code", "location", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"uuid" : "aa03be0a-0a7c-3366-9407-f04743ce18bf", "name" : "Shell", "description" : "new Shell", "extraSearchTerms" : [], "tags" : ["eclipse", "swt", "widget"], "code" : "${shellType:newType(org.eclipse.swt.widgets.Shell)} ${shell:newName(org.eclipse.swt.widgets.Shell)} = new ${shellType}(${parent:var(org.eclipse.swt.widgets.Shell)}, ${style:link('SWT.DIALOG_TRIM | SWT.PRIMARY_MODAL', 'SWT.DIALOG_TRIM | SWT.MODELESS', 'SWT.SHELL_TRIM | SWT.MODELESS', 'SWT.SHELL_TRIM | SWT.PRIMARY_MODAL')});\n${shell}.setLayout(new ${layoutType:newType(org.eclipse.swt.layout.GridLayout)}(${numberColumns:link(1, 2, 3, 4, 5)}, ${equalColumns:link(false, true)}));\n\n${imp:import(org.eclipse.swt.SWT)}${cursor}\n\n${shell}.pack();\n\n${shell}.open();", "location" : "JAVA_STATEMENTS", "dependencies" : [{"groupId" : "org.eclipse.swt", "artifactId" : "org.eclipse.swt", "version" : "0.0.0"}, {"groupId" : "jre", "artifactId" : "jre", "version" : "0.0.0"}]} | json_instruct | {"type": "object", "properties": {"uuid": {"type": "string"}, "name": {"type": "string"}, "description": {"type": "string"}, "extraSearchTerms": {"type": "array", "items": {}}, "tags": {"type": "array", "items": {"type": "string"}}, "code": {"type": "string"}, "location": {"type": "string"}, "dependencies": {"type": "array", "items": {"type": "object", "properties": {"groupId": {"type": "string"}, "artifactId": {"type": "string"}, "version": {"type": "string"}}, "required": ["groupId", "artifactId", "version"]}}}, "required": ["uuid", "name", "description", "extraSearchTerms", "tags", "code", "location", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"issuer_ca_id": {"type": "integer"}, "issuer_name": {"type": "string"}, "name_value": {"type": "string"}, "min_cert_id": {"type": "integer"}, "min_entry_timestamp": {"type": "string"}, "not_before": {"type": "string"}, "not_after": {"type": "string"}}, "required": ["issuer_ca_id", "issuer_name", "name_value", "min_cert_id", "min_entry_timestamp", "not_before", "not_after"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"issuer_ca_id" : 16418, "issuer_name" : "C=US, O=Let's Encrypt, CN=Let's Encrypt Authority X3", "name_value" : "hcnode-express-test-review-test-obadng.34.80.7.222.nip.io", "min_cert_id" : 1204941915, "min_entry_timestamp" : "2019-02-15T07:59:44.795", "not_before" : "2019-02-15T06:59:44", "not_after" : "2019-05-16T06:59:44"} | json_instruct | {"type": "object", "properties": {"issuer_ca_id": {"type": "integer"}, "issuer_name": {"type": "string"}, "name_value": {"type": "string"}, "min_cert_id": {"type": "integer"}, "min_entry_timestamp": {"type": "string"}, "not_before": {"type": "string"}, "not_after": {"type": "string"}}, "required": ["issuer_ca_id", "issuer_name", "name_value", "min_cert_id", "min_entry_timestamp", "not_before", "not_after"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"stationId": {"type": "integer"}, "stationGroupId": {"type": "integer"}, "name": {"type": "string"}, "lineId": {"type": "integer"}, "zipCode": {"type": "string"}, "pref": {"type": "string"}, "city": {"type": "string"}, "town": {"type": "string"}, "longitude": {"type": "number"}, "latitude": {"type": "number"}, "status": {"type": "integer"}}, "required": ["stationId", "stationGroupId", "name", "lineId", "zipCode", "pref", "city", "town", "longitude", "latitude", "status"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"stationId" : 1190706, "stationGroupId" : 1190706, "name" : "\u5b97\u592a\u90ce", "lineId" : 11907, "zipCode" : "879-3204", "pref" : "\u5927\u5206\u770c", "city" : "\u4f50\u4f2f\u5e02", "town" : "\u5b87\u76ee\u91cd\u5ca1", "longitude" : 131.706735, "latitude" : 32.78628, "status" : 0} | json_instruct | {"type": "object", "properties": {"stationId": {"type": "integer"}, "stationGroupId": {"type": "integer"}, "name": {"type": "string"}, "lineId": {"type": "integer"}, "zipCode": {"type": "string"}, "pref": {"type": "string"}, "city": {"type": "string"}, "town": {"type": "string"}, "longitude": {"type": "number"}, "latitude": {"type": "number"}, "status": {"type": "integer"}}, "required": ["stationId", "stationGroupId", "name", "lineId", "zipCode", "pref", "city", "town", "longitude", "latitude", "status"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"}
| ["i8xs-selector"] | json_instruct | {"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"nom": {"type": "string"}, "dpt": {"type": "string"}, "inscrits": {"type": "integer"}, "abs": {"type": "integer"}, "votants": {"type": "integer"}, "blancs": {"type": "integer"}, "nuls": {"type": "integer"}, "exp": {"type": "integer"}, "res": {"type": "array", "items": {"type": "object", "properties": {"panneau": {"type": "string"}, "voix": {"type": "integer"}}, "required": ["panneau", "voix"]}}}, "required": ["nom", "dpt", "inscrits", "abs", "votants", "blancs", "nuls", "exp", "res"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"nom" : "Amfreville-la-Mi-Voie", "dpt" : "Seine-Maritime", "inscrits" : 2301, "abs" : 612, "votants" : 1689, "blancs" : 26, "nuls" : 6, "exp" : 1657, "res" : [{"panneau" : "9", "voix" : 495}, {"panneau" : "3", "voix" : 409}, {"panneau" : "2", "voix" : 347}, {"panneau" : "11", "voix" : 146}, {"panneau" : "4", "voix" : 126}, {"panneau" : "1", "voix" : 65}, {"panneau" : "5", "voix" : 25}, {"panneau" : "6", "voix" : 23}, {"panneau" : "10", "voix" : 11}, {"panneau" : "8", "voix" : 8}, {"panneau" : "7", "voix" : 2}]} | json_instruct | {"type": "object", "properties": {"nom": {"type": "string"}, "dpt": {"type": "string"}, "inscrits": {"type": "integer"}, "abs": {"type": "integer"}, "votants": {"type": "integer"}, "blancs": {"type": "integer"}, "nuls": {"type": "integer"}, "exp": {"type": "integer"}, "res": {"type": "array", "items": {"type": "object", "properties": {"panneau": {"type": "string"}, "voix": {"type": "integer"}}, "required": ["panneau", "voix"]}}}, "required": ["nom", "dpt", "inscrits", "abs", "votants", "blancs", "nuls", "exp", "res"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"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" : 1995, "sex" : "M", "n" : 6, "prop" : 2.98e-06}, {"year" : 1997, "sex" : "M", "n" : 5, "prop" : 2.5e-06}, {"year" : 1999, "sex" : "M", "n" : 5, "prop" : 2.45e-06}, {"year" : 2000, "sex" : "M", "n" : 6, "prop" : 2.87e-06}, {"year" : 2004, "sex" : "M", "n" : 5, "prop" : 2.37e-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#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "text": {"type": "string"}}, "required": ["id", "text"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"id" : "330903001", "text" : "\u6c88\u5bb6\u95e8\u8857\u9053"}, {"id" : "330903003", "text" : "\u4e1c\u6e2f\u8857\u9053"}, {"id" : "330903004", "text" : "\u6731\u5bb6\u5c16\u8857\u9053"}, {"id" : "330903005", "text" : "\u5c55\u8305\u8857\u9053"}, {"id" : "330903100", "text" : "\u516d\u6a2a\u9547"}, {"id" : "330903102", "text" : "\u867e\u5cd9\u9547"}, {"id" : "330903104", "text" : "\u6843\u82b1\u9547"}, {"id" : "330903105", "text" : "\u4e1c\u6781\u9547"}, {"id" : "330903106", "text" : "\u666e\u9640\u5c71\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#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"@metadata": {"type": "object", "properties": {"authors": {"type": "array", "items": {"type": "string"}}}, "required": ["authors"]}, "categorytree-expand": {"type": "string"}, "categorytree-member-counts": {"type": "string"}, "categorytree-num-categories": {"type": "string"}, "categorytree-num-pages": {"type": "string"}, "categorytree-num-files": {"type": "string"}}, "required": ["@metadata", "categorytree-expand", "categorytree-member-counts", "categorytree-num-categories", "categorytree-num-pages", "categorytree-num-files"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"@metadata" : {"authors" : ["Si Gam Ac\u00e8h"]}, "categorytree-expand" : "Peuluwaih", "categorytree-member-counts" : "Na {{PLURAL:$1|1 aneuk kawan}}, {{PLURAL:$2|1 mi\u00ebng}}, ng\u00f6n {{PLURAL:$3|1 beureukaih}}", "categorytree-num-categories" : "$1 K", "categorytree-num-pages" : "$1 L", "categorytree-num-files" : "$1 B"} | json_instruct | {"type": "object", "properties": {"@metadata": {"type": "object", "properties": {"authors": {"type": "array", "items": {"type": "string"}}}, "required": ["authors"]}, "categorytree-expand": {"type": "string"}, "categorytree-member-counts": {"type": "string"}, "categorytree-num-categories": {"type": "string"}, "categorytree-num-pages": {"type": "string"}, "categorytree-num-files": {"type": "string"}}, "required": ["@metadata", "categorytree-expand", "categorytree-member-counts", "categorytree-num-categories", "categorytree-num-pages", "categorytree-num-files"], "$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"}, "cordova": {"type": "object", "properties": {"id": {"type": "string"}, "platforms": {"type": "array", "items": {"type": "string"}}}, "required": ["id", "platforms"]}, "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"}}, "required": ["name", "version", "description", "cordova", "repository", "keywords", "author", "license", "bugs", "homepage"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "cordova-plugin-requestreview", "version" : "0.0.4", "description" : "Cordova plugin to ask the user to rate or review your app, if appropriate. The system handles the entire process for you. Supports iOS 10.3 and greater.", "cordova" : {"id" : "cordova-plugin-requestreview", "platforms" : ["ios"]}, "repository" : {"type" : "git", "url" : "git+https://github.com/getsafe/cordova-plugin-requestreview.git"}, "keywords" : ["ecosystem:cordova", "cordova-ios", "rating", "review", "ios"], "author" : "Christian Welk", "license" : "MIT", "bugs" : {"url" : "https://github.com/getsafe/cordova-plugin-requestreview/issues"}, "homepage" : "https://github.com/getsafe/cordova-plugin-requestreview#readme"} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "cordova": {"type": "object", "properties": {"id": {"type": "string"}, "platforms": {"type": "array", "items": {"type": "string"}}}, "required": ["id", "platforms"]}, "repository": {"type": "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"}}, "required": ["name", "version", "description", "cordova", "repository", "keywords", "author", "license", "bugs", "homepage"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"name": {"type": "string"}, "symbol": {"type": "string"}, "decimals": {"type": "integer"}, "address": {"type": "string"}, "chainId": {"type": "integer"}}, "required": ["name", "symbol", "decimals", "address", "chainId"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "Token 8sz1", "symbol" : "8sz1J", "decimals" : 6, "address" : "8sz1JFyjgazRwyCTcNAdRe39zVn6Ue3DdvYEFzWkVaPs", "chainId" : 103} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "symbol": {"type": "string"}, "decimals": {"type": "integer"}, "address": {"type": "string"}, "chainId": {"type": "integer"}}, "required": ["name", "symbol", "decimals", "address", "chainId"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"type": {"type": "string"}, "id": {"type": "string"}, "properties": {"type": "object", "properties": {"amenity": {"type": "string"}, "fixme": {"type": "string"}, "name": {"type": "string"}, "opening_hours": {"type": "string"}, "phone": {"type": "string"}, "website": {"type": "string"}, "id": {"type": "string"}}, "required": ["amenity", "fixme", "name", "opening_hours", "phone", "website", "id"]}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "number"}}}, "required": ["type", "coordinates"]}}, "required": ["type", "id", "properties", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"type" : "Feature", "id" : "node/4172730184", "properties" : {"amenity" : "marketplace", "fixme" : "exact position unknown, please place correctly", "name" : "Jacob-Winter-Platz", "opening_hours" : "Apr 05-Oct 24: Mo, We, Fr 09:00-17:00", "phone" : "+49 351 4888741", "website" : "https://www.dresden.de/maerkte", "id" : "node/4172730184"}, "geometry" : {"type" : "Point", "coordinates" : [13.7953491, 51.0068698]}} | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "id": {"type": "string"}, "properties": {"type": "object", "properties": {"amenity": {"type": "string"}, "fixme": {"type": "string"}, "name": {"type": "string"}, "opening_hours": {"type": "string"}, "phone": {"type": "string"}, "website": {"type": "string"}, "id": {"type": "string"}}, "required": ["amenity", "fixme", "name", "opening_hours", "phone", "website", "id"]}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "number"}}}, "required": ["type", "coordinates"]}}, "required": ["type", "id", "properties", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"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" : ["Preheat oven to 300 degrees F (150 degrees C). Rinse the beef completely and pat dry.", "Place the brisket on rack in a roasting pan or Dutch oven. Rub the brown sugar on the corned beef to coat entire beef, including the bottom. Pour the bottle of stout beer around, and gently over the beef to wet the sugar.", "Cover, and place in preheated oven. Bake for 2 1/2 hours. Allow to rest 5 minutes before slicing."], "ingredients" : ["4 pounds corned beef brisket", "1 cup brown sugar", "1 (12 fluid ounce) can or bottle Irish stout beer (e.g. Guinness\u00ae)"], "language" : "en-US", "source" : "allrecipes.com", "tags" : [], "title" : "Guinness\u00ae Corned Beef", "url" : "http://allrecipes.com/recipe/46530/guinness-corned-beef/"} | 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#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"Time": {"type": "string"}, "Temp": {"type": "number"}, "RelHum": {"type": "integer"}, "WindSpeed": {"type": "number"}, "WindDir": {"type": "integer"}}, "required": ["Time", "Temp", "RelHum", "WindSpeed", "WindDir"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"Time" : "2021-04-13T20:00:00Z", "Temp" : 7.2, "RelHum" : 49, "WindSpeed" : 10.8, "WindDir" : 332} | json_instruct | {"type": "object", "properties": {"Time": {"type": "string"}, "Temp": {"type": "number"}, "RelHum": {"type": "integer"}, "WindSpeed": {"type": "number"}, "WindDir": {"type": "integer"}}, "required": ["Time", "Temp", "RelHum", "WindSpeed", "WindDir"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "frequency": {"type": "integer"}, "gender": {"type": "string"}}, "required": ["name", "frequency", "gender"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"name" : "GUNNARH", "frequency" : 1, "gender" : "male"}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "frequency": {"type": "integer"}, "gender": {"type": "string"}}, "required": ["name", "frequency", "gender"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"ConnectionStrings": {"type": "object", "properties": {"PostgreConnection": {"type": "string"}, "RedisConnection": {"type": "string"}}, "required": ["PostgreConnection", "RedisConnection"]}, "Logging": {"type": "object", "properties": {"IncludeScopes": {"type": "boolean"}, "Debug": {"type": "object", "properties": {"LogLevel": {"type": "object", "properties": {"Default": {"type": "string"}}, "required": ["Default"]}}, "required": ["LogLevel"]}, "Console": {"type": "object", "properties": {"LogLevel": {"type": "object", "properties": {"Default": {"type": "string"}}, "required": ["Default"]}}, "required": ["LogLevel"]}}, "required": ["IncludeScopes", "Debug", "Console"]}, "AllowedHosts": {"type": "string"}}, "required": ["ConnectionStrings", "Logging", "AllowedHosts"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"ConnectionStrings" : {"PostgreConnection" : "User ID =postgres;Password=changeme;Server=postgres_image;Database=postgres;Integrated Security=true;Pooling=true;", "RedisConnection" : "redis_image,password=changeme,abortConnect=False"}, "Logging" : {"IncludeScopes" : false, "Debug" : {"LogLevel" : {"Default" : "Warning"}}, "Console" : {"LogLevel" : {"Default" : "Warning"}}}, "AllowedHosts" : "*"} | json_instruct | {"type": "object", "properties": {"ConnectionStrings": {"type": "object", "properties": {"PostgreConnection": {"type": "string"}, "RedisConnection": {"type": "string"}}, "required": ["PostgreConnection", "RedisConnection"]}, "Logging": {"type": "object", "properties": {"IncludeScopes": {"type": "boolean"}, "Debug": {"type": "object", "properties": {"LogLevel": {"type": "object", "properties": {"Default": {"type": "string"}}, "required": ["Default"]}}, "required": ["LogLevel"]}, "Console": {"type": "object", "properties": {"LogLevel": {"type": "object", "properties": {"Default": {"type": "string"}}, "required": ["Default"]}}, "required": ["LogLevel"]}}, "required": ["IncludeScopes", "Debug", "Console"]}, "AllowedHosts": {"type": "string"}}, "required": ["ConnectionStrings", "Logging", "AllowedHosts"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"links": {"type": "object", "properties": {"static": {"type": "string"}, "html": {"type": "string"}, "fragment": {"type": "string"}, "self": {"type": "string"}}, "required": ["static", "html", "fragment", "self"]}, "name": {"type": "string"}, "kindString": {"type": "string"}, "flags": {"type": "object", "properties": {"isExported": {"type": "boolean"}}, "required": ["isExported"]}, "signatures": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "kindString": {"type": "string"}, "flags": {"type": "object", "properties": {}, "required": []}, "comment": {"type": "object", "properties": {"shortText": {"type": "string"}}, "required": ["shortText"]}, "parameters": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "kindString": {"type": "string"}, "flags": {"type": "object", "properties": {}, "required": []}, "type": {"type": "object", "properties": {"type": {"type": "string"}, "name": {"type": "string"}}, "required": ["type", "name"]}}, "required": ["name", "kindString", "flags", "type"]}}, "type": {"type": "object", "properties": {"type": {"type": "string"}, "name": {"type": "string"}, "id": {"type": "integer"}}, "required": ["type", "name", "id"]}}, "required": ["name", "kindString", "flags", "comment", "parameters", "type"]}}, "sources": {"type": "array", "items": {"type": "object", "properties": {"fileName": {"type": "string"}, "line": {"type": "integer"}, "character": {"type": "integer"}}, "required": ["fileName", "line", "character"]}}}, "required": ["links", "name", "kindString", "flags", "signatures", "sources"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"links" : {"static" : "docs/api/templating-resources/class/RepeatStrategyLocator/method/getStrategy", "html" : "docs/api/templating-resources/class/RepeatStrategyLocator/method/getStrategy/index.html", "fragment" : "docs/api/templating-resources/class/RepeatStrategyLocator/method/getStrategy/index-fragment.html", "self" : "docs/api/templating-resources/class/RepeatStrategyLocator/method/getStrategy/index.json"}, "name" : "getStrategy", "kindString" : "Method", "flags" : {"isExported" : true}, "signatures" : [{"name" : "getStrategy", "kindString" : "Call signature", "flags" : {}, "comment" : {"shortText" : "Gets the best strategy to handle iteration."}, "parameters" : [{"name" : "items", "kindString" : "Parameter", "flags" : {}, "type" : {"type" : "intrinsic", "name" : "any"}}], "type" : {"type" : "reference", "name" : "RepeatStrategy", "id" : 3622}}], "sources" : [{"fileName" : "aurelia-templating-resources.d.ts", "line" : 668, "character" : 13}]} | json_instruct | {"type": "object", "properties": {"links": {"type": "object", "properties": {"static": {"type": "string"}, "html": {"type": "string"}, "fragment": {"type": "string"}, "self": {"type": "string"}}, "required": ["static", "html", "fragment", "self"]}, "name": {"type": "string"}, "kindString": {"type": "string"}, "flags": {"type": "object", "properties": {"isExported": {"type": "boolean"}}, "required": ["isExported"]}, "signatures": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "kindString": {"type": "string"}, "flags": {"type": "object", "properties": {}, "required": []}, "comment": {"type": "object", "properties": {"shortText": {"type": "string"}}, "required": ["shortText"]}, "parameters": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "kindString": {"type": "string"}, "flags": {"type": "object", "properties": {}, "required": []}, "type": {"type": "object", "properties": {"type": {"type": "string"}, "name": {"type": "string"}}, "required": ["type", "name"]}}, "required": ["name", "kindString", "flags", "type"]}}, "type": {"type": "object", "properties": {"type": {"type": "string"}, "name": {"type": "string"}, "id": {"type": "integer"}}, "required": ["type", "name", "id"]}}, "required": ["name", "kindString", "flags", "comment", "parameters", "type"]}}, "sources": {"type": "array", "items": {"type": "object", "properties": {"fileName": {"type": "string"}, "line": {"type": "integer"}, "character": {"type": "integer"}}, "required": ["fileName", "line", "character"]}}}, "required": ["links", "name", "kindString", "flags", "signatures", "sources"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"word": {"type": "string"}, "definitions": {"type": "array", "items": {"type": "string"}}, "parts-of-speech": {"type": "string"}}, "required": ["word", "definitions", "parts-of-speech"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"word" : "Phosphorylase", "definitions" : ["An enzyme which introduces a phosphate group into an organic molecule, notably glucose."], "parts-of-speech" : "Noun"} | json_instruct | {"type": "object", "properties": {"word": {"type": "string"}, "definitions": {"type": "array", "items": {"type": "string"}}, "parts-of-speech": {"type": "string"}}, "required": ["word", "definitions", "parts-of-speech"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"objects": {"type": "object", "properties": {"vectile": {"type": "object", "properties": {"type": {"type": "string"}, "geometries": {"type": "array", "items": {"type": "object", "properties": {"arcs": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"id": {"type": "integer"}, "nazev": {"type": "string"}}, "required": ["id", "nazev"]}, "clipped": {"type": "boolean"}, "id": {"type": "string"}}, "required": ["arcs", "type", "properties", "clipped", "id"]}}}, "required": ["type", "geometries"]}}, "required": ["vectile"]}, "type": {"type": "string"}, "transform": {"type": "object", "properties": {"translate": {"type": "array", "items": {"type": "number"}}, "scale": {"type": "array", "items": {"type": "number"}}}, "required": ["translate", "scale"]}, "arcs": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}}}, "required": ["objects", "type", "transform", "arcs"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"objects" : {"vectile" : {"type" : "GeometryCollection", "geometries" : [{"arcs" : [[0]], "type" : "Polygon", "properties" : {"id" : 63, "nazev" : "Jesen\ufffdk"}, "clipped" : true, "id" : "6c846e8ad4"}, {"arcs" : [[1]], "type" : "Polygon", "properties" : {"id" : 72, "nazev" : "Brunt\ufffdl"}, "clipped" : true, "id" : "7ad376cc6f"}]}}, "type" : "Topology", "transform" : {"translate" : [17.22656249999995, 50.17689812200107], "scale" : [8.583068847655903e-05, 5.4935264132006945e-05]}, "arcs" : [[[1024, 216], [-59, -30], [-77, -127], [4, -59], [-892, 0], [0, 1024], [1024, 0], [0, -808]], [[892, 0], [-4, 59], [77, 127], [59, 30], [0, -216], [-132, 0]]]} | json_instruct | {"type": "object", "properties": {"objects": {"type": "object", "properties": {"vectile": {"type": "object", "properties": {"type": {"type": "string"}, "geometries": {"type": "array", "items": {"type": "object", "properties": {"arcs": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"id": {"type": "integer"}, "nazev": {"type": "string"}}, "required": ["id", "nazev"]}, "clipped": {"type": "boolean"}, "id": {"type": "string"}}, "required": ["arcs", "type", "properties", "clipped", "id"]}}}, "required": ["type", "geometries"]}}, "required": ["vectile"]}, "type": {"type": "string"}, "transform": {"type": "object", "properties": {"translate": {"type": "array", "items": {"type": "number"}}, "scale": {"type": "array", "items": {"type": "number"}}}, "required": ["translate", "scale"]}, "arcs": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}}}, "required": ["objects", "type", "transform", "arcs"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"width": {"type": "number"}, "rotation": {"type": "number"}, "xCenter": {"type": "number"}, "yCenter": {"type": "number"}, "height": {"type": "number"}}, "required": ["width", "rotation", "xCenter", "yCenter", "height"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"width" : 0.21907887, "rotation" : -1.1085519, "xCenter" : 0.107762255, "yCenter" : 0.5314992, "height" : 0.38947356} | json_instruct | {"type": "object", "properties": {"width": {"type": "number"}, "rotation": {"type": "number"}, "xCenter": {"type": "number"}, "yCenter": {"type": "number"}, "height": {"type": "number"}}, "required": ["width", "rotation", "xCenter", "yCenter", "height"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "base_rgb": {"type": "array", "items": {"type": "integer"}}, "cloth": {"type": "object", "properties": {"brightness": {"type": "integer"}, "contrast": {"type": "number"}, "hue": {"type": "integer"}, "saturation": {"type": "number"}, "lightness": {"type": "number"}, "rgb": {"type": "array", "items": {"type": "integer"}}}, "required": ["brightness", "contrast", "hue", "saturation", "lightness", "rgb"]}, "leather": {"type": "object", "properties": {"brightness": {"type": "integer"}, "contrast": {"type": "number"}, "hue": {"type": "integer"}, "saturation": {"type": "number"}, "lightness": {"type": "number"}, "rgb": {"type": "array", "items": {"type": "integer"}}}, "required": ["brightness", "contrast", "hue", "saturation", "lightness", "rgb"]}, "metal": {"type": "object", "properties": {"brightness": {"type": "integer"}, "contrast": {"type": "number"}, "hue": {"type": "integer"}, "saturation": {"type": "number"}, "lightness": {"type": "number"}, "rgb": {"type": "array", "items": {"type": "integer"}}}, "required": ["brightness", "contrast", "hue", "saturation", "lightness", "rgb"]}, "fur": {"type": "object", "properties": {"brightness": {"type": "integer"}, "contrast": {"type": "number"}, "hue": {"type": "integer"}, "saturation": {"type": "number"}, "lightness": {"type": "number"}, "rgb": {"type": "array", "items": {"type": "integer"}}}, "required": ["brightness", "contrast", "hue", "saturation", "lightness", "rgb"]}, "item": {"type": "integer"}, "categories": {"type": "array", "items": {"type": "string"}}}, "required": ["id", "name", "base_rgb", "cloth", "leather", "metal", "fur", "item", "categories"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : 590, "name" : "Brook", "base_rgb" : [128, 26, 26], "cloth" : {"brightness" : 35, "contrast" : 1.25, "hue" : 220, "saturation" : 0.664062, "lightness" : 1.28906, "rgb" : [102, 135, 198]}, "leather" : {"brightness" : 35, "contrast" : 1.25, "hue" : 220, "saturation" : 0.625, "lightness" : 1.28906, "rgb" : [104, 136, 195]}, "metal" : {"brightness" : 35, "contrast" : 1.28906, "hue" : 220, "saturation" : 0.46875, "lightness" : 1.28906, "rgb" : [110, 135, 180]}, "fur" : {"brightness" : 35, "contrast" : 1.25, "hue" : 220, "saturation" : 0.664062, "lightness" : 1.28906, "rgb" : [102, 135, 198]}, "item" : 20614, "categories" : ["Blue", "Vibrant", "Uncommon"]} | json_instruct | {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "base_rgb": {"type": "array", "items": {"type": "integer"}}, "cloth": {"type": "object", "properties": {"brightness": {"type": "integer"}, "contrast": {"type": "number"}, "hue": {"type": "integer"}, "saturation": {"type": "number"}, "lightness": {"type": "number"}, "rgb": {"type": "array", "items": {"type": "integer"}}}, "required": ["brightness", "contrast", "hue", "saturation", "lightness", "rgb"]}, "leather": {"type": "object", "properties": {"brightness": {"type": "integer"}, "contrast": {"type": "number"}, "hue": {"type": "integer"}, "saturation": {"type": "number"}, "lightness": {"type": "number"}, "rgb": {"type": "array", "items": {"type": "integer"}}}, "required": ["brightness", "contrast", "hue", "saturation", "lightness", "rgb"]}, "metal": {"type": "object", "properties": {"brightness": {"type": "integer"}, "contrast": {"type": "number"}, "hue": {"type": "integer"}, "saturation": {"type": "number"}, "lightness": {"type": "number"}, "rgb": {"type": "array", "items": {"type": "integer"}}}, "required": ["brightness", "contrast", "hue", "saturation", "lightness", "rgb"]}, "fur": {"type": "object", "properties": {"brightness": {"type": "integer"}, "contrast": {"type": "number"}, "hue": {"type": "integer"}, "saturation": {"type": "number"}, "lightness": {"type": "number"}, "rgb": {"type": "array", "items": {"type": "integer"}}}, "required": ["brightness", "contrast", "hue", "saturation", "lightness", "rgb"]}, "item": {"type": "integer"}, "categories": {"type": "array", "items": {"type": "string"}}}, "required": ["id", "name", "base_rgb", "cloth", "leather", "metal", "fur", "item", "categories"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"isStrict": {"type": "boolean"}, "allInOne": {"type": "boolean"}, "outPath": {"type": "string"}, "coverOld": {"type": "boolean"}, "projectName": {"type": "string"}}, "required": ["isStrict", "allInOne", "outPath", "coverOld", "projectName"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"isStrict" : true, "allInOne" : false, "outPath" : "../bin/apidoc/admin", "coverOld" : true, "projectName" : "Tutor Admin"} | json_instruct | {"type": "object", "properties": {"isStrict": {"type": "boolean"}, "allInOne": {"type": "boolean"}, "outPath": {"type": "string"}, "coverOld": {"type": "boolean"}, "projectName": {"type": "string"}}, "required": ["isStrict", "allInOne", "outPath", "coverOld", "projectName"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"localities": {"type": "array", "items": {"type": "string"}}, "state": {"type": "string"}, "postal_code": {"type": "string"}, "locality": {"type": "string"}, "lat": {"type": "number"}, "region": {"type": "object", "properties": {"fips": {"type": "string"}, "abbr": {"type": "string"}, "name": {"type": "string"}}, "required": ["fips", "abbr", "name"]}, "city": {"type": "string"}, "type": {"type": "string"}, "lng": {"type": "number"}, "counties": {"type": "array", "items": {"type": "object", "properties": {"fips": {"type": "string"}, "name": {"type": "string"}}, "required": ["fips", "name"]}}}, "required": ["localities", "state", "postal_code", "locality", "lat", "region", "city", "type", "lng", "counties"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"localities" : ["Vaughan, TX", "Winslow, TX", "Peoria, TX", "Chat, TX", "Lovelace, TX", "Woodbury, TX", "Hillsboro, TX"], "state" : "TX", "postal_code" : "76645", "locality" : "Hillsboro, TX", "lat" : 32.022463, "region" : {"fips" : "48", "abbr" : "TX", "name" : "Texas"}, "city" : "Hillsboro", "type" : "STANDARD", "lng" : -97.13336, "counties" : [{"fips" : "217", "name" : "Hill County"}]} | json_instruct | {"type": "object", "properties": {"localities": {"type": "array", "items": {"type": "string"}}, "state": {"type": "string"}, "postal_code": {"type": "string"}, "locality": {"type": "string"}, "lat": {"type": "number"}, "region": {"type": "object", "properties": {"fips": {"type": "string"}, "abbr": {"type": "string"}, "name": {"type": "string"}}, "required": ["fips", "abbr", "name"]}, "city": {"type": "string"}, "type": {"type": "string"}, "lng": {"type": "number"}, "counties": {"type": "array", "items": {"type": "object", "properties": {"fips": {"type": "string"}, "name": {"type": "string"}}, "required": ["fips", "name"]}}}, "required": ["localities", "state", "postal_code", "locality", "lat", "region", "city", "type", "lng", "counties"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"word" : "amnesic", "definition" : "Of or pertaining to amnesia. \"Amnesic or co\u00f6rdinate defects.\" Quian."} | json_instruct | {"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"cam/image_array": {"type": "string"}, "user/throttle": {"type": "number"}, "user/angle": {"type": "number"}, "user/mode": {"type": "string"}}, "required": ["cam/image_array", "user/throttle", "user/angle", "user/mode"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"cam/image_array" : "1753_cam-image_array_.jpg", "user/throttle" : 0.0, "user/angle" : 0.2836194932460785, "user/mode" : "user"} | json_instruct | {"type": "object", "properties": {"cam/image_array": {"type": "string"}, "user/throttle": {"type": "number"}, "user/angle": {"type": "number"}, "user/mode": {"type": "string"}}, "required": ["cam/image_array", "user/throttle", "user/angle", "user/mode"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "scripts": {"type": "object", "properties": {"dev": {"type": "string"}, "build": {"type": "string"}, "serve": {"type": "string"}}, "required": ["dev", "build", "serve"]}, "dependencies": {"type": "object", "properties": {"@reduxjs/toolkit": {"type": "string"}, "bootstrap": {"type": "string"}, "react": {"type": "string"}, "react-dom": {"type": "string"}, "react-redux": {"type": "string"}, "redux-logger": {"type": "string"}}, "required": ["@reduxjs/toolkit", "bootstrap", "react", "react-dom", "react-redux", "redux-logger"]}, "devDependencies": {"type": "object", "properties": {"@types/react": {"type": "string"}, "@types/react-dom": {"type": "string"}, "@types/redux-logger": {"type": "string"}, "@types/react-redux": {"type": "string"}, "@vitejs/plugin-react-refresh": {"type": "string"}, "typescript": {"type": "string"}, "vite": {"type": "string"}}, "required": ["@types/react", "@types/react-dom", "@types/redux-logger", "@types/react-redux", "@vitejs/plugin-react-refresh", "typescript", "vite"]}}, "required": ["name", "version", "scripts", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "ui", "version" : "0.0.0", "scripts" : {"dev" : "vite", "build" : "tsc && vite build", "serve" : "vite preview"}, "dependencies" : {"@reduxjs/toolkit" : "^1.5.1", "bootstrap" : "^5.0.0-beta2", "react" : "^17.0.0", "react-dom" : "^17.0.0", "react-redux" : "^7.2.4", "redux-logger" : "^3.0.6"}, "devDependencies" : {"@types/react" : "^17.0.0", "@types/react-dom" : "^17.0.0", "@types/redux-logger" : "^3.0.8", "@types/react-redux" : "^7.1.16", "@vitejs/plugin-react-refresh" : "^1.3.1", "typescript" : "^4.1.2", "vite" : "^2.1.0"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "scripts": {"type": "object", "properties": {"dev": {"type": "string"}, "build": {"type": "string"}, "serve": {"type": "string"}}, "required": ["dev", "build", "serve"]}, "dependencies": {"type": "object", "properties": {"@reduxjs/toolkit": {"type": "string"}, "bootstrap": {"type": "string"}, "react": {"type": "string"}, "react-dom": {"type": "string"}, "react-redux": {"type": "string"}, "redux-logger": {"type": "string"}}, "required": ["@reduxjs/toolkit", "bootstrap", "react", "react-dom", "react-redux", "redux-logger"]}, "devDependencies": {"type": "object", "properties": {"@types/react": {"type": "string"}, "@types/react-dom": {"type": "string"}, "@types/redux-logger": {"type": "string"}, "@types/react-redux": {"type": "string"}, "@vitejs/plugin-react-refresh": {"type": "string"}, "typescript": {"type": "string"}, "vite": {"type": "string"}}, "required": ["@types/react", "@types/react-dom", "@types/redux-logger", "@types/react-redux", "@vitejs/plugin-react-refresh", "typescript", "vite"]}}, "required": ["name", "version", "scripts", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"@context": {"type": "string"}, "@type": {"type": "string"}, "author": {"type": "array", "items": {"type": "object", "properties": {"@id": {"type": "string"}, "@type": {"type": "string"}, "email": {"type": "string"}, "name": {"type": "string"}, "affiliation": {"type": "string"}}, "required": ["@id", "@type", "email", "name", "affiliation"]}}, "identifier": {"type": "string"}, "codeRepository": {"type": "string"}, "datePublished": {"type": "string"}, "dateModified": {"type": "string"}, "dateCreated": {"type": "string"}, "description": {"type": "string"}, "keywords": {"type": "string"}, "license": {"type": "string"}, "title": {"type": "string"}, "version": {"type": "string"}}, "required": ["@context", "@type", "author", "identifier", "codeRepository", "datePublished", "dateModified", "dateCreated", "description", "keywords", "license", "title", "version"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"@context" : "https://raw.githubusercontent.com/codemeta/codemeta/master/codemeta.jsonld", "@type" : "Code", "author" : [{"@id" : "0000-0001-9293-4043", "@type" : "Person", "email" : "dflemin3@uw.edu", "name" : "David Fleming", "affiliation" : "University of Washington"}], "identifier" : "", "codeRepository" : "github.com/dflemin3/approxposterior", "datePublished" : "2018-04-24", "dateModified" : "2019-11-27", "dateCreated" : "2018-04-24", "description" : "A python implementation of Kandasamy et al. (2015) for deriving approximate posterior distributions.", "keywords" : "python, Bayes, posterior, distribution, gaussian process, mcmc", "license" : "MIT", "title" : "approxposterior", "version" : "v0.3"} | json_instruct | {"type": "object", "properties": {"@context": {"type": "string"}, "@type": {"type": "string"}, "author": {"type": "array", "items": {"type": "object", "properties": {"@id": {"type": "string"}, "@type": {"type": "string"}, "email": {"type": "string"}, "name": {"type": "string"}, "affiliation": {"type": "string"}}, "required": ["@id", "@type", "email", "name", "affiliation"]}}, "identifier": {"type": "string"}, "codeRepository": {"type": "string"}, "datePublished": {"type": "string"}, "dateModified": {"type": "string"}, "dateCreated": {"type": "string"}, "description": {"type": "string"}, "keywords": {"type": "string"}, "license": {"type": "string"}, "title": {"type": "string"}, "version": {"type": "string"}}, "required": ["@context", "@type", "author", "identifier", "codeRepository", "datePublished", "dateModified", "dateCreated", "description", "keywords", "license", "title", "version"], "$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"}, "test-windows": {"type": "string"}}, "required": ["test", "test-windows"]}, "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": {"body-parser": {"type": "string"}, "grpc": {"type": "string"}, "install": {"type": "string"}, "lodash": {"type": "string"}, "unirest": {"type": "string"}, "validate.js": {"type": "string"}, "bluebird": {"type": "string"}}, "required": ["body-parser", "grpc", "install", "lodash", "unirest", "validate.js", "bluebird"]}, "devDependencies": {"type": "object", "properties": {"express": {"type": "string"}, "istanbul": {"type": "string"}, "mocha": {"type": "string"}, "should": {"type": "string"}, "supertest": {"type": "string"}}, "required": ["express", "istanbul", "mocha", "should", "supertest"]}}, "required": ["name", "version", "description", "main", "scripts", "repository", "keywords", "author", "license", "bugs", "homepage", "engines", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "africastalking", "version" : "0.3.0", "description" : "Official AfricasTalking node.js API wrapper", "main" : "index.js", "scripts" : {"test" : "istanbul cover _mocha -- --recursive ./test/", "test-windows" : "istanbul cover node_modules/mocha/bin/_mocha -- --recursive ./test/"}, "repository" : {"type" : "git", "url" : "git+https://github.com/AfricasTalkingLtd/africastalking-node.js"}, "keywords" : ["africastalking", "sms", "ussd", "voice", "m-pesa", "payments"], "author" : "Africa's Talking", "license" : "MIT", "bugs" : {"url" : "https://github.com/AfricasTalkingLtd/africastalking-node.js/issues"}, "homepage" : "https://github.com/AfricasTalkingLtd/africastalking-node.js#readme", "engines" : {"node" : ">=6"}, "dependencies" : {"body-parser" : "^1.18.2", "grpc" : "^1.6.6", "install" : "^0.10.1", "lodash" : "^4.17.4", "unirest" : "^0.5.1", "validate.js" : "^0.12.0", "bluebird" : "^3.5.1"}, "devDependencies" : {"express" : "^4.16.2", "istanbul" : "^0.4.5", "mocha" : "^4.0.1", "should" : "^13.1.2", "supertest" : "^3.0.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"}, "test-windows": {"type": "string"}}, "required": ["test", "test-windows"]}, "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": {"body-parser": {"type": "string"}, "grpc": {"type": "string"}, "install": {"type": "string"}, "lodash": {"type": "string"}, "unirest": {"type": "string"}, "validate.js": {"type": "string"}, "bluebird": {"type": "string"}}, "required": ["body-parser", "grpc", "install", "lodash", "unirest", "validate.js", "bluebird"]}, "devDependencies": {"type": "object", "properties": {"express": {"type": "string"}, "istanbul": {"type": "string"}, "mocha": {"type": "string"}, "should": {"type": "string"}, "supertest": {"type": "string"}}, "required": ["express", "istanbul", "mocha", "should", "supertest"]}}, "required": ["name", "version", "description", "main", "scripts", "repository", "keywords", "author", "license", "bugs", "homepage", "engines", "dependencies", "devDependencies"], "$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"}, "private_key": {"type": "string"}}, "required": ["id", "private_key"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "ssh", "private_key" : "-----BEGIN RSA PRIVATE KEY-----\nTHIS_IS_A_FAKE_KEY\n-----END RSA PRIVATE KEY-----\n"} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "private_key": {"type": "string"}}, "required": ["id", "private_key"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"text": {"type": "string"}, "url": {"type": "string"}}, "required": ["text", "url"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"text" : " How to use steps to solve for two step equations\n\n[imath]-3=2+\\frac{a}{11}[/imath]\n\n\n", "url" : "https://www.youtube.com/watch?v=wst0moUssco"} | json_instruct | {"type": "object", "properties": {"text": {"type": "string"}, "url": {"type": "string"}}, "required": ["text", "url"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"sn22.112:1.1": {"type": "string"}, "sn22.112:2.1": {"type": "string"}}, "required": ["sn22.112:1.1", "sn22.112:2.1"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"sn22.112:1.1" : "bj15.282, cck17.145, csp1ed13.132, csp2ed13.132, ms13S3_676, msdiv112, ndp13.376, pts-vp-pli3.162", "sn22.112:2.1" : "dr17.193, ms13S3_680"} | json_instruct | {"type": "object", "properties": {"sn22.112:1.1": {"type": "string"}, "sn22.112:2.1": {"type": "string"}}, "required": ["sn22.112:1.1", "sn22.112:2.1"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"domain": {"type": "string"}, "code": {"type": "string"}, "codevalue": {"type": "string"}, "link": {"type": "string"}, "sequence": {"type": "integer"}, "attributes": {"type": "array", "items": {"type": "object", "properties": {"key": {"type": "string"}, "val": {"type": "string"}}, "required": ["key", "val"]}}, "SequenceType": {"type": "integer"}, "id": {"type": "string"}, "cachettl": {"type": "integer"}}, "required": ["domain", "code", "codevalue", "link", "sequence", "attributes", "SequenceType", "id", "cachettl"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"domain" : "States", "code" : "WY", "codevalue" : "Wyoming", "link" : "US", "sequence" : 0, "attributes" : [{"key" : "Capitol", "val" : "Cheyenne"}, {"key" : "Population", "val" : "563626"}, {"key" : "Square Miles", "val" : "97814"}], "SequenceType" : 0, "id" : "0c1a5bd7-b023-4417-ae7f-1c68fef99fd2", "cachettl" : 1} | json_instruct | {"type": "object", "properties": {"domain": {"type": "string"}, "code": {"type": "string"}, "codevalue": {"type": "string"}, "link": {"type": "string"}, "sequence": {"type": "integer"}, "attributes": {"type": "array", "items": {"type": "object", "properties": {"key": {"type": "string"}, "val": {"type": "string"}}, "required": ["key", "val"]}}, "SequenceType": {"type": "integer"}, "id": {"type": "string"}, "cachettl": {"type": "integer"}}, "required": ["domain", "code", "codevalue", "link", "sequence", "attributes", "SequenceType", "id", "cachettl"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "dependencies": {"type": "object", "properties": {"babel-preset-expo": {"type": "string"}, "enhanced-resolve": {"type": "string"}, "find-cache-dir": {"type": "string"}, "find-up": {"type": "string"}, "left-pad": {"type": "string"}, "lodash": {"type": "string"}, "resolve-from": {"type": "string"}, "metro": {"type": "string"}, "metro-cache": {"type": "string"}, "metro-config": {"type": "string"}, "metro-core": {"type": "string"}}, "required": ["babel-preset-expo", "enhanced-resolve", "find-cache-dir", "find-up", "left-pad", "lodash", "resolve-from", "metro", "metro-cache", "metro-config", "metro-core"]}}, "required": ["name", "version", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "@live/pnpm-react-native-helper", "version" : "0.1.0", "dependencies" : {"babel-preset-expo" : "^8.3.0", "enhanced-resolve" : "^4.1.1", "find-cache-dir" : "^3.3.1", "find-up" : "^5.0.0", "left-pad" : "^1.3.0", "lodash" : "^4.17.21", "resolve-from" : "^5.0.0", "metro" : "^0.64.0", "metro-cache" : "^0.64.0", "metro-config" : "^0.64.0", "metro-core" : "^0.64.0"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "dependencies": {"type": "object", "properties": {"babel-preset-expo": {"type": "string"}, "enhanced-resolve": {"type": "string"}, "find-cache-dir": {"type": "string"}, "find-up": {"type": "string"}, "left-pad": {"type": "string"}, "lodash": {"type": "string"}, "resolve-from": {"type": "string"}, "metro": {"type": "string"}, "metro-cache": {"type": "string"}, "metro-config": {"type": "string"}, "metro-core": {"type": "string"}}, "required": ["babel-preset-expo", "enhanced-resolve", "find-cache-dir", "find-up", "left-pad", "lodash", "resolve-from", "metro", "metro-cache", "metro-config", "metro-core"]}}, "required": ["name", "version", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"author": {"type": "string"}, "notes": {"type": "string"}, "objective": {"type": "string"}, "metric": {"type": "string"}, "domain": {"type": "string"}, "radius": {"type": "number"}, "X": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}, "required": ["author", "notes", "objective", "metric", "domain", "radius", "X"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"author" : "Jeffrey M. Hokanson", "notes" : "psdr.minimax_lloyd seed=54, maxiter=500, xtol = 1e-9", "objective" : "minimax", "metric" : "l2", "domain" : "square", "radius" : 0.21823358059825898, "X" : [[0.5000533835013766, 0.666676475407865], [0.14082982238173736, 0.16671173559748254], [0.8590633110031689, 0.166621558197634], [0.14091733318476118, 0.8333621607405787], [0.8591508551291062, 0.8333044980559507], [0.4998932499051731, 5.5897466608476965e-05], [0.14090246541078727, 0.5000739832436618], [0.8591360213142927, 0.4999259832096728], [0.5000681746746704, 0.9999644953005372], [0.4999656543374495, 0.3333599177871123]]} | json_instruct | {"type": "object", "properties": {"author": {"type": "string"}, "notes": {"type": "string"}, "objective": {"type": "string"}, "metric": {"type": "string"}, "domain": {"type": "string"}, "radius": {"type": "number"}, "X": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}, "required": ["author", "notes", "objective", "metric", "domain", "radius", "X"], "$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.