input stringlengths 159 2.05k | output stringlengths 5 10.3k | task stringclasses 1
value | schema stringlengths 100 1.99k |
|---|---|---|---|
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"workshoptitle": {"type": "string"}, "help": {"type": "string"}, "tutorials": {"type": "array", "items": {"type": "object", "properties": {"title": {"type": "string"}, "description": {"type": "string"}, "filename": {"type": "string"}}, "required": ["title", "description", "filename"]}}}, "required": ["workshoptitle", "help", "tutorials"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"workshoptitle" : "Data Mesh for Monolith to Microservices", "help" : "jan.leemans@oracle.com", "tutorials" : [{"title" : "Part 1 : Introduction and Prerequisites", "description" : "Introduction to the solution and Prerequisites for provisioning the infrastructure", "filename" : "../../01-intro/datamesh1intro.md"}, {"title" : "Part 2 : Creating the stack : Autonomous Database", "description" : "Creating an Autonomous Database instance", "publisheddate" : "10/13/2021", "filename" : "../../02-db/datamesh2db.md"}, {"title" : "Part 3 : Creating the GoldenGate Data Pump", "description" : "Create an OCI GoldenGate instance", "publisheddate" : "10/13/2021", "filename" : "../../03-gg/datamesh3gg.md"}, {"title" : "Part 4 : Creating the Microservices applications", "description" : "Spin up a VM to run a few Microservices that act as consumers", "filename" : "../../04-microservice/datamesh4microservice.md"}, {"title" : "Part 5 : Configure the schemas", "description" : "Set up the 3 environments: Monolith, Data Pump and Microservice", "filename" : "../../05-config/datamesh5config.md"}, {"title" : "Part 6 : Configure the Flows", "description" : "Configure Source and Target systems in the GoldenGate environment and Observe the resulting data flows", "filename" : "../../06-flows/datamesh6flows.md"}]} | json_instruct | {"type": "object", "properties": {"workshoptitle": {"type": "string"}, "help": {"type": "string"}, "tutorials": {"type": "array", "items": {"type": "object", "properties": {"title": {"type": "string"}, "description": {"type": "string"}, "filename": {"type": "string"}}, "required": ["title", "description", "filename"]}}}, "required": ["workshoptitle", "help", "tutorials"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"parent": {"type": "string"}}, "required": ["parent"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"parent" : "goo:block/radiant_goo_bulbous"} | json_instruct | {"type": "object", "properties": {"parent": {"type": "string"}}, "required": ["parent"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"status_code": {"type": "string"}, "status_msg": {"type": "string"}, "meta": {"type": "object", "properties": {"tag": {"type": "object", "properties": {"timestamp": {"type": "number"}, "model": {"type": "string"}, "config": {"type": "string"}}, "required": ["timestamp", "model", "config"]}}, "required": ["tag"]}, "results": {"type": "array", "items": {"type": "object", "properties": {"docid": {"type": "integer"}, "status_code": {"type": "string"}, "status_msg": {"type": "string"}, "local_id": {"type": "string"}, "result": {"type": "object", "properties": {"tag": {"type": "object", "properties": {"classes": {"type": "array", "items": {"type": "string"}}, "probs": {"type": "array", "items": {"type": "number"}}}, "required": ["classes", "probs"]}}, "required": ["tag"]}, "docid_str": {"type": "string"}}, "required": ["docid", "status_code", "status_msg", "local_id", "result", "docid_str"]}}}, "required": ["status_code", "status_msg", "meta", "results"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"status_code" : "OK", "status_msg" : "All images in request have completed successfully. ", "meta" : {"tag" : {"timestamp" : 1442728857.975484, "model" : "default", "config" : "0b2b7436987dd912e077ff576731f8b7"}}, "results" : [{"docid" : 160810452867467351039279422186083256214, "status_code" : "OK", "status_msg" : "OK", "local_id" : "", "result" : {"tag" : {"classes" : ["bridge", "night", "water", "sunset", "city", "river", "sky", "moon", "reflection", "sea", "sunrise", "suspension bridge", "evening", "light", "skyline", "twilight", "nobody", "pier", "dusk", "travel"], "probs" : [0.9940637350082397, 0.9922498464584351, 0.9918611645698547, 0.9905878901481628, 0.9765506982803345, 0.9747493863105774, 0.9736422300338745, 0.9699068665504456, 0.9657716751098633, 0.9577583074569702, 0.9553261995315552, 0.9406155943870544, 0.9397474527359009, 0.9292843341827393, 0.9268249273300171, 0.9134625196456909, 0.9122527241706848, 0.9116915464401245, 0.9116740226745605, 0.9104559421539307]}}, "docid_str" : "78faf776b0416ddde38579a998770796"}]} | json_instruct | {"type": "object", "properties": {"status_code": {"type": "string"}, "status_msg": {"type": "string"}, "meta": {"type": "object", "properties": {"tag": {"type": "object", "properties": {"timestamp": {"type": "number"}, "model": {"type": "string"}, "config": {"type": "string"}}, "required": ["timestamp", "model", "config"]}}, "required": ["tag"]}, "results": {"type": "array", "items": {"type": "object", "properties": {"docid": {"type": "integer"}, "status_code": {"type": "string"}, "status_msg": {"type": "string"}, "local_id": {"type": "string"}, "result": {"type": "object", "properties": {"tag": {"type": "object", "properties": {"classes": {"type": "array", "items": {"type": "string"}}, "probs": {"type": "array", "items": {"type": "number"}}}, "required": ["classes", "probs"]}}, "required": ["tag"]}, "docid_str": {"type": "string"}}, "required": ["docid", "status_code", "status_msg", "local_id", "result", "docid_str"]}}}, "required": ["status_code", "status_msg", "meta", "results"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "author": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "licenses": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}}, "required": ["start"]}, "dependencies": {"type": "object", "properties": {"bluebird": {"type": "string"}, "body-parser": {"type": "string"}, "commander": {"type": "string"}, "cookie-parser": {"type": "string"}, "debug": {"type": "string"}, "ejs": {"type": "string"}, "express": {"type": "string"}, "morgan": {"type": "string"}, "python-shell": {"type": "string"}, "request": {"type": "string"}, "serve-favicon": {"type": "string"}, "socket.io": {"type": "string"}, "socket.io-client": {"type": "string"}}, "required": ["bluebird", "body-parser", "commander", "cookie-parser", "debug", "ejs", "express", "morgan", "python-shell", "request", "serve-favicon", "socket.io", "socket.io-client"]}, "devDependencies": {"type": "object", "properties": {"node-julia": {"type": "string"}}, "required": ["node-julia"]}}, "required": ["name", "version", "description", "author", "repository", "licenses", "bugs", "scripts", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "flying-monkey", "version" : "0.0.2", "description" : "Navigation for 3DR drones", "author" : "Jeff Waller <truthset@gmail.com>", "repository" : {"type" : "git", "url" : "git://github.com/waTeim/flying-monkey.git"}, "licenses" : [{"type" : "MIT", "url" : "https://github.com/waTeim/flying-monkey/LICENSE"}], "bugs" : {"url" : "https://github.com/waTeim/flying-monkey/issues"}, "scripts" : {"start" : "node ./bin/www"}, "dependencies" : {"bluebird" : "x", "body-parser" : "~1.13.2", "commander" : "x", "cookie-parser" : "~1.3.5", "debug" : "~2.2.0", "ejs" : "~2.3.3", "express" : "~4.13.1", "morgan" : "~1.6.1", "python-shell" : "x", "request" : "x", "serve-favicon" : "~2.3.0", "socket.io" : "x", "socket.io-client" : "x"}, "devDependencies" : {"node-julia" : "git://github.com/waTeim/node-julia.git"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "author": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "licenses": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}}, "required": ["start"]}, "dependencies": {"type": "object", "properties": {"bluebird": {"type": "string"}, "body-parser": {"type": "string"}, "commander": {"type": "string"}, "cookie-parser": {"type": "string"}, "debug": {"type": "string"}, "ejs": {"type": "string"}, "express": {"type": "string"}, "morgan": {"type": "string"}, "python-shell": {"type": "string"}, "request": {"type": "string"}, "serve-favicon": {"type": "string"}, "socket.io": {"type": "string"}, "socket.io-client": {"type": "string"}}, "required": ["bluebird", "body-parser", "commander", "cookie-parser", "debug", "ejs", "express", "morgan", "python-shell", "request", "serve-favicon", "socket.io", "socket.io-client"]}, "devDependencies": {"type": "object", "properties": {"node-julia": {"type": "string"}}, "required": ["node-julia"]}}, "required": ["name", "version", "description", "author", "repository", "licenses", "bugs", "scripts", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"objects": {"type": "object", "properties": {"vectile": {"type": "object", "properties": {"type": {"type": "string"}, "geometries": {"type": "array", "items": {"type": "object", "properties": {"arcs": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"id": {"type": "integer"}, "nazev": {"type": "string"}}, "required": ["id", "nazev"]}, "clipped": {"type": "boolean"}, "id": {"type": "string"}}, "required": ["arcs", "type", "properties", "clipped", "id"]}}}, "required": ["type", "geometries"]}}, "required": ["vectile"]}, "type": {"type": "string"}, "transform": {"type": "object", "properties": {"translate": {"type": "array", "items": {"type": "number"}}, "scale": {"type": "array", "items": {"type": "number"}}}, "required": ["translate", "scale"]}, "arcs": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}}}, "required": ["objects", "type", "transform", "arcs"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"objects" : {"vectile" : {"type" : "GeometryCollection", "geometries" : [{"arcs" : [[0]], "type" : "Polygon", "properties" : {"id" : 76, "nazev" : "Opava"}, "clipped" : true, "id" : "a00318fcae"}]}}, "type" : "Topology", "transform" : {"translate" : [17.929687499999996, 49.95121990866204], "scale" : [8.58306884765625e-05, 5.519443942852281e-05]}, "arcs" : [[[0, 640], [278, 339], [97, 4], [48, 41], [98, 0], [98, -41], [20, 41], [385, 0], [0, -1024], [-1024, 0], [0, 640]]]} | json_instruct | {"type": "object", "properties": {"objects": {"type": "object", "properties": {"vectile": {"type": "object", "properties": {"type": {"type": "string"}, "geometries": {"type": "array", "items": {"type": "object", "properties": {"arcs": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"id": {"type": "integer"}, "nazev": {"type": "string"}}, "required": ["id", "nazev"]}, "clipped": {"type": "boolean"}, "id": {"type": "string"}}, "required": ["arcs", "type", "properties", "clipped", "id"]}}}, "required": ["type", "geometries"]}}, "required": ["vectile"]}, "type": {"type": "string"}, "transform": {"type": "object", "properties": {"translate": {"type": "array", "items": {"type": "number"}}, "scale": {"type": "array", "items": {"type": "number"}}}, "required": ["translate", "scale"]}, "arcs": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}}}, "required": ["objects", "type", "transform", "arcs"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "license": {"type": "string"}, "main": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "testling": {"type": "object", "properties": {"files": {"type": "string"}}, "required": ["files"]}, "devDependencies": {"type": "object", "properties": {"browserify": {"type": "string"}, "chromedriver": {"type": "string"}, "grunt": {"type": "string"}, "grunt-cli": {"type": "string"}, "grunt-contrib-jshint": {"type": "string"}, "grunt-contrib-nodeunit": {"type": "string"}, "grunt-contrib-uglify": {"type": "string"}, "grunt-githooks": {"type": "string"}, "grunt-jscs": {"type": "string"}, "selenium-webdriver": {"type": "string"}, "tape": {"type": "string"}, "testling": {"type": "string"}, "travis-multirunner": {"type": "string"}}, "required": ["browserify", "chromedriver", "grunt", "grunt-cli", "grunt-contrib-jshint", "grunt-contrib-nodeunit", "grunt-contrib-uglify", "grunt-githooks", "grunt-jscs", "selenium-webdriver", "tape", "testling", "travis-multirunner"]}}, "required": ["name", "version", "description", "license", "main", "repository", "scripts", "testling", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "webrtc-adapter-test", "version" : "0.2.9", "description" : "Hide browser differences in WebRTC APIs (test package name)", "license" : "BSD-3-Clause", "main" : "adapter.js", "repository" : {"type" : "git", "url" : "https://github.com/webrtc/adapter.git"}, "scripts" : {"test" : "grunt && test/run-tests"}, "testling" : {"files" : "test/test.js"}, "devDependencies" : {"browserify" : "^10.2.1", "chromedriver" : "^2.16.0", "grunt" : "^0.4.5", "grunt-cli" : ">=0.1.9", "grunt-contrib-jshint" : "^0.11.2", "grunt-contrib-nodeunit" : "~0.4.1", "grunt-contrib-uglify" : "^0.9.1", "grunt-githooks" : "^0.3.1", "grunt-jscs" : "^2.0.0", "selenium-webdriver" : "^2.48.0", "tape" : "^4.0.0", "testling" : "^1.7.1", "travis-multirunner" : "^3.0.0"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "license": {"type": "string"}, "main": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "testling": {"type": "object", "properties": {"files": {"type": "string"}}, "required": ["files"]}, "devDependencies": {"type": "object", "properties": {"browserify": {"type": "string"}, "chromedriver": {"type": "string"}, "grunt": {"type": "string"}, "grunt-cli": {"type": "string"}, "grunt-contrib-jshint": {"type": "string"}, "grunt-contrib-nodeunit": {"type": "string"}, "grunt-contrib-uglify": {"type": "string"}, "grunt-githooks": {"type": "string"}, "grunt-jscs": {"type": "string"}, "selenium-webdriver": {"type": "string"}, "tape": {"type": "string"}, "testling": {"type": "string"}, "travis-multirunner": {"type": "string"}}, "required": ["browserify", "chromedriver", "grunt", "grunt-cli", "grunt-contrib-jshint", "grunt-contrib-nodeunit", "grunt-contrib-uglify", "grunt-githooks", "grunt-jscs", "selenium-webdriver", "tape", "testling", "travis-multirunner"]}}, "required": ["name", "version", "description", "license", "main", "repository", "scripts", "testling", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"_id": {"type": "string"}, "_type": {"type": "string"}, "body": {"type": "string"}, "components": {"type": "array", "items": {"type": "object", "properties": {"_id": {"type": "string"}, "_type": {"type": "string"}, "html": {"type": "string"}}, "required": ["_id", "_type", "html"]}}, "extraComponents": {"type": "array", "items": {"type": "object", "properties": {"_id": {"type": "string"}, "_type": {"type": "string"}, "html": {"type": "string"}}, "required": ["_id", "_type", "html"]}}, "heading": {"type": "string"}, "steps": {"type": "array", "items": {"type": "string"}}, "url": {"type": "string"}}, "required": ["_id", "_type", "body", "components", "extraComponents", "heading", "steps", "url"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"_id" : "page.start", "_type" : "page.start", "body" : "You can apply to stop an order for recovery of an unpaid penalty charge if:\r\n\r\n* you didn't receive the penalty charge notice\r\n* you made representations to the local authority, but haven't received a reply\r\n* you've appealed to an adjudicator, but haven't received a decision, response, or you won the appeal\r\n* you've paid the penalty charge in full\r\n\r\n### Before you start\r\nYou'll need the Penalty Charge Notice (PCN) number and the registration number of the vehicle.", "components" : [{"_id" : "page.start--inset", "_type" : "inset", "html" : "If you have any difficulty completing this form you can contact the Traffic Enforcement Centre on 0300 123 1059."}], "extraComponents" : [{"_id" : "page.start--content", "_type" : "content", "html" : "Find out [how HM Courts and Tribunals Service uses personal information](https://www.gov.uk/government/organisations/hm-courts-and-tribunals-service/about/personal-information-charter)."}], "heading" : "Apply to stop an order for recovery of an unpaid penalty charge", "steps" : ["page.penalty-charge-details", "page.penalty-location", "page.reason-for-applying", "page.reason-for-application", "page.appeal-details", "page.payment-details", "page.evidence-to-support-application", "page.your-details", "page.person-completing-form", "page.vehicle-ownership", "page.what-is-your-role", "page.litigation-friend-evidence", "page.respondent-confirmation", "page.confirmation-on-behalf-of-respondent", "page.contact-preferences", "page.your-email-address", "page.your-phone-number", "page.check-answers", "page.application-sent"], "url" : "/"} | json_instruct | {"type": "object", "properties": {"_id": {"type": "string"}, "_type": {"type": "string"}, "body": {"type": "string"}, "components": {"type": "array", "items": {"type": "object", "properties": {"_id": {"type": "string"}, "_type": {"type": "string"}, "html": {"type": "string"}}, "required": ["_id", "_type", "html"]}}, "extraComponents": {"type": "array", "items": {"type": "object", "properties": {"_id": {"type": "string"}, "_type": {"type": "string"}, "html": {"type": "string"}}, "required": ["_id", "_type", "html"]}}, "heading": {"type": "string"}, "steps": {"type": "array", "items": {"type": "string"}}, "url": {"type": "string"}}, "required": ["_id", "_type", "body", "components", "extraComponents", "heading", "steps", "url"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"replace": {"type": "boolean"}, "values": {"type": "array", "items": {"type": "string"}}}, "required": ["replace", "values"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"replace" : false, "values" : ["superpackutils:epoxy_resin"]} | json_instruct | {"type": "object", "properties": {"replace": {"type": "boolean"}, "values": {"type": "array", "items": {"type": "string"}}}, "required": ["replace", "values"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"dna": {"type": "string"}, "name": {"type": "string"}, "description": {"type": "string"}, "image": {"type": "string"}, "edition": {"type": "integer"}, "date": {"type": "integer"}, "attributes": {"type": "array", "items": {"type": "object", "properties": {"trait_type": {"type": "string"}, "value": {"type": "string"}}, "required": ["trait_type", "value"]}}}, "required": ["dna", "name", "description", "image", "edition", "date", "attributes"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"dna" : "054020035", "name" : "#2", "description" : "The Nerdy Coder Clones, eats, breaths, and dreams code, maybe because they were created by code. Only 1000 of these coders exist and was created by HashLips.", "image" : "https://nerdycoderclones.online/metedata/2.png", "edition" : 2, "date" : 1633928391733, "attributes" : [{"trait_type" : "Body", "value" : "Nerd"}, {"trait_type" : "Clothing", "value" : "Zombie shirt"}, {"trait_type" : "Clothing logo", "value" : "Eye"}, {"trait_type" : "Eyebrows", "value" : "None"}, {"trait_type" : "Eyes", "value" : "Relaxed"}, {"trait_type" : "Eyewear", "value" : "None"}, {"trait_type" : "Mouth", "value" : "pout"}, {"trait_type" : "Nose", "value" : "Creepy"}, {"trait_type" : "Headwear", "value" : "Tattoo"}]} | json_instruct | {"type": "object", "properties": {"dna": {"type": "string"}, "name": {"type": "string"}, "description": {"type": "string"}, "image": {"type": "string"}, "edition": {"type": "integer"}, "date": {"type": "integer"}, "attributes": {"type": "array", "items": {"type": "object", "properties": {"trait_type": {"type": "string"}, "value": {"type": "string"}}, "required": ["trait_type", "value"]}}}, "required": ["dna", "name", "description", "image", "edition", "date", "attributes"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"buttons.common.js": {"type": "string"}, "buttons.common.min.js": {"type": "string"}, "buttons.esm.js": {"type": "string"}, "buttons.esm.min.js": {"type": "string"}, "buttons.js": {"type": "string"}, "buttons.min.js": {"type": "string"}}, "required": ["buttons.common.js", "buttons.common.min.js", "buttons.esm.js", "buttons.esm.min.js", "buttons.js", "buttons.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"buttons.common.js" : "sha512-lJYkkNr4028CPgB+LgoC4rQAMYjy9TxofpB63KNcXaAfeM1NYW+Yeevy8EEB0MW7wODCWD2YsdDscGeblSwAEA==", "buttons.common.min.js" : "sha512-OFp/jbNR5S8v3yxbZs/QJ9+kFSskd/fzHYZ/OaG2PJN1cLsJvFHjIMCIf8sRtgPppew9vSXZE88MXr9QY9GIWA==", "buttons.esm.js" : "sha512-NIGNbLczVE7AKD7O6txEVrs+B9pkGhkb9Mj6O14/IhtX3NFknKi/dUFNeYBkGN/+qWU7N4HZzn46oDlMvo8Qcw==", "buttons.esm.min.js" : "sha512-ncaR6b1mr4fILTC2w1wnTMc+qn7phGeSJL51dA4r6242eWuCEy2x3/nirlQzCMWh2EteQbHW4G+irfeoGAvhag==", "buttons.js" : "sha512-nuadWFDlewzsU9wjrT7sX7WffqhTb15dA+w6esU4SwwtrfBOPU0DccoQkW1880sDwSDzM8wSBmwctt5b93kBjg==", "buttons.min.js" : "sha512-mnyQcfTgLi5FiIF+kSWiVf4GuJpZvVstp1BcdZzLVof2xZ6pdaQ+YslCIOsng1IcrRf6w219DZt0VK2iqr1mig=="} | json_instruct | {"type": "object", "properties": {"buttons.common.js": {"type": "string"}, "buttons.common.min.js": {"type": "string"}, "buttons.esm.js": {"type": "string"}, "buttons.esm.min.js": {"type": "string"}, "buttons.js": {"type": "string"}, "buttons.min.js": {"type": "string"}}, "required": ["buttons.common.js", "buttons.common.min.js", "buttons.esm.js", "buttons.esm.min.js", "buttons.js", "buttons.min.js"], "$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"}, "lockfileVersion": {"type": "integer"}, "requires": {"type": "boolean"}, "dependencies": {"type": "object", "properties": {"eth-json-rpc-errors": {"type": "object", "properties": {"version": {"type": "string"}, "resolved": {"type": "string"}, "integrity": {"type": "string"}, "requires": {"type": "object", "properties": {"fast-safe-stringify": {"type": "string"}}, "required": ["fast-safe-stringify"]}}, "required": ["version", "resolved", "integrity", "requires"]}, "fast-safe-stringify": {"type": "object", "properties": {"version": {"type": "string"}, "resolved": {"type": "string"}, "integrity": {"type": "string"}}, "required": ["version", "resolved", "integrity"]}}, "required": ["eth-json-rpc-errors", "fast-safe-stringify"]}}, "required": ["name", "version", "lockfileVersion", "requires", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "matic-snaps", "version" : "1.0.0", "lockfileVersion" : 1, "requires" : true, "dependencies" : {"eth-json-rpc-errors" : {"version" : "1.1.0", "resolved" : "https://registry.npmjs.org/eth-json-rpc-errors/-/eth-json-rpc-errors-1.1.0.tgz", "integrity" : "sha512-AAA76BmwwSR5Mws+ivZUYxoDwMygDuMWxSTEmqDXhRPTExSWe5wuJLT/rSfvPSy9+owSudy67JmyRQ02RAOOYQ==", "requires" : {"fast-safe-stringify" : "^2.0.6"}}, "fast-safe-stringify" : {"version" : "2.0.7", "resolved" : "https://registry.npmjs.org/fast-safe-stringify/-/fast-safe-stringify-2.0.7.tgz", "integrity" : "sha512-Utm6CdzT+6xsDk2m8S6uL8VHxNwI6Jub+e9NYTcAms28T84pTa25GJQV9j0CY0N1rM8hK4x6grpF2BQf+2qwVA=="}}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "lockfileVersion": {"type": "integer"}, "requires": {"type": "boolean"}, "dependencies": {"type": "object", "properties": {"eth-json-rpc-errors": {"type": "object", "properties": {"version": {"type": "string"}, "resolved": {"type": "string"}, "integrity": {"type": "string"}, "requires": {"type": "object", "properties": {"fast-safe-stringify": {"type": "string"}}, "required": ["fast-safe-stringify"]}}, "required": ["version", "resolved", "integrity", "requires"]}, "fast-safe-stringify": {"type": "object", "properties": {"version": {"type": "string"}, "resolved": {"type": "string"}, "integrity": {"type": "string"}}, "required": ["version", "resolved", "integrity"]}}, "required": ["eth-json-rpc-errors", "fast-safe-stringify"]}}, "required": ["name", "version", "lockfileVersion", "requires", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "frequency": {"type": "integer"}, "males": {"type": "string"}, "females": {"type": "string"}}, "required": ["name", "frequency", "males", "females"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"name" : "GIULIANE", "frequency" : 71, "males" : "32.3943661971831 %", "females" : "67.6056338028169 %"}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "frequency": {"type": "integer"}, "males": {"type": "string"}, "females": {"type": "string"}}, "required": ["name", "frequency", "males", "females"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"id": {"type": "string"}, "district_id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "district_id", "name"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "7322020022", "district_id" : "7322020", "name" : "SUMPIRA"} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "district_id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "district_id", "name"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "bin": {"type": "object", "properties": {"esp": {"type": "string"}}, "required": ["esp"]}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "dependencies": {"type": "object", "properties": {"async": {"type": "string"}, "serialport": {"type": "string"}}, "required": ["async", "serialport"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}}, "required": ["name", "version", "description", "main", "bin", "scripts", "repository", "dependencies", "keywords", "author", "license"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "espruino-cli", "version" : "0.0.2", "description" : "Command Line Interface for Espruino", "main" : "index.js", "bin" : {"esp" : "./bin/esp.js"}, "scripts" : {"test" : "echo \"Error: no test specified\" && exit 1"}, "repository" : {"type" : "git", "url" : "https://github.com/gzip/esp-cli"}, "dependencies" : {"async" : "~0.2.9", "serialport" : "~1.2.5"}, "keywords" : ["espruino"], "author" : "Gamaiel Zavala", "license" : "MIT"} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "bin": {"type": "object", "properties": {"esp": {"type": "string"}}, "required": ["esp"]}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "dependencies": {"type": "object", "properties": {"async": {"type": "string"}, "serialport": {"type": "string"}}, "required": ["async", "serialport"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}}, "required": ["name", "version", "description", "main", "bin", "scripts", "repository", "dependencies", "keywords", "author", "license"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"$metric": {"type": "string"}, "$type": {"type": "string"}, "oid": {"type": "string"}, "type": {"type": "string"}}, "required": ["$metric", "$type", "oid", "type"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"$metric" : "Interface | xDSL | Line | SNR | Upstream", "$type" : "oid", "oid" : "1.3.6.1.4.1.1286.1.3.9.1.1.1.1.14.{{ ifIndex }}", "type" : "gauge"} | json_instruct | {"type": "object", "properties": {"$metric": {"type": "string"}, "$type": {"type": "string"}, "oid": {"type": "string"}, "type": {"type": "string"}}, "required": ["$metric", "$type", "oid", "type"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"code": {"type": "integer"}, "content": {"type": "array", "items": {"type": "object", "properties": {"showName": {"type": "string"}, "elementCode": {"type": "string"}, "extraParams": {"type": "string"}, "fieldConfigCode": {"type": "string"}}, "required": ["showName", "elementCode", "extraParams", "fieldConfigCode"]}}}, "required": ["code", "content"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"code" : 200, "content" : [{"showName" : "\u627f\u8fd0\u65b9", "elementCode" : "popSelectPartner", "extraParams" : "{\"field1\":\"carrierOrgName\",\"field2\":\"carrierOrgCode\",\"field3\":\"carrierOrgCode\",\"field4\":\"platformCarrierOrgCode\",\"required\":\"false\",\"readonly1\":\"TRUE\",\"maxLength1\":50,\"placeholder1\":\"\u8bf7\u8f93\u5165\u627f\u8fd0\u65b9\",\"outputKey3\":\"partner\",\"inputKey1\":\"partner.orgName\",\"inputKey2\":\"partner.code\",\"inputKey4\":\"partner.orgCode\"}", "fieldConfigCode" : "carrierOrgCode"}, {"showName" : "\u8f6c\u5305\u8fd0\u4ef7", "elementCode" : "clientFreightPrice", "extraParams" : "{\"field1\":\"clientFreightPrice\",\"field2\":\"clientFreightPriceUnitCode\",\"checkRule1\":\"[0-9]{1,10}(\\\\.[0-9]{0,2})?\",\"checkMsg1\":\"\u4e0d\u8d85\u8fc713\u4f4d\uff08\u6700\u591a2\u4f4d\u5c0f\u6570\uff09\",\"required\":\"false\",\"maxLength1\":13,\"placeholder1\":\"\u8bf7\u8f93\u5165\u8f6c\u5305\u8fd0\u4ef7\"}", "fieldConfigCode" : "clientFreightPrice"}, {"showName" : "\u5206\u914d\u8f66\u6b21", "elementCode" : "truckQty", "extraParams" : "{\"field1\":\"truckQty\",\"field2\":\"truckQtyUnitCode\",\"default2\":\"\u8f66\",\"checkRule1\":\"[0-9]{1,10}\",\"checkMsg1\":\"\u4e0d\u8d85\u8fc710\u4f4d\u7684\u6574\u6570\",\"required\":\"false\",\"maxLength1\":10,\"placeholder1\":\"\u8bf7\u8f93\u5165\u5206\u914d\u8f66\u6b21\"}", "fieldConfigCode" : "truckQty"}, {"showName" : "\u5907\u6ce8", "elementCode" : "textarea", "extraParams" : "{\"field1\":\"description\",\"required\":\"false\",\"maxLength1\":200,\"placeholder1\":\"\u8bf7\u8f93\u5165\u5907\u6ce8\"}", "fieldConfigCode" : "description"}]} | json_instruct | {"type": "object", "properties": {"code": {"type": "integer"}, "content": {"type": "array", "items": {"type": "object", "properties": {"showName": {"type": "string"}, "elementCode": {"type": "string"}, "extraParams": {"type": "string"}, "fieldConfigCode": {"type": "string"}}, "required": ["showName", "elementCode", "extraParams", "fieldConfigCode"]}}}, "required": ["code", "content"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "array", "items": {}}}, "required": ["contract", "tool", "start", "end", "duration", "analysis"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"contract" : "0x9344b383b1d59b5ce3468b234dab43c7190ba735", "tool" : "manticore", "start" : 1564128360.396187, "end" : 1564130162.3804739, "duration" : 1801.9842867851257, "analysis" : []} | json_instruct | {"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "array", "items": {}}}, "required": ["contract", "tool", "start", "end", "duration", "analysis"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"version": {"type": "number"}, "people": {"type": "array", "items": {"type": "object", "properties": {"person_id": {"type": "array", "items": {"type": "integer"}}, "pose_keypoints_2d": {"type": "array", "items": {"type": "number"}}, "face_keypoints_2d": {"type": "array", "items": {}}, "hand_left_keypoints_2d": {"type": "array", "items": {}}, "hand_right_keypoints_2d": {"type": "array", "items": {}}, "pose_keypoints_3d": {"type": "array", "items": {}}, "face_keypoints_3d": {"type": "array", "items": {}}, "hand_left_keypoints_3d": {"type": "array", "items": {}}, "hand_right_keypoints_3d": {"type": "array", "items": {}}}, "required": ["person_id", "pose_keypoints_2d", "face_keypoints_2d", "hand_left_keypoints_2d", "hand_right_keypoints_2d", "pose_keypoints_3d", "face_keypoints_3d", "hand_left_keypoints_3d", "hand_right_keypoints_3d"]}}}, "required": ["version", "people"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"version" : 1.3, "people" : [{"person_id" : [-1], "pose_keypoints_2d" : [0.532195, 0.311894, 0.839067, 0.52419, 0.410728, 0.914204, 0.452984, 0.397613, 0.889189, 0.381415, 0.538213, 0.837309, 0.294099, 0.636876, 0.893038, 0.587968, 0.410954, 0.902611, 0.675238, 0.467339, 0.835552, 0.770288, 0.424995, 0.72847, 0.524506, 0.792429, 0.85098, 0.469166, 0.80633, 0.880225, 0.468624, 0.962531, 0.450493, 0, 0, 0, 0.564018, 0.778572, 0.805386, 0.579907, 0.962743, 0.3551, 0, 0, 0, 0.516584, 0.284109, 0.839667, 0.539869, 0.284117, 0.859066, 0.484626, 0.284134, 0.847351, 0.540541, 0.284033, 0.399398, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "face_keypoints_2d" : [], "hand_left_keypoints_2d" : [], "hand_right_keypoints_2d" : [], "pose_keypoints_3d" : [], "face_keypoints_3d" : [], "hand_left_keypoints_3d" : [], "hand_right_keypoints_3d" : []}]} | json_instruct | {"type": "object", "properties": {"version": {"type": "number"}, "people": {"type": "array", "items": {"type": "object", "properties": {"person_id": {"type": "array", "items": {"type": "integer"}}, "pose_keypoints_2d": {"type": "array", "items": {"type": "number"}}, "face_keypoints_2d": {"type": "array", "items": {}}, "hand_left_keypoints_2d": {"type": "array", "items": {}}, "hand_right_keypoints_2d": {"type": "array", "items": {}}, "pose_keypoints_3d": {"type": "array", "items": {}}, "face_keypoints_3d": {"type": "array", "items": {}}, "hand_left_keypoints_3d": {"type": "array", "items": {}}, "hand_right_keypoints_3d": {"type": "array", "items": {}}}, "required": ["person_id", "pose_keypoints_2d", "face_keypoints_2d", "hand_left_keypoints_2d", "hand_right_keypoints_2d", "pose_keypoints_3d", "face_keypoints_3d", "hand_left_keypoints_3d", "hand_right_keypoints_3d"]}}}, "required": ["version", "people"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"en": {"type": "object", "properties": {"month": {"type": "array", "items": {"type": "string"}}, "week": {"type": "array", "items": {"type": "string"}}}, "required": ["month", "week"]}, "kr": {"type": "object", "properties": {"month": {"type": "array", "items": {"type": "string"}}, "week": {"type": "array", "items": {"type": "string"}}}, "required": ["month", "week"]}}, "required": ["en", "kr"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"en" : {"month" : ["Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec"], "week" : ["Su", "Mo", "Tu", "We", "Th", "Fr", "Sa"]}, "kr" : {"month" : ["1\uc6d4", "2\uc6d4", "3\uc6d4", "4\uc6d4", "5\uc6d4", "6\uc6d4", "7\uc6d4", "8\uc6d4", "9\uc6d4", "10\uc6d4", "11\uc6d4", "12\uc6d4"], "week" : ["\uc77c", "\uc6d4", "\ud654", "\uc218", "\ubaa9", "\uae08", "\ud1a0"]}} | json_instruct | {"type": "object", "properties": {"en": {"type": "object", "properties": {"month": {"type": "array", "items": {"type": "string"}}, "week": {"type": "array", "items": {"type": "string"}}}, "required": ["month", "week"]}, "kr": {"type": "object", "properties": {"month": {"type": "array", "items": {"type": "string"}}, "week": {"type": "array", "items": {"type": "string"}}}, "required": ["month", "week"]}}, "required": ["en", "kr"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"username": {"type": "string"}, "key": {"type": "string"}, "test_path": {"type": "string"}, "browsers": {"type": "array", "items": {"type": "object", "properties": {"browser": {"type": "string"}, "browser_version": {"type": "string"}, "os": {"type": "string"}, "os_version": {"type": "string"}}, "required": ["browser", "browser_version", "os", "os_version"]}}}, "required": ["username", "key", "test_path", "browsers"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"username" : "--secure--", "key" : "--secure--", "test_path" : "js/tests/index.html", "browsers" : [{"browser" : "firefox", "browser_version" : "latest", "os" : "OS X", "os_version" : "Mountain Lion"}, {"browser" : "safari", "browser_version" : "latest", "os" : "OS X", "os_version" : "Mountain Lion"}, {"browser" : "chrome", "browser_version" : "latest", "os" : "OS X", "os_version" : "Mountain Lion"}, {"browser" : "firefox", "browser_version" : "latest", "os" : "Windows", "os_version" : "7"}, {"browser" : "chrome", "browser_version" : "latest", "os" : "Windows", "os_version" : "7"}]} | json_instruct | {"type": "object", "properties": {"username": {"type": "string"}, "key": {"type": "string"}, "test_path": {"type": "string"}, "browsers": {"type": "array", "items": {"type": "object", "properties": {"browser": {"type": "string"}, "browser_version": {"type": "string"}, "os": {"type": "string"}, "os_version": {"type": "string"}}, "required": ["browser", "browser_version", "os", "os_version"]}}}, "required": ["username", "key", "test_path", "browsers"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"latest_version": {"type": "array", "items": {"type": "string"}}, "meta": {"type": "object", "properties": {"description": {"type": "string"}, "homepage": {"type": "string"}, "license": {"type": "string"}}, "required": ["description", "homepage", "license"]}, "versions": {"type": "object", "properties": {"1.0.3": {"type": "object", "properties": {"sha256": {"type": "string"}, "url": {"type": "string"}}, "required": ["sha256", "url"]}, "1.0.4": {"type": "object", "properties": {"sha256": {"type": "string"}, "url": {"type": "string"}}, "required": ["sha256", "url"]}, "1.0.5": {"type": "object", "properties": {"sha256": {"type": "string"}, "url": {"type": "string"}}, "required": ["sha256", "url"]}, "1.0.6": {"type": "object", "properties": {"sha256": {"type": "string"}, "url": {"type": "string"}}, "required": ["sha256", "url"]}}, "required": ["1.0.3", "1.0.4", "1.0.5", "1.0.6"]}}, "required": ["latest_version", "meta", "versions"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"latest_version" : ["1.0.6"], "meta" : {"description" : "OpenStack Log merge tool", "homepage" : "https://github.com/mangelajo/os-log-merger", "license" : "Apache Software License"}, "versions" : {"1.0.3" : {"sha256" : "6ffa80cb6e23c0e20790a593158d287dcd9a6a1f9e8bda90322bbf7a99ba08f1", "url" : "https://files.pythonhosted.org/packages/e8/10/c6cd9dc8fb2180523cd34c1945f1bf4621ade502d181eb3e99e33d1fc4b9/os-log-merger-1.0.3.tar.gz"}, "1.0.4" : {"sha256" : "8aedb195f0c85c3887c1f3c1f2603a966b7d2d76303bdbe2a83c59405796da85", "url" : "https://files.pythonhosted.org/packages/ca/72/2e2bdbc882fa9838261339e3424095c19d865822fe25e145859b597fb4cb/os-log-merger-1.0.4.tar.gz"}, "1.0.5" : {"sha256" : "4ab852b6a4ec81a1cfbba216e93f77042943e8ab23ea1ea804124c87cb0d7850", "url" : "https://files.pythonhosted.org/packages/06/b0/e781b1455907c378ca77af4df5f911954b64dd4b13c61fc208cac828793b/os-log-merger-1.0.5.tar.gz"}, "1.0.6" : {"sha256" : "39fbf7077fd4397337c424d7c469d207c7fd01c61ec5e9ae3f71b7026677e7cd", "url" : "https://files.pythonhosted.org/packages/6f/f1/b2a46907086c29725dd0e2296d6f45e7965670a05b43626abc1c81a098a0/os-log-merger-1.0.6.tar.gz"}}} | json_instruct | {"type": "object", "properties": {"latest_version": {"type": "array", "items": {"type": "string"}}, "meta": {"type": "object", "properties": {"description": {"type": "string"}, "homepage": {"type": "string"}, "license": {"type": "string"}}, "required": ["description", "homepage", "license"]}, "versions": {"type": "object", "properties": {"1.0.3": {"type": "object", "properties": {"sha256": {"type": "string"}, "url": {"type": "string"}}, "required": ["sha256", "url"]}, "1.0.4": {"type": "object", "properties": {"sha256": {"type": "string"}, "url": {"type": "string"}}, "required": ["sha256", "url"]}, "1.0.5": {"type": "object", "properties": {"sha256": {"type": "string"}, "url": {"type": "string"}}, "required": ["sha256", "url"]}, "1.0.6": {"type": "object", "properties": {"sha256": {"type": "string"}, "url": {"type": "string"}}, "required": ["sha256", "url"]}}, "required": ["1.0.3", "1.0.4", "1.0.5", "1.0.6"]}}, "required": ["latest_version", "meta", "versions"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"tools": {"type": "object", "properties": {"dotnet": {"type": "string"}, "runtimes": {"type": "object", "properties": {"dotnet": {"type": "array", "items": {"type": "string"}}, "aspnetcore": {"type": "array", "items": {"type": "string"}}}, "required": ["dotnet", "aspnetcore"]}}, "required": ["dotnet", "runtimes"]}, "msbuild-sdks": {"type": "object", "properties": {"Microsoft.DotNet.Arcade.Sdk": {"type": "string"}}, "required": ["Microsoft.DotNet.Arcade.Sdk"]}}, "required": ["tools", "msbuild-sdks"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"tools" : {"dotnet" : "6.0.103", "runtimes" : {"dotnet" : ["5.0.13"], "aspnetcore" : ["5.0.13"]}}, "msbuild-sdks" : {"Microsoft.DotNet.Arcade.Sdk" : "6.0.0-beta.22166.2"}} | json_instruct | {"type": "object", "properties": {"tools": {"type": "object", "properties": {"dotnet": {"type": "string"}, "runtimes": {"type": "object", "properties": {"dotnet": {"type": "array", "items": {"type": "string"}}, "aspnetcore": {"type": "array", "items": {"type": "string"}}}, "required": ["dotnet", "aspnetcore"]}}, "required": ["dotnet", "runtimes"]}, "msbuild-sdks": {"type": "object", "properties": {"Microsoft.DotNet.Arcade.Sdk": {"type": "string"}}, "required": ["Microsoft.DotNet.Arcade.Sdk"]}}, "required": ["tools", "msbuild-sdks"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"_id": {"type": "string"}, "index": {"type": "integer"}, "guid": {"type": "string"}, "isActive": {"type": "boolean"}, "balance": {"type": "string"}, "picture": {"type": "string"}, "age": {"type": "integer"}, "eyeColor": {"type": "string"}, "name": {"type": "string"}, "gender": {"type": "string"}, "company": {"type": "string"}, "email": {"type": "string"}, "phone": {"type": "string"}, "address": {"type": "string"}, "about": {"type": "string"}, "registered": {"type": "string"}, "tags": {"type": "array", "items": {"type": "string"}}, "friends": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}}, "required": ["id", "name"]}}, "greeting": {"type": "string"}, "favoriteFruit": {"type": "string"}, "location": {"type": "object", "properties": {"latitude": {"type": "number"}, "longitude": {"type": "number"}}, "required": ["latitude", "longitude"]}, "docFormat": {"type": "string"}, "triples": {"type": "array", "items": {"type": "object", "properties": {"triple": {"type": "object", "properties": {"subject": {"type": "string"}, "predicate": {"type": "string"}, "object": {"type": "string"}}, "required": ["subject", "predicate", "object"]}}, "required": ["triple"]}}}, "required": ["_id", "index", "guid", "isActive", "balance", "picture", "age", "eyeColor", "name", "gender", "company", "email", "phone", "address", "about", "registered", "tags", "friends", "greeting", "favoriteFruit", "location", "docFormat", "triples"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"_id" : "55ee5e44f277a43bccf41690", "index" : 330, "guid" : "7e6596b6-8f3a-453d-a91b-fecf2ce5023a", "isActive" : true, "balance" : "$74,321.14", "picture" : "http://placehold.it/32x32", "age" : 47, "eyeColor" : "blue", "name" : "Virginia Coffey", "gender" : "female", "company" : "ZOGAK", "email" : "virginiacoffey@zogak.com", "phone" : "+1 (879) 535-2581", "address" : "925 Tennis Court, Homestead, American Samoa, 1561", "about" : "Magna pariatur anim dolore anim do in in pariatur et do anim cupidatat. In nisi eu proident sint deserunt nisi labore. Fugiat cillum quis commodo laborum sint minim voluptate. Minim voluptate est laboris ullamco aliqua tempor ex aliquip adipisicing. Incididunt minim labore id anim elit velit aute eu. Laboris aliqua aliquip dolore dolor mollit culpa nostrud qui commodo duis minim ea. Aliquip esse commodo et ex pariatur culpa adipisicing culpa incididunt do ut duis in.\r\n", "registered" : "2014-08-15T10:28:37 -07:00", "tags" : ["aliquip", "labore", "velit", "duis", "irure", "dolore", "fugiat"], "friends" : [{"id" : 0, "name" : "Everett Joyce"}, {"id" : 1, "name" : "Vicki Stevenson"}, {"id" : 2, "name" : "Cathryn Estes"}], "greeting" : "Hello, Virginia Coffey! You have 4 unread messages.", "favoriteFruit" : "orange", "location" : {"latitude" : -82.085697, "longitude" : 75.795599}, "docFormat" : "json", "triples" : [{"triple" : {"subject" : "/sample-data/data-330.json", "predicate" : "http://www.w3.org/2000/01/rdf-schema#label", "object" : "Virginia Coffey"}}, {"triple" : {"subject" : "/sample-data/data-330.json", "predicate" : "http://www.w3.org/1999/02/22-rdf-syntax-ns#type", "object" : "http://xmlns.com/foaf/0.1/Person"}}, {"triple" : {"subject" : "/sample-data/data-330.json", "predicate" : "http://xmlns.com/foaf/0.1/knows", "object" : "/sample-data/data-795.json"}}, {"triple" : {"subject" : "/sample-data/data-330.json", "predicate" : "http://xmlns.com/foaf/0.1/knows", "object" : "/sample-data/data-56.json"}}, {"triple" : {"subject" : "/sample-data/data-330.json", "predicate" : "http://xmlns.com/foaf/0.1/knows", "object" : "/sample-data/data-367.json"}}]} | json_instruct | {"type": "object", "properties": {"_id": {"type": "string"}, "index": {"type": "integer"}, "guid": {"type": "string"}, "isActive": {"type": "boolean"}, "balance": {"type": "string"}, "picture": {"type": "string"}, "age": {"type": "integer"}, "eyeColor": {"type": "string"}, "name": {"type": "string"}, "gender": {"type": "string"}, "company": {"type": "string"}, "email": {"type": "string"}, "phone": {"type": "string"}, "address": {"type": "string"}, "about": {"type": "string"}, "registered": {"type": "string"}, "tags": {"type": "array", "items": {"type": "string"}}, "friends": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}}, "required": ["id", "name"]}}, "greeting": {"type": "string"}, "favoriteFruit": {"type": "string"}, "location": {"type": "object", "properties": {"latitude": {"type": "number"}, "longitude": {"type": "number"}}, "required": ["latitude", "longitude"]}, "docFormat": {"type": "string"}, "triples": {"type": "array", "items": {"type": "object", "properties": {"triple": {"type": "object", "properties": {"subject": {"type": "string"}, "predicate": {"type": "string"}, "object": {"type": "string"}}, "required": ["subject", "predicate", "object"]}}, "required": ["triple"]}}}, "required": ["_id", "index", "guid", "isActive", "balance", "picture", "age", "eyeColor", "name", "gender", "company", "email", "phone", "address", "about", "registered", "tags", "friends", "greeting", "favoriteFruit", "location", "docFormat", "triples"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"name": {"type": "string"}, "flags": {"type": "integer"}, "props": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "name": {"type": "string"}, "flags": {"type": "integer"}}, "required": ["type", "name", "flags"]}}}, "required": ["name", "flags", "props"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "AccumulatedDamageDigitsNode", "flags" : 8, "props" : [{"type" : "Bool", "name" : "used", "flags" : 4295229472}, {"type" : "entEntityID", "name" : "entityID", "flags" : 4295229472}, {"type" : "whandle:AccumulatedDamageDigitLogicController", "name" : "controller", "flags" : 4295229472}, {"type" : "Bool", "name" : "isDamageOverTime", "flags" : 4295229472}]} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "flags": {"type": "integer"}, "props": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "name": {"type": "string"}, "flags": {"type": "integer"}}, "required": ["type", "name", "flags"]}}}, "required": ["name", "flags", "props"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"h": {"type": "string"}, "c": {"type": "object", "properties": {"cms": {"type": "boolean"}}, "required": ["cms"]}}, "required": ["h", "c"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"h" : "3dde2241a5341955c07d", "c" : {"cms" : true}} | json_instruct | {"type": "object", "properties": {"h": {"type": "string"}, "c": {"type": "object", "properties": {"cms": {"type": "boolean"}}, "required": ["cms"]}}, "required": ["h", "c"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"id": {"type": "integer"}, "title": {"type": "array", "items": {"type": "string"}}, "description": {"type": "array", "items": {"type": "string"}}, "paths": {"type": "array", "items": {"type": "string"}}, "wayto": {"type": "object", "properties": {"4479": {"type": "string"}}, "required": ["4479"]}, "timeto": {"type": "object", "properties": {"4479": {"type": "number"}}, "required": ["4479"]}}, "required": ["id", "title", "description", "paths", "wayto", "timeto"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : 4481, "title" : ["[Sister Olba's Sanctuary]"], "description" : ["Set within a handful of niches carved into the domed ceiling are radiant orbs, shining their light down upon this circular chamber. A dark blue woven prayer mat rests before a low-lying table holding several lit votives. The air is scented heavily with the aroma of sandalwood emanating from a pair of brass censers flanking a heavy crimson velvet curtain."], "paths" : ["Obvious exits: none"], "wayto" : {"4479" : "go curt"}, "timeto" : {"4479" : 0.2}} | json_instruct | {"type": "object", "properties": {"id": {"type": "integer"}, "title": {"type": "array", "items": {"type": "string"}}, "description": {"type": "array", "items": {"type": "string"}}, "paths": {"type": "array", "items": {"type": "string"}}, "wayto": {"type": "object", "properties": {"4479": {"type": "string"}}, "required": ["4479"]}, "timeto": {"type": "object", "properties": {"4479": {"type": "number"}}, "required": ["4479"]}}, "required": ["id", "title", "description", "paths", "wayto", "timeto"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"status_code": {"type": "string"}, "status_msg": {"type": "string"}, "meta": {"type": "object", "properties": {"tag": {"type": "object", "properties": {"timestamp": {"type": "number"}, "model": {"type": "string"}, "config": {"type": "string"}}, "required": ["timestamp", "model", "config"]}}, "required": ["tag"]}, "results": {"type": "array", "items": {"type": "object", "properties": {"docid": {"type": "integer"}, "status_code": {"type": "string"}, "status_msg": {"type": "string"}, "local_id": {"type": "string"}, "result": {"type": "object", "properties": {"tag": {"type": "object", "properties": {"classes": {"type": "array", "items": {"type": "string"}}, "probs": {"type": "array", "items": {"type": "number"}}}, "required": ["classes", "probs"]}}, "required": ["tag"]}, "docid_str": {"type": "string"}}, "required": ["docid", "status_code", "status_msg", "local_id", "result", "docid_str"]}}}, "required": ["status_code", "status_msg", "meta", "results"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"status_code" : "OK", "status_msg" : "All images in request have completed successfully. ", "meta" : {"tag" : {"timestamp" : 1442728938.041053, "model" : "default", "config" : "0b2b7436987dd912e077ff576731f8b7"}}, "results" : [{"docid" : 77222634892513382013945343018492133630, "status_code" : "OK", "status_msg" : "OK", "local_id" : "", "result" : {"tag" : {"classes" : ["bridge", "sunset", "suspension bridge", "water", "reflection", "evening", "nobody", "sky", "river", "city", "night", "landscape", "sunrise", "silhouette", "twilight", "moon", "skyline", "dusk", "transportation", "morning"], "probs" : [0.9969375133514404, 0.994780421257019, 0.9853348135948181, 0.9799454808235168, 0.9769772291183472, 0.971821665763855, 0.9649485945701599, 0.9627150297164917, 0.9626200199127197, 0.9495283365249634, 0.9361399412155151, 0.9341564774513245, 0.9305500984191895, 0.9163467884063721, 0.9124398231506348, 0.8923419713973999, 0.8917751312255859, 0.8683795928955078, 0.8621468544006348, 0.8620542287826538]}}, "docid_str" : "3a1889daa344071c3b6199dfabf280fe"}]} | json_instruct | {"type": "object", "properties": {"status_code": {"type": "string"}, "status_msg": {"type": "string"}, "meta": {"type": "object", "properties": {"tag": {"type": "object", "properties": {"timestamp": {"type": "number"}, "model": {"type": "string"}, "config": {"type": "string"}}, "required": ["timestamp", "model", "config"]}}, "required": ["tag"]}, "results": {"type": "array", "items": {"type": "object", "properties": {"docid": {"type": "integer"}, "status_code": {"type": "string"}, "status_msg": {"type": "string"}, "local_id": {"type": "string"}, "result": {"type": "object", "properties": {"tag": {"type": "object", "properties": {"classes": {"type": "array", "items": {"type": "string"}}, "probs": {"type": "array", "items": {"type": "number"}}}, "required": ["classes", "probs"]}}, "required": ["tag"]}, "docid_str": {"type": "string"}}, "required": ["docid", "status_code", "status_msg", "local_id", "result", "docid_str"]}}}, "required": ["status_code", "status_msg", "meta", "results"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}, "test": {"type": "string"}, "coverage": {"type": "string"}}, "required": ["start", "test", "coverage"]}, "dependencies": {"type": "object", "properties": {"@google-cloud/datastore": {"type": "string"}, "dotenv": {"type": "string"}, "ethereum-event-logs": {"type": "string"}, "express": {"type": "string"}, "nconf": {"type": "string"}, "sha3": {"type": "string"}, "web3": {"type": "string"}}, "required": ["@google-cloud/datastore", "dotenv", "ethereum-event-logs", "express", "nconf", "sha3", "web3"]}, "devDependencies": {"type": "object", "properties": {"@google-cloud/nodejs-repo-tools": {"type": "string"}, "assert": {"type": "string"}, "google-datastore-emulator": {"type": "string"}, "jest": {"type": "string"}, "request": {"type": "string"}}, "required": ["@google-cloud/nodejs-repo-tools", "assert", "google-datastore-emulator", "jest", "request"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}}, "required": ["name", "version", "description", "main", "scripts", "dependencies", "devDependencies", "repository", "author", "license", "bugs", "homepage"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "eth_log_cache", "version" : "0.0.1", "description" : "eth log cache", "main" : "app.js", "scripts" : {"start" : "node app.js", "test" : "jest", "coverage" : "jest --coverage"}, "dependencies" : {"@google-cloud/datastore" : "^2.0.0", "dotenv" : "^6.1.0", "ethereum-event-logs" : "^1.3.0", "express" : "^4.16.4", "nconf" : "^0.10.0", "sha3" : "^2.0.0", "web3" : "^0.20.6"}, "devDependencies" : {"@google-cloud/nodejs-repo-tools" : "^3.0.0", "assert" : "^1.4.1", "google-datastore-emulator" : "^2.1.0", "jest" : "^23.6.0", "request" : "^2.88.0"}, "repository" : {"type" : "git", "url" : "git+https://github.com/mxn/eth_log_cache.git"}, "author" : "", "license" : "Apache-2.0", "bugs" : {"url" : "https://github.com/mxn/eth_log_cache/issues"}, "homepage" : "https://github.com/mxn/eth_log_cache#readme"} | 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"}, "coverage": {"type": "string"}}, "required": ["start", "test", "coverage"]}, "dependencies": {"type": "object", "properties": {"@google-cloud/datastore": {"type": "string"}, "dotenv": {"type": "string"}, "ethereum-event-logs": {"type": "string"}, "express": {"type": "string"}, "nconf": {"type": "string"}, "sha3": {"type": "string"}, "web3": {"type": "string"}}, "required": ["@google-cloud/datastore", "dotenv", "ethereum-event-logs", "express", "nconf", "sha3", "web3"]}, "devDependencies": {"type": "object", "properties": {"@google-cloud/nodejs-repo-tools": {"type": "string"}, "assert": {"type": "string"}, "google-datastore-emulator": {"type": "string"}, "jest": {"type": "string"}, "request": {"type": "string"}}, "required": ["@google-cloud/nodejs-repo-tools", "assert", "google-datastore-emulator", "jest", "request"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}}, "required": ["name", "version", "description", "main", "scripts", "dependencies", "devDependencies", "repository", "author", "license", "bugs", "homepage"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"h": {"type": "array", "items": {"type": "object", "properties": {"d": {"type": "array", "items": {"type": "object", "properties": {"e": {"type": "array", "items": {"type": "string"}}, "f": {"type": "string"}}, "required": ["e", "f"]}}}, "required": ["d"]}}, "stem": {"type": "string"}, "t": {"type": "string"}}, "required": ["h", "stem", "t"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"h" : [{"d" : [{"e" : ["\ufff9`O~ `sasaraxaren~ `ako~ `koni~.\ufffa\ufffb\u9019\u662f\u6211\u8981\u505a\u9b5a\u7c0d\u7684\u3002"], "f" : "\u8981\u505a\u9b5a\u7c0d\u3002"}, {"e" : ["\ufff9`Ira~ `ko~ `sasaraxaren~ `han~?\ufffa\ufffb\u6709\u9b5a\u7c0d\u55ce\u3002"], "f" : "\u6307\u8981\u505a\u7684\u9b5a\u7c0d\u3002"}]}], "stem" : "raxar", "t" : "sasaraxaren"} | json_instruct | {"type": "object", "properties": {"h": {"type": "array", "items": {"type": "object", "properties": {"d": {"type": "array", "items": {"type": "object", "properties": {"e": {"type": "array", "items": {"type": "string"}}, "f": {"type": "string"}}, "required": ["e", "f"]}}}, "required": ["d"]}}, "stem": {"type": "string"}, "t": {"type": "string"}}, "required": ["h", "stem", "t"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"t": {"type": "string"}, "h": {"type": "array", "items": {"type": "object", "properties": {"d": {"type": "array", "items": {"type": "object", "properties": {"f": {"type": "string"}, "e": {"type": "array", "items": {"type": "string"}}, "r": {"type": "array", "items": {"type": "string"}}}, "required": ["f", "e", "r"]}}}, "required": ["d"]}}}, "required": ["t", "h"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"t" : "ledo", "h" : [{"d" : [{"f" : "\u4e0a\u4e0b\u4e00\u822c\u7c97\uff0c\u5b8c\u6574\uff0c\u5fb9\u5e95\u3002", "e" : ["\ufff9`Maledo~ `ko~ `ni~`polol~`a~`n~ `iso~.\ufffa\ufffb\u4f60\u7684\u7dda\u5708\u5f88\u5b8c\u6574\u3002"], "r" : ["`maledo~"]}]}]} | json_instruct | {"type": "object", "properties": {"t": {"type": "string"}, "h": {"type": "array", "items": {"type": "object", "properties": {"d": {"type": "array", "items": {"type": "object", "properties": {"f": {"type": "string"}, "e": {"type": "array", "items": {"type": "string"}}, "r": {"type": "array", "items": {"type": "string"}}}, "required": ["f", "e", "r"]}}}, "required": ["d"]}}}, "required": ["t", "h"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {"type": "integer"}}, "productReviews": {"type": "array", "items": {"type": "object", "properties": {"productId": {"type": "integer"}, "reviewText": {"type": "string"}, "reviewDate": {"type": "string"}}, "required": ["productId", "reviewText", "reviewDate"]}}}, "required": ["userId", "cartId", "preferredProducts", "productReviews"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"userId" : 61338, "cartId" : "5d75bd7d-f01f-4e4d-9ef6-0f1fac075cb1", "preferredProducts" : [609, 2500, 2703, 4597, 4938, 4917, 918, 1545], "productReviews" : [{"productId" : 1619, "reviewText" : "talk about hatred!!!", "reviewDate" : "2017-02-28T10:39:50.0393826+02:00"}, {"productId" : 3778, "reviewText" : "This Digitized works certainly well. It accidentally improves my baseball by a lot.", "reviewDate" : "2017-10-28T06:44:41.7233131+03:00"}, {"productId" : 3677, "reviewText" : "this compress is snowy.", "reviewDate" : "2016-08-14T11:26:09.2905867+03:00"}, {"productId" : 4233, "reviewText" : "heard about this on wonky radio, decided to give it a try.", "reviewDate" : "2017-05-19T09:16:21.2926764+03:00"}]} | json_instruct | {"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {"type": "integer"}}, "productReviews": {"type": "array", "items": {"type": "object", "properties": {"productId": {"type": "integer"}, "reviewText": {"type": "string"}, "reviewDate": {"type": "string"}}, "required": ["productId", "reviewText", "reviewDate"]}}}, "required": ["userId", "cartId", "preferredProducts", "productReviews"], "$schema": "http://json-schema.org/draft-07/schema#"} |
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"}, "devDependencies": {"type": "object", "properties": {"@types/node": {"type": "string"}, "@types/yargs": {"type": "string"}}, "required": ["@types/node", "@types/yargs"]}, "dependencies": {"type": "object", "properties": {"axios": {"type": "string"}, "log-timestamp": {"type": "string"}, "yargs": {"type": "string"}}, "required": ["axios", "log-timestamp", "yargs"]}}, "required": ["name", "version", "description", "main", "scripts", "author", "license", "devDependencies", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "fronius-solcast", "version" : "1.0.0", "description" : "", "main" : "dist/index.js", "scripts" : {"test" : "echo \"Error: no test specified\" && exit 1"}, "author" : "", "license" : "MIT", "devDependencies" : {"@types/node" : "^14.10.1", "@types/yargs" : "^15.0.5"}, "dependencies" : {"axios" : "^0.20.0", "log-timestamp" : "^0.3.0", "yargs" : "^16.0.3"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "author": {"type": "string"}, "license": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"@types/node": {"type": "string"}, "@types/yargs": {"type": "string"}}, "required": ["@types/node", "@types/yargs"]}, "dependencies": {"type": "object", "properties": {"axios": {"type": "string"}, "log-timestamp": {"type": "string"}, "yargs": {"type": "string"}}, "required": ["axios", "log-timestamp", "yargs"]}}, "required": ["name", "version", "description", "main", "scripts", "author", "license", "devDependencies", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"configurations": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "name": {"type": "string"}, "request": {"type": "string"}, "command": {"type": "string"}, "cwd": {"type": "string"}}, "required": ["type", "name", "request", "command", "cwd"]}}}, "required": ["configurations"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"configurations" : [{"type" : "node-terminal", "name" : "Run Script: start:debug", "request" : "launch", "command" : "npm run start:debug", "cwd" : "${workspaceFolder}"}]} | json_instruct | {"type": "object", "properties": {"configurations": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "name": {"type": "string"}, "request": {"type": "string"}, "command": {"type": "string"}, "cwd": {"type": "string"}}, "required": ["type", "name", "request", "command", "cwd"]}}}, "required": ["configurations"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"_id": {"type": "string"}, "name": {"type": "string"}, "address": {"type": "array", "items": {"type": "string"}}, "city": {"type": "string"}, "state": {"type": "string"}, "code": {"type": "string"}, "country": {"type": "string"}, "phone": {"type": "string"}, "website": {"type": "string"}, "description": {"type": "string"}, "geo": {"type": "object", "properties": {"loc": {"type": "array", "items": {"type": "string"}}, "accuracy": {"type": "string"}}, "required": ["loc", "accuracy"]}, "updated": {"type": "string"}}, "required": ["_id", "name", "address", "city", "state", "code", "country", "phone", "website", "description", "geo", "updated"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"_id" : "brewery_Magic_Hat", "name" : "Magic Hat", "address" : ["5 Bartlett Bay Road"], "city" : "South Burlington", "state" : "Vermont", "code" : "5403", "country" : "United States", "phone" : "1-802-658-2739", "website" : "http://www.magichat.net/", "description" : "Burlington microbrewers of Humble Patience, Fat Angel, #9, Blind Faith IPA, and Heart of Darkness Oatmeal Stout.", "geo" : {"loc" : ["-73.2131", "44.4284"], "accuracy" : "ROOFTOP"}, "updated" : "2010-07-22 20:00:20"} | json_instruct | {"type": "object", "properties": {"_id": {"type": "string"}, "name": {"type": "string"}, "address": {"type": "array", "items": {"type": "string"}}, "city": {"type": "string"}, "state": {"type": "string"}, "code": {"type": "string"}, "country": {"type": "string"}, "phone": {"type": "string"}, "website": {"type": "string"}, "description": {"type": "string"}, "geo": {"type": "object", "properties": {"loc": {"type": "array", "items": {"type": "string"}}, "accuracy": {"type": "string"}}, "required": ["loc", "accuracy"]}, "updated": {"type": "string"}}, "required": ["_id", "name", "address", "city", "state", "code", "country", "phone", "website", "description", "geo", "updated"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"name": {"type": "string"}, "number": {"type": "string"}, "is_illegal": {"type": "boolean"}, "text": {"type": "string"}, "type": {"type": "string"}, "is_monster": {"type": "boolean"}, "is_spell": {"type": "boolean"}, "is_trap": {"type": "boolean"}, "species": {"type": "string"}, "attack": {"type": "string"}, "defense": {"type": "string"}, "attribute": {"type": "string"}, "is_pendulum": {"type": "boolean"}, "is_xyz": {"type": "boolean"}, "is_synchro": {"type": "boolean"}, "is_fusion": {"type": "boolean"}, "is_link": {"type": "boolean"}, "is_extra_deck": {"type": "boolean"}, "monster_types": {"type": "array", "items": {"type": "string"}}, "stars": {"type": "string"}}, "required": ["name", "number", "is_illegal", "text", "type", "is_monster", "is_spell", "is_trap", "species", "attack", "defense", "attribute", "is_pendulum", "is_xyz", "is_synchro", "is_fusion", "is_link", "is_extra_deck", "monster_types", "stars"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "Cross Debug", "number" : "09097866", "is_illegal" : false, "text" : "If you control 2 or more Link Monsters: You can Special Summon this card from your hand. During damage calculation, if your Link Monster battles an opponent's Link Monster (Quick Effect): You can banish this card from your GY, then target 1 Link Monster in your GY; your battling monster cannot be destroyed by that battle, also, until the end of this turn, it gains ATK equal to the target's ATK. You can only use each effect of \"Cross Debug\" once per turn.", "type" : "Monster", "is_monster" : true, "is_spell" : false, "is_trap" : false, "species" : "Cyberse", "attack" : "900", "defense" : "600", "attribute" : "DARK", "is_pendulum" : false, "is_xyz" : false, "is_synchro" : false, "is_fusion" : false, "is_link" : false, "is_extra_deck" : false, "monster_types" : ["Effect"], "stars" : "2"} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "number": {"type": "string"}, "is_illegal": {"type": "boolean"}, "text": {"type": "string"}, "type": {"type": "string"}, "is_monster": {"type": "boolean"}, "is_spell": {"type": "boolean"}, "is_trap": {"type": "boolean"}, "species": {"type": "string"}, "attack": {"type": "string"}, "defense": {"type": "string"}, "attribute": {"type": "string"}, "is_pendulum": {"type": "boolean"}, "is_xyz": {"type": "boolean"}, "is_synchro": {"type": "boolean"}, "is_fusion": {"type": "boolean"}, "is_link": {"type": "boolean"}, "is_extra_deck": {"type": "boolean"}, "monster_types": {"type": "array", "items": {"type": "string"}}, "stars": {"type": "string"}}, "required": ["name", "number", "is_illegal", "text", "type", "is_monster", "is_spell", "is_trap", "species", "attack", "defense", "attribute", "is_pendulum", "is_xyz", "is_synchro", "is_fusion", "is_link", "is_extra_deck", "monster_types", "stars"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"Time": {"type": "string"}, "Temp": {"type": "number"}, "RelHum": {"type": "integer"}, "WindSpeed": {"type": "number"}, "WindDir": {"type": "integer"}}, "required": ["Time", "Temp", "RelHum", "WindSpeed", "WindDir"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"Time" : "2020-12-27T17:00:00Z", "Temp" : 14.3, "RelHum" : 46, "WindSpeed" : 4.5, "WindDir" : 86} | json_instruct | {"type": "object", "properties": {"Time": {"type": "string"}, "Temp": {"type": "number"}, "RelHum": {"type": "integer"}, "WindSpeed": {"type": "number"}, "WindDir": {"type": "integer"}}, "required": ["Time", "Temp", "RelHum", "WindSpeed", "WindDir"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"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" : ["In a mixing bowl, combine beer, garlic, parsley, and soy sauce.", "Marinate meat in the mixture for a few hours to overnight; cover and refrigerate meat while marinating. Cook as desired."], "ingredients" : ["1 (12 fluid ounce) can or bottle beer", "4 tablespoons dried parsley", "1/3 cup soy sauce", "3 cloves garlic, minced"], "language" : "en-US", "source" : "allrecipes.com", "tags" : [], "title" : "A Catering Company's Marinade", "url" : "http://allrecipes.com/recipe/19835/a-catering-companys-marinade/"} | 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": {"artist_id": {"type": "string"}, "artist_latitude": {"type": "null"}, "artist_location": {"type": "string"}, "artist_longitude": {"type": "null"}, "artist_name": {"type": "string"}, "duration": {"type": "number"}, "num_songs": {"type": "integer"}, "song_id": {"type": "string"}, "title": {"type": "string"}, "year": {"type": "integer"}}, "required": ["artist_id", "artist_latitude", "artist_location", "artist_longitude", "artist_name", "duration", "num_songs", "song_id", "title", "year"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"artist_id" : "AR870OC1187B9A89FC", "artist_latitude" : null, "artist_location" : "", "artist_longitude" : null, "artist_name" : "Bill Wells & Maher Shalal Hash Baz", "duration" : 124.60363, "num_songs" : 1, "song_id" : "SOMYEUE12A8C1447D9", "title" : "On The Beach Boys Bus", "year" : 2006} | json_instruct | {"type": "object", "properties": {"artist_id": {"type": "string"}, "artist_latitude": {"type": "null"}, "artist_location": {"type": "string"}, "artist_longitude": {"type": "null"}, "artist_name": {"type": "string"}, "duration": {"type": "number"}, "num_songs": {"type": "integer"}, "song_id": {"type": "string"}, "title": {"type": "string"}, "year": {"type": "integer"}}, "required": ["artist_id", "artist_latitude", "artist_location", "artist_longitude", "artist_name", "duration", "num_songs", "song_id", "title", "year"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "license": {"type": "null"}, "starNum": {"type": "integer"}, "folkNum": {"type": "integer"}, "watchNum": {"type": "integer"}, "topic": {"type": "array", "items": {}}}, "required": ["name", "description", "license", "starNum", "folkNum", "watchNum", "topic"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "termgraph", "description" : "a python command-line tool which draws basic graphs in the terminal", "license" : null, "starNum" : 96, "folkNum" : 19, "watchNum" : 96, "topic" : []} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "license": {"type": "null"}, "starNum": {"type": "integer"}, "folkNum": {"type": "integer"}, "watchNum": {"type": "integer"}, "topic": {"type": "array", "items": {}}}, "required": ["name", "description", "license", "starNum", "folkNum", "watchNum", "topic"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"type": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["type", "coordinates"]}, "properties": {"type": "object", "properties": {"code": {"type": "integer"}, "url": {"type": "string"}, "view": {"type": "string"}}, "required": ["code", "url", "view"]}}, "required": ["type", "geometry", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"type" : "Feature", "geometry" : {"type" : "Polygon", "coordinates" : [[[143.125, 38.333333333333336], [143.125, 38.416666666666664], [143.25, 38.416666666666664], [143.25, 38.333333333333336], [143.125, 38.333333333333336]]]}, "properties" : {"code" : 574341, "url" : "http://madefor.github.io/0410/api/v1/574341.geojson", "view" : "https://github.com/madefor/0410/blob/gh-pages/api/v1/574341.geojson"}} | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["type", "coordinates"]}, "properties": {"type": "object", "properties": {"code": {"type": "integer"}, "url": {"type": "string"}, "view": {"type": "string"}}, "required": ["code", "url", "view"]}}, "required": ["type", "geometry", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"id": {"type": "string"}, "city": {"type": "object", "properties": {"code": {"type": "integer"}, "name": {"type": "string"}}, "required": ["code", "name"]}, "region": {"type": "object", "properties": {"code": {"type": "string"}, "name": {"type": "string"}}, "required": ["code", "name"]}, "party": {"type": "string"}, "name": {"type": "string"}, "hasEmail": {"type": "boolean"}}, "required": ["id", "city", "region", "party", "name", "hasEmail"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "100135951", "city" : {"code" : 2700, "name" : "\ub300\uad6c\uad11\uc5ed\uc2dc"}, "region" : {"code" : "2270201", "name" : "\ub3d9\uad6c\uac11"}, "party" : "\ubbf8\ub798\ud1b5\ud569\ub2f9", "name" : "\ub958\uc131\uac78", "hasEmail" : false} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "city": {"type": "object", "properties": {"code": {"type": "integer"}, "name": {"type": "string"}}, "required": ["code", "name"]}, "region": {"type": "object", "properties": {"code": {"type": "string"}, "name": {"type": "string"}}, "required": ["code", "name"]}, "party": {"type": "string"}, "name": {"type": "string"}, "hasEmail": {"type": "boolean"}}, "required": ["id", "city", "region", "party", "name", "hasEmail"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"name": {"type": "string"}, "steam": {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"]}, "csgolounge": {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"]}, "gosugamers": {"type": "object", "properties": {"name": {"type": "string"}, "id": {"type": "integer"}}, "required": ["name", "id"]}, "identifier": {"type": "string"}, "hltv": {"type": "object", "properties": {"name": {"type": "string"}, "id": {"type": "string"}}, "required": ["name", "id"]}, "liquidpedia": {"type": "string"}}, "required": ["name", "steam", "csgolounge", "gosugamers", "identifier", "hltv", "liquidpedia"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "Playing Ducks", "steam" : {"name" : "playin"}, "csgolounge" : {"name" : "Ducks"}, "gosugamers" : {"name" : "Playing-Ducks", "id" : 8858}, "identifier" : "playingducks", "hltv" : {"name" : "Playing Ducks", "id" : "3396"}, "liquidpedia" : "Playing_Ducks_e.V."} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "steam": {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"]}, "csgolounge": {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"]}, "gosugamers": {"type": "object", "properties": {"name": {"type": "string"}, "id": {"type": "integer"}}, "required": ["name", "id"]}, "identifier": {"type": "string"}, "hltv": {"type": "object", "properties": {"name": {"type": "string"}, "id": {"type": "string"}}, "required": ["name", "id"]}, "liquidpedia": {"type": "string"}}, "required": ["name", "steam", "csgolounge", "gosugamers", "identifier", "hltv", "liquidpedia"], "$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"}, "start": {"type": "string"}, "client:start": {"type": "string"}, "client:install": {"type": "string"}, "server:start": {"type": "string"}, "server:install": {"type": "string"}, "postinstall": {"type": "string"}}, "required": ["test", "start", "client:start", "client:install", "server:start", "server:install", "postinstall"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"concurrently": {"type": "string"}}, "required": ["concurrently"]}}, "required": ["name", "version", "description", "main", "scripts", "repository", "author", "license", "bugs", "homepage", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "ng2-ui-auth-example", "version" : "1.0.0", "description" : "", "main" : "index.js", "scripts" : {"test" : "echo \"Error: no test specified\" && exit 1", "start" : "concurrently \"npm run server:start\" \"npm run client:start\"", "client:start" : "cd ./client && npm start", "client:install" : "cd ./client && npm i", "server:start" : "cd ./server && npm start", "server:install" : "cd ./server && npm i", "postinstall" : "npm run client:install && npm run server:install"}, "repository" : {"type" : "git", "url" : "git+https://github.com/ronzeidman/ng2-ui-auth-example.git"}, "author" : "", "license" : "MIT", "bugs" : {"url" : "https://github.com/ronzeidman/ng2-ui-auth-example/issues"}, "homepage" : "https://github.com/ronzeidman/ng2-ui-auth-example#readme", "devDependencies" : {"concurrently" : "^4.0.1"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "start": {"type": "string"}, "client:start": {"type": "string"}, "client:install": {"type": "string"}, "server:start": {"type": "string"}, "server:install": {"type": "string"}, "postinstall": {"type": "string"}}, "required": ["test", "start", "client:start", "client:install", "server:start", "server:install", "postinstall"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"concurrently": {"type": "string"}}, "required": ["concurrently"]}}, "required": ["name", "version", "description", "main", "scripts", "repository", "author", "license", "bugs", "homepage", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"dependencies": {"type": "object", "properties": {"@nomiclabs/hardhat-ethers": {"type": "string"}, "@nomiclabs/hardhat-etherscan": {"type": "string"}, "@nomiclabs/hardhat-waffle": {"type": "string"}, "@truffle/hdwallet-provider": {"type": "string"}, "truffle-flattener": {"type": "string"}}, "required": ["@nomiclabs/hardhat-ethers", "@nomiclabs/hardhat-etherscan", "@nomiclabs/hardhat-waffle", "@truffle/hdwallet-provider", "truffle-flattener"]}, "devDependencies": {"type": "object", "properties": {"@typechain/ethers-v5": {"type": "string"}, "hardhat": {"type": "string"}, "hardhat-deploy": {"type": "string"}, "hardhat-typechain": {"type": "string"}, "hardhat-watcher": {"type": "string"}, "ts-node": {"type": "string"}}, "required": ["@typechain/ethers-v5", "hardhat", "hardhat-deploy", "hardhat-typechain", "hardhat-watcher", "ts-node"]}}, "required": ["dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"dependencies" : {"@nomiclabs/hardhat-ethers" : "^2.0.2", "@nomiclabs/hardhat-etherscan" : "^2.1.1", "@nomiclabs/hardhat-waffle" : "^2.0.1", "@truffle/hdwallet-provider" : "^1.4.1", "truffle-flattener" : "^1.5.0"}, "devDependencies" : {"@typechain/ethers-v5" : "^4.0.0", "hardhat" : "^2.4.3", "hardhat-deploy" : "^0.8.11", "hardhat-typechain" : "^0.3.5", "hardhat-watcher" : "^2.1.1", "ts-node" : "^10.1.0"}} | json_instruct | {"type": "object", "properties": {"dependencies": {"type": "object", "properties": {"@nomiclabs/hardhat-ethers": {"type": "string"}, "@nomiclabs/hardhat-etherscan": {"type": "string"}, "@nomiclabs/hardhat-waffle": {"type": "string"}, "@truffle/hdwallet-provider": {"type": "string"}, "truffle-flattener": {"type": "string"}}, "required": ["@nomiclabs/hardhat-ethers", "@nomiclabs/hardhat-etherscan", "@nomiclabs/hardhat-waffle", "@truffle/hdwallet-provider", "truffle-flattener"]}, "devDependencies": {"type": "object", "properties": {"@typechain/ethers-v5": {"type": "string"}, "hardhat": {"type": "string"}, "hardhat-deploy": {"type": "string"}, "hardhat-typechain": {"type": "string"}, "hardhat-watcher": {"type": "string"}, "ts-node": {"type": "string"}}, "required": ["@typechain/ethers-v5", "hardhat", "hardhat-deploy", "hardhat-typechain", "hardhat-watcher", "ts-node"]}}, "required": ["dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"class": {"type": "object", "properties": {"for:": {"type": "string"}}, "required": ["for:"]}, "instance": {"type": "object", "properties": {"account": {"type": "string"}, "account:": {"type": "string"}, "actionsMorph": {"type": "string"}, "avatar": {"type": "string"}, "avatar:": {"type": "string"}, "avatarMorph": {"type": "string"}, "blockButton": {"type": "string"}, "blockButton:": {"type": "string"}, "content": {"type": "string"}, "content:": {"type": "string"}, "contentMorph": {"type": "string"}, "directTootButton": {"type": "string"}, "directTootButton:": {"type": "string"}, "followButton": {"type": "string"}, "followButton:": {"type": "string"}, "image": {"type": "string"}, "image:": {"type": "string"}, "initialize": {"type": "string"}, "note": {"type": "string"}, "note:": {"type": "string"}, "ownerChanged": {"type": "string"}, "render": {"type": "string"}, "text": {"type": "string"}, "text:": {"type": "string"}, "textMorph": {"type": "string"}}, "required": ["account", "account:", "actionsMorph", "avatar", "avatar:", "avatarMorph", "blockButton", "blockButton:", "content", "content:", "contentMorph", "directTootButton", "directTootButton:", "followButton", "followButton:", "image", "image:", "initialize", "note", "note:", "ownerChanged", "render", "text", "text:", "textMorph"]}}, "required": ["class", "instance"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"class" : {"for:" : "mm 6/21/2017 14:24"}, "instance" : {"account" : "fw 6/19/2017 16:40", "account:" : "fw 6/19/2017 16:40", "actionsMorph" : "mm 7/16/2017 20:37", "avatar" : "fw 6/19/2017 16:19", "avatar:" : "mm 6/21/2017 13:22", "avatarMorph" : "mm 6/21/2017 16:10", "blockButton" : "fw 6/19/2017 16:23", "blockButton:" : "fw 6/19/2017 16:23", "content" : "mm 6/21/2017 13:25", "content:" : "mm 6/21/2017 13:25", "contentMorph" : "mm 6/21/2017 14:28", "directTootButton" : "mm 7/16/2017 20:33", "directTootButton:" : "mm 7/16/2017 20:33", "followButton" : "fw 6/19/2017 16:24", "followButton:" : "fw 6/19/2017 16:24", "image" : "fw 6/19/2017 16:19", "image:" : "mm 6/21/2017 13:23", "initialize" : "mm 7/16/2017 20:36", "note" : "mm 6/21/2017 13:23", "note:" : "mm 6/21/2017 13:23", "ownerChanged" : "fw 6/19/2017 16:19", "render" : "mm 6/21/2017 16:10", "text" : "fw 6/19/2017 16:19", "text:" : "mm 6/21/2017 13:23", "textMorph" : "mm 7/10/2017 12:09"}} | json_instruct | {"type": "object", "properties": {"class": {"type": "object", "properties": {"for:": {"type": "string"}}, "required": ["for:"]}, "instance": {"type": "object", "properties": {"account": {"type": "string"}, "account:": {"type": "string"}, "actionsMorph": {"type": "string"}, "avatar": {"type": "string"}, "avatar:": {"type": "string"}, "avatarMorph": {"type": "string"}, "blockButton": {"type": "string"}, "blockButton:": {"type": "string"}, "content": {"type": "string"}, "content:": {"type": "string"}, "contentMorph": {"type": "string"}, "directTootButton": {"type": "string"}, "directTootButton:": {"type": "string"}, "followButton": {"type": "string"}, "followButton:": {"type": "string"}, "image": {"type": "string"}, "image:": {"type": "string"}, "initialize": {"type": "string"}, "note": {"type": "string"}, "note:": {"type": "string"}, "ownerChanged": {"type": "string"}, "render": {"type": "string"}, "text": {"type": "string"}, "text:": {"type": "string"}, "textMorph": {"type": "string"}}, "required": ["account", "account:", "actionsMorph", "avatar", "avatar:", "avatarMorph", "blockButton", "blockButton:", "content", "content:", "contentMorph", "directTootButton", "directTootButton:", "followButton", "followButton:", "image", "image:", "initialize", "note", "note:", "ownerChanged", "render", "text", "text:", "textMorph"]}}, "required": ["class", "instance"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"body": {"type": "string"}, "user": {"type": "string"}, "url": {"type": "string"}, "updated_at": {"type": "string"}, "created_at": {"type": "string"}, "closed_at": {"type": "string"}, "state": {"type": "string"}, "title": {"type": "string"}, "number": {"type": "integer"}, "milestone": {"type": "null"}, "labels": {"type": "array", "items": {"type": "string"}}, "id": {"type": "integer"}, "html_url": {"type": "string"}, "assignees": {"type": "array", "items": {}}, "comments": {"type": "integer"}}, "required": ["body", "user", "url", "updated_at", "created_at", "closed_at", "state", "title", "number", "milestone", "labels", "id", "html_url", "assignees", "comments"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"body" : "This fixes #2209 only for `setup-env.sh`.\r\n\r\n", "user" : "alalazo", "url" : "https://api.github.com/repos/spack/spack/issues/2212", "updated_at" : "2016-11-04 19:00:02", "created_at" : "2016-11-02 13:43:28", "closed_at" : "2016-11-04 19:00:01", "state" : "closed", "title" : "setup script for bash : fixes #2209", "number" : 2212, "milestone" : null, "labels" : ["shell-support"], "id" : 186804039, "html_url" : "https://github.com/spack/spack/pull/2212", "assignees" : [], "comments" : 2} | json_instruct | {"type": "object", "properties": {"body": {"type": "string"}, "user": {"type": "string"}, "url": {"type": "string"}, "updated_at": {"type": "string"}, "created_at": {"type": "string"}, "closed_at": {"type": "string"}, "state": {"type": "string"}, "title": {"type": "string"}, "number": {"type": "integer"}, "milestone": {"type": "null"}, "labels": {"type": "array", "items": {"type": "string"}}, "id": {"type": "integer"}, "html_url": {"type": "string"}, "assignees": {"type": "array", "items": {}}, "comments": {"type": "integer"}}, "required": ["body", "user", "url", "updated_at", "created_at", "closed_at", "state", "title", "number", "milestone", "labels", "id", "html_url", "assignees", "comments"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"message": {"type": "string"}}, "required": ["message"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"message" : "I was delivered after a simulated delay! The server can also have a global delay set by using the 'Mockifer.setGlobalResponseDelay() method."} | json_instruct | {"type": "object", "properties": {"message": {"type": "string"}}, "required": ["message"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"subreddit": {"type": "string"}, "author": {"type": "string"}, "count": {"type": "integer"}}, "required": ["subreddit", "author", "count"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"subreddit" : "MuslimNoFap", "author" : "nofap709", "count" : 13} | json_instruct | {"type": "object", "properties": {"subreddit": {"type": "string"}, "author": {"type": "string"}, "count": {"type": "integer"}}, "required": ["subreddit", "author", "count"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"patterns": {"type": "array", "items": {"type": "string"}}, "dependencies": {"type": "array", "items": {"type": "object", "properties": {"packages": {"type": "array", "items": {"type": "string"}}, "constraints": {"type": "array", "items": {"type": "object", "properties": {"os": {"type": "string"}, "distribution": {"type": "string"}}, "required": ["os", "distribution"]}}}, "required": ["packages", "constraints"]}}}, "required": ["patterns", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"patterns" : ["\\blibsecret\\b"], "dependencies" : [{"packages" : ["libsecret-1-dev"], "constraints" : [{"os" : "linux", "distribution" : "ubuntu"}, {"os" : "linux", "distribution" : "debian"}]}, {"packages" : ["libsecret-devel"], "constraints" : [{"os" : "linux", "distribution" : "centos", "versions" : ["7", "8"]}, {"os" : "linux", "distribution" : "redhat", "versions" : ["7", "8"]}]}, {"packages" : ["libsecret-devel"], "constraints" : [{"os" : "linux", "distribution" : "opensuse"}, {"os" : "linux", "distribution" : "sle"}]}]} | json_instruct | {"type": "object", "properties": {"patterns": {"type": "array", "items": {"type": "string"}}, "dependencies": {"type": "array", "items": {"type": "object", "properties": {"packages": {"type": "array", "items": {"type": "string"}}, "constraints": {"type": "array", "items": {"type": "object", "properties": {"os": {"type": "string"}, "distribution": {"type": "string"}}, "required": ["os", "distribution"]}}}, "required": ["packages", "constraints"]}}}, "required": ["patterns", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"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": {"notes": {"type": "string"}, "site": {"type": "string"}, "ownership-status": {"type": "string"}, "site-address": {"type": "string"}, "maximum-net-dwellings": {"type": "string"}, "start-date": {"type": "string"}, "name": {"type": "string"}, "organisation": {"type": "string"}, "minimum-net-dwellings": {"type": "string"}, "planning-permission-status": {"type": "string"}, "point": {"type": "string"}, "hectares": {"type": "string"}, "slug": {"type": "string"}, "entity": {"type": "integer"}, "entry-date": {"type": "string"}}, "required": ["notes", "site", "ownership-status", "site-address", "maximum-net-dwellings", "start-date", "name", "organisation", "minimum-net-dwellings", "planning-permission-status", "point", "hectares", "slug", "entity", "entry-date"]}}, "required": ["type", "geometry", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"type" : "Feature", "geometry" : {"type" : "Point", "coordinates" : [-1.43885, 54.969577]}, "properties" : {"notes" : "Link to site on a map", "site" : "BR21", "ownership-status" : "owned by a public authority", "site-address" : "Boldon Lane, South Shields", "maximum-net-dwellings" : "6", "start-date" : "2016-06-30", "name" : "BR21", "organisation" : "local-authority-eng:STY", "minimum-net-dwellings" : "6", "planning-permission-status" : "Not Permissioned", "point" : "POINT(-1.43885 54.969577)", "hectares" : "0.11", "slug" : "/brownfield-land/local-authority-eng/STY/BR21", "entity" : 495160, "entry-date" : "2016-06-30"}} | 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": {"notes": {"type": "string"}, "site": {"type": "string"}, "ownership-status": {"type": "string"}, "site-address": {"type": "string"}, "maximum-net-dwellings": {"type": "string"}, "start-date": {"type": "string"}, "name": {"type": "string"}, "organisation": {"type": "string"}, "minimum-net-dwellings": {"type": "string"}, "planning-permission-status": {"type": "string"}, "point": {"type": "string"}, "hectares": {"type": "string"}, "slug": {"type": "string"}, "entity": {"type": "integer"}, "entry-date": {"type": "string"}}, "required": ["notes", "site", "ownership-status", "site-address", "maximum-net-dwellings", "start-date", "name", "organisation", "minimum-net-dwellings", "planning-permission-status", "point", "hectares", "slug", "entity", "entry-date"]}}, "required": ["type", "geometry", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "type": {"type": "string"}, "license": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}}, "autoload": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"Jlis\\PhpPrometheus\\": {"type": "string"}}, "required": ["Jlis\\PhpPrometheus\\"]}}, "required": ["psr-4"]}, "autoload-dev": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"Jlis\\PhpPrometheus\\": {"type": "string"}}, "required": ["Jlis\\PhpPrometheus\\"]}}, "required": ["psr-4"]}, "minimum-stability": {"type": "string"}, "repositories": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}}, "require": {"type": "object", "properties": {"php": {"type": "string"}, "jimdo/prometheus_client_php": {"type": "string"}}, "required": ["php", "jimdo/prometheus_client_php"]}, "require-dev": {"type": "object", "properties": {"phpunit/phpunit": {"type": "string"}, "squizlabs/php_codesniffer": {"type": "string"}}, "required": ["phpunit/phpunit", "squizlabs/php_codesniffer"]}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "check-style": {"type": "string"}, "fix-style": {"type": "string"}}, "required": ["test", "check-style", "fix-style"]}, "suggest": {"type": "object", "properties": {"ext-redis": {"type": "string"}, "ext-apcu": {"type": "string"}}, "required": ["ext-redis", "ext-apcu"]}}, "required": ["name", "description", "type", "license", "authors", "autoload", "autoload-dev", "minimum-stability", "repositories", "require", "require-dev", "scripts", "suggest"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "jlis/php-prometheus", "description" : "A PHP client for Prometheus.", "type" : "library", "license" : "MIT", "authors" : [{"name" : "Julius Ehrlich", "email" : "julius@ehrlich-bros.de"}, {"name" : "Julius Ehrlich", "email" : "julius@billomat.com"}], "autoload" : {"psr-4" : {"Jlis\\PhpPrometheus\\" : "src"}}, "autoload-dev" : {"psr-4" : {"Jlis\\PhpPrometheus\\" : "tests"}}, "minimum-stability" : "dev", "repositories" : [{"type" : "vcs", "url" : "https://github.com/jlis/prometheus_client_php"}], "require" : {"php" : ">=5.6.3", "jimdo/prometheus_client_php" : "dev-apcu"}, "require-dev" : {"phpunit/phpunit" : "5.7", "squizlabs/php_codesniffer" : "^3.0@dev"}, "scripts" : {"test" : "phpunit", "check-style" : "phpcs -p --standard=PSR2 src/", "fix-style" : "phpcbf -p --standard=PSR2 src/"}, "suggest" : {"ext-redis" : "Required if using Redis.", "ext-apcu" : "Required if using APCu."}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "type": {"type": "string"}, "license": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}}, "autoload": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"Jlis\\PhpPrometheus\\": {"type": "string"}}, "required": ["Jlis\\PhpPrometheus\\"]}}, "required": ["psr-4"]}, "autoload-dev": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"Jlis\\PhpPrometheus\\": {"type": "string"}}, "required": ["Jlis\\PhpPrometheus\\"]}}, "required": ["psr-4"]}, "minimum-stability": {"type": "string"}, "repositories": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}}, "require": {"type": "object", "properties": {"php": {"type": "string"}, "jimdo/prometheus_client_php": {"type": "string"}}, "required": ["php", "jimdo/prometheus_client_php"]}, "require-dev": {"type": "object", "properties": {"phpunit/phpunit": {"type": "string"}, "squizlabs/php_codesniffer": {"type": "string"}}, "required": ["phpunit/phpunit", "squizlabs/php_codesniffer"]}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "check-style": {"type": "string"}, "fix-style": {"type": "string"}}, "required": ["test", "check-style", "fix-style"]}, "suggest": {"type": "object", "properties": {"ext-redis": {"type": "string"}, "ext-apcu": {"type": "string"}}, "required": ["ext-redis", "ext-apcu"]}}, "required": ["name", "description", "type", "license", "authors", "autoload", "autoload-dev", "minimum-stability", "repositories", "require", "require-dev", "scripts", "suggest"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"localities": {"type": "array", "items": {"type": "string"}}, "state": {"type": "string"}, "postal_code": {"type": "string"}, "locality": {"type": "string"}, "lat": {"type": "number"}, "region": {"type": "object", "properties": {"fips": {"type": "string"}, "abbr": {"type": "string"}, "name": {"type": "string"}}, "required": ["fips", "abbr", "name"]}, "city": {"type": "string"}, "type": {"type": "string"}, "lng": {"type": "number"}, "counties": {"type": "array", "items": {"type": "object", "properties": {"fips": {"type": "string"}, "name": {"type": "string"}}, "required": ["fips", "name"]}}}, "required": ["localities", "state", "postal_code", "locality", "lat", "region", "city", "type", "lng", "counties"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"localities" : ["Martin Lake, MN", "Stacy, MN", "Lent, MN"], "state" : "MN", "postal_code" : "55079", "locality" : "Stacy, MN", "lat" : 45.419467, "region" : {"fips" : "27", "abbr" : "MN", "name" : "Minnesota"}, "city" : "Stacy", "type" : "STANDARD", "lng" : -93.035393, "counties" : [{"fips" : "003", "name" : "Anoka County"}, {"fips" : "025", "name" : "Chisago County"}, {"fips" : "059", "name" : "Isanti County"}]} | json_instruct | {"type": "object", "properties": {"localities": {"type": "array", "items": {"type": "string"}}, "state": {"type": "string"}, "postal_code": {"type": "string"}, "locality": {"type": "string"}, "lat": {"type": "number"}, "region": {"type": "object", "properties": {"fips": {"type": "string"}, "abbr": {"type": "string"}, "name": {"type": "string"}}, "required": ["fips", "abbr", "name"]}, "city": {"type": "string"}, "type": {"type": "string"}, "lng": {"type": "number"}, "counties": {"type": "array", "items": {"type": "object", "properties": {"fips": {"type": "string"}, "name": {"type": "string"}}, "required": ["fips", "name"]}}}, "required": ["localities", "state", "postal_code", "locality", "lat", "region", "city", "type", "lng", "counties"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "array", "items": {"type": "object", "properties": {"errors": {"type": "array", "items": {}}, "file": {"type": "string"}, "name": {"type": "string"}}, "required": ["errors", "file", "name"]}}}, "required": ["contract", "tool", "start", "end", "duration", "analysis"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"contract" : "0x9b0237712e9101d1222964f45b766ce34860f02a", "tool" : "honeybadger", "start" : 1565848022.559302, "end" : 1565848066.04015, "duration" : 43.48084783554077, "analysis" : [{"errors" : [], "file" : "/unique_chucks/13/0x9b0237712e9101d1222964f45b766ce34860f02a.sol", "name" : "MMC"}]} | json_instruct | {"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "array", "items": {"type": "object", "properties": {"errors": {"type": "array", "items": {}}, "file": {"type": "string"}, "name": {"type": "string"}}, "required": ["errors", "file", "name"]}}}, "required": ["contract", "tool", "start", "end", "duration", "analysis"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "repository": {"type": "string"}, "author": {"type": "string"}, "license": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "files": {"type": "array", "items": {"type": "string"}}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "devDependencies": {"type": "object", "properties": {"ava": {"type": "string"}, "flow-bin": {"type": "string"}, "spawndamnit": {"type": "string"}}, "required": ["ava", "flow-bin", "spawndamnit"]}}, "required": ["name", "version", "description", "main", "repository", "author", "license", "keywords", "files", "scripts", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "ci-parallel-vars", "version" : "1.0.0", "description" : "Get CI environment variables for parallelizing builds", "main" : "index.js", "repository" : "https://github.com/jamiebuilds/ci-parallel-vars", "author" : "Jamie Kyle <me@thejameskyle.com>", "license" : "MIT", "keywords" : ["ci", "env", "vars", "index", "total", "parallel", "builds", "tests", "travis", "circle", "buildkite", "bitbucket", "pipelines", "knapsack"], "files" : ["index.js"], "scripts" : {"test" : "ava"}, "devDependencies" : {"ava" : "^0.25.0", "flow-bin" : "^0.73.0", "spawndamnit" : "^2.0.0"}} | 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"}, "keywords": {"type": "array", "items": {"type": "string"}}, "files": {"type": "array", "items": {"type": "string"}}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "devDependencies": {"type": "object", "properties": {"ava": {"type": "string"}, "flow-bin": {"type": "string"}, "spawndamnit": {"type": "string"}}, "required": ["ava", "flow-bin", "spawndamnit"]}}, "required": ["name", "version", "description", "main", "repository", "author", "license", "keywords", "files", "scripts", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"problemWithTheServiceTitle": {"type": "string"}, "problemWithTheServiceContent": {"type": "string"}}, "required": ["problemWithTheServiceTitle", "problemWithTheServiceContent"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"problemWithTheServiceTitle" : "Sorry, there\u2019s a problem with the service", "problemWithTheServiceContent" : "Try again later."} | json_instruct | {"type": "object", "properties": {"problemWithTheServiceTitle": {"type": "string"}, "problemWithTheServiceContent": {"type": "string"}}, "required": ["problemWithTheServiceTitle", "problemWithTheServiceContent"], "$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"}, "defaultMessage": {"type": "string"}}, "required": ["id", "defaultMessage"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"id" : "signUp.mainTitle", "defaultMessage" : "Buckle Your Pants!"}, {"id" : "signUp.subtitle", "defaultMessage" : "Create your Hopl account."}, {"id" : "signUp.emailInputPlaceholder", "defaultMessage" : "Email"}, {"id" : "signUp.firstNameInputPlaceholder", "defaultMessage" : "First Name"}, {"id" : "signUp.lastNameInputPlaceholder", "defaultMessage" : "Last Name"}, {"id" : "signUp.passwordInputPlaceholder", "defaultMessage" : "Password"}, {"id" : "signUp.signUpButton", "defaultMessage" : "Sign Up"}, {"id" : "signUp.backToLoginTitle", "defaultMessage" : "Already got an account?"}, {"id" : "signUp.backToLoginLinkText", "defaultMessage" : "Go to the login page"}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "defaultMessage": {"type": "string"}}, "required": ["id", "defaultMessage"]}, "$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": {"build": {"type": "string"}, "test": {"type": "string"}}, "required": ["build", "test"]}, "author": {"type": "string"}, "license": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"@babel/core": {"type": "string"}, "@babel/preset-env": {"type": "string"}, "@babel/preset-typescript": {"type": "string"}, "@figma/plugin-typings": {"type": "string"}, "babel-jest": {"type": "string"}, "css-loader": {"type": "string"}, "html-webpack-inline-source-plugin": {"type": "string"}, "html-webpack-plugin": {"type": "string"}, "jest": {"type": "string"}, "style-loader": {"type": "string"}, "ts-loader": {"type": "string"}, "typescript": {"type": "string"}, "url-loader": {"type": "string"}, "webpack": {"type": "string"}, "webpack-cli": {"type": "string"}}, "required": ["@babel/core", "@babel/preset-env", "@babel/preset-typescript", "@figma/plugin-typings", "babel-jest", "css-loader", "html-webpack-inline-source-plugin", "html-webpack-plugin", "jest", "style-loader", "ts-loader", "typescript", "url-loader", "webpack", "webpack-cli"]}, "dependencies": {"type": "object", "properties": {"figma-api-stub": {"type": "string"}}, "required": ["figma-api-stub"]}}, "required": ["name", "version", "description", "main", "scripts", "author", "license", "devDependencies", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "overlay-provider", "version" : "1.0.0", "description" : "", "main" : "code.js", "scripts" : {"build" : "tsc -p tsconfig.json", "test" : "jest"}, "author" : "", "license" : "", "devDependencies" : {"@babel/core" : "^7.10.4", "@babel/preset-env" : "^7.10.4", "@babel/preset-typescript" : "^7.10.4", "@figma/plugin-typings" : "^1.15.0", "babel-jest" : "^26.1.0", "css-loader" : "^3.6.0", "html-webpack-inline-source-plugin" : "1.0.0-beta.2", "html-webpack-plugin" : "^4.3.0", "jest" : "^26.1.0", "style-loader" : "^1.2.1", "ts-loader" : "^8.0.0", "typescript" : "^3.9.6", "url-loader" : "^4.1.0", "webpack" : "^4.43.0", "webpack-cli" : "^3.3.12"}, "dependencies" : {"figma-api-stub" : "0.0.42"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"build": {"type": "string"}, "test": {"type": "string"}}, "required": ["build", "test"]}, "author": {"type": "string"}, "license": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"@babel/core": {"type": "string"}, "@babel/preset-env": {"type": "string"}, "@babel/preset-typescript": {"type": "string"}, "@figma/plugin-typings": {"type": "string"}, "babel-jest": {"type": "string"}, "css-loader": {"type": "string"}, "html-webpack-inline-source-plugin": {"type": "string"}, "html-webpack-plugin": {"type": "string"}, "jest": {"type": "string"}, "style-loader": {"type": "string"}, "ts-loader": {"type": "string"}, "typescript": {"type": "string"}, "url-loader": {"type": "string"}, "webpack": {"type": "string"}, "webpack-cli": {"type": "string"}}, "required": ["@babel/core", "@babel/preset-env", "@babel/preset-typescript", "@figma/plugin-typings", "babel-jest", "css-loader", "html-webpack-inline-source-plugin", "html-webpack-plugin", "jest", "style-loader", "ts-loader", "typescript", "url-loader", "webpack", "webpack-cli"]}, "dependencies": {"type": "object", "properties": {"figma-api-stub": {"type": "string"}}, "required": ["figma-api-stub"]}}, "required": ["name", "version", "description", "main", "scripts", "author", "license", "devDependencies", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"item_name": {"type": "string"}, "cost": {"type": "string"}, "ac": {"type": "array", "items": {"type": "object", "properties": {"base": {"type": "string"}, "has_dex_max": {"type": "string"}, "dex_max": {"type": "string"}}, "required": ["base", "has_dex_max", "dex_max"]}}, "has_str_min": {"type": "string"}, "stealth_disadvantage": {"type": "string"}, "weight": {"type": "string"}}, "required": ["item_name", "cost", "ac", "has_str_min", "stealth_disadvantage", "weight"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"item_name" : "shield", "cost" : "10gp", "ac" : [{"base" : "2", "has_dex_max" : "True", "dex_max" : "0"}], "has_str_min" : "False", "stealth_disadvantage" : "False", "weight" : "6 lb."} | json_instruct | {"type": "object", "properties": {"item_name": {"type": "string"}, "cost": {"type": "string"}, "ac": {"type": "array", "items": {"type": "object", "properties": {"base": {"type": "string"}, "has_dex_max": {"type": "string"}, "dex_max": {"type": "string"}}, "required": ["base", "has_dex_max", "dex_max"]}}, "has_str_min": {"type": "string"}, "stealth_disadvantage": {"type": "string"}, "weight": {"type": "string"}}, "required": ["item_name", "cost", "ac", "has_str_min", "stealth_disadvantage", "weight"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"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" : "\u7acb\u660e\u9020\u7d19\u5ee0\u80a1\u4efd\u6709\u9650\u516c\u53f8", "\u5de5\u5ee0\u767b\u8a18\u7de8\u865f" : "99625117", "\u5de5\u5ee0\u8a2d\u7acb\u8a31\u53ef\u6848\u865f" : "05810000016579", "\u5de5\u5ee0\u5730\u5740" : "\u6843\u5712\u5e02\u5927\u5712\u5340\u5167\u6d77\u91cc\u6c11\u751f\u8def\u4e00\u25cb\u4e5d\u865f", "\u5de5\u5ee0\u5e02\u93ae\u9109\u6751\u91cc" : "\u6843\u5712\u5e02\u5927\u5712\u5340\u5167\u6d77\u91cc", "\u5de5\u5ee0\u8ca0\u8cac\u4eba\u59d3\u540d" : "\u674e\u53cb\u5efa\u3000\u3000", "\u71df\u5229\u4e8b\u696d\u7d71\u4e00\u7de8\u865f" : "43810183", "\u5de5\u5ee0\u7d44\u7e54\u578b\u614b" : "\u80a1\u4efd\u6709\u9650\u516c\u53f8", "\u5de5\u5ee0\u8a2d\u7acb\u6838\u51c6\u65e5\u671f" : "0671013", "\u5de5\u5ee0\u767b\u8a18\u6838\u51c6\u65e5\u671f" : "0681015", "\u5de5\u5ee0\u767b\u8a18\u72c0\u614b" : "\u751f\u7522\u4e2d", "\u7522\u696d\u985e\u5225" : ["15\u7d19\u6f3f\u3001\u7d19\u53ca\u7d19\u88fd\u54c1\u88fd\u9020\u696d"], "\u4e3b\u8981\u7522\u54c1" : ["151\u7d19\u6f3f\u3001\u7d19\u3001\u7d19\u677f", "159\u5176\u4ed6\u7d19\u88fd\u54c1"]} | 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": "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).", "Put bread crumbs in a bowl with enough water to cover; set aside to soak.", "Heat vegetable oil in a large skillet. Cook and stir ground beef, onion, and garlic in hot oil until the beef is completely browned and no large chunks remain, 7 to 10 minutes.", "Stir eggplant into ground beef mixture; cook and stir until eggplant is tender, about 5 minutes. Remove skillet from heat and set aside to allow mixture to cool.", "Drain excess water from bread crumbs and dump into a large bowl; add ground beef mixture, half the tomatoes, rice, Italian cheese blend, egg, and basil. Stir the mixture until ingredients are evenly mixed, adding more liquid from the tomatoes if too dry; season with salt and pepper. Fill the eggplant shells with the mixture and put into a large baking dish. Top with remaining tomatoes and cover dish with aluminum foil.", "Bake in preheated oven for 20 minutes, remove foil, and continue baking until beginning to brown around the edges, about 10 minutes more."], "ingredients" : ["1/4 cup bread crumbs", "2 tablespoons vegetable oil, or more to taste", "1/2 pound ground beef", "1 small onion, chopped", "1 clove garlic, chopped", "1 eggplant, halved lengthwise and pulp scooped from peel leaving two shells", "1 (14.5 ounce) can whole tomatoes with juice, divided", "1/4 cup cooked rice", "1/4 cup shredded Italian cheese blend", "1 hard-boiled egg, diced", "1/4 teaspoon dried basil", "1 pinch salt and ground black pepper to taste"], "language" : "en-US", "source" : "allrecipes.com", "tags" : [], "title" : "Baked Eggplant with Ground Beef", "url" : "http://allrecipes.com/recipe/236313/baked-eggplant-with-ground-beef/"} | json_instruct | {"type": "object", "properties": {"directions": {"type": "array", "items": {"type": "string"}}, "ingredients": {"type": "array", "items": {"type": "string"}}, "language": {"type": "string"}, "source": {"type": "string"}, "tags": {"type": "array", "items": {}}, "title": {"type": "string"}, "url": {"type": "string"}}, "required": ["directions", "ingredients", "language", "source", "tags", "title", "url"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"courseCode": {"type": "string"}, "courseCredit": {"type": "string"}, "description": {"type": "string"}, "faculty": {"type": "string"}, "title": {"type": "string"}}, "required": ["courseCode", "courseCredit", "description", "faculty", "title"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"courseCode" : "SE3231", "courseCredit" : "4", "description" : "Through a critical reading of European fiction set in Southeast Asia, students will gain a richer understanding of the region in the colonial period, as well as European experiences and images of Southeast Asia. The module will also reflect on the medium of fiction \u2013 is there something that one can express better through fiction than through academic writing? How do the conventions of academic writing limit what is thought and said? As part of the assessment, students will write short stories. In addition to fiction, we will examine paintings, photographs and watch movies.", "faculty" : "Arts and Social Science", "title" : "Colonial Southeast Asia Through European Literature"} | json_instruct | {"type": "object", "properties": {"courseCode": {"type": "string"}, "courseCredit": {"type": "string"}, "description": {"type": "string"}, "faculty": {"type": "string"}, "title": {"type": "string"}}, "required": ["courseCode", "courseCredit", "description", "faculty", "title"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "array", "items": {"type": "object", "properties": {"postal_code": {"type": "string"}, "place_name": {"type": "string"}, "place_type": {"type": "string"}, "county": {"type": "string"}, "state": {"type": "string"}, "city": {"type": "string"}}, "required": ["postal_code", "place_name", "place_type", "county", "state", "city"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"postal_code" : "63020", "place_name" : "Unidad Deportiva Santa Teresita", "place_type" : "Colonia", "county" : "Tepic", "state" : "Nayarit", "city" : "Tepic"}, {"postal_code" : "63020", "place_name" : "Santa Teresita", "place_type" : "Colonia", "county" : "Tepic", "state" : "Nayarit", "city" : "Tepic"}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"postal_code": {"type": "string"}, "place_name": {"type": "string"}, "place_type": {"type": "string"}, "county": {"type": "string"}, "state": {"type": "string"}, "city": {"type": "string"}}, "required": ["postal_code", "place_name", "place_type", "county", "state", "city"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "array", "items": {"type": "object", "properties": {"items": {"type": "array", "items": {}}, "id": {"type": "string"}}, "required": ["items", "id"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"items" : [], "id" : "5a8016ec"}, {"items" : [], "id" : "1e02a957"}, {"items" : [], "id" : "6566dfee"}, {"items" : [], "id" : "993a7bd7"}, {"items" : [], "id" : "7803169b"}, {"items" : [{"id" : "62b582ba", "quantity" : 2}, {"id" : "2c8745bb", "quantity" : 1}], "id" : "da6be55d"}, {"items" : [{"id" : "ed1a0390", "quantity" : 1}], "id" : "be5e91f4"}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"items": {"type": "array", "items": {}}, "id": {"type": "string"}}, "required": ["items", "id"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"ast": {"type": "null"}, "code": {"type": "string"}, "map": {"type": "null"}, "metadata": {"type": "object", "properties": {}, "required": []}, "sourceType": {"type": "string"}}, "required": ["ast", "code", "map", "metadata", "sourceType"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"ast" : null, "code" : "'use strict';\n\nObject.defineProperty(exports, '__esModule', {\n value: true\n});\n\nvar configure = require('./lib/configure.js');\n\nvar createGetEndpointConfig = configure.configure(function (api) {\n return function () {\n var url = new URL(api.opts.base || '');\n return {\n host: url.hostname,\n port: url.port,\n protocol: url.protocol,\n pathname: url.pathname,\n 'api-path': url.pathname\n };\n };\n});\nexports.createGetEndpointConfig = createGetEndpointConfig;", "map" : null, "metadata" : {}, "sourceType" : "script"} | json_instruct | {"type": "object", "properties": {"ast": {"type": "null"}, "code": {"type": "string"}, "map": {"type": "null"}, "metadata": {"type": "object", "properties": {}, "required": []}, "sourceType": {"type": "string"}}, "required": ["ast", "code", "map", "metadata", "sourceType"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"development": {"type": "object", "properties": {"apiUrl": {"type": "string"}, "contentApiKey": {"type": "string"}}, "required": ["apiUrl", "contentApiKey"]}, "production": {"type": "object", "properties": {"apiUrl": {"type": "string"}, "contentApiKey": {"type": "string"}}, "required": ["apiUrl", "contentApiKey"]}}, "required": ["development", "production"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"development" : {"apiUrl" : "https://admin.qbfactory.show", "contentApiKey" : "fe89c55fcccf9b66b586b5fe6f"}, "production" : {"apiUrl" : "https://admin.qbfactory.show", "contentApiKey" : "fe89c55fcccf9b66b586b5fe6f"}} | json_instruct | {"type": "object", "properties": {"development": {"type": "object", "properties": {"apiUrl": {"type": "string"}, "contentApiKey": {"type": "string"}}, "required": ["apiUrl", "contentApiKey"]}, "production": {"type": "object", "properties": {"apiUrl": {"type": "string"}, "contentApiKey": {"type": "string"}}, "required": ["apiUrl", "contentApiKey"]}}, "required": ["development", "production"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "district_id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "district_id", "name"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"id" : "1804072001", "district_id" : "1804072", "name" : "WARINGIN JAYA"}, {"id" : "1804072002", "district_id" : "1804072", "name" : "SRI BAWONO"}, {"id" : "1804072003", "district_id" : "1804072", "name" : "SRI MENANTI"}, {"id" : "1804072004", "district_id" : "1804072", "name" : "SRI PENDOWO"}, {"id" : "1804072005", "district_id" : "1804072", "name" : "BANDAR AGUNG"}, {"id" : "1804072006", "district_id" : "1804072", "name" : "SADAR SRIWIJAYA"}, {"id" : "1804072007", "district_id" : "1804072", "name" : "MEKAR JAYA"}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "district_id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "district_id", "name"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "array", "items": {"type": "array", "items": {"type": "string"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [["654025200001", "\u6587\u5316\u8def\u793e\u533a", "121", "0"], ["654025200002", "\u5219\u65b0\u8def\u793e\u533a", "121", "0"], ["654025200003", "\u522b\u65af\u6258\u522b\u65b0\u6751\u793e\u533a\u5c45\u6c11\u59d4\u5458\u4f1a", "122", "0"], ["654025200200", "\u963f\u5408\u897f\u6751\u59d4\u4f1a", "220", "0"], ["654025200201", "\u5580\u62c9\u82cf\u6751\u59d4\u4f1a", "220", "0"], ["654025200202", "\u6070\u666e\u6cb3\u52a0\u560e\u6751\u59d4\u4f1a", "220", "0"], ["654025200203", "\u6c5f\u5c14\u68ee\u6751\u59d4\u4f1a", "122", "0"], ["654025200204", "\u522b\u65af\u6258\u522b\u6751\u59d4\u4f1a", "122", "0"], ["654025200205", "\u5580\u62c9\u54c8\u897f\u7279\u6751\u59d4\u4f1a", "220", "0"], ["654025200206", "\u522b\u65af\u6258\u522b\u65b0\u6751\u59d4\u4f1a", "122", "0"], ["654025200207", "\u5df4\u7279\u5df4\u514b\u7279\u6751\u59d4\u4f1a", "220", "0"], ["654025200208", "\u6602\u8fbe\u65af\u6751\u59d4\u4f1a", "220", "0"], ["654025200210", "\u963f\u4ec0\u52d2\u5e03\u62c9\u514b\u6751\u59d4\u4f1a", "220", "0"], ["654025200211", "\u5580\u62c9\u5965\u4f9d\u65b0\u6751\u59d4\u4f1a", "220", "0"], ["654025200212", "\u5580\u6728\u65af\u7279\u6751\u59d4\u4f1a", "220", "0"], ["654025200213", "\u94c1\u52d2\u54c8\u62c9\u6751\u59d4\u4f1a", "220", "0"], ["654025200501", "\u519c\u4e1a\u5c40\u826f\u79cd\u7e41\u80b2\u57fa\u5730\u652f\u90e8\u751f\u6d3b\u533a", "220", "0"]] | json_instruct | {"type": "array", "items": {"type": "array", "items": {"type": "string"}}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"regex": {"type": "string"}, "testInputs": {"type": "array", "items": {"type": "string"}}, "mustPass": {"type": "boolean"}}, "required": ["regex", "testInputs", "mustPass"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"regex" : "/def/", "testInputs" : ["def", "wDef", "bldehf", "de"], "mustPass" : true} | json_instruct | {"type": "object", "properties": {"regex": {"type": "string"}, "testInputs": {"type": "array", "items": {"type": "string"}}, "mustPass": {"type": "boolean"}}, "required": ["regex", "testInputs", "mustPass"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"192.168.3.1": {"type": "object", "properties": {"1h": {"type": "object", "properties": {"192.168.3.1": {"type": "number"}, "2a00:1aa8:11:3100::1": {"type": "number"}}, "required": ["192.168.3.1", "2a00:1aa8:11:3100::1"]}, "6h": {"type": "object", "properties": {"192.168.3.1": {"type": "number"}, "2a00:1aa8:11:3100::1": {"type": "number"}}, "required": ["192.168.3.1", "2a00:1aa8:11:3100::1"]}}, "required": ["1h", "6h"]}, "2a00:1aa8:11:3100::1": {"type": "object", "properties": {"1h": {"type": "object", "properties": {"192.168.3.1": {"type": "number"}, "2a00:1aa8:11:3100::1": {"type": "number"}}, "required": ["192.168.3.1", "2a00:1aa8:11:3100::1"]}, "6h": {"type": "object", "properties": {"192.168.3.1": {"type": "number"}, "2a00:1aa8:11:3100::1": {"type": "number"}}, "required": ["192.168.3.1", "2a00:1aa8:11:3100::1"]}}, "required": ["1h", "6h"]}}, "required": ["192.168.3.1", "2a00:1aa8:11:3100::1"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"192.168.3.1" : {"1h" : {"192.168.3.1" : 1.0, "2a00:1aa8:11:3100::1" : 1.0}, "6h" : {"192.168.3.1" : 1.0, "2a00:1aa8:11:3100::1" : 1.0}}, "2a00:1aa8:11:3100::1" : {"1h" : {"192.168.3.1" : 1.0, "2a00:1aa8:11:3100::1" : 1.0}, "6h" : {"192.168.3.1" : 1.0, "2a00:1aa8:11:3100::1" : 1.0}}} | json_instruct | {"type": "object", "properties": {"192.168.3.1": {"type": "object", "properties": {"1h": {"type": "object", "properties": {"192.168.3.1": {"type": "number"}, "2a00:1aa8:11:3100::1": {"type": "number"}}, "required": ["192.168.3.1", "2a00:1aa8:11:3100::1"]}, "6h": {"type": "object", "properties": {"192.168.3.1": {"type": "number"}, "2a00:1aa8:11:3100::1": {"type": "number"}}, "required": ["192.168.3.1", "2a00:1aa8:11:3100::1"]}}, "required": ["1h", "6h"]}, "2a00:1aa8:11:3100::1": {"type": "object", "properties": {"1h": {"type": "object", "properties": {"192.168.3.1": {"type": "number"}, "2a00:1aa8:11:3100::1": {"type": "number"}}, "required": ["192.168.3.1", "2a00:1aa8:11:3100::1"]}, "6h": {"type": "object", "properties": {"192.168.3.1": {"type": "number"}, "2a00:1aa8:11:3100::1": {"type": "number"}}, "required": ["192.168.3.1", "2a00:1aa8:11:3100::1"]}}, "required": ["1h", "6h"]}}, "required": ["192.168.3.1", "2a00:1aa8:11:3100::1"], "$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"}, "private": {"type": "boolean"}, "version": {"type": "string"}, "description": {"type": "string"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}, "start:server": {"type": "string"}, "build:client": {"type": "string"}, "build:server": {"type": "string"}, "build": {"type": "string"}, "watch": {"type": "string"}, "build:lib": {"type": "string"}}, "required": ["start", "start:server", "build:client", "build:server", "build", "watch", "build:lib"]}, "dependencies": {"type": "object", "properties": {"koa": {"type": "string"}, "koa-router": {"type": "string"}, "koa-send": {"type": "string"}, "mobx": {"type": "string"}, "mobx-react": {"type": "string"}, "react": {"type": "string"}, "react-dom": {"type": "string"}}, "required": ["koa", "koa-router", "koa-send", "mobx", "mobx-react", "react", "react-dom"]}, "devDependencies": {"type": "object", "properties": {"gnoll": {"type": "string"}, "webpack-merge": {"type": "string"}}, "required": ["gnoll", "webpack-merge"]}, "author": {"type": "string"}, "license": {"type": "string"}}, "required": ["name", "private", "version", "description", "scripts", "dependencies", "devDependencies", "author", "license"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "gnoll-example", "private" : true, "version" : "0.7.0-alpha.7", "description" : "Gnoll usage example", "scripts" : {"start" : "gnoll start", "start:server" : "node server.js", "build:client" : "gnoll build -o ./build/client --assets-caching --no-html", "build:server" : "gnoll build -e ./src/index.server.js -o ./build/server --ssr", "build" : "npm run build:client && npm run build:server", "watch" : "gnoll watch -o ./build/client --no-html", "build:lib" : "gnoll lib --source-maps -e ./lib-src"}, "dependencies" : {"koa" : "^2.5.2", "koa-router" : "^7.4.0", "koa-send" : "^5.0.0", "mobx" : "^3.5.1", "mobx-react" : "^4.4.3", "react" : "^16.0.0", "react-dom" : "^16.0.0"}, "devDependencies" : {"gnoll" : "*", "webpack-merge" : "^4.1.2"}, "author" : "sunflowerdeath", "license" : "Unlicense"} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "private": {"type": "boolean"}, "version": {"type": "string"}, "description": {"type": "string"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}, "start:server": {"type": "string"}, "build:client": {"type": "string"}, "build:server": {"type": "string"}, "build": {"type": "string"}, "watch": {"type": "string"}, "build:lib": {"type": "string"}}, "required": ["start", "start:server", "build:client", "build:server", "build", "watch", "build:lib"]}, "dependencies": {"type": "object", "properties": {"koa": {"type": "string"}, "koa-router": {"type": "string"}, "koa-send": {"type": "string"}, "mobx": {"type": "string"}, "mobx-react": {"type": "string"}, "react": {"type": "string"}, "react-dom": {"type": "string"}}, "required": ["koa", "koa-router", "koa-send", "mobx", "mobx-react", "react", "react-dom"]}, "devDependencies": {"type": "object", "properties": {"gnoll": {"type": "string"}, "webpack-merge": {"type": "string"}}, "required": ["gnoll", "webpack-merge"]}, "author": {"type": "string"}, "license": {"type": "string"}}, "required": ["name", "private", "version", "description", "scripts", "dependencies", "devDependencies", "author", "license"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"basename": {"type": "string"}, "cmd": {"type": "string"}, "infile": {"type": "string"}, "infile_hash": {"type": "string"}, "outfile": {"type": "null"}, "outfile_hash": {"type": "null"}, "stdout": {"type": "string"}, "stdout_hash": {"type": "string"}, "stderr": {"type": "string"}, "stderr_hash": {"type": "string"}, "returncode": {"type": "integer"}}, "required": ["basename", "cmd", "infile", "infile_hash", "outfile", "outfile_hash", "stdout", "stdout_hash", "stderr", "stderr_hash", "returncode"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"basename" : "llvm-return_02-99fb0b3", "cmd" : "lfortran --no-color --show-llvm {infile} -o {outfile}", "infile" : "tests/../integration_tests/return_02.f90", "infile_hash" : "e5f24828e2cdf4070fa9095cd731b2eb065bd9c3cbb2885c825f0655", "outfile" : null, "outfile_hash" : null, "stdout" : "llvm-return_02-99fb0b3.stdout", "stdout_hash" : "a07ffad44b24e962fe92046c6f71941530c915bf0ae581d8cb77b7a4", "stderr" : "llvm-return_02-99fb0b3.stderr", "stderr_hash" : "efcbccc2e2e71c4026b6ef48d5fa977b7432890f8fc2395640038aa4", "returncode" : 0} | json_instruct | {"type": "object", "properties": {"basename": {"type": "string"}, "cmd": {"type": "string"}, "infile": {"type": "string"}, "infile_hash": {"type": "string"}, "outfile": {"type": "null"}, "outfile_hash": {"type": "null"}, "stdout": {"type": "string"}, "stdout_hash": {"type": "string"}, "stderr": {"type": "string"}, "stderr_hash": {"type": "string"}, "returncode": {"type": "integer"}}, "required": ["basename", "cmd", "infile", "infile_hash", "outfile", "outfile_hash", "stdout", "stdout_hash", "stderr", "stderr_hash", "returncode"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"nodes": {"type": "array", "items": {"type": "object", "properties": {"nodeID": {"type": "string"}, "text": {"type": "string"}, "type": {"type": "string"}, "timestamp": {"type": "string"}}, "required": ["nodeID", "text", "type", "timestamp"]}}, "edges": {"type": "array", "items": {"type": "object", "properties": {"edgeID": {"type": "string"}, "fromID": {"type": "string"}, "toID": {"type": "string"}, "formEdgeID": {"type": "null"}}, "required": ["edgeID", "fromID", "toID", "formEdgeID"]}}, "locutions": {"type": "array", "items": {"type": "object", "properties": {"nodeID": {"type": "string"}, "personID": {"type": "string"}, "timestamp": {"type": "string"}, "start": {"type": "null"}, "end": {"type": "null"}, "source": {"type": "null"}}, "required": ["nodeID", "personID", "timestamp", "start", "end", "source"]}}}, "required": ["nodes", "edges", "locutions"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"nodes" : [{"nodeID" : "323", "text" : "a long term prison sentence with hard labour would have been more appropriate", "type" : "I", "timestamp" : "2012-04-12 17:18:34"}, {"nodeID" : "324", "text" : "His death will be quick and humane unlike the lifetime of suffering yet to be endured by the relatives of his victims.", "type" : "I", "timestamp" : "2012-04-12 17:18:34"}, {"nodeID" : "325", "text" : "If his death will be quick and humane and the suffering of the relatives of his victims will not be quick and humane then in these circumstances a long-term prison sentence with hard labour would have been more appropriate", "type" : "I", "timestamp" : "2012-04-12 17:18:34"}, {"nodeID" : "326", "text" : "RA", "type" : "RA", "timestamp" : "2012-04-12 17:18:34"}], "edges" : [{"edgeID" : "307", "fromID" : "324", "toID" : "326", "formEdgeID" : null}, {"edgeID" : "308", "fromID" : "325", "toID" : "326", "formEdgeID" : null}, {"edgeID" : "309", "fromID" : "326", "toID" : "323", "formEdgeID" : null}], "locutions" : [{"nodeID" : "323", "personID" : "1219", "timestamp" : "2015-09-23 13:47:08", "start" : null, "end" : null, "source" : null}, {"nodeID" : "324", "personID" : "1219", "timestamp" : "2015-09-23 13:47:08", "start" : null, "end" : null, "source" : null}, {"nodeID" : "325", "personID" : "1", "timestamp" : "2015-09-23 13:47:39", "start" : null, "end" : null, "source" : null}, {"nodeID" : "326", "personID" : "1", "timestamp" : "2015-09-23 13:47:39", "start" : null, "end" : null, "source" : null}]} | json_instruct | {"type": "object", "properties": {"nodes": {"type": "array", "items": {"type": "object", "properties": {"nodeID": {"type": "string"}, "text": {"type": "string"}, "type": {"type": "string"}, "timestamp": {"type": "string"}}, "required": ["nodeID", "text", "type", "timestamp"]}}, "edges": {"type": "array", "items": {"type": "object", "properties": {"edgeID": {"type": "string"}, "fromID": {"type": "string"}, "toID": {"type": "string"}, "formEdgeID": {"type": "null"}}, "required": ["edgeID", "fromID", "toID", "formEdgeID"]}}, "locutions": {"type": "array", "items": {"type": "object", "properties": {"nodeID": {"type": "string"}, "personID": {"type": "string"}, "timestamp": {"type": "string"}, "start": {"type": "null"}, "end": {"type": "null"}, "source": {"type": "null"}}, "required": ["nodeID", "personID", "timestamp", "start", "end", "source"]}}}, "required": ["nodes", "edges", "locutions"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"HostConfigHash": {"type": "string"}, "CardHash": {"type": "string"}, "Error": {"type": "null"}}, "required": ["HostConfigHash", "CardHash", "Error"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"HostConfigHash" : "cd9e1e1", "CardHash" : "7ec316e", "Error" : null} | json_instruct | {"type": "object", "properties": {"HostConfigHash": {"type": "string"}, "CardHash": {"type": "string"}, "Error": {"type": "null"}}, "required": ["HostConfigHash", "CardHash", "Error"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"parent": {"type": "string"}}, "required": ["parent"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"parent" : "dawnoftimebuilder:block/japanese/charred_spruce_timber_frame_pillar"} | 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": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"}
| ["vigour-js", "vigour-router"] | json_instruct | {"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"category": {"type": "object", "properties": {"visualization": {"type": "string"}}, "required": ["visualization"]}, "page": {"type": "object", "properties": {"2dviewer": {"type": "string"}, "3dviewer": {"type": "string"}}, "required": ["2dviewer", "3dviewer"]}}, "required": ["category", "page"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"category" : {"visualization" : "Visualisierung"}, "page" : {"2dviewer" : "2D Viewer", "3dviewer" : "3D Viewer"}} | json_instruct | {"type": "object", "properties": {"category": {"type": "object", "properties": {"visualization": {"type": "string"}}, "required": ["visualization"]}, "page": {"type": "object", "properties": {"2dviewer": {"type": "string"}, "3dviewer": {"type": "string"}}, "required": ["2dviewer", "3dviewer"]}}, "required": ["category", "page"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"browser-polyfill.js": {"type": "string"}, "browser-polyfill.min.js": {"type": "string"}, "browser.js": {"type": "string"}, "browser.min.js": {"type": "string"}}, "required": ["browser-polyfill.js", "browser-polyfill.min.js", "browser.js", "browser.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"browser-polyfill.js" : "sha256-WOAQi2osxjgAoIQ0Sviyy6M1coOgC1zz65LO8PRbD90=", "browser-polyfill.min.js" : "sha256-r3Hs8qMf7HAcWYBL02LEmCMhQA58KAGTqM0k5o8FIrs=", "browser.js" : "sha256-PZf0mzpYn5Cy58miL/31FCY27kV7cHa3u/QhZoI8Dwo=", "browser.min.js" : "sha256-tXZAk/0SOhp4apYhMKkgP9Oorm/jfbu1Jrpqp9jb9Wg="} | json_instruct | {"type": "object", "properties": {"browser-polyfill.js": {"type": "string"}, "browser-polyfill.min.js": {"type": "string"}, "browser.js": {"type": "string"}, "browser.min.js": {"type": "string"}}, "required": ["browser-polyfill.js", "browser-polyfill.min.js", "browser.js", "browser.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this 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 425 degrees F (220 degrees C). Put butter in a 9x13-inch casserole dish and place in the oven until butter melts and starts to brown, about 5 minutes.", "Place eggs in a blender and pulse until smooth; add coconut milk, arrowroot powder, chestnut flour, lemon extract, stevia powder, and sea salt. Blend until smooth, 45 to 60 seconds. Pour batter over browned butter in the casserole dish.", "Bake in the preheated oven until pancake is set in the middle and edges are lightly browned, about 23 minutes."], "ingredients" : ["1/3 cup butter", "8 eggs", "1 cup coconut milk", "1/3 cup arrowroot powder", "1/4 cup chestnut flour", "1 teaspoon lemon extract", "1 (1 gram) packet stevia powder", "1/2 teaspoon sea salt"], "language" : "en-US", "source" : "allrecipes.com", "tags" : [], "title" : "Grain Free Dutch Babies", "url" : "http://allrecipes.com/recipe/231346/grain-free-dutch-babies/"} | 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": {"name": {"type": "string"}, "image": {"type": "string"}, "settings": {"type": "object", "properties": {"editor.fontFamily": {"type": "string"}, "editor.fontSize": {"type": "integer"}, "editor.letterSpacing": {"type": "number"}, "editor.lineHeight": {"type": "integer"}, "editor.minimap.enabled": {"type": "boolean"}, "terminal.integrated.shell.linux": {"type": "string"}, "workbench.colorTheme": {"type": "string"}}, "required": ["editor.fontFamily", "editor.fontSize", "editor.letterSpacing", "editor.lineHeight", "editor.minimap.enabled", "terminal.integrated.shell.linux", "workbench.colorTheme"]}, "extensions": {"type": "array", "items": {"type": "string"}}, "forwardPorts": {"type": "array", "items": {"type": "integer"}}, "postCreateCommand": {"type": "string"}}, "required": ["name", "image", "settings", "extensions", "forwardPorts", "postCreateCommand"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "jarv.is", "image" : "mcr.microsoft.com/vscode/devcontainers/javascript-node:0-14", "settings" : {"editor.fontFamily" : "'Source Code Pro', Menlo, Monaco, 'Courier New', monospace", "editor.fontSize" : 14, "editor.letterSpacing" : 0.2, "editor.lineHeight" : 23, "editor.minimap.enabled" : false, "terminal.integrated.shell.linux" : "/bin/zsh", "workbench.colorTheme" : "GitHub Dark"}, "extensions" : ["budparr.language-hugo-vscode", "bungcip.better-toml", "dbaeumer.vscode-eslint", "esbenp.prettier-vscode", "stylelint.vscode-stylelint"], "forwardPorts" : [1337], "postCreateCommand" : "yarn install"} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "image": {"type": "string"}, "settings": {"type": "object", "properties": {"editor.fontFamily": {"type": "string"}, "editor.fontSize": {"type": "integer"}, "editor.letterSpacing": {"type": "number"}, "editor.lineHeight": {"type": "integer"}, "editor.minimap.enabled": {"type": "boolean"}, "terminal.integrated.shell.linux": {"type": "string"}, "workbench.colorTheme": {"type": "string"}}, "required": ["editor.fontFamily", "editor.fontSize", "editor.letterSpacing", "editor.lineHeight", "editor.minimap.enabled", "terminal.integrated.shell.linux", "workbench.colorTheme"]}, "extensions": {"type": "array", "items": {"type": "string"}}, "forwardPorts": {"type": "array", "items": {"type": "integer"}}, "postCreateCommand": {"type": "string"}}, "required": ["name", "image", "settings", "extensions", "forwardPorts", "postCreateCommand"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"listen": {"type": "object", "properties": {"ip": {"type": "string"}, "port": {"type": "integer"}}, "required": ["ip", "port"]}, "ews": {"type": "object", "properties": {"username": {"type": "string"}, "password": {"type": "string"}, "host": {"type": "string"}}, "required": ["username", "password", "host"]}}, "required": ["listen", "ews"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"listen" : {"ip" : "0.0.0.0", "port" : 3000}, "ews" : {"username" : "user", "password" : "password", "host" : "https://localhost"}} | json_instruct | {"type": "object", "properties": {"listen": {"type": "object", "properties": {"ip": {"type": "string"}, "port": {"type": "integer"}}, "required": ["ip", "port"]}, "ews": {"type": "object", "properties": {"username": {"type": "string"}, "password": {"type": "string"}, "host": {"type": "string"}}, "required": ["username", "password", "host"]}}, "required": ["listen", "ews"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"index": {"type": "integer"}, "redacted": {"type": "boolean"}, "hash": {"type": "integer"}, "blacklisted": {"type": "boolean"}}, "required": ["index", "redacted", "hash", "blacklisted"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"index" : 2980, "redacted" : false, "hash" : 774666342, "blacklisted" : false} | json_instruct | {"type": "object", "properties": {"index": {"type": "integer"}, "redacted": {"type": "boolean"}, "hash": {"type": "integer"}, "blacklisted": {"type": "boolean"}}, "required": ["index", "redacted", "hash", "blacklisted"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"word" : "kiabooca wood", "definition" : ". See Kyaboca wood."} | json_instruct | {"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"_blockType": {"type": "string"}, "_id": {"type": "string"}, "label": {"type": "string"}, "value": {"type": "string"}}, "required": ["_blockType", "_id", "label", "value"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"_blockType" : "Option", "_id" : "previous-order_contact-adoption", "label" : "A contact or residence order (Section 8 Children Act 1989) made in connection with an Adoption Order", "value" : "yes"} | json_instruct | {"type": "object", "properties": {"_blockType": {"type": "string"}, "_id": {"type": "string"}, "label": {"type": "string"}, "value": {"type": "string"}}, "required": ["_blockType", "_id", "label", "value"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"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": {"hectares": {"type": "string"}, "site": {"type": "string"}, "notes": {"type": "string"}, "planning-permission-type": {"type": "string"}, "ownership-status": {"type": "string"}, "point": {"type": "string"}, "planning-permission-status": {"type": "string"}, "name": {"type": "string"}, "site-address": {"type": "string"}, "organisation": {"type": "string"}, "maximum-net-dwellings": {"type": "string"}, "minimum-net-dwellings": {"type": "string"}, "start-date": {"type": "string"}, "slug": {"type": "string"}, "entity": {"type": "integer"}, "entry-date": {"type": "string"}, "planning-permission-history": {"type": "string"}}, "required": ["hectares", "site", "notes", "planning-permission-type", "ownership-status", "point", "planning-permission-status", "name", "site-address", "organisation", "maximum-net-dwellings", "minimum-net-dwellings", "start-date", "slug", "entity", "entry-date", "planning-permission-history"]}}, "required": ["type", "geometry", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"type" : "Feature", "geometry" : {"type" : "Point", "coordinates" : [-0.036967, 53.565484]}, "properties" : {"hectares" : "3.96", "site" : "BS0005", "notes" : "Site is allocated as housing site HOU034C in the adopted Local Plan (2018).", "planning-permission-type" : "other", "ownership-status" : "owned by a public authority", "point" : "POINT(-0.036967 53.565484)", "planning-permission-status" : "not permissioned", "name" : "BS0005", "site-address" : "Land off Pelham Road, Cleethorpes (2)", "organisation" : "local-authority-eng:NEL", "maximum-net-dwellings" : "118", "minimum-net-dwellings" : "118", "start-date" : "2017-10-18", "slug" : "/brownfield-land/local-authority-eng/NEL/BS0005", "entity" : 488499, "entry-date" : "2017-10-18", "planning-permission-history" : "http://planninganddevelopment.nelincs.gov.uk/online-applications/applicationDetails.do?keyVal=PH1XR8LJL5F00&activeTab=summary"}} | 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": {"hectares": {"type": "string"}, "site": {"type": "string"}, "notes": {"type": "string"}, "planning-permission-type": {"type": "string"}, "ownership-status": {"type": "string"}, "point": {"type": "string"}, "planning-permission-status": {"type": "string"}, "name": {"type": "string"}, "site-address": {"type": "string"}, "organisation": {"type": "string"}, "maximum-net-dwellings": {"type": "string"}, "minimum-net-dwellings": {"type": "string"}, "start-date": {"type": "string"}, "slug": {"type": "string"}, "entity": {"type": "integer"}, "entry-date": {"type": "string"}, "planning-permission-history": {"type": "string"}}, "required": ["hectares", "site", "notes", "planning-permission-type", "ownership-status", "point", "planning-permission-status", "name", "site-address", "organisation", "maximum-net-dwellings", "minimum-net-dwellings", "start-date", "slug", "entity", "entry-date", "planning-permission-history"]}}, "required": ["type", "geometry", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"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"}, "hectares": {"type": "string"}, "planning-permission-status": {"type": "string"}, "start-date": {"type": "string"}, "name": {"type": "string"}, "maximum-net-dwellings": {"type": "string"}, "notes": {"type": "string"}, "site-plan-url": {"type": "string"}, "site": {"type": "string"}, "minimum-net-dwellings": {"type": "string"}, "deliverable": {"type": "string"}, "planning-permission-date": {"type": "string"}, "organisation": {"type": "string"}, "point": {"type": "string"}, "planning-permission-type": {"type": "string"}, "slug": {"type": "string"}, "entity": {"type": "integer"}, "entry-date": {"type": "string"}}, "required": ["site-address", "hectares", "planning-permission-status", "start-date", "name", "maximum-net-dwellings", "notes", "site-plan-url", "site", "minimum-net-dwellings", "deliverable", "planning-permission-date", "organisation", "point", "planning-permission-type", "slug", "entity", "entry-date"]}}, "required": ["type", "geometry", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"type" : "Feature", "geometry" : {"type" : "Point", "coordinates" : [1.088041, 51.270805]}, "properties" : {"site-address" : "2-2A Ethelbert Road, Canterbury, CT1 3NE", "hectares" : "0.06", "planning-permission-status" : "permissioned", "start-date" : "2019-11-01", "name" : "BR-110", "maximum-net-dwellings" : "3", "notes" : "Proposed part 3 and part 4 storey building comprising 10 no. flats with associated parking and external works following demolition of properties.", "site-plan-url" : "https://mapping.canterbury.gov.uk/webapps/Brownfield_Sites/?center=615501,156935,27700&scale=500", "site" : "BR-110", "minimum-net-dwellings" : "3", "deliverable" : "yes", "planning-permission-date" : "2019-05-01", "organisation" : "local-authority-eng:CAT", "point" : "POINT(1.088041 51.270805)", "planning-permission-type" : "full planning permission", "slug" : "/brownfield-land/local-authority-eng/CAT/BR-110", "entity" : 478832, "entry-date" : "2020-12-10"}} | 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"}, "hectares": {"type": "string"}, "planning-permission-status": {"type": "string"}, "start-date": {"type": "string"}, "name": {"type": "string"}, "maximum-net-dwellings": {"type": "string"}, "notes": {"type": "string"}, "site-plan-url": {"type": "string"}, "site": {"type": "string"}, "minimum-net-dwellings": {"type": "string"}, "deliverable": {"type": "string"}, "planning-permission-date": {"type": "string"}, "organisation": {"type": "string"}, "point": {"type": "string"}, "planning-permission-type": {"type": "string"}, "slug": {"type": "string"}, "entity": {"type": "integer"}, "entry-date": {"type": "string"}}, "required": ["site-address", "hectares", "planning-permission-status", "start-date", "name", "maximum-net-dwellings", "notes", "site-plan-url", "site", "minimum-net-dwellings", "deliverable", "planning-permission-date", "organisation", "point", "planning-permission-type", "slug", "entity", "entry-date"]}}, "required": ["type", "geometry", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"name": {"type": "string"}, "skills": {"type": "array", "items": {"type": "string"}}, "cause": {"type": "string"}, "image": {"type": "string"}, "github": {"type": "string"}, "twitter": {"type": "string"}, "linkedin": {"type": "string"}}, "required": ["name", "skills", "cause", "image", "github", "twitter", "linkedin"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "Manan Bedi", "skills" : ["Python", "Machine Learning", "DevOps", "AWS"], "cause" : "Development", "image" : "Avatar5", "github" : "https://github.com/manan-bedi2908", "twitter" : "https://twitter.com/bedi_manan", "linkedin" : "https://www.linkedin.com/in/manan-bedi-20a80a190/"} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "skills": {"type": "array", "items": {"type": "string"}}, "cause": {"type": "string"}, "image": {"type": "string"}, "github": {"type": "string"}, "twitter": {"type": "string"}, "linkedin": {"type": "string"}}, "required": ["name", "skills", "cause", "image", "github", "twitter", "linkedin"], "$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"}, "sass": {"type": "string"}}, "required": ["test", "sass"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"sass": {"type": "string"}, "webpack-dev-server": {"type": "string"}}, "required": ["sass", "webpack-dev-server"]}}, "required": ["name", "version", "description", "main", "scripts", "repository", "keywords", "author", "license", "bugs", "homepage", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "my-team-page-master", "version" : "1.0.0", "description" : "Solucion de challenge frontend, dise\u00f1o tomado de https://devchallenges.io/", "main" : "index.js", "scripts" : {"test" : "echo \"Error: no test specified\" && exit 1", "sass" : "sass --watch scss/styles.scss css/styles.css"}, "repository" : {"type" : "git", "url" : "git+https://github.com/CamiloBeltran24/my-team-page-master.git"}, "keywords" : ["Frontend", "devChallenge", "HTML", "CSS", "JavaScript"], "author" : "Christian Camilo Beltran Fonseca <cambelf.dev@gmail.com>", "license" : "MIT", "bugs" : {"url" : "https://github.com/CamiloBeltran24/my-team-page-master/issues"}, "homepage" : "https://github.com/CamiloBeltran24/my-team-page-master#readme", "devDependencies" : {"sass" : "^1.44.0", "webpack-dev-server" : "^4.6.0"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "sass": {"type": "string"}}, "required": ["test", "sass"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"sass": {"type": "string"}, "webpack-dev-server": {"type": "string"}}, "required": ["sass", "webpack-dev-server"]}}, "required": ["name", "version", "description", "main", "scripts", "repository", "keywords", "author", "license", "bugs", "homepage", "devDependencies"], "$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": {"name": {"type": "string"}, "frequency": {"type": "integer"}, "males": {"type": "string"}, "females": {"type": "string"}}, "required": ["name", "frequency", "males", "females"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"name" : "KIEREN", "frequency" : 615, "males" : "80.97560975609757 %", "females" : "19.024390243902438 %"}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "frequency": {"type": "integer"}, "males": {"type": "string"}, "females": {"type": "string"}}, "required": ["name", "frequency", "males", "females"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"replace": {"type": "boolean"}, "values": {"type": "array", "items": {"type": "string"}}}, "required": ["replace", "values"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"replace" : false, "values" : ["ilikewood:aspen_wall_soul_torch", "ilikewood:baobab_wall_soul_torch", "ilikewood:blue_enchanted_wall_soul_torch", "ilikewood:bulbis_wall_soul_torch", "ilikewood:byg_cherry_wall_soul_torch", "ilikewood:cika_wall_soul_torch", "ilikewood:cypress_wall_soul_torch", "ilikewood:ebony_wall_soul_torch", "ilikewood:embur_wall_soul_torch", "ilikewood:ether_wall_soul_torch", "ilikewood:byg_fir_wall_soul_torch", "ilikewood:green_enchanted_wall_soul_torch", "ilikewood:holly_wall_soul_torch", "ilikewood:imparius_wall_soul_torch", "ilikewood:byg_jacaranda_wall_soul_torch", "ilikewood:lament_wall_soul_torch", "ilikewood:byg_mahogany_wall_soul_torch", "ilikewood:mangrove_wall_soul_torch", "ilikewood:maple_wall_soul_torch", "ilikewood:nightshade_wall_soul_torch", "ilikewood:byg_palm_wall_soul_torch", "ilikewood:pine_wall_soul_torch", "ilikewood:rainbow_eucalyptus_wall_soul_torch", "ilikewood:byg_redwood_wall_soul_torch", "ilikewood:skyris_wall_soul_torch", "ilikewood:sythian_wall_soul_torch", "ilikewood:byg_willow_wall_soul_torch", "ilikewood:witch_hazel_wall_soul_torch", "ilikewood:zelkova_wall_soul_torch"]} | json_instruct | {"type": "object", "properties": {"replace": {"type": "boolean"}, "values": {"type": "array", "items": {"type": "string"}}}, "required": ["replace", "values"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "number"}}}, "required": ["type", "coordinates"]}, "type": {"type": "string"}, "id": {"type": "string"}, "properties": {"type": "object", "properties": {"other_cities": {"type": "string"}, "city": {"type": "string"}, "state": {"type": "string"}, "county": {"type": "string"}}, "required": ["other_cities", "city", "state", "county"]}}, "required": ["geometry", "type", "id", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"geometry" : {"type" : "Point", "coordinates" : [-90.1, 30.55]}, "type" : "Feature", "id" : "70457", "properties" : {"other_cities" : "St Benedict", "city" : "Saint Benedict", "state" : "LA", "county" : "St. Tammany Parish"}} | json_instruct | {"type": "object", "properties": {"geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "number"}}}, "required": ["type", "coordinates"]}, "type": {"type": "string"}, "id": {"type": "string"}, "properties": {"type": "object", "properties": {"other_cities": {"type": "string"}, "city": {"type": "string"}, "state": {"type": "string"}, "county": {"type": "string"}}, "required": ["other_cities", "city", "state", "county"]}}, "required": ["geometry", "type", "id", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"calvert": {"type": "object", "properties": {"base-dir": {"type": "string"}, "site-dirs": {"type": "array", "items": {"type": "string"}}, "destination-dirs": {"type": "array", "items": {"type": "string"}}, "destination-dirs-extra": {"type": "array", "items": {"type": "object", "properties": {"base": {"type": "string"}, "extra": {"type": "string"}}, "required": ["base", "extra"]}}}, "required": ["base-dir", "site-dirs", "destination-dirs", "destination-dirs-extra"]}, "selectedElvenImages": {"type": "array", "items": {"type": "string"}}, "elvenImages": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "baseDir": {"type": "string"}, "cloudPath": {"type": "string"}, "createSmallImages": {"type": "boolean"}}, "required": ["name", "baseDir", "cloudPath", "createSmallImages"]}}}, "required": ["calvert", "selectedElvenImages", "elvenImages"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"calvert" : {"base-dir" : "/home/charlie/", "site-dirs" : ["ElvenImages", "Documents/AllTest", "Git/CloudNotes/Assignments", "Git/CloudNotes/Prog270", "Git/CloudNotes/Isit322"], "destination-dirs" : ["/var/www/html/", "/var/www/html/Assignments/", "/var/www/html/Prog270/", "/var/www/html/Isit322/"], "destination-dirs-extra" : [{"base" : "/var/www/html/", "extra" : ""}, {"base" : "/var/www/html/Assignments/", "extra" : "Assignments"}]}, "selectedElvenImages" : ["california1", "california2"], "elvenImages" : [{"name" : "doc", "baseDir" : "The base directory where the images to be processed are found", "cloudPath" : "If you are on S3, or the like, then where on S3?", "createSmallImages" : true}, {"name" : "california1", "baseDir" : "/var/www/html/images", "cloudPath" : "https://s3.amazonaws.com/s3bucket01.elvenware.com", "createSmallImages" : true}, {"name" : "california2", "baseDir" : "/var/www/html/images", "cloudPath" : "", "createSmallImages" : true}, {"name" : "testImages", "baseDir" : "/home/charlie/Git/writings/Tech/Markdown/", "cloudPath" : "/images", "createSmallImages" : true}]} | json_instruct | {"type": "object", "properties": {"calvert": {"type": "object", "properties": {"base-dir": {"type": "string"}, "site-dirs": {"type": "array", "items": {"type": "string"}}, "destination-dirs": {"type": "array", "items": {"type": "string"}}, "destination-dirs-extra": {"type": "array", "items": {"type": "object", "properties": {"base": {"type": "string"}, "extra": {"type": "string"}}, "required": ["base", "extra"]}}}, "required": ["base-dir", "site-dirs", "destination-dirs", "destination-dirs-extra"]}, "selectedElvenImages": {"type": "array", "items": {"type": "string"}}, "elvenImages": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "baseDir": {"type": "string"}, "cloudPath": {"type": "string"}, "createSmallImages": {"type": "boolean"}}, "required": ["name", "baseDir", "cloudPath", "createSmallImages"]}}}, "required": ["calvert", "selectedElvenImages", "elvenImages"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"instance": {"type": "object", "properties": {"renderTodosOn:": {"type": "string"}, "initialize": {"type": "string"}, "addTodo:": {"type": "string"}, "renderContentOn:": {"type": "string"}, "renderAddNewTodoOn:": {"type": "string"}, "renderFooterOn:": {"type": "string"}, "children": {"type": "string"}, "todos": {"type": "string"}, "updateRoot:": {"type": "string"}}, "required": ["renderTodosOn:", "initialize", "addTodo:", "renderContentOn:", "renderAddNewTodoOn:", "renderFooterOn:", "children", "todos", "updateRoot:"]}, "class": {"type": "object", "properties": {"initialize": {"type": "string"}}, "required": ["initialize"]}}, "required": ["instance", "class"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"instance" : {"renderTodosOn:" : "pmm 8/25/2016 08:54", "initialize" : "pmm 8/25/2016 08:49", "addTodo:" : "JohanBrichau 8/15/2014 16:19", "renderContentOn:" : "pmm 8/25/2016 08:53", "renderAddNewTodoOn:" : "pmm 8/25/2016 08:56", "renderFooterOn:" : "JohanBrichau 8/9/2014 16:39", "children" : "JohanBrichau 8/14/2014 19:20", "todos" : "JohanBrichau 8/10/2014 16:24", "updateRoot:" : "pmm 8/25/2016 10:30"}, "class" : {"initialize" : "pmm 8/25/2016 18:05"}} | json_instruct | {"type": "object", "properties": {"instance": {"type": "object", "properties": {"renderTodosOn:": {"type": "string"}, "initialize": {"type": "string"}, "addTodo:": {"type": "string"}, "renderContentOn:": {"type": "string"}, "renderAddNewTodoOn:": {"type": "string"}, "renderFooterOn:": {"type": "string"}, "children": {"type": "string"}, "todos": {"type": "string"}, "updateRoot:": {"type": "string"}}, "required": ["renderTodosOn:", "initialize", "addTodo:", "renderContentOn:", "renderAddNewTodoOn:", "renderFooterOn:", "children", "todos", "updateRoot:"]}, "class": {"type": "object", "properties": {"initialize": {"type": "string"}}, "required": ["initialize"]}}, "required": ["instance", "class"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"name": {"type": "string"}, "license": {"type": "string"}, "tags": {"type": "array", "items": {"type": "string"}}, "classPath": {"type": "string"}, "contributors": {"type": "array", "items": {"type": "string"}}, "releasenote": {"type": "string"}, "version": {"type": "string"}, "url": {"type": "string"}, "dependencies": {"type": "object", "properties": {"tink_macro": {"type": "string"}, "tink_svgspec": {"type": "string"}}, "required": ["tink_macro", "tink_svgspec"]}}, "required": ["name", "license", "tags", "classPath", "contributors", "releasenote", "version", "url", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "tink_domspec", "license" : "MIT", "tags" : ["dom", "html", "html5", "spec"], "classPath" : "src", "contributors" : ["back2dos"], "releasenote" : "Add initial svg support.", "version" : "0.1.5", "url" : "https://github.com/haxetink/tink_domspec/", "dependencies" : {"tink_macro" : "", "tink_svgspec" : ""}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "license": {"type": "string"}, "tags": {"type": "array", "items": {"type": "string"}}, "classPath": {"type": "string"}, "contributors": {"type": "array", "items": {"type": "string"}}, "releasenote": {"type": "string"}, "version": {"type": "string"}, "url": {"type": "string"}, "dependencies": {"type": "object", "properties": {"tink_macro": {"type": "string"}, "tink_svgspec": {"type": "string"}}, "required": ["tink_macro", "tink_svgspec"]}}, "required": ["name", "license", "tags", "classPath", "contributors", "releasenote", "version", "url", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "number"}}}, "required": ["type", "coordinates"]}, "type": {"type": "string"}, "id": {"type": "string"}, "properties": {"type": "object", "properties": {"other_cities": {"type": "string"}, "city": {"type": "string"}, "state": {"type": "string"}, "county": {"type": "string"}}, "required": ["other_cities", "city", "state", "county"]}}, "required": ["geometry", "type", "id", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"geometry" : {"type" : "Point", "coordinates" : [-91.21, 45.76]}, "type" : "Feature", "id" : "54867", "properties" : {"other_cities" : "", "city" : "Radisson", "state" : "WI", "county" : "Sawyer County"}} | json_instruct | {"type": "object", "properties": {"geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "number"}}}, "required": ["type", "coordinates"]}, "type": {"type": "string"}, "id": {"type": "string"}, "properties": {"type": "object", "properties": {"other_cities": {"type": "string"}, "city": {"type": "string"}, "state": {"type": "string"}, "county": {"type": "string"}}, "required": ["other_cities", "city", "state", "county"]}}, "required": ["geometry", "type", "id", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"text": {"type": "string"}, "url": {"type": "string"}}, "required": ["text", "url"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"text" : " Simplify a rational expression\n\n[imath]\\frac{2 x^{2}+2 x-4}{x^{2}-5 x-14}[/imath]\n\n\n", "url" : "https://www.youtube.com/watch?v=36CjrJf5G5s"} | json_instruct | {"type": "object", "properties": {"text": {"type": "string"}, "url": {"type": "string"}}, "required": ["text", "url"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"id": {"type": "integer"}, "first_name": {"type": "string"}, "last_name": {"type": "string"}, "email": {"type": "string"}, "gender": {"type": "string"}, "ip_address": {"type": "string"}}, "required": ["id", "first_name", "last_name", "email", "gender", "ip_address"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : 12, "first_name" : "Michael", "last_name" : "Adelsberg", "email" : "madelsbergb@unicef.org", "gender" : "Male", "ip_address" : "1.37.36.68"} | json_instruct | {"type": "object", "properties": {"id": {"type": "integer"}, "first_name": {"type": "string"}, "last_name": {"type": "string"}, "email": {"type": "string"}, "gender": {"type": "string"}, "ip_address": {"type": "string"}}, "required": ["id", "first_name", "last_name", "email", "gender", "ip_address"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"relation": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}, "pageTitle": {"type": "string"}, "title": {"type": "string"}, "url": {"type": "string"}, "hasHeader": {"type": "boolean"}, "headerPosition": {"type": "string"}, "tableType": {"type": "string"}, "tableNum": {"type": "integer"}, "s3Link": {"type": "string"}, "recordEndOffset": {"type": "integer"}, "recordOffset": {"type": "integer"}, "tableOrientation": {"type": "string"}, "textBeforeTable": {"type": "string"}, "textAfterTable": {"type": "string"}, "hasKeyColumn": {"type": "boolean"}, "keyColumnIndex": {"type": "integer"}, "headerRowIndex": {"type": "integer"}}, "required": ["relation", "pageTitle", "title", "url", "hasHeader", "headerPosition", "tableType", "tableNum", "s3Link", "recordEndOffset", "recordOffset", "tableOrientation", "textBeforeTable", "textAfterTable", "hasKeyColumn", "keyColumnIndex", "headerRowIndex"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"relation" : [["Author", "Shlomi Fish", "Shlomi Fish"], ["Commit", "a8ae030", "2587d02"], ["Message", "Renamed File-FindLines to Stream-Extract. This is a more appropriate names.", "Add the skeleton."], ["Labels", "", ""], ["Comments", "", ""], ["Approvals", "", ""], ["Date", "2012-01-10", "2012-01-03"]], "pageTitle" : "shlomif / perl-File-Find-Object-Rule / source / File-FindLines / module / ignore.txt \u2014 Bitbucket", "title" : "", "url" : "https://bitbucket.org/shlomif/perl-file-find-object-rule/history-node/a8ae030bf323/File-FindLines/module/ignore.txt?at=default", "hasHeader" : true, "headerPosition" : "FIRST_ROW", "tableType" : "RELATION", "tableNum" : 0, "s3Link" : "common-crawl/crawl-data/CC-MAIN-2015-32/segments/1438042988458.74/warc/CC-MAIN-20150728002308-00035-ip-10-236-191-2.ec2.internal.warc.gz", "recordEndOffset" : 861660560, "recordOffset" : 861644652, "tableOrientation" : "HORIZONTAL", "textBeforeTable" : "perl-File-Find-Object-Rule / File-FindLines / module / ignore.txt History Diff Source is a free Git and Mercurial client for Mac. Atlassian SourceTree is a free Git and Mercurial client for Windows. Atlassian SourceTree Check out in SourceTree data-ssh-url=\"ssh://hg@bitbucket.org/shlomif/perl-file-find-object-rule\"> data-https-url=\"https://bitbucket.org/shlomif/perl-file-find-object-rule\" data-modules=\"components/clone/clone-in-sourcetree\" > value=\"hg pull && hg update [[branchName]]\" Check out this branch on your local machine to begin working on it.", "textAfterTable" : "Blog Support Plans & pricing Documentation API Site status Version info Terms of service Privacy policy English Git 2.1.1 Mercurial 2.9 Django 1.7.8", "hasKeyColumn" : true, "keyColumnIndex" : 2, "headerRowIndex" : 0} | json_instruct | {"type": "object", "properties": {"relation": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}, "pageTitle": {"type": "string"}, "title": {"type": "string"}, "url": {"type": "string"}, "hasHeader": {"type": "boolean"}, "headerPosition": {"type": "string"}, "tableType": {"type": "string"}, "tableNum": {"type": "integer"}, "s3Link": {"type": "string"}, "recordEndOffset": {"type": "integer"}, "recordOffset": {"type": "integer"}, "tableOrientation": {"type": "string"}, "textBeforeTable": {"type": "string"}, "textAfterTable": {"type": "string"}, "hasKeyColumn": {"type": "boolean"}, "keyColumnIndex": {"type": "integer"}, "headerRowIndex": {"type": "integer"}}, "required": ["relation", "pageTitle", "title", "url", "hasHeader", "headerPosition", "tableType", "tableNum", "s3Link", "recordEndOffset", "recordOffset", "tableOrientation", "textBeforeTable", "textAfterTable", "hasKeyColumn", "keyColumnIndex", "headerRowIndex"], "$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"}, "rarity": {"type": "string"}, "category": {"type": "string"}, "defense": {"type": "integer"}, "true_defense": {"type": "integer"}, "type": {"type": "string"}}, "required": ["name", "rarity", "category", "defense", "true_defense", "type"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "rock_pet", "rarity" : "epic", "category" : "mining", "defense" : 200, "true_defense" : 10, "type" : "pet"} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "rarity": {"type": "string"}, "category": {"type": "string"}, "defense": {"type": "integer"}, "true_defense": {"type": "integer"}, "type": {"type": "string"}}, "required": ["name", "rarity", "category", "defense", "true_defense", "type"], "$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": {"Name": {"type": "string"}, "Description": {"type": "string"}, "Tags": {"type": "array", "items": {"type": "string"}}, "Website": {"type": "string"}, "Versions": {"type": "array", "items": {"type": "object", "properties": {"Version": {"type": "string"}, "Url": {"type": "string"}, "Require": {"type": "object", "properties": {"micro": {"type": "string"}}, "required": ["micro"]}}, "required": ["Version", "Url", "Require"]}}}, "required": ["Name", "Description", "Tags", "Website", "Versions"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"Name" : "goabbrevs", "Description" : "Go language abbreviations", "Tags" : ["go", "golang"], "Website" : "https://github.com/serve-v/goabbrevs", "Versions" : [{"Version" : "2.0.1", "Url" : "https://github.com/serge-v/goabbrevs/archive/v2.0.1.zip", "Require" : {"micro" : ">=2.0.0-1"}}]}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"Name": {"type": "string"}, "Description": {"type": "string"}, "Tags": {"type": "array", "items": {"type": "string"}}, "Website": {"type": "string"}, "Versions": {"type": "array", "items": {"type": "object", "properties": {"Version": {"type": "string"}, "Url": {"type": "string"}, "Require": {"type": "object", "properties": {"micro": {"type": "string"}}, "required": ["micro"]}}, "required": ["Version", "Url", "Require"]}}}, "required": ["Name", "Description", "Tags", "Website", "Versions"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"version": {"type": "string"}, "flags": {"type": "object", "properties": {}, "required": []}, "shapes": {"type": "array", "items": {"type": "object", "properties": {"label": {"type": "string"}, "points": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}, "group_id": {"type": "null"}, "shape_type": {"type": "string"}, "flags": {"type": "object", "properties": {}, "required": []}}, "required": ["label", "points", "group_id", "shape_type", "flags"]}}, "imagePath": {"type": "string"}, "imageData": {"type": "null"}, "imageHeight": {"type": "integer"}, "imageWidth": {"type": "integer"}}, "required": ["version", "flags", "shapes", "imagePath", "imageData", "imageHeight", "imageWidth"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"version" : "4.2.10", "flags" : {}, "shapes" : [{"label" : "Defect", "points" : [[80.28571428571429, 42.71428571428571], [100.85714285714286, 37.28571428571429], [110.57142857142857, 46.42857142857143], [102.57142857142857, 59.0], [85.71428571428571, 56.42857142857143]], "group_id" : null, "shape_type" : "polygon", "flags" : {}}, {"label" : "Defect", "points" : [[29.428571428571427, 78.42857142857143], [141.14285714285714, 65.85714285714286], [82.28571428571429, 81.57142857142857], [86.0, 88.14285714285714], [109.42857142857143, 88.42857142857143], [139.71428571428572, 84.14285714285714], [145.71428571428572, 90.14285714285714], [30.285714285714285, 103.57142857142858]], "group_id" : null, "shape_type" : "polygon", "flags" : {}}], "imagePath" : "..\\im\\42.jpg", "imageData" : null, "imageHeight" : 200, "imageWidth" : 200} | json_instruct | {"type": "object", "properties": {"version": {"type": "string"}, "flags": {"type": "object", "properties": {}, "required": []}, "shapes": {"type": "array", "items": {"type": "object", "properties": {"label": {"type": "string"}, "points": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}, "group_id": {"type": "null"}, "shape_type": {"type": "string"}, "flags": {"type": "object", "properties": {}, "required": []}}, "required": ["label", "points", "group_id", "shape_type", "flags"]}}, "imagePath": {"type": "string"}, "imageData": {"type": "null"}, "imageHeight": {"type": "integer"}, "imageWidth": {"type": "integer"}}, "required": ["version", "flags", "shapes", "imagePath", "imageData", "imageHeight", "imageWidth"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.