input
stringlengths
159
2.05k
output
stringlengths
5
10.3k
task
stringclasses
1 value
schema
stringlengths
100
1.99k
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"css/nes.css": {"type": "string"}, "css/nes.min.css": {"type": "string"}}, "required": ["css/nes.css", "css/nes.min.css"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"css/nes.css" : "sha512-irhMoVllooVmNW5fTcyFzOHakfN5Wj6s0mFAcztcLQ5sWL7sHHle1/fS09ck5ocbFbqkje6ju2gympR6sdtzVg==", "css/nes.min.css" : "sha512-paecvvORnY9iC0TAdFtAlqLXrDhefpmQAAGvtypJ8oRvkWNaGmzVNKXjc1lww27NSVNsDLcS3NPbzNY3vaTRvQ=="}
json_instruct
{"type": "object", "properties": {"css/nes.css": {"type": "string"}, "css/nes.min.css": {"type": "string"}}, "required": ["css/nes.css", "css/nes.min.css"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"372012": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}, "count": {"type": "integer"}, "311010": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}}, "required": ["372012", "count", "311010"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"372012" : {"count" : 1}, "count" : 3, "311010" : {"count" : 2}}
json_instruct
{"type": "object", "properties": {"372012": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}, "count": {"type": "integer"}, "311010": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}}, "required": ["372012", "count", "311010"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"URL": {"type": "string"}, "heading": {"type": "string"}, "subheading": {"type": "string"}, "author": {"type": "string"}, "category": {"type": "string"}, "type": {"type": "string"}, "timestamp": {"type": "string"}, "text": {"type": "string"}}, "required": ["URL", "heading", "subheading", "author", "category", "type", "timestamp", "text"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"URL" : "https://www.wired.com/1999/03/well-armed-against-cancer", "heading" : "well-armed against cancer", "subheading" : "a texas research team is the first to use a robotic arm to help guide the surgical treatment of malignant tumors. by kristen philipkoski.", "author" : "kristen philipkoski", "category" : "science", "type" : "article", "timestamp" : "03.09.1999 03:00 AM", "text" : "a university of texas medical-research team has pioneered a new attack on cancerous tumors by using computed-tomography scans -- or ct scans -- to guide a precise robotic arm. researchers from the san antonio cancer therapy & research center and the university of texas health science center at san antonio recently performed the first two brachytherapy treatments using a special stereotactic arm.brachytherapy is a minimally invasive procedure that involves attacking a malignant tumor by placing \"seeds\" of radioactive material directly inside it. the arm places the seeds in precise locations mapped out by surgeons.\"it's pseudo real time. that is, we put the patient in a ct scanner in an immobilization device, and at the same time we pre-plan the brachy implants,\" said james havezi, director of medical physics at the cancer therapy and research center.the ct scanner produces a precise image that surgeons rely on to guide them during later surgery. an ovarian-cancer patient was treated last month, and on friday the surgeons performed the therapy on a lung tumor.about one week prior to the surgery, technicians take a ct scan of the patient and plan the points at which they want to deliver the brachytherapy.on the day of the surgery, the doctors manually guide a stereotactic arm along the patient's skin while watching its simulated path with a computerized 3-d multiplanar reformation, or mpr, picture.\"as long as the positions are correct, the simulation is the same as what you would see if you put the patient back in the scanner,\" havezi said."}
json_instruct
{"type": "object", "properties": {"URL": {"type": "string"}, "heading": {"type": "string"}, "subheading": {"type": "string"}, "author": {"type": "string"}, "category": {"type": "string"}, "type": {"type": "string"}, "timestamp": {"type": "string"}, "text": {"type": "string"}}, "required": ["URL", "heading", "subheading", "author", "category", "type", "timestamp", "text"], "$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"}, "pulls": {"type": "array", "items": {"type": "object", "properties": {"weight": {"type": "integer"}, "entries": {"type": "array", "items": {"type": "object", "properties": {"count": {"type": "integer"}, "rarities": {"type": "array", "items": {"type": "string"}}}, "required": ["count", "rarities"]}}}, "required": ["weight", "entries"]}}}, "required": ["name", "pulls"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "genesis_impact", "pulls" : [{"weight" : 63, "entries" : [{"count" : 6, "rarities" : ["Rare"]}, {"count" : 1, "rarities" : ["Super Rare"]}]}, {"weight" : 8, "entries" : [{"count" : 6, "rarities" : ["Rare"]}, {"count" : 1, "rarities" : ["Ultra Rare"]}]}, {"weight" : 1, "entries" : [{"count" : 6, "rarities" : ["Rare"]}, {"count" : 1, "rarities" : ["Collector's Rare"]}]}]}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "pulls": {"type": "array", "items": {"type": "object", "properties": {"weight": {"type": "integer"}, "entries": {"type": "array", "items": {"type": "object", "properties": {"count": {"type": "integer"}, "rarities": {"type": "array", "items": {"type": "string"}}}, "required": ["count", "rarities"]}}}, "required": ["weight", "entries"]}}}, "required": ["name", "pulls"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"feedstocks": {"type": "array", "items": {"type": "string"}}}, "required": ["feedstocks"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"feedstocks" : ["mapshader"]}
json_instruct
{"type": "object", "properties": {"feedstocks": {"type": "array", "items": {"type": "string"}}}, "required": ["feedstocks"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"authors": {"type": "array", "items": {"type": "object", "properties": {"githubId": {"type": "string"}, "displayName": {"type": "string"}, "authorNames": {"type": "array", "items": {"type": "string"}}}, "required": ["githubId", "displayName", "authorNames"]}}}, "required": ["authors"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"authors" : [{"githubId" : "GaryGohYP", "displayName" : "GARY ...IPENG", "authorNames" : ["GaryGohYP", "DESKTOP-1NRGIML\\user"]}, {"githubId" : "guestuser0123", "displayName" : "KENNE... TECK", "authorNames" : ["guestuser0123", "DESKTOP-DAUN7QD", "DESKTOP-DAUN7QD\\Kenneth"]}, {"githubId" : "ngkangtze", "displayName" : "NG KA...G TZE", "authorNames" : ["ngkangtze"]}, {"githubId" : "nelvintan", "displayName" : "TAN T...ELVIN", "authorNames" : ["nelvintan"]}, {"githubId" : "tristonpang", "displayName" : "TRIST... SYEN", "authorNames" : ["tristonpang", "TRISTON-XPS15\\lawll"]}]}
json_instruct
{"type": "object", "properties": {"authors": {"type": "array", "items": {"type": "object", "properties": {"githubId": {"type": "string"}, "displayName": {"type": "string"}, "authorNames": {"type": "array", "items": {"type": "string"}}}, "required": ["githubId", "displayName", "authorNames"]}}}, "required": ["authors"], "$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"}, "description": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"clean": {"type": "string"}, "build": {"type": "string"}, "compile": {"type": "string"}, "lint": {"type": "string"}, "test": {"type": "string"}}, "required": ["clean", "build", "compile", "lint", "test"]}, "author": {"type": "string"}, "license": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "bugs": {"type": "string"}, "homepage": {"type": "string"}, "dependencies": {"type": "object", "properties": {}, "required": []}, "devDependencies": {"type": "object", "properties": {"@types/jasmine": {"type": "string"}, "@types/node": {"type": "string"}, "jasmine": {"type": "string"}, "jasmine-ts": {"type": "string"}, "nyc": {"type": "string"}, "ts-node": {"type": "string"}, "tslint": {"type": "string"}, "typedoc": {"type": "string"}, "typescript": {"type": "string"}}, "required": ["@types/jasmine", "@types/node", "jasmine", "jasmine-ts", "nyc", "ts-node", "tslint", "typedoc", "typescript"]}}, "required": ["name", "version", "description", "keywords", "main", "scripts", "author", "license", "repository", "bugs", "homepage", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "lml", "version" : "0.8.1", "description" : "Light Meta Language. A simple-yet-powerful HTML syntax alternative", "keywords" : ["lml", "html", "alternative", "ast", "compiler", "translate", "simple", "hierarchy", "dom", "xml", "parser"], "main" : "lib/index.js", "scripts" : {"clean" : "rm -rf lib/", "build" : "npm run clean && npm run lint && npm run test && npm run compile", "compile" : "tsc && cp src/*.d.ts lib/src/", "lint" : "tslint --project tsconfig.json", "test" : "rm -rf .nyc_output coverage ; npm run lint && nyc --reporter=lcov --reporter=text --exclude=\"spec/**/*.ts\" --exclude=\"*.spec.ts\" --extension .ts jasmine-ts"}, "author" : "Greg Varsanyi", "license" : "MIT", "repository" : {"type" : "git", "url" : "https://github.com/lml-dom/lml-js.git"}, "bugs" : "https://github.com/lml-dom/lml-js/issues", "homepage" : "https://lml-dom.org/", "dependencies" : {}, "devDependencies" : {"@types/jasmine" : "3.3.5", "@types/node" : "10.12.18", "jasmine" : "3.3.1", "jasmine-ts" : "0.3.0", "nyc" : "13.1.0", "ts-node" : "7.0.1", "tslint" : "5.12.0", "typedoc" : "0.14.0", "typescript" : "3.2.2"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"clean": {"type": "string"}, "build": {"type": "string"}, "compile": {"type": "string"}, "lint": {"type": "string"}, "test": {"type": "string"}}, "required": ["clean", "build", "compile", "lint", "test"]}, "author": {"type": "string"}, "license": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "bugs": {"type": "string"}, "homepage": {"type": "string"}, "dependencies": {"type": "object", "properties": {}, "required": []}, "devDependencies": {"type": "object", "properties": {"@types/jasmine": {"type": "string"}, "@types/node": {"type": "string"}, "jasmine": {"type": "string"}, "jasmine-ts": {"type": "string"}, "nyc": {"type": "string"}, "ts-node": {"type": "string"}, "tslint": {"type": "string"}, "typedoc": {"type": "string"}, "typescript": {"type": "string"}}, "required": ["@types/jasmine", "@types/node", "jasmine", "jasmine-ts", "nyc", "ts-node", "tslint", "typedoc", "typescript"]}}, "required": ["name", "version", "description", "keywords", "main", "scripts", "author", "license", "repository", "bugs", "homepage", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"bookName": {"type": "string"}, "baseDir": {"type": "string"}, "histPointer": {"type": "string"}, "indexedBookmarkNames": {"type": "boolean"}}, "required": ["bookName", "baseDir", "histPointer", "indexedBookmarkNames"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"bookName" : "mister istio", "baseDir" : "docs/istio/", "histPointer" : "i", "indexedBookmarkNames" : true}
json_instruct
{"type": "object", "properties": {"bookName": {"type": "string"}, "baseDir": {"type": "string"}, "histPointer": {"type": "string"}, "indexedBookmarkNames": {"type": "boolean"}}, "required": ["bookName", "baseDir", "histPointer", "indexedBookmarkNames"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"covid_icu_today": {"type": "number"}, "covid_icu_yesterday": {"type": "number"}, "cumm_deaths_today": {"type": "number"}, "info_date": {"type": "string"}}, "required": ["covid_icu_today", "covid_icu_yesterday", "cumm_deaths_today", "info_date"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"covid_icu_today" : 11.0, "covid_icu_yesterday" : 9.0, "cumm_deaths_today" : 536.0, "info_date" : "2021-12-30T00:00:00"}
json_instruct
{"type": "object", "properties": {"covid_icu_today": {"type": "number"}, "covid_icu_yesterday": {"type": "number"}, "cumm_deaths_today": {"type": "number"}, "info_date": {"type": "string"}}, "required": ["covid_icu_today", "covid_icu_yesterday", "cumm_deaths_today", "info_date"], "$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"}, "author": {"type": "string"}, "homepage": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "license": {"type": "string"}, "bin": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "version", "description", "author", "homepage", "repository", "bugs", "license", "bin", "keywords"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "coffee-debug", "version" : "0.0.3", "description" : "Simple cli script to debug coffee script on nodejs using node-inspector", "author" : "Andy Damevin <[email protected]>", "homepage" : "https://github.com/ia3andy/coffee-debug", "repository" : {"type" : "git", "url" : "git://github.com/ia3andy/coffee-debug.git"}, "bugs" : {"url" : "https://github.com/ia3andy/coffee-debug/issues"}, "license" : "BSD-3-Clause", "bin" : "bin/coffee-debug", "keywords" : ["coffee", "coffee-script", "debug", "coffescript", "node-inspector"]}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "author": {"type": "string"}, "homepage": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "license": {"type": "string"}, "bin": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "version", "description", "author", "homepage", "repository", "bugs", "license", "bin", "keywords"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}}, "required": ["start"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"electron": {"type": "string"}, "electron-packager": {"type": "string"}}, "required": ["electron", "electron-packager"]}, "dependencies": {"type": "object", "properties": {"open": {"type": "string"}}, "required": ["open"]}}, "required": ["name", "version", "description", "main", "scripts", "repository", "keywords", "author", "license", "bugs", "homepage", "devDependencies", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "nodejs-init-chat-number-whatsapp", "version" : "1.0.0", "description" : "Inicializador de conversas pelo whatsapp, selecionando o navegador.", "main" : "main.js", "scripts" : {"start" : "electron ."}, "repository" : {"type" : "git", "url" : "git+https://github.com/pedromesmer/nodejs-init-chat-number-whatsapp.git"}, "keywords" : ["whatsapp", "node", "nodejs", "number", "chat"], "author" : "Pedro Mesmer", "license" : "MIT", "bugs" : {"url" : "https://github.com/pedromesmer/nodejs-init-chat-number-whatsapp/issues"}, "homepage" : "https://github.com/pedromesmer/nodejs-init-chat-number-whatsapp#readme", "devDependencies" : {"electron" : "^9.1.2", "electron-packager" : "^15.0.0"}, "dependencies" : {"open" : "^7.1.0"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}}, "required": ["start"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"electron": {"type": "string"}, "electron-packager": {"type": "string"}}, "required": ["electron", "electron-packager"]}, "dependencies": {"type": "object", "properties": {"open": {"type": "string"}}, "required": ["open"]}}, "required": ["name", "version", "description", "main", "scripts", "repository", "keywords", "author", "license", "bugs", "homepage", "devDependencies", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "type": {"type": "string"}, "license": {"type": "string"}, "version": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}, "homepage": {"type": "string"}}, "required": ["name", "email", "homepage"]}}, "support": {"type": "object", "properties": {"issues": {"type": "string"}, "source": {"type": "string"}}, "required": ["issues", "source"]}, "require": {"type": "object", "properties": {}, "required": []}, "require-dev": {"type": "object", "properties": {"friendsofphp/php-cs-fixer": {"type": "string"}, "phpunit/phpunit": {"type": "string"}}, "required": ["friendsofphp/php-cs-fixer", "phpunit/phpunit"]}, "autoload": {"type": "object", "properties": {"files": {"type": "array", "items": {"type": "string"}}}, "required": ["files"]}, "config": {"type": "object", "properties": {"preferred-install": {"type": "string"}, "sort-packages": {"type": "boolean"}, "optimize-autoloader": {"type": "boolean"}, "platform": {"type": "object", "properties": {"php": {"type": "string"}}, "required": ["php"]}}, "required": ["preferred-install", "sort-packages", "optimize-autoloader", "platform"]}}, "required": ["name", "description", "type", "license", "version", "authors", "support", "require", "require-dev", "autoload", "config"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "repat/date-constants", "description" : "A series of constants designed to make it easier to express dates in PHP applications", "type" : "library", "license" : "MIT", "version" : "2.0.1", "authors" : [{"name" : "Repat", "email" : "[email protected]", "homepage" : "https://repat.de"}, {"name" : "Steve Grunwell", "email" : "[email protected]", "homepage" : "https://stevegrunwell.com"}], "support" : {"issues" : "https://github.com/repat/date-constants/issues", "source" : "https://github.com/repat/date-constants"}, "require" : {}, "require-dev" : {"friendsofphp/php-cs-fixer" : "^2.14", "phpunit/phpunit" : "^6.0"}, "autoload" : {"files" : ["constants.php"]}, "config" : {"preferred-install" : "dist", "sort-packages" : true, "optimize-autoloader" : true, "platform" : {"php" : "7.2"}}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "type": {"type": "string"}, "license": {"type": "string"}, "version": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}, "homepage": {"type": "string"}}, "required": ["name", "email", "homepage"]}}, "support": {"type": "object", "properties": {"issues": {"type": "string"}, "source": {"type": "string"}}, "required": ["issues", "source"]}, "require": {"type": "object", "properties": {}, "required": []}, "require-dev": {"type": "object", "properties": {"friendsofphp/php-cs-fixer": {"type": "string"}, "phpunit/phpunit": {"type": "string"}}, "required": ["friendsofphp/php-cs-fixer", "phpunit/phpunit"]}, "autoload": {"type": "object", "properties": {"files": {"type": "array", "items": {"type": "string"}}}, "required": ["files"]}, "config": {"type": "object", "properties": {"preferred-install": {"type": "string"}, "sort-packages": {"type": "boolean"}, "optimize-autoloader": {"type": "boolean"}, "platform": {"type": "object", "properties": {"php": {"type": "string"}}, "required": ["php"]}}, "required": ["preferred-install", "sort-packages", "optimize-autoloader", "platform"]}}, "required": ["name", "description", "type", "license", "version", "authors", "support", "require", "require-dev", "autoload", "config"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"\u5de5\u5ee0\u540d\u7a31": {"type": "string"}, "\u5de5\u5ee0\u767b\u8a18\u7de8\u865f": {"type": "string"}, "\u5de5\u5ee0\u8a2d\u7acb\u8a31\u53ef\u6848\u865f": {"type": "string"}, "\u5de5\u5ee0\u5730\u5740": {"type": "string"}, "\u5de5\u5ee0\u5e02\u93ae\u9109\u6751\u91cc": {"type": "string"}, "\u5de5\u5ee0\u8ca0\u8cac\u4eba\u59d3\u540d": {"type": "string"}, "\u71df\u5229\u4e8b\u696d\u7d71\u4e00\u7de8\u865f": {"type": "string"}, "\u5de5\u5ee0\u7d44\u7e54\u578b\u614b": {"type": "string"}, "\u5de5\u5ee0\u8a2d\u7acb\u6838\u51c6\u65e5\u671f": {"type": "string"}, "\u5de5\u5ee0\u767b\u8a18\u6838\u51c6\u65e5\u671f": {"type": "string"}, "\u5de5\u5ee0\u767b\u8a18\u72c0\u614b": {"type": "string"}, "\u7522\u696d\u985e\u5225": {"type": "array", "items": {"type": "string"}}, "\u4e3b\u8981\u7522\u54c1": {"type": "array", "items": {"type": "string"}}}, "required": ["\u5de5\u5ee0\u540d\u7a31", "\u5de5\u5ee0\u767b\u8a18\u7de8\u865f", "\u5de5\u5ee0\u8a2d\u7acb\u8a31\u53ef\u6848\u865f", "\u5de5\u5ee0\u5730\u5740", "\u5de5\u5ee0\u5e02\u93ae\u9109\u6751\u91cc", "\u5de5\u5ee0\u8ca0\u8cac\u4eba\u59d3\u540d", "\u71df\u5229\u4e8b\u696d\u7d71\u4e00\u7de8\u865f", "\u5de5\u5ee0\u7d44\u7e54\u578b\u614b", "\u5de5\u5ee0\u8a2d\u7acb\u6838\u51c6\u65e5\u671f", "\u5de5\u5ee0\u767b\u8a18\u6838\u51c6\u65e5\u671f", "\u5de5\u5ee0\u767b\u8a18\u72c0\u614b", "\u7522\u696d\u985e\u5225", "\u4e3b\u8981\u7522\u54c1"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"\u5de5\u5ee0\u540d\u7a31" : "\u6cf0\u7814\u7cbe\u5bc6\u5de5\u696d\u80a1\u4efd\u6709\u9650\u516c\u53f8", "\u5de5\u5ee0\u767b\u8a18\u7de8\u865f" : "99717918", "\u5de5\u5ee0\u8a2d\u7acb\u8a31\u53ef\u6848\u865f" : "", "\u5de5\u5ee0\u5730\u5740" : "\u6843\u5712\u5e02\u516b\u5fb7\u5340\u5927\u5b89\u91cc\u548c\u5e73\u8def528\u5df729\u865f\u300129\u865f2\u6a13\u300131\u865f\u300131\u865f2\u6a13", "\u5de5\u5ee0\u5e02\u93ae\u9109\u6751\u91cc" : "\u6843\u5712\u5e02\u516b\u5fb7\u5340\u5927\u5b89\u91cc", "\u5de5\u5ee0\u8ca0\u8cac\u4eba\u59d3\u540d" : "\u674e\u9032\u798f", "\u71df\u5229\u4e8b\u696d\u7d71\u4e00\u7de8\u865f" : "23481466", "\u5de5\u5ee0\u7d44\u7e54\u578b\u614b" : "\u80a1\u4efd\u6709\u9650\u516c\u53f8", "\u5de5\u5ee0\u8a2d\u7acb\u6838\u51c6\u65e5\u671f" : "", "\u5de5\u5ee0\u767b\u8a18\u6838\u51c6\u65e5\u671f" : "0981123", "\u5de5\u5ee0\u767b\u8a18\u72c0\u614b" : "\u751f\u7522\u4e2d", "\u7522\u696d\u985e\u5225" : ["25\u91d1\u5c6c\u88fd\u54c1\u88fd\u9020\u696d", "29\u6a5f\u68b0\u8a2d\u5099\u88fd\u9020\u696d"], "\u4e3b\u8981\u7522\u54c1" : ["251\u91d1\u5c6c\u624b\u5de5\u5177\u53ca\u6a21\u5177", "293\u901a\u7528\u6a5f\u68b0\u8a2d\u5099"]}
json_instruct
{"type": "object", "properties": {"\u5de5\u5ee0\u540d\u7a31": {"type": "string"}, "\u5de5\u5ee0\u767b\u8a18\u7de8\u865f": {"type": "string"}, "\u5de5\u5ee0\u8a2d\u7acb\u8a31\u53ef\u6848\u865f": {"type": "string"}, "\u5de5\u5ee0\u5730\u5740": {"type": "string"}, "\u5de5\u5ee0\u5e02\u93ae\u9109\u6751\u91cc": {"type": "string"}, "\u5de5\u5ee0\u8ca0\u8cac\u4eba\u59d3\u540d": {"type": "string"}, "\u71df\u5229\u4e8b\u696d\u7d71\u4e00\u7de8\u865f": {"type": "string"}, "\u5de5\u5ee0\u7d44\u7e54\u578b\u614b": {"type": "string"}, "\u5de5\u5ee0\u8a2d\u7acb\u6838\u51c6\u65e5\u671f": {"type": "string"}, "\u5de5\u5ee0\u767b\u8a18\u6838\u51c6\u65e5\u671f": {"type": "string"}, "\u5de5\u5ee0\u767b\u8a18\u72c0\u614b": {"type": "string"}, "\u7522\u696d\u985e\u5225": {"type": "array", "items": {"type": "string"}}, "\u4e3b\u8981\u7522\u54c1": {"type": "array", "items": {"type": "string"}}}, "required": ["\u5de5\u5ee0\u540d\u7a31", "\u5de5\u5ee0\u767b\u8a18\u7de8\u865f", "\u5de5\u5ee0\u8a2d\u7acb\u8a31\u53ef\u6848\u865f", "\u5de5\u5ee0\u5730\u5740", "\u5de5\u5ee0\u5e02\u93ae\u9109\u6751\u91cc", "\u5de5\u5ee0\u8ca0\u8cac\u4eba\u59d3\u540d", "\u71df\u5229\u4e8b\u696d\u7d71\u4e00\u7de8\u865f", "\u5de5\u5ee0\u7d44\u7e54\u578b\u614b", "\u5de5\u5ee0\u8a2d\u7acb\u6838\u51c6\u65e5\u671f", "\u5de5\u5ee0\u767b\u8a18\u6838\u51c6\u65e5\u671f", "\u5de5\u5ee0\u767b\u8a18\u72c0\u614b", "\u7522\u696d\u985e\u5225", "\u4e3b\u8981\u7522\u54c1"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"id_3139": {"type": "object", "properties": {"publicdate": {"type": "string"}, "title": {"type": "string"}}, "required": ["publicdate", "title"]}}, "required": ["id_3139"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id_3139" : {"publicdate" : "2009-06-18 01:56:48", "title" : "Four Girls at Chautauqua"}}
json_instruct
{"type": "object", "properties": {"id_3139": {"type": "object", "properties": {"publicdate": {"type": "string"}, "title": {"type": "string"}}, "required": ["publicdate", "title"]}}, "required": ["id_3139"], "$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" : "GAETEN", "frequency" : 3, "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#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"name": {"type": "string"}, "flags": {"type": "integer"}, "props": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "name": {"type": "string"}, "flags": {"type": "integer"}}, "required": ["type", "name", "flags"]}}, "funcs": {"type": "array", "items": {"type": "object", "properties": {"fullName": {"type": "string"}, "shortName": {"type": "string"}, "return": {"type": "object", "properties": {"type": {"type": "string"}, "flags": {"type": "integer"}}, "required": ["type", "flags"]}, "index": {"type": "integer"}, "flags": {"type": "integer"}, "params": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "name": {"type": "string"}, "flags": {"type": "integer"}}, "required": ["type", "name", "flags"]}}}, "required": ["fullName", "shortName", "return", "index", "flags", "params"]}}}, "required": ["name", "flags", "props", "funcs"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "gametargetingSystemHitInfo", "flags" : 66, "props" : [{"type" : "Uint64", "name" : "queryMask", "flags" : 6627016707}, {"type" : "entEntityID", "name" : "entityId", "flags" : 6627016707}, {"type" : "whandle:entEntity", "name" : "entity", "flags" : 6627016707}, {"type" : "whandle:entIComponent", "name" : "component", "flags" : 6627016707}, {"type" : "Vector4", "name" : "aimStartPosition", "flags" : 6627016707}, {"type" : "Vector4", "name" : "closestHitPosition", "flags" : 6627016707}, {"type" : "Bool", "name" : "isTransparent", "flags" : 6627016707}], "funcs" : [{"fullName" : "IsValid", "shortName" : "IsValid", "return" : {"type" : "Bool", "flags" : 64}, "index" : 9814, "flags" : 3, "params" : [{"type" : "gametargetingSystemHitInfo", "name" : "self", "flags" : 128}]}]}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "flags": {"type": "integer"}, "props": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "name": {"type": "string"}, "flags": {"type": "integer"}}, "required": ["type", "name", "flags"]}}, "funcs": {"type": "array", "items": {"type": "object", "properties": {"fullName": {"type": "string"}, "shortName": {"type": "string"}, "return": {"type": "object", "properties": {"type": {"type": "string"}, "flags": {"type": "integer"}}, "required": ["type", "flags"]}, "index": {"type": "integer"}, "flags": {"type": "integer"}, "params": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "name": {"type": "string"}, "flags": {"type": "integer"}}, "required": ["type", "name", "flags"]}}}, "required": ["fullName", "shortName", "return", "index", "flags", "params"]}}}, "required": ["name", "flags", "props", "funcs"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"title": {"type": "string"}, "background": {"type": "string"}, "icon": {"type": "string"}, "icon-size": {"type": "integer"}, "format": {"type": "string"}, "contents": {"type": "array", "items": {"type": "object", "properties": {"x": {"type": "integer"}, "y": {"type": "integer"}, "type": {"type": "string"}, "path": {"type": "string"}}, "required": ["x", "y", "type", "path"]}}}, "required": ["title", "background", "icon", "icon-size", "format", "contents"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"title" : "ZX Pokemaster", "background" : "assets/bg01.png", "icon" : "assets/pokemaster.icns", "icon-size" : 80, "format" : "ULFO", "contents" : [{"x" : 130, "y" : 130, "type" : "file", "path" : "/tmp/dist-darwin/Bundle/ZX Pokemaster.app"}, {"x" : 370, "y" : 130, "type" : "link", "path" : "/Applications"}]}
json_instruct
{"type": "object", "properties": {"title": {"type": "string"}, "background": {"type": "string"}, "icon": {"type": "string"}, "icon-size": {"type": "integer"}, "format": {"type": "string"}, "contents": {"type": "array", "items": {"type": "object", "properties": {"x": {"type": "integer"}, "y": {"type": "integer"}, "type": {"type": "string"}, "path": {"type": "string"}}, "required": ["x", "y", "type", "path"]}}}, "required": ["title", "background", "icon", "icon-size", "format", "contents"], "$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-01-17T18:00:00Z", "Temp" : 13.2, "RelHum" : 49, "WindSpeed" : 4.9, "WindDir" : 269}
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#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "array", "items": {}}}, "required": ["contract", "tool", "start", "end", "duration", "analysis"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"contract" : "0xd35e56c84c567f997e5133436469c78373a3b25b", "tool" : "solhint", "start" : 1563526460.4553957, "end" : 1563526464.365157, "duration" : 3.9097611904144287, "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#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {"type": "integer"}}, "productReviews": {"type": "array", "items": {"type": "object", "properties": {"productId": {"type": "integer"}, "reviewText": {"type": "string"}, "reviewDate": {"type": "string"}}, "required": ["productId", "reviewText", "reviewDate"]}}}, "required": ["userId", "cartId", "preferredProducts", "productReviews"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"userId" : 79621, "cartId" : "9655b95d-1ccc-42d0-9c85-379f0644df0a", "preferredProducts" : [565, 1177, 798, 4401, 2586, 2224], "productReviews" : [{"productId" : 3268, "reviewText" : "one of my hobbies is guitar. and when i'm playing guitar this works great.", "reviewDate" : "2016-12-24T02:40:19.3601518+02:00"}, {"productId" : 4926, "reviewText" : "The box this comes in is 5 kilometer by 6 yard and weights 18 gram.", "reviewDate" : "2019-11-14T14:41:45.9319553+02:00"}]}
json_instruct
{"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {"type": "integer"}}, "productReviews": {"type": "array", "items": {"type": "object", "properties": {"productId": {"type": "integer"}, "reviewText": {"type": "string"}, "reviewDate": {"type": "string"}}, "required": ["productId", "reviewText", "reviewDate"]}}}, "required": ["userId", "cartId", "preferredProducts", "productReviews"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"context": {"type": "object", "properties": {"date": {"type": "string"}, "num_cpus": {"type": "integer"}, "mhz_per_cpu": {"type": "integer"}, "cpu_scaling_enabled": {"type": "boolean"}, "library_build_type": {"type": "string"}}, "required": ["date", "num_cpus", "mhz_per_cpu", "cpu_scaling_enabled", "library_build_type"]}, "benchmarks": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "iterations": {"type": "integer"}, "real_time": {"type": "integer"}, "cpu_time": {"type": "integer"}, "time_unit": {"type": "string"}}, "required": ["name", "iterations", "real_time", "cpu_time", "time_unit"]}}}, "required": ["context", "benchmarks"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"context" : {"date" : "2016-08-02 17:44:46", "num_cpus" : 4, "mhz_per_cpu" : 4228, "cpu_scaling_enabled" : false, "library_build_type" : "release"}, "benchmarks" : [{"name" : "BM_One", "iterations" : 1000, "real_time" : 9, "cpu_time" : 110, "time_unit" : "ns"}, {"name" : "BM_Two", "iterations" : 1000, "real_time" : 10, "cpu_time" : 89, "time_unit" : "ns"}, {"name" : "BM_Two", "iterations" : 1000, "real_time" : 7, "cpu_time" : 70, "time_unit" : "ns"}, {"name" : "BM_Two_stat", "iterations" : 1000, "real_time" : 8, "cpu_time" : 80, "time_unit" : "ns"}]}
json_instruct
{"type": "object", "properties": {"context": {"type": "object", "properties": {"date": {"type": "string"}, "num_cpus": {"type": "integer"}, "mhz_per_cpu": {"type": "integer"}, "cpu_scaling_enabled": {"type": "boolean"}, "library_build_type": {"type": "string"}}, "required": ["date", "num_cpus", "mhz_per_cpu", "cpu_scaling_enabled", "library_build_type"]}, "benchmarks": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "iterations": {"type": "integer"}, "real_time": {"type": "integer"}, "cpu_time": {"type": "integer"}, "time_unit": {"type": "string"}}, "required": ["name", "iterations", "real_time", "cpu_time", "time_unit"]}}}, "required": ["context", "benchmarks"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"Name": {"type": "string"}, "Objects": {"type": "array", "items": {"type": "object", "properties": {"Height": {"type": "integer"}, "Length": {"type": "integer"}, "Stock": {"type": "null"}, "Cost": {"type": "integer"}}, "required": ["Height", "Length", "Stock", "Cost"]}}, "Items": {"type": "array", "items": {"type": "object", "properties": {"Length": {"type": "integer"}, "Height": {"type": "integer"}, "Demand": {"type": "integer"}, "DemandMax": {"type": "null"}, "Value": {"type": "integer"}}, "required": ["Length", "Height", "Demand", "DemandMax", "Value"]}}}, "required": ["Name", "Objects", "Items"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"Name" : "W", "Objects" : [{"Height" : 40, "Length" : 70, "Stock" : null, "Cost" : 2800}], "Items" : [{"Length" : 17, "Height" : 9, "Demand" : 1, "DemandMax" : null, "Value" : 153}, {"Length" : 24, "Height" : 15, "Demand" : 1, "DemandMax" : null, "Value" : 360}, {"Length" : 24, "Height" : 15, "Demand" : 2, "DemandMax" : null, "Value" : 360}, {"Length" : 25, "Height" : 16, "Demand" : 4, "DemandMax" : null, "Value" : 400}, {"Length" : 27, "Height" : 17, "Demand" : 2, "DemandMax" : null, "Value" : 459}, {"Length" : 11, "Height" : 19, "Demand" : 4, "DemandMax" : null, "Value" : 209}, {"Length" : 12, "Height" : 21, "Demand" : 3, "DemandMax" : null, "Value" : 357}, {"Length" : 32, "Height" : 22, "Demand" : 3, "DemandMax" : null, "Value" : 704}, {"Length" : 14, "Height" : 23, "Demand" : 4, "DemandMax" : null, "Value" : 322}, {"Length" : 34, "Height" : 24, "Demand" : 4, "DemandMax" : null, "Value" : 816}, {"Length" : 35, "Height" : 25, "Demand" : 3, "DemandMax" : null, "Value" : 875}, {"Length" : 36, "Height" : 26, "Demand" : 4, "DemandMax" : null, "Value" : 936}, {"Length" : 37, "Height" : 27, "Demand" : 3, "DemandMax" : null, "Value" : 999}, {"Length" : 38, "Height" : 28, "Demand" : 4, "DemandMax" : null, "Value" : 1064}, {"Length" : 18, "Height" : 29, "Demand" : 3, "DemandMax" : null, "Value" : 522}, {"Length" : 39, "Height" : 29, "Demand" : 4, "DemandMax" : null, "Value" : 1131}, {"Length" : 41, "Height" : 30, "Demand" : 2, "DemandMax" : null, "Value" : 1230}, {"Length" : 21, "Height" : 31, "Demand" : 3, "DemandMax" : null, "Value" : 651}, {"Length" : 43, "Height" : 31, "Demand" : 4, "DemandMax" : null, "Value" : 1333}, {"Length" : 23, "Height" : 33, "Demand" : 4, "DemandMax" : null, "Value" : 759}]}
json_instruct
{"type": "object", "properties": {"Name": {"type": "string"}, "Objects": {"type": "array", "items": {"type": "object", "properties": {"Height": {"type": "integer"}, "Length": {"type": "integer"}, "Stock": {"type": "null"}, "Cost": {"type": "integer"}}, "required": ["Height", "Length", "Stock", "Cost"]}}, "Items": {"type": "array", "items": {"type": "object", "properties": {"Length": {"type": "integer"}, "Height": {"type": "integer"}, "Demand": {"type": "integer"}, "DemandMax": {"type": "null"}, "Value": {"type": "integer"}}, "required": ["Length", "Height", "Demand", "DemandMax", "Value"]}}}, "required": ["Name", "Objects", "Items"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"path": {"type": "string"}, "ownerModId": {"type": "string"}, "zenCodeName": {"type": "string"}, "searchTerms": {"type": "array", "items": {"type": "string"}}}, "required": ["path", "ownerModId", "zenCodeName", "searchTerms"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"path" : "vanilla/api/world/MCWorld.md", "ownerModId" : "crafttweaker", "zenCodeName" : "crafttweaker.api.world.MCWorld", "searchTerms" : ["isBlockPowered", "raining", "remote", "isLoaded", "asBlockDisplayReader", "dayTime", "asServerWorld", "random", "getRedstonePower", "gameTime", "seaLevel", "getTileEntity", "dimension", "rayTraceBlocks", "getBiome", "getRedstonePowerFromNeighbors", "nightTime", "getEntitiesInAreaExcluding", "hardcore", "getEntitiesInArea", "getTileData", "isRemote", "thundering", "setBlockState", "playEvent", "difficulty", "isRainingAt", "addEntity", "getStrongPower", "difficultyLocked", "destroyBlock", "getBlockState", "isAir", "timeOfDay"]}
json_instruct
{"type": "object", "properties": {"path": {"type": "string"}, "ownerModId": {"type": "string"}, "zenCodeName": {"type": "string"}, "searchTerms": {"type": "array", "items": {"type": "string"}}}, "required": ["path", "ownerModId", "zenCodeName", "searchTerms"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"latest_version": {"type": "array", "items": {"type": "string"}}, "meta": {"type": "object", "properties": {"description": {"type": "string"}, "homepage": {"type": "string"}}, "required": ["description", "homepage"]}, "versions": {"type": "object", "properties": {"0.1a1": {"type": "object", "properties": {"sha256": {"type": "string"}, "url": {"type": "string"}}, "required": ["sha256", "url"]}}, "required": ["0.1a1"]}}, "required": ["latest_version", "meta", "versions"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"latest_version" : ["0.1a1"], "meta" : {"description" : "Async FDFS Client for tornado", "homepage" : "http://git.elenet.me/opdev/eoc-api.git"}, "versions" : {"0.1a1" : {"sha256" : "f09ac84f5914198cb1757eccafbd262887b0f66aa1123ed8539665abc056ddb6", "url" : "https://files.pythonhosted.org/packages/04/97/147621385aa2850de4ba92dc3b51d43f416ee8dc8adb3ba949ecb69c08ec/fdfs-tornado-0.1a1.tar.gz"}}}
json_instruct
{"type": "object", "properties": {"latest_version": {"type": "array", "items": {"type": "string"}}, "meta": {"type": "object", "properties": {"description": {"type": "string"}, "homepage": {"type": "string"}}, "required": ["description", "homepage"]}, "versions": {"type": "object", "properties": {"0.1a1": {"type": "object", "properties": {"sha256": {"type": "string"}, "url": {"type": "string"}}, "required": ["sha256", "url"]}}, "required": ["0.1a1"]}}, "required": ["latest_version", "meta", "versions"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"npm": {"type": "string"}, "author": {"type": "string"}, "description": {"type": "string"}}, "required": ["npm", "author", "description"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"npm" : "eleventy-plugin-cloudinary", "author" : "juanfernandes", "description" : "adds a universal shortcode allowing you to add images from your cloudinary account."}
json_instruct
{"type": "object", "properties": {"npm": {"type": "string"}, "author": {"type": "string"}, "description": {"type": "string"}}, "required": ["npm", "author", "description"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"versionEnd": {"type": "object", "properties": {"versionNum": {"type": "integer"}, "commit": {"type": "string"}, "date": {"type": "string"}}, "required": ["versionNum", "commit", "date"]}, "versionStart": {"type": "object", "properties": {"versionNum": {"type": "integer"}, "commit": {"type": "string"}, "date": {"type": "string"}}, "required": ["versionNum", "commit", "date"]}, "changes": {"type": "array", "items": {"type": "string"}}}, "required": ["versionEnd", "versionStart", "changes"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"versionEnd" : {"versionNum" : 1288, "commit" : "027cef844bcece5f8e1de16424ef8d178aba5c70", "date" : "2021-05-13T06:08:43.926Z"}, "versionStart" : {"versionNum" : 1287, "commit" : "3deab503c887076db6c92b1553f47045a6059339", "date" : "2021-05-13T06:06:24.861Z"}, "changes" : ["blockchains/smartchain/assets/0x694Dc0619e7140D83F2627D573015565096832d3/info.json", "blockchains/smartchain/assets/0x694Dc0619e7140D83F2627D573015565096832d3/logo.png", "blockchains/smartchain/assets/0xB0B924C4a31b7d4581a7F78F57ceE1E65736Be1D/info.json"]}
json_instruct
{"type": "object", "properties": {"versionEnd": {"type": "object", "properties": {"versionNum": {"type": "integer"}, "commit": {"type": "string"}, "date": {"type": "string"}}, "required": ["versionNum", "commit", "date"]}, "versionStart": {"type": "object", "properties": {"versionNum": {"type": "integer"}, "commit": {"type": "string"}, "date": {"type": "string"}}, "required": ["versionNum", "commit", "date"]}, "changes": {"type": "array", "items": {"type": "string"}}}, "required": ["versionEnd", "versionStart", "changes"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "bin": {"type": "object", "properties": {"dolphin": {"type": "string"}}, "required": ["dolphin"]}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "dependencies": {"type": "object", "properties": {"commist": {"type": "string"}, "create-torrent": {"type": "string"}, "debug": {"type": "string"}, "docker-registry-server": {"type": "string"}, "level": {"type": "string"}, "mkdirp": {"type": "string"}, "msgpack5": {"type": "string"}, "request": {"type": "string"}, "rimraf": {"type": "string"}, "tar-fs": {"type": "string"}, "torrent-stream": {"type": "string"}}, "required": ["commist", "create-torrent", "debug", "docker-registry-server", "level", "mkdirp", "msgpack5", "request", "rimraf", "tar-fs", "torrent-stream"]}, "devDependencies": {"type": "object", "properties": {"faucet": {"type": "string"}, "tape": {"type": "string"}}, "required": ["faucet", "tape"]}}, "required": ["name", "version", "description", "main", "bin", "scripts", "repository", "author", "license", "bugs", "homepage", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "dolphin", "version" : "0.0.1", "description" : "Docker pull via Bittorrent, comes with a custom registry", "main" : "achab.js", "bin" : {"dolphin" : "dolphin.js"}, "scripts" : {"test" : "echo \"Error: no test specified\" && exit 1"}, "repository" : {"type" : "git", "url" : "https://github.com/mcollina/achab.git"}, "author" : "Matteo Collina <[email protected]>", "license" : "MIT", "bugs" : {"url" : "https://github.com/mcollina/achab/issues"}, "homepage" : "https://github.com/mcollina/achab", "dependencies" : {"commist" : "^0.2.0", "create-torrent" : "^3.3.0", "debug" : "^2.1.0", "docker-registry-server" : "^2.1.0", "level" : "^0.18.0", "mkdirp" : "^0.5.0", "msgpack5" : "^1.3.2", "request" : "^2.48.0", "rimraf" : "^2.2.8", "tar-fs" : "^1.3.0", "torrent-stream" : "^0.16.2"}, "devDependencies" : {"faucet" : "0.0.1", "tape" : "^3.0.3"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "bin": {"type": "object", "properties": {"dolphin": {"type": "string"}}, "required": ["dolphin"]}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "dependencies": {"type": "object", "properties": {"commist": {"type": "string"}, "create-torrent": {"type": "string"}, "debug": {"type": "string"}, "docker-registry-server": {"type": "string"}, "level": {"type": "string"}, "mkdirp": {"type": "string"}, "msgpack5": {"type": "string"}, "request": {"type": "string"}, "rimraf": {"type": "string"}, "tar-fs": {"type": "string"}, "torrent-stream": {"type": "string"}}, "required": ["commist", "create-torrent", "debug", "docker-registry-server", "level", "mkdirp", "msgpack5", "request", "rimraf", "tar-fs", "torrent-stream"]}, "devDependencies": {"type": "object", "properties": {"faucet": {"type": "string"}, "tape": {"type": "string"}}, "required": ["faucet", "tape"]}}, "required": ["name", "version", "description", "main", "bin", "scripts", "repository", "author", "license", "bugs", "homepage", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"name": {"type": "string"}, "docs": {"type": "string"}, "type": {"type": "string"}, "executable": {"type": "string"}, "install": {"type": "string"}, "description": {"type": "string"}, "notice": {"type": "string"}, "shortPoll": {"type": "string"}, "longPoll": {"type": "string"}, "credits": {"type": "array", "items": {"type": "object", "properties": {"title": {"type": "string"}, "author": {"type": "string"}, "version": {"type": "string"}, "date": {"type": "string"}, "source": {"type": "string"}, "license": {"type": "string"}}, "required": ["title", "author", "version", "date", "source", "license"]}}}, "required": ["name", "docs", "type", "executable", "install", "description", "notice", "shortPoll", "longPoll", "credits"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "Hubitat", "docs" : "https://github.com/Einstein42/udi-poly-template-python", "type" : "python3", "executable" : "hubitat-poly.py", "install" : "install.sh", "description" : "Hubitat Elevation integration", "notice" : "You've been warned", "shortPoll" : "120", "longPoll" : "240", "credits" : [{"title" : "Hubitat: a NodeServer for integrating the Hubitat Elevation hub", "author" : "Simplex Technology", "version" : "0.1.32", "date" : "March 12, 2019", "source" : "github", "license" : "LICENSE"}]}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "docs": {"type": "string"}, "type": {"type": "string"}, "executable": {"type": "string"}, "install": {"type": "string"}, "description": {"type": "string"}, "notice": {"type": "string"}, "shortPoll": {"type": "string"}, "longPoll": {"type": "string"}, "credits": {"type": "array", "items": {"type": "object", "properties": {"title": {"type": "string"}, "author": {"type": "string"}, "version": {"type": "string"}, "date": {"type": "string"}, "source": {"type": "string"}, "license": {"type": "string"}}, "required": ["title", "author", "version", "date", "source", "license"]}}}, "required": ["name", "docs", "type", "executable", "install", "description", "notice", "shortPoll", "longPoll", "credits"], "$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" : "ghebre", "definition" : "A worshiper of fire; a Zoroastrian; a Parsee."}
json_instruct
{"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"id": {"type": "string"}, "tms:id": {"type": "string"}, "accession_number": {"type": "string"}, "title": {"type": "string"}, "url": {"type": "string"}, "department_id": {"type": "string"}, "period_id": {"type": "null"}, "media_id": {"type": "string"}, "type_id": {"type": "string"}, "date": {"type": "string"}, "year_start": {"type": "null"}, "year_end": {"type": "null"}, "year_acquired": {"type": "string"}, "decade": {"type": "null"}, "woe:country": {"type": "string"}, "medium": {"type": "string"}, "markings": {"type": "null"}, "signed": {"type": "null"}, "inscribed": {"type": "null"}, "provenance": {"type": "string"}, "dimensions": {"type": "string"}, "creditline": {"type": "string"}, "description": {"type": "string"}, "justification": {"type": "null"}, "type": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "name"]}, "images": {"type": "array", "items": {}}, "participants": {"type": "array", "items": {"type": "object", "properties": {"person_id": {"type": "string"}, "role_id": {"type": "string"}, "person_name": {"type": "string"}, "role_name": {"type": "string"}, "person_url": {"type": "string"}, "role_url": {"type": "string"}}, "required": ["person_id", "role_id", "person_name", "role_name", "person_url", "role_url"]}}, "tombstone": {"type": "object", "properties": {"epitaph": {"type": "string"}}, "required": ["epitaph"]}, "colors": {"type": "array", "items": {}}}, "required": ["id", "tms:id", "accession_number", "title", "url", "department_id", "period_id", "media_id", "type_id", "date", "year_start", "year_end", "year_acquired", "decade", "woe:country", "medium", "markings", "signed", "inscribed", "provenance", "dimensions", "creditline", "description", "justification", "type", "images", "participants", "tombstone", "colors"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : "18369139", "tms:id" : "72100", "accession_number" : "1939-85-63-c", "title" : "Drawing, \"Cattle, a Cow Walking and a Cow Crouching\", 1875\u201380", "url" : "http://collection.cooperhewitt.org/objects/18369139/", "department_id" : "35347493", "period_id" : null, "media_id" : "35426785", "type_id" : "35237093", "date" : "1875\u201380", "year_start" : null, "year_end" : null, "year_acquired" : "1939", "decade" : null, "woe:country" : "23424977", "medium" : "Graphite, brush and gouache on cream-colored paper.", "markings" : null, "signed" : null, "inscribed" : null, "provenance" : "Gift of Mrs. Samuel Colman", "dimensions" : "18.5 x 14 cm (7 5/16 x 5 1/2 in.)", "creditline" : "Gift of Mrs. Samuel Colman", "description" : "Vertical view with a cow, walking, shown in profile and turned to left, with construction lines and circles at top, and a crouching cow at bottom.", "justification" : null, "type" : {"id" : "35237093", "name" : "Drawing"}, "images" : [], "participants" : [{"person_id" : "18042411", "role_id" : "35236565", "person_name" : "Samuel Colman", "role_name" : "Artist", "person_url" : "http://collection.cooperhewitt.org/people/18042411/", "role_url" : "http://collection.cooperhewitt.org/roles/35236565/"}], "tombstone" : {"epitaph" : "Drawing, \"Cattle, a Cow Walking and a Cow Crouching\", 1875\u201380.\n1875\u201380. Graphite, brush and gouache on cream-colored paper.. Gift of Mrs. Samuel Colman. 1939-85-63-c."}, "colors" : []}
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "tms:id": {"type": "string"}, "accession_number": {"type": "string"}, "title": {"type": "string"}, "url": {"type": "string"}, "department_id": {"type": "string"}, "period_id": {"type": "null"}, "media_id": {"type": "string"}, "type_id": {"type": "string"}, "date": {"type": "string"}, "year_start": {"type": "null"}, "year_end": {"type": "null"}, "year_acquired": {"type": "string"}, "decade": {"type": "null"}, "woe:country": {"type": "string"}, "medium": {"type": "string"}, "markings": {"type": "null"}, "signed": {"type": "null"}, "inscribed": {"type": "null"}, "provenance": {"type": "string"}, "dimensions": {"type": "string"}, "creditline": {"type": "string"}, "description": {"type": "string"}, "justification": {"type": "null"}, "type": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "name"]}, "images": {"type": "array", "items": {}}, "participants": {"type": "array", "items": {"type": "object", "properties": {"person_id": {"type": "string"}, "role_id": {"type": "string"}, "person_name": {"type": "string"}, "role_name": {"type": "string"}, "person_url": {"type": "string"}, "role_url": {"type": "string"}}, "required": ["person_id", "role_id", "person_name", "role_name", "person_url", "role_url"]}}, "tombstone": {"type": "object", "properties": {"epitaph": {"type": "string"}}, "required": ["epitaph"]}, "colors": {"type": "array", "items": {}}}, "required": ["id", "tms:id", "accession_number", "title", "url", "department_id", "period_id", "media_id", "type_id", "date", "year_start", "year_end", "year_acquired", "decade", "woe:country", "medium", "markings", "signed", "inscribed", "provenance", "dimensions", "creditline", "description", "justification", "type", "images", "participants", "tombstone", "colors"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"consensus": {"type": "object", "properties": {"n": {"type": "integer"}, "f": {"type": "integer"}, "batch_size_bytes": {"type": "integer"}, "batch_duration_nsec": {"type": "integer"}, "request_timeout_nsec": {"type": "integer"}}, "required": ["n", "f", "batch_size_bytes", "batch_duration_nsec", "request_timeout_nsec"]}, "peers": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "address": {"type": "string"}, "cert": {"type": "string"}}, "required": ["id", "address", "cert"]}}}, "required": ["consensus", "peers"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"consensus" : {"n" : 1, "f" : 0, "batch_size_bytes" : 1000, "batch_duration_nsec" : 1000000000, "request_timeout_nsec" : 1000000000}, "peers" : [{"id" : 0, "address" : ":6101", "cert" : "testdata/cert1.pem"}]}
json_instruct
{"type": "object", "properties": {"consensus": {"type": "object", "properties": {"n": {"type": "integer"}, "f": {"type": "integer"}, "batch_size_bytes": {"type": "integer"}, "batch_duration_nsec": {"type": "integer"}, "request_timeout_nsec": {"type": "integer"}}, "required": ["n", "f", "batch_size_bytes", "batch_duration_nsec", "request_timeout_nsec"]}, "peers": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "address": {"type": "string"}, "cert": {"type": "string"}}, "required": ["id", "address", "cert"]}}}, "required": ["consensus", "peers"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"object": {"type": "string"}, "document": {"type": "object", "properties": {"object": {"type": "string"}, "data": {"type": "object", "properties": {}, "required": []}, "nodes": {"type": "array", "items": {"type": "object", "properties": {"object": {"type": "string"}, "type": {"type": "string"}, "data": {"type": "object", "properties": {}, "required": []}, "nodes": {"type": "array", "items": {"type": "object", "properties": {"object": {"type": "string"}, "text": {"type": "string"}, "marks": {"type": "array", "items": {}}}, "required": ["object", "text", "marks"]}}}, "required": ["object", "type", "data", "nodes"]}}}, "required": ["object", "data", "nodes"]}}, "required": ["object", "document"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"object" : "value", "document" : {"object" : "document", "data" : {}, "nodes" : [{"object" : "block", "type" : "paragraph", "data" : {}, "nodes" : [{"object" : "text", "text" : "You can use Button component as a target for user actions, for example in ", "marks" : []}, {"object" : "text", "text" : "Dropdown", "marks" : [{"object" : "mark", "type" : "uui-richTextEditor-code", "data" : {}}]}, {"object" : "text", "text" : ", ", "marks" : []}, {"object" : "text", "text" : "Tooltip", "marks" : [{"object" : "mark", "type" : "uui-richTextEditor-code", "data" : {}}]}, {"object" : "text", "text" : ", ", "marks" : []}, {"object" : "text", "text" : "PickerInput", "marks" : [{"object" : "mark", "type" : "uui-richTextEditor-code", "data" : {}}]}, {"object" : "text", "text" : " and others.", "marks" : []}]}]}}
json_instruct
{"type": "object", "properties": {"object": {"type": "string"}, "document": {"type": "object", "properties": {"object": {"type": "string"}, "data": {"type": "object", "properties": {}, "required": []}, "nodes": {"type": "array", "items": {"type": "object", "properties": {"object": {"type": "string"}, "type": {"type": "string"}, "data": {"type": "object", "properties": {}, "required": []}, "nodes": {"type": "array", "items": {"type": "object", "properties": {"object": {"type": "string"}, "text": {"type": "string"}, "marks": {"type": "array", "items": {}}}, "required": ["object", "text", "marks"]}}}, "required": ["object", "type", "data", "nodes"]}}}, "required": ["object", "data", "nodes"]}}, "required": ["object", "document"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "author": {"type": "string"}, "description": {"type": "string"}, "license": {"type": "string"}, "main": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}}, "required": ["name", "version", "author", "description", "license", "main", "keywords", "bugs", "homepage", "scripts"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "gh-msa", "version" : "1.0.0", "author" : "CreatiCoding", "description" : "MSA for github pages", "license" : "MIT", "main" : "index.js", "keywords" : ["MSA", "Github Page"], "bugs" : {"url" : "https://github.com/creco-org/gh-msa/issues"}, "homepage" : "https://github.com/creco-org/gh-msa#readme", "scripts" : {"test" : "echo \"Error: no test specified\" && exit 1"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "author": {"type": "string"}, "description": {"type": "string"}, "license": {"type": "string"}, "main": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}}, "required": ["name", "version", "author", "description", "license", "main", "keywords", "bugs", "homepage", "scripts"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"word" : "allantoidal", "definition" : "Of or pertaining to the allantois."}
json_instruct
{"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"kind": {"type": "string"}, "columnHeaders": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "columnType": {"type": "string"}, "dataType": {"type": "string"}}, "required": ["name", "columnType", "dataType"]}}, "channels": {"type": "object", "properties": {"crossroads": {"type": "object", "properties": {"channelId": {"type": "string"}, "rows": {"type": "array", "items": {"type": "number"}}}, "required": ["channelId", "rows"]}, "brianBringsABeer": {"type": "object", "properties": {"channelId": {"type": "string"}, "rows": {"type": "array", "items": {"type": "number"}}}, "required": ["channelId", "rows"]}, "crossroadsMusic": {"type": "object", "properties": {"channelId": {"type": "string"}, "rows": {"type": "array", "items": {"type": "number"}}}, "required": ["channelId", "rows"]}}, "required": ["crossroads", "brianBringsABeer", "crossroadsMusic"]}}, "required": ["kind", "columnHeaders", "channels"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"kind" : "youtubeAnalytics#resultTable", "columnHeaders" : [{"name" : "averageViewPercentage", "columnType" : "METRIC", "dataType" : "FLOAT"}, {"name" : "subscribersGained", "columnType" : "METRIC", "dataType" : "INTEGER"}, {"name" : "subscribersLost", "columnType" : "METRIC", "dataType" : "INTEGER"}, {"name" : "subscriberCount", "columnType" : "METRIC", "dataType" : "INTEGER"}, {"name" : "estimatedMinutesWatched", "columnType" : "METRIC", "dataType" : "INTEGER"}], "channels" : {"crossroads" : {"channelId" : "UCEdRBpSpVgfuybR3lzgxa-Q", "rows" : [32.20549250289105, 118, 13, 9884, 151101]}, "brianBringsABeer" : {"channelId" : "UChU7KxJdQ2Gt7cCsBbfE6vQ", "rows" : [46.74769890197521, 7, 1, 563, 1016]}, "crossroadsMusic" : {"channelId" : "UC5w5QDnJIpeJR_KnLZSEg1Q", "rows" : [56.913532357102255, 18, 0, 847, 5222]}}}
json_instruct
{"type": "object", "properties": {"kind": {"type": "string"}, "columnHeaders": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "columnType": {"type": "string"}, "dataType": {"type": "string"}}, "required": ["name", "columnType", "dataType"]}}, "channels": {"type": "object", "properties": {"crossroads": {"type": "object", "properties": {"channelId": {"type": "string"}, "rows": {"type": "array", "items": {"type": "number"}}}, "required": ["channelId", "rows"]}, "brianBringsABeer": {"type": "object", "properties": {"channelId": {"type": "string"}, "rows": {"type": "array", "items": {"type": "number"}}}, "required": ["channelId", "rows"]}, "crossroadsMusic": {"type": "object", "properties": {"channelId": {"type": "string"}, "rows": {"type": "array", "items": {"type": "number"}}}, "required": ["channelId", "rows"]}}, "required": ["crossroads", "brianBringsABeer", "crossroadsMusic"]}}, "required": ["kind", "columnHeaders", "channels"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"de": {"type": "object", "properties": {"title": {"type": "string"}, "variants": {"type": "array", "items": {"type": "string"}}}, "required": ["title", "variants"]}, "id": {"type": "string"}}, "required": ["de", "id"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"de" : {"title" : "weg sein", "variants" : ["weg sein"]}, "id" : "weg_sein"}
json_instruct
{"type": "object", "properties": {"de": {"type": "object", "properties": {"title": {"type": "string"}, "variants": {"type": "array", "items": {"type": "string"}}}, "required": ["title", "variants"]}, "id": {"type": "string"}}, "required": ["de", "id"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"title": {"type": "string"}, "genre": {"type": "string"}, "creators": {"type": "array", "items": {}}, "cast": {"type": "array", "items": {}}, "country_of_origin": {"type": "string"}, "seasons": {"type": "integer"}, "episodes": {"type": "integer"}, "start_date": {"type": "string"}, "end_date": {"type": "string"}}, "required": ["title", "genre", "creators", "cast", "country_of_origin", "seasons", "episodes", "start_date", "end_date"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"title" : "Doc Elliot", "genre" : "Medical drama", "creators" : [], "cast" : [], "country_of_origin" : "United States", "seasons" : 1, "episodes" : 14, "start_date" : "", "end_date" : ""}
json_instruct
{"type": "object", "properties": {"title": {"type": "string"}, "genre": {"type": "string"}, "creators": {"type": "array", "items": {}}, "cast": {"type": "array", "items": {}}, "country_of_origin": {"type": "string"}, "seasons": {"type": "integer"}, "episodes": {"type": "integer"}, "start_date": {"type": "string"}, "end_date": {"type": "string"}}, "required": ["title", "genre", "creators", "cast", "country_of_origin", "seasons", "episodes", "start_date", "end_date"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"nodes": {"type": "array", "items": {"type": "object", "properties": {"nodeName": {"type": "string"}, "algorithmName": {"type": "string"}, "input": {"type": "array", "items": {"type": "string"}}}, "required": ["nodeName", "algorithmName", "input"]}}}, "required": ["nodes"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"nodes" : [{"nodeName" : "A-green", "algorithmName" : "green-alg", "input" : ["@flowInput.files.link"]}, {"nodeName" : "A-yellow", "algorithmName" : "yellow-alg", "input" : ["@A-green"]}, {"nodeName" : "A-black", "algorithmName" : "black-alg", "input" : ["@A-yellow"]}, {"nodeName" : "B-green", "algorithmName" : "green-alg", "input" : ["@flowInput.files.link"]}, {"nodeName" : "B-yellow", "algorithmName" : "yellow-alg", "input" : ["@B-green"]}, {"nodeName" : "B-black", "algorithmName" : "black-alg", "input" : ["@B-yellow"]}]}
json_instruct
{"type": "object", "properties": {"nodes": {"type": "array", "items": {"type": "object", "properties": {"nodeName": {"type": "string"}, "algorithmName": {"type": "string"}, "input": {"type": "array", "items": {"type": "string"}}}, "required": ["nodeName", "algorithmName", "input"]}}}, "required": ["nodes"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "version": {"type": "string"}, "author": {"type": "string"}, "dependencies": {"type": "object", "properties": {}, "required": []}, "devDependencies": {"type": "object", "properties": {"adm-zip": {"type": "string"}, "chokidar": {"type": "string"}, "download-git-repo": {"type": "string"}, "es6-promisify": {"type": "string"}, "fs-extra": {"type": "string"}, "ftp-get": {"type": "string"}, "hasbin": {"type": "string"}, "manage-path": {"type": "string"}, "minimist": {"type": "string"}, "nugget": {"type": "string"}, "rollup": {"type": "string"}, "rollup-plugin-buble": {"type": "string"}, "rollup-plugin-commonjs": {"type": "string"}, "rollup-plugin-node-resolve": {"type": "string"}, "rollup-plugin-uglify": {"type": "string"}}, "required": ["adm-zip", "chokidar", "download-git-repo", "es6-promisify", "fs-extra", "ftp-get", "hasbin", "manage-path", "minimist", "nugget", "rollup", "rollup-plugin-buble", "rollup-plugin-commonjs", "rollup-plugin-node-resolve", "rollup-plugin-uglify"]}, "license": {"type": "string"}, "main": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "scripts": {"type": "object", "properties": {"build": {"type": "string"}, "postinstall": {"type": "string"}, "test": {"type": "string"}, "update": {"type": "string"}}, "required": ["build", "postinstall", "test", "update"]}}, "required": ["name", "description", "version", "author", "dependencies", "devDependencies", "license", "main", "repository", "scripts"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "mbed-js", "description" : "A boilerplate for JavaScript on mbed", "version" : "0.1.0", "author" : "Piroro-hs", "dependencies" : {}, "devDependencies" : {"adm-zip" : "^0.4.7", "chokidar" : "^1.6.1", "download-git-repo" : "^0.2.1", "es6-promisify" : "^5.0.0", "fs-extra" : "^1.0.0", "ftp-get" : "^0.3.1", "hasbin" : "^1.2.3", "manage-path" : "^2.0.0", "minimist" : "^1.2.0", "nugget" : "^2.0.1", "rollup" : "^0.36.4", "rollup-plugin-buble" : "^0.14.0", "rollup-plugin-commonjs" : "^5.0.5", "rollup-plugin-node-resolve" : "^2.0.0", "rollup-plugin-uglify" : "^1.0.1"}, "license" : "MIT", "main" : "src/main.js", "repository" : {"type" : "git", "url" : "git+https://github.com/Piroro-hs/mbed-js-boilerplate.git"}, "scripts" : {"build" : "node scripts/spawn build", "postinstall" : "npm run update", "test" : "echo \"Error: no test specified\" && exit 1", "update" : "node scripts/spawn update"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "version": {"type": "string"}, "author": {"type": "string"}, "dependencies": {"type": "object", "properties": {}, "required": []}, "devDependencies": {"type": "object", "properties": {"adm-zip": {"type": "string"}, "chokidar": {"type": "string"}, "download-git-repo": {"type": "string"}, "es6-promisify": {"type": "string"}, "fs-extra": {"type": "string"}, "ftp-get": {"type": "string"}, "hasbin": {"type": "string"}, "manage-path": {"type": "string"}, "minimist": {"type": "string"}, "nugget": {"type": "string"}, "rollup": {"type": "string"}, "rollup-plugin-buble": {"type": "string"}, "rollup-plugin-commonjs": {"type": "string"}, "rollup-plugin-node-resolve": {"type": "string"}, "rollup-plugin-uglify": {"type": "string"}}, "required": ["adm-zip", "chokidar", "download-git-repo", "es6-promisify", "fs-extra", "ftp-get", "hasbin", "manage-path", "minimist", "nugget", "rollup", "rollup-plugin-buble", "rollup-plugin-commonjs", "rollup-plugin-node-resolve", "rollup-plugin-uglify"]}, "license": {"type": "string"}, "main": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "scripts": {"type": "object", "properties": {"build": {"type": "string"}, "postinstall": {"type": "string"}, "test": {"type": "string"}, "update": {"type": "string"}}, "required": ["build", "postinstall", "test", "update"]}}, "required": ["name", "description", "version", "author", "dependencies", "devDependencies", "license", "main", "repository", "scripts"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"class": {"type": "object", "properties": {}, "required": []}, "instance": {"type": "object", "properties": {"allRelevantUpdates": {"type": "string"}, "defaultAction": {"type": "string"}, "proceedWithForcedPush": {"type": "string"}, "repository:": {"type": "string"}, "updates:": {"type": "string"}, "updatesWithUnfetchedRemoteCommits": {"type": "string"}}, "required": ["allRelevantUpdates", "defaultAction", "proceedWithForcedPush", "repository:", "updates:", "updatesWithUnfetchedRemoteCommits"]}}, "required": ["class", "instance"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"class" : {}, "instance" : {"allRelevantUpdates" : "jr 5/16/2017 14:22", "defaultAction" : "jr 5/16/2017 14:21", "proceedWithForcedPush" : "jr 5/16/2017 14:33", "repository:" : "jr 5/16/2017 14:13", "updates:" : "jr 5/16/2017 14:15", "updatesWithUnfetchedRemoteCommits" : "jr 5/16/2017 14:23"}}
json_instruct
{"type": "object", "properties": {"class": {"type": "object", "properties": {}, "required": []}, "instance": {"type": "object", "properties": {"allRelevantUpdates": {"type": "string"}, "defaultAction": {"type": "string"}, "proceedWithForcedPush": {"type": "string"}, "repository:": {"type": "string"}, "updates:": {"type": "string"}, "updatesWithUnfetchedRemoteCommits": {"type": "string"}}, "required": ["allRelevantUpdates", "defaultAction", "proceedWithForcedPush", "repository:", "updates:", "updatesWithUnfetchedRemoteCommits"]}}, "required": ["class", "instance"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"address": {"type": "string"}, "cert_auth_type": {"type": "string"}, "cert_sign": {"type": "string"}, "cert_user_id": {"type": "string"}, "files": {"type": "object", "properties": {}, "required": []}, "inner_path": {"type": "string"}, "modified": {"type": "number"}, "signs": {"type": "object", "properties": {"1pxo5AKTZoxWBdvAZsC2dR7MFHe5bFXcr": {"type": "string"}}, "required": ["1pxo5AKTZoxWBdvAZsC2dR7MFHe5bFXcr"]}, "user": {"type": "array", "items": {"type": "object", "properties": {"avatar": {"type": "string"}, "date_added": {"type": "integer"}, "hub": {"type": "string"}, "intro": {"type": "string"}, "user_name": {"type": "string"}}, "required": ["avatar", "date_added", "hub", "intro", "user_name"]}}}, "required": ["address", "cert_auth_type", "cert_sign", "cert_user_id", "files", "inner_path", "modified", "signs", "user"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"address" : "1UDbADib99KE9d3qZ87NqJF2QLTHmMkoV", "cert_auth_type" : "web", "cert_sign" : "G3+Ora2BEzL5xTeFX8LvB194Jgy+EmjCnckiJEaN86MmqnKxt1D3Ahj6l9P/9aUD0Nu2bARXIKkFD9OjcdkQH1s=", "cert_user_id" : "[email protected]", "files" : {}, "inner_path" : "data/userdb/1pxo5AKTZoxWBdvAZsC2dR7MFHe5bFXcr/content.json", "modified" : 1472309603.234218, "signs" : {"1pxo5AKTZoxWBdvAZsC2dR7MFHe5bFXcr" : "Gw6T+iWNBNhoWR6kYP163wsckehwP/f8CU1hmGEipGuY4fL536zGq/bOGs8jmUHLdtSpxjK8mAh2qfNB6f+uqFs="}, "user" : [{"avatar" : "generate", "date_added" : 1472309622, "hub" : "1BLueGvui1GdbtsjcKqCf4F67uKfritG49", "intro" : "Random ZeroNet user", "user_name" : "Majestic"}]}
json_instruct
{"type": "object", "properties": {"address": {"type": "string"}, "cert_auth_type": {"type": "string"}, "cert_sign": {"type": "string"}, "cert_user_id": {"type": "string"}, "files": {"type": "object", "properties": {}, "required": []}, "inner_path": {"type": "string"}, "modified": {"type": "number"}, "signs": {"type": "object", "properties": {"1pxo5AKTZoxWBdvAZsC2dR7MFHe5bFXcr": {"type": "string"}}, "required": ["1pxo5AKTZoxWBdvAZsC2dR7MFHe5bFXcr"]}, "user": {"type": "array", "items": {"type": "object", "properties": {"avatar": {"type": "string"}, "date_added": {"type": "integer"}, "hub": {"type": "string"}, "intro": {"type": "string"}, "user_name": {"type": "string"}}, "required": ["avatar", "date_added", "hub", "intro", "user_name"]}}}, "required": ["address", "cert_auth_type", "cert_sign", "cert_user_id", "files", "inner_path", "modified", "signs", "user"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "files": {"type": "array", "items": {"type": "string"}}, "module": {"type": "string"}, "types": {"type": "string"}, "sideEffects": {"type": "boolean"}}, "required": ["name", "version", "files", "module", "types", "sideEffects"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "nom-reprap-response-wasm", "version" : "0.1.0", "files" : ["web_bg.wasm", "web.js", "web.d.ts"], "module" : "web.js", "types" : "web.d.ts", "sideEffects" : false}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "files": {"type": "array", "items": {"type": "string"}}, "module": {"type": "string"}, "types": {"type": "string"}, "sideEffects": {"type": "boolean"}}, "required": ["name", "version", "files", "module", "types", "sideEffects"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"brief": {"type": "string"}, "long": {"type": "string"}}, "required": ["brief", "long"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"brief" : "Rahab", "long" : "Rahab, a Canaanitess, who rescued the Hebrew spies at Jericho."}
json_instruct
{"type": "object", "properties": {"brief": {"type": "string"}, "long": {"type": "string"}}, "required": ["brief", "long"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"id": {"type": "string"}, "first_name": {"type": "string"}, "last_name": {"type": "string"}, "email_address": {"type": "string"}, "dfe_uuid": {"type": "string"}, "created_at": {"type": "string"}, "updated_at": {"type": "string"}, "last_signed_in_at": {"type": "string"}, "send_notifications": {"type": "boolean"}, "providers": {"type": "array", "items": {"type": "object", "properties": {"code": {"type": "string"}, "name": {"type": "string"}, "permissions": {"type": "object", "properties": {"manage_users": {"type": "boolean"}, "view_safeguarding_information": {"type": "boolean"}, "make_decisions": {"type": "boolean"}, "manage_organisations": {"type": "boolean"}, "view_diversity_information": {"type": "boolean"}}, "required": ["manage_users", "view_safeguarding_information", "make_decisions", "manage_organisations", "view_diversity_information"]}}, "required": ["code", "name", "permissions"]}}}, "required": ["id", "first_name", "last_name", "email_address", "dfe_uuid", "created_at", "updated_at", "last_signed_in_at", "send_notifications", "providers"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : "ab10d00a-bb99-455c-af78-27436623f1c2", "first_name" : "Montana", "last_name" : "Poindexter", "email_address" : "[email protected]", "dfe_uuid" : "e059ff67-265d-4f8a-948d-64588e390fae", "created_at" : "2020-09-24 15:24:08 +0100", "updated_at" : "2020-09-24 15:40:35 +0100", "last_signed_in_at" : "2020-09-24 15:40:35 +0100", "send_notifications" : true, "providers" : [{"code" : "2LB", "name" : "Devonport High School for Boys", "permissions" : {"manage_users" : true, "view_safeguarding_information" : false, "make_decisions" : true, "manage_organisations" : true, "view_diversity_information" : false}}]}
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "first_name": {"type": "string"}, "last_name": {"type": "string"}, "email_address": {"type": "string"}, "dfe_uuid": {"type": "string"}, "created_at": {"type": "string"}, "updated_at": {"type": "string"}, "last_signed_in_at": {"type": "string"}, "send_notifications": {"type": "boolean"}, "providers": {"type": "array", "items": {"type": "object", "properties": {"code": {"type": "string"}, "name": {"type": "string"}, "permissions": {"type": "object", "properties": {"manage_users": {"type": "boolean"}, "view_safeguarding_information": {"type": "boolean"}, "make_decisions": {"type": "boolean"}, "manage_organisations": {"type": "boolean"}, "view_diversity_information": {"type": "boolean"}}, "required": ["manage_users", "view_safeguarding_information", "make_decisions", "manage_organisations", "view_diversity_information"]}}, "required": ["code", "name", "permissions"]}}}, "required": ["id", "first_name", "last_name", "email_address", "dfe_uuid", "created_at", "updated_at", "last_signed_in_at", "send_notifications", "providers"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following 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.28184274, "rotation" : -0.9539672, "xCenter" : 0.67436874, "yCenter" : 0.3581202, "height" : 0.50105375}
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#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"schema_version": {"type": "string"}, "id": {"type": "string"}, "modified": {"type": "string"}, "published": {"type": "string"}, "aliases": {"type": "array", "items": {"type": "string"}}, "details": {"type": "string"}, "severity": {"type": "array", "items": {}}, "affected": {"type": "array", "items": {}}, "references": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}}, "database_specific": {"type": "object", "properties": {"cwe_ids": {"type": "array", "items": {"type": "string"}}, "severity": {"type": "string"}, "github_reviewed": {"type": "boolean"}}, "required": ["cwe_ids", "severity", "github_reviewed"]}}, "required": ["schema_version", "id", "modified", "published", "aliases", "details", "severity", "affected", "references", "database_specific"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"schema_version" : "1.2.0", "id" : "GHSA-p7jc-rm5x-7fgw", "modified" : "2022-05-02T03:52:15Z", "published" : "2022-05-02T03:52:15Z", "aliases" : ["CVE-2009-4149"], "details" : "Cross-site scripting (XSS) vulnerability in the web interface in CA Service Desk 12.1 allows remote attackers to inject arbitrary web script or HTML via an unspecified parameter.", "severity" : [], "affected" : [], "references" : [{"type" : "ADVISORY", "url" : "https://nvd.nist.gov/vuln/detail/CVE-2009-4149"}, {"type" : "WEB", "url" : "https://support.ca.com/irj/portal/anonymous/phpsupcontent?contentID=223999"}, {"type" : "WEB", "url" : "http://www.securityfocus.com/bid/37253"}], "database_specific" : {"cwe_ids" : ["CWE-79"], "severity" : "MODERATE", "github_reviewed" : false}}
json_instruct
{"type": "object", "properties": {"schema_version": {"type": "string"}, "id": {"type": "string"}, "modified": {"type": "string"}, "published": {"type": "string"}, "aliases": {"type": "array", "items": {"type": "string"}}, "details": {"type": "string"}, "severity": {"type": "array", "items": {}}, "affected": {"type": "array", "items": {}}, "references": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}}, "database_specific": {"type": "object", "properties": {"cwe_ids": {"type": "array", "items": {"type": "string"}}, "severity": {"type": "string"}, "github_reviewed": {"type": "boolean"}}, "required": ["cwe_ids", "severity", "github_reviewed"]}}, "required": ["schema_version", "id", "modified", "published", "aliases", "details", "severity", "affected", "references", "database_specific"], "$schema": "http://json-schema.org/draft-07/schema#"}
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"}, "start": {"type": "string"}}, "required": ["test", "start"]}, "author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"art-template": {"type": "string"}, "bcrypt-node": {"type": "string"}, "bcrypt-nodejs": {"type": "string"}, "bluebird": {"type": "string"}, "crypto": {"type": "string"}, "ejs": {"type": "string"}, "handlebars": {"type": "string"}, "heredoc": {"type": "string"}, "jade": {"type": "string"}, "koa": {"type": "string"}, "koa-body": {"type": "string"}, "koa-bodyparser": {"type": "string"}, "koa-request": {"type": "string"}, "koa-router": {"type": "string"}, "koa-session": {"type": "string"}, "koa-static": {"type": "string"}, "koa-views": {"type": "string"}, "lodash": {"type": "string"}, "moment": {"type": "string"}, "mongoose": {"type": "string"}, "raw-body": {"type": "string"}, "request": {"type": "string"}, "sha1": {"type": "string"}, "xml2js": {"type": "string"}, "xss": {"type": "string"}}, "required": ["art-template", "bcrypt-node", "bcrypt-nodejs", "bluebird", "crypto", "ejs", "handlebars", "heredoc", "jade", "koa", "koa-body", "koa-bodyparser", "koa-request", "koa-router", "koa-session", "koa-static", "koa-views", "lodash", "moment", "mongoose", "raw-body", "request", "sha1", "xml2js", "xss"]}}, "required": ["name", "version", "description", "main", "scripts", "author", "license", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "wxchat", "version" : "1.0.0", "description" : "wxDevelop", "main" : "app.js", "scripts" : {"test" : "echo \"Error: no test specified\" && exit 1", "start" : "node --harmony app.js"}, "author" : "qiu", "license" : "ISC", "dependencies" : {"art-template" : "^3.1.3", "bcrypt-node" : "^0.1.0", "bcrypt-nodejs" : "0.0.3", "bluebird" : "^3.4.6", "crypto" : "0.0.3", "ejs" : "^2.5.2", "handlebars" : "^4.0.6", "heredoc" : "^1.3.1", "jade" : "^1.11.0", "koa" : "^1.2.4", "koa-body" : "^1.6.0", "koa-bodyparser" : "^2.3.0", "koa-request" : "^1.0.0", "koa-router" : "^5.3.0", "koa-session" : "^3.4.0", "koa-static" : "^2.0.0", "koa-views" : "^4.0.1", "lodash" : "^4.16.4", "moment" : "^2.17.1", "mongoose" : "^4.7.6", "raw-body" : "^2.1.7", "request" : "^2.79.0", "sha1" : "^1.1.1", "xml2js" : "^0.4.17", "xss" : "^0.2.13"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "start": {"type": "string"}}, "required": ["test", "start"]}, "author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"art-template": {"type": "string"}, "bcrypt-node": {"type": "string"}, "bcrypt-nodejs": {"type": "string"}, "bluebird": {"type": "string"}, "crypto": {"type": "string"}, "ejs": {"type": "string"}, "handlebars": {"type": "string"}, "heredoc": {"type": "string"}, "jade": {"type": "string"}, "koa": {"type": "string"}, "koa-body": {"type": "string"}, "koa-bodyparser": {"type": "string"}, "koa-request": {"type": "string"}, "koa-router": {"type": "string"}, "koa-session": {"type": "string"}, "koa-static": {"type": "string"}, "koa-views": {"type": "string"}, "lodash": {"type": "string"}, "moment": {"type": "string"}, "mongoose": {"type": "string"}, "raw-body": {"type": "string"}, "request": {"type": "string"}, "sha1": {"type": "string"}, "xml2js": {"type": "string"}, "xss": {"type": "string"}}, "required": ["art-template", "bcrypt-node", "bcrypt-nodejs", "bluebird", "crypto", "ejs", "handlebars", "heredoc", "jade", "koa", "koa-body", "koa-bodyparser", "koa-request", "koa-router", "koa-session", "koa-static", "koa-views", "lodash", "moment", "mongoose", "raw-body", "request", "sha1", "xml2js", "xss"]}}, "required": ["name", "version", "description", "main", "scripts", "author", "license", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "array", "items": {"type": "object", "properties": {"e_id": {"type": "string"}, "title": {"type": "string"}, "content": {"type": "string"}, "picNo": {"type": "string"}, "picUrl": {"type": "array", "items": {}}}, "required": ["e_id", "title", "content", "picNo", "picUrl"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"e_id" : "3918", "title" : "\u6797\u5f6a\u6307\u4f7f\u6797\u7acb\u679c\u7b49\u5236\u5b9a\u201c571\u5de5\u7a0b\u7eaa\u8981\u201d", "content" : "\n\u00a0\u00a0\u00a0\u00a0\u572850\u5e74\u524d\u7684\u4eca\u5929\uff0c1971\u5e743\u670822\u65e5(\u519c\u53861971\u5e742\u670826\u65e5)\uff0c\u6797\u5f6a\u6307\u4f7f\u6797\u7acb\u679c\u7b49\u5236\u5b9a\u201c571\u5de5\u7a0b\u7eaa\u8981\u201d\u30021971\u5e743\u670822\u65e5\uff0c\u6797\u5f6a\u3001\u53f6\u7fa4\u6307\u4f7f\u6797\u7acb\u679c\u3001\u5468\u5b87\u9a70\u7b49\u4eba\u5728\u4e0a\u6d77\u5236\u5b9a\u4e86\u53cd\u9769\u547d\u6b66\u88c5\u653f\u53d8\u8ba1\u5212\uff0c\u53d6\u540d\u4e3a\u201c571\u5de5\u7a0b\u7eaa\u8981\u201d\u3002\u4ed6\u4eec\u5984\u56fe\u5728\u201c\u519b\u4e8b\u4e0a\u5148\u53d1\u5236\u4eba\u201d\uff0c\u5f3a\u8c03\u201c\u4e0d\u7ba1\u51c6\u5907\u6216\u6ca1\u6709\u51c6\u5907\u597d\uff0c\u4e5f\u8981\u7834\u91dc\u6c89\u821f\u201d\uff0c\u9634\u8c0b\u5229\u7528\u201c\u4e0a\u5c42\u96c6\u4f1a\u4e00\u7f51\u6253\u5c3d\u201d\u6216\u5229\u7528\u8f70\u70b8\u3001\u8f66\u7978\u3001\u6697\u6740\u3001\u7ed1\u67b6\u3001\u57ce\u5e02\u6e38\u51fb\u7b49\u5c0f\u5206\u961f\u7b49\u201c\u7279\u6b8a\u624b\u6bb5\u201d\uff0c\u53d1\u52a8\u53cd\u9769\u547d\u653f\u53d8\uff0c\u6740\u5bb3\u6bdb\u6cfd\u4e1c\u4e3b\u5e2d\uff0c\u201c\u593a\u53d6\u5168\u56fd\u653f\u6743\u201d\u6216\u5236\u9020\u201c\u5272\u636e\u5c40\u9762\u201d\uff0c\u5efa\u7acb\u6797\u6c0f\u5929\u4e0b\u3002\u6309\u7167\u8fd9\u4e2a\u53cd\u9769\u547d\u7684\u300a\u201c571\u5de5\u7a0b\u201d\u7eaa\u8981\u300b\u7684\u89c4\u5b9a\u548c\u8981\u6c42\uff0c\u6797\u5f6a\u53cd\u9769\u547d\u96c6\u56e2\u7acb\u5373\u884c\u52a8\u8d77\u6765\uff0c\u6025\u4e0d\u53ef\u8010\u5730\u52a0\u7d27\u4e86\u53d1\u52a8\u53cd\u9769\u547d\u6b66\u88c5\u653f\u53d8\u7684\u6b65\u4f10\u3002", "picNo" : "0", "picUrl" : []}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"e_id": {"type": "string"}, "title": {"type": "string"}, "content": {"type": "string"}, "picNo": {"type": "string"}, "picUrl": {"type": "array", "items": {}}}, "required": ["e_id", "title", "content", "picNo", "picUrl"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"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"]}, "0.2.0": {"type": "object", "properties": {"sha256": {"type": "string"}, "url": {"type": "string"}}, "required": ["sha256", "url"]}}, "required": ["0.1.0", "0.2.0"]}}, "required": ["latest_version", "meta", "versions"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"latest_version" : ["0.2.0"], "meta" : {"description" : "Procfile runner", "homepage" : "https://github.com/smartmob-project/strawboss", "license" : "MIT"}, "versions" : {"0.1.0" : {"sha256" : "7a1bd3b7b8973f600efbdf9bd86da63f014e33b9a24ced0a0df7a48bbaa55407", "url" : "https://files.pythonhosted.org/packages/31/ff/28a1294e0f949b5b494444bcb95ff3dc4aa57ac58b3ff6733d7b73eb3a28/strawboss-0.1.0.tar.gz"}, "0.2.0" : {"sha256" : "f7f714e74c92ac3b091f9949e4b18ef3c084a61e293526ec0814a5dec4db0af1", "url" : "https://files.pythonhosted.org/packages/66/6e/c5f1041f6a934a2ad3c6ecf625737008cc6c604fc0c1e16e1f9059c9ce9b/strawboss-0.2.0.tar.gz"}}}
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"]}, "0.2.0": {"type": "object", "properties": {"sha256": {"type": "string"}, "url": {"type": "string"}}, "required": ["sha256", "url"]}}, "required": ["0.1.0", "0.2.0"]}}, "required": ["latest_version", "meta", "versions"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"riot+compiler.js": {"type": "string"}, "riot+compiler.min.js": {"type": "string"}, "riot.js": {"type": "string"}, "riot.min.js": {"type": "string"}}, "required": ["riot+compiler.js", "riot+compiler.min.js", "riot.js", "riot.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"riot+compiler.js" : "sha512-8++GC8ghN0HafG1eaccmutb1jRfQtirO2WjcYFCzImzGIJeOccQQfIkPbNE/XOOBpeQ1+ApxBo3LOS2kg0q02Q==", "riot+compiler.min.js" : "sha512-CyKfB8n/lmbyw7CsAidlnzbATsqpRSMYN1t86A0/tAfX/S9vM0mb46w+PAIbCTZHoaBbBUMm6snEXGuTDCDPrA==", "riot.js" : "sha512-HkpU5qruj87zO0SVhUhstFwR1f1+wlOtes/sBkOdyDrheCGZig6Jg312IVPqvJzcu1M6KHr9NLN0dkicy95yhg==", "riot.min.js" : "sha512-Qhjah2iDakKRuE0Wq5lTXPFJJG6AMHSooXtAxOMD7moKPXbxM1/AaUyzF54FSqBqqwlVA6tG6lZ++q+0X5+N8Q=="}
json_instruct
{"type": "object", "properties": {"riot+compiler.js": {"type": "string"}, "riot+compiler.min.js": {"type": "string"}, "riot.js": {"type": "string"}, "riot.min.js": {"type": "string"}}, "required": ["riot+compiler.js", "riot+compiler.min.js", "riot.js", "riot.min.js"], "$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"}, "private": {"type": "boolean"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "docs:dev": {"type": "string"}, "docs:build": {"type": "string"}, "build": {"type": "string"}, "build:watch": {"type": "string"}, "publish": {"type": "string"}}, "required": ["test", "docs:dev", "docs:build", "build", "build:watch", "publish"]}, "workspaces": {"type": "array", "items": {"type": "string"}}, "devDependencies": {"type": "object", "properties": {"@peeky/cli": {"type": "string"}, "@types/jest": {"type": "string"}, "@types/node": {"type": "string"}, "jest": {"type": "string"}, "ts-jest": {"type": "string"}, "tslib": {"type": "string"}, "typescript": {"type": "string"}, "vitepress": {"type": "string"}}, "required": ["@peeky/cli", "@types/jest", "@types/node", "jest", "ts-jest", "tslib", "typescript", "vitepress"]}}, "required": ["name", "version", "private", "scripts", "workspaces", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "kurimudb-repos", "version" : "0.0.0", "private" : true, "scripts" : {"test" : "jest --no-cache && jest", "docs:dev" : "vitepress dev docs", "docs:build" : "vitepress build docs", "build" : "tsc -b", "build:watch" : "tsc -b -w", "publish" : "node publish.js"}, "workspaces" : ["packages\\kurimudb", "packages\\kurimudb-driver-cookie", "packages\\kurimudb-driver-dexie", "packages\\kurimudb-driver-localstorage", "packages\\kurimudb-driver-nodejson", "packages\\kurimudb-driver-taro", "packages\\kurimudb-zero-config"], "devDependencies" : {"@peeky/cli" : "^0.3.3", "@types/jest" : "^27.0.1", "@types/node" : "^16.7.1", "jest" : "^27.0.6", "ts-jest" : "^27.0.5", "tslib" : "^2.3.1", "typescript" : "^4.3.5", "vitepress" : "^0.13"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "private": {"type": "boolean"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "docs:dev": {"type": "string"}, "docs:build": {"type": "string"}, "build": {"type": "string"}, "build:watch": {"type": "string"}, "publish": {"type": "string"}}, "required": ["test", "docs:dev", "docs:build", "build", "build:watch", "publish"]}, "workspaces": {"type": "array", "items": {"type": "string"}}, "devDependencies": {"type": "object", "properties": {"@peeky/cli": {"type": "string"}, "@types/jest": {"type": "string"}, "@types/node": {"type": "string"}, "jest": {"type": "string"}, "ts-jest": {"type": "string"}, "tslib": {"type": "string"}, "typescript": {"type": "string"}, "vitepress": {"type": "string"}}, "required": ["@peeky/cli", "@types/jest", "@types/node", "jest", "ts-jest", "tslib", "typescript", "vitepress"]}}, "required": ["name", "version", "private", "scripts", "workspaces", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"debug": {"type": "boolean"}, "server_infos": {"type": "array", "items": {"type": "object", "properties": {"port": {"type": "integer"}, "method": {"type": "string"}, "key": {"type": "string"}, "next_node_infos": {"type": "array", "items": {"type": "object", "properties": {"addr": {"type": "string"}, "method": {"type": "string"}, "key": {"type": "string"}}, "required": ["addr", "method", "key"]}}}, "required": ["port", "method", "key", "next_node_infos"]}}}, "required": ["debug", "server_infos"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"debug" : true, "server_infos" : [{"port" : 20802, "method" : "aes-128-cfb", "key" : "fasda213$%", "next_node_infos" : [{"addr" : "127.0.0.1:20805", "method" : "aes-128-cfb", "key" : "kainhuck"}]}, {"port" : 20803, "method" : "aes-128-cfb", "key" : "fasads$%", "next_node_infos" : [{"addr" : "127.0.0.1:20806", "method" : "aes-128-cfb", "key" : "kainhuck"}]}]}
json_instruct
{"type": "object", "properties": {"debug": {"type": "boolean"}, "server_infos": {"type": "array", "items": {"type": "object", "properties": {"port": {"type": "integer"}, "method": {"type": "string"}, "key": {"type": "string"}, "next_node_infos": {"type": "array", "items": {"type": "object", "properties": {"addr": {"type": "string"}, "method": {"type": "string"}, "key": {"type": "string"}}, "required": ["addr", "method", "key"]}}}, "required": ["port", "method", "key", "next_node_infos"]}}}, "required": ["debug", "server_infos"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"osuUsername": {"type": "null"}, "osuIRCPassword": {"type": "null"}, "twitch_bot_username": {"type": "null"}, "twitch_bot_token": {"type": "null"}, "twitch_channel_name": {"type": "null"}, "osuApiKey": {"type": "null"}, "interface_language": {"type": "null"}}, "required": ["osuUsername", "osuIRCPassword", "twitch_bot_username", "twitch_bot_token", "twitch_channel_name", "osuApiKey", "interface_language"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"osuUsername" : null, "osuIRCPassword" : null, "twitch_bot_username" : null, "twitch_bot_token" : null, "twitch_channel_name" : null, "osuApiKey" : null, "interface_language" : null}
json_instruct
{"type": "object", "properties": {"osuUsername": {"type": "null"}, "osuIRCPassword": {"type": "null"}, "twitch_bot_username": {"type": "null"}, "twitch_bot_token": {"type": "null"}, "twitch_channel_name": {"type": "null"}, "osuApiKey": {"type": "null"}, "interface_language": {"type": "null"}}, "required": ["osuUsername", "osuIRCPassword", "twitch_bot_username", "twitch_bot_token", "twitch_channel_name", "osuApiKey", "interface_language"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"include": {"type": "array", "items": {"type": "string"}}, "compilerOptions": {"type": "object", "properties": {"outDir": {"type": "string"}, "target": {"type": "string"}, "module": {"type": "string"}, "moduleResolution": {"type": "string"}, "allowJs": {"type": "boolean"}, "checkJs": {"type": "boolean"}, "removeComments": {"type": "boolean"}, "strict": {"type": "boolean"}, "alwaysStrict": {"type": "boolean"}, "allowUnreachableCode": {"type": "boolean"}, "noFallthroughCasesInSwitch": {"type": "boolean"}, "noUnusedLocals": {"type": "boolean"}, "noUnusedParameters": {"type": "boolean"}, "noEmitOnError": {"type": "boolean"}, "declaration": {"type": "boolean"}, "sourceMap": {"type": "boolean"}, "newLine": {"type": "string"}, "forceConsistentCasingInFileNames": {"type": "boolean"}, "useDefineForClassFields": {"type": "boolean"}}, "required": ["outDir", "target", "module", "moduleResolution", "allowJs", "checkJs", "removeComments", "strict", "alwaysStrict", "allowUnreachableCode", "noFallthroughCasesInSwitch", "noUnusedLocals", "noUnusedParameters", "noEmitOnError", "declaration", "sourceMap", "newLine", "forceConsistentCasingInFileNames", "useDefineForClassFields"]}}, "required": ["include", "compilerOptions"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"include" : ["./consumption/static/_src/ts/**/*"], "compilerOptions" : {"outDir" : "./consumption/static/.tmp/", "target" : "es6", "module" : "commonjs", "moduleResolution" : "node", "allowJs" : true, "checkJs" : true, "removeComments" : true, "strict" : true, "alwaysStrict" : true, "allowUnreachableCode" : false, "noFallthroughCasesInSwitch" : true, "noUnusedLocals" : true, "noUnusedParameters" : true, "noEmitOnError" : true, "declaration" : false, "sourceMap" : false, "newLine" : "lf", "forceConsistentCasingInFileNames" : true, "useDefineForClassFields" : true}}
json_instruct
{"type": "object", "properties": {"include": {"type": "array", "items": {"type": "string"}}, "compilerOptions": {"type": "object", "properties": {"outDir": {"type": "string"}, "target": {"type": "string"}, "module": {"type": "string"}, "moduleResolution": {"type": "string"}, "allowJs": {"type": "boolean"}, "checkJs": {"type": "boolean"}, "removeComments": {"type": "boolean"}, "strict": {"type": "boolean"}, "alwaysStrict": {"type": "boolean"}, "allowUnreachableCode": {"type": "boolean"}, "noFallthroughCasesInSwitch": {"type": "boolean"}, "noUnusedLocals": {"type": "boolean"}, "noUnusedParameters": {"type": "boolean"}, "noEmitOnError": {"type": "boolean"}, "declaration": {"type": "boolean"}, "sourceMap": {"type": "boolean"}, "newLine": {"type": "string"}, "forceConsistentCasingInFileNames": {"type": "boolean"}, "useDefineForClassFields": {"type": "boolean"}}, "required": ["outDir", "target", "module", "moduleResolution", "allowJs", "checkJs", "removeComments", "strict", "alwaysStrict", "allowUnreachableCode", "noFallthroughCasesInSwitch", "noUnusedLocals", "noUnusedParameters", "noEmitOnError", "declaration", "sourceMap", "newLine", "forceConsistentCasingInFileNames", "useDefineForClassFields"]}}, "required": ["include", "compilerOptions"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"__comment": {"type": "string"}, "fhirServer": {"type": "object", "properties": {"resources": {"type": "object", "properties": {"Basic": {"type": "object", "properties": {"searchParameters": {"type": "object", "properties": {"code": {"type": "string"}, "*": {"type": "string"}}, "required": ["code", "*"]}}, "required": ["searchParameters"]}}, "required": ["Basic"]}}, "required": ["resources"]}}, "required": ["__comment", "fhirServer"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"__comment" : "FHIR Server configuration extension for the number test tenant", "fhirServer" : {"resources" : {"Basic" : {"searchParameters" : {"code" : "http://ibm.com/fhir/SearchParameter/Basic-code", "*" : "*"}}}}}
json_instruct
{"type": "object", "properties": {"__comment": {"type": "string"}, "fhirServer": {"type": "object", "properties": {"resources": {"type": "object", "properties": {"Basic": {"type": "object", "properties": {"searchParameters": {"type": "object", "properties": {"code": {"type": "string"}, "*": {"type": "string"}}, "required": ["code", "*"]}}, "required": ["searchParameters"]}}, "required": ["Basic"]}}, "required": ["resources"]}}, "required": ["__comment", "fhirServer"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "version": {"type": "string"}, "main": {"type": "string"}, "files": {"type": "array", "items": {"type": "string"}}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "homepage": {"type": "string"}, "repository": {"type": "string"}, "bugs": {"type": "string"}, "license": {"type": "string"}, "engines": {"type": "object", "properties": {"node": {"type": "string"}}, "required": ["node"]}, "dependencies": {"type": "object", "properties": {"is-promise": {"type": "string"}}, "required": ["is-promise"]}, "devDependencies": {"type": "object", "properties": {"async": {"type": "string"}, "tape": {"type": "string"}, "tap-min": {"type": "string"}}, "required": ["async", "tape", "tap-min"]}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "prepublishOnly": {"type": "string"}}, "required": ["test", "prepublishOnly"]}}, "required": ["name", "description", "version", "main", "files", "keywords", "author", "homepage", "repository", "bugs", "license", "engines", "dependencies", "devDependencies", "scripts"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "chatbot-coroutine", "description" : "Model chatbots as conversations.", "version" : "1.0.0", "main" : "index.js", "files" : ["index.js", "in-mem-storage.js", "leveldb-storage.js"], "keywords" : ["chatbot", "chat", "messenger", "bot", "conversations"], "author" : "Jannis R <[email protected]>", "homepage" : "https://github.com/derhuerst/chatbot-coroutine", "repository" : "derhuerst/chatbot-coroutine", "bugs" : "https://github.com/derhuerst/chatbot-coroutine/issues", "license" : "ISC", "engines" : {"node" : ">=6"}, "dependencies" : {"is-promise" : "^4.0.0"}, "devDependencies" : {"async" : "^3.0.1", "tape" : "^5.0.0", "tap-min" : "^1.2.1"}, "scripts" : {"test" : "node test.js | tap-min", "prepublishOnly" : "npm test"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "version": {"type": "string"}, "main": {"type": "string"}, "files": {"type": "array", "items": {"type": "string"}}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "homepage": {"type": "string"}, "repository": {"type": "string"}, "bugs": {"type": "string"}, "license": {"type": "string"}, "engines": {"type": "object", "properties": {"node": {"type": "string"}}, "required": ["node"]}, "dependencies": {"type": "object", "properties": {"is-promise": {"type": "string"}}, "required": ["is-promise"]}, "devDependencies": {"type": "object", "properties": {"async": {"type": "string"}, "tape": {"type": "string"}, "tap-min": {"type": "string"}}, "required": ["async", "tape", "tap-min"]}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "prepublishOnly": {"type": "string"}}, "required": ["test", "prepublishOnly"]}}, "required": ["name", "description", "version", "main", "files", "keywords", "author", "homepage", "repository", "bugs", "license", "engines", "dependencies", "devDependencies", "scripts"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "array", "items": {"type": "array", "items": {}}}}, "required": ["contract", "tool", "start", "end", "duration", "analysis"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"contract" : "0xc2494604e9dcefa2a70dcebf81e6d7be064a334e", "tool" : "manticore", "start" : 1564113905.580294, "end" : 1564113915.7943757, "duration" : 10.214081764221191, "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": {"type": "array", "items": {}}}}, "required": ["contract", "tool", "start", "end", "duration", "analysis"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"name": {"type": "string"}, "name_long": {"type": "string"}, "fips": {"type": "string"}, "state_code_int": {"type": "integer"}, "state_code_postal": {"type": "string"}, "state_code_iso": {"type": "string"}, "county_code": {"type": "integer"}, "population": {"type": "integer"}, "countrylevel_id": {"type": "string"}, "census_data": {"type": "object", "properties": {"COUNTYNS": {"type": "string"}, "AFFGEOID": {"type": "string"}, "LSAD": {"type": "string"}, "ALAND": {"type": "integer"}, "AWATER": {"type": "integer"}}, "required": ["COUNTYNS", "AFFGEOID", "LSAD", "ALAND", "AWATER"]}, "center_lat": {"type": "number"}, "center_lon": {"type": "number"}, "area_m2": {"type": "integer"}, "timezone": {"type": "string"}}, "required": ["name", "name_long", "fips", "state_code_int", "state_code_postal", "state_code_iso", "county_code", "population", "countrylevel_id", "census_data", "center_lat", "center_lon", "area_m2", "timezone"]}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["type", "coordinates"]}}, "required": ["type", "properties", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"type" : "Feature", "properties" : {"name" : "Coffey County", "name_long" : "Coffey County, KS", "fips" : "20031", "state_code_int" : 20, "state_code_postal" : "KS", "state_code_iso" : "US-KS", "county_code" : 31, "population" : 8179, "countrylevel_id" : "fips:20031", "census_data" : {"COUNTYNS" : "00484985", "AFFGEOID" : "0500000US20031", "LSAD" : "06", "ALAND" : 1623623922, "AWATER" : 70470779}, "center_lat" : 38.24, "center_lon" : -95.73, "area_m2" : 1694094701, "timezone" : "America/Chicago"}, "geometry" : {"type" : "Polygon", "coordinates" : [[[-95.959, 38.171], [-95.959, 38.26], [-95.95, 38.26], [-95.95, 38.434], [-95.508, 38.434], [-95.508, 38.39], [-95.507, 38.259], [-95.517, 38.259], [-95.519, 38.038], [-95.959, 38.04], [-95.959, 38.171]]]}}
json_instruct
{"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"name": {"type": "string"}, "name_long": {"type": "string"}, "fips": {"type": "string"}, "state_code_int": {"type": "integer"}, "state_code_postal": {"type": "string"}, "state_code_iso": {"type": "string"}, "county_code": {"type": "integer"}, "population": {"type": "integer"}, "countrylevel_id": {"type": "string"}, "census_data": {"type": "object", "properties": {"COUNTYNS": {"type": "string"}, "AFFGEOID": {"type": "string"}, "LSAD": {"type": "string"}, "ALAND": {"type": "integer"}, "AWATER": {"type": "integer"}}, "required": ["COUNTYNS", "AFFGEOID", "LSAD", "ALAND", "AWATER"]}, "center_lat": {"type": "number"}, "center_lon": {"type": "number"}, "area_m2": {"type": "integer"}, "timezone": {"type": "string"}}, "required": ["name", "name_long", "fips", "state_code_int", "state_code_postal", "state_code_iso", "county_code", "population", "countrylevel_id", "census_data", "center_lat", "center_lon", "area_m2", "timezone"]}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["type", "coordinates"]}}, "required": ["type", "properties", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "format-check": {"type": "string"}, "format": {"type": "string"}}, "required": ["test", "format-check", "format"]}, "husky": {"type": "object", "properties": {"hooks": {"type": "object", "properties": {"pre-commit": {"type": "string"}}, "required": ["pre-commit"]}}, "required": ["hooks"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "dependencies": {"type": "object", "properties": {"@octokit/rest": {"type": "string"}, "highlight.js": {"type": "string"}, "js-yaml": {"type": "string"}, "markdown-it": {"type": "string"}, "markdown-it-meta": {"type": "string"}, "nunjucks": {"type": "string"}}, "required": ["@octokit/rest", "highlight.js", "js-yaml", "markdown-it", "markdown-it-meta", "nunjucks"]}, "devDependencies": {"type": "object", "properties": {"husky": {"type": "string"}, "prettier": {"type": "string"}, "pretty-quick": {"type": "string"}}, "required": ["husky", "prettier", "pretty-quick"]}}, "required": ["name", "version", "description", "main", "scripts", "husky", "repository", "author", "license", "bugs", "homepage", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "gist-blog", "version" : "1.0.0", "description" : "Turn your GitHub Gists into a blog", "main" : "index.js", "scripts" : {"test" : "echo \"Error: no test specified\" && exit 1", "format-check" : "prettier --check \"{,!(node_modules)/**/}*.{js,html}\"", "format" : "prettier --write \"{,!(node_modules)/**/}*.{js,html}\""}, "husky" : {"hooks" : {"pre-commit" : "prettier --write \"{,!(node_modules)/**/}*.{js,html}\""}}, "repository" : {"type" : "git", "url" : "git+https://github.com/Aveek-Saha/GistBlog.git"}, "author" : "", "license" : "MIT", "bugs" : {"url" : "https://github.com/Aveek-Saha/GistBlog/issues"}, "homepage" : "https://github.com/Aveek-Saha/GistBlog#readme", "dependencies" : {"@octokit/rest" : "^18.5.3", "highlight.js" : "^10.7.2", "js-yaml" : "^4.1.0", "markdown-it" : "^12.0.6", "markdown-it-meta" : "0.0.1", "nunjucks" : "^3.2.3"}, "devDependencies" : {"husky" : "^6.0.0", "prettier" : "2.2.1", "pretty-quick" : "^3.1.0"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "format-check": {"type": "string"}, "format": {"type": "string"}}, "required": ["test", "format-check", "format"]}, "husky": {"type": "object", "properties": {"hooks": {"type": "object", "properties": {"pre-commit": {"type": "string"}}, "required": ["pre-commit"]}}, "required": ["hooks"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "dependencies": {"type": "object", "properties": {"@octokit/rest": {"type": "string"}, "highlight.js": {"type": "string"}, "js-yaml": {"type": "string"}, "markdown-it": {"type": "string"}, "markdown-it-meta": {"type": "string"}, "nunjucks": {"type": "string"}}, "required": ["@octokit/rest", "highlight.js", "js-yaml", "markdown-it", "markdown-it-meta", "nunjucks"]}, "devDependencies": {"type": "object", "properties": {"husky": {"type": "string"}, "prettier": {"type": "string"}, "pretty-quick": {"type": "string"}}, "required": ["husky", "prettier", "pretty-quick"]}}, "required": ["name", "version", "description", "main", "scripts", "husky", "repository", "author", "license", "bugs", "homepage", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"__type__": {"type": "string"}, "content": {"type": "object", "properties": {"name": {"type": "string"}, "texture": {"type": "string"}, "atlas": {"type": "string"}, "rect": {"type": "array", "items": {"type": "integer"}}, "offset": {"type": "array", "items": {"type": "integer"}}, "originalSize": {"type": "array", "items": {"type": "integer"}}, "capInsets": {"type": "array", "items": {"type": "integer"}}}, "required": ["name", "texture", "atlas", "rect", "offset", "originalSize", "capInsets"]}}, "required": ["__type__", "content"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"__type__" : "cc.SpriteFrame", "content" : {"name" : "img_jigejinbi", "texture" : "46c6977f-fcee-46dd-8b84-d2dcb2dfb22d", "atlas" : "", "rect" : [1, 0, 105, 90], "offset" : [0, 0], "originalSize" : [107, 90], "capInsets" : [0, 0, 0, 0]}}
json_instruct
{"type": "object", "properties": {"__type__": {"type": "string"}, "content": {"type": "object", "properties": {"name": {"type": "string"}, "texture": {"type": "string"}, "atlas": {"type": "string"}, "rect": {"type": "array", "items": {"type": "integer"}}, "offset": {"type": "array", "items": {"type": "integer"}}, "originalSize": {"type": "array", "items": {"type": "integer"}}, "capInsets": {"type": "array", "items": {"type": "integer"}}}, "required": ["name", "texture", "atlas", "rect", "offset", "originalSize", "capInsets"]}}, "required": ["__type__", "content"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"status": {"type": "string"}, "tp": {"type": "integer"}, "msg": {"type": "string"}, "result": {"type": "object", "properties": {"\"95093\"": {"type": "string"}, "\"95048\"": {"type": "string"}}, "required": ["\"95093\"", "\"95048\""]}, "hits": {"type": "string"}}, "required": ["status", "tp", "msg", "result", "hits"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"status" : "success", "tp" : 1, "msg" : "Cities fetched successfully.", "result" : {"\"95093\"" : "Jegunovce", "\"95048\"" : "Nerashte"}, "hits" : "3702"}
json_instruct
{"type": "object", "properties": {"status": {"type": "string"}, "tp": {"type": "integer"}, "msg": {"type": "string"}, "result": {"type": "object", "properties": {"\"95093\"": {"type": "string"}, "\"95048\"": {"type": "string"}}, "required": ["\"95093\"", "\"95048\""]}, "hits": {"type": "string"}}, "required": ["status", "tp", "msg", "result", "hits"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"average_occupancy": {"type": "array", "items": {"type": "number"}}}, "required": ["average_occupancy"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"average_occupancy" : [1.4074153308908093, 1.3712197942604258, 1.3855372922180953, 1.4063391523975997, 1.4014315821852596, 1.437985582315757, 1.4363880443588264, 1.3882421536961609, 1.3821700685097271, 1.3387589698646252, 1.3898086021049179, 1.4786553724785314, 1.4519908181517978, 1.4548816662677952, 1.4019599626003, 1.399907127512876, 1.3917386768783657, 1.4394292316400277, 1.3835889909295587, 1.344573123871498, 1.3949789186321813, 1.3709832626987617, 1.3998176303480472, 1.451900726122818, 1.3954258179465069, 1.3800881993657457, 1.3369444070362382, 1.2583261944400925, 1.2983613630961768, 1.2379402275400209, 1.2183122211508473, 1.213431060867971, 1.1241376185268828, 1.0597381082291384, 1.0453386778351808, 0.9718775396929551, 6.561760871594634, 0.9263609593589363, 1.0018588476166232, 1.042580809990732, 1.0525184824022724, 1.05123302652836, 1.1049259586764197, 1.1953149280742168, 1.2944358832766096, 1.3551243526012942, 1.3955776198079886, 1.4226121435850476, 1.344630473412118, 1.3755992121799627, 1.375386945235539, 1.3088968436186292, 1.3689425581213877, 1.3752544848587875, 1.3768608849521626, 1.3937518808541223, 1.4161266934727235, 1.4119791158295012, 1.3957108041340143, 1.3456507567005498, 1.3034242508286815, 1.3930215553328218, 1.393859452451284, 1.3764687676394556, 1.4219306936799248, 1.3658776926608358, 1.3774918745352214, 1.4701933760138606, 1.4001133943425468, 1.3782991461062883, 1.4379090406567712, 1.3862456169491715, 1.4039115964113489, 1.3731332890591161, 1.375402199786577]}
json_instruct
{"type": "object", "properties": {"average_occupancy": {"type": "array", "items": {"type": "number"}}}, "required": ["average_occupancy"], "$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"}, "workspaces": {"type": "array", "items": {"type": "string"}}, "devDependencies": {"type": "object", "properties": {"eslint": {"type": "string"}, "eslint-config-standard": {"type": "string"}, "eslint-plugin-import": {"type": "string"}, "eslint-plugin-node": {"type": "string"}, "eslint-plugin-promise": {"type": "string"}}, "required": ["eslint", "eslint-config-standard", "eslint-plugin-import", "eslint-plugin-node", "eslint-plugin-promise"]}}, "required": ["name", "private", "workspaces", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "nekoindex", "private" : true, "workspaces" : ["packages/*"], "devDependencies" : {"eslint" : "^7.21.0", "eslint-config-standard" : "latest", "eslint-plugin-import" : "^2.22.1", "eslint-plugin-node" : "^11.1.0", "eslint-plugin-promise" : "^4.2.1"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "private": {"type": "boolean"}, "workspaces": {"type": "array", "items": {"type": "string"}}, "devDependencies": {"type": "object", "properties": {"eslint": {"type": "string"}, "eslint-config-standard": {"type": "string"}, "eslint-plugin-import": {"type": "string"}, "eslint-plugin-node": {"type": "string"}, "eslint-plugin-promise": {"type": "string"}}, "required": ["eslint", "eslint-config-standard", "eslint-plugin-import", "eslint-plugin-node", "eslint-plugin-promise"]}}, "required": ["name", "private", "workspaces", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"ast": {"type": "null"}, "code": {"type": "string"}, "map": {"type": "object", "properties": {"version": {"type": "integer"}, "sources": {"type": "array", "items": {"type": "string"}}, "names": {"type": "array", "items": {"type": "string"}}, "mappings": {"type": "string"}, "sourcesContent": {"type": "array", "items": {"type": "string"}}}, "required": ["version", "sources", "names", "mappings", "sourcesContent"]}, "metadata": {"type": "object", "properties": {}, "required": []}, "sourceType": {"type": "string"}}, "required": ["ast", "code", "map", "metadata", "sourceType"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"ast" : null, "code" : "export const fetchComments = parkId => {\n return dispatch => {\n dispatch({\n type: \"LOADING_COMMENTS\"\n });\n return fetch(`http://localhost:3000/parks/${parkId}/comments`).then(response => response.json()).then(comments => dispatch(setComments(comments)));\n };\n};\n\nconst setComments = comments => {\n return {\n type: \"FETCH_COMMENTS\",\n comments\n };\n};", "map" : {"version" : 3, "sources" : ["/Users/nicholasykng/nationalpark/client/src/actions/fetchComments.js"], "names" : ["fetchComments", "parkId", "dispatch", "type", "fetch", "then", "response", "json", "comments", "setComments"], "mappings" : "AAAA,OAAO,MAAMA,aAAa,GAAIC,MAAD,IAAY;AACrC,SAAOC,QAAQ,IAAI;AACfA,IAAAA,QAAQ,CAAC;AAACC,MAAAA,IAAI,EAAE;AAAP,KAAD,CAAR;AACA,WAAOC,KAAK,CAAE,+BAA8BH,MAAO,WAAvC,CAAL,CACNI,IADM,CACDC,QAAQ,IAAIA,QAAQ,CAACC,IAAT,EADX,EAENF,IAFM,CAEDG,QAAQ,IAAIN,QAAQ,CAACO,WAAW,CAACD,QAAD,CAAZ,CAFnB,CAAP;AAGH,GALD;AAMH,CAPM;;AASP,MAAMC,WAAW,GAAGD,QAAQ,IAAI;AAC5B,SAAO;AACHL,IAAAA,IAAI,EAAE,gBADH;AAEHK,IAAAA;AAFG,GAAP;AAIH,CALD", "sourcesContent" : ["export const fetchComments = (parkId) => {\n return dispatch => {\n dispatch({type: \"LOADING_COMMENTS\"})\n return fetch(`http://localhost:3000/parks/${parkId}/comments`)\n .then(response => response.json())\n .then(comments => dispatch(setComments(comments)))\n }\n}\n\nconst setComments = comments => {\n return {\n type: \"FETCH_COMMENTS\",\n comments\n }\n}"]}, "metadata" : {}, "sourceType" : "module"}
json_instruct
{"type": "object", "properties": {"ast": {"type": "null"}, "code": {"type": "string"}, "map": {"type": "object", "properties": {"version": {"type": "integer"}, "sources": {"type": "array", "items": {"type": "string"}}, "names": {"type": "array", "items": {"type": "string"}}, "mappings": {"type": "string"}, "sourcesContent": {"type": "array", "items": {"type": "string"}}}, "required": ["version", "sources", "names", "mappings", "sourcesContent"]}, "metadata": {"type": "object", "properties": {}, "required": []}, "sourceType": {"type": "string"}}, "required": ["ast", "code", "map", "metadata", "sourceType"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}, "test": {"type": "string"}, "dev": {"type": "string"}, "devServer": {"type": "string"}}, "required": ["start", "test", "dev", "devServer"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "dependencies": {"type": "object", "properties": {"bcryptjs": {"type": "string"}, "body-parser": {"type": "string"}, "connect-flash": {"type": "string"}, "ejs": {"type": "string"}, "express": {"type": "string"}, "express-ejs-layouts": {"type": "string"}, "express-session": {"type": "string"}, "moment": {"type": "string"}, "mongoose": {"type": "string"}, "passport": {"type": "string"}, "passport-local": {"type": "string"}, "socket.io": {"type": "string"}}, "required": ["bcryptjs", "body-parser", "connect-flash", "ejs", "express", "express-ejs-layouts", "express-session", "moment", "mongoose", "passport", "passport-local", "socket.io"]}, "devDependencies": {"type": "object", "properties": {"expect": {"type": "string"}, "mocha": {"type": "string"}, "nodemon": {"type": "string"}}, "required": ["expect", "mocha", "nodemon"]}}, "required": ["name", "version", "description", "main", "scripts", "repository", "keywords", "author", "license", "bugs", "homepage", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "mychat", "version" : "0.1.0", "description" : "A chat application with Socket.io and Express", "main" : "server.js", "scripts" : {"start" : "node server.js", "test" : "mocha server/**/*.test.js", "dev" : "nodemon --exec \"npm test\"", "devServer" : "nodemon server.js"}, "repository" : {"type" : "git", "url" : "git+https://github.com/AlexVanSteenhoven/chat-app.git"}, "keywords" : ["chat", "chatroom", "express", "socket.io", "html"], "author" : "Alex van Steenhoven", "license" : "MIT", "bugs" : {"url" : "https://github.com/AlexVanSteenhoven/chat-app/issues"}, "homepage" : "https://github.com/AlexVanSteenhoven/chat-app#readme", "dependencies" : {"bcryptjs" : "^2.4.3", "body-parser" : "^1.19.0", "connect-flash" : "^0.1.1", "ejs" : "^2.7.1", "express" : "^4.17.1", "express-ejs-layouts" : "^2.5.0", "express-session" : "^1.17.0", "moment" : "^2.24.0", "mongoose" : "^5.7.7", "passport" : "^0.4.0", "passport-local" : "^1.0.0", "socket.io" : "^2.3.0"}, "devDependencies" : {"expect" : "^24.9.0", "mocha" : "^6.2.2", "nodemon" : "^1.19.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"}, "dev": {"type": "string"}, "devServer": {"type": "string"}}, "required": ["start", "test", "dev", "devServer"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "dependencies": {"type": "object", "properties": {"bcryptjs": {"type": "string"}, "body-parser": {"type": "string"}, "connect-flash": {"type": "string"}, "ejs": {"type": "string"}, "express": {"type": "string"}, "express-ejs-layouts": {"type": "string"}, "express-session": {"type": "string"}, "moment": {"type": "string"}, "mongoose": {"type": "string"}, "passport": {"type": "string"}, "passport-local": {"type": "string"}, "socket.io": {"type": "string"}}, "required": ["bcryptjs", "body-parser", "connect-flash", "ejs", "express", "express-ejs-layouts", "express-session", "moment", "mongoose", "passport", "passport-local", "socket.io"]}, "devDependencies": {"type": "object", "properties": {"expect": {"type": "string"}, "mocha": {"type": "string"}, "nodemon": {"type": "string"}}, "required": ["expect", "mocha", "nodemon"]}}, "required": ["name", "version", "description", "main", "scripts", "repository", "keywords", "author", "license", "bugs", "homepage", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "homepage": {"type": "string"}, "author": {"type": "string"}, "version": {"type": "string"}, "git": {"type": "string"}, "packages": {"type": "object", "properties": {"q": {"type": "object", "properties": {}, "required": []}}, "required": ["q"]}}, "required": ["name", "description", "homepage", "author", "version", "git", "packages"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "google-api", "description" : "A wrapper around Google's APIs that understands accounts-google", "homepage" : "", "author" : "", "version" : "0.1.0", "git" : "", "packages" : {"q" : {}}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "homepage": {"type": "string"}, "author": {"type": "string"}, "version": {"type": "string"}, "git": {"type": "string"}, "packages": {"type": "object", "properties": {"q": {"type": "object", "properties": {}, "required": []}}, "required": ["q"]}}, "required": ["name", "description", "homepage", "author", "version", "git", "packages"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"parent": {"type": "string"}}, "required": ["parent"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"parent" : "jineric:block/polished_siltstone_stairs"}
json_instruct
{"type": "object", "properties": {"parent": {"type": "string"}}, "required": ["parent"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "array", "items": {"type": "array", "items": {"type": "string"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
[["350603103001", "\u65b0\u8857\u793e\u533a\u5c45\u59d4\u4f1a", "111", "0"], ["350603103003", "\u94c1\u8def\u793e\u533a\u5c45\u59d4\u4f1a", "111", "0"], ["350603103201", "\u90ed\u5751\u6751\u59d4\u4f1a", "112", "0"], ["350603103202", "\u9662\u540e\u6751\u59d4\u4f1a", "112", "0"], ["350603103203", "\u7bc1\u537f\u6751\u59d4\u4f1a", "220", "0"], ["350603103204", "\u6276\u6447\u6751\u59d4\u4f1a", "220", "0"], ["350603103205", "\u6d1b\u6ee8\u6751\u59d4\u4f1a", "220", "0"], ["350603103206", "\u6c50\u6d66\u6751\u59d4\u4f1a", "220", "0"], ["350603103207", "\u53e3\u793e\u6751\u59d4\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": "array", "items": {"type": "object", "properties": {"namaKab": {"type": "string"}, "originalFilename": {"type": "string"}, "namaPartai": {"type": "string"}, "id": {"type": "integer"}, "noUrut": {"type": "integer"}, "nama": {"type": "string"}, "stringJenisKelamin": {"type": "string"}}, "required": ["namaKab", "originalFilename", "namaPartai", "id", "noUrut", "nama", "stringJenisKelamin"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"namaKab" : "SLEMAN", "originalFilename" : "pasfoto.jpg", "namaPartai" : "PARTAI GERAKAN INDONESIA RAYA", "id" : 69716, "noUrut" : 1, "nama" : "DARA AYU SUHARTO, SH", "stringJenisKelamin" : "Perempuan"}, {"namaKab" : "SLEMAN", "originalFilename" : "billyardo.ft.jpg", "namaPartai" : "PARTAI GERAKAN INDONESIA RAYA", "id" : 186639, "noUrut" : 2, "nama" : "BILYARDO TRI UNTORO", "stringJenisKelamin" : "Laki-Laki"}, {"namaKab" : "SLEMAN", "originalFilename" : "sardjito.ft.jpg", "namaPartai" : "PARTAI GERAKAN INDONESIA RAYA", "id" : 25115, "noUrut" : 3, "nama" : "SARJITO, SE", "stringJenisKelamin" : "Laki-Laki"}, {"namaKab" : "SLEMAN", "originalFilename" : "FT_WAHYU RACHSETYAWAN.jpg", "namaPartai" : "PARTAI GERAKAN INDONESIA RAYA", "id" : 251622, "noUrut" : 4, "nama" : "WAHYU RACHSETYAWAN", "stringJenisKelamin" : "Laki-Laki"}, {"namaKab" : "SLEMAN", "originalFilename" : "FT_MUSDRIK.jpg", "namaPartai" : "PARTAI GERAKAN INDONESIA RAYA", "id" : 101261, "noUrut" : 5, "nama" : "MUDRIK, S.Kom", "stringJenisKelamin" : "Laki-Laki"}, {"namaKab" : "SLEMAN", "originalFilename" : "menik sutini.jpg", "namaPartai" : "PARTAI GERAKAN INDONESIA RAYA", "id" : 110807, "noUrut" : 6, "nama" : "MENIK SUTINI", "stringJenisKelamin" : "Perempuan"}, {"namaKab" : "SLEMAN", "originalFilename" : "foto_mudho.jpg", "namaPartai" : "PARTAI GERAKAN INDONESIA RAYA", "id" : 251219, "noUrut" : 7, "nama" : "MUDHORIANDOKO", "stringJenisKelamin" : "Laki-Laki"}, {"namaKab" : "SLEMAN", "originalFilename" : "febri.ft.jpg", "namaPartai" : "PARTAI GERAKAN INDONESIA RAYA", "id" : 223324, "noUrut" : 8, "nama" : "FEBRI CATUR WULANDARI", "stringJenisKelamin" : "Perempuan"}, {"namaKab" : "SLEMAN", "originalFilename" : "FT_SUBANDI KUSUMA.jpg", "namaPartai" : "PARTAI GERAKAN INDONESIA RAYA", "id" : 66936, "noUrut" : 9, "nama" : "SUBANDI KUSUMA, SH.MH", "stringJenisKelamin" : "Laki-Laki"}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"namaKab": {"type": "string"}, "originalFilename": {"type": "string"}, "namaPartai": {"type": "string"}, "id": {"type": "integer"}, "noUrut": {"type": "integer"}, "nama": {"type": "string"}, "stringJenisKelamin": {"type": "string"}}, "required": ["namaKab", "originalFilename", "namaPartai", "id", "noUrut", "nama", "stringJenisKelamin"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"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/bcf3dd92-7a7d-34cb-ac9e-f7929ce544b8", "expression" : [{"id" : "http://data.doremus.org/expression/09d060f7-ad89-39cf-8571-cd73f4cdeddf"}, {"id" : "http://data.doremus.org/expression/1110ea4b-6c34-3840-af47-c61b7fc3f533"}, {"id" : "http://data.doremus.org/expression/462160af-985e-3f08-880d-8d85cbb028f4"}, {"id" : "http://data.doremus.org/expression/db397de2-33f6-3705-aa3d-e65323369d26"}, {"id" : "http://data.doremus.org/expression/c9ad7e4c-09f6-3e82-b32e-c25d8a17804c"}, {"id" : "http://data.doremus.org/expression/7ac7c428-4965-3592-ba0e-f93f5d99d874"}, {"id" : "http://data.doremus.org/expression/4cf3c8dc-11a6-3a86-a6ec-cd8f0806926f"}, {"id" : "http://data.doremus.org/expression/d7c32996-e708-39f5-b564-e996c70ed473"}, {"id" : "http://data.doremus.org/expression/a436fb60-06a6-34a2-a161-049cfa655ef6"}, {"id" : "http://data.doremus.org/expression/3fc0d22e-65aa-35cb-af91-908e7453206b"}, {"id" : "http://data.doremus.org/expression/8b3c3459-1bd2-38ba-af00-f878fb4dc50a"}, {"id" : "http://data.doremus.org/expression/71264f1b-6b03-3105-be65-13d536cdf3fb"}, {"id" : "http://data.doremus.org/expression/b9c42777-23b8-31c8-810b-2dd935b19abc"}, {"id" : "http://data.doremus.org/expression/e0614b9b-6757-3d1c-8020-1141b341ff0b"}, {"id" : "http://data.doremus.org/expression/de080b92-cb8d-355c-a416-378c0143268e"}, {"id" : "http://data.doremus.org/expression/fdc03601-b1c8-3d02-a246-c4823c00ca98"}]}
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#"}
Generate a valid JSON object that conforms to the following schema: {"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"}
["tr-websocket"]
json_instruct
{"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"id": {"type": "string"}, "text": {"type": "string"}}, "required": ["id", "text"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : "d1007-54", "text" : "-10-\nThe Grant-in-Aid Committee, in allocating funds from the ETRC in such\na way as to result in maximum benefit to the development of production\ntechniques and local talent as well as benefit to the NAEB Radio Network\nand to the nation as a \"third program\" service.\nThe Engineering Committee in its concentration on planning workshops,\nthe Engineering Newsletter, Technical Tips, etc.\nThe Research Committee in the collection of consultant resources\nrepresented by the recent \"who*s who\" in educational broadcasting repre\u00ac\nsented in the recently published DIRECTORY OF (NAEB MEMBER) EDUCATIONAL\nBROADCASTERS.\nAlso involved are such committees as the Associate Members Committee, seek\u00ac\ning to set increasingly higher standards for qualification for membership; the Awards\nand Citations Committee, seeking out and honoring leaders from within the ranks of\neducational broadcasters; Convention Planning Committees, securing the best possible\nspeakers, and demonstrations of the best efforts realized by its members, the educa\u00ac\ntional broadcasters of the U.S., and so on.\nPersonnel\nOne of the great strengths of the NAEB is the use it makes of volunteer\nmanpower, that is the time and energy of officers, directors, committee members, and\nordinary active contributing members who receive no reimbursement from the Associa\u00ac\ntion. Nevertheless, the increasingly important services and functions of the organ\u00ac\nization must be coordinated by a permanent staff. This staff was set up and a\nnational headquarters created with funds provided by the W. K. Kellogg Foundation\ngrant. It is only the existence of this permanent staff in Headquarters which pro\u00ac\nvides the mechanism to make possible the NAEBxs handling of other grants from other\norganizations and foundations and to carry on the responsibilities and services of\nthe Association."}
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "text": {"type": "string"}}, "required": ["id", "text"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {"type": "integer"}}, "productReviews": {"type": "array", "items": {"type": "object", "properties": {"productId": {"type": "integer"}, "reviewText": {"type": "string"}, "reviewDate": {"type": "string"}}, "required": ["productId", "reviewText", "reviewDate"]}}}, "required": ["userId", "cartId", "preferredProducts", "productReviews"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"userId" : 6968, "cartId" : "799cbed5-ef50-460b-ab5c-6f22a2ff31f3", "preferredProducts" : [4314, 3978, 4162, 4927], "productReviews" : [{"productId" : 2096, "reviewText" : "My neighbor Julisa has one of these. She works as a bartender and she says it looks crooked.", "reviewDate" : "2019-10-17T04:53:54.6747816+03:00"}]}
json_instruct
{"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {"type": "integer"}}, "productReviews": {"type": "array", "items": {"type": "object", "properties": {"productId": {"type": "integer"}, "reviewText": {"type": "string"}, "reviewDate": {"type": "string"}}, "required": ["productId", "reviewText", "reviewDate"]}}}, "required": ["userId", "cartId", "preferredProducts", "productReviews"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"\u5de5\u5ee0\u540d\u7a31": {"type": "string"}, "\u5de5\u5ee0\u767b\u8a18\u7de8\u865f": {"type": "string"}, "\u5de5\u5ee0\u8a2d\u7acb\u8a31\u53ef\u6848\u865f": {"type": "string"}, "\u5de5\u5ee0\u5730\u5740": {"type": "string"}, "\u5de5\u5ee0\u5e02\u93ae\u9109\u6751\u91cc": {"type": "string"}, "\u5de5\u5ee0\u8ca0\u8cac\u4eba\u59d3\u540d": {"type": "string"}, "\u71df\u5229\u4e8b\u696d\u7d71\u4e00\u7de8\u865f": {"type": "string"}, "\u5de5\u5ee0\u7d44\u7e54\u578b\u614b": {"type": "string"}, "\u5de5\u5ee0\u8a2d\u7acb\u6838\u51c6\u65e5\u671f": {"type": "string"}, "\u5de5\u5ee0\u767b\u8a18\u6838\u51c6\u65e5\u671f": {"type": "string"}, "\u5de5\u5ee0\u767b\u8a18\u72c0\u614b": {"type": "string"}, "\u7522\u696d\u985e\u5225": {"type": "array", "items": {"type": "string"}}, "\u4e3b\u8981\u7522\u54c1": {"type": "array", "items": {"type": "string"}}, "egis": {"type": "null"}}, "required": ["\u5de5\u5ee0\u540d\u7a31", "\u5de5\u5ee0\u767b\u8a18\u7de8\u865f", "\u5de5\u5ee0\u8a2d\u7acb\u8a31\u53ef\u6848\u865f", "\u5de5\u5ee0\u5730\u5740", "\u5de5\u5ee0\u5e02\u93ae\u9109\u6751\u91cc", "\u5de5\u5ee0\u8ca0\u8cac\u4eba\u59d3\u540d", "\u71df\u5229\u4e8b\u696d\u7d71\u4e00\u7de8\u865f", "\u5de5\u5ee0\u7d44\u7e54\u578b\u614b", "\u5de5\u5ee0\u8a2d\u7acb\u6838\u51c6\u65e5\u671f", "\u5de5\u5ee0\u767b\u8a18\u6838\u51c6\u65e5\u671f", "\u5de5\u5ee0\u767b\u8a18\u72c0\u614b", "\u7522\u696d\u985e\u5225", "\u4e3b\u8981\u7522\u54c1", "egis"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"\u5de5\u5ee0\u540d\u7a31" : "\u5f70\u88d5\u570b\u969b\u6709\u9650\u516c\u53f8\u6c50\u6b62\u5ee0", "\u5de5\u5ee0\u767b\u8a18\u7de8\u865f" : "65004728", "\u5de5\u5ee0\u8a2d\u7acb\u8a31\u53ef\u6848\u865f" : "", "\u5de5\u5ee0\u5730\u5740" : "\u65b0\u5317\u5e02\u6c50\u6b62\u5340\u74b0\u6cb3\u885788\u5df73\u5f0415\u865f1\u6a13", "\u5de5\u5ee0\u5e02\u93ae\u9109\u6751\u91cc" : "\u65b0\u5317\u5e02\u6c50\u6b62\u5340", "\u5de5\u5ee0\u8ca0\u8cac\u4eba\u59d3\u540d" : "\u694a\u96c5\u73b2", "\u71df\u5229\u4e8b\u696d\u7d71\u4e00\u7de8\u865f" : "13034411", "\u5de5\u5ee0\u7d44\u7e54\u578b\u614b" : "\u6709\u9650\u516c\u53f8", "\u5de5\u5ee0\u8a2d\u7acb\u6838\u51c6\u65e5\u671f" : "", "\u5de5\u5ee0\u767b\u8a18\u6838\u51c6\u65e5\u671f" : "1050219", "\u5de5\u5ee0\u767b\u8a18\u72c0\u614b" : "\u751f\u7522\u4e2d", "\u7522\u696d\u985e\u5225" : ["25\u91d1\u5c6c\u88fd\u54c1\u88fd\u9020\u696d"], "\u4e3b\u8981\u7522\u54c1" : ["252\u91d1\u5c6c\u7d50\u69cb\u53ca\u5efa\u7bc9\u7d44\u4ef6"], "egis" : null}
json_instruct
{"type": "object", "properties": {"\u5de5\u5ee0\u540d\u7a31": {"type": "string"}, "\u5de5\u5ee0\u767b\u8a18\u7de8\u865f": {"type": "string"}, "\u5de5\u5ee0\u8a2d\u7acb\u8a31\u53ef\u6848\u865f": {"type": "string"}, "\u5de5\u5ee0\u5730\u5740": {"type": "string"}, "\u5de5\u5ee0\u5e02\u93ae\u9109\u6751\u91cc": {"type": "string"}, "\u5de5\u5ee0\u8ca0\u8cac\u4eba\u59d3\u540d": {"type": "string"}, "\u71df\u5229\u4e8b\u696d\u7d71\u4e00\u7de8\u865f": {"type": "string"}, "\u5de5\u5ee0\u7d44\u7e54\u578b\u614b": {"type": "string"}, "\u5de5\u5ee0\u8a2d\u7acb\u6838\u51c6\u65e5\u671f": {"type": "string"}, "\u5de5\u5ee0\u767b\u8a18\u6838\u51c6\u65e5\u671f": {"type": "string"}, "\u5de5\u5ee0\u767b\u8a18\u72c0\u614b": {"type": "string"}, "\u7522\u696d\u985e\u5225": {"type": "array", "items": {"type": "string"}}, "\u4e3b\u8981\u7522\u54c1": {"type": "array", "items": {"type": "string"}}, "egis": {"type": "null"}}, "required": ["\u5de5\u5ee0\u540d\u7a31", "\u5de5\u5ee0\u767b\u8a18\u7de8\u865f", "\u5de5\u5ee0\u8a2d\u7acb\u8a31\u53ef\u6848\u865f", "\u5de5\u5ee0\u5730\u5740", "\u5de5\u5ee0\u5e02\u93ae\u9109\u6751\u91cc", "\u5de5\u5ee0\u8ca0\u8cac\u4eba\u59d3\u540d", "\u71df\u5229\u4e8b\u696d\u7d71\u4e00\u7de8\u865f", "\u5de5\u5ee0\u7d44\u7e54\u578b\u614b", "\u5de5\u5ee0\u8a2d\u7acb\u6838\u51c6\u65e5\u671f", "\u5de5\u5ee0\u767b\u8a18\u6838\u51c6\u65e5\u671f", "\u5de5\u5ee0\u767b\u8a18\u72c0\u614b", "\u7522\u696d\u985e\u5225", "\u4e3b\u8981\u7522\u54c1", "egis"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "private": {"type": "boolean"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "verify": {"type": "string"}}, "required": ["test", "verify"]}, "license": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "devDependencies": {"type": "object", "properties": {"@rarible/ethereum-sdk-test-common": {"type": "string"}, "@rarible/protocol-ethereum-sdk": {"type": "string"}, "@rarible/test-provider": {"type": "string"}, "@rarible/web3-ethereum": {"type": "string"}, "@types/jest": {"type": "string"}, "@types/node-fetch": {"type": "string"}, "@types/web3-provider-engine": {"type": "string"}, "ethereumjs-wallet": {"type": "string"}, "form-data": {"type": "string"}, "jest": {"type": "string"}, "ts-jest": {"type": "string"}, "tslib": {"type": "string"}, "typescript": {"type": "string"}, "web3": {"type": "string"}, "web3-provider-engine": {"type": "string"}}, "required": ["@rarible/ethereum-sdk-test-common", "@rarible/protocol-ethereum-sdk", "@rarible/test-provider", "@rarible/web3-ethereum", "@types/jest", "@types/node-fetch", "@types/web3-provider-engine", "ethereumjs-wallet", "form-data", "jest", "ts-jest", "tslib", "typescript", "web3", "web3-provider-engine"]}}, "required": ["name", "version", "keywords", "private", "scripts", "license", "repository", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "tests-current", "version" : "1.0.0", "keywords" : ["rarible", "common", "action", "protocol", "e2e", "test"], "private" : true, "scripts" : {"test" : "jest --maxWorkers=1", "verify" : "tsc --noEmit"}, "license" : "Apache-2.0", "repository" : {"type" : "git", "url" : "https://github.com/rariblecom/ts-common.git"}, "devDependencies" : {"@rarible/ethereum-sdk-test-common" : "^0.7.2", "@rarible/protocol-ethereum-sdk" : "^0.9.6", "@rarible/test-provider" : "^0.1.22", "@rarible/web3-ethereum" : "0.7.2", "@types/jest" : "26.0.24", "@types/node-fetch" : "2.5.12", "@types/web3-provider-engine" : "^14.0.1", "ethereumjs-wallet" : "1.0.1", "form-data" : "4.0.0", "jest" : "27.0.6", "ts-jest" : "27.0.3", "tslib" : "2.3.1", "typescript" : "4.3.5", "web3" : "1.2.11", "web3-provider-engine" : "16.0.1"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "private": {"type": "boolean"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "verify": {"type": "string"}}, "required": ["test", "verify"]}, "license": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "devDependencies": {"type": "object", "properties": {"@rarible/ethereum-sdk-test-common": {"type": "string"}, "@rarible/protocol-ethereum-sdk": {"type": "string"}, "@rarible/test-provider": {"type": "string"}, "@rarible/web3-ethereum": {"type": "string"}, "@types/jest": {"type": "string"}, "@types/node-fetch": {"type": "string"}, "@types/web3-provider-engine": {"type": "string"}, "ethereumjs-wallet": {"type": "string"}, "form-data": {"type": "string"}, "jest": {"type": "string"}, "ts-jest": {"type": "string"}, "tslib": {"type": "string"}, "typescript": {"type": "string"}, "web3": {"type": "string"}, "web3-provider-engine": {"type": "string"}}, "required": ["@rarible/ethereum-sdk-test-common", "@rarible/protocol-ethereum-sdk", "@rarible/test-provider", "@rarible/web3-ethereum", "@types/jest", "@types/node-fetch", "@types/web3-provider-engine", "ethereumjs-wallet", "form-data", "jest", "ts-jest", "tslib", "typescript", "web3", "web3-provider-engine"]}}, "required": ["name", "version", "keywords", "private", "scripts", "license", "repository", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"row1": {"type": "array", "items": {"type": "number"}}, "row2": {"type": "array", "items": {"type": "number"}}, "row3": {"type": "array", "items": {"type": "number"}}, "row4": {"type": "array", "items": {"type": "number"}}, "row5": {"type": "array", "items": {"type": "number"}}}, "required": ["row1", "row2", "row3", "row4", "row5"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"row1" : [9451.0, 8948.5, 7305.0, 6999.0, 6164.0, 6057.0], "row2" : [Infinity, Infinity, Infinity, Infinity, Infinity, Infinity], "row3" : [8628.5, 8067.0, 6879.0, 6544.0, 5889.5, 5722.0], "row4" : [7745.5, 7852.5, 6149.0, 6391.0, 5341.5, 5599.0], "row5" : [Infinity, Infinity, Infinity, Infinity, Infinity, Infinity]}
json_instruct
{"type": "object", "properties": {"row1": {"type": "array", "items": {"type": "number"}}, "row2": {"type": "array", "items": {"type": "number"}}, "row3": {"type": "array", "items": {"type": "number"}}, "row4": {"type": "array", "items": {"type": "number"}}, "row5": {"type": "array", "items": {"type": "number"}}}, "required": ["row1", "row2", "row3", "row4", "row5"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"name": {"type": "string"}, "displayName": {"type": "string"}, "version": {"type": "string"}, "unity": {"type": "string"}, "description": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "repository": {"type": "object", "properties": {"url": {"type": "string"}, "type": {"type": "string"}}, "required": ["url", "type"]}, "author": {"type": "object", "properties": {"name": {"type": "string"}, "url": {"type": "string"}}, "required": ["name", "url"]}}, "required": ["name", "displayName", "version", "unity", "description", "keywords", "repository", "author"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "io.armet.unity.buildexporter", "displayName" : "BuildExporter", "version" : "1.3.1", "unity" : "2020.3", "description" : "Provides an execute method that handles versioning dependent on passed commandline arguments. These are custom commandline arguments that are parsed by this package in addition to all other commandline arguments that Unity supports per default when run in batchmode. For a more detailed explanation please see the README that is part of this package.", "keywords" : ["build", "pipeline", "export", "version", "versioning", "batchmode", "commandline", "fastlane"], "repository" : {"url" : "https://github.com/ar-met/unity-build-exporter", "type" : "git"}, "author" : {"name" : "ar:met", "url" : "https://www.armet.at/"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "displayName": {"type": "string"}, "version": {"type": "string"}, "unity": {"type": "string"}, "description": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "repository": {"type": "object", "properties": {"url": {"type": "string"}, "type": {"type": "string"}}, "required": ["url", "type"]}, "author": {"type": "object", "properties": {"name": {"type": "string"}, "url": {"type": "string"}}, "required": ["name", "url"]}}, "required": ["name", "displayName", "version", "unity", "description", "keywords", "repository", "author"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"WeaponWieldsYou": {"type": "array", "items": {"type": "string"}}}, "required": ["WeaponWieldsYou"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"WeaponWieldsYou" : ["EmpathicWeapon", "PeoplePuppets", "InstantExpert", "SituationalSword", "WouldntHitAGirl", "EvilWeapon", "MarionetteMotion", "TalkingWeapon", "SoulJar", "SealedBadassInACan", "SealedGoodInACan", "SealedEvilInACan", "SealedBadassInACan", "LoyalPhlebotinum", "ClingyMacGuffin", "CoolSword", "FlyingWeapon", "AnimateInanimateObject", "EmpathicWeapon", "PeoplePuppets", "DemonicPossession", "EquippableAlly", "AmbiguousGender", "AxCrazy", "BigBad", "NoSell", "BigDamnMovie", "BigBad", "Exposition", "BigBad", "HeroicBSOD", "PowerFist", "AxCrazy", "ZombieApocalypse", "TakeOverTheWorld", "EmpathicWeapon", "DeaderThanDead", "AttackItsWeakPoint", "ClingyMacguffin", "EmpathicWeapon", "DangerousForbiddenTechnique", "NeuralImplanting", "AttackItsWeakPoint", "LandOfFaerie", "HordeOfAlienLocusts", "LivingWeapon", "PlasmaCannon", "LegendaryWeapon", "EvilWeapon", "EmpathicWeapon", "YourSoulIsMine", "BloodKnight", "UpToEleven", "NightmareFuel", "OurGodsAreDifferent", "GunsAkimbo", "MindControl", "OmnicidalManiac", "MindRape", "BigBad", "SuperpoweredEvilSide", "SealedEvilInACan", "ThePowerOfLove", "EvilWeapon", "LivingShadow", "ArtificialLimbs", "MorphWeapon", "BladeBelowTheShoulder", "LovableCoward", "CrazyJealousGuy", "LoveInterest", "MorphWeapon", "LeakingCanOfEvil", "BodySurf", "YouHaveOutlivedYourUsefulness", "SuperScience", "LoyalPhlebotinum", "WarriorTherapist"]}
json_instruct
{"type": "object", "properties": {"WeaponWieldsYou": {"type": "array", "items": {"type": "string"}}}, "required": ["WeaponWieldsYou"], "$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"}, "keywords": {"type": "array", "items": {"type": "string"}}, "scripts": {"type": "object", "properties": {}, "required": []}, "directories": {"type": "object", "properties": {"lib": {"type": "string"}}, "required": ["lib"]}, "author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"canvas": {"type": "string"}}, "required": ["canvas"]}, "devDependencies": {"type": "object", "properties": {}, "required": []}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}}, "required": ["name", "version", "description", "main", "keywords", "scripts", "directories", "author", "license", "dependencies", "devDependencies", "repository", "bugs", "homepage"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "@hidev/js-map-tiler", "version" : "1.0.0", "description" : "Module generating tiles from an image that can be used in tiled web maps", "main" : "src/index.js", "keywords" : ["tile", "tiled web map", "tile image", "mapping"], "scripts" : {}, "directories" : {"lib" : "src"}, "author" : "Baptiste Miquel", "license" : "MIT", "dependencies" : {"canvas" : "^2.6.1"}, "devDependencies" : {}, "repository" : {"type" : "git", "url" : "git+https://github.com/HiDEVTeam/js-map-tiler.git"}, "bugs" : {"url" : "https://github.com/HiDEVTeam/js-map-tiler/issues"}, "homepage" : "https://github.com/HiDEVTeam/js-map-tiler#readme"}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "scripts": {"type": "object", "properties": {}, "required": []}, "directories": {"type": "object", "properties": {"lib": {"type": "string"}}, "required": ["lib"]}, "author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"canvas": {"type": "string"}}, "required": ["canvas"]}, "devDependencies": {"type": "object", "properties": {}, "required": []}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}}, "required": ["name", "version", "description", "main", "keywords", "scripts", "directories", "author", "license", "dependencies", "devDependencies", "repository", "bugs", "homepage"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"}
["bookshelf-jsonapi"]
json_instruct
{"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"frame_id": {"type": "integer"}, "walking": {"type": "string"}, "video_id": {"type": "string"}, "bbs": {"type": "array", "items": {"type": "object", "properties": {"artwork_id": {"type": "string"}, "right": {"type": "number"}, "bottom": {"type": "number"}, "top": {"type": "number"}, "confidence": {"type": "integer"}, "recognized": {"type": "boolean"}, "bb_big_enough": {"type": "boolean"}, "class": {"type": "string"}, "left": {"type": "number"}}, "required": ["artwork_id", "right", "bottom", "top", "confidence", "recognized", "bb_big_enough", "class", "left"]}}, "p_voice": {"type": "string"}}, "required": ["frame_id", "walking", "video_id", "bbs", "p_voice"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"frame_id" : 2194, "walking" : "0", "video_id" : "VID_20161007_131547_reduced", "bbs" : [{"artwork_id" : "san_giorgio_donatello", "right" : 0.560404, "bottom" : 0.523319, "top" : 0.131364, "confidence" : 120, "recognized" : true, "bb_big_enough" : true, "class" : "artwork", "left" : 0.307506}, {"artwork_id" : "attis_donatello", "right" : 0.83892, "bottom" : 0.725721, "top" : 0.281383, "confidence" : 261, "recognized" : true, "bb_big_enough" : true, "class" : "artwork", "left" : 0.551558}], "p_voice" : "0"}
json_instruct
{"type": "object", "properties": {"frame_id": {"type": "integer"}, "walking": {"type": "string"}, "video_id": {"type": "string"}, "bbs": {"type": "array", "items": {"type": "object", "properties": {"artwork_id": {"type": "string"}, "right": {"type": "number"}, "bottom": {"type": "number"}, "top": {"type": "number"}, "confidence": {"type": "integer"}, "recognized": {"type": "boolean"}, "bb_big_enough": {"type": "boolean"}, "class": {"type": "string"}, "left": {"type": "number"}}, "required": ["artwork_id", "right", "bottom", "top", "confidence", "recognized", "bb_big_enough", "class", "left"]}}, "p_voice": {"type": "string"}}, "required": ["frame_id", "walking", "video_id", "bbs", "p_voice"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"subjects": {"type": "object", "properties": {"group": {"type": "object", "properties": {"default": {"type": "array", "items": {"type": "object", "properties": {"permissions": {"type": "object", "properties": {"some.perm": {"type": "integer"}}, "required": ["some.perm"]}}, "required": ["permissions"]}}, "resident": {"type": "array", "items": {"type": "object", "properties": {}, "required": []}}, "elder": {"type": "array", "items": {"type": "object", "properties": {}, "required": []}}, "mayor": {"type": "array", "items": {"type": "object", "properties": {}, "required": []}}, "mod": {"type": "array", "items": {"type": "object", "properties": {}, "required": []}}, "head-mod": {"type": "array", "items": {"type": "object", "properties": {}, "required": []}}, "admin": {"type": "array", "items": {"type": "object", "properties": {}, "required": []}}, "owner": {"type": "array", "items": {"type": "object", "properties": {"permissions-default": {"type": "integer"}}, "required": ["permissions-default"]}}}, "required": ["default", "resident", "elder", "mayor", "mod", "head-mod", "admin", "owner"]}}, "required": ["group"]}, "rank-ladders": {"type": "object", "properties": {"default": {"type": "array", "items": {"type": "string"}}, "moderation": {"type": "array", "items": {"type": "string"}}}, "required": ["default", "moderation"]}}, "required": ["subjects", "rank-ladders"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"subjects" : {"group" : {"default" : [{"permissions" : {"some.perm" : 1}}], "resident" : [{}], "elder" : [{}], "mayor" : [{}], "mod" : [{}], "head-mod" : [{}], "admin" : [{}], "owner" : [{"permissions-default" : 1}]}}, "rank-ladders" : {"default" : ["group:default", "group:resident", "group:elder", "group:mayor"], "moderation" : ["group:mod", "group:head-mod", "group:admin"]}}
json_instruct
{"type": "object", "properties": {"subjects": {"type": "object", "properties": {"group": {"type": "object", "properties": {"default": {"type": "array", "items": {"type": "object", "properties": {"permissions": {"type": "object", "properties": {"some.perm": {"type": "integer"}}, "required": ["some.perm"]}}, "required": ["permissions"]}}, "resident": {"type": "array", "items": {"type": "object", "properties": {}, "required": []}}, "elder": {"type": "array", "items": {"type": "object", "properties": {}, "required": []}}, "mayor": {"type": "array", "items": {"type": "object", "properties": {}, "required": []}}, "mod": {"type": "array", "items": {"type": "object", "properties": {}, "required": []}}, "head-mod": {"type": "array", "items": {"type": "object", "properties": {}, "required": []}}, "admin": {"type": "array", "items": {"type": "object", "properties": {}, "required": []}}, "owner": {"type": "array", "items": {"type": "object", "properties": {"permissions-default": {"type": "integer"}}, "required": ["permissions-default"]}}}, "required": ["default", "resident", "elder", "mayor", "mod", "head-mod", "admin", "owner"]}}, "required": ["group"]}, "rank-ladders": {"type": "object", "properties": {"default": {"type": "array", "items": {"type": "string"}}, "moderation": {"type": "array", "items": {"type": "string"}}}, "required": ["default", "moderation"]}}, "required": ["subjects", "rank-ladders"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"category": {"type": "string"}, "description": {"type": "string"}, "ignore": {"type": "boolean"}, "images": {"type": "array", "items": {"type": "string"}}, "keywords": {"type": "array", "items": {"type": "string"}}, "redirect_from": {"type": "array", "items": {"type": "string"}}, "relevant_apis": {"type": "array", "items": {"type": "string"}}, "snippets": {"type": "array", "items": {"type": "string"}}, "title": {"type": "string"}}, "required": ["category", "description", "ignore", "images", "keywords", "redirect_from", "relevant_apis", "snippets", "title"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"category" : "Analysis", "description" : "Perform a line of sight analysis between two points in real time.", "ignore" : false, "images" : ["screenshot.png"], "keywords" : ["3D", "line of sight", "visibility", "visibility analysis", "AnalysisOverlay", "LocationLineOfSight", "SceneView"], "redirect_from" : ["/qt/latest/cpp/sample-code/sample-qt-lineofsightlocation.htm"], "relevant_apis" : ["AnalysisOverlay", "LocationLineOfSight", "SceneView"], "snippets" : ["LineOfSightLocation.cpp", "LineOfSightLocation.h", "LineOfSightLocation.qml"], "title" : "Line of sight (location)"}
json_instruct
{"type": "object", "properties": {"category": {"type": "string"}, "description": {"type": "string"}, "ignore": {"type": "boolean"}, "images": {"type": "array", "items": {"type": "string"}}, "keywords": {"type": "array", "items": {"type": "string"}}, "redirect_from": {"type": "array", "items": {"type": "string"}}, "relevant_apis": {"type": "array", "items": {"type": "string"}}, "snippets": {"type": "array", "items": {"type": "string"}}, "title": {"type": "string"}}, "required": ["category", "description", "ignore", "images", "keywords", "redirect_from", "relevant_apis", "snippets", "title"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"patthana16.11:0.1": {"type": "string"}, "patthana16.11:0.2": {"type": "string"}, "patthana16.11:0.3": {"type": "string"}, "patthana16.11:1.1": {"type": "string"}, "patthana16.11:2.1": {"type": "string"}, "patthana16.11:3.1": {"type": "string"}, "patthana16.11:4.1": {"type": "string"}}, "required": ["patthana16.11:0.1", "patthana16.11:0.2", "patthana16.11:0.3", "patthana16.11:1.1", "patthana16.11:2.1", "patthana16.11:3.1", "patthana16.11:4.1"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"patthana16.11:0.1" : "<article id='patthana16.11'><header><ul><li class='division'>{}</li>", "patthana16.11:0.2" : "<li class='subdivision'>{}</li></ul>", "patthana16.11:0.3" : "<h1>{}</h1></header>", "patthana16.11:1.1" : "<p>{}</p>", "patthana16.11:2.1" : "<p>{}</p>", "patthana16.11:3.1" : "<p>{}</p>", "patthana16.11:4.1" : "<p>{}</p></article>"}
json_instruct
{"type": "object", "properties": {"patthana16.11:0.1": {"type": "string"}, "patthana16.11:0.2": {"type": "string"}, "patthana16.11:0.3": {"type": "string"}, "patthana16.11:1.1": {"type": "string"}, "patthana16.11:2.1": {"type": "string"}, "patthana16.11:3.1": {"type": "string"}, "patthana16.11:4.1": {"type": "string"}}, "required": ["patthana16.11:0.1", "patthana16.11:0.2", "patthana16.11:0.3", "patthana16.11:1.1", "patthana16.11:2.1", "patthana16.11:3.1", "patthana16.11:4.1"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"type": {"type": "string"}, "level": {"type": "string"}, "label": {"type": "string"}, "locale": {"type": "string"}, "country_id": {"type": "integer"}, "country_reference": {"type": "integer"}, "country_name": {"type": "string"}, "region_id": {"type": "string"}, "region_reference": {"type": "string"}, "region_name": {"type": "string"}, "province_id": {"type": "string"}, "province_reference": {"type": "string"}, "province_name": {"type": "string"}, "city_id": {"type": "string"}, "city_reference": {"type": "string"}, "city_name": {"type": "string"}, "barangay_id": {"type": "string"}, "barangay_reference": {"type": "string"}, "barangay_name": {"type": "string"}}, "required": ["type", "level", "label", "locale", "country_id", "country_reference", "country_name", "region_id", "region_reference", "region_name", "province_id", "province_reference", "province_name", "city_id", "city_reference", "city_name", "barangay_id", "barangay_reference", "barangay_name"]}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}}, "required": ["type", "coordinates"]}}, "required": ["type", "properties", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"type" : "Feature", "properties" : {"type" : "barangay", "level" : "4", "label" : "Taytay, Guiuan, Eastern Samar, Eastern Visayas (Region VIII), PH", "locale" : "ph.eastern-visayas-region-viii.eastern-samar.guiuan.taytay", "country_id" : 177, "country_reference" : 177, "country_name" : "Philippines", "region_id" : "10", "region_reference" : "8", "region_name" : "Eastern Visayas (Region VIII)", "province_id" : "31", "province_reference" : "31", "province_name" : "Eastern Samar", "city_id" : "510", "city_reference" : "558", "city_name" : "Guiuan", "barangay_id" : "14383", "barangay_reference" : "13519", "barangay_name" : "Taytay"}, "geometry" : {"type" : "MultiPolygon", "coordinates" : [[[[125.752777, 11.05636], [125.753166, 11.05588], [125.753609, 11.05556], [125.753609, 11.05528], [125.754723, 11.05417], [125.754723, 11.05389], [125.756111, 11.0525], [125.756111, 11.05222], [125.756393, 11.05194], [125.756393, 11.05167], [125.756668, 11.05139], [125.756668, 11.05111], [125.756943, 11.05083], [125.756943, 11.05056], [125.757217, 11.04989], [125.757378, 11.0497], [125.757538, 11.04957], [125.757767, 11.04931], [125.758148, 11.0488], [125.758522, 11.04834], [125.757828, 11.04801], [125.740501, 11.03961], [125.736397, 11.04848], [125.752663, 11.05632], [125.752777, 11.05636]]]]}}
json_instruct
{"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"type": {"type": "string"}, "level": {"type": "string"}, "label": {"type": "string"}, "locale": {"type": "string"}, "country_id": {"type": "integer"}, "country_reference": {"type": "integer"}, "country_name": {"type": "string"}, "region_id": {"type": "string"}, "region_reference": {"type": "string"}, "region_name": {"type": "string"}, "province_id": {"type": "string"}, "province_reference": {"type": "string"}, "province_name": {"type": "string"}, "city_id": {"type": "string"}, "city_reference": {"type": "string"}, "city_name": {"type": "string"}, "barangay_id": {"type": "string"}, "barangay_reference": {"type": "string"}, "barangay_name": {"type": "string"}}, "required": ["type", "level", "label", "locale", "country_id", "country_reference", "country_name", "region_id", "region_reference", "region_name", "province_id", "province_reference", "province_name", "city_id", "city_reference", "city_name", "barangay_id", "barangay_reference", "barangay_name"]}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}}, "required": ["type", "coordinates"]}}, "required": ["type", "properties", "geometry"], "$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"}, "type": {"type": "string"}, "license": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "homepage": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}, "homepage": {"type": "string"}}, "required": ["name", "email", "homepage"]}}, "repositories": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "package": {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "dist": {"type": "object", "properties": {"url": {"type": "string"}, "type": {"type": "string"}}, "required": ["url", "type"]}, "autoload": {"type": "object", "properties": {"classmap": {"type": "array", "items": {"type": "string"}}}, "required": ["classmap"]}}, "required": ["name", "version", "dist", "autoload"]}}, "required": ["type", "package"]}}, "support": {"type": "object", "properties": {"issues": {"type": "string"}, "wiki": {"type": "string"}, "source": {"type": "string"}}, "required": ["issues", "wiki", "source"]}, "require": {"type": "object", "properties": {"php": {"type": "string"}, "php-multitask/multitask": {"type": "string"}}, "required": ["php", "php-multitask/multitask"]}}, "required": ["name", "description", "type", "license", "keywords", "homepage", "authors", "repositories", "support", "require"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "php-multisk", "description" : "You can run multiple console commands in background & async mode.", "type" : "library", "license" : "NEW BSD", "keywords" : ["popen", "proc_open", "async", "command", "thread", "process", "multiple"], "homepage" : "http://www.pigo.idv.tw", "authors" : [{"name" : "Pigo Chu", "email" : "[email protected]", "homepage" : "http://www.pigo.idv.tw"}], "repositories" : [{"type" : "package", "package" : {"name" : "php-multitask/multitask", "version" : "dev", "dist" : {"url" : "https://github.com/pigochu/php-multitask/archive/master.zip", "type" : "zip"}, "autoload" : {"classmap" : ["src/"]}}}], "support" : {"issues" : "https://github.com/pigochu/php-multitask/issues", "wiki" : "https://github.com/pigochu/php-multitask/wiki", "source" : "https://github.com/pigochu/php-multitask"}, "require" : {"php" : ">=5.4.0", "php-multitask/multitask" : "dev"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "type": {"type": "string"}, "license": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "homepage": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}, "homepage": {"type": "string"}}, "required": ["name", "email", "homepage"]}}, "repositories": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "package": {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "dist": {"type": "object", "properties": {"url": {"type": "string"}, "type": {"type": "string"}}, "required": ["url", "type"]}, "autoload": {"type": "object", "properties": {"classmap": {"type": "array", "items": {"type": "string"}}}, "required": ["classmap"]}}, "required": ["name", "version", "dist", "autoload"]}}, "required": ["type", "package"]}}, "support": {"type": "object", "properties": {"issues": {"type": "string"}, "wiki": {"type": "string"}, "source": {"type": "string"}}, "required": ["issues", "wiki", "source"]}, "require": {"type": "object", "properties": {"php": {"type": "string"}, "php-multitask/multitask": {"type": "string"}}, "required": ["php", "php-multitask/multitask"]}}, "required": ["name", "description", "type", "license", "keywords", "homepage", "authors", "repositories", "support", "require"], "$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"}, "keywords": {"type": "array", "items": {"type": "string"}}, "homepage": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "funding": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "license": {"type": "string"}, "author": {"type": "string"}, "main": {"type": "string"}, "files": {"type": "array", "items": {"type": "string"}}, "scripts": {"type": "object", "properties": {"build": {"type": "string"}, "css": {"type": "string"}, "css-compile": {"type": "string"}, "css-lint": {"type": "string"}, "css-minify": {"type": "string"}, "prettier": {"type": "string"}, "test": {"type": "string"}}, "required": ["build", "css", "css-compile", "css-lint", "css-minify", "prettier", "test"]}, "config": {"type": "object", "properties": {"version_short": {"type": "string"}}, "required": ["version_short"]}, "devDependencies": {"type": "object", "properties": {"clean-css-cli": {"type": "string"}, "npm-run-all": {"type": "string"}, "sass": {"type": "string"}, "stylelint": {"type": "string"}, "stylelint-config-twbs-bootstrap": {"type": "string"}}, "required": ["clean-css-cli", "npm-run-all", "sass", "stylelint", "stylelint-config-twbs-bootstrap"]}, "sass": {"type": "string"}}, "required": ["name", "version", "description", "keywords", "homepage", "bugs", "repository", "funding", "license", "author", "main", "files", "scripts", "config", "devDependencies", "sass"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "bootstrap-ie11", "version" : "5.1.3", "description" : "Bootstrap 5 for Internet Explorer 11", "keywords" : ["bootstrap", "css", "ie", "internet-explorer", "polyfill"], "homepage" : "https://github.com/coliff/bootstrap-ie11#readme", "bugs" : {"url" : "https://github.com/coliff/bootstrap-ie11/issues"}, "repository" : {"type" : "git", "url" : "git+https://github.com/coliff/bootstrap-ie11.git"}, "funding" : {"type" : "PayPal", "url" : "https://paypal.me/coliff"}, "license" : "MIT", "author" : "Christian Oliff (https://christianoliff.com)", "main" : "css/bootstrap-ie11.min.css", "files" : ["css/*", "LICENSE", "package.json", "README.md", "scss/*"], "scripts" : {"build" : "npm-run-all css-lint css-compile css-minify", "css" : "npm-run-all css-lint css-compile css-minify", "css-compile" : "sass --style expanded --source-map --embed-sources scss:css", "css-lint" : "stylelint \"scss/*.scss\" --fix", "css-minify" : "cleancss --format breakWith=lf --source-map --source-map-inline-sources --output css/bootstrap-ie11.min.css css/bootstrap-ie11.css", "prettier" : "npx prettier --write \"scss/*.scss\"", "test" : "npm run css-lint"}, "config" : {"version_short" : "5.1"}, "devDependencies" : {"clean-css-cli" : "4.3.0", "npm-run-all" : "^4.1.5", "sass" : "^1.43.3", "stylelint" : "^13.13.1", "stylelint-config-twbs-bootstrap" : "^2.2.4"}, "sass" : "scss/bootstrap-ie11.scss"}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "homepage": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "funding": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "license": {"type": "string"}, "author": {"type": "string"}, "main": {"type": "string"}, "files": {"type": "array", "items": {"type": "string"}}, "scripts": {"type": "object", "properties": {"build": {"type": "string"}, "css": {"type": "string"}, "css-compile": {"type": "string"}, "css-lint": {"type": "string"}, "css-minify": {"type": "string"}, "prettier": {"type": "string"}, "test": {"type": "string"}}, "required": ["build", "css", "css-compile", "css-lint", "css-minify", "prettier", "test"]}, "config": {"type": "object", "properties": {"version_short": {"type": "string"}}, "required": ["version_short"]}, "devDependencies": {"type": "object", "properties": {"clean-css-cli": {"type": "string"}, "npm-run-all": {"type": "string"}, "sass": {"type": "string"}, "stylelint": {"type": "string"}, "stylelint-config-twbs-bootstrap": {"type": "string"}}, "required": ["clean-css-cli", "npm-run-all", "sass", "stylelint", "stylelint-config-twbs-bootstrap"]}, "sass": {"type": "string"}}, "required": ["name", "version", "description", "keywords", "homepage", "bugs", "repository", "funding", "license", "author", "main", "files", "scripts", "config", "devDependencies", "sass"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"dev": {"type": "string"}, "start": {"type": "string"}}, "required": ["dev", "start"]}, "author": {"type": "string"}, "license": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"nodemon": {"type": "string"}}, "required": ["nodemon"]}, "dependencies": {"type": "object", "properties": {"body-parser": {"type": "string"}, "express": {"type": "string"}, "play-sound": {"type": "string"}}, "required": ["body-parser", "express", "play-sound"]}}, "required": ["name", "version", "description", "main", "scripts", "author", "license", "devDependencies", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "remote-soundboard", "version" : "1.0.0", "description" : "Soundboard that is controlled through a web browser", "main" : "server/main.js", "scripts" : {"dev" : "nodemon server/main.js", "start" : "node server/main.js"}, "author" : "Tommy Myers", "license" : "MIT", "devDependencies" : {"nodemon" : "^1.18.6"}, "dependencies" : {"body-parser" : "^1.18.3", "express" : "^4.16.4", "play-sound" : "^1.1.2"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"dev": {"type": "string"}, "start": {"type": "string"}}, "required": ["dev", "start"]}, "author": {"type": "string"}, "license": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"nodemon": {"type": "string"}}, "required": ["nodemon"]}, "dependencies": {"type": "object", "properties": {"body-parser": {"type": "string"}, "express": {"type": "string"}, "play-sound": {"type": "string"}}, "required": ["body-parser", "express", "play-sound"]}}, "required": ["name", "version", "description", "main", "scripts", "author", "license", "devDependencies", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"server": {"type": "object", "properties": {"host": {"type": "string"}, "port": {"type": "integer"}}, "required": ["host", "port"]}, "random": {"type": "object", "properties": {"min": {"type": "integer"}, "max": {"type": "integer"}}, "required": ["min", "max"]}}, "required": ["server", "random"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"server" : {"host" : "0.0.0.0", "port" : 1024}, "random" : {"min" : 0, "max" : 100}}
json_instruct
{"type": "object", "properties": {"server": {"type": "object", "properties": {"host": {"type": "string"}, "port": {"type": "integer"}}, "required": ["host", "port"]}, "random": {"type": "object", "properties": {"min": {"type": "integer"}, "max": {"type": "integer"}}, "required": ["min", "max"]}}, "required": ["server", "random"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"word" : "tipstock", "definition" : "The detachable or movable fore part of a gunstock, lying beneath the barrel or barrels, and forming a hold for the left hand."}
json_instruct
{"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$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": {"merged": {"type": "string"}, "source": {"type": "string"}}, "required": ["merged", "source"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"merged" : "/Users/lsyang/andriod/MySimpleTweets/app/build/intermediates/res/merged/debug/drawable-xhdpi/ic_launcher.png", "source" : "/Users/lsyang/andriod/MySimpleTweets/app/src/main/res/drawable-xhdpi/ic_launcher.png"}, {"merged" : "/Users/lsyang/andriod/MySimpleTweets/app/build/intermediates/res/merged/debug/drawable-xhdpi/ic_compose.png", "source" : "/Users/lsyang/andriod/MySimpleTweets/app/build/generated/res/pngs/debug/drawable-xhdpi/ic_compose.png"}, {"merged" : "/Users/lsyang/andriod/MySimpleTweets/app/build/intermediates/res/merged/debug/drawable-xhdpi/ic_profile.png", "source" : "/Users/lsyang/andriod/MySimpleTweets/app/src/main/res/drawable-xhdpi/ic_profile.png"}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"merged": {"type": "string"}, "source": {"type": "string"}}, "required": ["merged", "source"]}, "$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": {"postal_code": {"type": "string"}, "place_name": {"type": "string"}, "place_type": {"type": "string"}, "county": {"type": "string"}, "state": {"type": "string"}, "city": {"type": "string"}}, "required": ["postal_code", "place_name", "place_type", "county", "state", "city"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"postal_code" : "90347", "place_name" : "La Ci\u00e9nega", "place_type" : "Fraccionamiento", "county" : "Apizaco", "state" : "Tlaxcala", "city" : "Apizaco"}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"postal_code": {"type": "string"}, "place_name": {"type": "string"}, "place_type": {"type": "string"}, "county": {"type": "string"}, "state": {"type": "string"}, "city": {"type": "string"}}, "required": ["postal_code", "place_name", "place_type", "county", "state", "city"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "array", "items": {"type": "object", "properties": {"class_name": {"type": "string"}, "bbox": {"type": "string"}, "used": {"type": "boolean"}}, "required": ["class_name", "bbox", "used"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"class_name" : "bubbles", "bbox" : "281 254 304 277", "used" : false}, {"class_name" : "bubbles", "bbox" : "366 238 394 263", "used" : false}, {"class_name" : "saturation", "bbox" : "2 11 89 192", "used" : true}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"class_name": {"type": "string"}, "bbox": {"type": "string"}, "used": {"type": "boolean"}}, "required": ["class_name", "bbox", "used"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "properties": {"type": "object", "properties": {"id": {"type": "string"}, "type": {"type": "string"}, "name": {"type": "string"}, "code": {"type": "string"}}, "required": ["id", "type", "name", "code"]}}, "required": ["type", "coordinates", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"type" : "MultiPolygon", "coordinates" : [[[[-105.05763196199993, 40.60688824200002], [-105.06218351999998, 40.60688824200002], [-105.06673450499991, 40.606968071000026], [-105.06717054499993, 40.60697572000002], [-105.06707310399995, 40.61032352800003], [-105.06590180499994, 40.610488611000044], [-105.06329979199992, 40.61073230400006], [-105.05757693499996, 40.61051219400007], [-105.05763196199993, 40.60688824200002]]]], "properties" : {"id" : "usa-co-fort-collins-greenbriar-neighborhood", "type" : "neighborhood", "name" : "Greenbriar", "code" : "221373"}}
json_instruct
{"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "properties": {"type": "object", "properties": {"id": {"type": "string"}, "type": {"type": "string"}, "name": {"type": "string"}, "code": {"type": "string"}}, "required": ["id", "type", "name", "code"]}}, "required": ["type", "coordinates", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"206940": {"type": "object", "properties": {"success": {"type": "boolean"}}, "required": ["success"]}}, "required": ["206940"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"206940" : {"success" : false}}
json_instruct
{"type": "object", "properties": {"206940": {"type": "object", "properties": {"success": {"type": "boolean"}}, "required": ["success"]}}, "required": ["206940"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "array", "items": {"type": "object", "properties": {"Id": {"type": "string"}, "ThreadId": {"type": "string"}, "Html": {"type": "string"}, "PostedDate": {"type": "string"}, "UserRole": {"type": "null"}, "MarkedAsAnswerDate": {"type": "null"}}, "required": ["Id", "ThreadId", "Html", "PostedDate", "UserRole", "MarkedAsAnswerDate"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"Id" : "846051", "ThreadId" : "358725", "Html" : "\r\n<p>I wonder is it possible to simulate input from multiple mouse devices?</p>\r\n", "PostedDate" : "2012-06-07T07:31:22.39-07:00", "UserRole" : null, "MarkedAsAnswerDate" : null}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"Id": {"type": "string"}, "ThreadId": {"type": "string"}, "Html": {"type": "string"}, "PostedDate": {"type": "string"}, "UserRole": {"type": "null"}, "MarkedAsAnswerDate": {"type": "null"}}, "required": ["Id", "ThreadId", "Html", "PostedDate", "UserRole", "MarkedAsAnswerDate"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"comment": {"type": "string"}, "ignore": {"type": "string"}, "package": {"type": "array", "items": {"type": "object", "properties": {"checksumSHA1": {"type": "string"}, "path": {"type": "string"}, "revision": {"type": "string"}, "revisionTime": {"type": "string"}}, "required": ["checksumSHA1", "path", "revision", "revisionTime"]}}, "rootPath": {"type": "string"}}, "required": ["comment", "ignore", "package", "rootPath"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"comment" : "", "ignore" : "test", "package" : [{"checksumSHA1" : "MJk8bN15e/nKHGetO8GSfYIOKxE=", "path" : "github.com/dgryski/go-discreterand", "revision" : "57fa96b59f2a453d7341c5ba85cb02c1088beb89", "revisionTime" : "2015-04-23T09:39:09Z"}, {"checksumSHA1" : "L6Ps004WGoAJBEBX5Zrv0tPa2b4=", "path" : "github.com/manveru/faker", "revision" : "717f7cf83fb78669bfab612749c2e8ff63d5be11", "revisionTime" : "2016-04-19T07:20:36Z"}], "rootPath" : "github.com/spantree/datadumpbeat"}
json_instruct
{"type": "object", "properties": {"comment": {"type": "string"}, "ignore": {"type": "string"}, "package": {"type": "array", "items": {"type": "object", "properties": {"checksumSHA1": {"type": "string"}, "path": {"type": "string"}, "revision": {"type": "string"}, "revisionTime": {"type": "string"}}, "required": ["checksumSHA1", "path", "revision", "revisionTime"]}}, "rootPath": {"type": "string"}}, "required": ["comment", "ignore", "package", "rootPath"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "object", "properties": {"is_lock_vulnerable": {"type": "boolean"}, "is_prodigal_vulnerable": {"type": "boolean"}, "is_suicidal_vulnerable": {"type": "boolean"}}, "required": ["is_lock_vulnerable", "is_prodigal_vulnerable", "is_suicidal_vulnerable"]}}, "required": ["contract", "tool", "start", "end", "duration", "analysis"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"contract" : "0xc93a59888e7e6f2849ba94acf767266299c4c415", "tool" : "maian", "start" : 1565521014.3549583, "end" : 1565521279.3855383, "duration" : 265.0305800437927, "analysis" : {"is_lock_vulnerable" : false, "is_prodigal_vulnerable" : false, "is_suicidal_vulnerable" : false}}
json_instruct
{"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "object", "properties": {"is_lock_vulnerable": {"type": "boolean"}, "is_prodigal_vulnerable": {"type": "boolean"}, "is_suicidal_vulnerable": {"type": "boolean"}}, "required": ["is_lock_vulnerable", "is_prodigal_vulnerable", "is_suicidal_vulnerable"]}}, "required": ["contract", "tool", "start", "end", "duration", "analysis"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"id": {"type": "string"}, "variable1": {"type": "number"}, "variable2": {"type": "number"}, "variable3": {"type": "string"}}, "required": ["id", "variable1", "variable2", "variable3"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : "170501241104", "variable1" : 0.8649, "variable2" : 0.3977, "variable3" : "B"}
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "variable1": {"type": "number"}, "variable2": {"type": "number"}, "variable3": {"type": "string"}}, "required": ["id", "variable1", "variable2", "variable3"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"users": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "username": {"type": "string"}, "password": {"type": "string"}, "en_password": {"type": "string"}}, "required": ["name", "username", "password", "en_password"]}}}, "required": ["users"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"users" : [{"name" : "Test User Name", "username" : "testUserName", "password" : "testUserPassword", "en_password" : ""}]}
json_instruct
{"type": "object", "properties": {"users": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "username": {"type": "string"}, "password": {"type": "string"}, "en_password": {"type": "string"}}, "required": ["name", "username", "password", "en_password"]}}}, "required": ["users"], "$schema": "http://json-schema.org/draft-07/schema#"}