input
stringlengths
159
2.05k
output
stringlengths
5
10.3k
task
stringclasses
1 value
schema
stringlengths
100
1.99k
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"name": {"type": "string"}, "tel": {"type": "string"}, "fax": {"type": "string"}, "licensee": {"type": "string"}, "licensePeriod": {"type": "string"}, "licenseClass": {"type": "string"}, "hciCode": {"type": "string"}, "address": {"type": "string"}, "doctorInCharge": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "qualifications": {"type": "array", "items": {"type": "string"}}, "specialties": {"type": "array", "items": {}}}, "required": ["name", "qualifications", "specialties"]}}, "detailedServices": {"type": "object", "properties": {"General Medical": {"type": "boolean"}}, "required": ["General Medical"]}, "operatingHours": {"type": "object", "properties": {"Monday to Friday": {"type": "string"}, "Saturday": {"type": "string"}}, "required": ["Monday to Friday", "Saturday"]}}, "required": ["name", "tel", "fax", "licensee", "licensePeriod", "licenseClass", "hciCode", "address", "doctorInCharge", "detailedServices", "operatingHours"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "DR YVONNE GOH AESTHETICS", "tel" : "64622559", "fax" : "64620052", "licensee" : "DR YVONNE GOH MEDICAL AESTHETICS PTE. LTD.", "licensePeriod" : "25/09/2015 to 24/09/2017", "licenseClass" : "[ 2 Years ( 2A ) ]", "hciCode" : "13C0251", "address" : "BLK 1 ORCHARD BOULEVARD, CAMDEN MEDICAL CENTRE, #09-05 Singapore 248649", "doctorInCharge" : [{"name" : "Yvonne Goh Hui Huang", "qualifications" : ["MB BCh BAO (University of Dublin, Ireland) 1998"], "specialties" : []}], "detailedServices" : {"General Medical" : true}, "operatingHours" : {"Monday to Friday" : "10:00 am to 07:00 pm", "Saturday" : "10:00 am to 03:00 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": {}}}, "required": ["name", "qualifications", "specialties"]}}, "detailedServices": {"type": "object", "properties": {"General Medical": {"type": "boolean"}}, "required": ["General Medical"]}, "operatingHours": {"type": "object", "properties": {"Monday to Friday": {"type": "string"}, "Saturday": {"type": "string"}}, "required": ["Monday to Friday", "Saturday"]}}, "required": ["name", "tel", "fax", "licensee", "licensePeriod", "licenseClass", "hciCode", "address", "doctorInCharge", "detailedServices", "operatingHours"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"ng-currency.js": {"type": "string"}}, "required": ["ng-currency.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"ng-currency.js" : "sha512-6IgbUxuz2L40bZrIo2VVynKCyb6Sc73gQ19VxbMy4C25XYgeZw525e58Ub+8Ssanm6nIdmGr1dmtZSfF+KNPaQ=="}
json_instruct
{"type": "object", "properties": {"ng-currency.js": {"type": "string"}}, "required": ["ng-currency.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"description": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "homepage": {"type": "string"}, "name": {"type": "string"}, "version": {"type": "string"}, "resolutions": {"type": "object", "properties": {}, "required": []}, "main": {"type": "string"}, "author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"lit-html": {"type": "string"}}, "required": ["lit-html"]}, "devDependencies": {"type": "object", "properties": {"bootstrap": {"type": "string"}, "@polymer/polymer": {"type": "string"}, "@polymer/iron-component-page": {"type": "string"}, "@polymer/iron-demo-helpers": {"type": "string"}, "@polymer/iron-icon": {"type": "string"}, "@polymer/iron-icons": {"type": "string"}, "@polymer/iron-test-helpers": {"type": "string"}, "@polymer/test-fixture": {"type": "string"}, "@webcomponents/webcomponentsjs": {"type": "string"}, "polymer-cli": {"type": "string"}, "wct-browser-legacy": {"type": "string"}, "fs-extra": {"type": "string"}, "klaw": {"type": "string"}}, "required": ["bootstrap", "@polymer/polymer", "@polymer/iron-component-page", "@polymer/iron-demo-helpers", "@polymer/iron-icon", "@polymer/iron-icons", "@polymer/iron-test-helpers", "@polymer/test-fixture", "@webcomponents/webcomponentsjs", "polymer-cli", "wct-browser-legacy", "fs-extra", "klaw"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "scripts": {"type": "object", "properties": {"prepare": {"type": "string"}}, "required": ["prepare"]}}, "required": ["description", "keywords", "homepage", "name", "version", "resolutions", "main", "author", "license", "dependencies", "devDependencies", "repository", "scripts"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"description" : "Wrapping of *Bootstrap CSS* as Polymer web component to be used as shared style in full ShadowDOM mode", "keywords" : ["web-component", "web-components", "polymer", "boostrap"], "homepage" : "https://github.com/lostinbrittany/granite-bootstrap", "name" : "@granite-elements/granite-bootstrap", "version" : "4.3.1-2", "resolutions" : {}, "main" : "granite-bootstrap-min.js", "author" : "Horacio Gonzalez <horacio.gonzalez@gmail.com>", "license" : "MIT", "dependencies" : {"lit-html" : "^1.1.2"}, "devDependencies" : {"bootstrap" : "4.3.1", "@polymer/polymer" : "3.3.0", "@polymer/iron-component-page" : "^4.0.0", "@polymer/iron-demo-helpers" : "^3.0.0", "@polymer/iron-icon" : "^3.0.0", "@polymer/iron-icons" : "^3.0.0", "@polymer/iron-test-helpers" : "^3.0.0", "@polymer/test-fixture" : "^4.0.0", "@webcomponents/webcomponentsjs" : "2.3.0", "polymer-cli" : "1.9.11", "wct-browser-legacy" : "1.0.2", "fs-extra" : "8.1.0", "klaw" : "3.0.0"}, "repository" : {"type" : "git", "url" : "git://github.com/lostinbrittany/granite-bootstrap.git"}, "scripts" : {"prepare" : "node ./granite-css-modularizer.js ./node_modules/bootstrap/dist/css ."}}
json_instruct
{"type": "object", "properties": {"description": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "homepage": {"type": "string"}, "name": {"type": "string"}, "version": {"type": "string"}, "resolutions": {"type": "object", "properties": {}, "required": []}, "main": {"type": "string"}, "author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"lit-html": {"type": "string"}}, "required": ["lit-html"]}, "devDependencies": {"type": "object", "properties": {"bootstrap": {"type": "string"}, "@polymer/polymer": {"type": "string"}, "@polymer/iron-component-page": {"type": "string"}, "@polymer/iron-demo-helpers": {"type": "string"}, "@polymer/iron-icon": {"type": "string"}, "@polymer/iron-icons": {"type": "string"}, "@polymer/iron-test-helpers": {"type": "string"}, "@polymer/test-fixture": {"type": "string"}, "@webcomponents/webcomponentsjs": {"type": "string"}, "polymer-cli": {"type": "string"}, "wct-browser-legacy": {"type": "string"}, "fs-extra": {"type": "string"}, "klaw": {"type": "string"}}, "required": ["bootstrap", "@polymer/polymer", "@polymer/iron-component-page", "@polymer/iron-demo-helpers", "@polymer/iron-icon", "@polymer/iron-icons", "@polymer/iron-test-helpers", "@polymer/test-fixture", "@webcomponents/webcomponentsjs", "polymer-cli", "wct-browser-legacy", "fs-extra", "klaw"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "scripts": {"type": "object", "properties": {"prepare": {"type": "string"}}, "required": ["prepare"]}}, "required": ["description", "keywords", "homepage", "name", "version", "resolutions", "main", "author", "license", "dependencies", "devDependencies", "repository", "scripts"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"jquery.sidebar.js": {"type": "string"}, "jquery.sidebar.min.js": {"type": "string"}}, "required": ["jquery.sidebar.js", "jquery.sidebar.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"jquery.sidebar.js" : "sha256-OrVIqzGxnPgYfCr4q0Vd8kgFvM6oVYtirMcTuQ198EI=", "jquery.sidebar.min.js" : "sha256-fEU2tVQJfqY3R+Kqwp9t9i5SGUA2f4ojZxvO+QC7uq4="}
json_instruct
{"type": "object", "properties": {"jquery.sidebar.js": {"type": "string"}, "jquery.sidebar.min.js": {"type": "string"}}, "required": ["jquery.sidebar.js", "jquery.sidebar.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "array", "items": {"type": "object", "properties": {"appId": {"type": "string"}, "cpu": {"type": "string"}, "duration": {"type": "string"}, "gpu": {"type": "string"}, "gpuDriver": {"type": "string"}, "kernel": {"type": "string"}, "os": {"type": "string"}, "protonVersion": {"type": "string"}, "ram": {"type": "string"}, "rating": {"type": "string"}, "timestamp": {"type": "integer"}, "title": {"type": "string"}}, "required": ["appId", "cpu", "duration", "gpu", "gpuDriver", "kernel", "os", "protonVersion", "ram", "rating", "timestamp", "title"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"appId" : "888790", "cpu" : "Intel Core i7-2600 @ 3.40GHz", "duration" : "severalHours", "gpu" : "AMD TURKS", "gpuDriver" : "3.1 Mesa 18.2.2", "kernel" : "4.18.0-10-generic", "os" : "Ubuntu 18.10", "protonVersion" : "Default", "ram" : "16 GB", "rating" : "Platinum", "timestamp" : 1540887488, "title" : "Sabbat of the Witch"}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"appId": {"type": "string"}, "cpu": {"type": "string"}, "duration": {"type": "string"}, "gpu": {"type": "string"}, "gpuDriver": {"type": "string"}, "kernel": {"type": "string"}, "os": {"type": "string"}, "protonVersion": {"type": "string"}, "ram": {"type": "string"}, "rating": {"type": "string"}, "timestamp": {"type": "integer"}, "title": {"type": "string"}}, "required": ["appId", "cpu", "duration", "gpu", "gpuDriver", "kernel", "os", "protonVersion", "ram", "rating", "timestamp", "title"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"compilerOptions": {"type": "object", "properties": {"target": {"type": "string"}, "module": {"type": "string"}}, "required": ["target", "module"]}, "include": {"type": "array", "items": {"type": "string"}}}, "required": ["compilerOptions", "include"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"compilerOptions" : {"target" : "es6", "module" : "es2015"}, "include" : ["./main.ts"]}
json_instruct
{"type": "object", "properties": {"compilerOptions": {"type": "object", "properties": {"target": {"type": "string"}, "module": {"type": "string"}}, "required": ["target", "module"]}, "include": {"type": "array", "items": {"type": "string"}}}, "required": ["compilerOptions", "include"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"expo": {"type": "object", "properties": {"name": {"type": "string"}, "slug": {"type": "string"}, "version": {"type": "string"}, "orientation": {"type": "string"}, "icon": {"type": "string"}, "platforms": {"type": "array", "items": {"type": "string"}}, "updates": {"type": "object", "properties": {"fallbackToCacheTimeout": {"type": "integer"}}, "required": ["fallbackToCacheTimeout"]}, "assetBundlePatterns": {"type": "array", "items": {"type": "string"}}, "ios": {"type": "object", "properties": {"splash": {"type": "object", "properties": {"image": {"type": "string"}, "backgroundColor": {"type": "string"}, "resizeMode": {"type": "string"}}, "required": ["image", "backgroundColor", "resizeMode"]}, "supportsTablet": {"type": "boolean"}, "bundleIdentifier": {"type": "string"}}, "required": ["splash", "supportsTablet", "bundleIdentifier"]}, "android": {"type": "object", "properties": {"splash": {"type": "object", "properties": {"mdpi": {"type": "string"}, "hdpi": {"type": "string"}, "xhdpi": {"type": "string"}, "xxhdpi": {"type": "string"}, "xxxhdpi": {"type": "string"}, "backgroundColor": {"type": "string"}, "resizeMode": {"type": "string"}}, "required": ["mdpi", "hdpi", "xhdpi", "xxhdpi", "xxxhdpi", "backgroundColor", "resizeMode"]}, "adaptiveIcon": {"type": "object", "properties": {"foregroundImage": {"type": "string"}, "backgroundColor": {"type": "string"}}, "required": ["foregroundImage", "backgroundColor"]}, "package": {"type": "string"}}, "required": ["splash", "adaptiveIcon", "package"]}, "web": {"type": "object", "properties": {"favicon": {"type": "string"}}, "required": ["favicon"]}, "description": {"type": "string"}}, "required": ["name", "slug", "version", "orientation", "icon", "platforms", "updates", "assetBundlePatterns", "ios", "android", "web", "description"]}}, "required": ["expo"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"expo" : {"name" : "SRU", "slug" : "SRU", "version" : "1.0.0", "orientation" : "portrait", "icon" : "./assets/app_logo.png", "platforms" : ["ios", "android"], "updates" : {"fallbackToCacheTimeout" : 0}, "assetBundlePatterns" : ["**/*"], "ios" : {"splash" : {"image" : "./assets/splash/splash.png", "backgroundColor" : "#222B45", "resizeMode" : "contain"}, "supportsTablet" : true, "bundleIdentifier" : "com.batch31.SRU"}, "android" : {"splash" : {"mdpi" : "./assets/splash/splash-mdpi.png", "hdpi" : "./assets/splash/splash-hdpi.png", "xhdpi" : "./assets/splash/splash-xhdpi.png", "xxhdpi" : "./assets/splash/splash-xxhdpi.png", "xxxhdpi" : "./assets/splash/splash-xxxhdpi.png", "backgroundColor" : "#222B45", "resizeMode" : "contain"}, "adaptiveIcon" : {"foregroundImage" : "./assets/app_logo.png", "backgroundColor" : "#222B45"}, "package" : "com.batch31.SRU"}, "web" : {"favicon" : "./assets/favicon.png"}, "description" : ""}}
json_instruct
{"type": "object", "properties": {"expo": {"type": "object", "properties": {"name": {"type": "string"}, "slug": {"type": "string"}, "version": {"type": "string"}, "orientation": {"type": "string"}, "icon": {"type": "string"}, "platforms": {"type": "array", "items": {"type": "string"}}, "updates": {"type": "object", "properties": {"fallbackToCacheTimeout": {"type": "integer"}}, "required": ["fallbackToCacheTimeout"]}, "assetBundlePatterns": {"type": "array", "items": {"type": "string"}}, "ios": {"type": "object", "properties": {"splash": {"type": "object", "properties": {"image": {"type": "string"}, "backgroundColor": {"type": "string"}, "resizeMode": {"type": "string"}}, "required": ["image", "backgroundColor", "resizeMode"]}, "supportsTablet": {"type": "boolean"}, "bundleIdentifier": {"type": "string"}}, "required": ["splash", "supportsTablet", "bundleIdentifier"]}, "android": {"type": "object", "properties": {"splash": {"type": "object", "properties": {"mdpi": {"type": "string"}, "hdpi": {"type": "string"}, "xhdpi": {"type": "string"}, "xxhdpi": {"type": "string"}, "xxxhdpi": {"type": "string"}, "backgroundColor": {"type": "string"}, "resizeMode": {"type": "string"}}, "required": ["mdpi", "hdpi", "xhdpi", "xxhdpi", "xxxhdpi", "backgroundColor", "resizeMode"]}, "adaptiveIcon": {"type": "object", "properties": {"foregroundImage": {"type": "string"}, "backgroundColor": {"type": "string"}}, "required": ["foregroundImage", "backgroundColor"]}, "package": {"type": "string"}}, "required": ["splash", "adaptiveIcon", "package"]}, "web": {"type": "object", "properties": {"favicon": {"type": "string"}}, "required": ["favicon"]}, "description": {"type": "string"}}, "required": ["name", "slug", "version", "orientation", "icon", "platforms", "updates", "assetBundlePatterns", "ios", "android", "web", "description"]}}, "required": ["expo"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"title": {"type": "string"}, "component": {"type": "string"}, "components": {"type": "array", "items": {"type": "string"}}, "jsfiddle": {"type": "string"}}, "required": ["title", "component", "components", "jsfiddle"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"title" : "Form Input", "component" : "bFormInput", "components" : ["bFormInputStatic"], "jsfiddle" : "j08b7c4o"}
json_instruct
{"type": "object", "properties": {"title": {"type": "string"}, "component": {"type": "string"}, "components": {"type": "array", "items": {"type": "string"}}, "jsfiddle": {"type": "string"}}, "required": ["title", "component", "components", "jsfiddle"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"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" : "Neuvy-Bouin", "circ" : "1\u00e8re circonscription", "dpt" : "Deux-S\u00e8vres", "inscrits" : 349, "abs" : 182, "votants" : 167, "blancs" : 6, "nuls" : 2, "exp" : 159, "res" : [{"nuance" : "REM", "nom" : "M. Guillaume CHICHE", "voix" : 67}, {"nuance" : "FI", "nom" : "Mme Nathalie SEGUIN", "voix" : 26}, {"nuance" : "UDI", "nom" : "M. Marc THEBAULT", "voix" : 20}, {"nuance" : "FN", "nom" : "Mme Martine GENDRY", "voix" : 20}, {"nuance" : "DVD", "nom" : "Mme Coralie DENOUES", "voix" : 13}, {"nuance" : "DLF", "nom" : "M. C\u00e9dric CHARLIER", "voix" : 5}, {"nuance" : "SOC", "nom" : "Mme Elodie TRUONG", "voix" : 2}, {"nuance" : "DVG", "nom" : "M. Alain PIVETEAU", "voix" : 2}, {"nuance" : "DIV", "nom" : "M. Joseph ABI NADER", "voix" : 2}, {"nuance" : "DIV", "nom" : "M. Tristan PELISSIER", "voix" : 1}, {"nuance" : "EXG", "nom" : "Mme Maryse VALLEE", "voix" : 1}, {"nuance" : "EXD", "nom" : "M. Cyril GIRAUD", "voix" : 0}]}
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#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"requires": {"type": "boolean"}, "lockfileVersion": {"type": "integer"}, "dependencies": {"type": "object", "properties": {"ngx-bootstrap": {"type": "object", "properties": {"version": {"type": "string"}, "resolved": {"type": "string"}, "integrity": {"type": "string"}}, "required": ["version", "resolved", "integrity"]}, "web-animations-js": {"type": "object", "properties": {"version": {"type": "string"}, "resolved": {"type": "string"}, "integrity": {"type": "string"}}, "required": ["version", "resolved", "integrity"]}}, "required": ["ngx-bootstrap", "web-animations-js"]}}, "required": ["requires", "lockfileVersion", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"requires" : true, "lockfileVersion" : 1, "dependencies" : {"ngx-bootstrap" : {"version" : "5.6.1", "resolved" : "https://registry.npmjs.org/ngx-bootstrap/-/ngx-bootstrap-5.6.1.tgz", "integrity" : "sha512-8fDs3VaaWgKpupakPKS0QaUc+1E/JMBGJDxUUODjyIkLtFr1A8vH4cjXiV3AfrPvhK27GH0oyTPyKWKcCjEtVg=="}, "web-animations-js" : {"version" : "2.3.2", "resolved" : "https://registry.npmjs.org/web-animations-js/-/web-animations-js-2.3.2.tgz", "integrity" : "sha512-TOMFWtQdxzjWp8qx4DAraTWTsdhxVSiWa6NkPFSaPtZ1diKUxTn4yTix73A1euG1WbSOMMPcY51cnjTIHrGtDA=="}}}
json_instruct
{"type": "object", "properties": {"requires": {"type": "boolean"}, "lockfileVersion": {"type": "integer"}, "dependencies": {"type": "object", "properties": {"ngx-bootstrap": {"type": "object", "properties": {"version": {"type": "string"}, "resolved": {"type": "string"}, "integrity": {"type": "string"}}, "required": ["version", "resolved", "integrity"]}, "web-animations-js": {"type": "object", "properties": {"version": {"type": "string"}, "resolved": {"type": "string"}, "integrity": {"type": "string"}}, "required": ["version", "resolved", "integrity"]}}, "required": ["ngx-bootstrap", "web-animations-js"]}}, "required": ["requires", "lockfileVersion", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"h": {"type": "array", "items": {"type": "object", "properties": {"d": {"type": "array", "items": {"type": "object", "properties": {"e": {"type": "array", "items": {"type": "string"}}, "f": {"type": "string"}}, "required": ["e", "f"]}}}, "required": ["d"]}}, "tag": {"type": "string"}, "stem": {"type": "string"}, "t": {"type": "string"}}, "required": ["h", "tag", "stem", "t"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"h" : [{"d" : [{"e" : ["\ufff9`Marasras~ `i~ `sasera~.\ufffa\ufffb\u6492\u843d\u5728\u571f\u5730\u4e0a\u3002"], "f" : "\u571f\u5730\u4e0a\u3002"}]}], "tag" : "[\u758a 1]", "stem" : "sera", "t" : "sasera"}
json_instruct
{"type": "object", "properties": {"h": {"type": "array", "items": {"type": "object", "properties": {"d": {"type": "array", "items": {"type": "object", "properties": {"e": {"type": "array", "items": {"type": "string"}}, "f": {"type": "string"}}, "required": ["e", "f"]}}}, "required": ["d"]}}, "tag": {"type": "string"}, "stem": {"type": "string"}, "t": {"type": "string"}}, "required": ["h", "tag", "stem", "t"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"hash": {"type": "string"}, "parentHash": {"type": "string"}, "number": {"type": "integer"}, "timestamp": {"type": "integer"}, "nonce": {"type": "string"}, "difficulty": {"type": "integer"}, "gasLimit": {"type": "object", "properties": {"_hex": {"type": "string"}}, "required": ["_hex"]}, "gasUsed": {"type": "object", "properties": {"_hex": {"type": "string"}}, "required": ["_hex"]}, "miner": {"type": "string"}, "extraData": {"type": "string"}, "transactions": {"type": "array", "items": {"type": "object", "properties": {"hash": {"type": "string"}, "blockHash": {"type": "string"}, "blockNumber": {"type": "integer"}, "transactionIndex": {"type": "integer"}, "confirmations": {"type": "null"}, "from": {"type": "string"}, "gasPrice": {"type": "object", "properties": {"_hex": {"type": "string"}}, "required": ["_hex"]}, "gasLimit": {"type": "object", "properties": {"_hex": {"type": "string"}}, "required": ["_hex"]}, "to": {"type": "string"}, "value": {"type": "object", "properties": {"_hex": {"type": "string"}}, "required": ["_hex"]}, "nonce": {"type": "integer"}, "data": {"type": "string"}, "r": {"type": "string"}, "s": {"type": "string"}, "v": {"type": "integer"}, "creates": {"type": "null"}, "raw": {"type": "string"}, "networkId": {"type": "integer"}, "chainId": {"type": "integer"}}, "required": ["hash", "blockHash", "blockNumber", "transactionIndex", "confirmations", "from", "gasPrice", "gasLimit", "to", "value", "nonce", "data", "r", "s", "v", "creates", "raw", "networkId", "chainId"]}}}, "required": ["hash", "parentHash", "number", "timestamp", "nonce", "difficulty", "gasLimit", "gasUsed", "miner", "extraData", "transactions"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"hash" : "0x7c56bdccf1dd1b2c12973a265e473392ec0906383326719ac4d3c913999555ec", "parentHash" : "0x3301aaa154be839b5cb505d4d9855e8ef5a7282493b4bf1492bfdab2082855ff", "number" : 46784, "timestamp" : 1438929082, "nonce" : "0xcec8348b24e1fd62", "difficulty" : 1460309526756, "gasLimit" : {"_hex" : "0x787a"}, "gasUsed" : {"_hex" : "0x5208"}, "miner" : "0x157c6f2431eB1a95797EE86F7d17b3c0FD47A247", "extraData" : "0x476574682f76312e302e312f77696e646f77732f676f312e342e32", "transactions" : [{"hash" : "0x02e48a3976385def2bebb40374d0b85a061ae9f21bf8e3fdb5d61317a04d5c07", "blockHash" : "0x7c56bdccf1dd1b2c12973a265e473392ec0906383326719ac4d3c913999555ec", "blockNumber" : 46784, "transactionIndex" : 0, "confirmations" : null, "from" : "0xe6A7a1d47ff21B6321162AEA7C6CB457D5476Bca", "gasPrice" : {"_hex" : "0xd822ae072"}, "gasLimit" : {"_hex" : "0x5208"}, "to" : "0x3F98e477a361F777DA14611a7e419A75Fd238b6b", "value" : {"_hex" : "0xe34e5a3e4c868a0"}, "nonce" : 0, "data" : "0x", "r" : "0xf49b88576ebafb6ba7572c88400e594f3f751128d2cdec923da9f1acc65c3485", "s" : "0x7688a6830e82a0734d293cda1461abb9c50a5048bb10cf6fa3067b83035b3082", "v" : 28, "creates" : null, "raw" : "0xf86c80850d822ae072825208943f98e477a361f777da14611a7e419a75fd238b6b880e34e5a3e4c868a0801ca0f49b88576ebafb6ba7572c88400e594f3f751128d2cdec923da9f1acc65c3485a07688a6830e82a0734d293cda1461abb9c50a5048bb10cf6fa3067b83035b3082", "networkId" : 0, "chainId" : 0}]}
json_instruct
{"type": "object", "properties": {"hash": {"type": "string"}, "parentHash": {"type": "string"}, "number": {"type": "integer"}, "timestamp": {"type": "integer"}, "nonce": {"type": "string"}, "difficulty": {"type": "integer"}, "gasLimit": {"type": "object", "properties": {"_hex": {"type": "string"}}, "required": ["_hex"]}, "gasUsed": {"type": "object", "properties": {"_hex": {"type": "string"}}, "required": ["_hex"]}, "miner": {"type": "string"}, "extraData": {"type": "string"}, "transactions": {"type": "array", "items": {"type": "object", "properties": {"hash": {"type": "string"}, "blockHash": {"type": "string"}, "blockNumber": {"type": "integer"}, "transactionIndex": {"type": "integer"}, "confirmations": {"type": "null"}, "from": {"type": "string"}, "gasPrice": {"type": "object", "properties": {"_hex": {"type": "string"}}, "required": ["_hex"]}, "gasLimit": {"type": "object", "properties": {"_hex": {"type": "string"}}, "required": ["_hex"]}, "to": {"type": "string"}, "value": {"type": "object", "properties": {"_hex": {"type": "string"}}, "required": ["_hex"]}, "nonce": {"type": "integer"}, "data": {"type": "string"}, "r": {"type": "string"}, "s": {"type": "string"}, "v": {"type": "integer"}, "creates": {"type": "null"}, "raw": {"type": "string"}, "networkId": {"type": "integer"}, "chainId": {"type": "integer"}}, "required": ["hash", "blockHash", "blockNumber", "transactionIndex", "confirmations", "from", "gasPrice", "gasLimit", "to", "value", "nonce", "data", "r", "s", "v", "creates", "raw", "networkId", "chainId"]}}}, "required": ["hash", "parentHash", "number", "timestamp", "nonce", "difficulty", "gasLimit", "gasUsed", "miner", "extraData", "transactions"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"name": {"type": "string"}, "script": {"type": "string"}, "node_args": {"type": "string"}, "args": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "script", "node_args", "args"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "cortex-search-server", "script" : "bin/server.js", "node_args" : "--harmony", "args" : ["-c", "config.js"]}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "script": {"type": "string"}, "node_args": {"type": "string"}, "args": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "script", "node_args", "args"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"name": {"type": "string"}, "name_long": {"type": "string"}, "fips": {"type": "string"}, "state_code_int": {"type": "integer"}, "state_code_postal": {"type": "string"}, "state_code_iso": {"type": "string"}, "county_code": {"type": "integer"}, "population": {"type": "integer"}, "countrylevel_id": {"type": "string"}, "census_data": {"type": "object", "properties": {"COUNTYNS": {"type": "string"}, "AFFGEOID": {"type": "string"}, "LSAD": {"type": "string"}, "ALAND": {"type": "integer"}, "AWATER": {"type": "integer"}}, "required": ["COUNTYNS", "AFFGEOID", "LSAD", "ALAND", "AWATER"]}, "center_lat": {"type": "number"}, "center_lon": {"type": "number"}, "area_m2": {"type": "integer"}, "timezone": {"type": "string"}}, "required": ["name", "name_long", "fips", "state_code_int", "state_code_postal", "state_code_iso", "county_code", "population", "countrylevel_id", "census_data", "center_lat", "center_lon", "area_m2", "timezone"]}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["type", "coordinates"]}}, "required": ["type", "properties", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"type" : "Feature", "properties" : {"name" : "Wayne County", "name_long" : "Wayne County, NC", "fips" : "37191", "state_code_int" : 37, "state_code_postal" : "NC", "state_code_iso" : "US-NC", "county_code" : 191, "population" : 123131, "countrylevel_id" : "fips:37191", "census_data" : {"COUNTYNS" : "01026128", "AFFGEOID" : "0500000US37191", "LSAD" : "06", "ALAND" : 1434638262, "AWATER" : 9855191}, "center_lat" : 35.36, "center_lon" : -78.0, "area_m2" : 1444493453, "timezone" : "America/New_York"}, "geometry" : {"type" : "Polygon", "coordinates" : [[[-78.29, 35.315], [-78.277, 35.315], [-78.257, 35.326], [-78.242, 35.32], [-78.216, 35.335], [-78.216, 35.335], [-78.216, 35.335], [-78.217, 35.336], [-78.217, 35.337], [-78.216, 35.338], [-78.217, 35.339], [-78.198, 35.34], [-78.153, 35.351], [-78.16, 35.357], [-78.162, 35.367], [-78.144, 35.387], [-78.154, 35.392], [-78.155, 35.418], [-78.11, 35.502], [-78.109, 35.504], [-78.106, 35.509], [-78.106, 35.509], [-78.093, 35.533], [-78.065, 35.585], [-78.058, 35.598], [-77.998, 35.586], [-77.922, 35.586], [-77.918, 35.586], [-77.874, 35.586], [-77.836, 35.586], [-77.823, 35.586], [-77.823, 35.585], [-77.823, 35.572], [-77.827, 35.424], [-77.806, 35.408], [-77.8, 35.383], [-77.806, 35.37], [-77.818, 35.357], [-77.819, 35.352], [-77.819, 35.352], [-77.824, 35.344], [-77.829, 35.263], [-77.829, 35.257], [-77.834, 35.178], [-77.884, 35.162], [-77.892, 35.146], [-77.911, 35.164], [-77.932, 35.173], [-77.961, 35.165], [-77.984, 35.184], [-78.02, 35.194], [-78.058, 35.185], [-78.063, 35.183], [-78.077, 35.175], [-78.163, 35.19], [-78.162, 35.204], [-78.236, 35.223], [-78.237, 35.223], [-78.238, 35.223], [-78.244, 35.226], [-78.246, 35.226], [-78.307, 35.288], [-78.29, 35.315]]]}}
json_instruct
{"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"name": {"type": "string"}, "name_long": {"type": "string"}, "fips": {"type": "string"}, "state_code_int": {"type": "integer"}, "state_code_postal": {"type": "string"}, "state_code_iso": {"type": "string"}, "county_code": {"type": "integer"}, "population": {"type": "integer"}, "countrylevel_id": {"type": "string"}, "census_data": {"type": "object", "properties": {"COUNTYNS": {"type": "string"}, "AFFGEOID": {"type": "string"}, "LSAD": {"type": "string"}, "ALAND": {"type": "integer"}, "AWATER": {"type": "integer"}}, "required": ["COUNTYNS", "AFFGEOID", "LSAD", "ALAND", "AWATER"]}, "center_lat": {"type": "number"}, "center_lon": {"type": "number"}, "area_m2": {"type": "integer"}, "timezone": {"type": "string"}}, "required": ["name", "name_long", "fips", "state_code_int", "state_code_postal", "state_code_iso", "county_code", "population", "countrylevel_id", "census_data", "center_lat", "center_lon", "area_m2", "timezone"]}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["type", "coordinates"]}}, "required": ["type", "properties", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"data": {"type": "object", "properties": {"type": {"type": "string"}, "id": {"type": "string"}, "attributes": {"type": "object", "properties": {"username": {"type": "string"}}, "required": ["username"]}}, "required": ["type", "id", "attributes"]}}, "required": ["data"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"data" : {"type" : "devices-module/device-connector", "id" : "7c055b2b-60c3-4017-93db-e9478d8aa662", "attributes" : {"username" : "newusername"}}}
json_instruct
{"type": "object", "properties": {"data": {"type": "object", "properties": {"type": {"type": "string"}, "id": {"type": "string"}, "attributes": {"type": "object", "properties": {"username": {"type": "string"}}, "required": ["username"]}}, "required": ["type", "id", "attributes"]}}, "required": ["data"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "private": {"type": "boolean"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "author": {"type": "string"}, "licenses": {"type": "object", "properties": {"type": {"type": "string"}}, "required": ["type"]}, "dependencies": {"type": "object", "properties": {"js-beautify": {"type": "string"}, "js-object-pretty-print": {"type": "string"}, "sax": {"type": "string"}}, "required": ["js-beautify", "js-object-pretty-print", "sax"]}, "devDependencies": {"type": "object", "properties": {"browserify": {"type": "string"}}, "required": ["browserify"]}}, "required": ["name", "version", "description", "main", "private", "scripts", "author", "licenses", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "grouping2js", "version" : "1.0.0", "description" : "Transforms the xml grouping in an s3d file into a JavaScript", "main" : "index.js", "private" : true, "scripts" : {"test" : "node test/test-nodejs.js"}, "author" : "john.pywtorak@sri.com", "licenses" : {"type" : "Copyright 2015, SRI International"}, "dependencies" : {"js-beautify" : "^1.5.4", "js-object-pretty-print" : "^0.1.3", "sax" : "^0.6.1"}, "devDependencies" : {"browserify" : "^8.1.0"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "private": {"type": "boolean"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "author": {"type": "string"}, "licenses": {"type": "object", "properties": {"type": {"type": "string"}}, "required": ["type"]}, "dependencies": {"type": "object", "properties": {"js-beautify": {"type": "string"}, "js-object-pretty-print": {"type": "string"}, "sax": {"type": "string"}}, "required": ["js-beautify", "js-object-pretty-print", "sax"]}, "devDependencies": {"type": "object", "properties": {"browserify": {"type": "string"}}, "required": ["browserify"]}}, "required": ["name", "version", "description", "main", "private", "scripts", "author", "licenses", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"nom": {"type": "string"}, "dpt": {"type": "string"}, "inscrits": {"type": "integer"}, "abs": {"type": "integer"}, "votants": {"type": "integer"}, "blancs": {"type": "integer"}, "nuls": {"type": "integer"}, "exp": {"type": "integer"}, "res": {"type": "array", "items": {"type": "object", "properties": {"panneau": {"type": "string"}, "voix": {"type": "integer"}}, "required": ["panneau", "voix"]}}}, "required": ["nom", "dpt", "inscrits", "abs", "votants", "blancs", "nuls", "exp", "res"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"nom" : "Biard", "dpt" : "Vienne", "inscrits" : 1182, "abs" : 182, "votants" : 1000, "blancs" : 12, "nuls" : 3, "exp" : 985, "res" : [{"panneau" : "3", "voix" : 296}, {"panneau" : "9", "voix" : 229}, {"panneau" : "11", "voix" : 172}, {"panneau" : "2", "voix" : 128}, {"panneau" : "4", "voix" : 69}, {"panneau" : "1", "voix" : 48}, {"panneau" : "6", "voix" : 13}, {"panneau" : "8", "voix" : 12}, {"panneau" : "5", "voix" : 9}, {"panneau" : "10", "voix" : 7}, {"panneau" : "7", "voix" : 2}]}
json_instruct
{"type": "object", "properties": {"nom": {"type": "string"}, "dpt": {"type": "string"}, "inscrits": {"type": "integer"}, "abs": {"type": "integer"}, "votants": {"type": "integer"}, "blancs": {"type": "integer"}, "nuls": {"type": "integer"}, "exp": {"type": "integer"}, "res": {"type": "array", "items": {"type": "object", "properties": {"panneau": {"type": "string"}, "voix": {"type": "integer"}}, "required": ["panneau", "voix"]}}}, "required": ["nom", "dpt", "inscrits", "abs", "votants", "blancs", "nuls", "exp", "res"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"type": {"type": "string"}, "title": {"type": "string"}, "summary": {"type": "string"}, "parent": {"type": "string"}, "url": {"type": "string"}, "updated": {"type": "string"}, "children": {"type": "array", "items": {}}}, "required": ["type", "title", "summary", "parent", "url", "updated", "children"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"type" : "wiki", "title" : "\ub300\ubb38\uc790\ub97c upper case, \uc18c\ubb38\uc790\ub97c lower case\ub77c \ubd80\ub974\ub294 \uc774\uc720", "summary" : "\uc778\uc1c4 \uc2dd\uc790\uacf5\ub4e4\uc774 \uc18c\ubb38\uc790 \ud65c\uc790\ub97c \uc544\ub798\ucabd \uc0c1\uc790\uc5d0 \ub2f4\uace0, \ub300\ubb38\uc790 \ud65c\uc790\ub97c \uc704\ucabd \uc0c1\uc790\uc5d0 \ub2f4\uc558\uae30 \ub54c\ubb38", "parent" : "why", "url" : "/wiki/letter-case", "updated" : "2020-05-22 23:48:52 +0900", "children" : []}
json_instruct
{"type": "object", "properties": {"type": {"type": "string"}, "title": {"type": "string"}, "summary": {"type": "string"}, "parent": {"type": "string"}, "url": {"type": "string"}, "updated": {"type": "string"}, "children": {"type": "array", "items": {}}}, "required": ["type", "title", "summary", "parent", "url", "updated", "children"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"type": {"type": "string"}, "features": {"type": "array", "items": {"type": "object", "properties": {"geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["type", "coordinates"]}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"cartodb_id": {"type": "integer"}}, "required": ["cartodb_id"]}}, "required": ["geometry", "type", "properties"]}}}, "required": ["type", "features"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"type" : "FeatureCollection", "features" : [{"geometry" : {"type" : "Polygon", "coordinates" : [[[-77.287234, 38.742599], [-77.280485, 38.749792], [-77.277056, 38.755453], [-77.272383, 38.751946], [-77.266644, 38.751419], [-77.260268, 38.748924], [-77.255438, 38.745702], [-77.250798, 38.745336], [-77.250746, 38.742875], [-77.252445, 38.738033], [-77.249462, 38.730771], [-77.250704, 38.728089], [-77.26069, 38.728092], [-77.264137, 38.728813], [-77.273528, 38.734024], [-77.274988, 38.735935], [-77.279773, 38.735378], [-77.28511, 38.739179], [-77.287234, 38.742599]]]}, "type" : "Feature", "properties" : {"cartodb_id" : 77380}}]}
json_instruct
{"type": "object", "properties": {"type": {"type": "string"}, "features": {"type": "array", "items": {"type": "object", "properties": {"geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["type", "coordinates"]}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"cartodb_id": {"type": "integer"}}, "required": ["cartodb_id"]}}, "required": ["geometry", "type", "properties"]}}}, "required": ["type", "features"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"id": {"type": "string"}, "text": {"type": "string"}}, "required": ["id", "text"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : "d122-162", "text" : "ACTIVE MEMBERS\nCall\nLetters\nCity\nFrequency\nPower\nLicensee\nContact Person\nAddress\nPhone\nOKLAHOMA (Region V)\nWNAD (AM) * 640 kc\n(Norman) 1 kw\nUniversity of Oklahoma\nHugh Mix. Dir.\nEducational Broadcasting\nServices\nNorman, Oklahoma\nJefferson 4-6900, Ext. 424\nWNAD-FM *\n90.9 me\n3 kw\nSame\nSame\nKOKH (FM) *\n(Oklahoma City)\n88.9 me\n3 kw\nOklahoma City Board of\nEduc;rtrarfi f(5t)V.S^O\nBroadcasting Center\n3-96+ N. Ellison\nOklahoma City, Oklahoma\nJA 5-9403\nDir. Radio-TV\nKAMC-FM\n/ Q + illiirn f ai\u00bb\\\n91.7 mc_\noon w kLot> *\nOklahoma State University\n1523 West 6th\nStillwater, Oklahoma\n^ullllWalCr j\nXo\\ *30 >\nRadio-TV Department^\n1480, Ext. 629\nKWGS (FM) *\n(Tulsa)\n90.5 me\n1 kw\nUniversity of T^ulsa\nEdward Dumit, Dir.\n600 S. College\nTulsa, Oklahoma\nWE 9-6351, Ext. 252\nOREGON (Region VI)\nKOAC (AM) *\n(Corvallis)\nKO/K'i'/\nKRVM (FM)\n(Eugene)\n550 kc\n5 kw\nCM 1\n91. 1 me\n400 w\nOregon State System of\nHigher Education\nJames Morris, Program Dir.\nS O^-iTO-S^\nEugene Public Schools\nRoger J. Houglum, Mgr.-Dir.\nCorvallis, Oregon\nPlaza 3-4351\n275 E. 7th Ave.\nEugene, Oregon\nKWAX (FM) *\n(Eugene)\n88.1 me\n10 w\nUniversity of Oregon\nJohn R. Shepherd\nProduction Dir.\nEugene, Oregon\nDI 5-1511\nKBPS (AM) *\n(Portland)\n1450 kc\n250 w\nPortland Public Schools\nMrs. Patricia Swenson, Mgr.\n546 N. E. 12th Ave.\nPortland, Oregon\nBE 4-5469\nPENNSYLVANIA (Region I)\nWSAJ (AM)\n(Grove City)\n1340 kc\n100 w\nGrove City College\nDale O. Smock, Mgr.\nGrove City, Pennsylvania\n763\n15"}
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "text": {"type": "string"}}, "required": ["id", "text"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"}
["rpc-multistream", "tcp-log-server"]
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": {"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" : 6215, "cartId" : "87b2204e-cb39-4515-8424-f19943595056", "preferredProducts" : [1417, 722, 4660, 3395, 4081], "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#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"id": {"type": "integer"}, "children": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}}, "required": ["id", "name"]}}, "name": {"type": "string"}}, "required": ["id", "children", "name"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : 4106, "children" : [{"id" : 4107, "name" : "Saginaw Correctional Facility -- theater workshops"}], "name" : "Saginaw Correctional Facility"}
json_instruct
{"type": "object", "properties": {"id": {"type": "integer"}, "children": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}}, "required": ["id", "name"]}}, "name": {"type": "string"}}, "required": ["id", "children", "name"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"name": {"type": "string"}, "private": {"type": "boolean"}, "description": {"type": "string"}, "version": {"type": "string"}, "license": {"type": "string"}, "scripts": {"type": "object", "properties": {"build": {"type": "string"}, "develop": {"type": "string"}, "format": {"type": "string"}, "serve": {"type": "string"}}, "required": ["build", "develop", "format", "serve"]}, "dependencies": {"type": "object", "properties": {"dotenv": {"type": "string"}, "gatsby": {"type": "string"}, "gatsby-plugin-google-analytics": {"type": "string"}, "gatsby-plugin-react-helmet": {"type": "string"}, "gatsby-source-filesystem": {"type": "string"}, "gatsby-transformer-remark": {"type": "string"}, "react": {"type": "string"}, "react-dom": {"type": "string"}, "react-fontawesome": {"type": "string"}, "react-helmet": {"type": "string"}}, "required": ["dotenv", "gatsby", "gatsby-plugin-google-analytics", "gatsby-plugin-react-helmet", "gatsby-source-filesystem", "gatsby-transformer-remark", "react", "react-dom", "react-fontawesome", "react-helmet"]}, "devDependencies": {"type": "object", "properties": {"gatsby-plugin-root-import": {"type": "string"}, "prettier": {"type": "string"}}, "required": ["gatsby-plugin-root-import", "prettier"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "prettier": {"type": "object", "properties": {"singleQuote": {"type": "boolean"}, "trailingComma": {"type": "string"}}, "required": ["singleQuote", "trailingComma"]}}, "required": ["name", "private", "description", "version", "license", "scripts", "dependencies", "devDependencies", "repository", "prettier"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "jonathan-palma-website", "private" : true, "description" : "Jonathan Palma's personal website", "version" : "0.1.1", "license" : "MIT", "scripts" : {"build" : "gatsby build", "develop" : "gatsby develop", "format" : "prettier --write src/**/*.{js,jsx}", "serve" : "gatsby serve"}, "dependencies" : {"dotenv" : "^8.2.0", "gatsby" : "^2.17.7", "gatsby-plugin-google-analytics" : "^2.1.23", "gatsby-plugin-react-helmet" : "^3.1.13", "gatsby-source-filesystem" : "^2.1.35", "gatsby-transformer-remark" : "^2.6.32", "react" : "^16.11.0", "react-dom" : "^16.11.0", "react-fontawesome" : "^1.6.1", "react-helmet" : "^5.2.1"}, "devDependencies" : {"gatsby-plugin-root-import" : "^2.0.5", "prettier" : "^1.18.2"}, "repository" : {"type" : "git", "url" : "https://github.com/jonathanpalma/website"}, "prettier" : {"singleQuote" : true, "trailingComma" : "es5"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "private": {"type": "boolean"}, "description": {"type": "string"}, "version": {"type": "string"}, "license": {"type": "string"}, "scripts": {"type": "object", "properties": {"build": {"type": "string"}, "develop": {"type": "string"}, "format": {"type": "string"}, "serve": {"type": "string"}}, "required": ["build", "develop", "format", "serve"]}, "dependencies": {"type": "object", "properties": {"dotenv": {"type": "string"}, "gatsby": {"type": "string"}, "gatsby-plugin-google-analytics": {"type": "string"}, "gatsby-plugin-react-helmet": {"type": "string"}, "gatsby-source-filesystem": {"type": "string"}, "gatsby-transformer-remark": {"type": "string"}, "react": {"type": "string"}, "react-dom": {"type": "string"}, "react-fontawesome": {"type": "string"}, "react-helmet": {"type": "string"}}, "required": ["dotenv", "gatsby", "gatsby-plugin-google-analytics", "gatsby-plugin-react-helmet", "gatsby-source-filesystem", "gatsby-transformer-remark", "react", "react-dom", "react-fontawesome", "react-helmet"]}, "devDependencies": {"type": "object", "properties": {"gatsby-plugin-root-import": {"type": "string"}, "prettier": {"type": "string"}}, "required": ["gatsby-plugin-root-import", "prettier"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "prettier": {"type": "object", "properties": {"singleQuote": {"type": "boolean"}, "trailingComma": {"type": "string"}}, "required": ["singleQuote", "trailingComma"]}}, "required": ["name", "private", "description", "version", "license", "scripts", "dependencies", "devDependencies", "repository", "prettier"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"id": {"type": "string"}, "text": {"type": "string"}}, "required": ["id", "text"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : "d17-59", "text" : "June 6,1955\nSegreteria General\u00a9 \"Prix Italia\"*,\n% Bence. Nazlonale Del LaVoro-\nPlliale di Korea,\nVia Blssolati,\nHome, Italy.\nDear Sir:\nWe have requested the Chase National Bank of New York\nto forward to you 1,588 Swiss francs, these to be placed\nto your credit at the Banca Nazlonale Del Lavoro-F11iale\ndi Horn\u00a9*\nThis is the contribution of the National Association of\nEducational Broadcasters to the Prix Italia for 1955*\nWe are pleased to send our contribution and vie appreciate\nthe opportunity for the National Association of Educational\nBro'deesters to participate in the Prix Italia activity.\nVery cordially yours,\nR.J.Coleman, Treasurer\ncc: Mr. 3iegel\ncc: Nr. Skomla"}
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "text": {"type": "string"}}, "required": ["id", "text"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"ZSchema-browser-min.js": {"type": "string"}, "ZSchema-browser.js": {"type": "string"}}, "required": ["ZSchema-browser-min.js", "ZSchema-browser.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"ZSchema-browser-min.js" : "sha256-nUHBKnN85cNmwnPUCRp9SJhxEQxbUA8FV83xfAnrcDg=", "ZSchema-browser.js" : "sha256-TRupDOJQt6PX4bJ7VYMk3mMd3e7gK38JFM049lAH5Sg="}
json_instruct
{"type": "object", "properties": {"ZSchema-browser-min.js": {"type": "string"}, "ZSchema-browser.js": {"type": "string"}}, "required": ["ZSchema-browser-min.js", "ZSchema-browser.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"coordinate": {"type": "object", "properties": {"coordinate": {"type": "object", "properties": {"x": {"type": "integer"}, "y": {"type": "integer"}}, "required": ["x", "y"]}, "floor": {"type": "string"}}, "required": ["coordinate", "floor"]}, "identification": {"type": "integer"}, "route": {"type": "array", "items": {"type": "object", "properties": {"coordinate": {"type": "object", "properties": {"x": {"type": "integer"}, "y": {"type": "integer"}}, "required": ["x", "y"]}, "floor": {"type": "string"}}, "required": ["coordinate", "floor"]}}}, "required": ["coordinate", "identification", "route"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"coordinate" : {"coordinate" : {"x" : 1, "y" : 27}, "floor" : "floor_0"}, "identification" : 39, "route" : [{"coordinate" : {"x" : 1, "y" : 27}, "floor" : "floor_0"}, {"coordinate" : {"x" : 1, "y" : 26}, "floor" : "floor_0"}, {"coordinate" : {"x" : 1, "y" : 25}, "floor" : "floor_0"}, {"coordinate" : {"x" : 0, "y" : 24}, "floor" : "floor_0"}]}
json_instruct
{"type": "object", "properties": {"coordinate": {"type": "object", "properties": {"coordinate": {"type": "object", "properties": {"x": {"type": "integer"}, "y": {"type": "integer"}}, "required": ["x", "y"]}, "floor": {"type": "string"}}, "required": ["coordinate", "floor"]}, "identification": {"type": "integer"}, "route": {"type": "array", "items": {"type": "object", "properties": {"coordinate": {"type": "object", "properties": {"x": {"type": "integer"}, "y": {"type": "integer"}}, "required": ["x", "y"]}, "floor": {"type": "string"}}, "required": ["coordinate", "floor"]}}}, "required": ["coordinate", "identification", "route"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"languages": {"type": "array", "items": {"type": "string"}}, "instructions": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "filename": {"type": "string"}, "languages": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "description", "filename", "languages"]}}}, "required": ["languages", "instructions"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"languages" : ["C++", "Java", "Javascript", "Python"], "instructions" : [{"name" : "Hello World", "description" : "Classic example of programming: Print the text \"Hello World\"", "filename" : "hello-world", "languages" : ["C++", "Java", "Javascript", "Python"]}, {"name" : "Primitive data types", "description" : "Declaration of the main data types", "filename" : "data-types", "languages" : ["C++", "Java", "Javascript"]}, {"name" : "Arrays", "description" : "Data Collections", "filename" : "arrays", "languages" : ["C++", "Java", "Javascript", "Python"]}, {"name" : "Input/Output", "description" : "Reading and writing from the standard input/output", "filename" : "input-output", "languages" : ["C++", "Java", "Python"]}, {"name" : "Vectors", "description" : "Sequence container that encapsulates dynamic size arrays", "filename" : "vector", "languages" : ["C++", "Java", "Javascript", "Python"]}, {"name" : "Treeset", "description" : "Orderly collection without duplicate elements", "filename" : "treeset", "languages" : ["C++", "Java"]}]}
json_instruct
{"type": "object", "properties": {"languages": {"type": "array", "items": {"type": "string"}}, "instructions": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "filename": {"type": "string"}, "languages": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "description", "filename", "languages"]}}}, "required": ["languages", "instructions"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"type": {"type": "string"}, "id": {"type": "string"}, "properties": {"type": "object", "properties": {"amenity": {"type": "string"}, "building": {"type": "string"}, "name": {"type": "string"}, "source": {"type": "string"}, "wikidata": {"type": "string"}, "wikipedia": {"type": "string"}, "id": {"type": "string"}}, "required": ["amenity", "building", "name", "source", "wikidata", "wikipedia", "id"]}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "number"}}}, "required": ["type", "coordinates"]}}, "required": ["type", "id", "properties", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"type" : "Feature", "id" : "way/64971864", "properties" : {"amenity" : "marketplace", "building" : "yes", "name" : "March\u00e9 Central", "source" : "cadastre-dgi-fr source : Direction G\u00e9n\u00e9rale des Imp\u00f4ts - Cadastre;mise \u00e0 jour : 2010", "wikidata" : "Q3289847", "wikipedia" : "fr:March\u00e9 couvert de Nancy", "id" : "way/64971864"}, "geometry" : {"type" : "Point", "coordinates" : [6.1827789, 48.68936]}}
json_instruct
{"type": "object", "properties": {"type": {"type": "string"}, "id": {"type": "string"}, "properties": {"type": "object", "properties": {"amenity": {"type": "string"}, "building": {"type": "string"}, "name": {"type": "string"}, "source": {"type": "string"}, "wikidata": {"type": "string"}, "wikipedia": {"type": "string"}, "id": {"type": "string"}}, "required": ["amenity", "building", "name", "source", "wikidata", "wikipedia", "id"]}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "number"}}}, "required": ["type", "coordinates"]}}, "required": ["type", "id", "properties", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"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/css/2.400796ec.chunk.css": {"type": "string"}, "static/js/2.3c097907.chunk.js": {"type": "string"}, "static/js/2.3c097907.chunk.js.map": {"type": "string"}, "index.html": {"type": "string"}, "precache-manifest.64db8c445d8961100196ebcc138a18a7.js": {"type": "string"}, "service-worker.js": {"type": "string"}, "static/css/2.400796ec.chunk.css.map": {"type": "string"}, "static/css/main.df7e26cb.chunk.css.map": {"type": "string"}, "static/media/index.css": {"type": "string"}, "static/media/weather-icons.css": {"type": "string"}}, "required": ["main.css", "main.js", "main.js.map", "runtime~main.js", "runtime~main.js.map", "static/css/2.400796ec.chunk.css", "static/js/2.3c097907.chunk.js", "static/js/2.3c097907.chunk.js.map", "index.html", "precache-manifest.64db8c445d8961100196ebcc138a18a7.js", "service-worker.js", "static/css/2.400796ec.chunk.css.map", "static/css/main.df7e26cb.chunk.css.map", "static/media/index.css", "static/media/weather-icons.css"]}}, "required": ["files"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"files" : {"main.css" : "/static/css/main.df7e26cb.chunk.css", "main.js" : "/static/js/main.52cec099.chunk.js", "main.js.map" : "/static/js/main.52cec099.chunk.js.map", "runtime~main.js" : "/static/js/runtime~main.a8a9905a.js", "runtime~main.js.map" : "/static/js/runtime~main.a8a9905a.js.map", "static/css/2.400796ec.chunk.css" : "/static/css/2.400796ec.chunk.css", "static/js/2.3c097907.chunk.js" : "/static/js/2.3c097907.chunk.js", "static/js/2.3c097907.chunk.js.map" : "/static/js/2.3c097907.chunk.js.map", "index.html" : "/index.html", "precache-manifest.64db8c445d8961100196ebcc138a18a7.js" : "/precache-manifest.64db8c445d8961100196ebcc138a18a7.js", "service-worker.js" : "/service-worker.js", "static/css/2.400796ec.chunk.css.map" : "/static/css/2.400796ec.chunk.css.map", "static/css/main.df7e26cb.chunk.css.map" : "/static/css/main.df7e26cb.chunk.css.map", "static/media/index.css" : "/static/media/img.3c9f706c.jpg", "static/media/weather-icons.css" : "/static/media/weathericons-regular-webfont.ed0943f2.svg"}}
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/css/2.400796ec.chunk.css": {"type": "string"}, "static/js/2.3c097907.chunk.js": {"type": "string"}, "static/js/2.3c097907.chunk.js.map": {"type": "string"}, "index.html": {"type": "string"}, "precache-manifest.64db8c445d8961100196ebcc138a18a7.js": {"type": "string"}, "service-worker.js": {"type": "string"}, "static/css/2.400796ec.chunk.css.map": {"type": "string"}, "static/css/main.df7e26cb.chunk.css.map": {"type": "string"}, "static/media/index.css": {"type": "string"}, "static/media/weather-icons.css": {"type": "string"}}, "required": ["main.css", "main.js", "main.js.map", "runtime~main.js", "runtime~main.js.map", "static/css/2.400796ec.chunk.css", "static/js/2.3c097907.chunk.js", "static/js/2.3c097907.chunk.js.map", "index.html", "precache-manifest.64db8c445d8961100196ebcc138a18a7.js", "service-worker.js", "static/css/2.400796ec.chunk.css.map", "static/css/main.df7e26cb.chunk.css.map", "static/media/index.css", "static/media/weather-icons.css"]}}, "required": ["files"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"parent": {"type": "string"}}, "required": ["parent"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"parent" : "prettyplanks:block/pink_pretty_stairs"}
json_instruct
{"type": "object", "properties": {"parent": {"type": "string"}}, "required": ["parent"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"SERVICES_TABLE": {"type": "string"}, "REGION": {"type": "string"}}, "required": ["SERVICES_TABLE", "REGION"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"SERVICES_TABLE" : "{inst_stack_prefix}_services_dev", "REGION" : "{conf-region}"}
json_instruct
{"type": "object", "properties": {"SERVICES_TABLE": {"type": "string"}, "REGION": {"type": "string"}}, "required": ["SERVICES_TABLE", "REGION"], "$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": {"body-parser": {"type": "string"}, "express": {"type": "string"}, "express-handlebars": {"type": "string"}, "handlebars": {"type": "string"}, "nodemon": {"type": "string"}, "npm": {"type": "string"}, "npm-check-updates": {"type": "string"}, "rendr-handlebars": {"type": "string"}}, "required": ["body-parser", "express", "express-handlebars", "handlebars", "nodemon", "npm", "npm-check-updates", "rendr-handlebars"]}, "devDependencies": {"type": "object", "properties": {"babel-preset-es2017": {"type": "string"}, "babel-preset-latest": {"type": "string"}}, "required": ["babel-preset-es2017", "babel-preset-latest"]}}, "required": ["name", "version", "description", "main", "scripts", "author", "license", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "a3-express", "version" : "1.0.0", "description" : "Creating 'search' feature using Express and basic templating to 'list' application", "main" : "index.js", "scripts" : {"test" : "echo \"Error: no test specified\" && exit 1"}, "author" : "Jesse Hernandez", "license" : "ISC", "dependencies" : {"body-parser" : "^1.18.3", "express" : "^4.16.3", "express-handlebars" : "^3.0.0", "handlebars" : "^4.0.11", "nodemon" : "^1.17.5", "npm" : "^6.1.0", "npm-check-updates" : "^2.14.2", "rendr-handlebars" : "^1.0.0"}, "devDependencies" : {"babel-preset-es2017" : "^6.24.1", "babel-preset-latest" : "^6.24.1"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"body-parser": {"type": "string"}, "express": {"type": "string"}, "express-handlebars": {"type": "string"}, "handlebars": {"type": "string"}, "nodemon": {"type": "string"}, "npm": {"type": "string"}, "npm-check-updates": {"type": "string"}, "rendr-handlebars": {"type": "string"}}, "required": ["body-parser", "express", "express-handlebars", "handlebars", "nodemon", "npm", "npm-check-updates", "rendr-handlebars"]}, "devDependencies": {"type": "object", "properties": {"babel-preset-es2017": {"type": "string"}, "babel-preset-latest": {"type": "string"}}, "required": ["babel-preset-es2017", "babel-preset-latest"]}}, "required": ["name", "version", "description", "main", "scripts", "author", "license", "dependencies", "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"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "number"}}}, "required": ["type", "coordinates"]}, "properties": {"type": "object", "properties": {"site-address": {"type": "string"}, "minimum-net-dwellings": {"type": "string"}, "maximum-net-dwellings": {"type": "string"}, "hectares": {"type": "string"}, "site": {"type": "string"}, "site-plan-url": {"type": "string"}, "planning-permission-type": {"type": "string"}, "ownership-status": {"type": "string"}, "organisation": {"type": "string"}, "planning-permission-status": {"type": "string"}, "point": {"type": "string"}, "name": {"type": "string"}, "deliverable": {"type": "string"}, "start-date": {"type": "string"}, "planning-permission-date": {"type": "string"}, "slug": {"type": "string"}, "entity": {"type": "integer"}, "entry-date": {"type": "string"}}, "required": ["site-address", "minimum-net-dwellings", "maximum-net-dwellings", "hectares", "site", "site-plan-url", "planning-permission-type", "ownership-status", "organisation", "planning-permission-status", "point", "name", "deliverable", "start-date", "planning-permission-date", "slug", "entity", "entry-date"]}}, "required": ["type", "geometry", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"type" : "Feature", "geometry" : {"type" : "Point", "coordinates" : [-2.744534, 52.705383]}, "properties" : {"site-address" : "Car Park And Premises, Old Coleham, Shrewsbury, SY3 7BP", "minimum-net-dwellings" : "43", "maximum-net-dwellings" : "43", "hectares" : "0.29", "site" : "17/01697/OUT", "site-plan-url" : "https://shropshire.maps.arcgis.com/apps/webappviewer/index.html?id=25b8fd6ba2fb4c878775a1aaea210576", "planning-permission-type" : "reserved matters approval", "ownership-status" : "not owned by a public authority", "organisation" : "local-authority-eng:SHR", "planning-permission-status" : "permissioned", "point" : "POINT(-2.744534 52.705383)", "name" : "17/01697/OUT", "deliverable" : "yes", "start-date" : "2020-03-20", "planning-permission-date" : "2019-11-04", "slug" : "/brownfield-land/local-authority-eng/SHR/17-01697-OUT", "entity" : 493515, "entry-date" : "2020-03-20"}}
json_instruct
{"type": "object", "properties": {"type": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "number"}}}, "required": ["type", "coordinates"]}, "properties": {"type": "object", "properties": {"site-address": {"type": "string"}, "minimum-net-dwellings": {"type": "string"}, "maximum-net-dwellings": {"type": "string"}, "hectares": {"type": "string"}, "site": {"type": "string"}, "site-plan-url": {"type": "string"}, "planning-permission-type": {"type": "string"}, "ownership-status": {"type": "string"}, "organisation": {"type": "string"}, "planning-permission-status": {"type": "string"}, "point": {"type": "string"}, "name": {"type": "string"}, "deliverable": {"type": "string"}, "start-date": {"type": "string"}, "planning-permission-date": {"type": "string"}, "slug": {"type": "string"}, "entity": {"type": "integer"}, "entry-date": {"type": "string"}}, "required": ["site-address", "minimum-net-dwellings", "maximum-net-dwellings", "hectares", "site", "site-plan-url", "planning-permission-type", "ownership-status", "organisation", "planning-permission-status", "point", "name", "deliverable", "start-date", "planning-permission-date", "slug", "entity", "entry-date"]}}, "required": ["type", "geometry", "properties"], "$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"}, "guid": {"type": "string"}, "isActive": {"type": "boolean"}, "name": {"type": "string"}, "username": {"type": "string"}, "password": {"type": "integer"}, "email": {"type": "string"}}, "required": ["id", "guid", "isActive", "name", "username", "password", "email"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"id" : "1", "guid" : "63faa34f-7b7b-4bdd-bace-2df50da08e79", "isActive" : true, "name" : "Robinson Holt", "username" : "admin", "password" : 123, "email" : "bethholt@comvey.com"}, {"id" : "2", "guid" : "3e917701-0fa9-4565-b9d3-1a23e6badf76", "isActive" : false, "name" : "Nancy Terrell", "username" : "client", "password" : 123, "email" : "jessicaterrell@comvey.com"}, {"id" : "3", "guid" : "488c386e-343c-4c44-b4b3-0c491504d3ae", "isActive" : true, "name" : "Galloway Harmon", "username" : "user", "password" : 123, "email" : "lynetteharmon@comvey.com"}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "guid": {"type": "string"}, "isActive": {"type": "boolean"}, "name": {"type": "string"}, "username": {"type": "string"}, "password": {"type": "integer"}, "email": {"type": "string"}}, "required": ["id", "guid", "isActive", "name", "username", "password", "email"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"word" : "beak", "definition" : "1. (Zo\u00f6l.) (a) The bill or nib of a bird, consisting of a horny sheath, covering the jaws. The form varied much according to the food and habits of the bird, and is largely used in the classification of birds. (b) A similar bill in other animals, as the turtles. (c) The long projecting sucking mouth of some insects, and other invertebrates, as in the Hemiptera. (d) The upper or projecting part of the shell, near the hinge of a bivalve. (e) The prolongation of certain univalve shells containing the canal. 2. Anything projecting or ending in a point, like a beak, as a promontory of land. Carew. 3. (Antiq.) A beam, shod or armed at the end with a metal head or point, and projecting from the prow of an ancient galley, in order to pierce the vessel of an enemy; a beakhead. 4. (Naut.) That part of a ship, before the forecastle, which is fastened to the stem, and supported by the main knee. 5. (Arch.) A continuous slight projection ending in an arris or narrow fillet; that part of a drip from which the water is thrown off. 6. (Bot.) Any process somewhat like the beak of a bird, terminating the fruit or other parts of a plant. 7. (Far.) A toe clip. See Clip, n. (Far.). 8. A magistrate or policeman. [Slang, Eng.]"}
json_instruct
{"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"\u5de5\u5ee0\u540d\u7a31": {"type": "string"}, "\u5de5\u5ee0\u767b\u8a18\u7de8\u865f": {"type": "string"}, "\u5de5\u5ee0\u8a2d\u7acb\u8a31\u53ef\u6848\u865f": {"type": "string"}, "\u5de5\u5ee0\u5730\u5740": {"type": "string"}, "\u5de5\u5ee0\u5e02\u93ae\u9109\u6751\u91cc": {"type": "string"}, "\u5de5\u5ee0\u8ca0\u8cac\u4eba\u59d3\u540d": {"type": "string"}, "\u71df\u5229\u4e8b\u696d\u7d71\u4e00\u7de8\u865f": {"type": "string"}, "\u5de5\u5ee0\u7d44\u7e54\u578b\u614b": {"type": "string"}, "\u5de5\u5ee0\u8a2d\u7acb\u6838\u51c6\u65e5\u671f": {"type": "string"}, "\u5de5\u5ee0\u767b\u8a18\u6838\u51c6\u65e5\u671f": {"type": "string"}, "\u5de5\u5ee0\u767b\u8a18\u72c0\u614b": {"type": "string"}, "\u7522\u696d\u985e\u5225": {"type": "array", "items": {"type": "string"}}, "\u4e3b\u8981\u7522\u54c1": {"type": "array", "items": {"type": "string"}}}, "required": ["\u5de5\u5ee0\u540d\u7a31", "\u5de5\u5ee0\u767b\u8a18\u7de8\u865f", "\u5de5\u5ee0\u8a2d\u7acb\u8a31\u53ef\u6848\u865f", "\u5de5\u5ee0\u5730\u5740", "\u5de5\u5ee0\u5e02\u93ae\u9109\u6751\u91cc", "\u5de5\u5ee0\u8ca0\u8cac\u4eba\u59d3\u540d", "\u71df\u5229\u4e8b\u696d\u7d71\u4e00\u7de8\u865f", "\u5de5\u5ee0\u7d44\u7e54\u578b\u614b", "\u5de5\u5ee0\u8a2d\u7acb\u6838\u51c6\u65e5\u671f", "\u5de5\u5ee0\u767b\u8a18\u6838\u51c6\u65e5\u671f", "\u5de5\u5ee0\u767b\u8a18\u72c0\u614b", "\u7522\u696d\u985e\u5225", "\u4e3b\u8981\u7522\u54c1"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"\u5de5\u5ee0\u540d\u7a31" : "\u665f\u660c\u6a5f\u68b0\u80a1\u4efd\u6709\u9650\u516c\u53f8", "\u5de5\u5ee0\u767b\u8a18\u7de8\u865f" : "99650544", "\u5de5\u5ee0\u8a2d\u7acb\u8a31\u53ef\u6848\u865f" : "06210000122914", "\u5de5\u5ee0\u5730\u5740" : "\u5f70\u5316\u7e23\u57d4\u5fc3\u9109\u74e6\u5357\u6751\u4e09\u6c11\u8def\uff12\uff11\uff16\u865f", "\u5de5\u5ee0\u5e02\u93ae\u9109\u6751\u91cc" : "\u5f70\u5316\u7e23\u57d4\u5fc3\u9109\u74e6\u5357\u6751", "\u5de5\u5ee0\u8ca0\u8cac\u4eba\u59d3\u540d" : "\u5289\u6728\u5973\u3000\u3000\u3000", "\u71df\u5229\u4e8b\u696d\u7d71\u4e00\u7de8\u865f" : "60296294", "\u5de5\u5ee0\u7d44\u7e54\u578b\u614b" : "\u80a1\u4efd\u6709\u9650\u516c\u53f8", "\u5de5\u5ee0\u8a2d\u7acb\u6838\u51c6\u65e5\u671f" : "0620914", "\u5de5\u5ee0\u767b\u8a18\u6838\u51c6\u65e5\u671f" : "0631221", "\u5de5\u5ee0\u767b\u8a18\u72c0\u614b" : "\u751f\u7522\u4e2d", "\u7522\u696d\u985e\u5225" : ["25\u91d1\u5c6c\u88fd\u54c1\u88fd\u9020\u696d", "31\u5176\u4ed6\u904b\u8f38\u5de5\u5177\u53ca\u5176\u96f6\u4ef6\u88fd\u9020\u696d"], "\u4e3b\u8981\u7522\u54c1" : ["251\u91d1\u5c6c\u624b\u5de5\u5177\u53ca\u6a21\u5177", "253\u91d1\u5c6c\u5bb9\u5668", "312\u6a5f\u8eca\u53ca\u5176\u96f6\u4ef6", "313\u81ea\u884c\u8eca\u53ca\u5176\u96f6\u4ef6"]}
json_instruct
{"type": "object", "properties": {"\u5de5\u5ee0\u540d\u7a31": {"type": "string"}, "\u5de5\u5ee0\u767b\u8a18\u7de8\u865f": {"type": "string"}, "\u5de5\u5ee0\u8a2d\u7acb\u8a31\u53ef\u6848\u865f": {"type": "string"}, "\u5de5\u5ee0\u5730\u5740": {"type": "string"}, "\u5de5\u5ee0\u5e02\u93ae\u9109\u6751\u91cc": {"type": "string"}, "\u5de5\u5ee0\u8ca0\u8cac\u4eba\u59d3\u540d": {"type": "string"}, "\u71df\u5229\u4e8b\u696d\u7d71\u4e00\u7de8\u865f": {"type": "string"}, "\u5de5\u5ee0\u7d44\u7e54\u578b\u614b": {"type": "string"}, "\u5de5\u5ee0\u8a2d\u7acb\u6838\u51c6\u65e5\u671f": {"type": "string"}, "\u5de5\u5ee0\u767b\u8a18\u6838\u51c6\u65e5\u671f": {"type": "string"}, "\u5de5\u5ee0\u767b\u8a18\u72c0\u614b": {"type": "string"}, "\u7522\u696d\u985e\u5225": {"type": "array", "items": {"type": "string"}}, "\u4e3b\u8981\u7522\u54c1": {"type": "array", "items": {"type": "string"}}}, "required": ["\u5de5\u5ee0\u540d\u7a31", "\u5de5\u5ee0\u767b\u8a18\u7de8\u865f", "\u5de5\u5ee0\u8a2d\u7acb\u8a31\u53ef\u6848\u865f", "\u5de5\u5ee0\u5730\u5740", "\u5de5\u5ee0\u5e02\u93ae\u9109\u6751\u91cc", "\u5de5\u5ee0\u8ca0\u8cac\u4eba\u59d3\u540d", "\u71df\u5229\u4e8b\u696d\u7d71\u4e00\u7de8\u865f", "\u5de5\u5ee0\u7d44\u7e54\u578b\u614b", "\u5de5\u5ee0\u8a2d\u7acb\u6838\u51c6\u65e5\u671f", "\u5de5\u5ee0\u767b\u8a18\u6838\u51c6\u65e5\u671f", "\u5de5\u5ee0\u767b\u8a18\u72c0\u614b", "\u7522\u696d\u985e\u5225", "\u4e3b\u8981\u7522\u54c1"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"}
["chrobject"]
json_instruct
{"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"angular-ie-compat.js": {"type": "string"}, "angular-ie-compat.min.js": {"type": "string"}, "angular-mocks.js": {"type": "string"}, "angular-mocks.min.js": {"type": "string"}, "angular-scenario.js": {"type": "string"}, "angular-scenario.min.js": {"type": "string"}, "angular.js": {"type": "string"}, "angular.min.js": {"type": "string"}}, "required": ["angular-ie-compat.js", "angular-ie-compat.min.js", "angular-mocks.js", "angular-mocks.min.js", "angular-scenario.js", "angular-scenario.min.js", "angular.js", "angular.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"angular-ie-compat.js" : "sha256-SWrl3P2ygJou5pMrQf1D/1ZL3K0/ulK0HAvdSWtxx5g=", "angular-ie-compat.min.js" : "sha256-nacr3AWQU6Fire4ezl7v+q8yrRYNbMfEqzC6IHKaIBM=", "angular-mocks.js" : "sha256-ARbgTw0QA91PCPLUqENgQxC3aXeva+4KNK+BbrdjJhA=", "angular-mocks.min.js" : "sha256-jsTjTZtw2QljAQBCFggsQy/QHoBCeOQ8PivW/rkjzfA=", "angular-scenario.js" : "sha256-HHfUQ8Mi4kP5ACsRWMQABFp5sD399xqgsleO8AF4da0=", "angular-scenario.min.js" : "sha256-4R58O6tAQ5O24ADUlLnYxtPu2bJsCPueobtXfdO/FLg=", "angular.js" : "sha256-hgpLdw7x5yIqn6moYOhofkgyH9cEQypFguEtpjLN+xA=", "angular.min.js" : "sha256-T9YkSyA56YfFLtsOPUqOatQePjUiCINmfqHkcbugueo="}
json_instruct
{"type": "object", "properties": {"angular-ie-compat.js": {"type": "string"}, "angular-ie-compat.min.js": {"type": "string"}, "angular-mocks.js": {"type": "string"}, "angular-mocks.min.js": {"type": "string"}, "angular-scenario.js": {"type": "string"}, "angular-scenario.min.js": {"type": "string"}, "angular.js": {"type": "string"}, "angular.min.js": {"type": "string"}}, "required": ["angular-ie-compat.js", "angular-ie-compat.min.js", "angular-mocks.js", "angular-mocks.min.js", "angular-scenario.js", "angular-scenario.min.js", "angular.js", "angular.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "repository": {"type": "string"}, "author": {"type": "string"}, "license": {"type": "string"}, "private": {"type": "boolean"}, "dependencies": {"type": "object", "properties": {"@hot-loader/react-dom": {"type": "string"}, "dotenv": {"type": "string"}, "express": {"type": "string"}, "mongodb": {"type": "string"}, "react": {"type": "string"}, "react-dom": {"type": "string"}, "react-hot-loader": {"type": "string"}}, "required": ["@hot-loader/react-dom", "dotenv", "express", "mongodb", "react", "react-dom", "react-hot-loader"]}, "devDependencies": {"type": "object", "properties": {"@babel/core": {"type": "string"}, "@babel/preset-env": {"type": "string"}, "@babel/preset-react": {"type": "string"}, "babel-loader": {"type": "string"}, "nodemon": {"type": "string"}, "webpack": {"type": "string"}, "webpack-cli": {"type": "string"}, "webpack-dev-middleware": {"type": "string"}, "webpack-hot-middleware": {"type": "string"}, "webpack-node-externals": {"type": "string"}}, "required": ["@babel/core", "@babel/preset-env", "@babel/preset-react", "babel-loader", "nodemon", "webpack", "webpack-cli", "webpack-dev-middleware", "webpack-hot-middleware", "webpack-node-externals"]}, "scripts": {"type": "object", "properties": {"dev": {"type": "string"}, "build": {"type": "string"}, "start": {"type": "string"}}, "required": ["dev", "build", "start"]}}, "required": ["name", "version", "description", "main", "repository", "author", "license", "private", "dependencies", "devDependencies", "scripts"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "mern-simplesetup", "version" : "1.0.0", "description" : "A simple and from scratch setup of MERN (MongoDB, ExpressJS, ReactJS and NodeJS) setup environment.", "main" : "template.js", "repository" : "git@github.com:ehimare369/mern-simple-setup.git", "author" : "Ehimare Okosun <ehimare369@gmail.com>", "license" : "MIT", "private" : false, "dependencies" : {"@hot-loader/react-dom" : "^17.0.1", "dotenv" : "^8.2.0", "express" : "^4.17.1", "mongodb" : "^3.6.3", "react" : "^17.0.1", "react-dom" : "^17.0.1", "react-hot-loader" : "^4.13.0"}, "devDependencies" : {"@babel/core" : "^7.12.10", "@babel/preset-env" : "^7.12.10", "@babel/preset-react" : "^7.12.10", "babel-loader" : "^8.2.2", "nodemon" : "^2.0.6", "webpack" : "^5.10.0", "webpack-cli" : "^4.2.0", "webpack-dev-middleware" : "^4.0.2", "webpack-hot-middleware" : "^2.25.0", "webpack-node-externals" : "^2.5.2"}, "scripts" : {"dev" : "nodemon", "build" : "webpack --config webpack.config.client.production.js && webpack --mode=production --config webpack.config.server.js", "start" : "NODE_ENV=production node ./dist/server.generated.js"}}
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": {"@hot-loader/react-dom": {"type": "string"}, "dotenv": {"type": "string"}, "express": {"type": "string"}, "mongodb": {"type": "string"}, "react": {"type": "string"}, "react-dom": {"type": "string"}, "react-hot-loader": {"type": "string"}}, "required": ["@hot-loader/react-dom", "dotenv", "express", "mongodb", "react", "react-dom", "react-hot-loader"]}, "devDependencies": {"type": "object", "properties": {"@babel/core": {"type": "string"}, "@babel/preset-env": {"type": "string"}, "@babel/preset-react": {"type": "string"}, "babel-loader": {"type": "string"}, "nodemon": {"type": "string"}, "webpack": {"type": "string"}, "webpack-cli": {"type": "string"}, "webpack-dev-middleware": {"type": "string"}, "webpack-hot-middleware": {"type": "string"}, "webpack-node-externals": {"type": "string"}}, "required": ["@babel/core", "@babel/preset-env", "@babel/preset-react", "babel-loader", "nodemon", "webpack", "webpack-cli", "webpack-dev-middleware", "webpack-hot-middleware", "webpack-node-externals"]}, "scripts": {"type": "object", "properties": {"dev": {"type": "string"}, "build": {"type": "string"}, "start": {"type": "string"}}, "required": ["dev", "build", "start"]}}, "required": ["name", "version", "description", "main", "repository", "author", "license", "private", "dependencies", "devDependencies", "scripts"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"_name": {"type": "string"}, "_direction": {"type": "string"}, "$1 was deleted.": {"type": "string"}, "Add": {"type": "string"}, "Add a new $1": {"type": "string"}, "Admin": {"type": "string"}, "Are you sure you want to delete $1?": {"type": "string"}, "Delete": {"type": "string"}, "Deleted": {"type": "string"}, "Edit": {"type": "string"}, "Never mind": {"type": "string"}, "New": {"type": "string"}, "No Documents.": {"type": "string"}, "Order": {"type": "string"}, "Save New Order": {"type": "string"}, "Remove": {"type": "string"}, "Save": {"type": "string"}, "Saved!": {"type": "string"}, "Untitled": {"type": "string"}, "Welcome!": {"type": "string"}, "There was a problem :(": {"type": "string"}, "Upload": {"type": "string"}, "Stop Upload": {"type": "string"}, "Select File": {"type": "string"}, "Select Files": {"type": "string"}}, "required": ["_name", "_direction", "$1 was deleted.", "Add", "Add a new $1", "Admin", "Are you sure you want to delete $1?", "Delete", "Deleted", "Edit", "Never mind", "New", "No Documents.", "Order", "Save New Order", "Remove", "Save", "Saved!", "Untitled", "Welcome!", "There was a problem :(", "Upload", "Stop Upload", "Select File", "Select Files"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"_name" : "\u05e2\u05d1\u05e8\u05d9\u05ea", "_direction" : "rtl", "$1 was deleted." : "$1 \u05e0\u05de\u05d7\u05e7/\u05d4.", "Add" : "\u05d4\u05d5\u05e1\u05e4\u05d4", "Add a new $1" : "\u05d9\u05e6\u05d9\u05e8\u05ea $1", "Admin" : "\u05e0\u05d9\u05d4\u05d5\u05dc", "Are you sure you want to delete $1?" : "\u05dc\u05de\u05d7\u05d5\u05e7 \u05dc\u05d2\u05de\u05e8\u05d9 \u05d0\u05ea $1?", "Delete" : "\u05de\u05d7\u05d9\u05e7\u05d4", "Deleted" : "\u05e0\u05de\u05d7\u05e7", "Edit" : "\u05e2\u05e8\u05d9\u05db\u05d4", "Never mind" : "\u05dc\u05d0 \u05de\u05e9\u05e0\u05d4", "New" : "\u05d7\u05d3\u05e9", "No Documents." : "\u05d0\u05d9\u05df \u05e2\u05d3\u05d9\u05d9\u05df.", "Order" : "\u05e1\u05d3\u05e8", "Save New Order" : "\u05e9\u05de\u05d5\u05e8 \u05e1\u05d9\u05d3\u05d5\u05e8", "Remove" : "\u05de\u05d7\u05d9\u05e7\u05d4", "Save" : "\u05e9\u05de\u05d9\u05e8\u05d4", "Saved!" : "\u05e0\u05e9\u05de\u05e8!", "Untitled" : "\u05dc\u05dc\u05d0\u05be\u05e9\u05dd", "Welcome!" : "\u05d1\u05e8\u05d5\u05db\u05d9\u05dd \u05d4\u05d1\u05d0\u05d9\u05dd!", "There was a problem :(" : "\u05d9\u05e9 \u05d1\u05e2\u05d9\u05d4 ):", "Upload" : "\u05d4\u05e2\u05dc\u05d0\u05d4", "Stop Upload" : "\u05d4\u05e4\u05e1\u05e7 \u05d4\u05e2\u05dc\u05d0\u05d4", "Select File" : "\u05d1\u05d7\u05e8 \u05e7\u05d5\u05d1\u05e5", "Select Files" : "\u05d1\u05d7\u05e8 \u05e7\u05d1\u05e6\u05d9\u05dd"}
json_instruct
{"type": "object", "properties": {"_name": {"type": "string"}, "_direction": {"type": "string"}, "$1 was deleted.": {"type": "string"}, "Add": {"type": "string"}, "Add a new $1": {"type": "string"}, "Admin": {"type": "string"}, "Are you sure you want to delete $1?": {"type": "string"}, "Delete": {"type": "string"}, "Deleted": {"type": "string"}, "Edit": {"type": "string"}, "Never mind": {"type": "string"}, "New": {"type": "string"}, "No Documents.": {"type": "string"}, "Order": {"type": "string"}, "Save New Order": {"type": "string"}, "Remove": {"type": "string"}, "Save": {"type": "string"}, "Saved!": {"type": "string"}, "Untitled": {"type": "string"}, "Welcome!": {"type": "string"}, "There was a problem :(": {"type": "string"}, "Upload": {"type": "string"}, "Stop Upload": {"type": "string"}, "Select File": {"type": "string"}, "Select Files": {"type": "string"}}, "required": ["_name", "_direction", "$1 was deleted.", "Add", "Add a new $1", "Admin", "Are you sure you want to delete $1?", "Delete", "Deleted", "Edit", "Never mind", "New", "No Documents.", "Order", "Save New Order", "Remove", "Save", "Saved!", "Untitled", "Welcome!", "There was a problem :(", "Upload", "Stop Upload", "Select File", "Select Files"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"responses": {"type": "array", "items": {"type": "object", "properties": {"labelAnnotations": {"type": "array", "items": {"type": "object", "properties": {"mid": {"type": "string"}, "description": {"type": "string"}, "score": {"type": "number"}, "topicality": {"type": "number"}}, "required": ["mid", "description", "score", "topicality"]}}}, "required": ["labelAnnotations"]}}}, "required": ["responses"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"responses" : [{"labelAnnotations" : [{"mid" : "/m/01bqvp", "description" : "Sky", "score" : 0.99341238, "topicality" : 0.99341238}, {"mid" : "/m/0csby", "description" : "Cloud", "score" : 0.98200577, "topicality" : 0.98200577}, {"mid" : "/m/05h0n", "description" : "Nature", "score" : 0.96338564, "topicality" : 0.96338564}, {"mid" : "/m/03d28y3", "description" : "Natural landscape", "score" : 0.95744997, "topicality" : 0.95744997}, {"mid" : "/m/01g5v", "description" : "Blue", "score" : 0.93717742, "topicality" : 0.93717742}, {"mid" : "/m/02q7ylj", "description" : "Daytime", "score" : 0.93270046, "topicality" : 0.93270046}, {"mid" : "/m/01ctsf", "description" : "Atmosphere", "score" : 0.89842534, "topicality" : 0.89842534}, {"mid" : "/m/07j7r", "description" : "Tree", "score" : 0.89677089, "topicality" : 0.89677089}, {"mid" : "/m/07pw27b", "description" : "Atmospheric phenomenon", "score" : 0.87482101, "topicality" : 0.87482101}, {"mid" : "/m/0d1n2", "description" : "Horizon", "score" : 0.85868371, "topicality" : 0.85868371}]}]}
json_instruct
{"type": "object", "properties": {"responses": {"type": "array", "items": {"type": "object", "properties": {"labelAnnotations": {"type": "array", "items": {"type": "object", "properties": {"mid": {"type": "string"}, "description": {"type": "string"}, "score": {"type": "number"}, "topicality": {"type": "number"}}, "required": ["mid", "description", "score", "topicality"]}}}, "required": ["labelAnnotations"]}}}, "required": ["responses"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"navigationBarTitleText": {"type": "string"}, "enablePullDownRefresh": {"type": "boolean"}, "usingComponents": {"type": "object", "properties": {"news-item": {"type": "string"}}, "required": ["news-item"]}}, "required": ["navigationBarTitleText", "enablePullDownRefresh", "usingComponents"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"navigationBarTitleText" : "\u65b0\u95fb\u5feb\u8baf", "enablePullDownRefresh" : true, "usingComponents" : {"news-item" : "/components/news-item"}}
json_instruct
{"type": "object", "properties": {"navigationBarTitleText": {"type": "string"}, "enablePullDownRefresh": {"type": "boolean"}, "usingComponents": {"type": "object", "properties": {"news-item": {"type": "string"}}, "required": ["news-item"]}}, "required": ["navigationBarTitleText", "enablePullDownRefresh", "usingComponents"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"feedstocks": {"type": "array", "items": {"type": "string"}}}, "required": ["feedstocks"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"feedstocks" : ["stashy"]}
json_instruct
{"type": "object", "properties": {"feedstocks": {"type": "array", "items": {"type": "string"}}}, "required": ["feedstocks"], "$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" : "130705102201", "text" : "\u4e2d\u5d1e\u6751\u6751\u59d4\u4f1a"}, {"id" : "130705102202", "text" : "\u5206\u6c34\u53e3\u6751\u59d4\u4f1a"}, {"id" : "130705102203", "text" : "\u8f9b\u5bb6\u5e84\u6751\u59d4\u4f1a"}, {"id" : "130705102204", "text" : "\u738b\u5e84\u5b50\u6751\u59d4\u4f1a"}, {"id" : "130705102205", "text" : "\u9ed1\u53f0\u5b50\u6e7e\u6751\u59d4\u4f1a"}, {"id" : "130705102206", "text" : "\u79f0\u8fbe\u6c9f\u6751\u59d4\u4f1a"}, {"id" : "130705102207", "text" : "\u9f99\u95e8\u5761\u6751\u59d4\u4f1a"}, {"id" : "130705102208", "text" : "\u9f99\u95e8\u5821\u6751\u59d4\u4f1a"}, {"id" : "130705102209", "text" : "\u897f\u6cb3\u6751\u6751\u59d4\u4f1a"}, {"id" : "130705102210", "text" : "\u7acb\u77f3\u6751\u59d4\u4f1a"}, {"id" : "130705102211", "text" : "\u897f\u5d1e\u6751\u6751\u59d4\u4f1a"}, {"id" : "130705102212", "text" : "\u4e1c\u5d1e\u6751\u6751\u59d4\u4f1a"}, {"id" : "130705102213", "text" : "\u697c\u623f\u5b50\u6751\u59d4\u4f1a"}, {"id" : "130705102214", "text" : "\u5916\u53e3\u6cc9\u6751\u59d4\u4f1a"}, {"id" : "130705102215", "text" : "\u91cc\u53e3\u6cc9\u6751\u59d4\u4f1a"}, {"id" : "130705102216", "text" : "\u9ec4\u5bb6\u6881\u6751\u59d4\u4f1a"}, {"id" : "130705102217", "text" : "\u8c37\u5cea\u53e3\u6751\u59d4\u4f1a"}, {"id" : "130705102218", "text" : "\u5bc7\u5bb6\u6c9f\u6751\u59d4\u4f1a"}, {"id" : "130705102219", "text" : "\u5f6d\u5bb6\u6e7e\u6751\u59d4\u4f1a"}, {"id" : "130705102220", "text" : "\u9ec4\u5bb6\u6e7e\u6751\u59d4\u4f1a"}, {"id" : "130705102221", "text" : "\u90ed\u5bb6\u6e7e\u6751\u59d4\u4f1a"}, {"id" : "130705102222", "text" : "\u5c0f\u53e3\u5b50\u6751\u59d4\u4f1a"}, {"id" : "130705102223", "text" : "\u674e\u5bb6\u5c6f\u6751\u59d4\u4f1a"}, {"id" : "130705102224", "text" : "\u59da\u5bb6\u5761\u6751\u59d4\u4f1a"}, {"id" : "130705102225", "text" : "\u6d77\u5b50\u6c9f\u6751\u59d4\u4f1a"}, {"id" : "130705102226", "text" : "\u67f4\u5bb6\u5e84\u6751\u59d4\u4f1a"}, {"id" : "130705102227", "text" : "\u4e0a\u5761\u5e95\u6751\u59d4\u4f1a"}, {"id" : "130705102228", "text" : "\u4e0b\u5761\u5e95\u6751\u59d4\u4f1a"}, {"id" : "130705102229", "text" : "\u67cf\u6797\u5bfa\u6751\u59d4\u4f1a"}, {"id" : "130705102230", "text" : "\u5b89\u5bb6\u53f0\u6751\u59d4\u4f1a"}, {"id" : "130705102231", "text" : "\u540e\u6c9f\u6751\u59d4\u4f1a"}, {"id" : "130705102232", "text" : "\u897f\u5bfa\u6c9f\u6751\u59d4\u4f1a"}, {"id" : "130705102233", "text" : "\u4e1c\u5bfa\u6c9f\u6751\u59d4\u4f1a"}, {"id" : "130705102234", "text" : "\u6c34\u6cc9\u6751\u59d4\u4f1a"}, {"id" : "130705102235", "text" : "\u5c0f\u897f\u5e84\u6751\u59d4\u4f1a"}, {"id" : "130705102236", "text" : "\u6986\u6797\u5b50\u6751\u59d4\u4f1a"}, {"id" : "130705102237", "text" : "\u77f3\u5899\u5b50\u6751\u59d4\u4f1a"}, {"id" : "130705102238", "text" : "\u515a\u5bb6\u6c9f\u6751\u59d4\u4f1a"}, {"id" : "130705102239", "text" : "\u8c22\u5bb6\u6881\u6751\u59d4\u4f1a"}, {"id" : "130705102240", "text" : "\u5357\u5cea\u6c9f\u6751\u59d4\u4f1a"}, {"id" : "130705102241", "text" : "\u77f3\u5206\u6751\u6751\u59d4\u4f1a"}, {"id" : "130705102242", "text" : "\u5be8\u5c71\u5761\u6751\u59d4\u4f1a"}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "text": {"type": "string"}}, "required": ["id", "text"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "array", "items": {"type": "object", "properties": {"label": {"type": "string"}, "normalizedVertices": {"type": "array", "items": {"type": "object", "properties": {"x": {"type": "number"}, "y": {"type": "number"}}, "required": ["x", "y"]}}, "score": {"type": "number"}}, "required": ["label", "normalizedVertices", "score"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"label" : "Picture frame", "normalizedVertices" : [{"x" : 0.024352955, "y" : 0.047882363}, {"x" : 0.9897647, "y" : 0.047882363}, {"x" : 0.9897647, "y" : 0.9568235}, {"x" : 0.024352955, "y" : 0.9568235}], "score" : 0.6035106}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"label": {"type": "string"}, "normalizedVertices": {"type": "array", "items": {"type": "object", "properties": {"x": {"type": "number"}, "y": {"type": "number"}}, "required": ["x", "y"]}}, "score": {"type": "number"}}, "required": ["label", "normalizedVertices", "score"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"id": {"type": "integer"}, "category": {"type": "object", "properties": {"name": {"type": "string"}, "subset": {"type": "string"}}, "required": ["name", "subset"]}, "help": {"type": "object", "properties": {"de": {"type": "string"}, "en": {"type": "string"}, "fr": {"type": "string"}, "jp": {"type": "string"}}, "required": ["de", "en", "fr", "jp"]}, "img": {"type": "string"}}, "required": ["id", "category", "help", "img"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : 1422, "category" : {"name" : "Exploration", "subset" : "Duty"}, "help" : {"de" : "Auf einer Expedition zum Diadem eine Bewertung von 400 oder mehr erreicht.", "en" : "Receive an evaluation of 400 or better on an exploratory mission to the Diadem.", "fr" : "Atteindre une \u00e9valuation de 400 dans Le Diad\u00e8me.", "jp" : "\u96f2\u6d77\u63a2\u7d22 \u30c7\u30a3\u30a2\u30c7\u30e0\u8af8\u5cf6\u306b\u3066\u3001\u521d\u3081\u3066\u6d3b\u52d5\u8a55\u4fa1400\u3092\u9054\u6210\u3059\u308b"}, "img" : "002000/002535.png"}
json_instruct
{"type": "object", "properties": {"id": {"type": "integer"}, "category": {"type": "object", "properties": {"name": {"type": "string"}, "subset": {"type": "string"}}, "required": ["name", "subset"]}, "help": {"type": "object", "properties": {"de": {"type": "string"}, "en": {"type": "string"}, "fr": {"type": "string"}, "jp": {"type": "string"}}, "required": ["de", "en", "fr", "jp"]}, "img": {"type": "string"}}, "required": ["id", "category", "help", "img"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"corpus": {"type": "array", "items": {"type": "string"}}, "question": {"type": "array", "items": {"type": "string"}}, "answer": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}}, "required": ["corpus", "question", "answer"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"corpus" : ["\u76ee\u524d", "\u5df2", "\u63ed\u9732", "\u5e74\u5831", "\u7684", "\u91d1\u63a7", "\u4e2d", "\u4ee5", "\u4e2d\u4fe1", "\u91d1\u63a7", "\u7e3d\u7d93\u7406", "\u5433\u4e00\u63c6", "\u5e74\u85aa", "1\u5104", "\u4ee5\u4e0a", "\u6700", "\u9ad8", "\u958b\u767c\u91d1", "\u5e74", "\u5831\u5230", "23\u65e5", "\u70ba\u6b62", "\u9084", "\u672a", "\u4e0a\u50b3", "\u4f46", "\u6839\u64da", "\u4e2d\u58fd", "\u5e74\u5831", "\u8eab\u517c", "\u958b\u767c\u91d1", "\u7e3d\u7d93\u7406", "\u7684", "\u4e2d\u58fd", "\u8463\u4e8b\u9577", "\u738b\u9298\u967d", "\u53bb\u5e74", "\u85aa\u916c", "\u5728", "5000\u842c", "\u5230", "1\u5104", "\u5143", "\u5bcc\u90a6\u91d1", "\u7e3d\u7d93\u7406", "\u97d3\u851a\u5ef7", "\u570b\u6cf0\u91d1", "\u7e3d\u7d93\u7406", "\u674e\u9577\u5e9a", "\u65b0\u5149\u91d1", "\u526f\u8463", "\u674e\u7d00\u73e0", "\u5e74\u85aa", "\u90fd", "\u5728", "3000\u842c5000\u842c", "\u5143", "\u81fa\u65b0\u91d1", "\u7e3d\u7d93\u7406", "\u6797\u7dad\u4fca", "\u5e74\u85aa", "1500\u842c3000\u842c", "\u5143", "\u65b0\u5149", "\u91d1\u63a7", "\u56e0\u70ba", "3", "\u540d", "\u7368\u8463", "\u5c0d", "\u526f\u8463", "\u674e\u7d00\u73e0", "\u85aa\u916c", "\u6301", "\u4e0d\u540c", "\u770b\u6cd5", "\u7a0d\u65e9", "\u524d", "\u5f15\u767c", "\u5e02\u5834", "\u71b1\u8b70", "\u6839\u64da", "\u65b0\u5149", "\u91d1\u5e74\u5831", "\u63ed\u9732", "\u674e\u7d00\u73e0", "\u542b", "\u8463\u76e3", "\u916c\u52de", "\u53ca", "\u54e1\u5de5", "\u85aa\u916c", "\u5e74", "\u6536\u5165", "\u5728", "3000\u842c", "\u5230", "5000\u842c", "\u5143", "\u4e4b\u9593", "\u8207", "\u65b0\u5149\u91d1", "\u8463\u4e8b\u9577", "\u5433\u6771\u9032", "\u540c", "\u4e00", "\u7b49\u7d1a", "\u5916\u754c", "\u5f62\u5bb9", "\u5979", "\u662f", "\u65b0\u5149", "\u91d1\u53f2", "\u4e0a", "\u6700", "\u9ad8\u85aa", "\u53d7\u50f1", "\u8005", "\u4f46", "\u6709", "\u4eba", "\u5e6b", "\u674e\u7d00\u73e0", "\u6253\u62b1\u4e0d\u5e73", "\u76f8\u95dc", "\u4eba\u58eb", "\u8868\u793a", "\u674e\u7d00\u73e0", "\u4eca\u5e74", "3\u6708", "\u624d", "\u8fad\u53bb", "\u65b0\u5149", "\u91d1\u63a7", "\u7e3d\u7d93\u7406", "\u8077\u52d9", "\u4f46", "\u53bb\u5e74", "\u9664", "\u64d4\u4efb", "\u65b0\u5149\u91d1", "\u7e3d\u7d93\u7406", "\u9084", "\u517c\u4efb", "\u91d1\u63a7", "\u526f\u8463", "\u53ca", "\u65b0\u5149", "\u4eba\u58fd", "\u526f\u8463", "3", "\u500b", "\u8077\u52d9", "\u4e26\u975e", "\u53ea", "\u64d4\u4efb", "1", "\u500b", "\u8077\u52d9", "\u9019", "\u7b46", "3000\u842c", "\u5230", "5000\u842c", "\u85aa\u916c", "\u4e2d", "\u6709", "\u5f88", "\u5927", "\u4e00\u90e8\u5206", "\u8fd1", "\u5343\u842c", "\u5143", "\u662f", "\u5148\u884c", "\u8a08\u5165", "\u7684", "\u9577\u671f", "\u6fc0\u52f5", "\u734e\u91d1", "\u82e5", "\u96e2\u8077", "\u5c31", "\u9818\u4e0d\u5230", "\u7531\u65bc", "\u591a\u6578", "\u91d1\u63a7", "\u9ad8\u968e", "\u7d93\u7406\u4eba", "\u90fd", "\u662f", "\u8207", "\u516c\u53f8", "\u7c3d\u7d04", "\u4e14", "\u4e5f", "\u591a\u534a", "\u6703", "\u5728", "\u4e00\u5b9a", "\u671f\u9593", "\u5167", "\u96e2\u8077", "\u4e0d\u6703", "\u5f85\u5230", "\u9000\u4f11", "\u6240\u4ee5", "\u5be6\u969b\u4e0a", "\u62ff\u4e0d\u5230", "\u9019\u9ebc\u591a", "\u9322", "\u6263\u6389", "\u8463\u76e3", "\u916c\u52de", "\u674e\u7d00\u73e0", "\u7684", "\u54e1\u5de5", "\u85aa\u916c", "\u662f", "1500\u842c", "\u5230", "3000\u842c", "\u5143", "\u8207", "\u674e\u7d00\u73e0", "\u7684", "\u524d\u4efb", "\u8a31\u6f8e", "\u4e5f", "\u662f", "\u65b0\u5149\u91d1", "\u526f\u8463", "\u517c", "\u7e3d\u7d93\u7406", "\u4e4b\u524d", "\u7684", "\u5e74\u85aa", "1500\u842c3000\u842c", "\u5143", "\u4e00\u6a23", "\u4e0d\u80fd", "\u7b97\u662f", "\u65b0\u5149", "\u91d1\u53f2", "\u4e0a", "\u6700", "\u9ad8", "\u674e\u7d00\u73e0", "\u53bb\u5e74", "\u7e3e\u6548", "\u8868\u73fe", "\u4f73", "\u65b0\u5149\u91d1", "\u7372\u5229", "\u53c8", "\u7ffb\u8f49", "\u9019\u6a23", "\u7684", "\u85aa\u8cc7", "\u6c34\u6e96", "\u5728", "\u696d\u754c", "\u53ea", "\u80fd", "\u8aaa", "\u5dee\u5f37\u4eba\u610f", "\u4e26", "\u6c92\u6709", "\u7279\u5225", "\u9ad8"], "question" : ["\u54ea", "\u5bb6", "\u91d1\u63a7", "\u7684", "\u7e3d\u7d93\u7406", "\u5e74\u85aa", "\u6700", "\u9ad8"], "answer" : [["\u5bcc\u90a6"], ["\u4e2d\u4fe1"], ["\u7389\u5c71"], ["\u570b\u6cf0"]]}
json_instruct
{"type": "object", "properties": {"corpus": {"type": "array", "items": {"type": "string"}}, "question": {"type": "array", "items": {"type": "string"}}, "answer": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}}, "required": ["corpus", "question", "answer"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"type": {"type": "string"}, "level": {"type": "string"}, "label": {"type": "string"}, "locale": {"type": "string"}, "country_id": {"type": "integer"}, "country_reference": {"type": "integer"}, "country_name": {"type": "string"}, "region_id": {"type": "string"}, "region_reference": {"type": "string"}, "region_name": {"type": "string"}, "province_id": {"type": "string"}, "province_reference": {"type": "string"}, "province_name": {"type": "string"}, "city_id": {"type": "string"}, "city_reference": {"type": "string"}, "city_name": {"type": "string"}, "barangay_id": {"type": "string"}, "barangay_reference": {"type": "string"}, "barangay_name": {"type": "string"}}, "required": ["type", "level", "label", "locale", "country_id", "country_reference", "country_name", "region_id", "region_reference", "region_name", "province_id", "province_reference", "province_name", "city_id", "city_reference", "city_name", "barangay_id", "barangay_reference", "barangay_name"]}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}}, "required": ["type", "coordinates"]}}, "required": ["type", "properties", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"type" : "Feature", "properties" : {"type" : "barangay", "level" : "4", "label" : "Alfaco, Naga City, Cebu, Central Visayas (Region VII), PH", "locale" : "ph.central-visayas-region-vii.cebu.naga-city.alfaco", "country_id" : 177, "country_reference" : 177, "country_name" : "Philippines", "region_id" : "7", "region_reference" : "7", "region_name" : "Central Visayas (Region VII)", "province_id" : "25", "province_reference" : "25", "province_name" : "Cebu", "city_id" : "902", "city_reference" : "474", "city_name" : "Naga City", "barangay_id" : "25871", "barangay_reference" : "11552", "barangay_name" : "Alfaco"}, "geometry" : {"type" : "MultiPolygon", "coordinates" : [[[[123.69207, 10.27436], [123.701103, 10.28352], [123.713982, 10.27242], [123.710861, 10.26715], [123.703308, 10.26951], [123.69207, 10.27436]]]]}}
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#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"require": {"type": "object", "properties": {"nexmo/client": {"type": "string"}, "vlucas/phpdotenv": {"type": "string"}}, "required": ["nexmo/client", "vlucas/phpdotenv"]}}, "required": ["require"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"require" : {"nexmo/client" : "^1.6", "vlucas/phpdotenv" : "^2.5"}}
json_instruct
{"type": "object", "properties": {"require": {"type": "object", "properties": {"nexmo/client": {"type": "string"}, "vlucas/phpdotenv": {"type": "string"}}, "required": ["nexmo/client", "vlucas/phpdotenv"]}}, "required": ["require"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"@discordjs/form-data": {"type": "string"}, "discord-anti-spam": {"type": "string"}, "discord.js": {"type": "string"}, "express": {"type": "string"}, "flatted": {"type": "string"}, "node-fetch": {"type": "string"}, "papaparse": {"type": "string"}, "setimmediate": {"type": "string"}, "winston": {"type": "string"}}, "required": ["@discordjs/form-data", "discord-anti-spam", "discord.js", "express", "flatted", "node-fetch", "papaparse", "setimmediate", "winston"]}}, "required": ["name", "version", "description", "main", "scripts", "author", "license", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "bot", "version" : "1.0.0", "description" : "", "main" : "app.js", "scripts" : {"test" : "echo \"Error: no test specified\" && exit 1"}, "author" : "", "license" : "ISC", "dependencies" : {"@discordjs/form-data" : "^3.0.1", "discord-anti-spam" : "2.5.0", "discord.js" : "^13.0.1", "express" : "^4.17.1", "flatted" : "^3.0.2", "node-fetch" : "^2.6.1", "papaparse" : "^5.2.0", "setimmediate" : "^1.0.5", "winston" : "^3.2.1"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"@discordjs/form-data": {"type": "string"}, "discord-anti-spam": {"type": "string"}, "discord.js": {"type": "string"}, "express": {"type": "string"}, "flatted": {"type": "string"}, "node-fetch": {"type": "string"}, "papaparse": {"type": "string"}, "setimmediate": {"type": "string"}, "winston": {"type": "string"}}, "required": ["@discordjs/form-data", "discord-anti-spam", "discord.js", "express", "flatted", "node-fetch", "papaparse", "setimmediate", "winston"]}}, "required": ["name", "version", "description", "main", "scripts", "author", "license", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"ref": {"type": "object", "properties": {"min": {"type": "number"}, "max": {"type": "number"}, "mean": {"type": "number"}}, "required": ["min", "max", "mean"]}, "ref_regrid": {"type": "object", "properties": {"min": {"type": "number"}, "max": {"type": "number"}, "mean": {"type": "number"}, "std": {"type": "number"}}, "required": ["min", "max", "mean", "std"]}, "test": {"type": "object", "properties": {"min": {"type": "number"}, "max": {"type": "number"}, "mean": {"type": "number"}}, "required": ["min", "max", "mean"]}, "test_regrid": {"type": "object", "properties": {"min": {"type": "number"}, "max": {"type": "number"}, "mean": {"type": "number"}, "std": {"type": "number"}}, "required": ["min", "max", "mean", "std"]}, "diff": {"type": "object", "properties": {"min": {"type": "number"}, "max": {"type": "number"}, "mean": {"type": "number"}}, "required": ["min", "max", "mean"]}, "misc": {"type": "object", "properties": {"rmse": {"type": "number"}, "corr": {"type": "number"}}, "required": ["rmse", "corr"]}, "unit": {"type": "string"}}, "required": ["ref", "ref_regrid", "test", "test_regrid", "diff", "misc", "unit"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"ref" : {"min" : 111.9739761352539, "max" : 313.2637023925781, "mean" : 263.66849094345207}, "ref_regrid" : {"min" : 111.9739761352539, "max" : 313.2637023925781, "mean" : 263.66849094345207, "std" : 31.61517472949274}, "test" : {"min" : 111.41442108154297, "max" : 314.9623107910156, "mean" : 262.3190268153721}, "test_regrid" : {"min" : 111.41442108154297, "max" : 314.9623107910156, "mean" : 262.3190268153721, "std" : 31.445357693045228}, "diff" : {"min" : -9.046951293945312, "max" : 7.9002227783203125, "mean" : -1.3494641280798663}, "misc" : {"rmse" : 2.399555245433522, "corr" : 0.9980345155948991}, "unit" : "W/m2"}
json_instruct
{"type": "object", "properties": {"ref": {"type": "object", "properties": {"min": {"type": "number"}, "max": {"type": "number"}, "mean": {"type": "number"}}, "required": ["min", "max", "mean"]}, "ref_regrid": {"type": "object", "properties": {"min": {"type": "number"}, "max": {"type": "number"}, "mean": {"type": "number"}, "std": {"type": "number"}}, "required": ["min", "max", "mean", "std"]}, "test": {"type": "object", "properties": {"min": {"type": "number"}, "max": {"type": "number"}, "mean": {"type": "number"}}, "required": ["min", "max", "mean"]}, "test_regrid": {"type": "object", "properties": {"min": {"type": "number"}, "max": {"type": "number"}, "mean": {"type": "number"}, "std": {"type": "number"}}, "required": ["min", "max", "mean", "std"]}, "diff": {"type": "object", "properties": {"min": {"type": "number"}, "max": {"type": "number"}, "mean": {"type": "number"}}, "required": ["min", "max", "mean"]}, "misc": {"type": "object", "properties": {"rmse": {"type": "number"}, "corr": {"type": "number"}}, "required": ["rmse", "corr"]}, "unit": {"type": "string"}}, "required": ["ref", "ref_regrid", "test", "test_regrid", "diff", "misc", "unit"], "$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" : "510723208001", "text" : "\u79c0\u5c71\u793e\u533a\u5c45\u6c11\u59d4\u5458\u4f1a"}, {"id" : "510723208201", "text" : "\u767d\u77f3\u6751\u6c11\u59d4\u5458\u4f1a"}, {"id" : "510723208202", "text" : "\u94c1\u57ad\u6751\u6c11\u59d4\u5458\u4f1a"}, {"id" : "510723208203", "text" : "\u89c9\u6797\u6751\u6c11\u59d4\u5458\u4f1a"}, {"id" : "510723208204", "text" : "\u767d\u6797\u6751\u6c11\u59d4\u5458\u4f1a"}, {"id" : "510723208205", "text" : "\u77f3\u8239\u6751\u6c11\u59d4\u5458\u4f1a"}, {"id" : "510723208206", "text" : "\u6850\u5761\u6751\u6c11\u59d4\u5458\u4f1a"}, {"id" : "510723208207", "text" : "\u9e45\u5cad\u6751\u6c11\u59d4\u5458\u4f1a"}, {"id" : "510723208208", "text" : "\u8499\u4e95\u6751\u6c11\u59d4\u5458\u4f1a"}, {"id" : "510723208209", "text" : "\u9a6c\u978d\u6751\u6c11\u59d4\u5458\u4f1a"}, {"id" : "510723208210", "text" : "\u9ad8\u6e20\u6751\u6c11\u59d4\u5458\u4f1a"}, {"id" : "510723208211", "text" : "\u77e5\u9662\u6751\u6c11\u59d4\u5458\u4f1a"}, {"id" : "510723208212", "text" : "\u7fa4\u4e50\u6751\u6c11\u59d4\u5458\u4f1a"}, {"id" : "510723208213", "text" : "\u4e1c\u5149\u6751\u6c11\u59d4\u5458\u4f1a"}, {"id" : "510723208214", "text" : "\u6c38\u548c\u6751\u6c11\u59d4\u5458\u4f1a"}, {"id" : "510723208215", "text" : "\u89e3\u653e\u6751\u6c11\u59d4\u5458\u4f1a"}, {"id" : "510723208216", "text" : "\u77f3\u5b9d\u6751\u6c11\u59d4\u5458\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#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "private": {"type": "boolean"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}}, "required": ["start"]}, "dependencies": {"type": "object", "properties": {"@metamask/detect-provider": {"type": "string"}, "body-parser": {"type": "string"}, "cookie-parser": {"type": "string"}, "debug": {"type": "string"}, "ejs": {"type": "string"}, "express": {"type": "string"}, "express-fileupload": {"type": "string"}, "express-session": {"type": "string"}, "http-errors": {"type": "string"}, "ipfs-api": {"type": "string"}, "js-alert": {"type": "string"}, "metamask-inpage-provider": {"type": "string"}, "mongodb": {"type": "string"}, "mongoose": {"type": "string"}, "morgan": {"type": "string"}, "multer": {"type": "string"}, "popups": {"type": "string"}, "ssh-tunnel": {"type": "string"}, "web3": {"type": "string"}}, "required": ["@metamask/detect-provider", "body-parser", "cookie-parser", "debug", "ejs", "express", "express-fileupload", "express-session", "http-errors", "ipfs-api", "js-alert", "metamask-inpage-provider", "mongodb", "mongoose", "morgan", "multer", "popups", "ssh-tunnel", "web3"]}}, "required": ["name", "version", "private", "scripts", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "sep09", "version" : "0.0.0", "private" : true, "scripts" : {"start" : "node app.js"}, "dependencies" : {"@metamask/detect-provider" : "^1.2.0", "body-parser" : "^1.19.0", "cookie-parser" : "~1.4.4", "debug" : "~2.6.9", "ejs" : "~2.6.1", "express" : "~4.16.1", "express-fileupload" : "^1.2.0", "express-session" : "^1.17.1", "http-errors" : "~1.6.3", "ipfs-api" : "^26.1.2", "js-alert" : "^1.0.4", "metamask-inpage-provider" : "^5.0.0", "mongodb" : "^3.6.2", "mongoose" : "^5.10.6", "morgan" : "~1.9.1", "multer" : "^1.4.2", "popups" : "^1.1.3", "ssh-tunnel" : "^2.3.23", "web3" : "^1.2.11"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "private": {"type": "boolean"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}}, "required": ["start"]}, "dependencies": {"type": "object", "properties": {"@metamask/detect-provider": {"type": "string"}, "body-parser": {"type": "string"}, "cookie-parser": {"type": "string"}, "debug": {"type": "string"}, "ejs": {"type": "string"}, "express": {"type": "string"}, "express-fileupload": {"type": "string"}, "express-session": {"type": "string"}, "http-errors": {"type": "string"}, "ipfs-api": {"type": "string"}, "js-alert": {"type": "string"}, "metamask-inpage-provider": {"type": "string"}, "mongodb": {"type": "string"}, "mongoose": {"type": "string"}, "morgan": {"type": "string"}, "multer": {"type": "string"}, "popups": {"type": "string"}, "ssh-tunnel": {"type": "string"}, "web3": {"type": "string"}}, "required": ["@metamask/detect-provider", "body-parser", "cookie-parser", "debug", "ejs", "express", "express-fileupload", "express-session", "http-errors", "ipfs-api", "js-alert", "metamask-inpage-provider", "mongodb", "mongoose", "morgan", "multer", "popups", "ssh-tunnel", "web3"]}}, "required": ["name", "version", "private", "scripts", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"type": {"type": "string"}, "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" : "Bolinao-Culalabo, Santo Tomas, Isabela, Cagayan Valley (Region II), PH", "locale" : "ph.cagayan-valley-region-ii.isabela.santo-tomas.bolinao-culalabo", "country_id" : 177, "country_reference" : 177, "country_name" : "Philippines", "region_id" : "3", "region_reference" : "2", "region_name" : "Cagayan Valley (Region II)", "province_id" : "37", "province_reference" : "37", "province_name" : "Isabela", "city_id" : "1627", "city_reference" : "726", "city_name" : "Santo Tomas", "barangay_id" : "35568", "barangay_reference" : "18304", "barangay_name" : "Bolinao-Culalabo"}, "geometry" : {"type" : "MultiPolygon", "coordinates" : [[[[121.788589, 17.38912], [121.788109, 17.37776], [121.787361, 17.377041], [121.787163, 17.37587], [121.786728, 17.37472], [121.786377, 17.374229], [121.785263, 17.375031], [121.784622, 17.37619], [121.784286, 17.37635], [121.783127, 17.375879], [121.781616, 17.37541], [121.779312, 17.376261], [121.778328, 17.377029], [121.777077, 17.377199], [121.776917, 17.37764], [121.776573, 17.38619], [121.788589, 17.38912]]]]}}
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#"}
Generate a valid JSON object that conforms to the following schema: {"type": "array", "items": {"type": "array", "items": {"type": "string"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
[["520303001000", "\u4e0a\u6d77\u8def\u8857\u9053\u529e\u4e8b\u5904", "4", "1"], ["520303002000", "\u6d17\u9a6c\u8def\u8857\u9053\u529e\u4e8b\u5904", "4", "1"], ["520303003000", "\u5927\u8fde\u8def\u8857\u9053\u529e\u4e8b\u5904", "4", "1"], ["520303004000", "\u9ad8\u6865\u8857\u9053\u529e\u4e8b\u5904", "4", "1"], ["520303005000", "\u8463\u516c\u5bfa\u8857\u9053\u529e\u4e8b\u5904", "4", "1"], ["520303006000", "\u9ad8\u576a\u8857\u9053\u529e\u4e8b\u5904", "4", "1"], ["520303102000", "\u56e2\u6cfd\u9547", "4", "1"], ["520303104000", "\u677f\u6865\u9547", "4", "1"], ["520303105000", "\u6cd7\u6e21\u9547", "4", "1"], ["520303106000", "\u6c99\u6e7e\u9547", "4", "1"], ["520303107000", "\u5c71\u76c6\u9547", "4", "1"], ["520303108000", "\u829d\u9ebb\u9547", "4", "1"], ["520303109000", "\u677e\u6797\u9547", "4", "1"], ["520303110000", "\u6bdb\u77f3\u9547", "4", "1"]]
json_instruct
{"type": "array", "items": {"type": "array", "items": {"type": "string"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"station": {"type": "array", "items": {"type": "object", "properties": {"pref_cd": {"type": "integer"}, "line_cd": {"type": "integer"}, "line_name": {"type": "string"}, "station_cd": {"type": "integer"}, "station_g_cd": {"type": "integer"}, "station_name": {"type": "string"}, "lon": {"type": "number"}, "lat": {"type": "number"}}, "required": ["pref_cd", "line_cd", "line_name", "station_cd", "station_g_cd", "station_name", "lon", "lat"]}}}, "required": ["station"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"station" : [{"pref_cd" : 24, "line_cd" : 31027, "line_name" : "\u8fd1\u9244\u540d\u53e4\u5c4b\u7dda", "station_cd" : 3102725, "station_g_cd" : 3102725, "station_name" : "\u5317\u6960", "lon" : 136.624797, "lat" : 34.916197}]}
json_instruct
{"type": "object", "properties": {"station": {"type": "array", "items": {"type": "object", "properties": {"pref_cd": {"type": "integer"}, "line_cd": {"type": "integer"}, "line_name": {"type": "string"}, "station_cd": {"type": "integer"}, "station_g_cd": {"type": "integer"}, "station_name": {"type": "string"}, "lon": {"type": "number"}, "lat": {"type": "number"}}, "required": ["pref_cd", "line_cd", "line_name", "station_cd", "station_g_cd", "station_name", "lon", "lat"]}}}, "required": ["station"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"type": {"type": "string"}, "objects": {"type": "object", "properties": {"E01009200": {"type": "object", "properties": {"type": {"type": "string"}, "crs": {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"]}}, "required": ["type", "properties"]}, "geometries": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"OA11CD": {"type": "string"}, "LAD11CD": {"type": "string"}}, "required": ["OA11CD", "LAD11CD"]}, "arcs": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}}, "required": ["type", "properties", "arcs"]}}}, "required": ["type", "crs", "geometries"]}}, "required": ["E01009200"]}, "arcs": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}}, "transform": {"type": "object", "properties": {"scale": {"type": "array", "items": {"type": "number"}}, "translate": {"type": "array", "items": {"type": "number"}}}, "required": ["scale", "translate"]}}, "required": ["type", "objects", "arcs", "transform"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"type" : "Topology", "objects" : {"E01009200" : {"type" : "GeometryCollection", "crs" : {"type" : "name", "properties" : {"name" : "urn:ogc:def:crs:OGC:1.3:CRS84"}}, "geometries" : [{"type" : "Polygon", "properties" : {"OA11CD" : "E00046654", "LAD11CD" : "E08000025"}, "arcs" : [[0, 1, 2, 3]]}, {"type" : "Polygon", "properties" : {"OA11CD" : "E00046659", "LAD11CD" : "E08000025"}, "arcs" : [[4, 5]]}, {"type" : "Polygon", "properties" : {"OA11CD" : "E00046660", "LAD11CD" : "E08000025"}, "arcs" : [[-3, 6, 7, 8]]}, {"type" : "Polygon", "properties" : {"OA11CD" : "E00175648", "LAD11CD" : "E08000025"}, "arcs" : [[9, -1, 10, -5, 11, -8]]}, {"type" : "Polygon", "properties" : {"OA11CD" : "E00175798", "LAD11CD" : "E08000025"}, "arcs" : [[-10, -7, -2]]}]}}, "arcs" : [[[7396, 7288], [89, -1045]], [[7485, 6243], [-1445, -1484]], [[6040, 4759], [-290, 2614], [306, 717], [-369, 1215]], [[5687, 9305], [640, 683], [852, -449], [113, 460], [400, -188], [-87, -608], [141, -207], [-408, 415], [-194, -1050], [174, -168], [-394, -406], [472, -499]], [[7929, 1872], [478, 2495], [-378, 254], [-72, 558], [323, 398], [294, -208], [90, 533]], [[8664, 5902], [816, 262], [-15, -611], [329, 120], [24, -911], [181, -43], [-220, -1911], [-1161, -511], [-689, -425]], [[6040, 4759], [-387, -107], [153, -1673], [381, -183], [394, 433], [278, -377], [156, 1132], [557, -1067]], [[7572, 2917], [216, -1178]], [[7788, 1739], [-1745, -1265], [-1473, -474], [-1354, 2353], [-1414, 511], [-1319, 1299], [-483, 261], [490, 1537], [592, -541], [270, 1505], [1011, -677], [340, -1271], [971, 1705], [251, -360], [497, 785], [-221, 629], [396, 1291], [412, -900], [678, 1178]], [[7572, 2917], [312, 1302], [-399, 2024]], [[7396, 7288], [353, -237], [436, 351], [384, 155], [300, -451], [-205, -1204]], [[7929, 1872], [-141, -133]]], "transform" : {"scale" : [2.4605107198105686e-06, 8.00181907171437e-07], "translate" : [-1.890324845852381, 52.472434524998725]}}
json_instruct
{"type": "object", "properties": {"type": {"type": "string"}, "objects": {"type": "object", "properties": {"E01009200": {"type": "object", "properties": {"type": {"type": "string"}, "crs": {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"]}}, "required": ["type", "properties"]}, "geometries": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"OA11CD": {"type": "string"}, "LAD11CD": {"type": "string"}}, "required": ["OA11CD", "LAD11CD"]}, "arcs": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}}, "required": ["type", "properties", "arcs"]}}}, "required": ["type", "crs", "geometries"]}}, "required": ["E01009200"]}, "arcs": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}}, "transform": {"type": "object", "properties": {"scale": {"type": "array", "items": {"type": "number"}}, "translate": {"type": "array", "items": {"type": "number"}}}, "required": ["scale", "translate"]}}, "required": ["type", "objects", "arcs", "transform"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"sn12.19:1.1": {"type": "string"}, "sn12.19:2.1": {"type": "string"}, "sn12.19:3.1": {"type": "string"}, "sn12.19:4.1": {"type": "string"}, "sn12.19:5.1": {"type": "string"}, "sn12.19:6.1": {"type": "string"}}, "required": ["sn12.19:1.1", "sn12.19:2.1", "sn12.19:3.1", "sn12.19:4.1", "sn12.19:5.1", "sn12.19:6.1"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"sn12.19:1.1" : "cck16.23, csp1ed12.263, csp2ed12.263, dr16.30, ms12S2_112, msdiv19, pts-vp-pli2.24, sc1, vri24.23", "sn12.19:2.1" : "ms12S2_113, ndp13.23, sc2", "sn12.19:3.1" : "ms12S2_114, sc3, sya16.29", "sn12.19:4.1" : "ms12S2_115, sc4", "sn12.19:5.1" : "dr16.31, ms12S2_116, sc5", "sn12.19:6.1" : "bj14.40, cck16.24, csp1ed12.264, csp2ed12.264, ms12S2_117, pts-vp-pli2.25, sc6, sya16.30, vri24.24"}
json_instruct
{"type": "object", "properties": {"sn12.19:1.1": {"type": "string"}, "sn12.19:2.1": {"type": "string"}, "sn12.19:3.1": {"type": "string"}, "sn12.19:4.1": {"type": "string"}, "sn12.19:5.1": {"type": "string"}, "sn12.19:6.1": {"type": "string"}}, "required": ["sn12.19:1.1", "sn12.19:2.1", "sn12.19:3.1", "sn12.19:4.1", "sn12.19:5.1", "sn12.19:6.1"], "$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"}, "nama": {"type": "string"}}, "required": ["id", "nama"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"id" : "7310021001", "nama" : "Kalukuang"}, {"id" : "7310022002", "nama" : "Pammas"}, {"id" : "7310022003", "nama" : "Sabaru"}, {"id" : "7310022004", "nama" : "Kanyurang"}, {"id" : "7310022005", "nama" : "Doang Doangan Lompo"}, {"id" : "7310022006", "nama" : "Mara Sende"}, {"id" : "7310022007", "nama" : "Dewakang"}]
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 a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"examples": {"type": "array", "items": {"type": "object", "properties": {"translation": {"type": "string"}, "first": {"type": "string"}, "last": {"type": "string"}}, "required": ["translation", "first", "last"]}}, "pronunciation": {"type": "object", "properties": {"uk": {"type": "object", "properties": {"phonetic": {"type": "string"}, "audio": {"type": "string"}}, "required": ["phonetic", "audio"]}, "us": {"type": "object", "properties": {"phonetic": {"type": "string"}, "audio": {"type": "string"}}, "required": ["phonetic", "audio"]}}, "required": ["uk", "us"]}, "definition": {"type": "object", "properties": {"en": {"type": "object", "properties": {"v": {"type": "array", "items": {"type": "string"}}}, "required": ["v"]}, "cn": {"type": "object", "properties": {"v": {"type": "array", "items": {"type": "string"}}}, "required": ["v"]}}, "required": ["en", "cn"]}, "id": {"type": "integer"}, "content": {"type": "string"}}, "required": ["examples", "pronunciation", "definition", "id", "content"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"examples" : [{"translation" : "\u4ed6\u70b9\u5934\u8868\u793a\u613f\u610f\u3002", "first" : "He ", "last" : " his willingness with a nod of his head."}, {"translation" : "\u7814\u7a76\u8868\u660e\uff0c\u7537\u4eba\u6bd4\u5973\u4eba\u66f4\u5bb9\u6613\u6212\u70df\u3002", "first" : "Research ", "last" : " that men find it easier to give up smoking than women."}, {"translation" : "\u62d0\u5f2f\u4e4b\u524d\u522b\u5fd8\u8bb0\u6307\u793a\u8f66\u884c\u65b9\u5411\u3002", "first" : "Don't forget to ", "last" : " before turning."}], "pronunciation" : {"uk" : {"phonetic" : "'\u026and\u026ake\u026at", "audio" : "indicate-uk.mp3"}, "us" : {"phonetic" : "'\u026and\u026ake\u026at", "audio" : "indicate-us.mp3"}}, "definition" : {"en" : {"v" : ["be a signal for or a symptom of", "indicate a place, direction, person, or thing; either spatially or figuratively", "to state or express briefly"]}, "cn" : {"v" : ["\u6307\u660e, \u8868\u660e, \u663e\u793a, \u8c61\u5f81, \u6307\u793a"]}}, "id" : 3415, "content" : "indicate"}
json_instruct
{"type": "object", "properties": {"examples": {"type": "array", "items": {"type": "object", "properties": {"translation": {"type": "string"}, "first": {"type": "string"}, "last": {"type": "string"}}, "required": ["translation", "first", "last"]}}, "pronunciation": {"type": "object", "properties": {"uk": {"type": "object", "properties": {"phonetic": {"type": "string"}, "audio": {"type": "string"}}, "required": ["phonetic", "audio"]}, "us": {"type": "object", "properties": {"phonetic": {"type": "string"}, "audio": {"type": "string"}}, "required": ["phonetic", "audio"]}}, "required": ["uk", "us"]}, "definition": {"type": "object", "properties": {"en": {"type": "object", "properties": {"v": {"type": "array", "items": {"type": "string"}}}, "required": ["v"]}, "cn": {"type": "object", "properties": {"v": {"type": "array", "items": {"type": "string"}}}, "required": ["v"]}}, "required": ["en", "cn"]}, "id": {"type": "integer"}, "content": {"type": "string"}}, "required": ["examples", "pronunciation", "definition", "id", "content"], "$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": {"start": {"type": "string"}, "test": {"type": "string"}, "dev": {"type": "string"}}, "required": ["start", "test", "dev"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "dependencies": {"type": "object", "properties": {"dotenv": {"type": "string"}, "express": {"type": "string"}, "mysql2": {"type": "string"}}, "required": ["dotenv", "express", "mysql2"]}, "devDependencies": {"type": "object", "properties": {"cross-env": {"type": "string"}, "jest": {"type": "string"}, "nodemon": {"type": "string"}, "supertest": {"type": "string"}}, "required": ["cross-env", "jest", "nodemon", "supertest"]}, "jest": {"type": "object", "properties": {"testEnvironment": {"type": "string"}, "coveragePathIgnorePatterns": {"type": "array", "items": {"type": "string"}}}, "required": ["testEnvironment", "coveragePathIgnorePatterns"]}}, "required": ["name", "version", "description", "main", "scripts", "repository", "keywords", "author", "license", "bugs", "homepage", "dependencies", "devDependencies", "jest"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "coachschd", "version" : "0.1.0", "description" : "REST API to fetch coach schedules and book and appoinment", "main" : "server.js", "scripts" : {"start" : "node server.js", "test" : "cross-env NODE_ENV=test jest --testTimeout=10000", "dev" : "nodemon server.js"}, "repository" : {"type" : "git", "url" : "git+https://github.com/sagartyagi121/rjstudio.git"}, "keywords" : ["rjstudio", "coach"], "author" : "gajender", "license" : "Apache License", "bugs" : {"url" : "https://github.com/sagartyagi121/rjstudio/issues"}, "homepage" : "https://github.com/sagartyagi121/rjstudio#readme", "dependencies" : {"dotenv" : "^10.0.0", "express" : "^4.17.1", "mysql2" : "^2.2.5"}, "devDependencies" : {"cross-env" : "^7.0.3", "jest" : "^27.0.4", "nodemon" : "^2.0.7", "supertest" : "^6.1.3"}, "jest" : {"testEnvironment" : "node", "coveragePathIgnorePatterns" : ["/node_modules/"]}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}, "test": {"type": "string"}, "dev": {"type": "string"}}, "required": ["start", "test", "dev"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "dependencies": {"type": "object", "properties": {"dotenv": {"type": "string"}, "express": {"type": "string"}, "mysql2": {"type": "string"}}, "required": ["dotenv", "express", "mysql2"]}, "devDependencies": {"type": "object", "properties": {"cross-env": {"type": "string"}, "jest": {"type": "string"}, "nodemon": {"type": "string"}, "supertest": {"type": "string"}}, "required": ["cross-env", "jest", "nodemon", "supertest"]}, "jest": {"type": "object", "properties": {"testEnvironment": {"type": "string"}, "coveragePathIgnorePatterns": {"type": "array", "items": {"type": "string"}}}, "required": ["testEnvironment", "coveragePathIgnorePatterns"]}}, "required": ["name", "version", "description", "main", "scripts", "repository", "keywords", "author", "license", "bugs", "homepage", "dependencies", "devDependencies", "jest"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "src": {"type": "string"}}, "required": ["name", "src"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"name" : "Radio Est\u00e2ncia de Jacutinga", "src" : "http://server3.webradios.com.br:9454/;?t=1526267523"}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "src": {"type": "string"}}, "required": ["name", "src"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"schema_version": {"type": "string"}, "id": {"type": "string"}, "modified": {"type": "string"}, "published": {"type": "string"}, "aliases": {"type": "array", "items": {"type": "string"}}, "details": {"type": "string"}, "severity": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "score": {"type": "string"}}, "required": ["type", "score"]}}, "affected": {"type": "array", "items": {}}, "references": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}}, "database_specific": {"type": "object", "properties": {"cwe_ids": {"type": "array", "items": {"type": "string"}}, "severity": {"type": "string"}, "github_reviewed": {"type": "boolean"}}, "required": ["cwe_ids", "severity", "github_reviewed"]}}, "required": ["schema_version", "id", "modified", "published", "aliases", "details", "severity", "affected", "references", "database_specific"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"schema_version" : "1.2.0", "id" : "GHSA-r6rq-vwqp-j4p3", "modified" : "2022-03-25T00:00:47Z", "published" : "2022-03-19T00:01:00Z", "aliases" : ["CVE-2021-39046"], "details" : "IBM Business Automation Workflow 18.0, 19.0, 20.0, and 21.0 and IBM Business Process Manager 8.5 and 8.6 stores user credentials in plain clear text which can be read by a lprivileged user. IBM X-Force ID: 214346.", "severity" : [{"type" : "CVSS_V3", "score" : "CVSS:3.1/AV:N/AC:L/PR:H/UI:N/S:U/C:H/I:N/A:N"}], "affected" : [], "references" : [{"type" : "ADVISORY", "url" : "https://nvd.nist.gov/vuln/detail/CVE-2021-39046"}, {"type" : "WEB", "url" : "https://exchange.xforce.ibmcloud.com/vulnerabilities/214346"}, {"type" : "WEB", "url" : "https://www.ibm.com/support/pages/node/6564387"}], "database_specific" : {"cwe_ids" : ["CWE-200"], "severity" : "MODERATE", "github_reviewed" : false}}
json_instruct
{"type": "object", "properties": {"schema_version": {"type": "string"}, "id": {"type": "string"}, "modified": {"type": "string"}, "published": {"type": "string"}, "aliases": {"type": "array", "items": {"type": "string"}}, "details": {"type": "string"}, "severity": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "score": {"type": "string"}}, "required": ["type", "score"]}}, "affected": {"type": "array", "items": {}}, "references": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}}, "database_specific": {"type": "object", "properties": {"cwe_ids": {"type": "array", "items": {"type": "string"}}, "severity": {"type": "string"}, "github_reviewed": {"type": "boolean"}}, "required": ["cwe_ids", "severity", "github_reviewed"]}}, "required": ["schema_version", "id", "modified", "published", "aliases", "details", "severity", "affected", "references", "database_specific"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"autoload": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"Cadastro\\Conexao\\": {"type": "string"}, "Cadastro\\Produto\\": {"type": "string"}, "Cadastro\\Decorator\\": {"type": "string"}}, "required": ["Cadastro\\Conexao\\", "Cadastro\\Produto\\", "Cadastro\\Decorator\\"]}}, "required": ["psr-4"]}}, "required": ["autoload"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"autoload" : {"psr-4" : {"Cadastro\\Conexao\\" : "lib/", "Cadastro\\Produto\\" : "lib/", "Cadastro\\Decorator\\" : "lib/"}}}
json_instruct
{"type": "object", "properties": {"autoload": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"Cadastro\\Conexao\\": {"type": "string"}, "Cadastro\\Produto\\": {"type": "string"}, "Cadastro\\Decorator\\": {"type": "string"}}, "required": ["Cadastro\\Conexao\\", "Cadastro\\Produto\\", "Cadastro\\Decorator\\"]}}, "required": ["psr-4"]}}, "required": ["autoload"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "array", "items": {"type": "object", "properties": {"label": {"type": "string"}, "normalizedVertices": {"type": "array", "items": {"type": "object", "properties": {"x": {"type": "number"}, "y": {"type": "number"}}, "required": ["x", "y"]}}, "score": {"type": "number"}}, "required": ["label", "normalizedVertices", "score"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"label" : "Animal", "normalizedVertices" : [{"x" : 0.40405884, "y" : 0.12403406}, {"x" : 0.5752353, "y" : 0.12403406}, {"x" : 0.5752353, "y" : 0.26979876}, {"x" : 0.40405884, "y" : 0.26979876}], "score" : 0.5478354}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"label": {"type": "string"}, "normalizedVertices": {"type": "array", "items": {"type": "object", "properties": {"x": {"type": "number"}, "y": {"type": "number"}}, "required": ["x", "y"]}}, "score": {"type": "number"}}, "required": ["label", "normalizedVertices", "score"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"db": {"type": "object", "properties": {"host": {"type": "string"}, "port": {"type": "string"}, "name": {"type": "string"}, "user": {"type": "string"}, "password": {"type": "string"}}, "required": ["host", "port", "name", "user", "password"]}, "service": {"type": "object", "properties": {"ip": {"type": "string"}, "port": {"type": "string"}}, "required": ["ip", "port"]}}, "required": ["db", "service"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"db" : {"host" : "DB_HOST", "port" : "DB_PORT", "name" : "DB_NAME", "user" : "DB_USER", "password" : "DB_PASSWORD"}, "service" : {"ip" : "SERVICE_IP", "port" : "SERVICE_PORT"}}
json_instruct
{"type": "object", "properties": {"db": {"type": "object", "properties": {"host": {"type": "string"}, "port": {"type": "string"}, "name": {"type": "string"}, "user": {"type": "string"}, "password": {"type": "string"}}, "required": ["host", "port", "name", "user", "password"]}, "service": {"type": "object", "properties": {"ip": {"type": "string"}, "port": {"type": "string"}}, "required": ["ip", "port"]}}, "required": ["db", "service"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"type": {"type": "string"}, "objects": {"type": "object", "properties": {"E01009020": {"type": "object", "properties": {"type": {"type": "string"}, "crs": {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"]}}, "required": ["type", "properties"]}, "geometries": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"OA11CD": {"type": "string"}, "LAD11CD": {"type": "string"}}, "required": ["OA11CD", "LAD11CD"]}, "arcs": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}}, "required": ["type", "properties", "arcs"]}}}, "required": ["type", "crs", "geometries"]}}, "required": ["E01009020"]}, "arcs": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}}, "transform": {"type": "object", "properties": {"scale": {"type": "array", "items": {"type": "number"}}, "translate": {"type": "array", "items": {"type": "number"}}}, "required": ["scale", "translate"]}}, "required": ["type", "objects", "arcs", "transform"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"type" : "Topology", "objects" : {"E01009020" : {"type" : "GeometryCollection", "crs" : {"type" : "name", "properties" : {"name" : "urn:ogc:def:crs:OGC:1.3:CRS84"}}, "geometries" : [{"type" : "Polygon", "properties" : {"OA11CD" : "E00045758", "LAD11CD" : "E08000025"}, "arcs" : [[0, 1, 2, 3]]}, {"type" : "Polygon", "properties" : {"OA11CD" : "E00045761", "LAD11CD" : "E08000025"}, "arcs" : [[-2, 4, 5, 6]]}, {"type" : "Polygon", "properties" : {"OA11CD" : "E00045762", "LAD11CD" : "E08000025"}, "arcs" : [[-3, -7, 7]]}, {"type" : "Polygon", "properties" : {"OA11CD" : "E00045765", "LAD11CD" : "E08000025"}, "arcs" : [[-1, 8, -5]]}]}}, "arcs" : [[[8005, 4596], [-479, 1604], [-2061, 238]], [[5465, 6438], [-195, 932]], [[5270, 7370], [198, 632]], [[5468, 8002], [2797, 1997], [878, -288], [150, -268], [-444, -1106], [833, -417], [317, -1143], [-1062, -2110], [-932, -71]], [[5465, 6438], [-168, -1656], [1022, -382], [128, -1005]], [[6447, 3395], [-717, 121], [-2620, -2750], [-958, -766], [-881, 1411], [456, 249], [361, 1553], [-564, 1177]], [[1524, 4390], [2791, -550], [-580, 1144], [275, 1678], [1260, 708]], [[1524, 4390], [-526, 1194], [63, 696], [-954, 282], [-107, 810], [739, 573], [589, -863], [685, 616], [2632, 117], [823, 187]], [[8005, 4596], [-53, -946], [1002, -148], [-47, -1088], [-1965, -969], [-864, 578], [369, 1372]]], "transform" : {"scale" : [1.0049493533091277e-06, 5.356664909431654e-07], "translate" : [-1.830425160615494, 52.437910483703774]}}
json_instruct
{"type": "object", "properties": {"type": {"type": "string"}, "objects": {"type": "object", "properties": {"E01009020": {"type": "object", "properties": {"type": {"type": "string"}, "crs": {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"]}}, "required": ["type", "properties"]}, "geometries": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"OA11CD": {"type": "string"}, "LAD11CD": {"type": "string"}}, "required": ["OA11CD", "LAD11CD"]}, "arcs": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}}, "required": ["type", "properties", "arcs"]}}}, "required": ["type", "crs", "geometries"]}}, "required": ["E01009020"]}, "arcs": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}}, "transform": {"type": "object", "properties": {"scale": {"type": "array", "items": {"type": "number"}}, "translate": {"type": "array", "items": {"type": "number"}}}, "required": ["scale", "translate"]}}, "required": ["type", "objects", "arcs", "transform"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"name": {"type": "string"}, "theme": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "repository": {"type": "string"}, "license": {"type": "string"}, "engines": {"type": "object", "properties": {"atom": {"type": "string"}}, "required": ["atom"]}}, "required": ["name", "theme", "version", "description", "keywords", "repository", "license", "engines"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "blau-syntax", "theme" : "syntax", "version" : "2.2.1", "description" : "Medium contrast theme. Inspired by the colours of FC Barcelona", "keywords" : ["syntax", "blue", "red", "light", "barcelona"], "repository" : "https://github.com/protesilaos/blau-light-syntax", "license" : "MIT", "engines" : {"atom" : ">=1.0.0"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "theme": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "repository": {"type": "string"}, "license": {"type": "string"}, "engines": {"type": "object", "properties": {"atom": {"type": "string"}}, "required": ["atom"]}}, "required": ["name", "theme", "version", "description", "keywords", "repository", "license", "engines"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"published": {"type": "string"}, "media-type": {"type": "string"}, "title": {"type": "string"}, "id": {"type": "string"}, "content": {"type": "string"}, "source": {"type": "string"}}, "required": ["published", "media-type", "title", "id", "content", "source"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"published" : "2015-09-01T17:57:34Z", "media-type" : "News", "title" : "Serbia says it is willing to host refugees", "id" : "08fa52e7-359e-42c6-bc79-ebb50a34e98e", "content" : "Source: Euronews - 6 days ago \nMerkel says Germany won't tolerate xenophobia\u00a0 01:32 German Chancellor Angela Merkel said on Wednesday (August 26, 2015) her country would not tolerate xenophobia, after violent anti-refugee protests erupted at the weekend in an eastern town facing an influx of refugees.Merkel was visiting a newly opened refugee shelter in the town of Heidenau, between...", "source" : "NewsR.in"}
json_instruct
{"type": "object", "properties": {"published": {"type": "string"}, "media-type": {"type": "string"}, "title": {"type": "string"}, "id": {"type": "string"}, "content": {"type": "string"}, "source": {"type": "string"}}, "required": ["published", "media-type", "title", "id", "content", "source"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "array", "items": {"type": "object", "properties": {"command": {"type": "string"}, "directory": {"type": "string"}, "file": {"type": "string"}}, "required": ["command", "directory", "file"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"command" : "cc -c -g -o ./build/parse.o ./src/parse.c", "directory" : "/home/fulgjon/Dokumenty/Tak", "file" : "/home/fulgjon/Dokumenty/Tak/src/parse.c"}, {"command" : "cc -c -g -o ./build/jpk.o ./src/jpk.c", "directory" : "/home/fulgjon/Dokumenty/Tak", "file" : "/home/fulgjon/Dokumenty/Tak/src/jpk.c"}, {"command" : "cc -c -g -o ./build/tocsv.o ./src/tocsv.c", "directory" : "/home/fulgjon/Dokumenty/Tak", "file" : "/home/fulgjon/Dokumenty/Tak/src/tocsv.c"}, {"command" : "cc -c -g -o ./build/config.o ./src/config.c", "directory" : "/home/fulgjon/Dokumenty/Tak", "file" : "/home/fulgjon/Dokumenty/Tak/src/config.c"}, {"command" : "cc -c -g -o ./build/utils.o ./src/utils.c", "directory" : "/home/fulgjon/Dokumenty/Tak", "file" : "/home/fulgjon/Dokumenty/Tak/src/utils.c"}, {"command" : "cc -c -o ./build/gui.o -Wall -pthread -I/usr/include/gtk-2.0 -I/usr/lib/x86_64-linux-gnu/gtk-2.0/include -I/usr/include/gio-unix-2.0/ -I/usr/include/cairo -I/usr/include/pango-1.0 -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/pixman-1 -I/usr/include/libpng16 -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/libpng16 -I/usr/include/pango-1.0 -I/usr/include/harfbuzz -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib/x86_64-linux-gnu/glib-2.0/include -I/usr/include/freetype2 -export-dynamic ./src/gui.c", "directory" : "/home/fulgjon/Dokumenty/Tak", "file" : "/home/fulgjon/Dokumenty/Tak/src/gui.c"}, {"command" : "cc -c -g -o ./build/main.o ./src/main.c", "directory" : "/home/fulgjon/Dokumenty/Tak", "file" : "/home/fulgjon/Dokumenty/Tak/src/main.c"}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"command": {"type": "string"}, "directory": {"type": "string"}, "file": {"type": "string"}}, "required": ["command", "directory", "file"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"MasterURL": {"type": "string"}, "KubeConfigPath": {"type": "string"}, "HubHost": {"type": "string"}, "HubUser": {"type": "string"}, "HubUserPassword": {"type": "string"}, "HubPort": {"type": "integer"}, "HubPasswordSecretName": {"type": "string"}, "HubPasswordSecretKey": {"type": "string"}, "ScannerMemory": {"type": "string"}, "JavaInitialHeapSizeMBs": {"type": "integer"}, "JavaMaxHeapSizeMBs": {"type": "integer"}, "LogLevel": {"type": "string"}, "PerceptorHost": {"type": "string"}, "PerceptorPort": {"type": "integer"}, "ImageFacadePort": {"type": "integer"}, "ScannerPort": {"type": "integer"}}, "required": ["MasterURL", "KubeConfigPath", "HubHost", "HubUser", "HubUserPassword", "HubPort", "HubPasswordSecretName", "HubPasswordSecretKey", "ScannerMemory", "JavaInitialHeapSizeMBs", "JavaMaxHeapSizeMBs", "LogLevel", "PerceptorHost", "PerceptorPort", "ImageFacadePort", "ScannerPort"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"MasterURL" : "https://192.168.99.100:8443", "KubeConfigPath" : "/Users/mfenwick/.kube/config", "HubHost" : "the-hub-hub.54.67.89.98.xip.io", "HubUser" : "sysadmin", "HubUserPassword" : "blackduck", "HubPort" : 443, "HubPasswordSecretName" : "hub-password", "HubPasswordSecretKey" : "hub-user-password", "ScannerMemory" : "100Mi", "JavaInitialHeapSizeMBs" : 10, "JavaMaxHeapSizeMBs" : 200, "LogLevel" : "debug", "PerceptorHost" : "perceptor", "PerceptorPort" : 4945, "ImageFacadePort" : 9876, "ScannerPort" : 2345}
json_instruct
{"type": "object", "properties": {"MasterURL": {"type": "string"}, "KubeConfigPath": {"type": "string"}, "HubHost": {"type": "string"}, "HubUser": {"type": "string"}, "HubUserPassword": {"type": "string"}, "HubPort": {"type": "integer"}, "HubPasswordSecretName": {"type": "string"}, "HubPasswordSecretKey": {"type": "string"}, "ScannerMemory": {"type": "string"}, "JavaInitialHeapSizeMBs": {"type": "integer"}, "JavaMaxHeapSizeMBs": {"type": "integer"}, "LogLevel": {"type": "string"}, "PerceptorHost": {"type": "string"}, "PerceptorPort": {"type": "integer"}, "ImageFacadePort": {"type": "integer"}, "ScannerPort": {"type": "integer"}}, "required": ["MasterURL", "KubeConfigPath", "HubHost", "HubUser", "HubUserPassword", "HubPort", "HubPasswordSecretName", "HubPasswordSecretKey", "ScannerMemory", "JavaInitialHeapSizeMBs", "JavaMaxHeapSizeMBs", "LogLevel", "PerceptorHost", "PerceptorPort", "ImageFacadePort", "ScannerPort"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"platforms": {"type": "object", "properties": {"platform": {"type": "array", "items": {"type": "object", "properties": {"vendor": {"type": "string"}, "name": {"type": "string"}, "software-version": {"type": "string"}, "software-flavor": {"type": "string"}, "netconf-capabilities": {"type": "array", "items": {"type": "string"}}, "os-type": {"type": "string"}, "os-version": {"type": "string"}, "module-list-file": {"type": "object", "properties": {"type": {"type": "string"}, "owner": {"type": "string"}, "repository": {"type": "string"}, "path": {"type": "string"}}, "required": ["type", "owner", "repository", "path"]}}, "required": ["vendor", "name", "software-version", "software-flavor", "netconf-capabilities", "os-type", "os-version", "module-list-file"]}}}, "required": ["platform"]}}, "required": ["platforms"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"platforms" : {"platform" : [{"vendor" : "huawei", "name" : "ne8000-m8", "software-version" : "V800R013C00", "software-flavor" : "ALL", "netconf-capabilities" : ["urn:ietf:params:xml:ns:netconf:base:1.0", "urn:ietf:params:xml:ns:netconf:base:1.1", "urn:ietf:params:netconf:capability:writable-running:1.0", "urn:ietf:params:netconf:capability:candidate:1.0", "urn:ietf:params:netconf:capability:confirmed-commit:1.0", "urn:ietf:params:netconf:capability:confirmed-commit:1.1", "urn:ietf:params:netconf:capability:xpath:1.0", "urn:ietf:params:netconf:capability:startup:1.0", "urn:ietf:params:netconf:capability:url:1.0?scheme=file,ftp,sftp", "urn:ietf:params:netconf:capability:rollback-on-error:1.0", "urn:ietf:params:netconf:capability:validate:1.0", "urn:ietf:params:netconf:capability:validate:1.1", "urn:ietf:params:netconf:capability:notification:1.0", "urn:ietf:params:netconf:capability:interleave:1.0", "urn:ietf:params:netconf:capability:with-defaults:1.0?basic-mode=report-all&also-supported=report-all-tagged,trim"], "os-type" : "VRP", "os-version" : "8.20.10", "module-list-file" : {"type" : "capabilities", "owner" : "huawei", "repository" : "yang.git", "path" : "network-router/8.20.10/ne8000-m8/capabilities.xml"}}]}}
json_instruct
{"type": "object", "properties": {"platforms": {"type": "object", "properties": {"platform": {"type": "array", "items": {"type": "object", "properties": {"vendor": {"type": "string"}, "name": {"type": "string"}, "software-version": {"type": "string"}, "software-flavor": {"type": "string"}, "netconf-capabilities": {"type": "array", "items": {"type": "string"}}, "os-type": {"type": "string"}, "os-version": {"type": "string"}, "module-list-file": {"type": "object", "properties": {"type": {"type": "string"}, "owner": {"type": "string"}, "repository": {"type": "string"}, "path": {"type": "string"}}, "required": ["type", "owner", "repository", "path"]}}, "required": ["vendor", "name", "software-version", "software-flavor", "netconf-capabilities", "os-type", "os-version", "module-list-file"]}}}, "required": ["platform"]}}, "required": ["platforms"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"response": {"type": "object", "properties": {"language": {"type": "string"}, "languageIsReliable": {"type": "boolean"}, "topics": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "label": {"type": "string"}, "wikiLink": {"type": "string"}, "score": {"type": "number"}}, "required": ["id", "label", "wikiLink", "score"]}}, "entities": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "matchingTokens": {"type": "array", "items": {"type": "integer"}}, "entityId": {"type": "string"}, "confidenceScore": {"type": "number"}, "wikiLink": {"type": "string"}, "matchedText": {"type": "string"}, "freebaseId": {"type": "string"}, "relevanceScore": {"type": "number"}, "entityEnglishId": {"type": "string"}, "startingPos": {"type": "integer"}, "endingPos": {"type": "integer"}}, "required": ["id", "matchingTokens", "entityId", "confidenceScore", "wikiLink", "matchedText", "freebaseId", "relevanceScore", "entityEnglishId", "startingPos", "endingPos"]}}, "properties": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "wordPositions": {"type": "array", "items": {"type": "integer"}}, "propertyPositions": {"type": "array", "items": {"type": "integer"}}}, "required": ["id", "wordPositions", "propertyPositions"]}}}, "required": ["language", "languageIsReliable", "topics", "entities", "properties"]}, "time": {"type": "number"}, "ok": {"type": "boolean"}}, "required": ["response", "time", "ok"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"response" : {"language" : "eng", "languageIsReliable" : true, "topics" : [{"id" : 0, "label" : "Epidermal growth factor receptor", "wikiLink" : "http://en.wikipedia.org/Epidermal_growth_factor_receptor", "score" : 0.132226}], "entities" : [{"id" : 0, "matchingTokens" : [3], "entityId" : "Knock-down kit", "confidenceScore" : 2.09126, "wikiLink" : "http://en.wikipedia.org/wiki/Knock-down_kit", "matchedText" : "CKD", "freebaseId" : "/m/04p2lp", "relevanceScore" : 0.0330769, "entityEnglishId" : "Knock-down kit", "startingPos" : 15, "endingPos" : 18}, {"id" : 1, "type" : ["Biomolecule", "Protein"], "matchingTokens" : [12], "entityId" : "Epidermal growth factor receptor", "freebaseTypes" : ["/biology/protein"], "confidenceScore" : 2.07698, "wikiLink" : "http://en.wikipedia.org/wiki/Epidermal_growth_factor_receptor", "matchedText" : "eGFR", "freebaseId" : "/m/064z4d", "relevanceScore" : 0.132226, "entityEnglishId" : "Epidermal growth factor receptor", "startingPos" : 73, "endingPos" : 77}], "properties" : [{"id" : 0, "wordPositions" : [7, 10, 11], "propertyPositions" : [8, 9]}, {"id" : 1, "wordPositions" : [7, 10, 11], "propertyPositions" : [12]}, {"id" : 2, "wordPositions" : [1, 2], "propertyPositions" : [3]}]}, "time" : 0.313, "ok" : true}
json_instruct
{"type": "object", "properties": {"response": {"type": "object", "properties": {"language": {"type": "string"}, "languageIsReliable": {"type": "boolean"}, "topics": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "label": {"type": "string"}, "wikiLink": {"type": "string"}, "score": {"type": "number"}}, "required": ["id", "label", "wikiLink", "score"]}}, "entities": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "matchingTokens": {"type": "array", "items": {"type": "integer"}}, "entityId": {"type": "string"}, "confidenceScore": {"type": "number"}, "wikiLink": {"type": "string"}, "matchedText": {"type": "string"}, "freebaseId": {"type": "string"}, "relevanceScore": {"type": "number"}, "entityEnglishId": {"type": "string"}, "startingPos": {"type": "integer"}, "endingPos": {"type": "integer"}}, "required": ["id", "matchingTokens", "entityId", "confidenceScore", "wikiLink", "matchedText", "freebaseId", "relevanceScore", "entityEnglishId", "startingPos", "endingPos"]}}, "properties": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "wordPositions": {"type": "array", "items": {"type": "integer"}}, "propertyPositions": {"type": "array", "items": {"type": "integer"}}}, "required": ["id", "wordPositions", "propertyPositions"]}}}, "required": ["language", "languageIsReliable", "topics", "entities", "properties"]}, "time": {"type": "number"}, "ok": {"type": "boolean"}}, "required": ["response", "time", "ok"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}, "test": {"type": "string"}, "test-watch": {"type": "string"}}, "required": ["start", "test", "test-watch"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "keywords": {"type": "array", "items": {}}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "dependencies": {"type": "object", "properties": {"dotenv": {"type": "string"}, "express": {"type": "string"}, "jest": {"type": "string"}, "logger": {"type": "string"}, "nodemon": {"type": "string"}, "supertest": {"type": "string"}}, "required": ["dotenv", "express", "jest", "logger", "nodemon", "supertest"]}}, "required": ["name", "version", "description", "main", "scripts", "repository", "keywords", "author", "license", "bugs", "homepage", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "basic-express-server", "version" : "1.0.0", "description" : "\u251c\u2500\u2500 .gitignore \u251c\u2500\u2500 .eslintrc.json \u251c\u2500\u2500 __tests__ \u2502 \u251c\u2500\u2500 server.test.js \u2502 \u251c\u2500\u2500 validator.test.js \u2502 \u251c\u2500\u2500 logger.test.js \u251c\u2500\u2500 src \u2502 \u251c\u2500\u2500 error-handlers \u2502 \u2502 \u251c\u2500\u2500 404.js \u2502 \u2502 \u251c\u2500\u2500 500.js \u2502 \u251c\u2500\u2500 middleware \u2502 \u2502 \u251c\u2500\u2500 logger.js \u2502 \u2502 \u251c\u2500\u2500 validator.js \u2502 \u251c\u2500\u2500 server.js \u251c\u2500\u2500 index.js \u2514\u2500\u2500 package.json", "main" : "index.js", "scripts" : {"start" : "node index.js", "test" : "jest --coverage", "test-watch" : "jest --watchAll --coverage"}, "repository" : {"type" : "git", "url" : "git+https://github.com/Saynka/basic-express-server.git"}, "keywords" : [], "author" : "", "license" : "ISC", "bugs" : {"url" : "https://github.com/Saynka/basic-express-server/issues"}, "homepage" : "https://github.com/Saynka/basic-express-server#readme", "dependencies" : {"dotenv" : "^8.2.0", "express" : "^4.17.1", "jest" : "^26.6.3", "logger" : "^0.0.1", "nodemon" : "^2.0.7", "supertest" : "^6.1.3"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}, "test": {"type": "string"}, "test-watch": {"type": "string"}}, "required": ["start", "test", "test-watch"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "keywords": {"type": "array", "items": {}}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "dependencies": {"type": "object", "properties": {"dotenv": {"type": "string"}, "express": {"type": "string"}, "jest": {"type": "string"}, "logger": {"type": "string"}, "nodemon": {"type": "string"}, "supertest": {"type": "string"}}, "required": ["dotenv", "express", "jest", "logger", "nodemon", "supertest"]}}, "required": ["name", "version", "description", "main", "scripts", "repository", "keywords", "author", "license", "bugs", "homepage", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
[[1973, 19], [1974, 11], [1975, 7], [1976, 9], [1978, 8], [1994, 7], [2003, 6], [2008, 5]]
json_instruct
{"type": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"lerna": {"type": "string"}, "packages": {"type": "array", "items": {"type": "string"}}, "version": {"type": "string"}}, "required": ["lerna", "packages", "version"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"lerna" : "3.10.8", "packages" : ["babel-plugin-wasm", "use-wasm", "emscripten"], "version" : "0.0.2"}
json_instruct
{"type": "object", "properties": {"lerna": {"type": "string"}, "packages": {"type": "array", "items": {"type": "string"}}, "version": {"type": "string"}}, "required": ["lerna", "packages", "version"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}, "test": {"type": "string"}, "testWithData": {"type": "string"}}, "required": ["start", "test", "testWithData"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "dependencies": {"type": "object", "properties": {"body-parser": {"type": "string"}, "express": {"type": "string"}, "newman": {"type": "string"}, "nodemon": {"type": "string"}}, "required": ["body-parser", "express", "newman", "nodemon"]}}, "required": ["name", "version", "description", "main", "scripts", "repository", "keywords", "author", "license", "bugs", "homepage", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "techtalk-integration-tests-postman", "version" : "1.0.0", "description" : "Small test api to demonstrate integration tests with postman", "main" : "app.js", "scripts" : {"start" : "nodemon", "test" : "newman -c integration-tests.json", "testWithData" : "newman -c integration-tests-with-data.json -d test-data.json"}, "repository" : {"type" : "git", "url" : "git+https://github.com/smartive/techtalk-integration-tests-postman.git"}, "keywords" : ["express", "api", "postman", "integrationtest"], "author" : "Christoph B\u00fchler <christoph@smartive.ch>", "license" : "MIT", "bugs" : {"url" : "https://github.com/smartive/techtalk-integration-tests-postman/issues"}, "homepage" : "https://github.com/smartive/techtalk-integration-tests-postman#readme", "dependencies" : {"body-parser" : "^1.14.2", "express" : "^4.13.3", "newman" : "^2.0.3", "nodemon" : "^1.9.1"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}, "test": {"type": "string"}, "testWithData": {"type": "string"}}, "required": ["start", "test", "testWithData"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "dependencies": {"type": "object", "properties": {"body-parser": {"type": "string"}, "express": {"type": "string"}, "newman": {"type": "string"}, "nodemon": {"type": "string"}}, "required": ["body-parser", "express", "newman", "nodemon"]}}, "required": ["name", "version", "description", "main", "scripts", "repository", "keywords", "author", "license", "bugs", "homepage", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"web": {"type": "array", "items": {"type": "object", "properties": {"value": {"type": "array", "items": {"type": "string"}}, "key": {"type": "string"}}, "required": ["value", "key"]}}, "query": {"type": "string"}, "translation": {"type": "array", "items": {"type": "string"}}, "errorCode": {"type": "string"}, "dict": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "webdict": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "basic": {"type": "object", "properties": {"us-phonetic": {"type": "string"}, "phonetic": {"type": "string"}, "uk-phonetic": {"type": "string"}, "explains": {"type": "array", "items": {"type": "string"}}}, "required": ["us-phonetic", "phonetic", "uk-phonetic", "explains"]}, "l": {"type": "string"}}, "required": ["web", "query", "translation", "errorCode", "dict", "webdict", "basic", "l"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"web" : [{"value" : ["\u623f\u8f66", "\u8c6a\u534e\u8f7f\u8f66", "\u67e0\u6aac"], "key" : "limo"}, {"value" : ["\u660e\u661f\u9ad8\u7ea7\u8f7f\u8f66"], "key" : "Superstar Limo"}, {"value" : ["\u804c\u4e1a"], "key" : "limo rental"}], "query" : "limo", "translation" : ["\u8c6a\u534e\u8f7f\u8f66"], "errorCode" : "0", "dict" : {"url" : "yddict://m.youdao.com/dict?le=eng&q=limo"}, "webdict" : {"url" : "http://m.youdao.com/dict?le=eng&q=limo"}, "basic" : {"us-phonetic" : "'l\u026amo", "phonetic" : "'l\u026am\u0259\u028a", "uk-phonetic" : "'l\u026am\u0259\u028a", "explains" : ["n. \u8c6a\u534e\u8f7f\u8f66", "n. (Limo)\u4eba\u540d\uff1b(\u585e\u3001\u82ac)\u5229\u83ab"]}, "l" : "EN2zh-CHS"}
json_instruct
{"type": "object", "properties": {"web": {"type": "array", "items": {"type": "object", "properties": {"value": {"type": "array", "items": {"type": "string"}}, "key": {"type": "string"}}, "required": ["value", "key"]}}, "query": {"type": "string"}, "translation": {"type": "array", "items": {"type": "string"}}, "errorCode": {"type": "string"}, "dict": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "webdict": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "basic": {"type": "object", "properties": {"us-phonetic": {"type": "string"}, "phonetic": {"type": "string"}, "uk-phonetic": {"type": "string"}, "explains": {"type": "array", "items": {"type": "string"}}}, "required": ["us-phonetic", "phonetic", "uk-phonetic", "explains"]}, "l": {"type": "string"}}, "required": ["web", "query", "translation", "errorCode", "dict", "webdict", "basic", "l"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"symbol": {"type": "string"}, "address": {"type": "string"}}, "required": ["symbol", "address"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"symbol" : "CAT", "address" : "0x56ba2Ee7890461f463F7be02aAC3099f6d5811A8"}
json_instruct
{"type": "object", "properties": {"symbol": {"type": "string"}, "address": {"type": "string"}}, "required": ["symbol", "address"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"@metadata": {"type": "object", "properties": {"authors": {"type": "array", "items": {"type": "string"}}}, "required": ["authors"]}, "imagemap_desc": {"type": "string"}, "imagemap_no_image": {"type": "string"}, "imagemap_invalid_image": {"type": "string"}, "imagemap_bad_image": {"type": "string"}, "imagemap_no_link": {"type": "string"}, "imagemap_invalid_title": {"type": "string"}, "imagemap_missing_coord": {"type": "string"}, "imagemap_unrecognised_shape": {"type": "string"}, "imagemap_invalid_coord": {"type": "string"}, "imagemap_invalid_desc": {"type": "string"}, "imagemap_description": {"type": "string"}, "imagemap_poly_odd": {"type": "string"}}, "required": ["@metadata", "imagemap_desc", "imagemap_no_image", "imagemap_invalid_image", "imagemap_bad_image", "imagemap_no_link", "imagemap_invalid_title", "imagemap_missing_coord", "imagemap_unrecognised_shape", "imagemap_invalid_coord", "imagemap_invalid_desc", "imagemap_description", "imagemap_poly_odd"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"@metadata" : {"authors" : ["Pyt"]}, "imagemap_desc" : "Moaket d\u00e4t muugelk ferwies-sensitive Grafike ''(image maps)'' tou moakjen m\u00e4d H\u00e4lpe fon ju <code>&lt;imagemap&gt;</code>-Syntax", "imagemap_no_image" : "Failer: In ju eerste Riege mout ne Bielde ounroat w\u00e4ide", "imagemap_invalid_image" : "Failer: Bielde is uungultich of is nit deer", "imagemap_bad_image" : "Failer: Ju Bielde stoant ap ju Lieste fon nit wonskede Bielden", "imagemap_no_link" : "Failer: Ap Eende fon Riege $1 wuude neen gultige Link fuunen", "imagemap_invalid_title" : "Failer: uungultigen Tittel in d\u00e4n Link in Riege $1", "imagemap_missing_coord" : "Failer: Tou min Koordinate in Riege $1 foar d\u00e4n Uumriet", "imagemap_unrecognised_shape" : "Failer: Uunbekoande Uumrietfoarm in Riege $1. \u00c4lke Riege mout m\u00e4d aan fon disse Parametere ounfange: <tt><code>default</code>, <code>rect</code>, <code>circle</code></tt> of <tt><code>poly</code></tt>", "imagemap_invalid_coord" : "Failer: Uungultige Koordinate in Riege $1: der sunt bloot Taale toul\u00e4t", "imagemap_invalid_desc" : "Failer: Uungultigen \u201edesc\u201c-Parameter, muugelk sunt: <code>$1</code>", "imagemap_description" : "Uur disse Bielde", "imagemap_poly_odd" : "Failer: Polygon m\u00e4d uunpooren Antaal an Koordinoaten in Riege $1"}
json_instruct
{"type": "object", "properties": {"@metadata": {"type": "object", "properties": {"authors": {"type": "array", "items": {"type": "string"}}}, "required": ["authors"]}, "imagemap_desc": {"type": "string"}, "imagemap_no_image": {"type": "string"}, "imagemap_invalid_image": {"type": "string"}, "imagemap_bad_image": {"type": "string"}, "imagemap_no_link": {"type": "string"}, "imagemap_invalid_title": {"type": "string"}, "imagemap_missing_coord": {"type": "string"}, "imagemap_unrecognised_shape": {"type": "string"}, "imagemap_invalid_coord": {"type": "string"}, "imagemap_invalid_desc": {"type": "string"}, "imagemap_description": {"type": "string"}, "imagemap_poly_odd": {"type": "string"}}, "required": ["@metadata", "imagemap_desc", "imagemap_no_image", "imagemap_invalid_image", "imagemap_bad_image", "imagemap_no_link", "imagemap_invalid_title", "imagemap_missing_coord", "imagemap_unrecognised_shape", "imagemap_invalid_coord", "imagemap_invalid_desc", "imagemap_description", "imagemap_poly_odd"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"id": {"type": "string"}, "createdAt": {"type": "string"}, "updatedAt": {"type": "string"}, "event": {"type": "string"}, "description": {"type": "string"}, "location": {"type": "string"}, "game": {"type": "string"}, "players": {"type": "array", "items": {"type": "string"}}, "results": {"type": "array", "items": {"type": "object", "properties": {"player": {"type": "string"}, "score": {"type": "integer"}}, "required": ["player", "score"]}}}, "required": ["id", "createdAt", "updatedAt", "event", "description", "location", "game", "players", "results"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : "2012-06-23-06-02", "createdAt" : "2012-06-24T02:00:00.000Z", "updatedAt" : "2012-06-24T02:00:00.000Z", "event" : "West Coast 18xx Tournament, 2012", "description" : "1830", "location" : "Portland Oregon", "game" : "18xx", "players" : ["steve-yu", "jonathan-work", "jonathan-anderson", "allen-stancius"], "results" : [{"player" : "steve-yu", "score" : 3149}, {"player" : "jonathan-anderson", "score" : 2114}, {"player" : "jonathan-work", "score" : 1796}, {"player" : "allen-stancius", "score" : 1452}]}
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "createdAt": {"type": "string"}, "updatedAt": {"type": "string"}, "event": {"type": "string"}, "description": {"type": "string"}, "location": {"type": "string"}, "game": {"type": "string"}, "players": {"type": "array", "items": {"type": "string"}}, "results": {"type": "array", "items": {"type": "object", "properties": {"player": {"type": "string"}, "score": {"type": "integer"}}, "required": ["player", "score"]}}}, "required": ["id", "createdAt", "updatedAt", "event", "description", "location", "game", "players", "results"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
[[1970, 5], [1971, 5], [1973, 5]]
json_instruct
{"type": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"directions": {"type": "array", "items": {"type": "string"}}, "ingredients": {"type": "array", "items": {"type": "string"}}, "language": {"type": "string"}, "source": {"type": "string"}, "tags": {"type": "array", "items": {}}, "title": {"type": "string"}, "url": {"type": "string"}}, "required": ["directions", "ingredients", "language", "source", "tags", "title", "url"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"directions" : ["Preheat oven to 350 degrees F (175 degrees C). Grease and flour two 9 x 5 inch loaf pans.", "Beat together eggs, sugar, and oil. Blend in applesauce, and then sour cream or buttermilk. Mix in flour, baking powder, soda, and cinnamon. Stir in raisins. Pour batter into prepared pans.", "Bake for 80 minutes. Cool on wire racks."], "ingredients" : ["3 cups all-purpose flour", "3 eggs", "2 cups white sugar", "1 cup vegetable oil", "2 cups applesauce", "1 cup raisins (optional)", "1 teaspoon ground cinnamon", "1 teaspoon baking soda", "1/4 teaspoon baking powder", "1/2 cup sour cream"], "language" : "en-US", "source" : "allrecipes.com", "tags" : [], "title" : "Applesauce Bread I", "url" : "http://allrecipes.com/recipe/7003/applesauce-bread-i/"}
json_instruct
{"type": "object", "properties": {"directions": {"type": "array", "items": {"type": "string"}}, "ingredients": {"type": "array", "items": {"type": "string"}}, "language": {"type": "string"}, "source": {"type": "string"}, "tags": {"type": "array", "items": {}}, "title": {"type": "string"}, "url": {"type": "string"}}, "required": ["directions", "ingredients", "language", "source", "tags", "title", "url"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"parent": {"type": "string"}, "textures": {"type": "object", "properties": {"bottom": {"type": "string"}, "middle": {"type": "string"}, "top": {"type": "string"}}, "required": ["bottom", "middle", "top"]}}, "required": ["parent", "textures"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"parent" : "block/door_bottom", "textures" : {"bottom" : "dramaticdoors:blocks/tall_andesite_door_bottom", "middle" : "dramaticdoors:blocks/tall_andesite_door_middle", "top" : "dramaticdoors:blocks/tall_andesite_door_top"}}
json_instruct
{"type": "object", "properties": {"parent": {"type": "string"}, "textures": {"type": "object", "properties": {"bottom": {"type": "string"}, "middle": {"type": "string"}, "top": {"type": "string"}}, "required": ["bottom", "middle", "top"]}}, "required": ["parent", "textures"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"type": {"type": "string"}, "features": {"type": "array", "items": {"type": "object", "properties": {"geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["type", "coordinates"]}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"cartodb_id": {"type": "integer"}}, "required": ["cartodb_id"]}}, "required": ["geometry", "type", "properties"]}}}, "required": ["type", "features"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"type" : "FeatureCollection", "features" : [{"geometry" : {"type" : "Polygon", "coordinates" : [[[-75.320089, 39.733284], [-75.319807, 39.739524], [-75.31552, 39.745804], [-75.316736, 39.755559], [-75.307239, 39.754334], [-75.307147, 39.752955], [-75.304751, 39.750631], [-75.303072, 39.751177], [-75.302972, 39.749139], [-75.301719, 39.748779], [-75.301528, 39.744617], [-75.309868, 39.742491], [-75.314425, 39.738178], [-75.31692, 39.732229], [-75.320089, 39.733284]]]}, "type" : "Feature", "properties" : {"cartodb_id" : 40655}}]}
json_instruct
{"type": "object", "properties": {"type": {"type": "string"}, "features": {"type": "array", "items": {"type": "object", "properties": {"geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["type", "coordinates"]}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"cartodb_id": {"type": "integer"}}, "required": ["cartodb_id"]}}, "required": ["geometry", "type", "properties"]}}}, "required": ["type", "features"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"from": {"type": "string"}, "name": {"type": "string"}, "num": {"type": "integer"}, "comps": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "place": {"type": "string"}, "date": {"type": "string"}, "highest": {"type": "integer"}, "QP": {"type": "integer"}, "RP": {"type": "integer"}, "matches": {"type": "integer"}}, "required": ["name", "place", "date", "highest", "QP", "RP", "matches"]}}}, "required": ["from", "name", "num", "comps"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"from" : "Solon, IA USA", "name" : "Solon Team #1", "num" : 367, "comps" : [{"name" : "IA FTC Qualifying Tournament", "place" : "Linn-Mar High School", "date" : "03-Nov-12", "highest" : 10, "QP" : 6, "RP" : 12, "matches" : 6}, {"name" : "IA FTC Qualifying Tournament", "place" : "Solon Qualifier", "date" : "01-Dec-12", "highest" : 115, "QP" : 9, "RP" : 9, "matches" : 6}, {"name" : "IA FTC Championship Tournament", "place" : "Iowa Memorial Union", "date" : "23-Feb-13", "highest" : 245, "QP" : 6, "RP" : 287, "matches" : 6}, {"name" : "IA FTC Qualifying Tournament", "place" : "Blue Qualifier", "date" : "02-Feb-13", "highest" : 136, "QP" : 9, "RP" : 19, "matches" : 5}]}
json_instruct
{"type": "object", "properties": {"from": {"type": "string"}, "name": {"type": "string"}, "num": {"type": "integer"}, "comps": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "place": {"type": "string"}, "date": {"type": "string"}, "highest": {"type": "integer"}, "QP": {"type": "integer"}, "RP": {"type": "integer"}, "matches": {"type": "integer"}}, "required": ["name", "place", "date", "highest", "QP", "RP", "matches"]}}}, "required": ["from", "name", "num", "comps"], "$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"}, "main": {"type": "string"}, "license": {"type": "string"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}, "dev": {"type": "string"}}, "required": ["start", "dev"]}, "devDependencies": {"type": "object", "properties": {"eslint": {"type": "string"}, "nodemon": {"type": "string"}}, "required": ["eslint", "nodemon"]}, "dependencies": {"type": "object", "properties": {"cors": {"type": "string"}, "csvtojson": {"type": "string"}, "dotenv": {"type": "string"}, "express": {"type": "string"}, "express-fileupload": {"type": "string"}, "moment": {"type": "string"}, "mongoose": {"type": "string"}, "multer": {"type": "string"}, "sucrase": {"type": "string"}, "yup": {"type": "string"}}, "required": ["cors", "csvtojson", "dotenv", "express", "express-fileupload", "moment", "mongoose", "multer", "sucrase", "yup"]}}, "required": ["name", "version", "main", "license", "scripts", "devDependencies", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "devhouse", "version" : "1.0.0", "main" : "index.js", "license" : "MIT", "scripts" : {"start" : "node ./src/routes/server.js", "dev" : "nodemon ./src/routes/server.js"}, "devDependencies" : {"eslint" : "^7.0.0", "nodemon" : "^2.0.3"}, "dependencies" : {"cors" : "^2.8.5", "csvtojson" : "^2.0.10", "dotenv" : "^8.2.0", "express" : "^4.17.1", "express-fileupload" : "^1.1.7-alpha.3", "moment" : "^2.25.1", "mongoose" : "^5.9.11", "multer" : "^1.4.2", "sucrase" : "^3.14.0", "yup" : "^0.28.5"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "main": {"type": "string"}, "license": {"type": "string"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}, "dev": {"type": "string"}}, "required": ["start", "dev"]}, "devDependencies": {"type": "object", "properties": {"eslint": {"type": "string"}, "nodemon": {"type": "string"}}, "required": ["eslint", "nodemon"]}, "dependencies": {"type": "object", "properties": {"cors": {"type": "string"}, "csvtojson": {"type": "string"}, "dotenv": {"type": "string"}, "express": {"type": "string"}, "express-fileupload": {"type": "string"}, "moment": {"type": "string"}, "mongoose": {"type": "string"}, "multer": {"type": "string"}, "sucrase": {"type": "string"}, "yup": {"type": "string"}}, "required": ["cors", "csvtojson", "dotenv", "express", "express-fileupload", "moment", "mongoose", "multer", "sucrase", "yup"]}}, "required": ["name", "version", "main", "license", "scripts", "devDependencies", "dependencies"], "$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"}, "readme": {"type": "string"}, "main": {"type": "string"}, "typings": {"type": "string"}, "repository": {"type": "string"}, "scripts": {"type": "object", "properties": {"package": {"type": "string"}, "pack": {"type": "string"}, "publish": {"type": "string"}}, "required": ["package", "pack", "publish"]}, "author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {}, "required": []}, "peerDependencies": {"type": "object", "properties": {"@angular/common": {"type": "string"}, "@angular/platform-browser": {"type": "string"}, "@angular/compiler": {"type": "string"}, "@angular/compiler-cli": {"type": "string"}}, "required": ["@angular/common", "@angular/platform-browser", "@angular/compiler", "@angular/compiler-cli"]}, "devDependencies": {"type": "object", "properties": {"@angular/common": {"type": "string"}, "@angular/compiler": {"type": "string"}, "@angular/compiler-cli": {"type": "string"}, "@angular/core": {"type": "string"}, "@angular/platform-browser": {"type": "string"}, "ng-packagr": {"type": "string"}, "typescript": {"type": "string"}}, "required": ["@angular/common", "@angular/compiler", "@angular/compiler-cli", "@angular/core", "@angular/platform-browser", "ng-packagr", "typescript"]}}, "required": ["name", "version", "description", "readme", "main", "typings", "repository", "scripts", "author", "license", "dependencies", "peerDependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "ng2-loading-pane", "version" : "1.3.0", "description" : "A simple loading pane implementation for angular 5 based on promises.", "readme" : "readme.md", "main" : "dist/index.js", "typings" : "dist/index.d.ts", "repository" : "https://github.com/tristanmenzel/ng2-loading-pane.git", "scripts" : {"package" : "ng-packagr -p ng-package.json", "pack" : "npm run package && npm pack ./dist", "publish" : "npm run package && npm publish ./dist"}, "author" : "Tristan Menzel", "license" : "MIT", "dependencies" : {}, "peerDependencies" : {"@angular/common" : "^6.0.3", "@angular/platform-browser" : "^6.0.3", "@angular/compiler" : "^6.0.3", "@angular/compiler-cli" : "^6.0.3"}, "devDependencies" : {"@angular/common" : "^6.0.3", "@angular/compiler" : "^6.0.3", "@angular/compiler-cli" : "^6.0.3", "@angular/core" : "^6.0.3", "@angular/platform-browser" : "^6.0.3", "ng-packagr" : "^4.0.0", "typescript" : "~2.7.2"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "readme": {"type": "string"}, "main": {"type": "string"}, "typings": {"type": "string"}, "repository": {"type": "string"}, "scripts": {"type": "object", "properties": {"package": {"type": "string"}, "pack": {"type": "string"}, "publish": {"type": "string"}}, "required": ["package", "pack", "publish"]}, "author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {}, "required": []}, "peerDependencies": {"type": "object", "properties": {"@angular/common": {"type": "string"}, "@angular/platform-browser": {"type": "string"}, "@angular/compiler": {"type": "string"}, "@angular/compiler-cli": {"type": "string"}}, "required": ["@angular/common", "@angular/platform-browser", "@angular/compiler", "@angular/compiler-cli"]}, "devDependencies": {"type": "object", "properties": {"@angular/common": {"type": "string"}, "@angular/compiler": {"type": "string"}, "@angular/compiler-cli": {"type": "string"}, "@angular/core": {"type": "string"}, "@angular/platform-browser": {"type": "string"}, "ng-packagr": {"type": "string"}, "typescript": {"type": "string"}}, "required": ["@angular/common", "@angular/compiler", "@angular/compiler-cli", "@angular/core", "@angular/platform-browser", "ng-packagr", "typescript"]}}, "required": ["name", "version", "description", "readme", "main", "typings", "repository", "scripts", "author", "license", "dependencies", "peerDependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"h": {"type": "array", "items": {"type": "object", "properties": {"d": {"type": "array", "items": {"type": "object", "properties": {"s": {"type": "array", "items": {"type": "string"}}, "e": {"type": "array", "items": {"type": "string"}}, "f": {"type": "string"}}, "required": ["s", "e", "f"]}}}, "required": ["d"]}}, "stem": {"type": "string"}, "t": {"type": "string"}}, "required": ["h", "stem", "t"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"h" : [{"d" : [{"s" : ["`sapita'eselaw~"], "e" : ["\ufff9`Sapitiselaw~ `ako~ `to~ `demak~ `ira~.\ufffa\ufffb\u6211\u5e0c\u671b\u6d1e\u5bdf\u4ed6\u7684\u884c\u70ba\u3002"], "f" : "\u60f3\u7a7f\u900f\u3001\u60f3\u6d1e\u5bdf\u3002"}]}], "stem" : "tisel", "t" : "sapitiselaw"}
json_instruct
{"type": "object", "properties": {"h": {"type": "array", "items": {"type": "object", "properties": {"d": {"type": "array", "items": {"type": "object", "properties": {"s": {"type": "array", "items": {"type": "string"}}, "e": {"type": "array", "items": {"type": "string"}}, "f": {"type": "string"}}, "required": ["s", "e", "f"]}}}, "required": ["d"]}}, "stem": {"type": "string"}, "t": {"type": "string"}}, "required": ["h", "stem", "t"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}, "test": {"type": "string"}, "lint": {"type": "string"}, "reply": {"type": "string"}}, "required": ["start", "test", "lint", "reply"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"bent": {"type": "string"}, "dotenv": {"type": "string"}, "goodparts": {"type": "string"}, "mocha": {"type": "string"}, "node-fetch": {"type": "string"}, "twit": {"type": "string"}}, "required": ["bent", "dotenv", "goodparts", "mocha", "node-fetch", "twit"]}}, "required": ["name", "version", "description", "main", "scripts", "keywords", "author", "license", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "btcpermabullbot", "version" : "0.0.1", "description" : "A twitter bot that's bullish on Bitcoin.", "main" : "index.js", "scripts" : {"start" : "node index.js", "test" : "./node_modules/.bin/mocha --reporter spec", "lint" : "node_modules/.bin/goodparts *.js src/**", "reply" : "node reply.js"}, "keywords" : ["twitter", "bot", "bitcoin"], "author" : "dergigi", "license" : "MIT", "dependencies" : {"bent" : "^7.3.5", "dotenv" : "^8.2.0", "goodparts" : "^1.3.0", "mocha" : "^8.0.1", "node-fetch" : "^2.6.0", "twit" : "^2.2.11"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}, "test": {"type": "string"}, "lint": {"type": "string"}, "reply": {"type": "string"}}, "required": ["start", "test", "lint", "reply"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"bent": {"type": "string"}, "dotenv": {"type": "string"}, "goodparts": {"type": "string"}, "mocha": {"type": "string"}, "node-fetch": {"type": "string"}, "twit": {"type": "string"}}, "required": ["bent", "dotenv", "goodparts", "mocha", "node-fetch", "twit"]}}, "required": ["name", "version", "description", "main", "scripts", "keywords", "author", "license", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"require": {"type": "object", "properties": {"google/apiclient-services": {"type": "string"}, "google/apiclient": {"type": "string"}}, "required": ["google/apiclient-services", "google/apiclient"]}}, "required": ["require"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"require" : {"google/apiclient-services" : "dev-master as 0.122", "google/apiclient" : "^2.4"}}
json_instruct
{"type": "object", "properties": {"require": {"type": "object", "properties": {"google/apiclient-services": {"type": "string"}, "google/apiclient": {"type": "string"}}, "required": ["google/apiclient-services", "google/apiclient"]}}, "required": ["require"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "scripts": {"type": "object", "properties": {"dev": {"type": "string"}, "build": {"type": "string"}, "preview": {"type": "string"}, "inlined-build": {"type": "string"}, "inlined-preview": {"type": "string"}}, "required": ["dev", "build", "preview", "inlined-build", "inlined-preview"]}, "dependencies": {"type": "object", "properties": {"primeflex": {"type": "string"}, "primeicons": {"type": "string"}, "primevue": {"type": "string"}, "vue": {"type": "string"}, "vue-class-component": {"type": "string"}, "vue-property-decorator": {"type": "string"}, "vue-router": {"type": "string"}, "vuex": {"type": "string"}}, "required": ["primeflex", "primeicons", "primevue", "vue", "vue-class-component", "vue-property-decorator", "vue-router", "vuex"]}, "devDependencies": {"type": "object", "properties": {"@types/node": {"type": "string"}, "@vitejs/plugin-vue": {"type": "string"}, "@vue/compiler-sfc": {"type": "string"}, "sass": {"type": "string"}, "typescript": {"type": "string"}, "vite": {"type": "string"}, "vite-plugin-singlefile": {"type": "string"}, "vue-tsc": {"type": "string"}}, "required": ["@types/node", "@vitejs/plugin-vue", "@vue/compiler-sfc", "sass", "typescript", "vite", "vite-plugin-singlefile", "vue-tsc"]}}, "required": ["name", "version", "scripts", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "my-vue-app", "version" : "0.0.0", "scripts" : {"dev" : "vite", "build" : "vite build", "preview" : "vite build && vite preview", "inlined-build" : "vite build --config vite.config.inlined.ts", "inlined-preview" : "vite build --config vite.config.inlined.ts && start ./dist/index.html"}, "dependencies" : {"primeflex" : "^2.0.0", "primeicons" : "^4.1.0", "primevue" : "^3.2.0-rc.1", "vue" : "^3.0.5", "vue-class-component" : "^8.0.0-0", "vue-property-decorator" : "^9.1.2", "vue-router" : "^4.0.0-0", "vuex" : "^4.0.0-0"}, "devDependencies" : {"@types/node" : "^14.14.37", "@vitejs/plugin-vue" : "^1.2.1", "@vue/compiler-sfc" : "^3.0.5", "sass" : "^1.26.5", "typescript" : "^4.1.3", "vite" : "^2.1.5", "vite-plugin-singlefile" : "^0.5.1", "vue-tsc" : "^0.0.15"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "scripts": {"type": "object", "properties": {"dev": {"type": "string"}, "build": {"type": "string"}, "preview": {"type": "string"}, "inlined-build": {"type": "string"}, "inlined-preview": {"type": "string"}}, "required": ["dev", "build", "preview", "inlined-build", "inlined-preview"]}, "dependencies": {"type": "object", "properties": {"primeflex": {"type": "string"}, "primeicons": {"type": "string"}, "primevue": {"type": "string"}, "vue": {"type": "string"}, "vue-class-component": {"type": "string"}, "vue-property-decorator": {"type": "string"}, "vue-router": {"type": "string"}, "vuex": {"type": "string"}}, "required": ["primeflex", "primeicons", "primevue", "vue", "vue-class-component", "vue-property-decorator", "vue-router", "vuex"]}, "devDependencies": {"type": "object", "properties": {"@types/node": {"type": "string"}, "@vitejs/plugin-vue": {"type": "string"}, "@vue/compiler-sfc": {"type": "string"}, "sass": {"type": "string"}, "typescript": {"type": "string"}, "vite": {"type": "string"}, "vite-plugin-singlefile": {"type": "string"}, "vue-tsc": {"type": "string"}}, "required": ["@types/node", "@vitejs/plugin-vue", "@vue/compiler-sfc", "sass", "typescript", "vite", "vite-plugin-singlefile", "vue-tsc"]}}, "required": ["name", "version", "scripts", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"h": {"type": "array", "items": {"type": "object", "properties": {"d": {"type": "array", "items": {"type": "object", "properties": {"e": {"type": "array", "items": {"type": "string"}}, "f": {"type": "string"}}, "required": ["e", "f"]}}}, "required": ["d"]}}, "t": {"type": "string"}}, "required": ["h", "t"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"h" : [{"d" : [{"e" : ["\ufff9`O~ `so'elin~`ay~ `a~ `demak~ `konini~.\ufffa1. This thing really happened. 2. This is the way that activity is / the nature of the activity.\ufffb1. \u9019\u662f\u771f\u5be6\u7684\u4e8b\u60c5 2. \u9019\u500b\u6d3b\u52d5\u662f\u81ea\u7136\u6d3b\u8e8d\u7684\u52d5\u4f5c (FIXME)"], "f" : "\ufff9\ufffagenuine * real\ufffb\u8aa0\u5be6\uff0c\u771f\u7684\uff0c\u5be6\u5728\u7684"}, {"e" : ["\ufff9`O~ `so'elin~`ay~ `a~ `sowal~ `konini~.\ufffaThese are true words.\ufffb\u9019\u4e9b\u8a71\u7684\u78ba\u662f\u771f\u7684", "\ufff9`So'elinay~ `ma~`fana'~ `cingra~ `haw~?\ufffaDoes he really know?\ufffb\u4ed6\u771f\u7684\u77e5\u9053\u55ce\uff1f"], "f" : "\ufff9\ufffatrue\ufffb\u771f\u5be6"}, {"e" : ["\ufff9`So'elinay~ `ko~ `faloco'~ `noya~ `tamdaw~.\ufffaThat person is sincere / faithful.\ufffb\u90a3\u500b\u4eba\u5f88\u5fe0\u539a"], "f" : "\ufff9\ufffasincere\ufffb\u5fe0\u8aa0"}, {"s" : ["`paso'elin~"], "e" : ["\ufff9`Onini~ `ko~ `so'elin~`ay~.\ufffaThis is the standard / norm.\ufffb\u9019\u662f\u5f88\u6a19\u6e96\u7684"], "f" : "\ufff9\ufffanorm * standard\ufffb\u5207\u5be6\u7684\uff0c\u6a19\u6e96\u7684"}]}], "t" : "so'elin"}
json_instruct
{"type": "object", "properties": {"h": {"type": "array", "items": {"type": "object", "properties": {"d": {"type": "array", "items": {"type": "object", "properties": {"e": {"type": "array", "items": {"type": "string"}}, "f": {"type": "string"}}, "required": ["e", "f"]}}}, "required": ["d"]}}, "t": {"type": "string"}}, "required": ["h", "t"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"description": {"type": "string"}, "language": {"type": "string"}, "recorded": {"type": "string"}, "speakers": {"type": "array", "items": {"type": "string"}}, "thumbnail_url": {"type": "string"}, "title": {"type": "string"}, "videos": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}}}, "required": ["description", "language", "recorded", "speakers", "thumbnail_url", "title", "videos"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"description" : "DjangoCon US 2017 - Lightning Talks Day 2 by Various Speakers\n\n00:00 Filipe Ximenes\n05:42 Paul Bailey \n10:53 Richard Latimer \n14:30 ??? \n19:14 James Bennett \n24:11 Wayne Merry \n28:54 Tim Allen\n34:23 Vic Yang \n35:26 Dan Dietz", "language" : "eng", "recorded" : "2017-08-14", "speakers" : ["Filipe Ximenes", "Paul Bailey", "Richard Latimer", "James Bennett", "Wayne Merry", "Tim Allen", "Vic Yang", "Dan Dietz"], "thumbnail_url" : "https://i.ytimg.com/vi/xaFAhpqCAl0/hqdefault.jpg", "title" : "Lightning Talks Day 2", "videos" : [{"type" : "youtube", "url" : "https://www.youtube.com/watch?v=xaFAhpqCAl0"}]}
json_instruct
{"type": "object", "properties": {"description": {"type": "string"}, "language": {"type": "string"}, "recorded": {"type": "string"}, "speakers": {"type": "array", "items": {"type": "string"}}, "thumbnail_url": {"type": "string"}, "title": {"type": "string"}, "videos": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}}}, "required": ["description", "language", "recorded", "speakers", "thumbnail_url", "title", "videos"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"title": {"type": "string"}, "fields": {"type": "array", "items": {"type": "string"}}, "abstract": {"type": "string"}, "citation": {"type": "string"}, "departments": {"type": "array", "items": {"type": "string"}}, "authors": {"type": "array", "items": {"type": "string"}}, "conf": {"type": "string"}, "year": {"type": "string"}, "pages": {"type": "integer"}}, "required": ["title", "fields", "abstract", "citation", "departments", "authors", "conf", "year", "pages"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"title" : "Inferring traffic shaping and policy parameters using end host measurements.", "fields" : ["internet access", "planetlab", "bandwidth allocation", "internet traffic", "traffic shaping"], "abstract" : "The increasing adoption of high speed Internet connectivity in homes has led to the development of bandwidth hungry applications. This, in turn, induces ISPs to protect their core networks by deploying traffic shaping devices. End users, ISPs and regulators need to better understand the shaping policies that are enforced by the network. The paper presents a method for inferring flow discrimination and shaping parameters in the presence of cross traffic using active probing. The key concept is a stochastic comparison of the inter-arrival times of packets and measured bandwidth of a base-line flow and the measured flow. We present Packsen, a framework designed to provide high detection accuracy by sending interleaved flows at a very precise bandwidth, and used it for measurements on a local testbed and on PlanetLab. Evaluation shows the accuracy and robustness of the proposed method for detecting traffic shaping and inferring its parameters.", "citation" : "Citations (9)", "departments" : ["Tel Aviv University", "Technicolor", "Technicolor"], "authors" : ["Udi Weinsberg.....http://dblp.org/pers/hd/w/Weinsberg:Udi", "Augustin Soule.....http://dblp.org/pers/hd/s/Soule:Augustin", "Laurent Massouli\u00e9.....http://dblp.org/pers/hd/m/Massouli=eacute=:Laurent"], "conf" : "infocom", "year" : "2011", "pages" : 5}
json_instruct
{"type": "object", "properties": {"title": {"type": "string"}, "fields": {"type": "array", "items": {"type": "string"}}, "abstract": {"type": "string"}, "citation": {"type": "string"}, "departments": {"type": "array", "items": {"type": "string"}}, "authors": {"type": "array", "items": {"type": "string"}}, "conf": {"type": "string"}, "year": {"type": "string"}, "pages": {"type": "integer"}}, "required": ["title", "fields", "abstract", "citation", "departments", "authors", "conf", "year", "pages"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"@context": {"type": "string"}, "@id": {"type": "string"}, "country": {"type": "string"}, "name": {"type": "string"}}, "required": ["@context", "@id", "country", "name"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"@context" : "https://api.eurocris.org/dris/contexts/orgunits.jsonld", "@id" : "https://api.eurocris.org/dris/orgunits/ou00451", "country" : "https://api.eurocris.org/dris/vocabs/countries/country00779", "name" : "Free University of Amsterdam"}
json_instruct
{"type": "object", "properties": {"@context": {"type": "string"}, "@id": {"type": "string"}, "country": {"type": "string"}, "name": {"type": "string"}}, "required": ["@context", "@id", "country", "name"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"includes": {"type": "array", "items": {"type": "string"}}, "soc": {"type": "object", "properties": {"fc": {"type": "object", "properties": {"core": {"type": "string"}}, "required": ["core"]}}, "required": ["fc"]}}, "required": ["includes", "soc"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"includes" : ["chips/pulpissimo/pulpissimo.json"], "soc" : {"fc" : {"core" : "ri5ky_v2_fpu_1_10_rnnext"}}}
json_instruct
{"type": "object", "properties": {"includes": {"type": "array", "items": {"type": "string"}}, "soc": {"type": "object", "properties": {"fc": {"type": "object", "properties": {"core": {"type": "string"}}, "required": ["core"]}}, "required": ["fc"]}}, "required": ["includes", "soc"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"upper_left_x": {"type": "number"}, "upper_left_y": {"type": "integer"}, "bottom_right_x": {"type": "number"}, "bottom_right_y": {"type": "number"}, "time": {"type": "integer"}, "is_final": {"type": "boolean"}, "event_type": {"type": "string"}, "op_order": {"type": "integer"}, "id": {"type": "integer"}}, "required": ["upper_left_x", "upper_left_y", "bottom_right_x", "bottom_right_y", "time", "is_final", "event_type", "op_order", "id"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"upper_left_x" : 1163.3122714865044, "upper_left_y" : 0, "bottom_right_x" : 1982.587059572937, "bottom_right_y" : 1088.0100844391757, "time" : 1480178413974, "is_final" : true, "event_type" : "zoom", "op_order" : 19, "id" : 19}
json_instruct
{"type": "object", "properties": {"upper_left_x": {"type": "number"}, "upper_left_y": {"type": "integer"}, "bottom_right_x": {"type": "number"}, "bottom_right_y": {"type": "number"}, "time": {"type": "integer"}, "is_final": {"type": "boolean"}, "event_type": {"type": "string"}, "op_order": {"type": "integer"}, "id": {"type": "integer"}}, "required": ["upper_left_x", "upper_left_y", "bottom_right_x", "bottom_right_y", "time", "is_final", "event_type", "op_order", "id"], "$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"}, "lockfileVersion": {"type": "integer"}, "requires": {"type": "boolean"}, "dependencies": {"type": "object", "properties": {"crypto-js": {"type": "object", "properties": {"version": {"type": "string"}, "resolved": {"type": "string"}, "integrity": {"type": "string"}}, "required": ["version", "resolved", "integrity"]}}, "required": ["crypto-js"]}}, "required": ["name", "version", "lockfileVersion", "requires", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "node-red-contrib-crypto-js-dynamic", "version" : "0.1.21", "lockfileVersion" : 1, "requires" : true, "dependencies" : {"crypto-js" : {"version" : "3.3.0", "resolved" : "https://registry.npmjs.org/crypto-js/-/crypto-js-3.3.0.tgz", "integrity" : "sha512-DIT51nX0dCfKltpRiXV+/TVZq+Qq2NgF4644+K7Ttnla7zEzqc+kjJyiB96BHNyUTBxyjzRcZYpUdZa+QAqi6Q=="}}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "lockfileVersion": {"type": "integer"}, "requires": {"type": "boolean"}, "dependencies": {"type": "object", "properties": {"crypto-js": {"type": "object", "properties": {"version": {"type": "string"}, "resolved": {"type": "string"}, "integrity": {"type": "string"}}, "required": ["version", "resolved", "integrity"]}}, "required": ["crypto-js"]}}, "required": ["name", "version", "lockfileVersion", "requires", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}