input
stringlengths
159
2.05k
output
stringlengths
5
10.3k
task
stringclasses
1 value
schema
stringlengths
100
1.99k
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"nom": {"type": "string"}, "circ": {"type": "string"}, "dpt": {"type": "string"}, "inscrits": {"type": "integer"}, "abs": {"type": "integer"}, "votants": {"type": "integer"}, "blancs": {"type": "integer"}, "nuls": {"type": "integer"}, "exp": {"type": "integer"}, "res": {"type": "array", "items": {"type": "object", "properties": {"nuance": {"type": "string"}, "nom": {"type": "string"}, "voix": {"type": "integer"}}, "required": ["nuance", "nom", "voix"]}}}, "required": ["nom", "circ", "dpt", "inscrits", "abs", "votants", "blancs", "nuls", "exp", "res"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"nom" : "Mourmelon-le-Grand", "circ" : "4\u00e8me circonscription", "dpt" : "Marne", "inscrits" : 2617, "abs" : 1654, "votants" : 963, "blancs" : 63, "nuls" : 19, "exp" : 881, "res" : [{"nuance" : "LR", "nom" : "Mme Lise MAGNIER", "voix" : 477}, {"nuance" : "FN", "nom" : "M. Thierry BESSON", "voix" : 404}]}
json_instruct
{"type": "object", "properties": {"nom": {"type": "string"}, "circ": {"type": "string"}, "dpt": {"type": "string"}, "inscrits": {"type": "integer"}, "abs": {"type": "integer"}, "votants": {"type": "integer"}, "blancs": {"type": "integer"}, "nuls": {"type": "integer"}, "exp": {"type": "integer"}, "res": {"type": "array", "items": {"type": "object", "properties": {"nuance": {"type": "string"}, "nom": {"type": "string"}, "voix": {"type": "integer"}}, "required": ["nuance", "nom", "voix"]}}}, "required": ["nom", "circ", "dpt", "inscrits", "abs", "votants", "blancs", "nuls", "exp", "res"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"botToken": {"type": "string"}, "defaultPrefix": {"type": "string"}, "tautulli_ip": {"type": "string"}, "tautulli_port": {"type": "string"}, "tautulli_api_key": {"type": "string"}, "sonarr_ip": {"type": "string"}, "sonarr_port": {"type": "string"}, "sonarr_api_key": {"type": "string"}, "node_hook_ip": {"type": "string"}, "node_hook_port": {"type": "string"}}, "required": ["botToken", "defaultPrefix", "tautulli_ip", "tautulli_port", "tautulli_api_key", "sonarr_ip", "sonarr_port", "sonarr_api_key", "node_hook_ip", "node_hook_port"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"botToken" : "YOUR_DISCORD_BOT_TOKEN", "defaultPrefix" : "!", "tautulli_ip" : "YOUR_TAUTULLI_IP_ADDRESS", "tautulli_port" : "YOUR_TAUTULLI_PORT", "tautulli_api_key" : "YOUR_TAUTULLI_API_KEY", "sonarr_ip" : "YOUR_SONARR_IP_ADDRESS", "sonarr_port" : "YOUR_SONARR_PORT", "sonarr_api_key" : "YOUR_SONARR_API_KEY", "node_hook_ip" : "THE_IP_ADDRESS_OF_THIS_NODEJS_BOT", "node_hook_port" : "3000"}
json_instruct
{"type": "object", "properties": {"botToken": {"type": "string"}, "defaultPrefix": {"type": "string"}, "tautulli_ip": {"type": "string"}, "tautulli_port": {"type": "string"}, "tautulli_api_key": {"type": "string"}, "sonarr_ip": {"type": "string"}, "sonarr_port": {"type": "string"}, "sonarr_api_key": {"type": "string"}, "node_hook_ip": {"type": "string"}, "node_hook_port": {"type": "string"}}, "required": ["botToken", "defaultPrefix", "tautulli_ip", "tautulli_port", "tautulli_api_key", "sonarr_ip", "sonarr_port", "sonarr_api_key", "node_hook_ip", "node_hook_port"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "version": {"type": "string"}, "author": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "bugs": {"type": "object", "properties": {"mail": {"type": "string"}, "web": {"type": "string"}}, "required": ["mail", "web"]}, "directories": {"type": "object", "properties": {"lib": {"type": "string"}}, "required": ["lib"]}, "main": {"type": "string"}, "engines": {"type": "object", "properties": {"node": {"type": "string"}}, "required": ["node"]}}, "required": ["name", "description", "version", "author", "repository", "bugs", "directories", "main", "engines"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "evented-twitter", "description" : "An asynchronous twitter client for node.js", "version" : "0.2.0", "author" : "Marco Rogers (http://github.com/polotek)", "repository" : {"type" : "git", "url" : "http://github.com/polotek/evented-twitter.git"}, "bugs" : {"mail" : "", "web" : "http://github.com/polotek/evented-twitter/issues"}, "directories" : {"lib" : "./lib/"}, "main" : "./lib/evented-twitter", "engines" : {"node" : ">=0.1.90"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "version": {"type": "string"}, "author": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "bugs": {"type": "object", "properties": {"mail": {"type": "string"}, "web": {"type": "string"}}, "required": ["mail", "web"]}, "directories": {"type": "object", "properties": {"lib": {"type": "string"}}, "required": ["lib"]}, "main": {"type": "string"}, "engines": {"type": "object", "properties": {"node": {"type": "string"}}, "required": ["node"]}}, "required": ["name", "description", "version", "author", "repository", "bugs", "directories", "main", "engines"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"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" : "import createSvgIcon from './utils/createSvgIcon';\nimport { jsx as _jsx } from \"react/jsx-runtime\";\nexport default createSvgIcon([/*#__PURE__*/_jsx(\"path\", {\n d: \"M5 7.01v3.49l6 1.5-6 1.5v3.49l5.39-2.27c.6-1.74 1.86-3.16 3.48-3.97L5 7.01z\",\n opacity: \".3\"\n}, \"0\"), /*#__PURE__*/_jsx(\"path\", {\n d: \"m11 12-6-1.5V7.01l8.87 3.73c.94-.47 2-.75 3.13-.75.1 0 .19.01.28.01L3 4v16l7-2.95V17c0-.8.14-1.56.39-2.28L5 16.99V13.5l6-1.5z\"\n}, \"1\"), /*#__PURE__*/_jsx(\"path\", {\n d: \"M17 12c-2.76 0-5 2.24-5 5s2.24 5 5 5 5-2.24 5-5-2.24-5-5-5zm0 8-3-3h2.5v-3h1v3H20l-3 3z\"\n}, \"2\")], 'SendAndArchiveTwoTone');", "map" : {"version" : 3, "sources" : ["/home/minjikim/min_workspace/tokyo-free-white-react-admin-dashboard/node_modules/@mui/icons-material/esm/SendAndArchiveTwoTone.js"], "names" : ["createSvgIcon", "jsx", "_jsx", "d", "opacity"], "mappings" : "AAAA,OAAOA,aAAP,MAA0B,uBAA1B;AACA,SAASC,GAAG,IAAIC,IAAhB,QAA4B,mBAA5B;AACA,eAAeF,aAAa,CAAC,CAAC,aAAaE,IAAI,CAAC,MAAD,EAAS;AACtDC,EAAAA,CAAC,EAAE,6EADmD;AAEtDC,EAAAA,OAAO,EAAE;AAF6C,CAAT,EAG5C,GAH4C,CAAlB,EAGpB,aAAaF,IAAI,CAAC,MAAD,EAAS;AACjCC,EAAAA,CAAC,EAAE;AAD8B,CAAT,EAEvB,GAFuB,CAHG,EAKpB,aAAaD,IAAI,CAAC,MAAD,EAAS;AACjCC,EAAAA,CAAC,EAAE;AAD8B,CAAT,EAEvB,GAFuB,CALG,CAAD,EAOlB,uBAPkB,CAA5B", "sourcesContent" : ["import createSvgIcon from './utils/createSvgIcon';\nimport { jsx as _jsx } from \"react/jsx-runtime\";\nexport default createSvgIcon([/*#__PURE__*/_jsx(\"path\", {\n d: \"M5 7.01v3.49l6 1.5-6 1.5v3.49l5.39-2.27c.6-1.74 1.86-3.16 3.48-3.97L5 7.01z\",\n opacity: \".3\"\n}, \"0\"), /*#__PURE__*/_jsx(\"path\", {\n d: \"m11 12-6-1.5V7.01l8.87 3.73c.94-.47 2-.75 3.13-.75.1 0 .19.01.28.01L3 4v16l7-2.95V17c0-.8.14-1.56.39-2.28L5 16.99V13.5l6-1.5z\"\n}, \"1\"), /*#__PURE__*/_jsx(\"path\", {\n d: \"M17 12c-2.76 0-5 2.24-5 5s2.24 5 5 5 5-2.24 5-5-2.24-5-5-5zm0 8-3-3h2.5v-3h1v3H20l-3 3z\"\n}, \"2\")], 'SendAndArchiveTwoTone');"]}, "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#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"cam/image_array": {"type": "string"}, "user/angle": {"type": "number"}, "user/throttle": {"type": "number"}, "user/mode": {"type": "string"}, "milliseconds": {"type": "integer"}}, "required": ["cam/image_array", "user/angle", "user/throttle", "user/mode", "milliseconds"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"cam/image_array" : "439_cam-image_array_.jpg", "user/angle" : 0.5857142857142857, "user/throttle" : 0.02857142857142871, "user/mode" : "user", "milliseconds" : 66132}
json_instruct
{"type": "object", "properties": {"cam/image_array": {"type": "string"}, "user/angle": {"type": "number"}, "user/throttle": {"type": "number"}, "user/mode": {"type": "string"}, "milliseconds": {"type": "integer"}}, "required": ["cam/image_array", "user/angle", "user/throttle", "user/mode", "milliseconds"], "$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"}, "repository": {"type": "string"}, "author": {"type": "string"}, "license": {"type": "string"}, "private": {"type": "boolean"}, "dependencies": {"type": "object", "properties": {"teleformat": {"type": "string"}}, "required": ["teleformat"]}, "devDependencies": {"type": "object", "properties": {"@babel/core": {"type": "string"}, "@babel/preset-env": {"type": "string"}, "babel-core": {"type": "string"}, "babel-jest": {"type": "string"}, "babel-loader": {"type": "string"}, "codecov": {"type": "string"}, "eslint": {"type": "string"}, "eslint-config-airbnb-base": {"type": "string"}, "eslint-plugin-import": {"type": "string"}, "jest": {"type": "string"}, "webpack": {"type": "string"}, "webpack-cli": {"type": "string"}}, "required": ["@babel/core", "@babel/preset-env", "babel-core", "babel-jest", "babel-loader", "codecov", "eslint", "eslint-config-airbnb-base", "eslint-plugin-import", "jest", "webpack", "webpack-cli"]}, "scripts": {"type": "object", "properties": {"build": {"type": "string"}, "build-prod": {"type": "string"}, "lint": {"type": "string"}, "test": {"type": "string"}, "test-ci": {"type": "string"}}, "required": ["build", "build-prod", "lint", "test", "test-ci"]}}, "required": ["name", "version", "description", "main", "repository", "author", "license", "private", "dependencies", "devDependencies", "scripts"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "teleformat-input", "version" : "0.3.0", "description" : "Text input field which uses Teleformat for fancy phone number decoration", "main" : "dist/teleformat-input.js", "repository" : "https://github.com/ChrisH91/teleformat-input", "author" : "Chris Howard <Chris.Howard@loopup.com>", "license" : "MIT", "private" : false, "dependencies" : {"teleformat" : "^0.5.0"}, "devDependencies" : {"@babel/core" : "^7.1.2", "@babel/preset-env" : "^7.1.0", "babel-core" : "7.0.0-bridge.0", "babel-jest" : "^23.6.0", "babel-loader" : "^8.0.4", "codecov" : "^3.1.0", "eslint" : "^5.8.0", "eslint-config-airbnb-base" : "^13.1.0", "eslint-plugin-import" : "^2.14.0", "jest" : "^23.6.0", "webpack" : "^4.23.1", "webpack-cli" : "^3.1.2"}, "scripts" : {"build" : "webpack --watch --mode=development", "build-prod" : "webpack --mode=production", "lint" : "eslint \"./**/*.js\" --ignore-path .gitignore", "test" : "jest", "test-ci" : "jest && codecov"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "repository": {"type": "string"}, "author": {"type": "string"}, "license": {"type": "string"}, "private": {"type": "boolean"}, "dependencies": {"type": "object", "properties": {"teleformat": {"type": "string"}}, "required": ["teleformat"]}, "devDependencies": {"type": "object", "properties": {"@babel/core": {"type": "string"}, "@babel/preset-env": {"type": "string"}, "babel-core": {"type": "string"}, "babel-jest": {"type": "string"}, "babel-loader": {"type": "string"}, "codecov": {"type": "string"}, "eslint": {"type": "string"}, "eslint-config-airbnb-base": {"type": "string"}, "eslint-plugin-import": {"type": "string"}, "jest": {"type": "string"}, "webpack": {"type": "string"}, "webpack-cli": {"type": "string"}}, "required": ["@babel/core", "@babel/preset-env", "babel-core", "babel-jest", "babel-loader", "codecov", "eslint", "eslint-config-airbnb-base", "eslint-plugin-import", "jest", "webpack", "webpack-cli"]}, "scripts": {"type": "object", "properties": {"build": {"type": "string"}, "build-prod": {"type": "string"}, "lint": {"type": "string"}, "test": {"type": "string"}, "test-ci": {"type": "string"}}, "required": ["build", "build-prod", "lint", "test", "test-ci"]}}, "required": ["name", "version", "description", "main", "repository", "author", "license", "private", "dependencies", "devDependencies", "scripts"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"id": {"type": "integer"}, "surahNumber": {"type": "string"}, "ayatNumber": {"type": "string"}, "arabic": {"type": "string"}, "english": {"type": "string"}, "bengali": {"type": "string"}}, "required": ["id", "surahNumber", "ayatNumber", "arabic", "english", "bengali"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : 3194, "surahNumber" : "027", "ayatNumber" : "035", "arabic" : "\u0648\u064e\u0625\u0650\u0646\u0651\u0650\u064a \u0645\u064f\u0631\u0652\u0633\u0650\u0644\u064e\u0629\u064c \u0625\u0650\u0644\u064e\u064a\u0652\u0647\u0650\u0645\u0652 \u0628\u0650\u0647\u064e\u062f\u0650\u064a\u0651\u064e\u0629\u064d \u0641\u064e\u0646\u064e\u0627\u0638\u0650\u0631\u064e\u0629\u064c \u0628\u0650\u0645\u064e \u064a\u064e\u0631\u0652\u062c\u0650\u0639\u064f \u0627\u0644\u0652\u0645\u064f\u0631\u0652\u0633\u064e\u0644\u064f\u0648\u0646\u064e", "english" : "\"But verily! I am going to send him a present, and see with what (answer) the messengers return.\"", "bengali" : "\u0986\u09ae\u09bf \u09a4\u09be\u0981\u09b0 \u0995\u09be\u099b\u09c7 \u0995\u09bf\u099b\u09c1 \u0989\u09aa\u09a2\u09c7\u09d7\u0995\u09a8 \u09aa\u09be\u09a0\u09be\u099a\u09cd\u099b\u09bf; \u09a6\u09c7\u0996\u09bf \u09aa\u09cd\u09b0\u09c7\u09b0\u09bf\u09a4 \u09b2\u09c7\u09be\u0995\u09c7\u09b0\u09be \u0995\u09bf \u099c\u0993\u09df\u09be\u09ac \u0986\u09a8\u09c7\u0964"}
json_instruct
{"type": "object", "properties": {"id": {"type": "integer"}, "surahNumber": {"type": "string"}, "ayatNumber": {"type": "string"}, "arabic": {"type": "string"}, "english": {"type": "string"}, "bengali": {"type": "string"}}, "required": ["id", "surahNumber", "ayatNumber", "arabic", "english", "bengali"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"name": {"type": "string"}, "tel": {"type": "string"}, "fax": {"type": "string"}, "licensee": {"type": "string"}, "licensePeriod": {"type": "string"}, "licenseClass": {"type": "string"}, "hciCode": {"type": "string"}, "address": {"type": "string"}, "doctorInCharge": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "qualifications": {"type": "array", "items": {"type": "string"}}, "specialties": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "qualifications", "specialties"]}}, "detailedServices": {"type": "object", "properties": {"General Medical": {"type": "boolean"}}, "required": ["General Medical"]}, "programmes": {"type": "array", "items": {"type": "string"}}, "operatingHours": {"type": "object", "properties": {"Monday to Friday": {"type": "string"}, "Saturday": {"type": "string"}, "Sunday": {"type": "string"}}, "required": ["Monday to Friday", "Saturday", "Sunday"]}}, "required": ["name", "tel", "fax", "licensee", "licensePeriod", "licenseClass", "hciCode", "address", "doctorInCharge", "detailedServices", "programmes", "operatingHours"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "HEALTH PARTNERS FAMILY CLINIC", "tel" : "68989031", "fax" : "68989035", "licensee" : "SIM CHOON SENG", "licensePeriod" : "21/09/2016 to 20/09/2018", "licenseClass" : "[ 2 Years ( 2D ) ]", "hciCode" : "9402361", "address" : "1 BT BATOK CENTRAL LINK, WEST MALL, #01-37 Singapore 658713", "doctorInCharge" : [{"name" : "SIM CHOON SENG", "qualifications" : ["MBBS (National University of Singapore, Singapore) 1990", "M Med (Family Med) (National University of Singapore, Singapore) 1997"], "specialties" : ["Family Physician"]}], "detailedServices" : {"General Medical" : true}, "programmes" : ["Chronic Disease Management Programme (CDMP)", "Community Health Assistance Scheme (CHAS)"], "operatingHours" : {"Monday to Friday" : "08:30 am to 12:30 pm, 01:30 pm to 03:30 pm, 06:30 pm to 09:00 pm", "Saturday" : "08:30 am to 12:30 pm", "Sunday" : "09:30 am to 01:30 pm"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "tel": {"type": "string"}, "fax": {"type": "string"}, "licensee": {"type": "string"}, "licensePeriod": {"type": "string"}, "licenseClass": {"type": "string"}, "hciCode": {"type": "string"}, "address": {"type": "string"}, "doctorInCharge": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "qualifications": {"type": "array", "items": {"type": "string"}}, "specialties": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "qualifications", "specialties"]}}, "detailedServices": {"type": "object", "properties": {"General Medical": {"type": "boolean"}}, "required": ["General Medical"]}, "programmes": {"type": "array", "items": {"type": "string"}}, "operatingHours": {"type": "object", "properties": {"Monday to Friday": {"type": "string"}, "Saturday": {"type": "string"}, "Sunday": {"type": "string"}}, "required": ["Monday to Friday", "Saturday", "Sunday"]}}, "required": ["name", "tel", "fax", "licensee", "licensePeriod", "licenseClass", "hciCode", "address", "doctorInCharge", "detailedServices", "programmes", "operatingHours"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"C": {"type": "number"}, "gamma": {"type": "number"}}, "required": ["C", "gamma"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"C" : 1.9322410567689818, "gamma" : 0.0020000000000000005}
json_instruct
{"type": "object", "properties": {"C": {"type": "number"}, "gamma": {"type": "number"}}, "required": ["C", "gamma"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "author": {"type": "string"}, "homepage": {"type": "string"}, "license": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"grunt": {"type": "string"}, "grunt-contrib-connect": {"type": "string"}, "grunt-contrib-imagemin": {"type": "string"}, "grunt-contrib-jshint": {"type": "string"}, "grunt-contrib-uglify": {"type": "string"}, "grunt-contrib-watch": {"type": "string"}, "grunt-jekyll": {"type": "string"}, "grunt-newer": {"type": "string"}, "grunt-shell": {"type": "string"}, "grunt-svgmin": {"type": "string"}}, "required": ["grunt", "grunt-contrib-connect", "grunt-contrib-imagemin", "grunt-contrib-jshint", "grunt-contrib-uglify", "grunt-contrib-watch", "grunt-jekyll", "grunt-newer", "grunt-shell", "grunt-svgmin"]}}, "required": ["name", "version", "description", "author", "homepage", "license", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "edhzsz_io", "version" : "0.0.1", "description" : "The Jekyll blog of edhzsz", "author" : "Limo Wan Kenobi <edhzsz@gmail.com>", "homepage" : "http://edhzsz.gihub.io/", "license" : "The MIT License (MIT)", "devDependencies" : {"grunt" : "^1.0.1", "grunt-contrib-connect" : "^1.0.2", "grunt-contrib-imagemin" : "^1.0.1", "grunt-contrib-jshint" : "^1.0.0", "grunt-contrib-uglify" : "^2.0.0", "grunt-contrib-watch" : "^1.0.0", "grunt-jekyll" : "^0.4.2", "grunt-newer" : "^1.1.0", "grunt-shell" : "^2.0.0", "grunt-svgmin" : "^4.0.0"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "author": {"type": "string"}, "homepage": {"type": "string"}, "license": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"grunt": {"type": "string"}, "grunt-contrib-connect": {"type": "string"}, "grunt-contrib-imagemin": {"type": "string"}, "grunt-contrib-jshint": {"type": "string"}, "grunt-contrib-uglify": {"type": "string"}, "grunt-contrib-watch": {"type": "string"}, "grunt-jekyll": {"type": "string"}, "grunt-newer": {"type": "string"}, "grunt-shell": {"type": "string"}, "grunt-svgmin": {"type": "string"}}, "required": ["grunt", "grunt-contrib-connect", "grunt-contrib-imagemin", "grunt-contrib-jshint", "grunt-contrib-uglify", "grunt-contrib-watch", "grunt-jekyll", "grunt-newer", "grunt-shell", "grunt-svgmin"]}}, "required": ["name", "version", "description", "author", "homepage", "license", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"id": {"type": "string"}, "symbol": {"type": "string"}, "name": {"type": "string"}, "platforms": {"type": "object", "properties": {"ethereum": {"type": "string"}}, "required": ["ethereum"]}, "hashing_algorithm": {"type": "null"}, "categories": {"type": "array", "items": {}}, "description": {"type": "object", "properties": {"en": {"type": "string"}}, "required": ["en"]}, "country_origin": {"type": "string"}, "genesis_date": {"type": "null"}, "contract_address": {"type": "string"}, "url": {"type": "string"}, "explorers": {"type": "array", "items": {"type": "string"}}}, "required": ["id", "symbol", "name", "platforms", "hashing_algorithm", "categories", "description", "country_origin", "genesis_date", "contract_address", "url", "explorers"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : "3x-long-tomochain-token", "symbol" : "tomobull", "name" : "3X Long TomoChain Token", "platforms" : {"ethereum" : "0xa38920c00d1a5303db538a3ea08da7a779e1f751"}, "hashing_algorithm" : null, "categories" : [], "description" : {"en" : "3X Long TomoChain Token (TOMOBULL) is an ERC20 token which seeks a return that corresponds to 3 times the daily return of TomoChain."}, "country_origin" : "", "genesis_date" : null, "contract_address" : "0xa38920c00d1a5303db538a3ea08da7a779e1f751", "url" : "https://ftx.com/tokens/TOMOBULL", "explorers" : ["https://etherscan.io/token/0xa38920C00D1a5303dB538A3Ea08da7a779e1F751", "https://ethplorer.io/address/0xa38920c00d1a5303db538a3ea08da7a779e1f751"]}
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "symbol": {"type": "string"}, "name": {"type": "string"}, "platforms": {"type": "object", "properties": {"ethereum": {"type": "string"}}, "required": ["ethereum"]}, "hashing_algorithm": {"type": "null"}, "categories": {"type": "array", "items": {}}, "description": {"type": "object", "properties": {"en": {"type": "string"}}, "required": ["en"]}, "country_origin": {"type": "string"}, "genesis_date": {"type": "null"}, "contract_address": {"type": "string"}, "url": {"type": "string"}, "explorers": {"type": "array", "items": {"type": "string"}}}, "required": ["id", "symbol", "name", "platforms", "hashing_algorithm", "categories", "description", "country_origin", "genesis_date", "contract_address", "url", "explorers"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"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" : "Dampigan, Dolores, Eastern Samar, Eastern Visayas (Region VIII), PH", "locale" : "ph.eastern-visayas-region-viii.eastern-samar.dolores.dampigan", "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" : "1467", "city_reference" : "555", "city_name" : "Dolores", "barangay_id" : "12115", "barangay_reference" : "13390", "barangay_name" : "Dampigan"}, "geometry" : {"type" : "MultiPolygon", "coordinates" : [[[[125.433907, 12.05381], [125.435699, 12.05313], [125.437653, 12.0527], [125.439453, 12.0514], [125.440437, 12.04979], [125.441406, 12.04724], [125.42955, 12.03116], [125.408546, 12.03718], [125.420677, 12.05444], [125.421082, 12.05404], [125.424469, 12.05267], [125.426933, 12.05149], [125.4291, 12.05127], [125.430794, 12.05209], [125.433907, 12.05381]]]]}}
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#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"countries": {"type": "array", "items": {}}, "topics": {"type": "array", "items": {"type": "string"}}, "section_title": {"type": "string"}, "enb_start_date": {"type": "string"}, "enb_short_title": {"type": "string"}, "subtype": {"type": "string"}, "actors": {"type": "array", "items": {}}, "sentences": {"type": "array", "items": {"type": "string"}}, "enb_url": {"type": "string"}, "enb_long_title": {"type": "string"}, "type": {"type": "string"}, "id": {"type": "string"}, "enb_end_date": {"type": "string"}}, "required": ["countries", "topics", "section_title", "enb_start_date", "enb_short_title", "subtype", "actors", "sentences", "enb_url", "enb_long_title", "type", "id", "enb_end_date"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"countries" : [], "topics" : ["Financial Mechanisms and Funds", "UNFCCC and Kyoto Protocol Functioning"], "section_title" : "EDUCATION, TRAINING AND PUBLIC AWARENESS", "enb_start_date" : "15-Apr-02", "enb_short_title" : "Workshop", "subtype" : "", "actors" : [], "sentences" : ["George Manful, Programme Officer, Implementation Programme, UNFCCC Secretariat, discussed education, training and networking.", "He remarked that reporting on this issue was varied and that drawing a distinction between ongoing activities and those that are yet to be implemented is difficult.", "On education, he noted some success in integrating climate change issues into educational programmes, particularly at the university level.", "On training, he remarked that training scientific, technical, and managerial personnel is critical to implementing the UNFCCC, but that the focus and magnitude of existing training programmes is unclear.", "He explained that training activities were an important part of preparing national communications, and that training a critical mass of experts would give Parties the capacity to initiate climate change projects.", "He noted the need for more financial support. In the ensuing discussion, one delegate suggested that a universal set of education and training materials be created and translated into various national languages.", "Participants agreed that such materials could be useful if adapted to address national circumstances."], "enb_url" : "http://www.iisd.ca/vol12/enb12190e.html", "enb_long_title" : "The Consultative Group of Experts (CGE) on National Communications from Non-Annex I Parties", "type" : "", "id" : "enb12190e_9", "enb_end_date" : "15-Apr-02"}
json_instruct
{"type": "object", "properties": {"countries": {"type": "array", "items": {}}, "topics": {"type": "array", "items": {"type": "string"}}, "section_title": {"type": "string"}, "enb_start_date": {"type": "string"}, "enb_short_title": {"type": "string"}, "subtype": {"type": "string"}, "actors": {"type": "array", "items": {}}, "sentences": {"type": "array", "items": {"type": "string"}}, "enb_url": {"type": "string"}, "enb_long_title": {"type": "string"}, "type": {"type": "string"}, "id": {"type": "string"}, "enb_end_date": {"type": "string"}}, "required": ["countries", "topics", "section_title", "enb_start_date", "enb_short_title", "subtype", "actors", "sentences", "enb_url", "enb_long_title", "type", "id", "enb_end_date"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "scripts": {"type": "object", "properties": {"deploy": {"type": "string"}, "remove": {"type": "string"}, "set:dev-aws-credentials": {"type": "string"}}, "required": ["deploy", "remove", "set:dev-aws-credentials"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"serverless": {"type": "string"}, "serverless-domain-manager": {"type": "string"}, "serverless-prune-plugin": {"type": "string"}}, "required": ["serverless", "serverless-domain-manager", "serverless-prune-plugin"]}}, "required": ["name", "version", "description", "scripts", "repository", "author", "license", "bugs", "homepage", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "go-cognito-lambda", "version" : "1.0.0", "description" : "Cognito UserPool Custom Lambda Sample", "scripts" : {"deploy" : "serverless deploy -v", "remove" : "serverless remove -v", "set:dev-aws-credentials" : "serverless config credentials --provider aws --key $DEV_AWS_ACCESS_KEY_ID --secret $DEV_AWS_SECRET_ACCESS_KEY --profile nekochans-dev"}, "repository" : {"type" : "git", "url" : "git+https://github.com/keitakn/go-cognito-lambda.git"}, "author" : "", "license" : "MIT", "bugs" : {"url" : "https://github.com/keitakn/go-cognito-lambda/issues"}, "homepage" : "https://github.com/keitakn/go-cognito-lambda#readme", "devDependencies" : {"serverless" : "^2.18.0", "serverless-domain-manager" : "^5.1.0", "serverless-prune-plugin" : "^1.4.3"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "scripts": {"type": "object", "properties": {"deploy": {"type": "string"}, "remove": {"type": "string"}, "set:dev-aws-credentials": {"type": "string"}}, "required": ["deploy", "remove", "set:dev-aws-credentials"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"serverless": {"type": "string"}, "serverless-domain-manager": {"type": "string"}, "serverless-prune-plugin": {"type": "string"}}, "required": ["serverless", "serverless-domain-manager", "serverless-prune-plugin"]}}, "required": ["name", "version", "description", "scripts", "repository", "author", "license", "bugs", "homepage", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"batchcomplete": {"type": "string"}, "query": {"type": "object", "properties": {"normalized": {"type": "array", "items": {"type": "object", "properties": {"from": {"type": "string"}, "to": {"type": "string"}}, "required": ["from", "to"]}}, "pages": {"type": "object", "properties": {"50045082": {"type": "object", "properties": {"pageid": {"type": "integer"}, "ns": {"type": "integer"}, "title": {"type": "string"}, "pageprops": {"type": "object", "properties": {"defaultsort": {"type": "string"}, "wikibase-shortdesc": {"type": "string"}, "wikibase_item": {"type": "string"}}, "required": ["defaultsort", "wikibase-shortdesc", "wikibase_item"]}}, "required": ["pageid", "ns", "title", "pageprops"]}}, "required": ["50045082"]}}, "required": ["normalized", "pages"]}}, "required": ["batchcomplete", "query"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"batchcomplete" : "", "query" : {"normalized" : [{"from" : "Lisa_Roman", "to" : "Lisa Roman"}], "pages" : {"50045082" : {"pageid" : 50045082, "ns" : 0, "title" : "Lisa Roman", "pageprops" : {"defaultsort" : "Roman, Lisa", "wikibase-shortdesc" : "Canadian rower", "wikibase_item" : "Q20993708"}}}}}
json_instruct
{"type": "object", "properties": {"batchcomplete": {"type": "string"}, "query": {"type": "object", "properties": {"normalized": {"type": "array", "items": {"type": "object", "properties": {"from": {"type": "string"}, "to": {"type": "string"}}, "required": ["from", "to"]}}, "pages": {"type": "object", "properties": {"50045082": {"type": "object", "properties": {"pageid": {"type": "integer"}, "ns": {"type": "integer"}, "title": {"type": "string"}, "pageprops": {"type": "object", "properties": {"defaultsort": {"type": "string"}, "wikibase-shortdesc": {"type": "string"}, "wikibase_item": {"type": "string"}}, "required": ["defaultsort", "wikibase-shortdesc", "wikibase_item"]}}, "required": ["pageid", "ns", "title", "pageprops"]}}, "required": ["50045082"]}}, "required": ["normalized", "pages"]}}, "required": ["batchcomplete", "query"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"schemaId": {"type": "string"}, "$schema": {"type": "string"}, "title": {"type": "string"}, "description": {"type": "string"}, "properties": {"type": "object", "properties": {"name": {"type": "object", "properties": {"enum": {"type": "array", "items": {"type": "string"}}}, "required": ["enum"]}, "values": {"type": "object", "properties": {"$ref": {"type": "string"}}, "required": ["$ref"]}}, "required": ["name", "values"]}}, "required": ["schemaId", "$schema", "title", "description", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"schemaId" : "properties-directory-structural-basis-atomic-constraints", "$schema" : "http://json-schema.org/draft-04/schema#", "title" : "atomic constraints", "description" : "atomic constraints schema", "properties" : {"name" : {"enum" : ["atomic_constraints"]}, "values" : {"$ref" : "../../../core/reusable/atomic_vectors.json"}}}
json_instruct
{"type": "object", "properties": {"schemaId": {"type": "string"}, "$schema": {"type": "string"}, "title": {"type": "string"}, "description": {"type": "string"}, "properties": {"type": "object", "properties": {"name": {"type": "object", "properties": {"enum": {"type": "array", "items": {"type": "string"}}}, "required": ["enum"]}, "values": {"type": "object", "properties": {"$ref": {"type": "string"}}, "required": ["$ref"]}}, "required": ["name", "values"]}}, "required": ["schemaId", "$schema", "title", "description", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "text": {"type": "string"}}, "required": ["id", "text"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"id" : "310115137001", "text" : "\u822a\u5934\u5c45\u59d4\u4f1a"}, {"id" : "310115137002", "text" : "\u4e0b\u6c99\u5c45\u59d4\u4f1a"}, {"id" : "310115137003", "text" : "\u745e\u548c\u82d1\u793e\u533a\u5c45\u59d4\u4f1a"}, {"id" : "310115137004", "text" : "\u9e64\u9e23\u793e\u533a\u5c45\u59d4\u4f1a"}, {"id" : "310115137005", "text" : "\u957f\u8fbe\u793e\u533a\u5c45\u59d4\u4f1a"}, {"id" : "310115137006", "text" : "\u91d1\u8272\u822a\u57ce\u5c45\u59d4\u4f1a"}, {"id" : "310115137007", "text" : "\u4e1c\u5347\u5bb6\u56ed\u5c45\u59d4\u4f1a"}, {"id" : "310115137008", "text" : "\u6d77\u6d32\u6843\u82b1\u56ed\u5c45\u59d4\u4f1a"}, {"id" : "310115137009", "text" : "\u6c89\u9999\u5c45\u59d4\u4f1a"}, {"id" : "310115137010", "text" : "\u5357\u99a8\u4f73\u82d1\u5c45\u59d4\u4f1a"}, {"id" : "310115137011", "text" : "\u6052\u798f\u5bb6\u56ed\u5c45\u59d4\u4f1a"}, {"id" : "310115137012", "text" : "\u6631\u4e3d\u5bb6\u56ed\u5c45\u59d4\u4f1a"}, {"id" : "310115137013", "text" : "\u745e\u6d66\u5609\u82d1\u5c45\u59d4\u4f1a"}, {"id" : "310115137014", "text" : "\u822a\u6b66\u5609\u56ed\u5c45\u59d4\u4f1a"}, {"id" : "310115137015", "text" : "\u805a\u822a\u82d1\u5c45\u59d4\u4f1a"}, {"id" : "310115137016", "text" : "\u957f\u6cf0\u4e1c\u90ca\u5c45\u59d4\u4f1a"}, {"id" : "310115137017", "text" : "\u6c47\u5eb7\u9526\u82d1\u5c45\u59d4\u4f1a"}, {"id" : "310115137018", "text" : "\u6631\u661f\u5bb6\u56ed\u5c45\u59d4\u4f1a"}, {"id" : "310115137019", "text" : "\u91d1\u6c81\u82d1\u7b2c\u4e00\u5c45\u59d4\u4f1a"}, {"id" : "310115137020", "text" : "\u91d1\u6c81\u82d1\u7b2c\u4e8c\u5c45\u59d4\u4f1a"}, {"id" : "310115137021", "text" : "\u4e1c\u8317\u82d1\u5c45\u59d4\u4f1a"}, {"id" : "310115137022", "text" : "\u6c47\u8bda\u4f73\u82d1\u5c45\u59d4\u4f1a"}, {"id" : "310115137023", "text" : "\u548c\u7f8e\u82d1\u5c45\u59d4\u4f1a"}, {"id" : "310115137024", "text" : "\u6c47\u5584\u5609\u82d1\u5c45\u59d4\u4f1a"}, {"id" : "310115137025", "text" : "\u6c47\u4ec1\u99a8\u82d1\u5c45\u59d4\u4f1a"}, {"id" : "310115137026", "text" : "\u745e\u99a8\u82d1\u5c45\u59d4\u4f1a"}, {"id" : "310115137201", "text" : "\u6d77\u6865\u6751\u6751\u59d4\u4f1a"}, {"id" : "310115137202", "text" : "\u9e64\u9e23\u6751\u6751\u59d4\u4f1a"}, {"id" : "310115137203", "text" : "\u957f\u8fbe\u6751\u6751\u59d4\u4f1a"}, {"id" : "310115137204", "text" : "\u679c\u56ed\u6751\u6751\u59d4\u4f1a"}, {"id" : "310115137205", "text" : "\u798f\u5584\u6751\u6751\u59d4\u4f1a"}, {"id" : "310115137206", "text" : "\u6c89\u9999\u6751\u6751\u59d4\u4f1a"}, {"id" : "310115137207", "text" : "\u9e64\u4e1c\u6751\u6751\u59d4\u4f1a"}, {"id" : "310115137208", "text" : "\u6c88\u5e84\u6751\u6751\u59d4\u4f1a"}, {"id" : "310115137209", "text" : "\u738b\u697c\u6751\u6751\u59d4\u4f1a"}, {"id" : "310115137210", "text" : "\u6885\u56ed\u6751\u6751\u59d4\u4f1a"}, {"id" : "310115137211", "text" : "\u724c\u697c\u6751\u6751\u59d4\u4f1a"}, {"id" : "310115137212", "text" : "\u822a\u4e1c\u6751\u6751\u59d4\u4f1a"}, {"id" : "310115137213", "text" : "\u4e30\u6865\u6751\u6751\u59d4\u4f1a"}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "text": {"type": "string"}}, "required": ["id", "text"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "array", "items": {"type": "object", "properties": {"ParameterKey": {"type": "string"}, "ParameterValue": {"type": "string"}}, "required": ["ParameterKey", "ParameterValue"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"ParameterKey" : "VpcId", "ParameterValue" : "TEST_VPC"}, {"ParameterKey" : "SubnetIDs", "ParameterValue" : "TEST_SUBNET"}, {"ParameterKey" : "BrokerMembersSecurityGroupId", "ParameterValue" : "TEST_BROKERMEMBERSSECURITYGROUPID"}, {"ParameterKey" : "QSS3BucketName", "ParameterValue" : "TEST_QSS3BUCKETNAME"}, {"ParameterKey" : "QSS3KeyPrefix", "ParameterValue" : "TEST_QSS3KEYPREFIX"}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"ParameterKey": {"type": "string"}, "ParameterValue": {"type": "string"}}, "required": ["ParameterKey", "ParameterValue"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "homepage": {"type": "string"}, "authors": {"type": "array", "items": {"type": "string"}}, "description": {"type": "string"}, "main": {"type": "string"}, "moduleType": {"type": "array", "items": {}}, "keywords": {"type": "array", "items": {"type": "string"}}, "license": {"type": "string"}, "private": {"type": "boolean"}, "ignore": {"type": "array", "items": {"type": "string"}}, "dependencies": {"type": "object", "properties": {"app-layout": {"type": "string"}, "app-localize-behavior": {"type": "string"}, "app-pouchdb": {"type": "string"}, "app-route": {"type": "string"}, "app-storage": {"type": "string"}}, "required": ["app-layout", "app-localize-behavior", "app-pouchdb", "app-route", "app-storage"]}}, "required": ["name", "version", "homepage", "authors", "description", "main", "moduleType", "keywords", "license", "private", "ignore", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "app-elements", "version" : "1.0.0", "homepage" : "https://github.com/PolymerElements/app-elements", "authors" : ["The Polymer Authors"], "description" : "The app elements enable building full web apps out of modular custom elements.", "main" : "app-elements.html", "moduleType" : [], "keywords" : ["web-components", "polymer", "app", "element-collection"], "license" : "http://polymer.github.io/LICENSE.txt", "private" : true, "ignore" : ["**/.*", "node_modules", "bower_components", "test", "tests"], "dependencies" : {"app-layout" : "PolymerElements/app-layout#^1.0.0", "app-localize-behavior" : "PolymerElements/app-localize-behavior#^1.0.0", "app-pouchdb" : "PolymerElements/app-pouchdb#^1.0.0", "app-route" : "PolymerElements/app-route#^1.0.0", "app-storage" : "PolymerElements/app-storage#^1.0.0"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "homepage": {"type": "string"}, "authors": {"type": "array", "items": {"type": "string"}}, "description": {"type": "string"}, "main": {"type": "string"}, "moduleType": {"type": "array", "items": {}}, "keywords": {"type": "array", "items": {"type": "string"}}, "license": {"type": "string"}, "private": {"type": "boolean"}, "ignore": {"type": "array", "items": {"type": "string"}}, "dependencies": {"type": "object", "properties": {"app-layout": {"type": "string"}, "app-localize-behavior": {"type": "string"}, "app-pouchdb": {"type": "string"}, "app-route": {"type": "string"}, "app-storage": {"type": "string"}}, "required": ["app-layout", "app-localize-behavior", "app-pouchdb", "app-route", "app-storage"]}}, "required": ["name", "version", "homepage", "authors", "description", "main", "moduleType", "keywords", "license", "private", "ignore", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "array", "items": {"type": "object", "properties": {"review": {"type": "string"}, "date": {"type": "string"}, "rating": {"type": "string"}, "author": {"type": "string"}, "review_id": {"type": "string"}, "movie_id": {"type": "string"}}, "required": ["review", "date", "rating", "author", "review_id", "movie_id"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"review" : "\uae30\ub300\ud588\ub358 \ubc30\uc6b0\ub294 \uc544\ub2c8\uc5c8\ub124\uc694", "date" : "13.10.22", "rating" : "10", "author" : "syb2****", "review_id" : "8080675", "movie_id" : "16186"}, {"review" : "\ube4c\ub9ac\uac00 \ub098\uc624\ub294\ub370 \uc65c 12\uc138\ubbf8\ub9cc \uad00\ub78c\uc774\uc5d0\uc694?", "date" : "13.10.22", "rating" : "10", "author" : "eyi8****", "review_id" : "8080674", "movie_id" : "16186"}, {"review" : "\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b", "date" : "13.07.31", "rating" : "10", "author" : "jjb1****", "review_id" : "7802787", "movie_id" : "16186"}, {"review" : "\uae5c\ucc0d\ud558\ub2f9\uaed8\uc694?", "date" : "12.07.19", "rating" : "10", "author" : "ty88****", "review_id" : "6495170", "movie_id" : "16186"}, {"review" : "\uc7ac\ubbf8\ub3c4, \ub0a8\ub294\uac83\ub3c4 \uc788\ub294 \uc601\ud654! \uc0ac\ub78c\uc774 \uc8fd\uc9c0\ub3c4 \uc54a\uc558\ub294\ub370 \uc2ac\ud508\uac8c \uc9c4\uc9dc \uc2ac\ud504\ub2e4\ub294\ub9d0..", "date" : "12.05.23", "rating" : "10", "author" : "star****", "review_id" : "6326667", "movie_id" : "16186"}, {"review" : "ANG?", "date" : "11.12.25", "rating" : "10", "author" : "whdd****", "review_id" : "5933431", "movie_id" : "16186"}, {"review" : "ANG?", "date" : "11.12.12", "rating" : "10", "author" : "aiwy****", "review_id" : "5901889", "movie_id" : "16186"}, {"review" : "ANG?", "date" : "11.03.23", "rating" : "10", "author" : "koik****", "review_id" : "5330778", "movie_id" : "16186"}, {"review" : "ANG?", "date" : "11.02.26", "rating" : "10", "author" : "tnsd****", "review_id" : "5276214", "movie_id" : "16186"}, {"review" : "\uadf8\ub807\ub2e4 \ube4c\ub9ac\ub294 \uadc0\uc5fd\ub2e4", "date" : "10.12.14", "rating" : "10", "author" : "shju****", "review_id" : "5053878", "movie_id" : "16186"}, {"review" : "\ub0a8\ub2e4\ub978 \ud2b9\ubcc4\ud55c \uc7ac\ub2a5\uc740 \uc5c6\uc5c8\uc5b4\ub3c4,\uc601\ud654\ub97c \ub9dd\uce58\ub294 \ubc95\uc740 \uc5c6\uc5c8\ub358,\uac10\ub3c5\uc758 \ubb34\ub09c\ud55c \ubc94\uc791.", "date" : "10.05.26", "rating" : "7", "author" : "baks****", "review_id" : "4524492", "movie_id" : "16186"}, {"review" : "\uc61b\ub0a0\uc5d0 \ubd24\ub358 \uc5c4\uccad\uc720\ucf8c\ud558\uace0 \uc7ac\ubc0c\uc5c8\ub358 \uc601\ud654", "date" : "08.04.15", "rating" : "9", "author" : "hisi****", "review_id" : "2582234", "movie_id" : "16186"}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"review": {"type": "string"}, "date": {"type": "string"}, "rating": {"type": "string"}, "author": {"type": "string"}, "review_id": {"type": "string"}, "movie_id": {"type": "string"}}, "required": ["review", "date", "rating", "author", "review_id", "movie_id"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"variants": {"type": "object", "properties": {"normal": {"type": "object", "properties": {"model": {"type": "string"}}, "required": ["model"]}}, "required": ["normal"]}}, "required": ["variants"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"variants" : {"normal" : {"model" : "im:lb_cube_panel_top"}}}
json_instruct
{"type": "object", "properties": {"variants": {"type": "object", "properties": {"normal": {"type": "object", "properties": {"model": {"type": "string"}}, "required": ["model"]}}, "required": ["normal"]}}, "required": ["variants"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"_id": {"type": "string"}, "name": {"type": "string"}, "address": {"type": "array", "items": {"type": "string"}}, "city": {"type": "string"}, "state": {"type": "string"}, "code": {"type": "string"}, "country": {"type": "string"}, "phone": {"type": "string"}, "website": {"type": "string"}, "description": {"type": "string"}, "geo": {"type": "object", "properties": {"loc": {"type": "array", "items": {"type": "string"}}, "accuracy": {"type": "string"}}, "required": ["loc", "accuracy"]}, "updated": {"type": "string"}}, "required": ["_id", "name", "address", "city", "state", "code", "country", "phone", "website", "description", "geo", "updated"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"_id" : "brewery_Iron_Hill_Brewery_-_Wilmingon", "name" : "Iron Hill Brewery - Wilmingon", "address" : ["620 South Madison Street"], "city" : "Wilmington", "state" : "Delaware", "code" : "19805", "country" : "United States", "phone" : "1-302-658-8200", "website" : "http://www.ironhillbrewery.com/", "description" : "We're passionate about producing distinctive, full-flavored handcrafted beers, accompanied by freshfromscratch New American cuisine in a comfortable, casual atmosphere. Our goal has always been to provide food and beer that is inspired, consistently crafted and presented by a knowledgeable and courteous service staff.", "geo" : {"loc" : ["-75.5561", "39.745"], "accuracy" : "RANGE_INTERPOLATED"}, "updated" : "2010-07-22 20:00:20"}
json_instruct
{"type": "object", "properties": {"_id": {"type": "string"}, "name": {"type": "string"}, "address": {"type": "array", "items": {"type": "string"}}, "city": {"type": "string"}, "state": {"type": "string"}, "code": {"type": "string"}, "country": {"type": "string"}, "phone": {"type": "string"}, "website": {"type": "string"}, "description": {"type": "string"}, "geo": {"type": "object", "properties": {"loc": {"type": "array", "items": {"type": "string"}}, "accuracy": {"type": "string"}}, "required": ["loc", "accuracy"]}, "updated": {"type": "string"}}, "required": ["_id", "name", "address", "city", "state", "code", "country", "phone", "website", "description", "geo", "updated"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"id": {"type": "string"}}, "required": ["id"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : "09149e2f60acf92b8d0513f75dd832535511d4fe"}
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}}, "required": ["id"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"id": {"type": "integer"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"src:alt_label": {"type": "string"}, "src:geom": {"type": "string"}, "wof:geomhash": {"type": "string"}, "wof:id": {"type": "integer"}, "wof:repo": {"type": "string"}}, "required": ["src:alt_label", "src:geom", "wof:geomhash", "wof:id", "wof:repo"]}, "bbox": {"type": "array", "items": {"type": "number"}}, "geometry": {"type": "object", "properties": {"coordinates": {"type": "array", "items": {"type": "number"}}, "type": {"type": "string"}}, "required": ["coordinates", "type"]}}, "required": ["id", "type", "properties", "bbox", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : 101761561, "type" : "Feature", "properties" : {"src:alt_label" : "quattroshapes_pg", "src:geom" : "quattroshapes_pg", "wof:geomhash" : "73697c84637d6eb871eea9ee8e856863", "wof:id" : 101761561, "wof:repo" : "whosonfirst-data-admin-fr"}, "bbox" : [-2.25952, 48.31748, -2.25952, 48.31748], "geometry" : {"coordinates" : [-2.25952, 48.31748], "type" : "Point"}}
json_instruct
{"type": "object", "properties": {"id": {"type": "integer"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"src:alt_label": {"type": "string"}, "src:geom": {"type": "string"}, "wof:geomhash": {"type": "string"}, "wof:id": {"type": "integer"}, "wof:repo": {"type": "string"}}, "required": ["src:alt_label", "src:geom", "wof:geomhash", "wof:id", "wof:repo"]}, "bbox": {"type": "array", "items": {"type": "number"}}, "geometry": {"type": "object", "properties": {"coordinates": {"type": "array", "items": {"type": "number"}}, "type": {"type": "string"}}, "required": ["coordinates", "type"]}}, "required": ["id", "type", "properties", "bbox", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "array", "items": {"type": "object", "properties": {"DeniedAlternatives": {"type": "array", "items": {}}, "Files": {"type": "object", "properties": {"items/throwables/throwinggnome.thrownitem": {"type": "array", "items": {"type": "string"}}}, "required": ["items/throwables/throwinggnome.thrownitem"]}, "Texts": {"type": "object", "properties": {"Eng": {"type": "string"}, "Rus": {"type": "string"}}, "required": ["Eng", "Rus"]}}, "required": ["DeniedAlternatives", "Files", "Texts"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"DeniedAlternatives" : [], "Files" : {"items/throwables/throwinggnome.thrownitem" : ["/shortdescription"]}, "Texts" : {"Eng" : "Ball of Gnomes", "Rus" : "\u0428\u0430\u0440 \u0438\u0437 \u0433\u043d\u043e\u043c\u043e\u0432"}}, {"DeniedAlternatives" : [], "Files" : {"items/throwables/throwinggnome.thrownitem" : ["/description"]}, "Texts" : {"Eng" : "Toss these little guys to do the fighting for you.", "Rus" : "\u0428\u0432\u044b\u0440\u043d\u0438 \u044d\u0442\u0438\u0445 \u043c\u0430\u043b\u044b\u0448\u0435\u0439, \u0447\u0442\u043e\u0431\u044b \u043e\u043d\u0438 \u0431\u0438\u043b\u0438\u0441\u044c \u0437\u0430 \u0442\u0435\u0431\u044f."}}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"DeniedAlternatives": {"type": "array", "items": {}}, "Files": {"type": "object", "properties": {"items/throwables/throwinggnome.thrownitem": {"type": "array", "items": {"type": "string"}}}, "required": ["items/throwables/throwinggnome.thrownitem"]}, "Texts": {"type": "object", "properties": {"Eng": {"type": "string"}, "Rus": {"type": "string"}}, "required": ["Eng", "Rus"]}}, "required": ["DeniedAlternatives", "Files", "Texts"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"version": {"type": "number"}, "people": {"type": "array", "items": {"type": "object", "properties": {"pose_keypoints_2d": {"type": "array", "items": {"type": "number"}}, "face_keypoints_2d": {"type": "array", "items": {}}, "hand_left_keypoints_2d": {"type": "array", "items": {}}, "hand_right_keypoints_2d": {"type": "array", "items": {}}, "pose_keypoints_3d": {"type": "array", "items": {}}, "face_keypoints_3d": {"type": "array", "items": {}}, "hand_left_keypoints_3d": {"type": "array", "items": {}}, "hand_right_keypoints_3d": {"type": "array", "items": {}}}, "required": ["pose_keypoints_2d", "face_keypoints_2d", "hand_left_keypoints_2d", "hand_right_keypoints_2d", "pose_keypoints_3d", "face_keypoints_3d", "hand_left_keypoints_3d", "hand_right_keypoints_3d"]}}}, "required": ["version", "people"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"version" : 1.2, "people" : [{"pose_keypoints_2d" : [645.096, 241.738, 1, 625.133, 273.607, 1, 610.853, 277.377, 1, 589.903, 305.773, 1, 592.386, 339.813, 1, 649.028, 266.978, 1, 670.194, 232.372, 1, 662.251, 224.2, 1, 624.244, 349.632, 1, 654.712, 413.406, 1, 623.164, 449.678, 1, 636.465, 341.575, 1, 663.269, 410.11, 1, 629.471, 447.545, 1, 639.616, 237.735, 1, 651.901, 239.655, 1, 626.461, 240.579, 1, 836.149, 247.47, 0], "face_keypoints_2d" : [], "hand_left_keypoints_2d" : [], "hand_right_keypoints_2d" : [], "pose_keypoints_3d" : [], "face_keypoints_3d" : [], "hand_left_keypoints_3d" : [], "hand_right_keypoints_3d" : []}]}
json_instruct
{"type": "object", "properties": {"version": {"type": "number"}, "people": {"type": "array", "items": {"type": "object", "properties": {"pose_keypoints_2d": {"type": "array", "items": {"type": "number"}}, "face_keypoints_2d": {"type": "array", "items": {}}, "hand_left_keypoints_2d": {"type": "array", "items": {}}, "hand_right_keypoints_2d": {"type": "array", "items": {}}, "pose_keypoints_3d": {"type": "array", "items": {}}, "face_keypoints_3d": {"type": "array", "items": {}}, "hand_left_keypoints_3d": {"type": "array", "items": {}}, "hand_right_keypoints_3d": {"type": "array", "items": {}}}, "required": ["pose_keypoints_2d", "face_keypoints_2d", "hand_left_keypoints_2d", "hand_right_keypoints_2d", "pose_keypoints_3d", "face_keypoints_3d", "hand_left_keypoints_3d", "hand_right_keypoints_3d"]}}}, "required": ["version", "people"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {"type": "integer"}}, "productReviews": {"type": "array", "items": {}}}, "required": ["userId", "cartId", "preferredProducts", "productReviews"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"userId" : 98381, "cartId" : "db138ecd-8f19-4610-88c1-7f314d7f732d", "preferredProducts" : [199, 5000, 861, 3047, 487, 2184], "productReviews" : []}
json_instruct
{"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {"type": "integer"}}, "productReviews": {"type": "array", "items": {}}}, "required": ["userId", "cartId", "preferredProducts", "productReviews"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"topic": {"type": "string"}, "category": {"type": "string"}, "attachments": {"type": "array", "items": {}}, "created_by_name": {"type": "string"}, "created_at": {"type": "string"}, "body": {"type": "string"}, "id": {"type": "string"}, "created_by": {"type": "string"}}, "required": ["topic", "category", "attachments", "created_by_name", "created_at", "body", "id", "created_by"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"topic" : "system - out of memory in makevsrc", "category" : "radiance-general", "attachments" : [], "created_by_name" : "Giovanni Betti", "created_at" : "May 19, 2010 at 03:42AM", "body" : "Dear List, \n\n\n\n\n\n\nI am trying to simulate a scene with a number of specular reflections\ninto a cavity.\n\n\nI was trying to use the trans material to this goal, as I want to have\nspecular reflections combined with some light transmission.\n\n\nAfter having the simulation running for 17hours I received this message\n\n\n\n\n\n\nrpict: system - out of memory in makevsrc\n\n\n\n\n\n\nthese are my rendering parameters\n\n\n\n\n\n\n-dp 2048 -ar 104 -ms 0.26 -ds .2 -dt .05 -dc .75 -dr 3 -sj 1 -st .01 -ab\n4 -af myscene.amb -aa .1 -ad 1536 -as 768 -av 0.01 0.01 0.01 -lr 12 -lw\n.0005\n\n\n\n\n\n\nWould some change to those parameters allow me to run the simulation or\ntoo many specular reflections are bound to cause problems?\n\n\n\n\n\n\nThanks for your help in advance,\n\n\n\n\n\n\nBest,\n\n\n\n\n\n\nGiovanni\n___\n<sup>Automatically generated content from [radiance mailing-list](https://radiance-online.org/pipermail/radiance-general/2010-May/006898.html).</sup>", "id" : "radiance-general_006898", "created_by" : "Giovanni_Betti"}
json_instruct
{"type": "object", "properties": {"topic": {"type": "string"}, "category": {"type": "string"}, "attachments": {"type": "array", "items": {}}, "created_by_name": {"type": "string"}, "created_at": {"type": "string"}, "body": {"type": "string"}, "id": {"type": "string"}, "created_by": {"type": "string"}}, "required": ["topic", "category", "attachments", "created_by_name", "created_at", "body", "id", "created_by"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"attributes": {"type": "object", "properties": {}, "required": []}, "body": {"type": "string"}, "bodyBegin": {"type": "integer"}}, "required": ["attributes", "body", "bodyBegin"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"attributes" : {}, "body" : "Oh, they are ignorant people. Why should you mind what they call it?\r\n\r\nTell me, Watson. What do they say of it?\r\n\r\nI hesitated but could not escape the question.\r\n\r\nThey say it is the cry of the Hound of the Baskervilles.\r\n\r\nHe groaned and was silent for a few moments.\r\n\r\nA hound it was, he said, at last, but it seemed to come from miles\r\naway, over yonder, I think.\r\n\r\nIt was hard to say whence it came.\r\n\r\nIt rose and fell with the wind. Isn't that the direction of the great\r\nGrimpen Mire?\r\n\r\nYes, it is.\r\n\r\nWell, it was up there. Come now, Watson, didn't you think yourself\r\nthat it was the cry of a hound? I am not a child. You need not fear to\r\nspeak the truth.\r\n\r\nStapleton was with me when I heard it last. He said that it might be\r\nthe calling of a strange bird.\r\n\r\nNo, no, it was a hound. My God, can there be some truth in all these\r\nstories? Is it possible that I am really in danger from so dark a cause?\r\nYou don't believe it, do you, Watson?\r\n\r\nNo, no.\r\n\r\nAnd yet it was one thing to laugh about it in London, and it is\r\nanother to stand out here in the darkness of the moor and to hear such a\r\ncry as that. And my uncle! There was the footprint of the hound beside\r\nhim as he lay. It all fits together. I don't\r\n", "bodyBegin" : 1}
json_instruct
{"type": "object", "properties": {"attributes": {"type": "object", "properties": {}, "required": []}, "body": {"type": "string"}, "bodyBegin": {"type": "integer"}}, "required": ["attributes", "body", "bodyBegin"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"b2a538f9a4e054a4": {"type": "string"}}, "required": ["b2a538f9a4e054a4"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"b2a538f9a4e054a4" : "plugins/rcp-fe-lol-game-in-progress/global/zh_cn/trans.json"}
json_instruct
{"type": "object", "properties": {"b2a538f9a4e054a4": {"type": "string"}}, "required": ["b2a538f9a4e054a4"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"n_dim": {"type": "integer"}, "n_trials": {"type": "integer"}, "objective": {"type": "string"}, "white": {"type": "string"}, "black": {"type": "string"}, "traceback": {"type": "array", "items": {"type": "string"}}, "best_val": {"type": "array", "items": {"type": "number"}}, "best_x": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}, "feval_count": {"type": "array", "items": {"type": "integer"}}, "n_trials_instructed": {"type": "array", "items": {"type": "integer"}}, "passing": {"type": "array", "items": {"type": "boolean"}}, "completed": {"type": "boolean"}, "winner": {"type": "string"}, "points": {"type": "null"}}, "required": ["n_dim", "n_trials", "objective", "white", "black", "traceback", "best_val", "best_x", "feval_count", "n_trials_instructed", "passing", "completed", "winner", "points"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"n_dim" : 5, "n_trials" : 80, "objective" : "markowitz_return_on_cube", "white" : "ultraopt_random", "black" : "shgo_powell_sobol", "traceback" : ["passing", "passing"], "best_val" : [5004.253946641157, 4892.18801273942], "best_x" : [[0.8093611554785136, 0.8101133946791808, 0.8670723185801037, 0.9132405525564713, 0.5113423988609378], [0.21652991426338275, 0.2261625197343541, 0.1863171387381777, 0.20830326012322292, 0.15977466158494136]], "feval_count" : [80, 363], "n_trials_instructed" : [80, 23], "passing" : [true, true], "completed" : false, "winner" : "incomplete", "points" : null}
json_instruct
{"type": "object", "properties": {"n_dim": {"type": "integer"}, "n_trials": {"type": "integer"}, "objective": {"type": "string"}, "white": {"type": "string"}, "black": {"type": "string"}, "traceback": {"type": "array", "items": {"type": "string"}}, "best_val": {"type": "array", "items": {"type": "number"}}, "best_x": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}, "feval_count": {"type": "array", "items": {"type": "integer"}}, "n_trials_instructed": {"type": "array", "items": {"type": "integer"}}, "passing": {"type": "array", "items": {"type": "boolean"}}, "completed": {"type": "boolean"}, "winner": {"type": "string"}, "points": {"type": "null"}}, "required": ["n_dim", "n_trials", "objective", "white", "black", "traceback", "best_val", "best_x", "feval_count", "n_trials_instructed", "passing", "completed", "winner", "points"], "$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"}, "main": {"type": "string"}, "dependencies": {"type": "object", "properties": {"bower": {"type": "string"}}, "required": ["bower"]}, "devDependencies": {"type": "object", "properties": {"asset-builder": {"type": "string"}, "browser-sync": {"type": "string"}, "gulp": {"type": "string"}, "gulp-changed": {"type": "string"}, "gulp-compass": {"type": "string"}, "gulp-load-plugins": {"type": "string"}, "gulp-pleeease": {"type": "string"}, "gulp-plumber": {"type": "string"}, "gulp-sourcemaps": {"type": "string"}, "lazypipe": {"type": "string"}}, "required": ["asset-builder", "browser-sync", "gulp", "gulp-changed", "gulp-compass", "gulp-load-plugins", "gulp-pleeease", "gulp-plumber", "gulp-sourcemaps", "lazypipe"]}, "scripts": {"type": "object", "properties": {}, "required": []}, "author": {"type": "string"}, "license": {"type": "string"}}, "required": ["name", "version", "description", "main", "dependencies", "devDependencies", "scripts", "author", "license"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "ng2_dart_modal", "version" : "0.0.1-alpha.1", "description" : "Modals for Angular2 Dart, port of angular2-modal, see http://shlomiassaf.github.io/angular2-modal/", "main" : "web/index.html", "dependencies" : {"bower" : "^1.7.1"}, "devDependencies" : {"asset-builder" : "^1.0.1", "browser-sync" : "^2.0.1", "gulp" : "^3.9.0", "gulp-changed" : "^0.4.0", "gulp-compass" : "^2.1.0", "gulp-load-plugins" : ">0.8.0", "gulp-pleeease" : "^2.0.1", "gulp-plumber" : "^0.6.3", "gulp-sourcemaps" : "^1.6.0", "lazypipe" : "^0.2.2"}, "scripts" : {}, "author" : "Louis Laagland <louis@wunderful.nl>", "license" : "MIT"}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "dependencies": {"type": "object", "properties": {"bower": {"type": "string"}}, "required": ["bower"]}, "devDependencies": {"type": "object", "properties": {"asset-builder": {"type": "string"}, "browser-sync": {"type": "string"}, "gulp": {"type": "string"}, "gulp-changed": {"type": "string"}, "gulp-compass": {"type": "string"}, "gulp-load-plugins": {"type": "string"}, "gulp-pleeease": {"type": "string"}, "gulp-plumber": {"type": "string"}, "gulp-sourcemaps": {"type": "string"}, "lazypipe": {"type": "string"}}, "required": ["asset-builder", "browser-sync", "gulp", "gulp-changed", "gulp-compass", "gulp-load-plugins", "gulp-pleeease", "gulp-plumber", "gulp-sourcemaps", "lazypipe"]}, "scripts": {"type": "object", "properties": {}, "required": []}, "author": {"type": "string"}, "license": {"type": "string"}}, "required": ["name", "version", "description", "main", "dependencies", "devDependencies", "scripts", "author", "license"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "main": {"type": "string"}, "homepage": {"type": "string"}, "dependencies": {"type": "object", "properties": {"meteor/mdg:validated-method": {"type": "string"}}, "required": ["meteor/mdg:validated-method"]}}, "required": ["name", "version", "main", "homepage", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "meteor/apatryda:async-validated-method", "version" : "1.2.4", "main" : "dist/index.d.ts", "homepage" : "https://atmospherejs.com/apatryda/async-validated-method", "dependencies" : {"meteor/mdg:validated-method" : "github:apatryda/meteor-validated-method-typings"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "main": {"type": "string"}, "homepage": {"type": "string"}, "dependencies": {"type": "object", "properties": {"meteor/mdg:validated-method": {"type": "string"}}, "required": ["meteor/mdg:validated-method"]}}, "required": ["name", "version", "main", "homepage", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"http.port": {"type": "integer"}, "http.timeout": {"type": "integer"}, "facebook.graph.API.token": {"type": "string"}, "facebook.graph.API.host": {"type": "string"}, "mongodb.server.connection.url": {"type": "string"}, "mongodb.sentiment.db": {"type": "string"}}, "required": ["http.port", "http.timeout", "facebook.graph.API.token", "facebook.graph.API.host", "mongodb.server.connection.url", "mongodb.sentiment.db"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"http.port" : 8082, "http.timeout" : 10000, "facebook.graph.API.token" : "***********", "facebook.graph.API.host" : "graph.facebook.com", "mongodb.server.connection.url" : "mongodb://localhost:27017", "mongodb.sentiment.db" : "sentiment"}
json_instruct
{"type": "object", "properties": {"http.port": {"type": "integer"}, "http.timeout": {"type": "integer"}, "facebook.graph.API.token": {"type": "string"}, "facebook.graph.API.host": {"type": "string"}, "mongodb.server.connection.url": {"type": "string"}, "mongodb.sentiment.db": {"type": "string"}}, "required": ["http.port", "http.timeout", "facebook.graph.API.token", "facebook.graph.API.host", "mongodb.server.connection.url", "mongodb.sentiment.db"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"lastUpdated": {"type": "integer"}, "username": {"type": "string"}, "scores": {"type": "array", "items": {"type": "object", "properties": {"xp": {"type": "integer"}, "rank": {"type": "integer"}, "cardId": {"type": "integer"}}, "required": ["xp", "rank", "cardId"]}}}, "required": ["lastUpdated", "username", "scores"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"lastUpdated" : 1655019279666, "username" : "_Demo4YT_", "scores" : [{"xp" : 16448, "rank" : 360, "cardId" : 412}, {"xp" : 27660, "rank" : 351, "cardId" : 120}, {"xp" : 25707, "rank" : 489, "cardId" : 32}, {"xp" : 9208, "rank" : 161, "cardId" : 390}, {"xp" : 13844, "rank" : 177, "cardId" : 149}, {"xp" : 23364, "rank" : 318, "cardId" : 434}, {"xp" : 31428, "rank" : 139, "cardId" : 53}, {"xp" : 22885, "rank" : 220, "cardId" : 238}, {"xp" : 27802, "rank" : 46, "cardId" : 409}, {"xp" : 7143, "rank" : 268, "cardId" : 245}, {"xp" : 47994, "rank" : 478, "cardId" : 246}, {"xp" : 24783, "rank" : 395, "cardId" : 503}, {"xp" : 18207, "rank" : 251, "cardId" : 406}, {"xp" : 23271, "rank" : 322, "cardId" : 124}, {"xp" : 14288, "rank" : 320, "cardId" : 415}, {"xp" : 38757, "rank" : 250, "cardId" : 119}, {"xp" : 59374, "rank" : 284, "cardId" : 108}, {"xp" : 31251, "rank" : 352, "cardId" : 408}, {"xp" : 42327, "rank" : 115, "cardId" : 240}, {"xp" : 19629, "rank" : 271, "cardId" : 533}, {"xp" : 36143, "rank" : 179, "cardId" : 121}, {"xp" : 21924, "rank" : 427, "cardId" : 57}]}
json_instruct
{"type": "object", "properties": {"lastUpdated": {"type": "integer"}, "username": {"type": "string"}, "scores": {"type": "array", "items": {"type": "object", "properties": {"xp": {"type": "integer"}, "rank": {"type": "integer"}, "cardId": {"type": "integer"}}, "required": ["xp", "rank", "cardId"]}}}, "required": ["lastUpdated", "username", "scores"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"vendor": {"type": "string"}, "filename": {"type": "string"}, "release_type": {"type": "string"}, "version": {"type": "string"}, "java_version": {"type": "string"}, "jvm_impl": {"type": "string"}, "os": {"type": "string"}, "architecture": {"type": "string"}, "file_type": {"type": "string"}, "image_type": {"type": "string"}, "features": {"type": "array", "items": {}}, "url": {"type": "string"}, "md5": {"type": "string"}, "md5_file": {"type": "string"}, "sha1": {"type": "string"}, "sha1_file": {"type": "string"}, "sha256": {"type": "string"}, "sha256_file": {"type": "string"}, "sha512": {"type": "string"}, "sha512_file": {"type": "string"}, "size": {"type": "integer"}}, "required": ["vendor", "filename", "release_type", "version", "java_version", "jvm_impl", "os", "architecture", "file_type", "image_type", "features", "url", "md5", "md5_file", "sha1", "sha1_file", "sha256", "sha256_file", "sha512", "sha512_file", "size"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"vendor" : "sapmachine", "filename" : "sapmachine-jdk-11.0.11-ea.9_linux-x64_bin.tar.gz", "release_type" : "ea", "version" : "11.0.11-ea.9", "java_version" : "11.0.11-ea.9", "jvm_impl" : "hotspot", "os" : "linux", "architecture" : "x86_64", "file_type" : "tar.gz", "image_type" : "jdk", "features" : [], "url" : "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.11+9/sapmachine-jdk-11.0.11-ea.9_linux-x64_bin.tar.gz", "md5" : "3faa96fed3ba9041ed6b892f9d197cc7", "md5_file" : "sapmachine-jdk-11.0.11-ea.9_linux-x64_bin.tar.gz.md5", "sha1" : "97b253125691cfb289a6e376715770b60001bcef", "sha1_file" : "sapmachine-jdk-11.0.11-ea.9_linux-x64_bin.tar.gz.sha1", "sha256" : "aeb73cb33eb375ede92a68348e18f59917ba6c8122d2f8fde0bf4d22fe46fd65", "sha256_file" : "sapmachine-jdk-11.0.11-ea.9_linux-x64_bin.tar.gz.sha256", "sha512" : "a97dc67e78ffaa16b3311751a6dc36cd44478f27905ad71e9f9e83302ad64a948a08a549ad9cde7bfa84632d5dabefb21bd3443dc113c65e238c919913169873", "sha512_file" : "sapmachine-jdk-11.0.11-ea.9_linux-x64_bin.tar.gz.sha512", "size" : 193206156}
json_instruct
{"type": "object", "properties": {"vendor": {"type": "string"}, "filename": {"type": "string"}, "release_type": {"type": "string"}, "version": {"type": "string"}, "java_version": {"type": "string"}, "jvm_impl": {"type": "string"}, "os": {"type": "string"}, "architecture": {"type": "string"}, "file_type": {"type": "string"}, "image_type": {"type": "string"}, "features": {"type": "array", "items": {}}, "url": {"type": "string"}, "md5": {"type": "string"}, "md5_file": {"type": "string"}, "sha1": {"type": "string"}, "sha1_file": {"type": "string"}, "sha256": {"type": "string"}, "sha256_file": {"type": "string"}, "sha512": {"type": "string"}, "sha512_file": {"type": "string"}, "size": {"type": "integer"}}, "required": ["vendor", "filename", "release_type", "version", "java_version", "jvm_impl", "os", "architecture", "file_type", "image_type", "features", "url", "md5", "md5_file", "sha1", "sha1_file", "sha256", "sha256_file", "sha512", "sha512_file", "size"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "license": {"type": "string"}, "homepage": {"type": "string"}, "require": {"type": "object", "properties": {"php": {"type": "string"}, "aws/aws-sdk-php": {"type": "string"}, "lexide/queueball": {"type": "string"}}, "required": ["php", "aws/aws-sdk-php", "lexide/queueball"]}, "require-dev": {"type": "object", "properties": {"phpunit/phpunit": {"type": "string"}, "mockery/mockery": {"type": "string"}, "lexide/pharmacist": {"type": "string"}}, "required": ["phpunit/phpunit", "mockery/mockery", "lexide/pharmacist"]}, "autoload": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"Lexide\\QueueBall\\Sqs\\": {"type": "string"}}, "required": ["Lexide\\QueueBall\\Sqs\\"]}}, "required": ["psr-4"]}, "autoload-dev": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"Lexide\\QueueBall\\Sqs\\Test\\": {"type": "string"}}, "required": ["Lexide\\QueueBall\\Sqs\\Test\\"]}}, "required": ["psr-4"]}, "extra": {"type": "object", "properties": {"lexide/puzzle-di": {"type": "object", "properties": {"files": {"type": "object", "properties": {"lexide/syringe": {"type": "object", "properties": {"path": {"type": "string"}}, "required": ["path"]}}, "required": ["lexide/syringe"]}, "whitelist": {"type": "object", "properties": {"lexide/syringe": {"type": "array", "items": {"type": "string"}}}, "required": ["lexide/syringe"]}}, "required": ["files", "whitelist"]}}, "required": ["lexide/puzzle-di"]}}, "required": ["name", "description", "license", "homepage", "require", "require-dev", "autoload", "autoload-dev", "extra"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "lexide/queueball-sqs", "description" : "An Amazon SQS implementation for Lexide QueueBall, the message queue abstraction system", "license" : "MIT", "homepage" : "https://github.com/lexide/queueball-sqs", "require" : {"php" : ">=5.5.0", "aws/aws-sdk-php" : "^3.0.0", "lexide/queueball" : "~3.0.0"}, "require-dev" : {"phpunit/phpunit" : "^4.0.0", "mockery/mockery" : "^1.0.0", "lexide/pharmacist" : "~1.1.0"}, "autoload" : {"psr-4" : {"Lexide\\QueueBall\\Sqs\\" : "src"}}, "autoload-dev" : {"psr-4" : {"Lexide\\QueueBall\\Sqs\\Test\\" : "test"}}, "extra" : {"lexide/puzzle-di" : {"files" : {"lexide/syringe" : {"path" : "config/syringe.yml"}}, "whitelist" : {"lexide/syringe" : ["lexide/queueball"]}}}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "license": {"type": "string"}, "homepage": {"type": "string"}, "require": {"type": "object", "properties": {"php": {"type": "string"}, "aws/aws-sdk-php": {"type": "string"}, "lexide/queueball": {"type": "string"}}, "required": ["php", "aws/aws-sdk-php", "lexide/queueball"]}, "require-dev": {"type": "object", "properties": {"phpunit/phpunit": {"type": "string"}, "mockery/mockery": {"type": "string"}, "lexide/pharmacist": {"type": "string"}}, "required": ["phpunit/phpunit", "mockery/mockery", "lexide/pharmacist"]}, "autoload": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"Lexide\\QueueBall\\Sqs\\": {"type": "string"}}, "required": ["Lexide\\QueueBall\\Sqs\\"]}}, "required": ["psr-4"]}, "autoload-dev": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"Lexide\\QueueBall\\Sqs\\Test\\": {"type": "string"}}, "required": ["Lexide\\QueueBall\\Sqs\\Test\\"]}}, "required": ["psr-4"]}, "extra": {"type": "object", "properties": {"lexide/puzzle-di": {"type": "object", "properties": {"files": {"type": "object", "properties": {"lexide/syringe": {"type": "object", "properties": {"path": {"type": "string"}}, "required": ["path"]}}, "required": ["lexide/syringe"]}, "whitelist": {"type": "object", "properties": {"lexide/syringe": {"type": "array", "items": {"type": "string"}}}, "required": ["lexide/syringe"]}}, "required": ["files", "whitelist"]}}, "required": ["lexide/puzzle-di"]}}, "required": ["name", "description", "license", "homepage", "require", "require-dev", "autoload", "autoload-dev", "extra"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"params": {"type": "object", "properties": {"time": {"type": "string"}, "global_horiz_radiation": {"type": "string"}}, "required": ["time", "global_horiz_radiation"]}}, "required": ["params"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"params" : {"time" : "local time", "global_horiz_radiation" : "ghi mean"}}
json_instruct
{"type": "object", "properties": {"params": {"type": "object", "properties": {"time": {"type": "string"}, "global_horiz_radiation": {"type": "string"}}, "required": ["time", "global_horiz_radiation"]}}, "required": ["params"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"eventIndex": {"type": "integer"}, "name": {"type": "string"}, "location": {"type": "string"}, "date": {"type": "string"}, "conditions": {"type": "null"}, "laps": {"type": "null"}}, "required": ["eventIndex", "name", "location", "date", "conditions", "laps"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"eventIndex" : 13, "name" : "Misano World Circuit Marco Simoncelli", "location" : "Misano Adriatico-Rimini, Italy", "date" : "11 September", "conditions" : null, "laps" : null}
json_instruct
{"type": "object", "properties": {"eventIndex": {"type": "integer"}, "name": {"type": "string"}, "location": {"type": "string"}, "date": {"type": "string"}, "conditions": {"type": "null"}, "laps": {"type": "null"}}, "required": ["eventIndex", "name", "location", "date", "conditions", "laps"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"files": {"type": "object", "properties": {"main.css": {"type": "string"}, "main.js": {"type": "string"}, "main.js.map": {"type": "string"}, "runtime~main.js": {"type": "string"}, "runtime~main.js.map": {"type": "string"}, "static/js/2.ff393bb2.chunk.js": {"type": "string"}, "static/js/2.ff393bb2.chunk.js.map": {"type": "string"}, "index.html": {"type": "string"}, "precache-manifest.15f8f18ae727a2184e7ef1e93b943287.js": {"type": "string"}, "service-worker.js": {"type": "string"}, "static/css/main.957b124d.chunk.css.map": {"type": "string"}, "static/media/i.jpg": {"type": "string"}, "static/media/logo.png": {"type": "string"}, "static/media/sponsor1.png": {"type": "string"}, "static/media/sponsor2.png": {"type": "string"}, "static/media/sponsor3.png": {"type": "string"}, "static/media/sponsor5.png": {"type": "string"}}, "required": ["main.css", "main.js", "main.js.map", "runtime~main.js", "runtime~main.js.map", "static/js/2.ff393bb2.chunk.js", "static/js/2.ff393bb2.chunk.js.map", "index.html", "precache-manifest.15f8f18ae727a2184e7ef1e93b943287.js", "service-worker.js", "static/css/main.957b124d.chunk.css.map", "static/media/i.jpg", "static/media/logo.png", "static/media/sponsor1.png", "static/media/sponsor2.png", "static/media/sponsor3.png", "static/media/sponsor5.png"]}}, "required": ["files"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"files" : {"main.css" : "/tilti/static/css/main.957b124d.chunk.css", "main.js" : "/tilti/static/js/main.a34e2c4e.chunk.js", "main.js.map" : "/tilti/static/js/main.a34e2c4e.chunk.js.map", "runtime~main.js" : "/tilti/static/js/runtime~main.120c3200.js", "runtime~main.js.map" : "/tilti/static/js/runtime~main.120c3200.js.map", "static/js/2.ff393bb2.chunk.js" : "/tilti/static/js/2.ff393bb2.chunk.js", "static/js/2.ff393bb2.chunk.js.map" : "/tilti/static/js/2.ff393bb2.chunk.js.map", "index.html" : "/tilti/index.html", "precache-manifest.15f8f18ae727a2184e7ef1e93b943287.js" : "/tilti/precache-manifest.15f8f18ae727a2184e7ef1e93b943287.js", "service-worker.js" : "/tilti/service-worker.js", "static/css/main.957b124d.chunk.css.map" : "/tilti/static/css/main.957b124d.chunk.css.map", "static/media/i.jpg" : "/tilti/static/media/i.f3fae016.jpg", "static/media/logo.png" : "/tilti/static/media/logo.33a820ff.png", "static/media/sponsor1.png" : "/tilti/static/media/sponsor1.ac78728a.png", "static/media/sponsor2.png" : "/tilti/static/media/sponsor2.e672a369.png", "static/media/sponsor3.png" : "/tilti/static/media/sponsor3.71a498b7.png", "static/media/sponsor5.png" : "/tilti/static/media/sponsor5.257e4a89.png"}}
json_instruct
{"type": "object", "properties": {"files": {"type": "object", "properties": {"main.css": {"type": "string"}, "main.js": {"type": "string"}, "main.js.map": {"type": "string"}, "runtime~main.js": {"type": "string"}, "runtime~main.js.map": {"type": "string"}, "static/js/2.ff393bb2.chunk.js": {"type": "string"}, "static/js/2.ff393bb2.chunk.js.map": {"type": "string"}, "index.html": {"type": "string"}, "precache-manifest.15f8f18ae727a2184e7ef1e93b943287.js": {"type": "string"}, "service-worker.js": {"type": "string"}, "static/css/main.957b124d.chunk.css.map": {"type": "string"}, "static/media/i.jpg": {"type": "string"}, "static/media/logo.png": {"type": "string"}, "static/media/sponsor1.png": {"type": "string"}, "static/media/sponsor2.png": {"type": "string"}, "static/media/sponsor3.png": {"type": "string"}, "static/media/sponsor5.png": {"type": "string"}}, "required": ["main.css", "main.js", "main.js.map", "runtime~main.js", "runtime~main.js.map", "static/js/2.ff393bb2.chunk.js", "static/js/2.ff393bb2.chunk.js.map", "index.html", "precache-manifest.15f8f18ae727a2184e7ef1e93b943287.js", "service-worker.js", "static/css/main.957b124d.chunk.css.map", "static/media/i.jpg", "static/media/logo.png", "static/media/sponsor1.png", "static/media/sponsor2.png", "static/media/sponsor3.png", "static/media/sponsor5.png"]}}, "required": ["files"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"<page title>": {"type": "string"}, "additional features": {"type": "string"}, "connector type": {"type": "string"}, "digital zoom": {"type": "string"}, "effective flash range": {"type": "string"}, "features": {"type": "string"}, "flash modes": {"type": "string"}, "focal length equivalent to 35mm camera": {"type": "string"}, "macro focus range": {"type": "string"}, "model no": {"type": "string"}, "optical zoom": {"type": "string"}, "product in inches l x w x h": {"type": "string"}, "self timer delay": {"type": "string"}, "shipping weight in pounds": {"type": "string"}, "store information not available": {"type": "string"}, "type": {"type": "array", "items": {"type": "string"}}, "viewfinder color support": {"type": "string"}, "viewfinder diagonal size": {"type": "string"}, "walmart no": {"type": "string"}}, "required": ["<page title>", "additional features", "connector type", "digital zoom", "effective flash range", "features", "flash modes", "focal length equivalent to 35mm camera", "macro focus range", "model no", "optical zoom", "product in inches l x w x h", "self timer delay", "shipping weight in pounds", "store information not available", "type", "viewfinder color support", "viewfinder diagonal size", "walmart no"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"<page title>" : "Nikon COOLPIX Digital Camera, P530 - Walmart.com", "additional features" : "Audio recording, USB 2.0 compatibility, DPOF support, display brightness control, digital image rotation, cropping an image, Wi-Fi ready, Active D-Lighting technology, Auto HDR mode, 1080p Full HD movie recording, Best Shot Selector (BSS), USB charging, Exif Print support, Motion Detection Technology, zoom memory, Scene Auto Selector, Eye-Fi Card Ready, Subject tracking technology, high-speed recording, Smart Portrait System, Focus Peaking function, Dynamic Fine Zoom", "connector type" : "1 x USB 2.0 \u00c2\u00a6 1 x HDMI output \u00c2\u00a6 1 x composite video/audio output", "digital zoom" : "4x", "effective flash range" : "1.6 ft - 26 ft : ISO auto ( wide lens ) \u00c2\u00a6 5 ft - 15 ft : ISO auto ( tele lens )", "features" : "Flash +/- compensation", "flash modes" : "Auto mode", "focal length equivalent to 35mm camera" : "24 - 1000mm", "macro focus range" : "0.4 in", "model no" : "26464", "optical zoom" : "42x", "product in inches l x w x h" : "4.83 x 3.31 x 3.86", "self timer delay" : "10 sec, 2 sec", "shipping weight in pounds" : "15.67", "store information not available" : "Please visit your local store to see if this item is in stock.", "type" : ["3\" LCD display", "42 x zoom lens - 4.3 - 180 mm - f/3.0-5.9"], "viewfinder color support" : "Color", "viewfinder diagonal size" : "0.2\"", "walmart no" : "552020628"}
json_instruct
{"type": "object", "properties": {"<page title>": {"type": "string"}, "additional features": {"type": "string"}, "connector type": {"type": "string"}, "digital zoom": {"type": "string"}, "effective flash range": {"type": "string"}, "features": {"type": "string"}, "flash modes": {"type": "string"}, "focal length equivalent to 35mm camera": {"type": "string"}, "macro focus range": {"type": "string"}, "model no": {"type": "string"}, "optical zoom": {"type": "string"}, "product in inches l x w x h": {"type": "string"}, "self timer delay": {"type": "string"}, "shipping weight in pounds": {"type": "string"}, "store information not available": {"type": "string"}, "type": {"type": "array", "items": {"type": "string"}}, "viewfinder color support": {"type": "string"}, "viewfinder diagonal size": {"type": "string"}, "walmart no": {"type": "string"}}, "required": ["<page title>", "additional features", "connector type", "digital zoom", "effective flash range", "features", "flash modes", "focal length equivalent to 35mm camera", "macro focus range", "model no", "optical zoom", "product in inches l x w x h", "self timer delay", "shipping weight in pounds", "store information not available", "type", "viewfinder color support", "viewfinder diagonal size", "walmart no"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "is_illegal": {"type": "boolean"}, "is_custom": {"type": "boolean"}, "text": {"type": "string"}, "images": {"type": "array", "items": {"type": "string"}}, "type": {"type": "string"}, "attribute": {"type": "string"}, "atk": {"type": "integer"}, "species": {"type": "string"}, "monster_type": {"type": "string"}, "is_pendulum": {"type": "boolean"}, "ability": {"type": "string"}, "has_effect": {"type": "boolean"}, "def": {"type": "integer"}, "level": {"type": "integer"}, "is_tuner": {"type": "boolean"}}, "required": ["id", "name", "is_illegal", "is_custom", "text", "images", "type", "attribute", "atk", "species", "monster_type", "is_pendulum", "ability", "has_effect", "def", "level", "is_tuner"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : 40352445, "name" : "White Knight of Dogmatika", "is_illegal" : false, "is_custom" : false, "text" : "You can Ritual Summon this card with \"Dogmatikalamity\". You cannot Special Summon monsters from the Extra Deck. If your opponent activates a card or effect (except during the Damage Step): You can send 1 monster from your Extra Deck to the GY, and if you do, look at your opponent's Extra Deck and send 1 monster from it to the GY. This card gains ATK equal to half the combined ATK of those monsters sent to the GY, until the end of this turn. You can only use this effect of \"White Knight of Dogmatika\" once per turn.", "images" : ["https://storage.googleapis.com/ygoprodeck.com/pics/40352445.jpg"], "type" : "Monster", "attribute" : "LIGHT", "atk" : 500, "species" : "Spellcaster", "monster_type" : "Ritual", "is_pendulum" : false, "ability" : "", "has_effect" : true, "def" : 2500, "level" : 8, "is_tuner" : false}
json_instruct
{"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "is_illegal": {"type": "boolean"}, "is_custom": {"type": "boolean"}, "text": {"type": "string"}, "images": {"type": "array", "items": {"type": "string"}}, "type": {"type": "string"}, "attribute": {"type": "string"}, "atk": {"type": "integer"}, "species": {"type": "string"}, "monster_type": {"type": "string"}, "is_pendulum": {"type": "boolean"}, "ability": {"type": "string"}, "has_effect": {"type": "boolean"}, "def": {"type": "integer"}, "level": {"type": "integer"}, "is_tuner": {"type": "boolean"}}, "required": ["id", "name", "is_illegal", "is_custom", "text", "images", "type", "attribute", "atk", "species", "monster_type", "is_pendulum", "ability", "has_effect", "def", "level", "is_tuner"], "$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#"}
["eas-test-components", "eas-test-test-components", "noll", "soundcloud-like-player"]
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": {"total": {"type": "integer"}, "positive": {"type": "integer"}, "negative": {"type": "integer"}, "Date": {"type": "integer"}, "p_percent": {"type": "number"}, "n_percent": {"type": "number"}}, "required": ["total", "positive", "negative", "Date", "p_percent", "n_percent"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"total" : 78528186, "positive" : 7870627, "negative" : 70657559, "Date" : 1646956800000, "p_percent" : 10.0, "n_percent" : 90.0}
json_instruct
{"type": "object", "properties": {"total": {"type": "integer"}, "positive": {"type": "integer"}, "negative": {"type": "integer"}, "Date": {"type": "integer"}, "p_percent": {"type": "number"}, "n_percent": {"type": "number"}}, "required": ["total", "positive", "negative", "Date", "p_percent", "n_percent"], "$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"}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}, "smaServerConfig": {"type": "object", "properties": {"dockerTag": {"type": "string"}, "serverName": {"type": "string"}, "serverType": {"type": "string"}, "memory": {"type": "string"}, "node_modules": {"type": "boolean"}, "bind": {"type": "array", "items": {"type": "object", "properties": {"src": {"type": "string"}, "dst": {"type": "string"}}, "required": ["src", "dst"]}}}, "required": ["dockerTag", "serverName", "serverType", "memory", "node_modules", "bind"]}, "dependencies": {"type": "object", "properties": {"@magikcraft/op-all": {"type": "string"}}, "required": ["@magikcraft/op-all"]}}, "required": ["name", "version", "keywords", "author", "license", "smaServerConfig", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "<%= name %>-nukkit", "version" : "1.0.0", "keywords" : ["scriptcraft", "scriptcraft-sma", "server"], "author" : "", "license" : "ISC", "smaServerConfig" : {"dockerTag" : "latest", "serverName" : "<%= name %>-nukkit", "serverType" : "nukkit", "memory" : "1024", "node_modules" : true, "bind" : [{"src" : "./", "dst" : "scriptcraft-plugins/<%= name %>"}, {"src" : "./node_modules/@magikcraft/op-all", "dst" : "scriptcraft-plugins/@magikcraft/op-all"}]}, "dependencies" : {"@magikcraft/op-all" : "^1.0.0"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}, "smaServerConfig": {"type": "object", "properties": {"dockerTag": {"type": "string"}, "serverName": {"type": "string"}, "serverType": {"type": "string"}, "memory": {"type": "string"}, "node_modules": {"type": "boolean"}, "bind": {"type": "array", "items": {"type": "object", "properties": {"src": {"type": "string"}, "dst": {"type": "string"}}, "required": ["src", "dst"]}}}, "required": ["dockerTag", "serverName", "serverType", "memory", "node_modules", "bind"]}, "dependencies": {"type": "object", "properties": {"@magikcraft/op-all": {"type": "string"}}, "required": ["@magikcraft/op-all"]}}, "required": ["name", "version", "keywords", "author", "license", "smaServerConfig", "dependencies"], "$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"}, "brewery": {"type": "string"}, "name": {"type": "string"}, "abv": {"type": "string"}, "updated": {"type": "string"}}, "required": ["_id", "brewery", "name", "abv", "updated"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"_id" : "beer_Tripel_Reserve", "brewery" : "Allagash Brewing", "name" : "Tripel Reserve", "abv" : "9", "updated" : "2010-07-22 20:00:20"}
json_instruct
{"type": "object", "properties": {"_id": {"type": "string"}, "brewery": {"type": "string"}, "name": {"type": "string"}, "abv": {"type": "string"}, "updated": {"type": "string"}}, "required": ["_id", "brewery", "name", "abv", "updated"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {"type": "integer"}}, "productReviews": {"type": "array", "items": {"type": "object", "properties": {"productId": {"type": "integer"}, "reviewText": {"type": "string"}, "reviewDate": {"type": "string"}}, "required": ["productId", "reviewText", "reviewDate"]}}}, "required": ["userId", "cartId", "preferredProducts", "productReviews"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"userId" : 76261, "cartId" : "40cfb90c-5a29-4538-b152-ca8376bbb067", "preferredProducts" : [1608, 2571], "productReviews" : [{"productId" : 2043, "reviewText" : "My co-worker Mohamed has one of these. He says it looks brown.", "reviewDate" : "2020-03-29T22:30:24.9076607+03:00"}, {"productId" : 839, "reviewText" : "The box this comes in is 4 yard by 5 kilometer and weights 11 pound!", "reviewDate" : "2017-07-03T09:28:50.7548079+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#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"objects": {"type": "object", "properties": {"vectile": {"type": "object", "properties": {"type": {"type": "string"}, "geometries": {"type": "array", "items": {"type": "object", "properties": {"arcs": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"id": {"type": "integer"}}, "required": ["id"]}, "clipped": {"type": "boolean"}, "id": {"type": "string"}}, "required": ["arcs", "type", "properties", "clipped", "id"]}}}, "required": ["type", "geometries"]}}, "required": ["vectile"]}, "type": {"type": "string"}, "transform": {"type": "object", "properties": {"translate": {"type": "array", "items": {"type": "number"}}, "scale": {"type": "array", "items": {"type": "number"}}}, "required": ["translate", "scale"]}, "arcs": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}}}, "required": ["objects", "type", "transform", "arcs"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"objects" : {"vectile" : {"type" : "GeometryCollection", "geometries" : [{"arcs" : [[0]], "type" : "Polygon", "properties" : {"id" : 199}, "clipped" : true, "id" : "7bbc8a16e0"}, {"arcs" : [[1]], "type" : "Polygon", "properties" : {"id" : 204}, "clipped" : true, "id" : "9c7341e47c"}, {"arcs" : [[2]], "type" : "Polygon", "properties" : {"id" : 205}, "clipped" : true, "id" : "b24198293a"}, {"arcs" : [[3]], "type" : "Polygon", "properties" : {"id" : 209}, "clipped" : true, "id" : "818c850817"}]}}, "type" : "Topology", "transform" : {"translate" : [18.105468749999993, 49.26780455063753], "scale" : [0.0001716613769530903, 0.00011188304333205334]}, "arcs" : [[[1024, 34], [-30, -34], [-181, 0], [211, 224], [0, -190]], [[452, 0], [520, 1024], [52, 0], [0, -800], [-211, -224], [-361, 0]], [[0, 900], [113, 124], [859, 0], [-520, -1024], [-452, 0], [0, 900]], [[113, 1024], [-113, -124], [0, 124], [113, 0]]]}
json_instruct
{"type": "object", "properties": {"objects": {"type": "object", "properties": {"vectile": {"type": "object", "properties": {"type": {"type": "string"}, "geometries": {"type": "array", "items": {"type": "object", "properties": {"arcs": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"id": {"type": "integer"}}, "required": ["id"]}, "clipped": {"type": "boolean"}, "id": {"type": "string"}}, "required": ["arcs", "type", "properties", "clipped", "id"]}}}, "required": ["type", "geometries"]}}, "required": ["vectile"]}, "type": {"type": "string"}, "transform": {"type": "object", "properties": {"translate": {"type": "array", "items": {"type": "number"}}, "scale": {"type": "array", "items": {"type": "number"}}}, "required": ["translate", "scale"]}, "arcs": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}}}, "required": ["objects", "type", "transform", "arcs"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"fasta_path": {"type": "object", "properties": {"class": {"type": "string"}, "location": {"type": "string"}}, "required": ["class", "location"]}, "fasta_test": {"type": "object", "properties": {"class": {"type": "string"}, "location": {"type": "string"}}, "required": ["class", "location"]}, "input0": {"type": "object", "properties": {"class": {"type": "string"}, "location": {"type": "string"}}, "required": ["class", "location"]}, "input1": {"type": "object", "properties": {"class": {"type": "string"}, "location": {"type": "string"}}, "required": ["class", "location"]}}, "required": ["fasta_path", "fasta_test", "input0", "input1"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"fasta_path" : {"class" : "File", "location" : "files/ref.fasta"}, "fasta_test" : {"class" : "File", "location" : "files/ref.test.test"}, "input0" : {"class" : "File", "location" : "files/test.bam"}, "input1" : {"class" : "File", "location" : "files/test.bam"}}
json_instruct
{"type": "object", "properties": {"fasta_path": {"type": "object", "properties": {"class": {"type": "string"}, "location": {"type": "string"}}, "required": ["class", "location"]}, "fasta_test": {"type": "object", "properties": {"class": {"type": "string"}, "location": {"type": "string"}}, "required": ["class", "location"]}, "input0": {"type": "object", "properties": {"class": {"type": "string"}, "location": {"type": "string"}}, "required": ["class", "location"]}, "input1": {"type": "object", "properties": {"class": {"type": "string"}, "location": {"type": "string"}}, "required": ["class", "location"]}}, "required": ["fasta_path", "fasta_test", "input0", "input1"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"json-duplex-stream": {"type": "string"}, "node-static": {"type": "string"}, "socket.io": {"type": "string"}, "uuid": {"type": "string"}}, "required": ["json-duplex-stream", "node-static", "socket.io", "uuid"]}}, "required": ["name", "version", "description", "main", "scripts", "author", "license", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "narwhal", "version" : "1.0.0", "description" : "node socket to socketio bridge", "main" : "index.js", "scripts" : {"test" : "echo \"Error: no test specified\" && exit 1"}, "author" : "Rodney Degracia", "license" : "MIT", "dependencies" : {"json-duplex-stream" : "^1.2.0", "node-static" : "^0.7.11", "socket.io" : "2.0.2", "uuid" : "3.3.2"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"json-duplex-stream": {"type": "string"}, "node-static": {"type": "string"}, "socket.io": {"type": "string"}, "uuid": {"type": "string"}}, "required": ["json-duplex-stream", "node-static", "socket.io", "uuid"]}}, "required": ["name", "version", "description", "main", "scripts", "author", "license", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "nama": {"type": "string"}}, "required": ["id", "nama"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"id" : "9108272001", "nama" : "Ukauwo"}, {"id" : "9108272002", "nama" : "Waipa"}, {"id" : "9108272003", "nama" : "Okago"}, {"id" : "9108272004", "nama" : "Totiyo"}, {"id" : "9108272005", "nama" : "Biyadide"}, {"id" : "9108272006", "nama" : "Pekege"}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "nama": {"type": "string"}}, "required": ["id", "nama"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"FileAPI.js": {"type": "string"}, "FileAPI.min.js": {"type": "string"}, "ng-file-upload-all.js": {"type": "string"}, "ng-file-upload-all.min.js": {"type": "string"}, "ng-file-upload-shim.js": {"type": "string"}, "ng-file-upload-shim.min.js": {"type": "string"}, "ng-file-upload.js": {"type": "string"}, "ng-file-upload.min.js": {"type": "string"}}, "required": ["FileAPI.js", "FileAPI.min.js", "ng-file-upload-all.js", "ng-file-upload-all.min.js", "ng-file-upload-shim.js", "ng-file-upload-shim.min.js", "ng-file-upload.js", "ng-file-upload.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"FileAPI.js" : "sha256-SaZj/AL6l/DWVMyHevsyGxlCh38HYumgZIqVEgsvN4U=", "FileAPI.min.js" : "sha256-E98swM88AEhXP5lVXueqVUyf9wYah80jbfQgmyVe8eA=", "ng-file-upload-all.js" : "sha256-GyR5+85tf8n4QRya5aNB5o8IQc3EDMj6V3Q42+BvLno=", "ng-file-upload-all.min.js" : "sha256-bbEYfRdIGWrRalIu6vIa3ZNMpbDA0TBh/4lstPdcTjs=", "ng-file-upload-shim.js" : "sha256-k+lFB4KKEQCzgFuBvrN7TRtZLU2UA/Sb6rW9WhG8xHc=", "ng-file-upload-shim.min.js" : "sha256-BCYKUNQSkGP9lcr/S7UaiB6Y0eZTqPKZ8Dng4oBx31c=", "ng-file-upload.js" : "sha256-RRexQj19SbmoLHb+eLX9ZSqBN+ZDKystJVlCwl9DlfM=", "ng-file-upload.min.js" : "sha256-x0NsxH+NIY9hTyzYux2EXN5xzU7fB4S/LRK2YdGBr1M="}
json_instruct
{"type": "object", "properties": {"FileAPI.js": {"type": "string"}, "FileAPI.min.js": {"type": "string"}, "ng-file-upload-all.js": {"type": "string"}, "ng-file-upload-all.min.js": {"type": "string"}, "ng-file-upload-shim.js": {"type": "string"}, "ng-file-upload-shim.min.js": {"type": "string"}, "ng-file-upload.js": {"type": "string"}, "ng-file-upload.min.js": {"type": "string"}}, "required": ["FileAPI.js", "FileAPI.min.js", "ng-file-upload-all.js", "ng-file-upload-all.min.js", "ng-file-upload-shim.js", "ng-file-upload-shim.min.js", "ng-file-upload.js", "ng-file-upload.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"viewportHeight": {"type": "integer"}, "viewportWidth": {"type": "integer"}, "integrationFolder": {"type": "string"}}, "required": ["viewportHeight", "viewportWidth", "integrationFolder"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"viewportHeight" : 700, "viewportWidth" : 763, "integrationFolder" : "cypress/tests"}
json_instruct
{"type": "object", "properties": {"viewportHeight": {"type": "integer"}, "viewportWidth": {"type": "integer"}, "integrationFolder": {"type": "string"}}, "required": ["viewportHeight", "viewportWidth", "integrationFolder"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"name": {"type": "string"}, "jobRole": {"type": "string"}, "company": {"type": "string"}, "headline": {"type": "string"}, "subheading": {"type": "string"}, "profileImage": {"type": "string"}}, "required": ["name", "jobRole", "company", "headline", "subheading", "profileImage"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "John Doe", "jobRole" : "CEO", "company" : "Apple", "headline" : "Our international traffic increased 200%", "subheading" : "Tom did an excellent job on improving sales via a new concept strategy.", "profileImage" : "./profile_1.png"}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "jobRole": {"type": "string"}, "company": {"type": "string"}, "headline": {"type": "string"}, "subheading": {"type": "string"}, "profileImage": {"type": "string"}}, "required": ["name", "jobRole", "company", "headline", "subheading", "profileImage"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"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" : "0x7641b2ca9ddd58addf6e3381c1f994aac5f1a32f", "tool" : "manticore", "start" : 1564638126.6165888, "end" : 1564638141.611059, "duration" : 14.994470119476318, "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#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"AppSettings": {"type": "object", "properties": {"Environment": {"type": "string"}, "PasswordSalt": {"type": "string"}, "Secret": {"type": "string"}}, "required": ["Environment", "PasswordSalt", "Secret"]}, "ConnectionStrings": {"type": "object", "properties": {"NpgsqlConnection": {"type": "string"}}, "required": ["NpgsqlConnection"]}, "Logging": {"type": "object", "properties": {"LogLevel": {"type": "object", "properties": {"Default": {"type": "string"}, "Microsoft": {"type": "string"}, "Microsoft.Hosting.Lifetime": {"type": "string"}}, "required": ["Default", "Microsoft", "Microsoft.Hosting.Lifetime"]}}, "required": ["LogLevel"]}, "Morpher": {"type": "object", "properties": {"Token": {"type": "string"}, "MorpherWebApiUrl": {"type": "string"}}, "required": ["Token", "MorpherWebApiUrl"]}, "AllowedHosts": {"type": "string"}}, "required": ["AppSettings", "ConnectionStrings", "Logging", "Morpher", "AllowedHosts"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"AppSettings" : {"Environment" : "Development", "PasswordSalt" : "TODO: SET GOOD SALT", "Secret" : "TODO:SET GOOD SECRET"}, "ConnectionStrings" : {"NpgsqlConnection" : "Server=localhost;Port=5432;Database=diplomadb;Username=postgres;Password=root"}, "Logging" : {"LogLevel" : {"Default" : "Information", "Microsoft" : "Warning", "Microsoft.Hosting.Lifetime" : "Information"}}, "Morpher" : {"Token" : "ADD_YOUR_TOKEN", "MorpherWebApiUrl" : "http://ws3.morpher.ru"}, "AllowedHosts" : "*"}
json_instruct
{"type": "object", "properties": {"AppSettings": {"type": "object", "properties": {"Environment": {"type": "string"}, "PasswordSalt": {"type": "string"}, "Secret": {"type": "string"}}, "required": ["Environment", "PasswordSalt", "Secret"]}, "ConnectionStrings": {"type": "object", "properties": {"NpgsqlConnection": {"type": "string"}}, "required": ["NpgsqlConnection"]}, "Logging": {"type": "object", "properties": {"LogLevel": {"type": "object", "properties": {"Default": {"type": "string"}, "Microsoft": {"type": "string"}, "Microsoft.Hosting.Lifetime": {"type": "string"}}, "required": ["Default", "Microsoft", "Microsoft.Hosting.Lifetime"]}}, "required": ["LogLevel"]}, "Morpher": {"type": "object", "properties": {"Token": {"type": "string"}, "MorpherWebApiUrl": {"type": "string"}}, "required": ["Token", "MorpherWebApiUrl"]}, "AllowedHosts": {"type": "string"}}, "required": ["AppSettings", "ConnectionStrings", "Logging", "Morpher", "AllowedHosts"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"version": {"type": "string"}, "description": {"type": "string"}, "homepage": {"type": "string"}, "license": {"type": "string"}, "url": {"type": "string"}, "bin": {"type": "string"}, "shortcuts": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}}, "required": ["version", "description", "homepage", "license", "url", "bin", "shortcuts"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"version" : "2.5.2", "description" : "A coffeebreak roguelike with a lot of stuff", "homepage" : "http://www.thegroundgivesway.com", "license" : "Custom", "url" : "http://www.thegroundgivesway.com/?ddownload=2900", "bin" : "The Ground Gives Way.exe", "shortcuts" : [["The Ground Gives Way.exe", "tggw"], ["reference.html", "The Ground Gives Way Reference"]]}
json_instruct
{"type": "object", "properties": {"version": {"type": "string"}, "description": {"type": "string"}, "homepage": {"type": "string"}, "license": {"type": "string"}, "url": {"type": "string"}, "bin": {"type": "string"}, "shortcuts": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}}, "required": ["version", "description", "homepage", "license", "url", "bin", "shortcuts"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"only": {"type": "array", "items": {"type": "string"}}, "include": {"type": "object", "properties": {"config_file": {"type": "object", "properties": {"format": {"type": "string"}}, "required": ["format"]}}, "required": ["config_file"]}}, "required": ["only", "include"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"only" : ["id", "text_body"], "include" : {"config_file" : {"format" : "mod_list"}}}
json_instruct
{"type": "object", "properties": {"only": {"type": "array", "items": {"type": "string"}}, "include": {"type": "object", "properties": {"config_file": {"type": "object", "properties": {"format": {"type": "string"}}, "required": ["format"]}}, "required": ["config_file"]}}, "required": ["only", "include"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"version": {"type": "string"}, "info": {"type": "object", "properties": {"plain": {"type": "string"}}, "required": ["plain"]}}, "required": ["version", "info"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"version" : "5.2.0-beta.22", "info" : {"plain" : "### Bug Fixes\n\n* Core: Fix HMR for CSF files ([#7669](https://github.com/storybookjs/storybook/pull/7669))\n\n### Maintenance\n\n* React: Cleanup CSF stories in cra-kitchen-sink ([#7670](https://github.com/storybookjs/storybook/pull/7670))"}}
json_instruct
{"type": "object", "properties": {"version": {"type": "string"}, "info": {"type": "object", "properties": {"plain": {"type": "string"}}, "required": ["plain"]}}, "required": ["version", "info"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"localities": {"type": "array", "items": {"type": "string"}}, "state": {"type": "string"}, "postal_code": {"type": "string"}, "locality": {"type": "string"}, "lat": {"type": "number"}, "region": {"type": "object", "properties": {"fips": {"type": "string"}, "abbr": {"type": "string"}, "name": {"type": "string"}}, "required": ["fips", "abbr", "name"]}, "city": {"type": "string"}, "type": {"type": "string"}, "lng": {"type": "number"}, "counties": {"type": "array", "items": {"type": "object", "properties": {"fips": {"type": "string"}, "name": {"type": "string"}}, "required": ["fips", "name"]}}}, "required": ["localities", "state", "postal_code", "locality", "lat", "region", "city", "type", "lng", "counties"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"localities" : ["Lockney, WV", "Letter Gap, WV", "Normantown, WV", "Stumptown, WV"], "state" : "WV", "postal_code" : "25267", "locality" : "Normantown, WV", "lat" : 38.833599, "region" : {"fips" : "54", "abbr" : "WV", "name" : "West Virginia"}, "city" : "Normantown", "type" : "STANDARD", "lng" : -80.940901, "counties" : [{"fips" : "021", "name" : "Gilmer County"}]}
json_instruct
{"type": "object", "properties": {"localities": {"type": "array", "items": {"type": "string"}}, "state": {"type": "string"}, "postal_code": {"type": "string"}, "locality": {"type": "string"}, "lat": {"type": "number"}, "region": {"type": "object", "properties": {"fips": {"type": "string"}, "abbr": {"type": "string"}, "name": {"type": "string"}}, "required": ["fips", "abbr", "name"]}, "city": {"type": "string"}, "type": {"type": "string"}, "lng": {"type": "number"}, "counties": {"type": "array", "items": {"type": "object", "properties": {"fips": {"type": "string"}, "name": {"type": "string"}}, "required": ["fips", "name"]}}}, "required": ["localities", "state", "postal_code", "locality", "lat", "region", "city", "type", "lng", "counties"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"last_check": {"type": "string"}, "pypi_version": {"type": "string"}}, "required": ["last_check", "pypi_version"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"last_check" : "2018-07-06T09:55:51Z", "pypi_version" : "10.0.1"}
json_instruct
{"type": "object", "properties": {"last_check": {"type": "string"}, "pypi_version": {"type": "string"}}, "required": ["last_check", "pypi_version"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "workspaces": {"type": "array", "items": {"type": "string"}}, "private": {"type": "boolean"}, "keywords": {"type": "array", "items": {}}, "author": {"type": "string"}, "license": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"lerna": {"type": "string"}, "vite": {"type": "string"}, "typescript": {"type": "string"}}, "required": ["lerna", "vite", "typescript"]}}, "required": ["name", "version", "description", "main", "scripts", "workspaces", "private", "keywords", "author", "license", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "monorepo-example", "version" : "1.0.0", "description" : "example", "main" : "index.js", "scripts" : {"test" : "echo \"Error: no test specified\" && exit 1"}, "workspaces" : ["packages/*"], "private" : true, "keywords" : [], "author" : "", "license" : "MIT", "devDependencies" : {"lerna" : "file://../node_modules/lerna", "vite" : "file://../node_modules/vite", "typescript" : "file://../node_modules/typescript"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "workspaces": {"type": "array", "items": {"type": "string"}}, "private": {"type": "boolean"}, "keywords": {"type": "array", "items": {}}, "author": {"type": "string"}, "license": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"lerna": {"type": "string"}, "vite": {"type": "string"}, "typescript": {"type": "string"}}, "required": ["lerna", "vite", "typescript"]}}, "required": ["name", "version", "description", "main", "scripts", "workspaces", "private", "keywords", "author", "license", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"type": {"type": "string"}, "features": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"label:cs": {"type": "string"}, "P31": {"type": "string"}, "P31^label:cs": {"type": "string"}, "P131^label:cs": {"type": "string"}, "P6736": {"type": "string"}}, "required": ["label:cs", "P31", "P31^label:cs", "P131^label:cs", "P6736"]}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "number"}}}, "required": ["type", "coordinates"]}}, "required": ["type", "properties", "geometry"]}}}, "required": ["type", "features"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"type" : "FeatureCollection", "features" : [{"type" : "Feature", "properties" : {"label:cs" : "K\u0159\u00ed\u017eek u cesty z Hradi\u0161t\u011b do Nov\u00e9 Byst\u0159ice", "P31" : "http://www.wikidata.org/entity/Q2309609", "P31^label:cs" : "Pam\u011btn\u00ed k\u0159\u00ed\u017e", "P131^label:cs" : "Nov\u00e1 Byst\u0159ice", "P6736" : "40718"}, "geometry" : {"type" : "Point", "coordinates" : [15.08292, 49.02784]}}, {"type" : "Feature", "properties" : {"label:cs" : "K\u0159\u00ed\u017e v Hradi\u0161ti", "P31" : "http://www.wikidata.org/entity/Q2309609", "P31^label:cs" : "Pam\u011btn\u00ed k\u0159\u00ed\u017e", "P131^label:cs" : "Nov\u00e1 Byst\u0159ice", "P6736" : "39654"}, "geometry" : {"type" : "Point", "coordinates" : [15.08, 49.03507]}}, {"type" : "Feature", "properties" : {"label:cs" : "Bo\u017e\u00ed muka ji\u017en\u011b v Hradi\u0161ti", "P31" : "http://www.wikidata.org/entity/Q3395121", "P31^label:cs" : "Bo\u017e\u00ed muka", "P131^label:cs" : "Nov\u00e1 Byst\u0159ice", "P6736" : "39653"}, "geometry" : {"type" : "Point", "coordinates" : [15.07928, 49.03293]}}]}
json_instruct
{"type": "object", "properties": {"type": {"type": "string"}, "features": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"label:cs": {"type": "string"}, "P31": {"type": "string"}, "P31^label:cs": {"type": "string"}, "P131^label:cs": {"type": "string"}, "P6736": {"type": "string"}}, "required": ["label:cs", "P31", "P31^label:cs", "P131^label:cs", "P6736"]}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "number"}}}, "required": ["type", "coordinates"]}}, "required": ["type", "properties", "geometry"]}}}, "required": ["type", "features"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"wire-plugin": {"type": "array", "items": {"type": "object", "properties": {"target": {"type": "string"}, "source": {"type": "string"}}, "required": ["target", "source"]}}}, "required": ["wire-plugin"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"wire-plugin" : [{"target" : "\\Spryker\\Zed\\Cms\\CmsDependencyProvider::getCmsPageDataExpanderPlugins", "source" : "\\Spryker\\Zed\\CmsContentWidget\\Communication\\Plugin\\CmsPageDataExpander\\CmsPageParameterMapExpanderPlugin"}, {"target" : "\\Spryker\\Zed\\CmsStorage\\CmsStorageDependencyProvider::getContentWidgetDataExpander", "source" : "\\Spryker\\Zed\\CmsContentWidget\\Communication\\Plugin\\CmsPageDataExpander\\CmsPageParameterMapExpanderPlugin"}]}
json_instruct
{"type": "object", "properties": {"wire-plugin": {"type": "array", "items": {"type": "object", "properties": {"target": {"type": "string"}, "source": {"type": "string"}}, "required": ["target", "source"]}}}, "required": ["wire-plugin"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"cast_type": {"type": "string"}, "cooldown": {"type": "integer"}, "cost": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "cost": {"type": "integer"}}, "required": ["name", "cost"]}}, "duration": {"type": "integer"}, "max_targets": {"type": "integer"}, "name": {"type": "string"}, "next_chain": {"type": "array", "items": {}}, "previous_chain": {"type": "array", "items": {}}, "range": {"type": "integer"}, "sources": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "data_type": {"type": "string"}}, "required": ["id", "data_type"]}}, "tags": {"type": "array", "items": {"type": "string"}}, "targeting": {"type": "string"}, "type": {"type": "string"}, "description": {"type": "string"}}, "required": ["cast_type", "cooldown", "cost", "duration", "max_targets", "name", "next_chain", "previous_chain", "range", "sources", "tags", "targeting", "type", "description"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"cast_type" : "instant", "cooldown" : 23, "cost" : [{"name" : "essence", "cost" : 57}], "duration" : 30, "max_targets" : 5, "name" : "Blight", "next_chain" : [], "previous_chain" : [], "range" : 10, "sources" : [{"id" : "druid", "data_type" : "class"}], "tags" : ["AoE", "Druid", "Electric"], "targeting" : "area", "type" : "debuff", "description" : "Deploy a field causing each Coalesce Life orb to explode catasrophically for 86 - 130 + 108% Weapon Damage while Coalesce Nature orbs explode for 90 to 136 + 113% Weapon Damage. Reduces Earth and Electric defenses by 20%."}
json_instruct
{"type": "object", "properties": {"cast_type": {"type": "string"}, "cooldown": {"type": "integer"}, "cost": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "cost": {"type": "integer"}}, "required": ["name", "cost"]}}, "duration": {"type": "integer"}, "max_targets": {"type": "integer"}, "name": {"type": "string"}, "next_chain": {"type": "array", "items": {}}, "previous_chain": {"type": "array", "items": {}}, "range": {"type": "integer"}, "sources": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "data_type": {"type": "string"}}, "required": ["id", "data_type"]}}, "tags": {"type": "array", "items": {"type": "string"}}, "targeting": {"type": "string"}, "type": {"type": "string"}, "description": {"type": "string"}}, "required": ["cast_type", "cooldown", "cost", "duration", "max_targets", "name", "next_chain", "previous_chain", "range", "sources", "tags", "targeting", "type", "description"], "$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": "null"}, "license": {"type": "object", "properties": {"key": {"type": "string"}, "name": {"type": "string"}, "spdx_id": {"type": "string"}, "url": {"type": "string"}}, "required": ["key", "name", "spdx_id", "url"]}, "starNum": {"type": "integer"}, "folkNum": {"type": "integer"}, "watchNum": {"type": "integer"}, "topic": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "description", "license", "starNum", "folkNum", "watchNum", "topic"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "geoviews", "description" : null, "license" : {"key" : "bsd-3-clause", "name" : "BSD 3-clause \"New\" or \"Revised\" License", "spdx_id" : "BSD-3-Clause", "url" : "https://api.github.com/licenses/bsd-3-clause"}, "starNum" : 133, "folkNum" : 20, "watchNum" : 133, "topic" : ["bokeh", "geospatial", "matplotlib", "pandas", "plotting", "visualization"]}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "null"}, "license": {"type": "object", "properties": {"key": {"type": "string"}, "name": {"type": "string"}, "spdx_id": {"type": "string"}, "url": {"type": "string"}}, "required": ["key", "name", "spdx_id", "url"]}, "starNum": {"type": "integer"}, "folkNum": {"type": "integer"}, "watchNum": {"type": "integer"}, "topic": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "description", "license", "starNum", "folkNum", "watchNum", "topic"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"assets/images/add_icon.png": {"type": "array", "items": {"type": "string"}}, "assets/images/back_arrow_icon.png": {"type": "array", "items": {"type": "string"}}, "assets/images/check_icon.png": {"type": "array", "items": {"type": "string"}}, "assets/images/delete_icon.png": {"type": "array", "items": {"type": "string"}}, "packages/cupertino_icons/assets/CupertinoIcons.ttf": {"type": "array", "items": {"type": "string"}}}, "required": ["assets/images/add_icon.png", "assets/images/back_arrow_icon.png", "assets/images/check_icon.png", "assets/images/delete_icon.png", "packages/cupertino_icons/assets/CupertinoIcons.ttf"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"assets/images/add_icon.png" : ["assets/images/add_icon.png"], "assets/images/back_arrow_icon.png" : ["assets/images/back_arrow_icon.png"], "assets/images/check_icon.png" : ["assets/images/check_icon.png"], "assets/images/delete_icon.png" : ["assets/images/delete_icon.png"], "packages/cupertino_icons/assets/CupertinoIcons.ttf" : ["packages/cupertino_icons/assets/CupertinoIcons.ttf"]}
json_instruct
{"type": "object", "properties": {"assets/images/add_icon.png": {"type": "array", "items": {"type": "string"}}, "assets/images/back_arrow_icon.png": {"type": "array", "items": {"type": "string"}}, "assets/images/check_icon.png": {"type": "array", "items": {"type": "string"}}, "assets/images/delete_icon.png": {"type": "array", "items": {"type": "string"}}, "packages/cupertino_icons/assets/CupertinoIcons.ttf": {"type": "array", "items": {"type": "string"}}}, "required": ["assets/images/add_icon.png", "assets/images/back_arrow_icon.png", "assets/images/check_icon.png", "assets/images/delete_icon.png", "packages/cupertino_icons/assets/CupertinoIcons.ttf"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"_": {"type": "string"}, "EnableDispatchLoop": {"type": "boolean"}, "PipelineConfigurations": {"type": "array", "items": {"type": "object", "properties": {"IsEnabled": {"type": "boolean"}, "PipelineAqtn": {"type": "string"}, "SourceConfiguration": {"type": "object", "properties": {"StageAqtn": {"type": "string"}, "StageSpecificConfiguration": {"type": "object", "properties": {"TextualFilePath": {"type": "string"}, "TextualConfiguration": {"type": "object", "properties": {"TextualHeaderFieldConfigurations": {"type": "array", "items": {}}}, "required": ["TextualHeaderFieldConfigurations"]}}, "required": ["TextualFilePath", "TextualConfiguration"]}}, "required": ["StageAqtn", "StageSpecificConfiguration"]}, "ProcessorConfigurations": {"type": "array", "items": {}}, "DestinationConfiguration": {"type": "object", "properties": {"StageAqtn": {"type": "string"}, "StageSpecificConfiguration": {"type": "object", "properties": {"TextualFilePath": {"type": "string"}, "TextualConfiguration": {"type": "object", "properties": {"TextualHeaderFieldConfigurations": {"type": "array", "items": {}}}, "required": ["TextualHeaderFieldConfigurations"]}}, "required": ["TextualFilePath", "TextualConfiguration"]}}, "required": ["StageAqtn", "StageSpecificConfiguration"]}}, "required": ["IsEnabled", "PipelineAqtn", "SourceConfiguration", "ProcessorConfigurations", "DestinationConfiguration"]}}}, "required": ["_", "EnableDispatchLoop", "PipelineConfigurations"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"_" : "_", "EnableDispatchLoop" : true, "PipelineConfigurations" : [{"IsEnabled" : true, "PipelineAqtn" : "SyncPrem.Pipeline.Core.Sync.Runtime.DefaultSyncPipeline, SyncPrem.Pipeline.Core.Sync", "SourceConfiguration" : {"StageAqtn" : "SyncPrem.Pipeline.Core.Sync.Connectors.LinedTextSourceConnector, SyncPrem.Pipeline.Core.Sync", "StageSpecificConfiguration" : {"TextualFilePath" : "d:\\SupplierData.csv", "TextualConfiguration" : {"TextualHeaderFieldConfigurations" : []}}}, "ProcessorConfigurations" : [], "DestinationConfiguration" : {"StageAqtn" : "SyncPrem.Pipeline.Core.Sync.Connectors.LinedTextDestinationConnector, SyncPrem.Pipeline.Core.Sync", "StageSpecificConfiguration" : {"TextualFilePath" : "d:\\test", "TextualConfiguration" : {"TextualHeaderFieldConfigurations" : []}}}}]}
json_instruct
{"type": "object", "properties": {"_": {"type": "string"}, "EnableDispatchLoop": {"type": "boolean"}, "PipelineConfigurations": {"type": "array", "items": {"type": "object", "properties": {"IsEnabled": {"type": "boolean"}, "PipelineAqtn": {"type": "string"}, "SourceConfiguration": {"type": "object", "properties": {"StageAqtn": {"type": "string"}, "StageSpecificConfiguration": {"type": "object", "properties": {"TextualFilePath": {"type": "string"}, "TextualConfiguration": {"type": "object", "properties": {"TextualHeaderFieldConfigurations": {"type": "array", "items": {}}}, "required": ["TextualHeaderFieldConfigurations"]}}, "required": ["TextualFilePath", "TextualConfiguration"]}}, "required": ["StageAqtn", "StageSpecificConfiguration"]}, "ProcessorConfigurations": {"type": "array", "items": {}}, "DestinationConfiguration": {"type": "object", "properties": {"StageAqtn": {"type": "string"}, "StageSpecificConfiguration": {"type": "object", "properties": {"TextualFilePath": {"type": "string"}, "TextualConfiguration": {"type": "object", "properties": {"TextualHeaderFieldConfigurations": {"type": "array", "items": {}}}, "required": ["TextualHeaderFieldConfigurations"]}}, "required": ["TextualFilePath", "TextualConfiguration"]}}, "required": ["StageAqtn", "StageSpecificConfiguration"]}}, "required": ["IsEnabled", "PipelineAqtn", "SourceConfiguration", "ProcessorConfigurations", "DestinationConfiguration"]}}}, "required": ["_", "EnableDispatchLoop", "PipelineConfigurations"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "author": {"type": "string"}, "main": {"type": "string"}, "module": {"type": "string"}, "types": {"type": "string"}, "license": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}, "directory": {"type": "string"}}, "required": ["type", "url", "directory"]}, "publishConfig": {"type": "object", "properties": {"access": {"type": "string"}}, "required": ["access"]}, "dependencies": {"type": "object", "properties": {"@paprika/button": {"type": "string"}, "@paprika/constants": {"type": "string"}, "@paprika/heading": {"type": "string"}, "@paprika/helpers": {"type": "string"}, "@paprika/overlay": {"type": "string"}, "@paprika/stylers": {"type": "string"}, "@paprika/tokens": {"type": "string"}, "prop-types": {"type": "string"}, "react-focus-lock": {"type": "string"}, "react-transition-group": {"type": "string"}}, "required": ["@paprika/button", "@paprika/constants", "@paprika/heading", "@paprika/helpers", "@paprika/overlay", "@paprika/stylers", "@paprika/tokens", "prop-types", "react-focus-lock", "react-transition-group"]}, "peerDependencies": {"type": "object", "properties": {"react": {"type": "string"}, "react-dom": {"type": "string"}, "styled-components": {"type": "string"}}, "required": ["react", "react-dom", "styled-components"]}, "gitHead": {"type": "string"}, "sideEffects": {"type": "boolean"}}, "required": ["name", "version", "description", "author", "main", "module", "types", "license", "repository", "publishConfig", "dependencies", "peerDependencies", "gitHead", "sideEffects"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "@paprika/modal", "version" : "1.0.15", "description" : "The Modal component provides additional information without losing context of the main interface.", "author" : "@paprika", "main" : "lib/index.js", "module" : "lib/esm/index.js", "types" : "lib/index.d.ts", "license" : "MIT", "repository" : {"type" : "git", "url" : "https://github.com/acl-services/paprika.git", "directory" : "packages/Modal"}, "publishConfig" : {"access" : "public"}, "dependencies" : {"@paprika/button" : "^1.1.4", "@paprika/constants" : "^1.0.0", "@paprika/heading" : "^1.0.8", "@paprika/helpers" : "^2.1.3", "@paprika/overlay" : "^1.0.8", "@paprika/stylers" : "^1.1.0", "@paprika/tokens" : "^1.0.0", "prop-types" : "^15.7.2", "react-focus-lock" : "^2.2.1", "react-transition-group" : "^4.3.0"}, "peerDependencies" : {"react" : "^16.12.0", "react-dom" : "^16.12.0", "styled-components" : "^4.4.1"}, "gitHead" : "8bff2e8a6f01708ba60d9178f867dba378806370", "sideEffects" : false}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "author": {"type": "string"}, "main": {"type": "string"}, "module": {"type": "string"}, "types": {"type": "string"}, "license": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}, "directory": {"type": "string"}}, "required": ["type", "url", "directory"]}, "publishConfig": {"type": "object", "properties": {"access": {"type": "string"}}, "required": ["access"]}, "dependencies": {"type": "object", "properties": {"@paprika/button": {"type": "string"}, "@paprika/constants": {"type": "string"}, "@paprika/heading": {"type": "string"}, "@paprika/helpers": {"type": "string"}, "@paprika/overlay": {"type": "string"}, "@paprika/stylers": {"type": "string"}, "@paprika/tokens": {"type": "string"}, "prop-types": {"type": "string"}, "react-focus-lock": {"type": "string"}, "react-transition-group": {"type": "string"}}, "required": ["@paprika/button", "@paprika/constants", "@paprika/heading", "@paprika/helpers", "@paprika/overlay", "@paprika/stylers", "@paprika/tokens", "prop-types", "react-focus-lock", "react-transition-group"]}, "peerDependencies": {"type": "object", "properties": {"react": {"type": "string"}, "react-dom": {"type": "string"}, "styled-components": {"type": "string"}}, "required": ["react", "react-dom", "styled-components"]}, "gitHead": {"type": "string"}, "sideEffects": {"type": "boolean"}}, "required": ["name", "version", "description", "author", "main", "module", "types", "license", "repository", "publishConfig", "dependencies", "peerDependencies", "gitHead", "sideEffects"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"diode_direction": {"type": "string"}, "width": {"type": "integer"}}, "required": ["diode_direction", "width"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"diode_direction" : "ROW2COL", "width" : 24}
json_instruct
{"type": "object", "properties": {"diode_direction": {"type": "string"}, "width": {"type": "integer"}}, "required": ["diode_direction", "width"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"pi": {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "port": {"type": "integer"}, "sensors": {"type": "object", "properties": {"temperature": {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "unit": {"type": "string"}, "value": {"type": "integer"}, "gpio": {"type": "integer"}}, "required": ["name", "description", "unit", "value", "gpio"]}, "humidity": {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "unit": {"type": "string"}, "value": {"type": "integer"}, "gpio": {"type": "integer"}}, "required": ["name", "description", "unit", "value", "gpio"]}}, "required": ["temperature", "humidity"]}}, "required": ["name", "description", "port", "sensors"]}}, "required": ["pi"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"pi" : {"name" : "WoT DHT sensor", "description" : "A simple dht sensor for WoT-connected Raspberry PI", "port" : 8485, "sensors" : {"temperature" : {"name" : "Temperature Sensor", "description" : "An ambient temperature sensor.", "unit" : "celsius", "value" : 0, "gpio" : 12}, "humidity" : {"name" : "Humidity Sensor", "description" : "An ambient humidity sensor.", "unit" : "%", "value" : 0, "gpio" : 12}}}}
json_instruct
{"type": "object", "properties": {"pi": {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "port": {"type": "integer"}, "sensors": {"type": "object", "properties": {"temperature": {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "unit": {"type": "string"}, "value": {"type": "integer"}, "gpio": {"type": "integer"}}, "required": ["name", "description", "unit", "value", "gpio"]}, "humidity": {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "unit": {"type": "string"}, "value": {"type": "integer"}, "gpio": {"type": "integer"}}, "required": ["name", "description", "unit", "value", "gpio"]}}, "required": ["temperature", "humidity"]}}, "required": ["name", "description", "port", "sensors"]}}, "required": ["pi"], "$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"}, "_tpl": {"type": "string"}, "parentId": {"type": "string"}, "slotId": {"type": "string"}}, "required": ["_id", "_tpl", "parentId", "slotId"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"_id" : "5de7c5f737ceb3257d3aa2b2", "_tpl" : "5d44064fa4b9361e4f6eb8b5", "parentId" : "5de7c5f737ceb3257d3aa2b1", "slotId" : "mod_muzzle"}
json_instruct
{"type": "object", "properties": {"_id": {"type": "string"}, "_tpl": {"type": "string"}, "parentId": {"type": "string"}, "slotId": {"type": "string"}}, "required": ["_id", "_tpl", "parentId", "slotId"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"version": {"type": "integer"}, "builds": {"type": "array", "items": {"type": "object", "properties": {"src": {"type": "string"}, "use": {"type": "string"}}, "required": ["src", "use"]}}, "routes": {"type": "array", "items": {"type": "object", "properties": {"src": {"type": "string"}, "dest": {"type": "string"}}, "required": ["src", "dest"]}}, "env": {"type": "object", "properties": {"NODE_ENV": {"type": "string"}, "PORT": {"type": "string"}, "DATABASE_URL_USER": {"type": "string"}, "API_KEY": {"type": "string"}}, "required": ["NODE_ENV", "PORT", "DATABASE_URL_USER", "API_KEY"]}}, "required": ["version", "builds", "routes", "env"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"version" : 2, "builds" : [{"src" : "dist/index.js", "use" : "@now/node-server"}], "routes" : [{"src" : "/.*", "dest" : "dist/index.js"}], "env" : {"NODE_ENV" : "production", "PORT" : "1337", "DATABASE_URL_USER" : "@visiona-api-db", "API_KEY" : "@visiona-api-key"}}
json_instruct
{"type": "object", "properties": {"version": {"type": "integer"}, "builds": {"type": "array", "items": {"type": "object", "properties": {"src": {"type": "string"}, "use": {"type": "string"}}, "required": ["src", "use"]}}, "routes": {"type": "array", "items": {"type": "object", "properties": {"src": {"type": "string"}, "dest": {"type": "string"}}, "required": ["src", "dest"]}}, "env": {"type": "object", "properties": {"NODE_ENV": {"type": "string"}, "PORT": {"type": "string"}, "DATABASE_URL_USER": {"type": "string"}, "API_KEY": {"type": "string"}}, "required": ["NODE_ENV", "PORT", "DATABASE_URL_USER", "API_KEY"]}}, "required": ["version", "builds", "routes", "env"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {"type": "integer"}}, "productReviews": {"type": "array", "items": {"type": "object", "properties": {"productId": {"type": "integer"}, "reviewText": {"type": "string"}, "reviewDate": {"type": "string"}}, "required": ["productId", "reviewText", "reviewDate"]}}}, "required": ["userId", "cartId", "preferredProducts", "productReviews"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"userId" : 45729, "cartId" : "dd106d56-4332-4efe-b926-7a1659ecf069", "preferredProducts" : [36, 4106, 4342, 625, 3417, 4753, 4044], "productReviews" : [{"productId" : 2953, "reviewText" : "this Buckinghamshire is ghetto.", "reviewDate" : "2017-03-01T12:28:59.7982379+02:00"}, {"productId" : 3184, "reviewText" : "This compressing works outstandingly well. It grudgingly improves my baseball by a lot.", "reviewDate" : "2020-04-20T03:28:50.6514035+03:00"}, {"productId" : 1694, "reviewText" : "heard about this on Kansas City jazz radio, decided to give it a try.", "reviewDate" : "2016-11-21T10:40:24.4867503+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": {"derivation": {"type": "string"}, "pron": {"type": "string"}, "outline": {"type": "string"}, "kjv_def": {"type": "string"}, "lemma": {"type": "string"}, "frequency": {"type": "integer"}, "strongs_def": {"type": "string"}, "xlit": {"type": "string"}}, "required": ["derivation", "pron", "outline", "kjv_def", "lemma", "frequency", "strongs_def", "xlit"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"derivation" : "from H1984 (\u05d4\u05b8\u05dc\u05b7\u05dc);", "pron" : "teh-hil-law'", "outline" : "<ol><li> praise, song or hymn of praise<ol><li> praise, adoration, thanksgiving (paid to God)</li><li> act of general or public praise</li><li> praise-song (as title)</li><li> praise (demanded by qualities or deeds or attributes of God)</li><li> renown, fame, glory<ol><li> of Damascus, God</li><li> object of praise, possessor of renown (fig)</li></ol></li></ol></li></ol>", "kjv_def" : "praise.", "lemma" : "\u05ea\u05bc\u05b0\u05d4\u05b4\u05dc\u05bc\u05b8\u05d4", "frequency" : 57, "strongs_def" : "laudation; specifically (concretely) a hymn", "xlit" : "t\u1d49hill\u00e2h"}
json_instruct
{"type": "object", "properties": {"derivation": {"type": "string"}, "pron": {"type": "string"}, "outline": {"type": "string"}, "kjv_def": {"type": "string"}, "lemma": {"type": "string"}, "frequency": {"type": "integer"}, "strongs_def": {"type": "string"}, "xlit": {"type": "string"}}, "required": ["derivation", "pron", "outline", "kjv_def", "lemma", "frequency", "strongs_def", "xlit"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"ExpandedNodes": {"type": "array", "items": {"type": "string"}}, "SelectedNode": {"type": "string"}, "PreviewInSolutionExplorer": {"type": "boolean"}}, "required": ["ExpandedNodes", "SelectedNode", "PreviewInSolutionExplorer"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"ExpandedNodes" : ["", "\\build", "\\build\\js", "\\docs", "\\src", "\\src\\js", "\\src\\nuget"], "SelectedNode" : "\\build", "PreviewInSolutionExplorer" : false}
json_instruct
{"type": "object", "properties": {"ExpandedNodes": {"type": "array", "items": {"type": "string"}}, "SelectedNode": {"type": "string"}, "PreviewInSolutionExplorer": {"type": "boolean"}}, "required": ["ExpandedNodes", "SelectedNode", "PreviewInSolutionExplorer"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"author": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "name"]}, "date": {"type": "object", "properties": {"day": {"type": "integer"}, "full": {"type": "integer"}, "month": {"type": "integer"}, "week": {"type": "integer"}}, "required": ["day", "full", "month", "week"]}, "id": {"type": "string"}, "misc": {"type": "object", "properties": {"postHint": {"type": "string"}}, "required": ["postHint"]}, "picture": {"type": "object", "properties": {"filesize": {"type": "integer"}, "fullUrl": {"type": "string"}, "hash": {"type": "string"}, "height": {"type": "integer"}, "lqip": {"type": "string"}, "thumbnailUrl": {"type": "string"}, "url": {"type": "string"}, "width": {"type": "integer"}}, "required": ["filesize", "fullUrl", "hash", "height", "lqip", "thumbnailUrl", "url", "width"]}, "score": {"type": "object", "properties": {"comments": {"type": "integer"}, "downs": {"type": "integer"}, "isCurated": {"type": "boolean"}, "ratio": {"type": "number"}, "ups": {"type": "integer"}, "value": {"type": "integer"}}, "required": ["comments", "downs", "isCurated", "ratio", "ups", "value"]}, "subreddit": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "name"]}, "tags": {"type": "array", "items": {"type": "string"}}, "title": {"type": "string"}, "url": {"type": "string"}}, "required": ["author", "date", "id", "misc", "picture", "score", "subreddit", "tags", "title", "url"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"author" : {"id" : "t2_fkss2", "name" : "PSanma"}, "date" : {"day" : 1539475200, "full" : 1539520124, "month" : 1538352000, "week" : 1539475200}, "id" : "t3_9o2cie", "misc" : {"postHint" : "image"}, "picture" : {"filesize" : 39594, "fullUrl" : "https://external-preview.redd.it/QJoCck56XqvWYjaiytQrp2q52CU988Po0KSMHxJL72U.jpg?auto=webp&s=2f2330aef853550365632b8fb15bafc203746e4d", "hash" : "bd3f9121a4", "height" : 436, "lqip" : "data:image/jpg;base64,/9j/2wBDAAYEBQYFBAYGBQYHBwYIChAKCgkJChQODwwQFxQYGBcUFhYaHSUfGhsjHBYWICwgIyYnKSopGR8tMC0oMCUoKSj/2wBDAQcHBwoIChMKChMoGhYaKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCj/wAARCAALABADASIAAhEBAxEB/8QAFwAAAwEAAAAAAAAAAAAAAAAAAwUGCP/EACIQAAIBAwMFAQAAAAAAAAAAAAECAwQRIQAFEhMxQVFxof/EABQBAQAAAAAAAAAAAAAAAAAAAAL/xAAYEQACAwAAAAAAAAAAAAAAAAAAAQIRIf/aAAwDAQACEQMRAD8Az0arahT0sFJA8z8lKcjaRWJOCbWOfXvRN3RZaY3YmZbsp6Fwc5B78fJ+6mIpHikV42KupuGByDplssrpFX8WItAzD7cZ/dBxrRqV4f/Z", "thumbnailUrl" : "https://b.thumbs.redditmedia.com/yuk8py0n_lxaZ0sgm2Jga7CowNjZWftTZUurHVzdMRI.jpg", "url" : "https://external-preview.redd.it/QJoCck56XqvWYjaiytQrp2q52CU988Po0KSMHxJL72U.jpg?width=640&crop=smart&auto=webp&s=791cd5fc2957c90dd7969cad11e5c1445dd49ab0", "width" : 640}, "score" : {"comments" : 3, "downs" : 0, "isCurated" : false, "ratio" : 0.8, "ups" : 12, "value" : 12}, "subreddit" : {"id" : "t5_3isai", "name" : "dndmaps"}, "tags" : ["Dungeon"], "title" : "6th Dungeon (94 x 64)", "url" : "https://www.reddit.com/r/dndmaps/comments/9o2cie/6th_dungeon_94_x_64/"}
json_instruct
{"type": "object", "properties": {"author": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "name"]}, "date": {"type": "object", "properties": {"day": {"type": "integer"}, "full": {"type": "integer"}, "month": {"type": "integer"}, "week": {"type": "integer"}}, "required": ["day", "full", "month", "week"]}, "id": {"type": "string"}, "misc": {"type": "object", "properties": {"postHint": {"type": "string"}}, "required": ["postHint"]}, "picture": {"type": "object", "properties": {"filesize": {"type": "integer"}, "fullUrl": {"type": "string"}, "hash": {"type": "string"}, "height": {"type": "integer"}, "lqip": {"type": "string"}, "thumbnailUrl": {"type": "string"}, "url": {"type": "string"}, "width": {"type": "integer"}}, "required": ["filesize", "fullUrl", "hash", "height", "lqip", "thumbnailUrl", "url", "width"]}, "score": {"type": "object", "properties": {"comments": {"type": "integer"}, "downs": {"type": "integer"}, "isCurated": {"type": "boolean"}, "ratio": {"type": "number"}, "ups": {"type": "integer"}, "value": {"type": "integer"}}, "required": ["comments", "downs", "isCurated", "ratio", "ups", "value"]}, "subreddit": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "name"]}, "tags": {"type": "array", "items": {"type": "string"}}, "title": {"type": "string"}, "url": {"type": "string"}}, "required": ["author", "date", "id", "misc", "picture", "score", "subreddit", "tags", "title", "url"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "object", "properties": {"en": {"type": "string"}}, "required": ["en"]}, "country": {"type": "string"}, "region": {"type": "string"}, "identifiers": {"type": "object", "properties": {"wmo": {"type": "string"}}, "required": ["wmo"]}, "location": {"type": "object", "properties": {"latitude": {"type": "number"}, "longitude": {"type": "number"}, "elevation": {"type": "integer"}}, "required": ["latitude", "longitude", "elevation"]}, "timezone": {"type": "string"}}, "required": ["id", "name", "country", "region", "identifiers", "location", "timezone"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : "60739", "name" : {"en" : "Kasserine"}, "country" : "TN", "region" : "KS", "identifiers" : {"wmo" : "60739"}, "location" : {"latitude" : 35.1667, "longitude" : 8.8333, "elevation" : 707}, "timezone" : "Africa/Tunis"}
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "object", "properties": {"en": {"type": "string"}}, "required": ["en"]}, "country": {"type": "string"}, "region": {"type": "string"}, "identifiers": {"type": "object", "properties": {"wmo": {"type": "string"}}, "required": ["wmo"]}, "location": {"type": "object", "properties": {"latitude": {"type": "number"}, "longitude": {"type": "number"}, "elevation": {"type": "integer"}}, "required": ["latitude", "longitude", "elevation"]}, "timezone": {"type": "string"}}, "required": ["id", "name", "country", "region", "identifiers", "location", "timezone"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "frequency": {"type": "integer"}, "males": {"type": "string"}, "females": {"type": "string"}}, "required": ["name", "frequency", "males", "females"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"name" : "JEFF", "frequency" : 127055, "males" : "99.79693833379245 %", "females" : "0.2030616662075479 %"}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "frequency": {"type": "integer"}, "males": {"type": "string"}, "females": {"type": "string"}}, "required": ["name", "frequency", "males", "females"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "text": {"type": "string"}}, "required": ["id", "text"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"id" : "350703201001", "text" : "\u4e66\u6797\u793e\u533a\u5c45\u59d4\u4f1a"}, {"id" : "350703201201", "text" : "\u4e66\u574a\u6751\u59d4\u4f1a"}, {"id" : "350703201202", "text" : "\u6c34\u5317\u6751\u59d4\u4f1a"}, {"id" : "350703201203", "text" : "\u9976\u575d\u6751\u59d4\u4f1a"}, {"id" : "350703201204", "text" : "\u94b1\u5858\u6751\u59d4\u4f1a"}, {"id" : "350703201205", "text" : "\u82b1\u56ed\u5cad\u6751\u59d4\u4f1a"}, {"id" : "350703201206", "text" : "\u8d35\u6eaa\u6751\u59d4\u4f1a"}, {"id" : "350703201207", "text" : "\u677e\u5751\u6751\u59d4\u4f1a"}, {"id" : "350703201208", "text" : "\u7f57\u5bb6\u5806\u6751\u59d4\u4f1a"}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "text": {"type": "string"}}, "required": ["id", "text"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"docs": {"type": "string"}, "github": {"type": "string"}}, "required": ["docs", "github"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"docs" : "docs", "github" : "yosiat/panko_serializer"}
json_instruct
{"type": "object", "properties": {"docs": {"type": "string"}, "github": {"type": "string"}}, "required": ["docs", "github"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"!name": {"type": "string"}, "transport": {"type": "object", "properties": {"!type": {"type": "string"}, "!doc": {"type": "string"}}, "required": ["!type", "!doc"]}}, "required": ["!name", "transport"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"!name" : "lesson", "transport" : {"!type" : "+SpaceCraft", "!doc" : "\u041e\u0431\u044a\u0435\u043a\u0442 \u0442\u0440\u0430\u043d\u0441\u043f\u043e\u0440\u0442\u043d\u043e\u0433\u043e \u043a\u043e\u0440\u0430\u0431\u043b\u044f."}}
json_instruct
{"type": "object", "properties": {"!name": {"type": "string"}, "transport": {"type": "object", "properties": {"!type": {"type": "string"}, "!doc": {"type": "string"}}, "required": ["!type", "!doc"]}}, "required": ["!name", "transport"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"generated_at": {"type": "string"}, "required_by": {"type": "array", "items": {"type": "string"}}, "requires": {"type": "array", "items": {"type": "string"}}, "package": {"type": "string"}}, "required": ["generated_at", "required_by", "requires", "package"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"generated_at" : "2017-01-27T09:37:34.904315", "required_by" : ["acr"], "requires" : ["tw.forms", "Genshi"], "package" : "tw.tinymce"}
json_instruct
{"type": "object", "properties": {"generated_at": {"type": "string"}, "required_by": {"type": "array", "items": {"type": "string"}}, "requires": {"type": "array", "items": {"type": "string"}}, "package": {"type": "string"}}, "required": ["generated_at", "required_by", "requires", "package"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"displayName": {"type": "string"}, "stability": {"type": "string"}, "description": {"type": "string"}, "api": {"type": "string"}, "keywords": {"type": "array", "items": {}}}, "required": ["displayName", "stability", "description", "api", "keywords"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"displayName" : "rxEnvironmentUrl", "stability" : "deprecated", "description" : "Builds a URL based on current environment.", "api" : "filter:rxEnvironmentUrl", "keywords" : []}
json_instruct
{"type": "object", "properties": {"displayName": {"type": "string"}, "stability": {"type": "string"}, "description": {"type": "string"}, "api": {"type": "string"}, "keywords": {"type": "array", "items": {}}}, "required": ["displayName", "stability", "description", "api", "keywords"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "base_rgb": {"type": "array", "items": {"type": "integer"}}, "cloth": {"type": "object", "properties": {"brightness": {"type": "integer"}, "contrast": {"type": "number"}, "hue": {"type": "integer"}, "saturation": {"type": "number"}, "lightness": {"type": "number"}, "rgb": {"type": "array", "items": {"type": "integer"}}}, "required": ["brightness", "contrast", "hue", "saturation", "lightness", "rgb"]}, "leather": {"type": "object", "properties": {"brightness": {"type": "integer"}, "contrast": {"type": "number"}, "hue": {"type": "integer"}, "saturation": {"type": "number"}, "lightness": {"type": "number"}, "rgb": {"type": "array", "items": {"type": "integer"}}}, "required": ["brightness", "contrast", "hue", "saturation", "lightness", "rgb"]}, "metal": {"type": "object", "properties": {"brightness": {"type": "integer"}, "contrast": {"type": "number"}, "hue": {"type": "integer"}, "saturation": {"type": "number"}, "lightness": {"type": "number"}, "rgb": {"type": "array", "items": {"type": "integer"}}}, "required": ["brightness", "contrast", "hue", "saturation", "lightness", "rgb"]}, "fur": {"type": "object", "properties": {"brightness": {"type": "integer"}, "contrast": {"type": "number"}, "hue": {"type": "integer"}, "saturation": {"type": "number"}, "lightness": {"type": "number"}, "rgb": {"type": "array", "items": {"type": "integer"}}}, "required": ["brightness", "contrast", "hue", "saturation", "lightness", "rgb"]}, "item": {"type": "integer"}, "categories": {"type": "array", "items": {"type": "string"}}}, "required": ["id", "name", "base_rgb", "cloth", "leather", "metal", "fur", "item", "categories"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : 446, "name" : "Whisper", "base_rgb" : [128, 26, 26], "cloth" : {"brightness" : 22, "contrast" : 1.25, "hue" : 0, "saturation" : 0.101562, "lightness" : 1.36719, "rgb" : [127, 114, 114]}, "leather" : {"brightness" : 25, "contrast" : 1.25, "hue" : 0, "saturation" : 0.101562, "lightness" : 1.36719, "rgb" : [135, 122, 122]}, "metal" : {"brightness" : 25, "contrast" : 1.25, "hue" : 0, "saturation" : 0.101562, "lightness" : 1.36719, "rgb" : [135, 122, 122]}, "fur" : {"brightness" : 22, "contrast" : 1.25, "hue" : 0, "saturation" : 0.101562, "lightness" : 1.36719, "rgb" : [127, 114, 114]}, "item" : 20532, "categories" : ["Purple", "Metal", "Uncommon"]}
json_instruct
{"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "base_rgb": {"type": "array", "items": {"type": "integer"}}, "cloth": {"type": "object", "properties": {"brightness": {"type": "integer"}, "contrast": {"type": "number"}, "hue": {"type": "integer"}, "saturation": {"type": "number"}, "lightness": {"type": "number"}, "rgb": {"type": "array", "items": {"type": "integer"}}}, "required": ["brightness", "contrast", "hue", "saturation", "lightness", "rgb"]}, "leather": {"type": "object", "properties": {"brightness": {"type": "integer"}, "contrast": {"type": "number"}, "hue": {"type": "integer"}, "saturation": {"type": "number"}, "lightness": {"type": "number"}, "rgb": {"type": "array", "items": {"type": "integer"}}}, "required": ["brightness", "contrast", "hue", "saturation", "lightness", "rgb"]}, "metal": {"type": "object", "properties": {"brightness": {"type": "integer"}, "contrast": {"type": "number"}, "hue": {"type": "integer"}, "saturation": {"type": "number"}, "lightness": {"type": "number"}, "rgb": {"type": "array", "items": {"type": "integer"}}}, "required": ["brightness", "contrast", "hue", "saturation", "lightness", "rgb"]}, "fur": {"type": "object", "properties": {"brightness": {"type": "integer"}, "contrast": {"type": "number"}, "hue": {"type": "integer"}, "saturation": {"type": "number"}, "lightness": {"type": "number"}, "rgb": {"type": "array", "items": {"type": "integer"}}}, "required": ["brightness", "contrast", "hue", "saturation", "lightness", "rgb"]}, "item": {"type": "integer"}, "categories": {"type": "array", "items": {"type": "string"}}}, "required": ["id", "name", "base_rgb", "cloth", "leather", "metal", "fur", "item", "categories"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"type": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["type", "coordinates"]}, "properties": {"type": "object", "properties": {"code": {"type": "integer"}, "url": {"type": "string"}, "view": {"type": "string"}}, "required": ["code", "url", "view"]}}, "required": ["type", "geometry", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"type" : "Feature", "geometry" : {"type" : "Polygon", "coordinates" : [[[143.125, 35.416666666666664], [143.125, 35.5], [143.25, 35.5], [143.25, 35.416666666666664], [143.125, 35.416666666666664]]]}, "properties" : {"code" : 534311, "url" : "http://madefor.github.io/0410/api/v1/534311.geojson", "view" : "https://github.com/madefor/0410/blob/gh-pages/api/v1/534311.geojson"}}
json_instruct
{"type": "object", "properties": {"type": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["type", "coordinates"]}, "properties": {"type": "object", "properties": {"code": {"type": "integer"}, "url": {"type": "string"}, "view": {"type": "string"}}, "required": ["code", "url", "view"]}}, "required": ["type", "geometry", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "license": {"type": "string"}, "require": {"type": "object", "properties": {"php": {"type": "string"}, "psr/http-message": {"type": "string"}, "relay/relay": {"type": "string"}, "relay/middleware": {"type": "string"}, "zendframework/zend-diactoros": {"type": "string"}, "bear/sunday": {"type": "string"}, "doctrine/annotations": {"type": "string"}, "bear/app-meta": {"type": "string"}, "bear/package": {"type": "string"}}, "required": ["php", "psr/http-message", "relay/relay", "relay/middleware", "zendframework/zend-diactoros", "bear/sunday", "doctrine/annotations", "bear/app-meta", "bear/package"]}, "require-dev": {"type": "object", "properties": {"phpunit/phpunit": {"type": "string"}, "friendsofphp/php-cs-fixer": {"type": "string"}}, "required": ["phpunit/phpunit", "friendsofphp/php-cs-fixer"]}, "autoload": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"BEAR\\Middleware\\": {"type": "string"}}, "required": ["BEAR\\Middleware\\"]}, "exclude-from-classmap": {"type": "array", "items": {"type": "string"}}}, "required": ["psr-4", "exclude-from-classmap"]}, "autoload-dev": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"BEAR\\Middleware\\": {"type": "array", "items": {"type": "string"}}}, "required": ["BEAR\\Middleware\\"]}}, "required": ["psr-4"]}}, "required": ["name", "description", "keywords", "license", "require", "require-dev", "autoload", "autoload-dev"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "bear/middleware", "description" : "PSR-7 BEAR.Sunday middleware", "keywords" : ["PSR7", "Relay", "BEAR.Sunday"], "license" : "MIT", "require" : {"php" : ">=7.2.0", "psr/http-message" : "~1.0", "relay/relay" : "^1.1", "relay/middleware" : "~1.0", "zendframework/zend-diactoros" : "~1.0", "bear/sunday" : "^1.4", "doctrine/annotations" : "^1.7", "bear/app-meta" : "~1.0", "bear/package" : "^1.9"}, "require-dev" : {"phpunit/phpunit" : "^8.5", "friendsofphp/php-cs-fixer" : "^2.0"}, "autoload" : {"psr-4" : {"BEAR\\Middleware\\" : "src/"}, "exclude-from-classmap" : ["/tests/"]}, "autoload-dev" : {"psr-4" : {"BEAR\\Middleware\\" : ["tests/", "tests/Fake"]}}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "license": {"type": "string"}, "require": {"type": "object", "properties": {"php": {"type": "string"}, "psr/http-message": {"type": "string"}, "relay/relay": {"type": "string"}, "relay/middleware": {"type": "string"}, "zendframework/zend-diactoros": {"type": "string"}, "bear/sunday": {"type": "string"}, "doctrine/annotations": {"type": "string"}, "bear/app-meta": {"type": "string"}, "bear/package": {"type": "string"}}, "required": ["php", "psr/http-message", "relay/relay", "relay/middleware", "zendframework/zend-diactoros", "bear/sunday", "doctrine/annotations", "bear/app-meta", "bear/package"]}, "require-dev": {"type": "object", "properties": {"phpunit/phpunit": {"type": "string"}, "friendsofphp/php-cs-fixer": {"type": "string"}}, "required": ["phpunit/phpunit", "friendsofphp/php-cs-fixer"]}, "autoload": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"BEAR\\Middleware\\": {"type": "string"}}, "required": ["BEAR\\Middleware\\"]}, "exclude-from-classmap": {"type": "array", "items": {"type": "string"}}}, "required": ["psr-4", "exclude-from-classmap"]}, "autoload-dev": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"BEAR\\Middleware\\": {"type": "array", "items": {"type": "string"}}}, "required": ["BEAR\\Middleware\\"]}}, "required": ["psr-4"]}}, "required": ["name", "description", "keywords", "license", "require", "require-dev", "autoload", "autoload-dev"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"moniker": {"type": "string"}, "valopr_address": {"type": "string"}, "addedPeer": {"type": "string"}}, "required": ["moniker", "valopr_address", "addedPeer"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"moniker" : "kiryosha", "valopr_address" : "cohovaloper1nl2v07ysxtv057d7hvcp09u4v9afchyttdcae8", "addedPeer" : "c2690c54835d39ba83c029bafb09c4a77b81d53c@195.201.27.52:26656"}
json_instruct
{"type": "object", "properties": {"moniker": {"type": "string"}, "valopr_address": {"type": "string"}, "addedPeer": {"type": "string"}}, "required": ["moniker", "valopr_address", "addedPeer"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "size": {"type": "integer"}, "link": {"type": "string"}, "created_at": {"type": "string"}, "downloads": {"type": "integer"}, "linkid": {"type": "string"}, "convert": {"type": "string"}, "achorname": {"type": "string"}, "subscribe": {"type": "string"}, "avatar-img": {"type": "string"}, "folderName": {"type": "string"}, "thumbUrl": {"type": "string"}}, "required": ["name", "size", "link", "created_at", "downloads", "linkid", "convert", "achorname", "subscribe", "avatar-img", "folderName", "thumbUrl"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"name" : "pfes-037", "size" : 1106912296, "link" : "https://streamtape.com/e/qOjYDpxRAOCz9zX", "created_at" : "2022\u5e7404\u670813\u65e5 03:02:22", "downloads" : 0, "linkid" : "qOjYDpxRAOCz9zX", "convert" : "converted", "achorname" : "\u4e38\u5b50\u5466", "subscribe" : "0\u4f4d\u8ba2\u9605\u8005", "avatar-img" : "https://huyaimg.msstatic.com/avatar/1022/07/ec5fef7c7662720286fbbb12395390_180_135.jpg?1628178596?458648", "folderName" : "PFES-037 \u226a\u304a\u307e\u25cf\u3053\u30c0\u30e0\u6c7a\u58ca\u5bf8\u524d\uff01\uff1f\u226b \u304a\u3057\u3063\u3053\uff06\u6f6e\u6211\u6162\u3067\u304d\u305f\u3089\u304a\u5c0f\u9063\u3044\uff01\u6211\u6162\u3067\u304d\u306a\u304b\u3063\u305f\u3089\u30ca\u30de\u4e2d\u51fa\u3057\uff01 \u3081\u3063\u3061\u3083\u91d1\u6b20\u3060\u3051\u3069\u5f7c\u6c0f\u306e\u8a95\u30d7\u30ec\u8cb7\u3044\u305f\u3044\u65e9\u6f0f\u5de8\u4e73\u30ae\u30e3\u30eb\u3092\u304a\u3057\u3063\u3053\u6211\u6162\u30c7\u30fc\u30c8\u3067\u9023\u308c\u56de\u3059 \u3042\u308a\u3059 \u8056\u83dc\u4e9e\u91cc\u6c99", "thumbUrl" : "https://assets-cdn.jable.tv/contents/videos_screenshots/22000/22974/320x180/1.jpg"}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "size": {"type": "integer"}, "link": {"type": "string"}, "created_at": {"type": "string"}, "downloads": {"type": "integer"}, "linkid": {"type": "string"}, "convert": {"type": "string"}, "achorname": {"type": "string"}, "subscribe": {"type": "string"}, "avatar-img": {"type": "string"}, "folderName": {"type": "string"}, "thumbUrl": {"type": "string"}}, "required": ["name", "size", "link", "created_at", "downloads", "linkid", "convert", "achorname", "subscribe", "avatar-img", "folderName", "thumbUrl"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"graphene/types/tests/test_datetime.py::test_date_query": {"type": "array", "items": {"type": "integer"}}, "graphene/types/tests/test_datetime.py::test_time_query": {"type": "array", "items": {"type": "integer"}}, "graphene/types/tests/test_datetime.py::test_datetime_query_variable": {"type": "array", "items": {"type": "integer"}}, "graphene/types/tests/test_datetime.py::test_date_query_variable": {"type": "array", "items": {"type": "integer"}}, "graphene/types/tests/test_datetime.py::test_time_query_variable": {"type": "array", "items": {"type": "integer"}}, "graphene/types/tests/test_datetime.py::test_bad_variables": {"type": "array", "items": {"type": "integer"}}}, "required": ["graphene/types/tests/test_datetime.py::test_date_query", "graphene/types/tests/test_datetime.py::test_time_query", "graphene/types/tests/test_datetime.py::test_datetime_query_variable", "graphene/types/tests/test_datetime.py::test_date_query_variable", "graphene/types/tests/test_datetime.py::test_time_query_variable", "graphene/types/tests/test_datetime.py::test_bad_variables"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"graphene/types/tests/test_datetime.py::test_date_query" : [0, 8], "graphene/types/tests/test_datetime.py::test_time_query" : [1, 8], "graphene/types/tests/test_datetime.py::test_datetime_query_variable" : [0, 8], "graphene/types/tests/test_datetime.py::test_date_query_variable" : [0, 8], "graphene/types/tests/test_datetime.py::test_time_query_variable" : [0, 8], "graphene/types/tests/test_datetime.py::test_bad_variables" : [0, 0]}
json_instruct
{"type": "object", "properties": {"graphene/types/tests/test_datetime.py::test_date_query": {"type": "array", "items": {"type": "integer"}}, "graphene/types/tests/test_datetime.py::test_time_query": {"type": "array", "items": {"type": "integer"}}, "graphene/types/tests/test_datetime.py::test_datetime_query_variable": {"type": "array", "items": {"type": "integer"}}, "graphene/types/tests/test_datetime.py::test_date_query_variable": {"type": "array", "items": {"type": "integer"}}, "graphene/types/tests/test_datetime.py::test_time_query_variable": {"type": "array", "items": {"type": "integer"}}, "graphene/types/tests/test_datetime.py::test_bad_variables": {"type": "array", "items": {"type": "integer"}}}, "required": ["graphene/types/tests/test_datetime.py::test_date_query", "graphene/types/tests/test_datetime.py::test_time_query", "graphene/types/tests/test_datetime.py::test_datetime_query_variable", "graphene/types/tests/test_datetime.py::test_date_query_variable", "graphene/types/tests/test_datetime.py::test_time_query_variable", "graphene/types/tests/test_datetime.py::test_bad_variables"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"id": {"type": "integer"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"src:alt_label": {"type": "string"}, "src:geom": {"type": "string"}, "wof:geomhash": {"type": "string"}, "wof:id": {"type": "integer"}, "wof:repo": {"type": "string"}}, "required": ["src:alt_label", "src:geom", "wof:geomhash", "wof:id", "wof:repo"]}, "bbox": {"type": "array", "items": {"type": "number"}}, "geometry": {"type": "object", "properties": {"coordinates": {"type": "array", "items": {"type": "number"}}, "type": {"type": "string"}}, "required": ["coordinates", "type"]}}, "required": ["id", "type", "properties", "bbox", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : 85927385, "type" : "Feature", "properties" : {"src:alt_label" : "quattroshapes_pg", "src:geom" : "quattroshapes_pg", "wof:geomhash" : "3030001db0b3ba96c2f5c6103024a516", "wof:id" : 85927385, "wof:repo" : "whosonfirst-data-admin-kr"}, "bbox" : [126.770725, 37.4412, 126.770725, 37.4412], "geometry" : {"coordinates" : [126.770725, 37.4412], "type" : "Point"}}
json_instruct
{"type": "object", "properties": {"id": {"type": "integer"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"src:alt_label": {"type": "string"}, "src:geom": {"type": "string"}, "wof:geomhash": {"type": "string"}, "wof:id": {"type": "integer"}, "wof:repo": {"type": "string"}}, "required": ["src:alt_label", "src:geom", "wof:geomhash", "wof:id", "wof:repo"]}, "bbox": {"type": "array", "items": {"type": "number"}}, "geometry": {"type": "object", "properties": {"coordinates": {"type": "array", "items": {"type": "number"}}, "type": {"type": "string"}}, "required": ["coordinates", "type"]}}, "required": ["id", "type", "properties", "bbox", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "array", "items": {"type": "object", "properties": {"Time": {"type": "integer"}, "Contents": {"type": "array", "items": {"type": "object", "properties": {"Key": {"type": "string"}, "Value": {"type": "string"}}, "required": ["Key", "Value"]}}}, "required": ["Time", "Contents"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"Time" : 123456, "Contents" : [{"Key" : "__name__", "Value" : "i_am_singleValue_metric"}, {"Key" : "__time_nano__", "Value" : "123456789"}, {"Key" : "__labels__", "Value" : "Hahaha#$#test|a#$#aaa|ip#$#1.2.3.4|service#$#service_111|serviceInstance#$#instance_222"}, {"Key" : "__value__", "Value" : "123"}]}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"Time": {"type": "integer"}, "Contents": {"type": "array", "items": {"type": "object", "properties": {"Key": {"type": "string"}, "Value": {"type": "string"}}, "required": ["Key", "Value"]}}}, "required": ["Time", "Contents"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"DocumentId": {"type": "string"}, "StreetName": {"type": "string"}, "Longitude": {"type": "string"}, "Latitude": {"type": "string"}, "City": {"type": "string"}, "Postcode": {"type": "string"}, "State": {"type": "string"}, "Phone": {"type": "string"}, "BusinessName": {"type": "string"}, "FileType": {"type": "string"}, "Department": {"type": "string"}, "Email": {"type": "string"}, "Price": {"type": "number"}, "Ratings": {"type": "number"}, "MarkerId": {"type": "string"}}, "required": ["DocumentId", "StreetName", "Longitude", "Latitude", "City", "Postcode", "State", "Phone", "BusinessName", "FileType", "Department", "Email", "Price", "Ratings", "MarkerId"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"DocumentId" : "http://Hilll-Wilderman.com", "StreetName" : "Cypress Street", "Longitude" : "152.73722508", "Latitude" : "-27.658095960000001", "City" : "Yamanto", "Postcode" : "4305", "State" : "Queensland", "Phone" : "+372 439 315 5285", "BusinessName" : "Hilll-Wilderman", "FileType" : ".txt", "Department" : "Jewelery", "Email" : "info@Hilll-Wilderman.com", "Price" : 1041800.46, "Ratings" : 2.1, "MarkerId" : "7612xg550f3ih7"}
json_instruct
{"type": "object", "properties": {"DocumentId": {"type": "string"}, "StreetName": {"type": "string"}, "Longitude": {"type": "string"}, "Latitude": {"type": "string"}, "City": {"type": "string"}, "Postcode": {"type": "string"}, "State": {"type": "string"}, "Phone": {"type": "string"}, "BusinessName": {"type": "string"}, "FileType": {"type": "string"}, "Department": {"type": "string"}, "Email": {"type": "string"}, "Price": {"type": "number"}, "Ratings": {"type": "number"}, "MarkerId": {"type": "string"}}, "required": ["DocumentId", "StreetName", "Longitude", "Latitude", "City", "Postcode", "State", "Phone", "BusinessName", "FileType", "Department", "Email", "Price", "Ratings", "MarkerId"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"Typ": {"type": "string"}, "Val": {"type": "string"}, "Err": {"type": "null"}}, "required": ["Typ", "Val", "Err"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"Typ" : "WyJvYmplY3QiLHsiY2lkcl9ibG9ja3MiOlsibGlzdCIsInN0cmluZyJdLCJkZXNjcmlwdGlvbiI6InN0cmluZyIsImZyb21fcG9ydCI6Im51bWJlciIsImlkIjoic3RyaW5nIiwiaXB2Nl9jaWRyX2Jsb2NrcyI6WyJsaXN0Iiwic3RyaW5nIl0sInByZWZpeF9saXN0X2lkcyI6WyJsaXN0Iiwic3RyaW5nIl0sInByb3RvY29sIjoic3RyaW5nIiwic2VjdXJpdHlfZ3JvdXBfaWQiOiJzdHJpbmciLCJzZWxmIjoiYm9vbCIsInNvdXJjZV9zZWN1cml0eV9ncm91cF9pZCI6InN0cmluZyIsInRvX3BvcnQiOiJudW1iZXIiLCJ0eXBlIjoic3RyaW5nIn1d", "Val" : "eyJjaWRyX2Jsb2NrcyI6W10sImRlc2NyaXB0aW9uIjoiRm9vIDIiLCJmcm9tX3BvcnQiOjAsImlkIjoic2dydWxlLTY3NDgwMDIyOCIsImlwdjZfY2lkcl9ibG9ja3MiOlsiOjovMCJdLCJwcmVmaXhfbGlzdF9pZHMiOltdLCJwcm90b2NvbCI6Ii0xIiwic2VjdXJpdHlfZ3JvdXBfaWQiOiJzZy0wMjU0YzAzOGUzMmYyNTUzMCIsInNlbGYiOmZhbHNlLCJzb3VyY2Vfc2VjdXJpdHlfZ3JvdXBfaWQiOiIiLCJ0b19wb3J0IjowLCJ0eXBlIjoiaW5ncmVzcyJ9", "Err" : null}
json_instruct
{"type": "object", "properties": {"Typ": {"type": "string"}, "Val": {"type": "string"}, "Err": {"type": "null"}}, "required": ["Typ", "Val", "Err"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"appid": {"type": "integer"}, "name": {"type": "string"}, "windows": {"type": "boolean"}, "mac": {"type": "boolean"}, "linux": {"type": "boolean"}, "early_access": {"type": "boolean"}, "lookup_time": {"type": "integer"}}, "required": ["appid", "name", "windows", "mac", "linux", "early_access", "lookup_time"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"appid" : 476450, "name" : "So Much Blood", "windows" : true, "mac" : false, "linux" : false, "early_access" : false, "lookup_time" : 1490995618}
json_instruct
{"type": "object", "properties": {"appid": {"type": "integer"}, "name": {"type": "string"}, "windows": {"type": "boolean"}, "mac": {"type": "boolean"}, "linux": {"type": "boolean"}, "early_access": {"type": "boolean"}, "lookup_time": {"type": "integer"}}, "required": ["appid", "name", "windows", "mac", "linux", "early_access", "lookup_time"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"HostConfigHash": {"type": "string"}, "CardHash": {"type": "string"}, "Error": {"type": "null"}}, "required": ["HostConfigHash", "CardHash", "Error"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"HostConfigHash" : "2a972a2", "CardHash" : "12b3e86", "Error" : null}
json_instruct
{"type": "object", "properties": {"HostConfigHash": {"type": "string"}, "CardHash": {"type": "string"}, "Error": {"type": "null"}}, "required": ["HostConfigHash", "CardHash", "Error"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"code": {"type": "integer"}, "parent": {"type": "integer"}, "name": {"type": "string"}, "latitude": {"type": "null"}, "longitude": {"type": "null"}, "postal": {"type": "array", "items": {"type": "integer"}}, "children": {"type": "array", "items": {}}}, "required": ["code", "parent", "name", "latitude", "longitude", "postal", "children"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"code" : 1702042010, "parent" : 1702042, "name" : "SAMBIREJO", "latitude" : null, "longitude" : null, "postal" : [39153], "children" : []}
json_instruct
{"type": "object", "properties": {"code": {"type": "integer"}, "parent": {"type": "integer"}, "name": {"type": "string"}, "latitude": {"type": "null"}, "longitude": {"type": "null"}, "postal": {"type": "array", "items": {"type": "integer"}}, "children": {"type": "array", "items": {}}}, "required": ["code", "parent", "name", "latitude", "longitude", "postal", "children"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"no": {"type": "string"}, "name": {"type": "string"}, "type": {"type": "array", "items": {"type": "string"}}, "classification": {"type": "string"}, "tribeValue": {"type": "array", "items": {"type": "string"}}, "height": {"type": "string"}, "weight": {"type": "string"}}, "required": ["no", "name", "type", "classification", "tribeValue", "height", "weight"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"no" : "389", "name" : "\u30c9\u30c0\u30a4\u30c8\u30b9", "type" : ["\u304f\u3055", "\u3058\u3081\u3093"], "classification" : "\u305f\u3044\u308a\u304f\u30dd\u30b1\u30e2\u30f3", "tribeValue" : ["95", "109", "105", "75", "85", "56"], "height" : "2.2", "weight" : "310.0"}
json_instruct
{"type": "object", "properties": {"no": {"type": "string"}, "name": {"type": "string"}, "type": {"type": "array", "items": {"type": "string"}}, "classification": {"type": "string"}, "tribeValue": {"type": "array", "items": {"type": "string"}}, "height": {"type": "string"}, "weight": {"type": "string"}}, "required": ["no", "name", "type", "classification", "tribeValue", "height", "weight"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"version": {"type": "number"}, "people": {"type": "array", "items": {"type": "object", "properties": {"pose_keypoints_2d": {"type": "array", "items": {"type": "number"}}, "face_keypoints_2d": {"type": "array", "items": {}}, "hand_left_keypoints_2d": {"type": "array", "items": {}}, "hand_right_keypoints_2d": {"type": "array", "items": {}}, "pose_keypoints_3d": {"type": "array", "items": {}}, "face_keypoints_3d": {"type": "array", "items": {}}, "hand_left_keypoints_3d": {"type": "array", "items": {}}, "hand_right_keypoints_3d": {"type": "array", "items": {}}}, "required": ["pose_keypoints_2d", "face_keypoints_2d", "hand_left_keypoints_2d", "hand_right_keypoints_2d", "pose_keypoints_3d", "face_keypoints_3d", "hand_left_keypoints_3d", "hand_right_keypoints_3d"]}}}, "required": ["version", "people"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"version" : 1.2, "people" : [{"pose_keypoints_2d" : [355.08, 194.478, 0.936062, 349.241, 245.419, 0.894732, 304.182, 249.329, 0.827351, 290.505, 329.624, 0.760359, 290.532, 384.581, 0.869212, 390.385, 243.428, 0.872197, 415.906, 306.129, 0.846837, 431.606, 368.865, 0.86151, 360.95, 384.533, 0.760811, 331.59, 388.419, 0.735935, 319.909, 490.243, 0.846118, 317.85, 584.271, 0.810526, 390.389, 382.552, 0.748382, 431.603, 470.715, 0.811041, 447.198, 558.918, 0.782783, 349.156, 182.779, 0.874667, 366.771, 182.775, 0.893074, 331.593, 192.497, 0.860975, 372.718, 190.514, 0.526117, 449.138, 586.217, 0.616523, 462.818, 582.338, 0.682088, 445.219, 570.574, 0.606104, 308.128, 611.782, 0.780546, 296.331, 604.003, 0.810773, 321.77, 588.284, 0.768964], "face_keypoints_2d" : [], "hand_left_keypoints_2d" : [], "hand_right_keypoints_2d" : [], "pose_keypoints_3d" : [], "face_keypoints_3d" : [], "hand_left_keypoints_3d" : [], "hand_right_keypoints_3d" : []}]}
json_instruct
{"type": "object", "properties": {"version": {"type": "number"}, "people": {"type": "array", "items": {"type": "object", "properties": {"pose_keypoints_2d": {"type": "array", "items": {"type": "number"}}, "face_keypoints_2d": {"type": "array", "items": {}}, "hand_left_keypoints_2d": {"type": "array", "items": {}}, "hand_right_keypoints_2d": {"type": "array", "items": {}}, "pose_keypoints_3d": {"type": "array", "items": {}}, "face_keypoints_3d": {"type": "array", "items": {}}, "hand_left_keypoints_3d": {"type": "array", "items": {}}, "hand_right_keypoints_3d": {"type": "array", "items": {}}}, "required": ["pose_keypoints_2d", "face_keypoints_2d", "hand_left_keypoints_2d", "hand_right_keypoints_2d", "pose_keypoints_3d", "face_keypoints_3d", "hand_left_keypoints_3d", "hand_right_keypoints_3d"]}}}, "required": ["version", "people"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"project_info": {"type": "object", "properties": {"project_number": {"type": "string"}, "firebase_url": {"type": "string"}, "project_id": {"type": "string"}, "storage_bucket": {"type": "string"}}, "required": ["project_number", "firebase_url", "project_id", "storage_bucket"]}, "client": {"type": "array", "items": {"type": "object", "properties": {"client_info": {"type": "object", "properties": {"mobilesdk_app_id": {"type": "string"}, "android_client_info": {"type": "object", "properties": {"package_name": {"type": "string"}}, "required": ["package_name"]}}, "required": ["mobilesdk_app_id", "android_client_info"]}, "oauth_client": {"type": "array", "items": {"type": "object", "properties": {"client_id": {"type": "string"}, "client_type": {"type": "integer"}}, "required": ["client_id", "client_type"]}}, "api_key": {"type": "array", "items": {"type": "object", "properties": {"current_key": {"type": "string"}}, "required": ["current_key"]}}, "services": {"type": "object", "properties": {"analytics_service": {"type": "object", "properties": {"status": {"type": "integer"}}, "required": ["status"]}, "appinvite_service": {"type": "object", "properties": {"status": {"type": "integer"}, "other_platform_oauth_client": {"type": "array", "items": {}}}, "required": ["status", "other_platform_oauth_client"]}, "ads_service": {"type": "object", "properties": {"status": {"type": "integer"}}, "required": ["status"]}}, "required": ["analytics_service", "appinvite_service", "ads_service"]}}, "required": ["client_info", "oauth_client", "api_key", "services"]}}, "configuration_version": {"type": "string"}}, "required": ["project_info", "client", "configuration_version"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"project_info" : {"project_number" : "407273314132", "firebase_url" : "https://tec-telnor.firebaseio.com", "project_id" : "tec-telnor", "storage_bucket" : "tec-telnor.appspot.com"}, "client" : [{"client_info" : {"mobilesdk_app_id" : "1:407273314132:android:67b6a52545a409f2", "android_client_info" : {"package_name" : "com.telnor.telnortecapp"}}, "oauth_client" : [{"client_id" : "407273314132-6cobsvhpvl765nuior4nc24ai073lulk.apps.googleusercontent.com", "client_type" : 3}], "api_key" : [{"current_key" : ""}], "services" : {"analytics_service" : {"status" : 1}, "appinvite_service" : {"status" : 1, "other_platform_oauth_client" : []}, "ads_service" : {"status" : 2}}}], "configuration_version" : "1"}
json_instruct
{"type": "object", "properties": {"project_info": {"type": "object", "properties": {"project_number": {"type": "string"}, "firebase_url": {"type": "string"}, "project_id": {"type": "string"}, "storage_bucket": {"type": "string"}}, "required": ["project_number", "firebase_url", "project_id", "storage_bucket"]}, "client": {"type": "array", "items": {"type": "object", "properties": {"client_info": {"type": "object", "properties": {"mobilesdk_app_id": {"type": "string"}, "android_client_info": {"type": "object", "properties": {"package_name": {"type": "string"}}, "required": ["package_name"]}}, "required": ["mobilesdk_app_id", "android_client_info"]}, "oauth_client": {"type": "array", "items": {"type": "object", "properties": {"client_id": {"type": "string"}, "client_type": {"type": "integer"}}, "required": ["client_id", "client_type"]}}, "api_key": {"type": "array", "items": {"type": "object", "properties": {"current_key": {"type": "string"}}, "required": ["current_key"]}}, "services": {"type": "object", "properties": {"analytics_service": {"type": "object", "properties": {"status": {"type": "integer"}}, "required": ["status"]}, "appinvite_service": {"type": "object", "properties": {"status": {"type": "integer"}, "other_platform_oauth_client": {"type": "array", "items": {}}}, "required": ["status", "other_platform_oauth_client"]}, "ads_service": {"type": "object", "properties": {"status": {"type": "integer"}}, "required": ["status"]}}, "required": ["analytics_service", "appinvite_service", "ads_service"]}}, "required": ["client_info", "oauth_client", "api_key", "services"]}}, "configuration_version": {"type": "string"}}, "required": ["project_info", "client", "configuration_version"], "$schema": "http://json-schema.org/draft-07/schema#"}