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": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "homepage": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "license": {"type": "string"}, "author": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}, "url": {"type": "string"}}, "required": ["name", "email", "url"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "bin": {"type": "object", "properties": {"jp-babel": {"type": "string"}, "jp-babel-console": {"type": "string"}, "jp-babel-install": {"type": "string"}, "jp-babel-notebook": {"type": "string"}, "jp-babel-kernel": {"type": "string"}}, "required": ["jp-babel", "jp-babel-console", "jp-babel-install", "jp-babel-notebook", "jp-babel-kernel"]}, "dependencies": {"type": "object", "properties": {"@babel/core": {"type": "string"}, "@babel/preset-env": {"type": "string"}, "@babel/register": {"type": "string"}, "jp-kernel": {"type": "string"}}, "required": ["@babel/core", "@babel/preset-env", "@babel/register", "jp-kernel"]}, "devDependencies": {"type": "object", "properties": {"debug": {"type": "string"}, "eslint": {"type": "string"}, "jsdoc": {"type": "string"}}, "required": ["debug", "eslint", "jsdoc"]}, "engines": {"type": "object", "properties": {"node": {"type": "string"}}, "required": ["node"]}, "scripts": {"type": "object", "properties": {"doc": {"type": "string"}, "lint": {"type": "string"}, "test": {"type": "string"}}, "required": ["doc", "lint", "test"]}}, "required": ["name", "version", "description", "keywords", "homepage", "bugs", "license", "author", "repository", "bin", "dependencies", "devDependencies", "engines", "scripts"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "jp-babel", "version" : "2.1.0", "description" : "jp-babel is a babel kernel for the Jupyter notebook", "keywords" : ["javascript", "babel", "kernel", "jupyter"], "homepage" : "https://github.com/n-riesco/jp-babel", "bugs" : {"url" : "https://github.com/n-riesco/jp-babel/issues"}, "license" : "BSD-3-Clause", "author" : {"name" : "Nicolas Riesco", "email" : "enquiries@nicolasriesco.net", "url" : "http://www.nicolasriesco.net/"}, "repository" : {"type" : "git", "url" : "https://github.com/n-riesco/jp-babel.git"}, "bin" : {"jp-babel" : "bin/jp-babel.js", "jp-babel-console" : "bin/jp-babel-console.js", "jp-babel-install" : "bin/jp-babel-install.js", "jp-babel-notebook" : "bin/jp-babel-notebook.js", "jp-babel-kernel" : "lib/kernel.js"}, "dependencies" : {"@babel/core" : "7", "@babel/preset-env" : "7", "@babel/register" : "7", "jp-kernel" : "2"}, "devDependencies" : {"debug" : "2", "eslint" : "2", "jsdoc" : "3"}, "engines" : {"node" : ">=6.9.0"}, "scripts" : {"doc" : "jsdoc -R README.md -d docs bin lib", "lint" : "eslint bin lib test", "test" : "npm run lint && node test/index.js"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "homepage": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "license": {"type": "string"}, "author": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}, "url": {"type": "string"}}, "required": ["name", "email", "url"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "bin": {"type": "object", "properties": {"jp-babel": {"type": "string"}, "jp-babel-console": {"type": "string"}, "jp-babel-install": {"type": "string"}, "jp-babel-notebook": {"type": "string"}, "jp-babel-kernel": {"type": "string"}}, "required": ["jp-babel", "jp-babel-console", "jp-babel-install", "jp-babel-notebook", "jp-babel-kernel"]}, "dependencies": {"type": "object", "properties": {"@babel/core": {"type": "string"}, "@babel/preset-env": {"type": "string"}, "@babel/register": {"type": "string"}, "jp-kernel": {"type": "string"}}, "required": ["@babel/core", "@babel/preset-env", "@babel/register", "jp-kernel"]}, "devDependencies": {"type": "object", "properties": {"debug": {"type": "string"}, "eslint": {"type": "string"}, "jsdoc": {"type": "string"}}, "required": ["debug", "eslint", "jsdoc"]}, "engines": {"type": "object", "properties": {"node": {"type": "string"}}, "required": ["node"]}, "scripts": {"type": "object", "properties": {"doc": {"type": "string"}, "lint": {"type": "string"}, "test": {"type": "string"}}, "required": ["doc", "lint", "test"]}}, "required": ["name", "version", "description", "keywords", "homepage", "bugs", "license", "author", "repository", "bin", "dependencies", "devDependencies", "engines", "scripts"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"timer.jquery.js": {"type": "string"}, "timer.jquery.min.js": {"type": "string"}}, "required": ["timer.jquery.js", "timer.jquery.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"timer.jquery.js" : "sha512-bDGeeOYbN7BxxWaB5AEF/KZ39uNq/r3Xrdxu53/bbHrsby+yu8B4N7ekTFAtrYo4OCVREwP8UBGvms1CP9Fp8A==", "timer.jquery.min.js" : "sha512-lL79hvy/wnaVlqtGfY/2EeSwH6KU5irnsY0GzzdsyNF30zaN+PTLidywi5OfuiqqsvdXJM1HcSJHdtqeXzIB0A=="} | json_instruct | {"type": "object", "properties": {"timer.jquery.js": {"type": "string"}, "timer.jquery.min.js": {"type": "string"}}, "required": ["timer.jquery.js", "timer.jquery.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"name": {"type": "string"}, "author": {"type": "string"}, "description": {"type": "string"}, "version": {"type": "string"}, "homepage": {"type": "string"}, "main": {"type": "array", "items": {"type": "string"}}, "dependencies": {"type": "object", "properties": {"angular": {"type": "string"}, "font-awesome": {"type": "string"}, "jquery": {"type": "string"}, "bootstrap": {"type": "string"}}, "required": ["angular", "font-awesome", "jquery", "bootstrap"]}}, "required": ["name", "author", "description", "version", "homepage", "main", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "angular-minieditor", "author" : "Jerry Hsia", "description" : "A mini text editor for angularjs", "version" : "1.0.1", "homepage" : "https://github.com/jerryhsia/angular-minieditor", "main" : ["./angular-minieditor.js", "./angular-minieditor.css"], "dependencies" : {"angular" : ">= 1.0.0", "font-awesome" : ">= 4.0.0", "jquery" : ">= 1.11.0", "bootstrap" : ">= 3.0.0"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "author": {"type": "string"}, "description": {"type": "string"}, "version": {"type": "string"}, "homepage": {"type": "string"}, "main": {"type": "array", "items": {"type": "string"}}, "dependencies": {"type": "object", "properties": {"angular": {"type": "string"}, "font-awesome": {"type": "string"}, "jquery": {"type": "string"}, "bootstrap": {"type": "string"}}, "required": ["angular", "font-awesome", "jquery", "bootstrap"]}}, "required": ["name", "author", "description", "version", "homepage", "main", "dependencies"], "$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"}, "summary": {"type": "string"}, "description": {"type": "string"}, "homepage": {"type": "string"}, "license": {"type": "object", "properties": {"type": {"type": "string"}, "file": {"type": "string"}}, "required": ["type", "file"]}, "authors": {"type": "object", "properties": {"Sapozhnik Ivan": {"type": "string"}}, "required": ["Sapozhnik Ivan"]}, "source": {"type": "object", "properties": {"git": {"type": "string"}, "tag": {"type": "string"}}, "required": ["git", "tag"]}, "platforms": {"type": "object", "properties": {"ios": {"type": "string"}}, "required": ["ios"]}, "source_files": {"type": "string"}, "resource_bundles": {"type": "object", "properties": {"LoadingViewController": {"type": "array", "items": {"type": "string"}}}, "required": ["LoadingViewController"]}}, "required": ["name", "version", "summary", "description", "homepage", "license", "authors", "source", "platforms", "source_files", "resource_bundles"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "LoadingViewController", "version" : "0.1.4", "summary" : "LoadingViewController is a component for changing controller views: content -> loading -> content or content -> loading -> error.", "description" : "LoadingViewController is able to switch from ContentView to LoadingView and then back to ContentView. LoadingView is represented by activity indicators of different types (just a normal UIActivityIndicatorView, spinned circles etc.)", "homepage" : "https://github.com/iSapozhnik/LoadingViewController", "license" : {"type" : "MIT", "file" : "LICENSE"}, "authors" : {"Sapozhnik Ivan" : "sapozhnik.ivan@gmail.com"}, "source" : {"git" : "https://github.com/iSapozhnik/LoadingViewController.git", "tag" : "0.1.4"}, "platforms" : {"ios" : "8.0"}, "source_files" : "LoadingViewController/Classes/**/*", "resource_bundles" : {"LoadingViewController" : ["LoadingViewController/Assets/*.png"]}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "summary": {"type": "string"}, "description": {"type": "string"}, "homepage": {"type": "string"}, "license": {"type": "object", "properties": {"type": {"type": "string"}, "file": {"type": "string"}}, "required": ["type", "file"]}, "authors": {"type": "object", "properties": {"Sapozhnik Ivan": {"type": "string"}}, "required": ["Sapozhnik Ivan"]}, "source": {"type": "object", "properties": {"git": {"type": "string"}, "tag": {"type": "string"}}, "required": ["git", "tag"]}, "platforms": {"type": "object", "properties": {"ios": {"type": "string"}}, "required": ["ios"]}, "source_files": {"type": "string"}, "resource_bundles": {"type": "object", "properties": {"LoadingViewController": {"type": "array", "items": {"type": "string"}}}, "required": ["LoadingViewController"]}}, "required": ["name", "version", "summary", "description", "homepage", "license", "authors", "source", "platforms", "source_files", "resource_bundles"], "$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"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "description": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "main": {"type": "string"}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}}, "required": ["start"]}, "homepage": {"type": "string"}, "dependencies": {"type": "object", "properties": {"prop-types": {"type": "string"}, "react-native-vector-icons": {"type": "string"}}, "required": ["prop-types", "react-native-vector-icons"]}}, "required": ["name", "version", "repository", "description", "keywords", "main", "author", "license", "bugs", "scripts", "homepage", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "react-native-simple-card-view", "version" : "0.3.0", "repository" : {"type" : "git", "url" : "https://github.com/talut/react-native-simple-card-view.git"}, "description" : "Easiest way to add a card view on your screen.", "keywords" : ["react-native", "card-view", "card-view-icon", "card-view-image", "react-native-card", "card"], "main" : "index.js", "author" : "Talut Tasgiran", "license" : "MIT", "bugs" : {"url" : "https://github.com/talut/react-native-simple-card-view/issues"}, "scripts" : {"start" : "node node_modules/react-native/local-cli/cli.js start"}, "homepage" : "https://github.com/talut/react-native-simple-card-view", "dependencies" : {"prop-types" : "^15.6.0", "react-native-vector-icons" : "^6.6.0"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "description": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "main": {"type": "string"}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}}, "required": ["start"]}, "homepage": {"type": "string"}, "dependencies": {"type": "object", "properties": {"prop-types": {"type": "string"}, "react-native-vector-icons": {"type": "string"}}, "required": ["prop-types", "react-native-vector-icons"]}}, "required": ["name", "version", "repository", "description", "keywords", "main", "author", "license", "bugs", "scripts", "homepage", "dependencies"], "$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"}, "keywords": {"type": "array", "items": {}}, "author": {"type": "string"}, "license": {"type": "string"}, "browserify": {"type": "object", "properties": {"transform": {"type": "array", "items": {"type": "string"}}}, "required": ["transform"]}}, "required": ["name", "version", "description", "main", "keywords", "author", "license", "browserify"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "org-async-actions", "version" : "1.0.0", "description" : "Redux middleware with runtime typechecks for asynchronous requests and responses", "main" : "src/index.js", "keywords" : [], "author" : "Patrick Golden <ptgolden@email.unc.edu>", "license" : "CC0", "browserify" : {"transform" : ["envify"]}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "keywords": {"type": "array", "items": {}}, "author": {"type": "string"}, "license": {"type": "string"}, "browserify": {"type": "object", "properties": {"transform": {"type": "array", "items": {"type": "string"}}}, "required": ["transform"]}}, "required": ["name", "version", "description", "main", "keywords", "author", "license", "browserify"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"type": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}}, "required": ["type", "coordinates"]}, "properties": {"type": "object", "properties": {"geometry": {"type": "string"}, "organisation": {"type": "string"}, "reference": {"type": "string"}, "geography": {"type": "string"}, "name": {"type": "string"}, "slug": {"type": "string"}, "entity": {"type": "integer"}, "entry-date": {"type": "string"}}, "required": ["geometry", "organisation", "reference", "geography", "name", "slug", "entity", "entry-date"]}}, "required": ["type", "geometry", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"type" : "Feature", "geometry" : {"type" : "MultiPolygon", "coordinates" : [[[[-0.368989, 51.576953], [-0.368541, 51.576792], [-0.369667, 51.575513], [-0.370125, 51.575627], [-0.369924, 51.575907], [-0.368989, 51.576953]]]]}, "properties" : {"geometry" : "MULTIPOLYGON (((-0.368989 51.576953,-0.368541 51.576792,-0.369667 51.575513,-0.370125 51.575627,-0.369924 51.575907,-0.368989 51.576953)))", "organisation" : "local-authority-eng:HRW", "reference" : "P/4809/16", "geography" : "brownfield-site:P/4809/16", "name" : "Imperial Drive, 175 - 205, Imperial House, Rayners Lane", "slug" : "/brownfield-site/local-authority-eng/HRW/P-4809-16", "entity" : 510296, "entry-date" : "2020-12-22"}} | 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": "array", "items": {"type": "number"}}}}}}, "required": ["type", "coordinates"]}, "properties": {"type": "object", "properties": {"geometry": {"type": "string"}, "organisation": {"type": "string"}, "reference": {"type": "string"}, "geography": {"type": "string"}, "name": {"type": "string"}, "slug": {"type": "string"}, "entity": {"type": "integer"}, "entry-date": {"type": "string"}}, "required": ["geometry", "organisation", "reference", "geography", "name", "slug", "entity", "entry-date"]}}, "required": ["type", "geometry", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"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" : "fixes #22822\r\n\r\nWhen preparing stages etc. we expect the command to decompress an archive to write its output in the current working directory. This is not the case for `gunzip` that instead works in place by default. Here we solve the issue by substituting a system call with the use of the `gzip` module from the Python standard library.", "user" : "alalazo", "url" : "https://api.github.com/repos/spack/spack/issues/22823", "updated_at" : "2021-04-28 15:01:04", "created_at" : "2021-04-07 09:38:57", "closed_at" : "2021-04-28 15:00:59", "state" : "closed", "title" : "Make Spack able to apply gz compressed remote patches", "number" : 22823, "milestone" : null, "labels" : ["patch", "bugfix"], "id" : 852221759, "html_url" : "https://github.com/spack/spack/pull/22823", "assignees" : [], "comments" : 7} | 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": {"83729": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "60167": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "60176": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "60146": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "60135": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "60159": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}}, "required": ["83729", "60167", "60176", "60146", "60135", "60159"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"83729" : {"nama" : "KEPULAUAN KARIMATA", "dapil" : [61, 6101, 16108, 2611102]}, "60167" : {"nama" : "PULAU MAYA", "dapil" : [61, 6101, 16108, 2611102]}, "60176" : {"nama" : "SEPONTI", "dapil" : [61, 6101, 16108, 2611103]}, "60146" : {"nama" : "SIMPANG HILIR", "dapil" : [61, 6101, 16108, 2611104]}, "60135" : {"nama" : "SUKADANA", "dapil" : [61, 6101, 16108, 2611101]}, "60159" : {"nama" : "TELUK BATANG", "dapil" : [61, 6101, 16108, 2611103]}} | json_instruct | {"type": "object", "properties": {"83729": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "60167": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "60176": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "60146": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "60135": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "60159": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}}, "required": ["83729", "60167", "60176", "60146", "60135", "60159"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "dependencies": {"type": "object", "properties": {"botkit": {"type": "string"}, "request": {"type": "string"}, "tap": {"type": "string"}}, "required": ["botkit", "request", "tap"]}}, "required": ["name", "version", "description", "main", "scripts", "repository", "author", "license", "bugs", "homepage", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "logtacts-bot", "version" : "0.0.1", "description" : "A bot for talking to logtacts", "main" : "bot.js", "scripts" : {"test" : "tap test.js"}, "repository" : {"type" : "git", "url" : "git+https://github.com/phildini/logtacts-bot.git"}, "author" : "Philip James", "license" : "ISC", "bugs" : {"url" : "https://github.com/phildini/logtacts-bot/issues"}, "homepage" : "https://github.com/phildini/logtacts-bot#readme", "dependencies" : {"botkit" : "0.0.4", "request" : "^2.67.0", "tap" : "^4.0.0"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "dependencies": {"type": "object", "properties": {"botkit": {"type": "string"}, "request": {"type": "string"}, "tap": {"type": "string"}}, "required": ["botkit", "request", "tap"]}}, "required": ["name", "version", "description", "main", "scripts", "repository", "author", "license", "bugs", "homepage", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"user": {"type": "string"}, "repos": {"type": "integer"}, "login": {"type": "string"}, "id": {"type": "integer"}, "avatar_url": {"type": "string"}, "url": {"type": "string"}, "html_url": {"type": "string"}, "followers_url": {"type": "string"}, "following_url": {"type": "string"}, "gists_url": {"type": "string"}, "starred_url": {"type": "string"}, "subscriptions_url": {"type": "string"}, "organizations_url": {"type": "string"}, "repos_url": {"type": "string"}, "events_url": {"type": "string"}, "received_events_url": {"type": "string"}, "type": {"type": "string"}, "site_admin": {"type": "boolean"}, "name": {"type": "string"}, "company": {"type": "null"}, "blog": {"type": "string"}, "location": {"type": "string"}, "email": {"type": "string"}, "hireable": {"type": "null"}, "bio": {"type": "string"}, "public_repos": {"type": "integer"}, "public_gists": {"type": "integer"}, "followers": {"type": "integer"}, "following": {"type": "integer"}, "created_at": {"type": "string"}, "updated_at": {"type": "string"}}, "required": ["user", "repos", "login", "id", "avatar_url", "url", "html_url", "followers_url", "following_url", "gists_url", "starred_url", "subscriptions_url", "organizations_url", "repos_url", "events_url", "received_events_url", "type", "site_admin", "name", "company", "blog", "location", "email", "hireable", "bio", "public_repos", "public_gists", "followers", "following", "created_at", "updated_at"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"user" : "Artoria2e5", "repos" : 1, "login" : "Artoria2e5", "id" : 6459309, "avatar_url" : "https://avatars1.githubusercontent.com/u/6459309?v=3", "url" : "https://api.github.com/users/Artoria2e5", "html_url" : "https://github.com/Artoria2e5", "followers_url" : "https://api.github.com/users/Artoria2e5/followers", "following_url" : "https://api.github.com/users/Artoria2e5/following{/other_user}", "gists_url" : "https://api.github.com/users/Artoria2e5/gists{/gist_id}", "starred_url" : "https://api.github.com/users/Artoria2e5/starred{/owner}{/repo}", "subscriptions_url" : "https://api.github.com/users/Artoria2e5/subscriptions", "organizations_url" : "https://api.github.com/users/Artoria2e5/orgs", "repos_url" : "https://api.github.com/users/Artoria2e5/repos", "events_url" : "https://api.github.com/users/Artoria2e5/events{/privacy}", "received_events_url" : "https://api.github.com/users/Artoria2e5/received_events", "type" : "User", "site_admin" : false, "name" : "Mingye Wang", "company" : null, "blog" : "https://zh.wikipedia.org/wiki/User:Artoria2e5", "location" : "Greenwich, CT, USA", "email" : "arthur200126@gmail.com", "hireable" : null, "bio" : "I sleep randomly. they/them (singular if normal else plural).", "public_repos" : 199, "public_gists" : 32, "followers" : 102, "following" : 45, "created_at" : "2014-01-21T10:33:21Z", "updated_at" : "2017-02-03T00:36:04Z"} | json_instruct | {"type": "object", "properties": {"user": {"type": "string"}, "repos": {"type": "integer"}, "login": {"type": "string"}, "id": {"type": "integer"}, "avatar_url": {"type": "string"}, "url": {"type": "string"}, "html_url": {"type": "string"}, "followers_url": {"type": "string"}, "following_url": {"type": "string"}, "gists_url": {"type": "string"}, "starred_url": {"type": "string"}, "subscriptions_url": {"type": "string"}, "organizations_url": {"type": "string"}, "repos_url": {"type": "string"}, "events_url": {"type": "string"}, "received_events_url": {"type": "string"}, "type": {"type": "string"}, "site_admin": {"type": "boolean"}, "name": {"type": "string"}, "company": {"type": "null"}, "blog": {"type": "string"}, "location": {"type": "string"}, "email": {"type": "string"}, "hireable": {"type": "null"}, "bio": {"type": "string"}, "public_repos": {"type": "integer"}, "public_gists": {"type": "integer"}, "followers": {"type": "integer"}, "following": {"type": "integer"}, "created_at": {"type": "string"}, "updated_at": {"type": "string"}}, "required": ["user", "repos", "login", "id", "avatar_url", "url", "html_url", "followers_url", "following_url", "gists_url", "starred_url", "subscriptions_url", "organizations_url", "repos_url", "events_url", "received_events_url", "type", "site_admin", "name", "company", "blog", "location", "email", "hireable", "bio", "public_repos", "public_gists", "followers", "following", "created_at", "updated_at"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [[6, 1, 7, 2], [10, 4, 11, 3], [12, 10, 13, 9], [18, 15, 19, 16], [16, 7, 17, 8], [8, 17, 9, 18], [22, 20, 5, 19], [20, 14, 21, 13], [14, 22, 15, 21], [2, 5, 3, 6], [4, 12, 1, 11]] | json_instruct | {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"preIds": {"type": "string"}, "id": {"type": "string"}, "amountDif": {"type": "integer"}}, "required": ["preIds", "id", "amountDif"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"preIds" : "MILK100", "id" : "CHEESE102", "amountDif" : -100} | json_instruct | {"type": "object", "properties": {"preIds": {"type": "string"}, "id": {"type": "string"}, "amountDif": {"type": "integer"}}, "required": ["preIds", "id", "amountDif"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"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-08T15:00:00Z", "Temp" : 18.6, "RelHum" : 79, "WindSpeed" : 2.2, "WindDir" : 300} | json_instruct | {"type": "object", "properties": {"Time": {"type": "string"}, "Temp": {"type": "number"}, "RelHum": {"type": "integer"}, "WindSpeed": {"type": "number"}, "WindDir": {"type": "integer"}}, "required": ["Time", "Temp", "RelHum", "WindSpeed", "WindDir"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"express": {"type": "string"}, "mongoose": {"type": "string"}}, "required": ["express", "mongoose"]}}, "required": ["name", "version", "description", "main", "scripts", "keywords", "author", "license", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "express-to-moscow", "version" : "0.0.2", "description" : "Gestion tickets del transiberiano", "main" : "server.js", "scripts" : {"test" : "echo \"Error: no test specified\" && exit 1"}, "keywords" : ["transiberiano", "tickets"], "author" : "DAW", "license" : "MIT", "dependencies" : {"express" : "^4.16.4", "mongoose" : "^5.3.6"}} | 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"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"express": {"type": "string"}, "mongoose": {"type": "string"}}, "required": ["express", "mongoose"]}}, "required": ["name", "version", "description", "main", "scripts", "keywords", "author", "license", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"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" : [-121.63, 45.43]}, "type" : "Feature", "id" : "97041", "properties" : {"other_cities" : "Mt Hood Prkdl", "city" : "Mount Hood Parkdale", "state" : "OR", "county" : "Hood River 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#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"version": {"type": "string"}, "model": {"type": "string"}, "textures": {"type": "array", "items": {"type": "string"}}, "layout": {"type": "object", "properties": {"center_x": {"type": "number"}, "center_y": {"type": "number"}, "width": {"type": "number"}}, "required": ["center_x", "center_y", "width"]}, "motions": {"type": "object", "properties": {"tap": {"type": "array", "items": {"type": "object", "properties": {"file": {"type": "string"}}, "required": ["file"]}}}, "required": ["tap"]}, "expressions": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "file": {"type": "string"}}, "required": ["name", "file"]}}, "physics": {"type": "string"}}, "required": ["version", "model", "textures", "layout", "motions", "expressions", "physics"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"version" : "Live2DViewerEX Config 1.0", "model" : "kanzaki.moc", "textures" : ["kanzaki.1024/texture_00.png", "kanzaki.1024/texture_01.png", "kanzaki.1024/texture_02.png"], "layout" : {"center_x" : 0.0, "center_y" : -0.25, "width" : 2.6}, "motions" : {"tap" : [{"file" : "motions/tap/motion1.mtn"}, {"file" : "motions/tap/motion2.mtn"}, {"file" : "motions/tap/motion3.mtn"}, {"file" : "motions/tap/motion4.mtn"}, {"file" : "motions/tap/motion5.mtn"}, {"file" : "motions/tap/motion6.mtn"}, {"file" : "motions/tap/motion7.mtn"}]}, "expressions" : [{"name" : "f01.exp.json", "file" : "expressions/f01.exp.json"}, {"name" : "f02.exp.json", "file" : "expressions/f02.exp.json"}, {"name" : "f03.exp.json", "file" : "expressions/f03.exp.json"}, {"name" : "f04.exp.json", "file" : "expressions/f04.exp.json"}, {"name" : "f05.exp.json", "file" : "expressions/f05.exp.json"}, {"name" : "f06.exp.json", "file" : "expressions/f06.exp.json"}, {"name" : "f07.exp.json", "file" : "expressions/f07.exp.json"}, {"name" : "f08.exp.json", "file" : "expressions/f08.exp.json"}], "physics" : "physics.json"} | json_instruct | {"type": "object", "properties": {"version": {"type": "string"}, "model": {"type": "string"}, "textures": {"type": "array", "items": {"type": "string"}}, "layout": {"type": "object", "properties": {"center_x": {"type": "number"}, "center_y": {"type": "number"}, "width": {"type": "number"}}, "required": ["center_x", "center_y", "width"]}, "motions": {"type": "object", "properties": {"tap": {"type": "array", "items": {"type": "object", "properties": {"file": {"type": "string"}}, "required": ["file"]}}}, "required": ["tap"]}, "expressions": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "file": {"type": "string"}}, "required": ["name", "file"]}}, "physics": {"type": "string"}}, "required": ["version", "model", "textures", "layout", "motions", "expressions", "physics"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"<page title>": {"type": "string"}, "brand": {"type": "string"}, "bundled items": {"type": "string"}, "manufacturer warranty": {"type": "string"}, "megapixels": {"type": "string"}, "model": {"type": "string"}, "mpn": {"type": "string"}, "optical zoom": {"type": "string"}, "screen size": {"type": "string"}, "type": {"type": "string"}}, "required": ["<page title>", "brand", "bundled items", "manufacturer warranty", "megapixels", "model", "mpn", "optical zoom", "screen size", "type"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"<page title>" : "Kodak DC 5000 Zoom 2 1 MP Digital Camera Black Metallic Silver | eBay", "brand" : "Kodak", "bundled items" : "Case or Bag, Memory Card, Strap (Neck or Wrist)", "manufacturer warranty" : "No", "megapixels" : "2.1 MP", "model" : "5000 Zoom", "mpn" : "136-0908", "optical zoom" : "2x", "screen size" : "1.8\"", "type" : "Point & Shoot"} | json_instruct | {"type": "object", "properties": {"<page title>": {"type": "string"}, "brand": {"type": "string"}, "bundled items": {"type": "string"}, "manufacturer warranty": {"type": "string"}, "megapixels": {"type": "string"}, "model": {"type": "string"}, "mpn": {"type": "string"}, "optical zoom": {"type": "string"}, "screen size": {"type": "string"}, "type": {"type": "string"}}, "required": ["<page title>", "brand", "bundled items", "manufacturer warranty", "megapixels", "model", "mpn", "optical zoom", "screen size", "type"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"logs": {"type": "array", "items": {"type": "object", "properties": {"outputFile": {"type": "string"}, "map": {"type": "array", "items": {"type": "object", "properties": {"source": {"type": "string"}, "from": {"type": "object", "properties": {"startLines": {"type": "string"}, "startColumns": {"type": "string"}, "startOffsets": {"type": "string"}, "endColumns": {"type": "string"}, "endOffsets": {"type": "string"}}, "required": ["startLines", "startColumns", "startOffsets", "endColumns", "endOffsets"]}}, "required": ["source", "from"]}}}, "required": ["outputFile", "map"]}}}, "required": ["logs"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"logs" : [{"outputFile" : "D:\\0-programming\\4-android HMS\\CodeLab_Push_Demo\\app\\build\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-b+my+Qaag\\values-b+my+Qaag.xml", "map" : [{"source" : "C:\\Users\\bwx901761\\.gradle\\caches\\transforms-2\\files-2.1\\a678fab9b073d5598dcc16b8ff053a91\\base-4.0.0.300\\res\\values-b+my+Qaag\\values-b+my+Qaag.xml", "from" : {"startLines" : "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48", "startColumns" : "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", "startOffsets" : "55,121,215,549,617,737,845,939,1009,1161,1281,1407,1546,1633,1726,1805,1874,2034,2109,2180,2255,2444,2595,2725,2825,2929,3022,3099,3178,3246,3354,3498,3657,3745,3922,4044,4207,4276,4353,4432,4519,4600,4672,4799,4914,5017,5137", "endColumns" : "65,93,333,67,119,107,93,69,151,119,125,138,86,92,78,68,159,74,70,74,188,150,129,99,103,92,76,78,67,107,143,158,87,176,121,162,68,76,78,86,80,71,126,114,102,119,82", "endOffsets" : "116,210,544,612,732,840,934,1004,1156,1276,1402,1541,1628,1721,1800,1869,2029,2104,2175,2250,2439,2590,2720,2820,2924,3017,3094,3173,3241,3349,3493,3652,3740,3917,4039,4202,4271,4348,4427,4514,4595,4667,4794,4909,5012,5132,5215"}}]}]} | json_instruct | {"type": "object", "properties": {"logs": {"type": "array", "items": {"type": "object", "properties": {"outputFile": {"type": "string"}, "map": {"type": "array", "items": {"type": "object", "properties": {"source": {"type": "string"}, "from": {"type": "object", "properties": {"startLines": {"type": "string"}, "startColumns": {"type": "string"}, "startOffsets": {"type": "string"}, "endColumns": {"type": "string"}, "endOffsets": {"type": "string"}}, "required": ["startLines", "startColumns", "startOffsets", "endColumns", "endOffsets"]}}, "required": ["source", "from"]}}}, "required": ["outputFile", "map"]}}}, "required": ["logs"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {"type": "integer"}}, "productReviews": {"type": "array", "items": {"type": "object", "properties": {"productId": {"type": "integer"}, "reviewText": {"type": "string"}, "reviewDate": {"type": "string"}}, "required": ["productId", "reviewText", "reviewDate"]}}}, "required": ["userId", "cartId", "preferredProducts", "productReviews"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"userId" : 75392, "cartId" : "be0aeb75-4944-4647-964a-aad1d96ceee6", "preferredProducts" : [4545, 2836, 62], "productReviews" : [{"productId" : 3203, "reviewText" : "I saw one of these in Saint Lucia and I bought one.", "reviewDate" : "2017-03-30T04:45:01.3587961+03:00"}, {"productId" : 3932, "reviewText" : "My co-worker Mitchell has one of these. He says it looks dry.", "reviewDate" : "2016-10-29T01:06:33.2324001+03:00"}, {"productId" : 734, "reviewText" : "I tried to slay it but got truffle all over it.", "reviewDate" : "2018-08-13T16:28:35.676516+03:00"}]} | json_instruct | {"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {"type": "integer"}}, "productReviews": {"type": "array", "items": {"type": "object", "properties": {"productId": {"type": "integer"}, "reviewText": {"type": "string"}, "reviewDate": {"type": "string"}}, "required": ["productId", "reviewText", "reviewDate"]}}}, "required": ["userId", "cartId", "preferredProducts", "productReviews"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"brief": {"type": "string"}, "long": {"type": "string"}}, "required": ["brief", "long"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"brief" : "fellow-elect", "long" : "fellow-elect, fellow-chosen."} | json_instruct | {"type": "object", "properties": {"brief": {"type": "string"}, "long": {"type": "string"}}, "required": ["brief", "long"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"}
| ["grunt-dps"] | json_instruct | {"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"name": {"type": "string"}, "lsg_code": {"type": "string"}, "district": {"type": "string"}, "state": {"type": "string"}, "no_of_wards": {"type": "integer"}, "wards": {"type": "array", "items": {"type": "object", "properties": {"ward_no": {"type": "string"}, "ward_name": {"type": "string"}, "ward_id": {"type": "string"}}, "required": ["ward_no", "ward_name", "ward_id"]}}}, "required": ["name", "lsg_code", "district", "state", "no_of_wards", "wards"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "Kottaram", "lsg_code" : "253088", "district" : "Kanniyakumari", "state" : "Tamil Nadu", "no_of_wards" : 15, "wards" : [{"ward_no" : "9", "ward_name" : "Kottaram (TP) - Ward No.9", "ward_id" : "49576"}, {"ward_no" : "12", "ward_name" : "Kottaram (TP) - Ward No.12", "ward_id" : "49579"}, {"ward_no" : "13", "ward_name" : "Kottaram (TP) - Ward No.13", "ward_id" : "49580"}, {"ward_no" : "1", "ward_name" : "Kottaram (TP) - Ward No.1", "ward_id" : "49568"}, {"ward_no" : "11", "ward_name" : "Kottaram (TP) - Ward No.11", "ward_id" : "49578"}, {"ward_no" : "10", "ward_name" : "Kottaram (TP) - Ward No.10", "ward_id" : "49577"}, {"ward_no" : "8", "ward_name" : "Kottaram (TP) - Ward No.8", "ward_id" : "49575"}, {"ward_no" : "15", "ward_name" : "Kottaram (TP) - Ward No.15", "ward_id" : "49582"}, {"ward_no" : "5", "ward_name" : "Kottaram (TP) - Ward No.5", "ward_id" : "49572"}, {"ward_no" : "6", "ward_name" : "Kottaram (TP) - Ward No.6", "ward_id" : "49573"}, {"ward_no" : "4", "ward_name" : "Kottaram (TP) - Ward No.4", "ward_id" : "49571"}, {"ward_no" : "14", "ward_name" : "Kottaram (TP) - Ward No.14", "ward_id" : "49581"}, {"ward_no" : "3", "ward_name" : "Kottaram (TP) - Ward No.3", "ward_id" : "49570"}, {"ward_no" : "2", "ward_name" : "Kottaram (TP) - Ward No.2", "ward_id" : "49569"}, {"ward_no" : "7", "ward_name" : "Kottaram (TP) - Ward No.7", "ward_id" : "49574"}]} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "lsg_code": {"type": "string"}, "district": {"type": "string"}, "state": {"type": "string"}, "no_of_wards": {"type": "integer"}, "wards": {"type": "array", "items": {"type": "object", "properties": {"ward_no": {"type": "string"}, "ward_name": {"type": "string"}, "ward_id": {"type": "string"}}, "required": ["ward_no", "ward_name", "ward_id"]}}}, "required": ["name", "lsg_code", "district", "state", "no_of_wards", "wards"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"job_id": {"type": "string"}, "ip_addrs": {"type": "string"}, "pass": {"type": "boolean"}, "score": {"type": "integer"}, "message": {"type": "string"}, "error": {"type": "null"}, "log": {"type": "null"}, "load_level": {"type": "integer"}, "start_time": {"type": "string"}, "end_time": {"type": "string"}}, "required": ["job_id", "ip_addrs", "pass", "score", "message", "error", "log", "load_level", "start_time", "end_time"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"job_id" : "0", "ip_addrs" : "", "pass" : false, "score" : 0, "message" : "/initialize \u3078\u306e\u30ea\u30af\u30a8\u30b9\u30c8\u306b\u5931\u6557\u3057\u307e\u3057\u305f\u3002Get http:///initialize: http: no Host in request URL", "error" : null, "log" : null, "load_level" : 0, "start_time" : "2020-09-10T23:19:18.402733175+09:00", "end_time" : "2020-09-10T23:19:18.477069151+09:00"} | json_instruct | {"type": "object", "properties": {"job_id": {"type": "string"}, "ip_addrs": {"type": "string"}, "pass": {"type": "boolean"}, "score": {"type": "integer"}, "message": {"type": "string"}, "error": {"type": "null"}, "log": {"type": "null"}, "load_level": {"type": "integer"}, "start_time": {"type": "string"}, "end_time": {"type": "string"}}, "required": ["job_id", "ip_addrs", "pass", "score", "message", "error", "log", "load_level", "start_time", "end_time"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"text": {"type": "string"}, "url": {"type": "string"}}, "required": ["text", "url"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"text" : " How to divide a mixed number by a fraction\n\n[imath]2 \\frac{3}{5} \\div \\frac{3}{4}[/imath]\n\n\n", "url" : "https://www.youtube.com/watch?v=u5zUszykaaE"} | json_instruct | {"type": "object", "properties": {"text": {"type": "string"}, "url": {"type": "string"}}, "required": ["text", "url"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"fof-socialprofile": {"type": "object", "properties": {"forum": {"type": "object", "properties": {"edit": {"type": "object", "properties": {"edit": {"type": "string"}, "add": {"type": "string"}, "headtitle": {"type": "string"}, "title": {"type": "string"}, "url": {"type": "string"}, "submit": {"type": "string"}, "delete": {"type": "string"}, "deletetitle": {"type": "string"}}, "required": ["edit", "add", "headtitle", "title", "url", "submit", "delete", "deletetitle"]}}, "required": ["edit"]}}, "required": ["forum"]}}, "required": ["fof-socialprofile"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"fof-socialprofile" : {"forum" : {"edit" : {"edit" : "Edytuj", "add" : "Dodaj", "headtitle" : "Edytuj przyciski", "title" : "Tytu\u0142", "url" : "URL", "submit" : "Zapisz", "delete" : "Usu\u0144", "deletetitle" : "Usu\u0144 przycisk"}}}} | json_instruct | {"type": "object", "properties": {"fof-socialprofile": {"type": "object", "properties": {"forum": {"type": "object", "properties": {"edit": {"type": "object", "properties": {"edit": {"type": "string"}, "add": {"type": "string"}, "headtitle": {"type": "string"}, "title": {"type": "string"}, "url": {"type": "string"}, "submit": {"type": "string"}, "delete": {"type": "string"}, "deletetitle": {"type": "string"}}, "required": ["edit", "add", "headtitle", "title", "url", "submit", "delete", "deletetitle"]}}, "required": ["edit"]}}, "required": ["forum"]}}, "required": ["fof-socialprofile"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"display-name": {"type": "string"}, "package-name": {"type": "string"}, "is-portable": {"type": "boolean"}, "portable": {"type": "object", "properties": {"display-name": {"type": "string"}, "package-name": {"type": "string"}, "latest-version": {"type": "string"}, "10.13.0": {"type": "object", "properties": {"url": {"type": "string"}, "file-type": {"type": "string"}, "bin": {"type": "array", "items": {}}, "shortcuts": {"type": "array", "items": {}}, "persist": {"type": "array", "items": {"type": "string"}}, "post-install": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "code": {"type": "array", "items": {"type": "string"}}}, "required": ["type", "code"]}}}, "required": ["url", "file-type", "bin", "shortcuts", "persist", "post-install"]}, "auto-update": {"type": "object", "properties": {"url": {"type": "string"}, "version-check": {"type": "object", "properties": {"webpage": {"type": "string"}, "regex": {"type": "string"}}, "required": ["webpage", "regex"]}}, "required": ["url", "version-check"]}}, "required": ["display-name", "package-name", "latest-version", "10.13.0", "auto-update"]}}, "required": ["display-name", "package-name", "is-portable", "portable"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"display-name" : "", "package-name" : "node-chakracore", "is-portable" : true, "portable" : {"display-name" : "", "package-name" : "node-chakracore", "latest-version" : "10.13.0", "10.13.0" : {"url" : "https://nodejs.org/download/chakracore-release/v10.13.0/node-v10.13.0-win-x64.7z", "file-type" : ".7z", "bin" : [], "shortcuts" : [], "persist" : ["bin", "cache"], "post-install" : [{"type" : "powershell", "code" : ["# Set npm prefix to install modules inside bin and npm cache so they persist", "Set-Content -Value \"prefix=$persist_dir\\bin`ncache=$persist_dir\\cache\" -Path \"$dir\\node_modules\\npm\\npmrc\""]}]}, "auto-update" : {"url" : "https://nodejs.org/download/chakracore-release/v$version/node-v$version-win-x64.7z", "version-check" : {"webpage" : "https://nodejs.org/download/chakracore-release/index.json", "regex" : "v([\\d.]+)"}}}} | json_instruct | {"type": "object", "properties": {"display-name": {"type": "string"}, "package-name": {"type": "string"}, "is-portable": {"type": "boolean"}, "portable": {"type": "object", "properties": {"display-name": {"type": "string"}, "package-name": {"type": "string"}, "latest-version": {"type": "string"}, "10.13.0": {"type": "object", "properties": {"url": {"type": "string"}, "file-type": {"type": "string"}, "bin": {"type": "array", "items": {}}, "shortcuts": {"type": "array", "items": {}}, "persist": {"type": "array", "items": {"type": "string"}}, "post-install": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "code": {"type": "array", "items": {"type": "string"}}}, "required": ["type", "code"]}}}, "required": ["url", "file-type", "bin", "shortcuts", "persist", "post-install"]}, "auto-update": {"type": "object", "properties": {"url": {"type": "string"}, "version-check": {"type": "object", "properties": {"webpage": {"type": "string"}, "regex": {"type": "string"}}, "required": ["webpage", "regex"]}}, "required": ["url", "version-check"]}}, "required": ["display-name", "package-name", "latest-version", "10.13.0", "auto-update"]}}, "required": ["display-name", "package-name", "is-portable", "portable"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"h": {"type": "string"}, "c": {"type": "object", "properties": {"app": {"type": "boolean"}}, "required": ["app"]}}, "required": ["h", "c"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"h" : "ecc1997825f1b58574fb", "c" : {"app" : true}} | json_instruct | {"type": "object", "properties": {"h": {"type": "string"}, "c": {"type": "object", "properties": {"app": {"type": "boolean"}}, "required": ["app"]}}, "required": ["h", "c"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"user_rating": {"type": "number"}, "review_count": {"type": "integer"}, "name": {"type": "string"}, "reviews": {"type": "array", "items": {"type": "object", "properties": {"rating": {"type": "number"}, "stay_parameters": {"type": "string"}, "text": {"type": "string"}, "title": {"type": "string"}, "helpfulness": {"type": "integer"}, "user": {"type": "string"}, "date": {"type": "string"}, "detail_rating": {"type": "object", "properties": {"cleanliness": {"type": "number"}, "value": {"type": "number"}, "location": {"type": "number"}, "service": {"type": "number"}, "rooms": {"type": "number"}}, "required": ["cleanliness", "value", "location", "service", "rooms"]}, "id": {"type": "integer"}}, "required": ["rating", "stay_parameters", "text", "title", "helpfulness", "user", "date", "detail_rating", "id"]}}, "location": {"type": "object", "properties": {"country": {"type": "string"}, "region": {"type": "string"}, "continent": {"type": "string"}}, "required": ["country", "region", "continent"]}, "stars": {"type": "integer"}, "variance": {"type": "object", "properties": {"poor": {"type": "integer"}, "average": {"type": "integer"}, "very good": {"type": "integer"}, "terrible": {"type": "integer"}, "excellent": {"type": "integer"}}, "required": ["poor", "average", "very good", "terrible", "excellent"]}, "aka": {"type": "string"}, "slim_ranking": {"type": "number"}}, "required": ["user_rating", "review_count", "name", "reviews", "location", "stars", "variance", "aka", "slim_ranking"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"user_rating" : 3.5, "review_count" : 125, "name" : "Hotel Bilbi", "reviews" : [{"rating" : 3.0, "stay_parameters" : "Stayed August 2009, traveled solo", "text" : "Although hotel room small, it is ideal for a couple of nights, and room had own shower/toilet.", "title" : "5 minutes walk from old town", "helpfulness" : 1, "user" : "betshean", "date" : "September 14, 2009", "detail_rating" : {"cleanliness" : 4.0, "value" : 3.0, "location" : 3.0, "service" : 4.0, "rooms" : 3.0}, "id" : 41689633}], "location" : {"country" : "Spain", "region" : "Basque Country", "continent" : "Europe"}, "stars" : 2, "variance" : {"poor" : 12, "average" : 46, "very good" : 40, "terrible" : 10, "excellent" : 17}, "aka" : "Bilbi Hotel Bilbao", "slim_ranking" : 0.568181818182} | json_instruct | {"type": "object", "properties": {"user_rating": {"type": "number"}, "review_count": {"type": "integer"}, "name": {"type": "string"}, "reviews": {"type": "array", "items": {"type": "object", "properties": {"rating": {"type": "number"}, "stay_parameters": {"type": "string"}, "text": {"type": "string"}, "title": {"type": "string"}, "helpfulness": {"type": "integer"}, "user": {"type": "string"}, "date": {"type": "string"}, "detail_rating": {"type": "object", "properties": {"cleanliness": {"type": "number"}, "value": {"type": "number"}, "location": {"type": "number"}, "service": {"type": "number"}, "rooms": {"type": "number"}}, "required": ["cleanliness", "value", "location", "service", "rooms"]}, "id": {"type": "integer"}}, "required": ["rating", "stay_parameters", "text", "title", "helpfulness", "user", "date", "detail_rating", "id"]}}, "location": {"type": "object", "properties": {"country": {"type": "string"}, "region": {"type": "string"}, "continent": {"type": "string"}}, "required": ["country", "region", "continent"]}, "stars": {"type": "integer"}, "variance": {"type": "object", "properties": {"poor": {"type": "integer"}, "average": {"type": "integer"}, "very good": {"type": "integer"}, "terrible": {"type": "integer"}, "excellent": {"type": "integer"}}, "required": ["poor", "average", "very good", "terrible", "excellent"]}, "aka": {"type": "string"}, "slim_ranking": {"type": "number"}}, "required": ["user_rating", "review_count", "name", "reviews", "location", "stars", "variance", "aka", "slim_ranking"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"version": {"type": "number"}, "people": {"type": "array", "items": {"type": "object", "properties": {"pose_keypoints_2d": {"type": "array", "items": {"type": "number"}}, "face_keypoints_2d": {"type": "array", "items": {}}, "hand_left_keypoints_2d": {"type": "array", "items": {}}, "hand_right_keypoints_2d": {"type": "array", "items": {}}, "pose_keypoints_3d": {"type": "array", "items": {}}, "face_keypoints_3d": {"type": "array", "items": {}}, "hand_left_keypoints_3d": {"type": "array", "items": {}}, "hand_right_keypoints_3d": {"type": "array", "items": {}}}, "required": ["pose_keypoints_2d", "face_keypoints_2d", "hand_left_keypoints_2d", "hand_right_keypoints_2d", "pose_keypoints_3d", "face_keypoints_3d", "hand_left_keypoints_3d", "hand_right_keypoints_3d"]}}}, "required": ["version", "people"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"version" : 1.2, "people" : [{"pose_keypoints_2d" : [367.773, 131.144, 1, 367.447, 148.702, 1, 355.576, 145.863, 1, 346.255, 160.51, 1, 338.088, 190.49, 1, 403.039, 156.644, 1, 403.06, 183.164, 1, 382.661, 190.201, 1, 353.574, 192.701, 1, 345.723, 225.1, 1, 363.929, 262.65, 1, 371.891, 197.077, 1, 384.111, 232.623, 1, 375.348, 261.708, 1, 365.762, 128.708, 1, 371.394, 127.348, 1, 360.323, 131.108, 1, 381.247, 134.396, 1], "face_keypoints_2d" : [], "hand_left_keypoints_2d" : [], "hand_right_keypoints_2d" : [], "pose_keypoints_3d" : [], "face_keypoints_3d" : [], "hand_left_keypoints_3d" : [], "hand_right_keypoints_3d" : []}]} | json_instruct | {"type": "object", "properties": {"version": {"type": "number"}, "people": {"type": "array", "items": {"type": "object", "properties": {"pose_keypoints_2d": {"type": "array", "items": {"type": "number"}}, "face_keypoints_2d": {"type": "array", "items": {}}, "hand_left_keypoints_2d": {"type": "array", "items": {}}, "hand_right_keypoints_2d": {"type": "array", "items": {}}, "pose_keypoints_3d": {"type": "array", "items": {}}, "face_keypoints_3d": {"type": "array", "items": {}}, "hand_left_keypoints_3d": {"type": "array", "items": {}}, "hand_right_keypoints_3d": {"type": "array", "items": {}}}, "required": ["pose_keypoints_2d", "face_keypoints_2d", "hand_left_keypoints_2d", "hand_right_keypoints_2d", "pose_keypoints_3d", "face_keypoints_3d", "hand_left_keypoints_3d", "hand_right_keypoints_3d"]}}}, "required": ["version", "people"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"master_host": {"type": "string"}, "master_port": {"type": "integer"}, "worker_host": {"type": "string"}, "worker_port": {"type": "integer"}, "webui_port": {"type": "integer"}, "fetch_port": {"type": "integer"}, "worker_timeout": {"type": "integer"}, "spread_out": {"type": "boolean"}, "default_core": {"type": "integer"}, "reaper_iteration": {"type": "integer"}, "executor_max_retries": {"type": "integer"}}, "required": ["master_host", "master_port", "worker_host", "worker_port", "webui_port", "fetch_port", "worker_timeout", "spread_out", "default_core", "reaper_iteration", "executor_max_retries"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"master_host" : "172.21.0.12", "master_port" : 11111, "worker_host" : "172.21.0.14", "worker_port" : 11111, "webui_port" : 8080, "fetch_port" : 10002, "worker_timeout" : 60, "spread_out" : true, "default_core" : -1, "reaper_iteration" : 15, "executor_max_retries" : 10} | json_instruct | {"type": "object", "properties": {"master_host": {"type": "string"}, "master_port": {"type": "integer"}, "worker_host": {"type": "string"}, "worker_port": {"type": "integer"}, "webui_port": {"type": "integer"}, "fetch_port": {"type": "integer"}, "worker_timeout": {"type": "integer"}, "spread_out": {"type": "boolean"}, "default_core": {"type": "integer"}, "reaper_iteration": {"type": "integer"}, "executor_max_retries": {"type": "integer"}}, "required": ["master_host", "master_port", "worker_host", "worker_port", "webui_port", "fetch_port", "worker_timeout", "spread_out", "default_core", "reaper_iteration", "executor_max_retries"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"elapsed": {"type": "string"}, "endpoint-url": {"type": "string"}, "entry-date": {"type": "string"}, "request-headers": {"type": "object", "properties": {"Accept": {"type": "string"}, "Accept-Encoding": {"type": "string"}, "Connection": {"type": "string"}, "Cookie": {"type": "string"}, "User-Agent": {"type": "string"}}, "required": ["Accept", "Accept-Encoding", "Connection", "Cookie", "User-Agent"]}, "resource": {"type": "string"}, "response-headers": {"type": "object", "properties": {"Accept-Ranges": {"type": "string"}, "Connection": {"type": "string"}, "Content-Length": {"type": "string"}, "Content-Type": {"type": "string"}, "Date": {"type": "string"}, "ETag": {"type": "string"}, "Last-Modified": {"type": "string"}, "Server": {"type": "string"}, "Set-Cookie": {"type": "string"}}, "required": ["Accept-Ranges", "Connection", "Content-Length", "Content-Type", "Date", "ETag", "Last-Modified", "Server", "Set-Cookie"]}, "ssl-verify": {"type": "boolean"}, "status": {"type": "string"}}, "required": ["elapsed", "endpoint-url", "entry-date", "request-headers", "resource", "response-headers", "ssl-verify", "status"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"elapsed" : "0.382", "endpoint-url" : "https://www.scarborough.gov.uk/sites/scarborough.gov.uk/files/files/scarborough_brownfieldregister_2019_nov.csv", "entry-date" : "2020-12-26T00:16:42.406515", "request-headers" : {"Accept" : "*/*", "Accept-Encoding" : "gzip, deflate", "Connection" : "keep-alive", "Cookie" : "AWSALB=1DctS/MNd3fIRvtX2+rXnFXJ4ZeCbrZhZhasEGrelyrDZMU1GBVdfv2ToT54XmlusadsEUxhbNi8vw1KVTz4SPPF3YUvidfQifri7CyxKIjOeF7hPVCuhkFwjkOf; AWSALBCORS=1DctS/MNd3fIRvtX2+rXnFXJ4ZeCbrZhZhasEGrelyrDZMU1GBVdfv2ToT54XmlusadsEUxhbNi8vw1KVTz4SPPF3YUvidfQifri7CyxKIjOeF7hPVCuhkFwjkOf", "User-Agent" : "Digital Land data collector"}, "resource" : "826dcac57a4d16a35b9d95a8ca2323178cc5e158edda83b0f39908097cf1a7f9", "response-headers" : {"Accept-Ranges" : "bytes", "Connection" : "keep-alive", "Content-Length" : "24062", "Content-Type" : "application/octet-stream", "Date" : "Sat, 26 Dec 2020 00:20:32 GMT", "ETag" : "\"5ddcf8be-5dfe\"", "Last-Modified" : "Tue, 26 Nov 2019 10:04:46 GMT", "Server" : "nginx", "Set-Cookie" : "AWSALB=EKnJUKu8I/qCJGlRUFT0tbPmt4HKI1nBATZSTnUh3mEY67PKcFgwY8DmlCHS9cybh5zEM2H79LSCnb7hOPfu8O1lCTRZzo9zfcTrjdm83RudIDi8eefF9ESSyxdE; Expires=Sat, 02 Jan 2021 00:20:32 GMT; Path=/, AWSALBCORS=EKnJUKu8I/qCJGlRUFT0tbPmt4HKI1nBATZSTnUh3mEY67PKcFgwY8DmlCHS9cybh5zEM2H79LSCnb7hOPfu8O1lCTRZzo9zfcTrjdm83RudIDi8eefF9ESSyxdE; Expires=Sat, 02 Jan 2021 00:20:32 GMT; Path=/; SameSite=None; Secure"}, "ssl-verify" : true, "status" : "200"} | json_instruct | {"type": "object", "properties": {"elapsed": {"type": "string"}, "endpoint-url": {"type": "string"}, "entry-date": {"type": "string"}, "request-headers": {"type": "object", "properties": {"Accept": {"type": "string"}, "Accept-Encoding": {"type": "string"}, "Connection": {"type": "string"}, "Cookie": {"type": "string"}, "User-Agent": {"type": "string"}}, "required": ["Accept", "Accept-Encoding", "Connection", "Cookie", "User-Agent"]}, "resource": {"type": "string"}, "response-headers": {"type": "object", "properties": {"Accept-Ranges": {"type": "string"}, "Connection": {"type": "string"}, "Content-Length": {"type": "string"}, "Content-Type": {"type": "string"}, "Date": {"type": "string"}, "ETag": {"type": "string"}, "Last-Modified": {"type": "string"}, "Server": {"type": "string"}, "Set-Cookie": {"type": "string"}}, "required": ["Accept-Ranges", "Connection", "Content-Length", "Content-Type", "Date", "ETag", "Last-Modified", "Server", "Set-Cookie"]}, "ssl-verify": {"type": "boolean"}, "status": {"type": "string"}}, "required": ["elapsed", "endpoint-url", "entry-date", "request-headers", "resource", "response-headers", "ssl-verify", "status"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"HostConfigHash": {"type": "string"}, "CardHash": {"type": "string"}, "Error": {"type": "null"}}, "required": ["HostConfigHash", "CardHash", "Error"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"HostConfigHash" : "bc42010", "CardHash" : "fea3e25", "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#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"77930": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "77929": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "77931": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "89623": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}}, "required": ["77930", "77929", "77931", "89623"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"77930" : {"nama" : "PARIGI", "dapil" : [82, 8201, 18205, 2820802]}, "77929" : {"nama" : "PENU", "dapil" : [82, 8201, 18205, 2820802]}, "77931" : {"nama" : "SAMUYA", "dapil" : [82, 8201, 18205, 2820802]}, "89623" : {"nama" : "TUBANG", "dapil" : [82, 8201, 18205, 2820802]}} | json_instruct | {"type": "object", "properties": {"77930": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "77929": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "77931": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "89623": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}}, "required": ["77930", "77929", "77931", "89623"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"iconDefinitions": {"type": "object", "properties": {"_salto_nacl": {"type": "object", "properties": {"iconPath": {"type": "string"}}, "required": ["iconPath"]}}, "required": ["_salto_nacl"]}, "fileExtensions": {"type": "object", "properties": {"nacl": {"type": "string"}}, "required": ["nacl"]}}, "required": ["iconDefinitions", "fileExtensions"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"iconDefinitions" : {"_salto_nacl" : {"iconPath" : "./images/file_type_salto_blue.png"}}, "fileExtensions" : {"nacl" : "_salto_nacl"}} | json_instruct | {"type": "object", "properties": {"iconDefinitions": {"type": "object", "properties": {"_salto_nacl": {"type": "object", "properties": {"iconPath": {"type": "string"}}, "required": ["iconPath"]}}, "required": ["_salto_nacl"]}, "fileExtensions": {"type": "object", "properties": {"nacl": {"type": "string"}}, "required": ["nacl"]}}, "required": ["iconDefinitions", "fileExtensions"], "$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"}, "summary": {"type": "string"}, "description": {"type": "string"}, "homepage": {"type": "string"}, "license": {"type": "object", "properties": {"type": {"type": "string"}, "file": {"type": "string"}}, "required": ["type", "file"]}, "authors": {"type": "object", "properties": {"Dmitry": {"type": "string"}}, "required": ["Dmitry"]}, "source": {"type": "object", "properties": {"git": {"type": "string"}, "tag": {"type": "string"}}, "required": ["git", "tag"]}, "platforms": {"type": "object", "properties": {"ios": {"type": "string"}}, "required": ["ios"]}, "source_files": {"type": "string"}, "pod_target_xcconfig": {"type": "object", "properties": {"SWIFT_VERSION": {"type": "string"}}, "required": ["SWIFT_VERSION"]}, "frameworks": {"type": "string"}, "vendored_frameworks": {"type": "array", "items": {"type": "string"}}, "dependencies": {"type": "object", "properties": {"AFNetworking": {"type": "array", "items": {}}}, "required": ["AFNetworking"]}}, "required": ["name", "version", "summary", "description", "homepage", "license", "authors", "source", "platforms", "source_files", "pod_target_xcconfig", "frameworks", "vendored_frameworks", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "CoinKit", "version" : "1.0.1", "summary" : "Awesome toolkit for working with cryptocurrencies in Swift", "description" : "CoinKit can create new and restore existing wallets with mnemonic or private key, receive wallet info from its blockchain such as balance, transactions, fees, etc, and sign and broadcast transactions as well.", "homepage" : "https://github.com/ovrchk/CoinKit", "license" : {"type" : "MIT", "file" : "LICENSE"}, "authors" : {"Dmitry" : "d.overchuk@titanium.im"}, "source" : {"git" : "https://github.com/ovrchk/CoinKit.git", "tag" : "1.0.1"}, "platforms" : {"ios" : "8.0"}, "source_files" : "CoinKit/Core/**/*", "pod_target_xcconfig" : {"SWIFT_VERSION" : "4"}, "frameworks" : "AVFoundation", "vendored_frameworks" : ["CoinKit/Frameworks/CoreBitcoin.framework", "CoinKit/Frameworks/ethers.framework"], "dependencies" : {"AFNetworking" : []}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "summary": {"type": "string"}, "description": {"type": "string"}, "homepage": {"type": "string"}, "license": {"type": "object", "properties": {"type": {"type": "string"}, "file": {"type": "string"}}, "required": ["type", "file"]}, "authors": {"type": "object", "properties": {"Dmitry": {"type": "string"}}, "required": ["Dmitry"]}, "source": {"type": "object", "properties": {"git": {"type": "string"}, "tag": {"type": "string"}}, "required": ["git", "tag"]}, "platforms": {"type": "object", "properties": {"ios": {"type": "string"}}, "required": ["ios"]}, "source_files": {"type": "string"}, "pod_target_xcconfig": {"type": "object", "properties": {"SWIFT_VERSION": {"type": "string"}}, "required": ["SWIFT_VERSION"]}, "frameworks": {"type": "string"}, "vendored_frameworks": {"type": "array", "items": {"type": "string"}}, "dependencies": {"type": "object", "properties": {"AFNetworking": {"type": "array", "items": {}}}, "required": ["AFNetworking"]}}, "required": ["name", "version", "summary", "description", "homepage", "license", "authors", "source", "platforms", "source_files", "pod_target_xcconfig", "frameworks", "vendored_frameworks", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "keywords": {"type": "array", "items": {}}, "author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"body-parser": {"type": "string"}, "crypto": {"type": "string"}, "express": {"type": "string"}, "express-handlebars": {"type": "string"}, "locale": {"type": "string"}, "moment": {"type": "string"}, "mysql": {"type": "string"}, "redis": {"type": "string"}, "request": {"type": "string"}, "ua-parser-js": {"type": "string"}}, "required": ["body-parser", "crypto", "express", "express-handlebars", "locale", "moment", "mysql", "redis", "request", "ua-parser-js"]}}, "required": ["name", "version", "description", "main", "scripts", "keywords", "author", "license", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "URLShort", "version" : "1.0.0", "description" : "", "main" : "index.js", "scripts" : {"test" : "echo \"Error: no test specified\" && exit 1"}, "keywords" : [], "author" : "", "license" : "ISC", "dependencies" : {"body-parser" : "^1.19.0", "crypto" : "^1.0.1", "express" : "^4.17.1", "express-handlebars" : "^5.2.1", "locale" : "^0.1.0", "moment" : "^2.29.1", "mysql" : "^2.18.1", "redis" : "^3.1.1", "request" : "^2.88.2", "ua-parser-js" : "^0.7.24"}} | 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"]}, "keywords": {"type": "array", "items": {}}, "author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"body-parser": {"type": "string"}, "crypto": {"type": "string"}, "express": {"type": "string"}, "express-handlebars": {"type": "string"}, "locale": {"type": "string"}, "moment": {"type": "string"}, "mysql": {"type": "string"}, "redis": {"type": "string"}, "request": {"type": "string"}, "ua-parser-js": {"type": "string"}}, "required": ["body-parser", "crypto", "express", "express-handlebars", "locale", "moment", "mysql", "redis", "request", "ua-parser-js"]}}, "required": ["name", "version", "description", "main", "scripts", "keywords", "author", "license", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "src": {"type": "string"}}, "required": ["name", "src"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"name" : "KQ98 - KQYB", "src" : "http://crystalout.surfernetwork.com:8001/KQYB_MP3?t=1526292050"}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "src": {"type": "string"}}, "required": ["name", "src"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"zoneId": {"type": "string"}, "name": {"type": "string"}, "type": {"type": "string"}, "ttl": {"type": "integer"}, "records": {"type": "array", "items": {"type": "object", "properties": {"address": {"type": "string"}}, "required": ["address"]}}}, "required": ["zoneId", "name", "type", "ttl", "records"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"zoneId" : "abc123", "name" : "arecord", "type" : "A", "ttl" : 300, "records" : [{"address" : "foo.2,bar"}]} | json_instruct | {"type": "object", "properties": {"zoneId": {"type": "string"}, "name": {"type": "string"}, "type": {"type": "string"}, "ttl": {"type": "integer"}, "records": {"type": "array", "items": {"type": "object", "properties": {"address": {"type": "string"}}, "required": ["address"]}}}, "required": ["zoneId", "name", "type", "ttl", "records"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "TDRemoteDebugger"} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"seq_length_warmup": {"type": "object", "properties": {"name": {"type": "string"}, "class_name": {"type": "string"}, "functional": {"type": "string"}, "tldr": {"type": "string"}, "attribution": {"type": "string"}, "link": {"type": "string"}, "domains": {"type": "array", "items": {"type": "string"}}, "summary": {"type": "string"}, "use": {"type": "string"}}, "required": ["name", "class_name", "functional", "tldr", "attribution", "link", "domains", "summary", "use"]}}, "required": ["seq_length_warmup"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"seq_length_warmup" : {"name" : "Sequence Length Warmup", "class_name" : "SeqLengthWarmup", "functional" : "set_batch_sequence_length", "tldr" : "Progressively increase sequence length.", "attribution" : "(Li et al, 2021)", "link" : "https://arxiv.org/abs/2108.06084", "domains" : ["nlp"], "summary" : "Warms up the sequence length (number of tokens) from a\u00a0minimum length to a maximum length over some duration of training.", "use" : "Language modeling tasks"}} | json_instruct | {"type": "object", "properties": {"seq_length_warmup": {"type": "object", "properties": {"name": {"type": "string"}, "class_name": {"type": "string"}, "functional": {"type": "string"}, "tldr": {"type": "string"}, "attribution": {"type": "string"}, "link": {"type": "string"}, "domains": {"type": "array", "items": {"type": "string"}}, "summary": {"type": "string"}, "use": {"type": "string"}}, "required": ["name", "class_name", "functional", "tldr", "attribution", "link", "domains", "summary", "use"]}}, "required": ["seq_length_warmup"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"published": {"type": "string"}, "media-type": {"type": "string"}, "title": {"type": "string"}, "id": {"type": "string"}, "content": {"type": "string"}, "source": {"type": "string"}}, "required": ["published", "media-type", "title", "id", "content", "source"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"published" : "2015-09-01T14:55:53Z", "media-type" : "Blog", "title" : "Milwaukee, Baltimore, Chicago, and Other Major U.S. Cities Are Experiencing a Dramatic Spike in Homicides", "id" : "50548a2a-cf05-4b7b-8453-2e4b973ddfff", "content" : "Though we are only just now entering the ninth month of 2015, Milwaukee has already surpassed last year's murder rate by a startling amount. 104 people have been killed in the city this year, greatly exceeding the 59 lives lost during the same period in 2014 and easily eclipsing that year's total of 86 homicides. According to new data, Milwaukee's seemingly sudden increase in violence is part of a larger national trend represented in statistics compiled by the New York Times:\rLaw enforcement experts are unsure what exactly is causing the dramatic spike in homicides across many major U.S. cities, though they do believe \"disparate factors are at play in different cities.\" Maddeningly, the New York Times\u00a0reveals that \"some officials\" are claiming that the renewed scrutiny facing the increasingly detrimental problem of\u00a0police brutality has \"made officers less aggressive and emboldened criminals.\" Thankfully, most experts vehemently disagree with this theory.\rThough murder rates in New York and Chicago hit record lows in 2014, both rates have shown a notable increase in the first eight months of 2015. New York is currently experiencing an estimated increase of nine percent, with Chicago doubling that rapidity with a 20 percent increase. Garry McCarthy, the police superintendent in Chicago, believes that the widespread prevalence of guns is largely to blame. \"Across the country, we\u2019ve all found it\u2019s not the individual who never committed a crime before suddenly killing somebody,\u201d says McCarthy.\u00a0\u201cIt\u2019s the repeat offenders. It\u2019s the same people over and over again.\u201d\rYxc2s3cjqfuKECan08hQUpV19NJzHcH3\r\u00a0", "source" : "all"} | json_instruct | {"type": "object", "properties": {"published": {"type": "string"}, "media-type": {"type": "string"}, "title": {"type": "string"}, "id": {"type": "string"}, "content": {"type": "string"}, "source": {"type": "string"}}, "required": ["published", "media-type", "title", "id", "content", "source"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"nendo": {"type": "integer"}, "seibetu": {"type": "string"}, "nenrei": {"type": "integer"}, "sintyoo": {"type": "integer"}, "taizyuu": {"type": "number"}}, "required": ["nendo", "seibetu", "nenrei", "sintyoo", "taizyuu"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"nendo" : 2005, "seibetu" : "\u5973", "nenrei" : 13, "sintyoo" : 161, "taizyuu" : 52.6} | json_instruct | {"type": "object", "properties": {"nendo": {"type": "integer"}, "seibetu": {"type": "string"}, "nenrei": {"type": "integer"}, "sintyoo": {"type": "integer"}, "taizyuu": {"type": "number"}}, "required": ["nendo", "seibetu", "nenrei", "sintyoo", "taizyuu"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"latest_version": {"type": "array", "items": {"type": "string"}}, "meta": {"type": "object", "properties": {"description": {"type": "string"}, "homepage": {"type": "string"}, "license": {"type": "string"}}, "required": ["description", "homepage", "license"]}, "versions": {"type": "object", "properties": {"0.2.0": {"type": "object", "properties": {"sha256": {"type": "string"}, "url": {"type": "string"}}, "required": ["sha256", "url"]}, "0.3.0": {"type": "object", "properties": {"sha256": {"type": "string"}, "url": {"type": "string"}}, "required": ["sha256", "url"]}, "0.3.1": {"type": "object", "properties": {"sha256": {"type": "string"}, "url": {"type": "string"}}, "required": ["sha256", "url"]}, "0.4.0": {"type": "object", "properties": {"sha256": {"type": "string"}, "url": {"type": "string"}}, "required": ["sha256", "url"]}, "0.5.0": {"type": "object", "properties": {"sha256": {"type": "string"}, "url": {"type": "string"}}, "required": ["sha256", "url"]}, "0.6.1": {"type": "object", "properties": {"sha256": {"type": "string"}, "url": {"type": "string"}}, "required": ["sha256", "url"]}}, "required": ["0.2.0", "0.3.0", "0.3.1", "0.4.0", "0.5.0", "0.6.1"]}}, "required": ["latest_version", "meta", "versions"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"latest_version" : ["0.6.1"], "meta" : {"description" : "Tools for converting and modifying sequence files from the command-line", "homepage" : "http://github.com/fhcrc/seqmagick", "license" : "GPL V3"}, "versions" : {"0.2.0" : {"sha256" : "29dfff83009b71f7d7eddf6ce3be03be2e610c41ca6ffeb11c3730255cc5eed3", "url" : "https://files.pythonhosted.org/packages/64/ef/42a502784032ee35a2ab0eda8fcced8c7c90c02dcb2da1b45c6d89e33b47/seqmagick-0.2.0.tar.gz"}, "0.3.0" : {"sha256" : "eaa068d4ace2f7c2eb285e5f3a0560bbfa611223be30634ba77b7baacac32bfb", "url" : "https://files.pythonhosted.org/packages/dc/d4/b7a5a62fa18892782d2b3d9a6e1d52cc9083da7fc25f9d80a50309f4ca42/seqmagick-0.3.0.tar.gz"}, "0.3.1" : {"sha256" : "84b51feefbd41be6ce6bd95c11da5ac03571c42f75b8e3ed916e727c7caa5eca", "url" : "https://files.pythonhosted.org/packages/f9/ac/a0e5c64cbae7dec4317ab50ca8f977aa35f206ae4863f91bee3ebd661cd9/seqmagick-0.3.1.tar.gz"}, "0.4.0" : {"sha256" : "fca51f5a2133eda65710d8329bd894c8b08e81795afef834a36496ed6e8b83d1", "url" : "https://files.pythonhosted.org/packages/84/8d/c08fb4a506c04620398c36d514c8f64e382735f7f1874a83a9b25be5bf2f/seqmagick-0.4.0.tar.gz"}, "0.5.0" : {"sha256" : "5c4bb213dbab871bc39a55b64db1b35b3a5eb7fba105d06630795d454629111b", "url" : "https://files.pythonhosted.org/packages/3b/21/a8ccd57fdc80b0e66adcd40a4d8f967c8f3fd9d8bf6dddc18ed42639a910/seqmagick-0.5.0.tar.gz"}, "0.6.1" : {"sha256" : "2da84aded0e47414321573c78149d36c8e9222cc792ad530a1fa9163cf21f631", "url" : "https://files.pythonhosted.org/packages/62/f4/5bf0b358551ba5f1a18de039a7001f2e0fad4b08ff07ff0cc0cce492ad47/seqmagick-0.6.1.tar.gz"}}} | json_instruct | {"type": "object", "properties": {"latest_version": {"type": "array", "items": {"type": "string"}}, "meta": {"type": "object", "properties": {"description": {"type": "string"}, "homepage": {"type": "string"}, "license": {"type": "string"}}, "required": ["description", "homepage", "license"]}, "versions": {"type": "object", "properties": {"0.2.0": {"type": "object", "properties": {"sha256": {"type": "string"}, "url": {"type": "string"}}, "required": ["sha256", "url"]}, "0.3.0": {"type": "object", "properties": {"sha256": {"type": "string"}, "url": {"type": "string"}}, "required": ["sha256", "url"]}, "0.3.1": {"type": "object", "properties": {"sha256": {"type": "string"}, "url": {"type": "string"}}, "required": ["sha256", "url"]}, "0.4.0": {"type": "object", "properties": {"sha256": {"type": "string"}, "url": {"type": "string"}}, "required": ["sha256", "url"]}, "0.5.0": {"type": "object", "properties": {"sha256": {"type": "string"}, "url": {"type": "string"}}, "required": ["sha256", "url"]}, "0.6.1": {"type": "object", "properties": {"sha256": {"type": "string"}, "url": {"type": "string"}}, "required": ["sha256", "url"]}}, "required": ["0.2.0", "0.3.0", "0.3.1", "0.4.0", "0.5.0", "0.6.1"]}}, "required": ["latest_version", "meta", "versions"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"width": {"type": "integer"}, "filename": {"type": "string"}}, "required": ["width", "filename"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"width" : 576, "filename" : "5.JPG"} | json_instruct | {"type": "object", "properties": {"width": {"type": "integer"}, "filename": {"type": "string"}}, "required": ["width", "filename"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"maintainers": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}}, "children": {"type": "array", "items": {"type": "object", "properties": {"repoHost": {"type": "string"}, "children": {"type": "array", "items": {}}, "name": {"type": "string"}, "type": {"type": "string"}, "version": {"type": "string"}}, "required": ["repoHost", "children", "name", "type", "version"]}}, "name": {"type": "string"}, "description": {"type": "string"}, "type": {"type": "string"}, "shortName": {"type": "string"}, "version": {"type": "string"}}, "required": ["maintainers", "children", "name", "description", "type", "shortName", "version"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"maintainers" : [{"name" : "lachie83", "email" : "lachlan.evenson@microsoft.com"}], "children" : [{"repoHost" : "Docker Hub", "children" : [], "name" : "consul", "type" : "image", "version" : "1.5.3"}], "name" : "consul:3.9.4", "description" : "Highly available and distributed service discovery and key-value store designed with support for the modern data center to make distributed systems and configuration easy.", "type" : "chart", "shortName" : "consul", "version" : "3.9.4"} | json_instruct | {"type": "object", "properties": {"maintainers": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}}, "children": {"type": "array", "items": {"type": "object", "properties": {"repoHost": {"type": "string"}, "children": {"type": "array", "items": {}}, "name": {"type": "string"}, "type": {"type": "string"}, "version": {"type": "string"}}, "required": ["repoHost", "children", "name", "type", "version"]}}, "name": {"type": "string"}, "description": {"type": "string"}, "type": {"type": "string"}, "shortName": {"type": "string"}, "version": {"type": "string"}}, "required": ["maintainers", "children", "name", "description", "type", "shortName", "version"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"id": {"type": "integer"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"src:alt_label": {"type": "string"}, "src:geom": {"type": "string"}, "wof:geomhash": {"type": "string"}, "wof:id": {"type": "integer"}, "wof:repo": {"type": "string"}}, "required": ["src:alt_label", "src:geom", "wof:geomhash", "wof:id", "wof:repo"]}, "bbox": {"type": "array", "items": {"type": "number"}}, "geometry": {"type": "object", "properties": {"coordinates": {"type": "array", "items": {"type": "number"}}, "type": {"type": "string"}}, "required": ["coordinates", "type"]}}, "required": ["id", "type", "properties", "bbox", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : 1126053447, "type" : "Feature", "properties" : {"src:alt_label" : "qs_pg", "src:geom" : "qs_pg", "wof:geomhash" : "459be2bed1d5350b6830d9ec4942f77b", "wof:id" : 1126053447, "wof:repo" : "whosonfirst-data-admin-gb"}, "bbox" : [-1.427879, 53.602488, -1.427879, 53.602488], "geometry" : {"coordinates" : [-1.427879, 53.602488], "type" : "Point"}} | json_instruct | {"type": "object", "properties": {"id": {"type": "integer"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"src:alt_label": {"type": "string"}, "src:geom": {"type": "string"}, "wof:geomhash": {"type": "string"}, "wof:id": {"type": "integer"}, "wof:repo": {"type": "string"}}, "required": ["src:alt_label", "src:geom", "wof:geomhash", "wof:id", "wof:repo"]}, "bbox": {"type": "array", "items": {"type": "number"}}, "geometry": {"type": "object", "properties": {"coordinates": {"type": "array", "items": {"type": "number"}}, "type": {"type": "string"}}, "required": ["coordinates", "type"]}}, "required": ["id", "type", "properties", "bbox", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"}
| ["assets/tests/date_time.json", "assets/tests/substring_variable.json", "assets/tests/transform.json"] | json_instruct | {"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "text": {"type": "string"}}, "required": ["id", "text"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"id" : "610204005200", "text" : "\u5bfa\u6c9f\u6751\u59d4\u4f1a"}, {"id" : "610204005201", "text" : "\u963f\u59d1\u793e\u6751\u59d4\u4f1a"}, {"id" : "610204005202", "text" : "\u9634\u5bb6\u6cb3\u6751\u59d4\u4f1a"}, {"id" : "610204005207", "text" : "\u5d14\u4ed9\u6751\u59d4\u4f1a"}, {"id" : "610204005209", "text" : "\u6768\u5bb6\u5e84\u6751\u59d4\u4f1a"}, {"id" : "610204005210", "text" : "\u767d\u5bb6\u5e84\u6751\u59d4\u4f1a"}, {"id" : "610204005211", "text" : "\u5f20\u90dd\u6751\u59d4\u4f1a"}, {"id" : "610204005212", "text" : "\u5357\u6751\u59d4\u4f1a"}, {"id" : "610204005213", "text" : "\u6c34\u5cea\u6751\u59d4\u4f1a"}, {"id" : "610204005219", "text" : "\u5bfa\u6c9f\u539f\u6751\u59d4\u4f1a"}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "text": {"type": "string"}}, "required": ["id", "text"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"title": {"type": "string"}, "downloads": {"type": "integer"}, "tags": {"type": "array", "items": {"type": "string"}}, "hxl": {"type": "integer"}, "org": {"type": "string"}, "id": {"type": "string"}, "resources": {"type": "array", "items": {"type": "object", "properties": {"update_date": {"type": "string"}, "link": {"type": "string"}}, "required": ["update_date", "link"]}}}, "required": ["title", "downloads", "tags", "hxl", "org", "id", "resources"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"title" : "San Marino - Environment", "downloads" : 71, "tags" : ["environment", "hxl", "indicators", "San Marino"], "hxl" : 1, "org" : "World Bank Group", "id" : "4e09edbf-cbd5-4ec3-9e40-f6094cc46d72", "resources" : [{"update_date" : "2021-01-31T21:16:46.910223", "link" : "https://data.humdata.org/dataset/4e09edbf-cbd5-4ec3-9e40-f6094cc46d72/resource/d2ea907f-56e3-4798-af16-9ce236352bef/download/environment_smr.csv"}, {"update_date" : "2021-01-31T21:16:46.910223", "link" : "https://data.humdata.org/dataset/4e09edbf-cbd5-4ec3-9e40-f6094cc46d72/resource/d3a8563a-e49e-414a-9c7d-981c5510c4f3/download/qc_environment_smr.csv"}]} | json_instruct | {"type": "object", "properties": {"title": {"type": "string"}, "downloads": {"type": "integer"}, "tags": {"type": "array", "items": {"type": "string"}}, "hxl": {"type": "integer"}, "org": {"type": "string"}, "id": {"type": "string"}, "resources": {"type": "array", "items": {"type": "object", "properties": {"update_date": {"type": "string"}, "link": {"type": "string"}}, "required": ["update_date", "link"]}}}, "required": ["title", "downloads", "tags", "hxl", "org", "id", "resources"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"title": {"type": "string"}, "creation_date": {"type": "string"}, "creation_date_earliest": {"type": "string"}, "creation_date_latest": {"type": "string"}, "medium": {"type": "string"}, "accession_number": {"type": "string"}, "id": {"type": "string"}, "credit_line": {"type": "string"}, "date_acquired": {"type": "string"}, "department": {"type": "string"}, "physical_location": {"type": "string"}, "item_width": {"type": "number"}, "item_height": {"type": "number"}, "item_depth": {"type": "number"}, "item_diameter": {"type": "number"}, "web_url": {"type": "string"}, "provenance_text": {"type": "string"}, "classification": {"type": "string"}, "images": {"type": "array", "items": {"type": "object", "properties": {"image_url": {"type": "string"}}, "required": ["image_url"]}}, "creator": {"type": "array", "items": {"type": "object", "properties": {"artist_id": {"type": "string"}, "party_type": {"type": "string"}, "full_name": {"type": "string"}, "cited_name": {"type": "string"}, "role": {"type": "null"}, "nationality": {"type": "string"}, "birth_date": {"type": "null"}, "death_date": {"type": "null"}, "birth_place": {"type": "null"}, "death_place": {"type": "null"}}, "required": ["artist_id", "party_type", "full_name", "cited_name", "role", "nationality", "birth_date", "death_date", "birth_place", "death_place"]}}}, "required": ["title", "creation_date", "creation_date_earliest", "creation_date_latest", "medium", "accession_number", "id", "credit_line", "date_acquired", "department", "physical_location", "item_width", "item_height", "item_depth", "item_diameter", "web_url", "provenance_text", "classification", "images", "creator"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"title" : "Plate", "creation_date" : "1518", "creation_date_earliest" : "1517-12-22", "creation_date_latest" : "1517-12-22", "medium" : "tin-glazed earthenware with lustre decoration", "accession_number" : "59.48.4", "id" : "cmoa:things/e056b4e2-956f-44a9-bad8-baf2b38dafb5", "credit_line" : "Mr. and Mrs. James F. Hillman Fund", "date_acquired" : "1959-10-26", "department" : "Decorative Arts and Design", "physical_location" : "Gallery 2, Scaife Galleries", "item_width" : 0.0, "item_height" : 1.625, "item_depth" : 0.0, "item_diameter" : 7.0, "web_url" : "http://collection.cmoa.org/CollectionDetail.aspx?item=1011036", "provenance_text" : "French and Company, New York City, NY", "classification" : "Ceramics", "images" : [{"image_url" : "http://collection.cmoa.org/CollectionImage.aspx?irn=101859&size=Medium"}], "creator" : [{"artist_id" : "cmoa:parties/e6a1fe12-6ac6-412e-b246-7e3a2bb5a3ef", "party_type" : "Person", "full_name" : "unknown Italian", "cited_name" : "unknown Italian", "role" : null, "nationality" : "Italian", "birth_date" : null, "death_date" : null, "birth_place" : null, "death_place" : null}]} | json_instruct | {"type": "object", "properties": {"title": {"type": "string"}, "creation_date": {"type": "string"}, "creation_date_earliest": {"type": "string"}, "creation_date_latest": {"type": "string"}, "medium": {"type": "string"}, "accession_number": {"type": "string"}, "id": {"type": "string"}, "credit_line": {"type": "string"}, "date_acquired": {"type": "string"}, "department": {"type": "string"}, "physical_location": {"type": "string"}, "item_width": {"type": "number"}, "item_height": {"type": "number"}, "item_depth": {"type": "number"}, "item_diameter": {"type": "number"}, "web_url": {"type": "string"}, "provenance_text": {"type": "string"}, "classification": {"type": "string"}, "images": {"type": "array", "items": {"type": "object", "properties": {"image_url": {"type": "string"}}, "required": ["image_url"]}}, "creator": {"type": "array", "items": {"type": "object", "properties": {"artist_id": {"type": "string"}, "party_type": {"type": "string"}, "full_name": {"type": "string"}, "cited_name": {"type": "string"}, "role": {"type": "null"}, "nationality": {"type": "string"}, "birth_date": {"type": "null"}, "death_date": {"type": "null"}, "birth_place": {"type": "null"}, "death_place": {"type": "null"}}, "required": ["artist_id", "party_type", "full_name", "cited_name", "role", "nationality", "birth_date", "death_date", "birth_place", "death_place"]}}}, "required": ["title", "creation_date", "creation_date_earliest", "creation_date_latest", "medium", "accession_number", "id", "credit_line", "date_acquired", "department", "physical_location", "item_width", "item_height", "item_depth", "item_diameter", "web_url", "provenance_text", "classification", "images", "creator"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"examine": {"type": "string"}}, "required": ["examine"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"examine" : "N doses of extra-stong antipoison potion"} | json_instruct | {"type": "object", "properties": {"examine": {"type": "string"}}, "required": ["examine"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"}
| ["d3-bundle", "d3-structure", "react-dash", "react-dash-dev", "react-easy-chart"] | json_instruct | {"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"openui5.tour": {"type": "object", "properties": {"icon": {"type": "string"}, "name": {"type": "string"}, "description": {"type": "string"}, "source": {"type": "string"}, "documentation": {"type": "string"}, "demo": {"type": "string"}, "version": {"type": "string"}, "license": {"type": "string"}, "content": {"type": "object", "properties": {"TourShowFeatures": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "type": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "samples": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "description": {"type": "string"}, "url": {"type": "string"}}, "required": ["id", "name", "description", "url"]}}}, "required": ["id", "name", "type", "version", "description", "samples"]}}, "required": ["TourShowFeatures"]}}, "required": ["icon", "name", "description", "source", "documentation", "demo", "version", "license", "content"]}}, "required": ["openui5.tour"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"openui5.tour" : {"icon" : "sap-icon://enter-more", "name" : "OpenUI5 Tour", "description" : "An OpenUI5 library to give a guided tour through your UI5 webapp.", "source" : "https://github.com/mauriciolauffer/openui5-tour.git", "documentation" : "https://github.com/mauriciolauffer/openui5-tour#readme", "demo" : "https://mauriciolauffer.github.io/openui5-tour/demo/webapp/index.html", "version" : "1.0.0", "license" : "MIT", "content" : {"TourShowFeatures" : {"id" : "openui5-tour", "name" : "OpenUI5 Tour", "type" : "control", "version" : "1.0.0", "description" : "An OpenUI5 library to give a guided tour through your UI5 webapp.", "samples" : [{"id" : "openui5-tourPlayground", "name" : "OpenUI5 Tour Playground", "description" : "An interactive playground for openui5-tour", "url" : "https://mauriciolauffer.github.io/openui5-tour/demo/webapp/index.html"}]}}}} | json_instruct | {"type": "object", "properties": {"openui5.tour": {"type": "object", "properties": {"icon": {"type": "string"}, "name": {"type": "string"}, "description": {"type": "string"}, "source": {"type": "string"}, "documentation": {"type": "string"}, "demo": {"type": "string"}, "version": {"type": "string"}, "license": {"type": "string"}, "content": {"type": "object", "properties": {"TourShowFeatures": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "type": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "samples": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "description": {"type": "string"}, "url": {"type": "string"}}, "required": ["id", "name", "description", "url"]}}}, "required": ["id", "name", "type", "version", "description", "samples"]}}, "required": ["TourShowFeatures"]}}, "required": ["icon", "name", "description", "source", "documentation", "demo", "version", "license", "content"]}}, "required": ["openui5.tour"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"variants": {"type": "object", "properties": {"": {"type": "object", "properties": {"model": {"type": "string"}}, "required": ["model"]}}, "required": [""]}}, "required": ["variants"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"variants" : {"" : {"model" : "emendatusenigmatica:block/zinc_mossy_stone_ore"}}} | json_instruct | {"type": "object", "properties": {"variants": {"type": "object", "properties": {"": {"type": "object", "properties": {"model": {"type": "string"}}, "required": ["model"]}}, "required": [""]}}, "required": ["variants"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"name": {"type": "string"}, "derive": {"type": "string"}, "uses": {"type": "array", "items": {"type": "string"}}, "inline": {"type": "boolean"}, "prepend_required_types": {"type": "boolean"}, "extra_types": {"type": "array", "items": {"type": "string"}}, "extra_wheres": {"type": "array", "items": {}}, "constructor_fields": {"type": "array", "items": {}}, "fields": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "field_type": {"type": "string"}, "builder_type": {"type": "string"}, "optional": {"type": "boolean"}}, "required": ["name", "field_type", "builder_type", "optional"]}}}, "required": ["name", "derive", "uses", "inline", "prepend_required_types", "extra_types", "extra_wheres", "constructor_fields", "fields"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "PrometheusMetricBuilder", "derive" : "Debug, Clone", "uses" : ["std::marker::PhantomData", "crate::{PrometheusMetric, MetricType}"], "inline" : true, "prepend_required_types" : true, "extra_types" : ["'a"], "extra_wheres" : [], "constructor_fields" : [], "fields" : [{"name" : "name", "field_type" : "&'a str", "builder_type" : "NameSet", "optional" : false}, {"name" : "metric_type", "field_type" : "MetricType", "builder_type" : "MetricTypeSet", "optional" : false, "initializer" : "MetricType::Gauge"}, {"name" : "help", "field_type" : "&'a str", "builder_type" : "HelpSet", "optional" : false}]} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "derive": {"type": "string"}, "uses": {"type": "array", "items": {"type": "string"}}, "inline": {"type": "boolean"}, "prepend_required_types": {"type": "boolean"}, "extra_types": {"type": "array", "items": {"type": "string"}}, "extra_wheres": {"type": "array", "items": {}}, "constructor_fields": {"type": "array", "items": {}}, "fields": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "field_type": {"type": "string"}, "builder_type": {"type": "string"}, "optional": {"type": "boolean"}}, "required": ["name", "field_type", "builder_type", "optional"]}}}, "required": ["name", "derive", "uses", "inline", "prepend_required_types", "extra_types", "extra_wheres", "constructor_fields", "fields"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"WindowWidth": {"type": "integer"}, "WindowHeight": {"type": "integer"}, "Fullscreen": {"type": "boolean"}, "AntiAliasingLevel": {"type": "integer"}, "VSync": {"type": "boolean"}, "FramerateLimit": {"type": "integer"}, "Automatic GL Version": {"type": "boolean"}, "GLMajor": {"type": "integer"}, "GLMinor": {"type": "integer"}, "FontLocation": {"type": "string"}, "GuiConfigLocation": {"type": "string"}}, "required": ["WindowWidth", "WindowHeight", "Fullscreen", "AntiAliasingLevel", "VSync", "FramerateLimit", "Automatic GL Version", "GLMajor", "GLMinor", "FontLocation", "GuiConfigLocation"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"WindowWidth" : 1920, "WindowHeight" : 1080, "Fullscreen" : false, "AntiAliasingLevel" : 0, "VSync" : false, "FramerateLimit" : 0, "Automatic GL Version" : true, "GLMajor" : 3, "GLMinor" : 0, "FontLocation" : "fonts/DejaVuSans.ttf", "GuiConfigLocation" : "widgets/Black.txt"} | json_instruct | {"type": "object", "properties": {"WindowWidth": {"type": "integer"}, "WindowHeight": {"type": "integer"}, "Fullscreen": {"type": "boolean"}, "AntiAliasingLevel": {"type": "integer"}, "VSync": {"type": "boolean"}, "FramerateLimit": {"type": "integer"}, "Automatic GL Version": {"type": "boolean"}, "GLMajor": {"type": "integer"}, "GLMinor": {"type": "integer"}, "FontLocation": {"type": "string"}, "GuiConfigLocation": {"type": "string"}}, "required": ["WindowWidth", "WindowHeight", "Fullscreen", "AntiAliasingLevel", "VSync", "FramerateLimit", "Automatic GL Version", "GLMajor", "GLMinor", "FontLocation", "GuiConfigLocation"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"publisher_name": {"type": "string"}, "journals": {"type": "integer"}, "scihub": {"type": "integer"}, "crossref_open_access": {"type": "integer"}, "crossref_active": {"type": "integer"}, "crossref": {"type": "integer"}, "coverage": {"type": "number"}, "publisher_slug": {"type": "string"}, "access_logs": {"type": "object", "properties": {"downloads": {"type": "number"}, "visitors": {"type": "number"}, "countries": {"type": "number"}, "days": {"type": "number"}, "months": {"type": "number"}, "n_articles_requested": {"type": "integer"}, "n_articles": {"type": "integer"}}, "required": ["downloads", "visitors", "countries", "days", "months", "n_articles_requested", "n_articles"]}}, "required": ["publisher_name", "journals", "scihub", "crossref_open_access", "crossref_active", "crossref", "coverage", "publisher_slug", "access_logs"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"publisher_name" : "Physicians Postgraduate Press Inc.", "journals" : 3, "scihub" : 41, "crossref_open_access" : 0, "crossref_active" : 6965, "crossref" : 7734, "coverage" : 0.00530127, "publisher_slug" : "physicians-postgraduate-press-inc", "access_logs" : {"downloads" : 0.00572, "visitors" : 0.00572, "countries" : 0.00572, "days" : 0.00572, "months" : 0.00429, "n_articles_requested" : 2, "n_articles" : 699}} | json_instruct | {"type": "object", "properties": {"publisher_name": {"type": "string"}, "journals": {"type": "integer"}, "scihub": {"type": "integer"}, "crossref_open_access": {"type": "integer"}, "crossref_active": {"type": "integer"}, "crossref": {"type": "integer"}, "coverage": {"type": "number"}, "publisher_slug": {"type": "string"}, "access_logs": {"type": "object", "properties": {"downloads": {"type": "number"}, "visitors": {"type": "number"}, "countries": {"type": "number"}, "days": {"type": "number"}, "months": {"type": "number"}, "n_articles_requested": {"type": "integer"}, "n_articles": {"type": "integer"}}, "required": ["downloads", "visitors", "countries", "days", "months", "n_articles_requested", "n_articles"]}}, "required": ["publisher_name", "journals", "scihub", "crossref_open_access", "crossref_active", "crossref", "coverage", "publisher_slug", "access_logs"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "version": {"type": "string"}, "private": {"type": "boolean"}, "license": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "scripts": {"type": "object", "properties": {"//starting": {"type": "string"}, "start": {"type": "string"}, "//test": {"type": "string"}, "test": {"type": "string"}}, "required": ["//starting", "start", "//test", "test"]}, "dependencies": {"type": "object", "properties": {"http-server": {"type": "string"}}, "required": ["http-server"]}}, "required": ["name", "description", "version", "private", "license", "scripts", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "hackafe-website", "description" : "Hackafe Website", "version" : "0.0.1", "private" : true, "license" : {"type" : "MIT", "url" : "https://github.com/Hackafe/insider/blob/master/LICENSE.txt"}, "scripts" : {"//starting" : "-", "start" : "http-server public", "//test" : "-", "test" : "echo 'No tests defined, yet'"}, "dependencies" : {"http-server" : "^0.8.5"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "version": {"type": "string"}, "private": {"type": "boolean"}, "license": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "scripts": {"type": "object", "properties": {"//starting": {"type": "string"}, "start": {"type": "string"}, "//test": {"type": "string"}, "test": {"type": "string"}}, "required": ["//starting", "start", "//test", "test"]}, "dependencies": {"type": "object", "properties": {"http-server": {"type": "string"}}, "required": ["http-server"]}}, "required": ["name", "description", "version", "private", "license", "scripts", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"@context": {"type": "string"}, "name": {"type": "string"}, "type": {"type": "string"}, "description": {"type": "string"}, "classification": {"type": "string"}, "issued_by": {"type": "string"}, "role": {"type": "string"}, "purpose": {"type": "string"}, "schema_base": {"type": "string"}, "attr_information": {"type": "object", "properties": {"disease": {"type": "string"}, "vaccineDescription": {"type": "string"}, "vaccineType": {"type": "string"}, "medicinalProductName": {"type": "string"}, "marketingAuthorizationHolder": {"type": "string"}, "dateOfVaccination": {"type": "string"}, "countryOfVaccination": {"type": "string"}}, "required": ["disease", "vaccineDescription", "vaccineType", "medicinalProductName", "marketingAuthorizationHolder", "dateOfVaccination", "countryOfVaccination"]}}, "required": ["@context", "name", "type", "description", "classification", "issued_by", "role", "purpose", "schema_base", "attr_information"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"@context" : "https://odca.tech/v1", "name" : "Vaccination Credential", "type" : "spec/overlay/format/1.0", "description" : "A form to be used for verifiable COVID-19 vaccination certificates for basic interoperability", "classification" : "GICS:35102020", "issued_by" : "OCA-FHIR-CLI, v0.1", "role" : "Holder", "purpose" : "Claim", "schema_base" : "hl:zQmWp2rwcD7uz28642FCiJbdbL1KH29efiPv2Y4hPQUdjtm", "attr_information" : {"disease" : "SNOMED CT", "vaccineDescription" : "SNOMED CT", "vaccineType" : "SNOMED CT or Anatomical Therapeutic Chemical Classification System", "medicinalProductName" : "Union Register of medicinal products or Vaccine medicinal products not centrally organized in the EU", "marketingAuthorizationHolder" : "Organisation code from EMA (SPOR-system for ISO IDMP) or Vaccine Manufacturers not in OMS", "dateOfVaccination" : "YYYY-MM-DD", "countryOfVaccination" : "ISO 3166-1 alpha-2"}} | json_instruct | {"type": "object", "properties": {"@context": {"type": "string"}, "name": {"type": "string"}, "type": {"type": "string"}, "description": {"type": "string"}, "classification": {"type": "string"}, "issued_by": {"type": "string"}, "role": {"type": "string"}, "purpose": {"type": "string"}, "schema_base": {"type": "string"}, "attr_information": {"type": "object", "properties": {"disease": {"type": "string"}, "vaccineDescription": {"type": "string"}, "vaccineType": {"type": "string"}, "medicinalProductName": {"type": "string"}, "marketingAuthorizationHolder": {"type": "string"}, "dateOfVaccination": {"type": "string"}, "countryOfVaccination": {"type": "string"}}, "required": ["disease", "vaccineDescription", "vaccineType", "medicinalProductName", "marketingAuthorizationHolder", "dateOfVaccination", "countryOfVaccination"]}}, "required": ["@context", "name", "type", "description", "classification", "issued_by", "role", "purpose", "schema_base", "attr_information"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "array", "items": {"type": "object", "properties": {"year": {"type": "integer"}, "sex": {"type": "string"}, "n": {"type": "integer"}, "prop": {"type": "number"}}, "required": ["year", "sex", "n", "prop"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"year" : 1960, "sex" : "M", "n" : 5, "prop" : 2.31e-06}, {"year" : 1973, "sex" : "M", "n" : 5, "prop" : 3.1e-06}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"year": {"type": "integer"}, "sex": {"type": "string"}, "n": {"type": "integer"}, "prop": {"type": "number"}}, "required": ["year", "sex", "n", "prop"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"stats": {"type": "object", "properties": {"minecraft:custom": {"type": "object", "properties": {"minecraft:time_since_rest": {"type": "integer"}, "minecraft:play_one_minute": {"type": "integer"}, "minecraft:leave_game": {"type": "integer"}, "minecraft:time_since_death": {"type": "integer"}, "minecraft:sneak_time": {"type": "integer"}}, "required": ["minecraft:time_since_rest", "minecraft:play_one_minute", "minecraft:leave_game", "minecraft:time_since_death", "minecraft:sneak_time"]}}, "required": ["minecraft:custom"]}, "DataVersion": {"type": "integer"}}, "required": ["stats", "DataVersion"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"stats" : {"minecraft:custom" : {"minecraft:time_since_rest" : 2621, "minecraft:play_one_minute" : 2621, "minecraft:leave_game" : 1, "minecraft:time_since_death" : 2621, "minecraft:sneak_time" : 1118}}, "DataVersion" : 2586} | json_instruct | {"type": "object", "properties": {"stats": {"type": "object", "properties": {"minecraft:custom": {"type": "object", "properties": {"minecraft:time_since_rest": {"type": "integer"}, "minecraft:play_one_minute": {"type": "integer"}, "minecraft:leave_game": {"type": "integer"}, "minecraft:time_since_death": {"type": "integer"}, "minecraft:sneak_time": {"type": "integer"}}, "required": ["minecraft:time_since_rest", "minecraft:play_one_minute", "minecraft:leave_game", "minecraft:time_since_death", "minecraft:sneak_time"]}}, "required": ["minecraft:custom"]}, "DataVersion": {"type": "integer"}}, "required": ["stats", "DataVersion"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"ClassName": {"type": "string"}, "Size": {"type": "integer"}, "Grade": {"type": "integer"}, "Type": {"type": "string"}, "Name": {"type": "string"}, "Description": {"type": "string"}}, "required": ["ClassName", "Size", "Grade", "Type", "Name", "Description"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"ClassName" : "Carryable_1H_CY_toy_plushy_hercules_1_a", "Size" : 1, "Grade" : 1, "Type" : "Misc.Personal", "Name" : "C2 Hercules Starlifter Plushie", "Description" : "Get your hands on Crusader's cargo hauling stalwart with this plushie version of the C2 Hercules Starlifter."} | json_instruct | {"type": "object", "properties": {"ClassName": {"type": "string"}, "Size": {"type": "integer"}, "Grade": {"type": "integer"}, "Type": {"type": "string"}, "Name": {"type": "string"}, "Description": {"type": "string"}}, "required": ["ClassName", "Size", "Grade", "Type", "Name", "Description"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"word" : "submonish", "definition" : "To suggest; to prompt. [R.] \"The submonishing inclinations of my senses.\" T. Granger."} | json_instruct | {"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"kind": {"type": "string"}, "name": {"type": "string"}, "href": {"type": "string"}, "description": {"type": "string"}, "refs": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "href": {"type": "string"}, "description": {"type": "string"}}, "required": ["name", "href", "description"]}}}, "required": ["kind", "name", "href", "description", "refs"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"kind" : "Type", "name" : "DOMException", "href" : "https://developer.mozilla.org/en-US/docs/Web/API/DOMException", "description" : "The DOMException interface represents an abnormal event (called an exception) that occurs as a result of calling a method or accessing a property of a web API. This is how error conditions are described in web APIs.", "refs" : [{"name" : "WebIDL Level 1", "href" : "https://heycam.github.io/webidl/#idl-DOMException", "description" : "(WebIDL 1) # idl-DOMException"}]} | json_instruct | {"type": "object", "properties": {"kind": {"type": "string"}, "name": {"type": "string"}, "href": {"type": "string"}, "description": {"type": "string"}, "refs": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "href": {"type": "string"}, "description": {"type": "string"}}, "required": ["name", "href", "description"]}}}, "required": ["kind", "name", "href", "description", "refs"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"private": {"type": "boolean"}, "name": {"type": "string"}, "scripts": {"type": "object", "properties": {"resolve-workspace-deps": {"type": "string"}, ".:resolve-workspace-deps:run-script": {"type": "string"}, ".:resolve-workspace-deps:update-lockfile": {"type": "string"}, ".:resolve-workspace-deps:git-commit": {"type": "string"}, "lint": {"type": "string"}, "lint-and-fix": {"type": "string"}}, "required": ["resolve-workspace-deps", ".:resolve-workspace-deps:run-script", ".:resolve-workspace-deps:update-lockfile", ".:resolve-workspace-deps:git-commit", "lint", "lint-and-fix"]}, "devDependencies": {"type": "object", "properties": {"@rocket.chat/eslint-config-alt": {"type": "string"}, "@rocket.chat/prettier-config": {"type": "string"}, "@types/node": {"type": "string"}, "@typescript-eslint/parser": {"type": "string"}, "cross-env": {"type": "string"}, "endent": {"type": "string"}, "eslint": {"type": "string"}, "fast-glob": {"type": "string"}, "npm-run-all": {"type": "string"}, "prettier": {"type": "string"}, "ts-node": {"type": "string"}, "typescript": {"type": "string"}}, "required": ["@rocket.chat/eslint-config-alt", "@rocket.chat/prettier-config", "@types/node", "@typescript-eslint/parser", "cross-env", "endent", "eslint", "fast-glob", "npm-run-all", "prettier", "ts-node", "typescript"]}, "version": {"type": "string"}}, "required": ["private", "name", "scripts", "devDependencies", "version"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"private" : true, "name" : "scripts", "scripts" : {"resolve-workspace-deps" : "run-s .:resolve-workspace-deps:run-script .:resolve-workspace-deps:update-lockfile .:resolve-workspace-deps:git-commit", ".:resolve-workspace-deps:run-script" : "ts-node src/resolve-workspace-deps.ts", ".:resolve-workspace-deps:update-lockfile" : "cross-env YARN_ENABLE_IMMUTABLE_INSTALLS=false yarn", ".:resolve-workspace-deps:git-commit" : "git -c user.name='Rocket.Chat' -c user.email='support@rocket.chat' commit --all --amend --no-edit --no-verify", "lint" : "eslint .", "lint-and-fix" : "eslint --fix ."}, "devDependencies" : {"@rocket.chat/eslint-config-alt" : "workspace:~", "@rocket.chat/prettier-config" : "workspace:~", "@types/node" : "~15.14.9", "@typescript-eslint/parser" : "~5.11.0", "cross-env" : "^7.0.3", "endent" : "^2.1.0", "eslint" : "~8.8.0", "fast-glob" : "~3.2.11", "npm-run-all" : "^4.1.5", "prettier" : "~2.5.1", "ts-node" : "~10.5.0", "typescript" : "~4.3.5"}, "version" : "0.31.6"} | json_instruct | {"type": "object", "properties": {"private": {"type": "boolean"}, "name": {"type": "string"}, "scripts": {"type": "object", "properties": {"resolve-workspace-deps": {"type": "string"}, ".:resolve-workspace-deps:run-script": {"type": "string"}, ".:resolve-workspace-deps:update-lockfile": {"type": "string"}, ".:resolve-workspace-deps:git-commit": {"type": "string"}, "lint": {"type": "string"}, "lint-and-fix": {"type": "string"}}, "required": ["resolve-workspace-deps", ".:resolve-workspace-deps:run-script", ".:resolve-workspace-deps:update-lockfile", ".:resolve-workspace-deps:git-commit", "lint", "lint-and-fix"]}, "devDependencies": {"type": "object", "properties": {"@rocket.chat/eslint-config-alt": {"type": "string"}, "@rocket.chat/prettier-config": {"type": "string"}, "@types/node": {"type": "string"}, "@typescript-eslint/parser": {"type": "string"}, "cross-env": {"type": "string"}, "endent": {"type": "string"}, "eslint": {"type": "string"}, "fast-glob": {"type": "string"}, "npm-run-all": {"type": "string"}, "prettier": {"type": "string"}, "ts-node": {"type": "string"}, "typescript": {"type": "string"}}, "required": ["@rocket.chat/eslint-config-alt", "@rocket.chat/prettier-config", "@types/node", "@typescript-eslint/parser", "cross-env", "endent", "eslint", "fast-glob", "npm-run-all", "prettier", "ts-node", "typescript"]}, "version": {"type": "string"}}, "required": ["private", "name", "scripts", "devDependencies", "version"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"parent": {"type": "string"}}, "required": ["parent"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"parent" : "player_companions:item/template/spawn_egg"} | json_instruct | {"type": "object", "properties": {"parent": {"type": "string"}}, "required": ["parent"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}}, "required": ["start"]}, "devDependencies": {"type": "object", "properties": {"bower": {"type": "string"}, "chai": {"type": "string"}, "grunt": {"type": "string"}, "grunt-contrib-compass": {"type": "string"}, "grunt-contrib-jshint": {"type": "string"}, "grunt-contrib-requirejs": {"type": "string"}, "grunt-contrib-uglify": {"type": "string"}, "grunt-contrib-watch": {"type": "string"}, "grunt-mocha": {"type": "string"}, "matchdep": {"type": "string"}, "mocha": {"type": "string"}, "sinon": {"type": "string"}}, "required": ["bower", "chai", "grunt", "grunt-contrib-compass", "grunt-contrib-jshint", "grunt-contrib-requirejs", "grunt-contrib-uglify", "grunt-contrib-watch", "grunt-mocha", "matchdep", "mocha", "sinon"]}, "dependencies": {"type": "object", "properties": {"express": {"type": "string"}, "socket.io": {"type": "string"}}, "required": ["express", "socket.io"]}}, "required": ["name", "version", "description", "scripts", "devDependencies", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "test-task", "version" : "1.0.0", "description" : "test", "scripts" : {"start" : "node backend/server.js"}, "devDependencies" : {"bower" : "^1.7.7", "chai" : "^3.5.0", "grunt" : "^0.4.5", "grunt-contrib-compass" : "^1.1.1", "grunt-contrib-jshint" : "^1.0.0", "grunt-contrib-requirejs" : "^1.0.0", "grunt-contrib-uglify" : "^1.0.1", "grunt-contrib-watch" : "^1.0.0", "grunt-mocha" : "^0.4.15", "matchdep" : "^1.0.1", "mocha" : "^2.4.5", "sinon" : "^1.17.3"}, "dependencies" : {"express" : "^2.5.5", "socket.io" : "^0.9.14"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}}, "required": ["start"]}, "devDependencies": {"type": "object", "properties": {"bower": {"type": "string"}, "chai": {"type": "string"}, "grunt": {"type": "string"}, "grunt-contrib-compass": {"type": "string"}, "grunt-contrib-jshint": {"type": "string"}, "grunt-contrib-requirejs": {"type": "string"}, "grunt-contrib-uglify": {"type": "string"}, "grunt-contrib-watch": {"type": "string"}, "grunt-mocha": {"type": "string"}, "matchdep": {"type": "string"}, "mocha": {"type": "string"}, "sinon": {"type": "string"}}, "required": ["bower", "chai", "grunt", "grunt-contrib-compass", "grunt-contrib-jshint", "grunt-contrib-requirejs", "grunt-contrib-uglify", "grunt-contrib-watch", "grunt-mocha", "matchdep", "mocha", "sinon"]}, "dependencies": {"type": "object", "properties": {"express": {"type": "string"}, "socket.io": {"type": "string"}}, "required": ["express", "socket.io"]}}, "required": ["name", "version", "description", "scripts", "devDependencies", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"globalDependencies": {"type": "object", "properties": {"node": {"type": "string"}, "react": {"type": "string"}}, "required": ["node", "react"]}}, "required": ["globalDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"globalDependencies" : {"node" : "registry:dt/node#6.0.0+20160801161248", "react" : "registry:dt/react#0.14.0+20160801203155"}} | json_instruct | {"type": "object", "properties": {"globalDependencies": {"type": "object", "properties": {"node": {"type": "string"}, "react": {"type": "string"}}, "required": ["node", "react"]}}, "required": ["globalDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"title": {"type": "string"}, "type": {"type": "string"}}, "required": ["title", "type"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"title" : "Dial to a phone number from Twilio Client", "type" : "server"} | json_instruct | {"type": "object", "properties": {"title": {"type": "string"}, "type": {"type": "string"}}, "required": ["title", "type"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"install": {"type": "string"}, "2.6.5": {"type": "string"}, "2.6.6": {"type": "string"}, "2.6.7": {"type": "string"}, "2.6.8": {"type": "string"}, "2.6.81": {"type": "string"}, "2.6.93": {"type": "string"}, "2.6.94": {"type": "string"}, "2.6.95": {"type": "string"}, "2.6.96": {"type": "string"}, "2.6.97": {"type": "string"}, "2.6.98": {"type": "string"}, "2.6.99": {"type": "string"}}, "required": ["install", "2.6.5", "2.6.6", "2.6.7", "2.6.8", "2.6.81", "2.6.93", "2.6.94", "2.6.95", "2.6.96", "2.6.97", "2.6.98", "2.6.99"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"install" : "changelog/install.txt", "2.6.5" : "changelog/2.6.5.txt", "2.6.6" : "changelog/2.6.6.txt", "2.6.7" : "changelog/2.6.7.txt", "2.6.8" : "changelog/2.6.8.txt", "2.6.81" : "changelog/2.6.81.txt", "2.6.93" : "changelog/2.6.93.txt", "2.6.94" : "changelog/2.6.94.txt", "2.6.95" : "changelog/2.6.95.txt", "2.6.96" : "changelog/2.6.96.txt", "2.6.97" : "changelog/2.6.97.txt", "2.6.98" : "changelog/2.6.98.txt", "2.6.99" : "changelog/2.6.99.txt"} | json_instruct | {"type": "object", "properties": {"install": {"type": "string"}, "2.6.5": {"type": "string"}, "2.6.6": {"type": "string"}, "2.6.7": {"type": "string"}, "2.6.8": {"type": "string"}, "2.6.81": {"type": "string"}, "2.6.93": {"type": "string"}, "2.6.94": {"type": "string"}, "2.6.95": {"type": "string"}, "2.6.96": {"type": "string"}, "2.6.97": {"type": "string"}, "2.6.98": {"type": "string"}, "2.6.99": {"type": "string"}}, "required": ["install", "2.6.5", "2.6.6", "2.6.7", "2.6.8", "2.6.81", "2.6.93", "2.6.94", "2.6.95", "2.6.96", "2.6.97", "2.6.98", "2.6.99"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "array", "items": {"type": "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" : "0x1e700861dcbc06c9a93fb17e556150e120cb6f8d", "tool" : "osiris", "start" : 1564601924.5410116, "end" : 1564601977.6867273, "duration" : 53.14571571350098, "analysis" : [{"errors" : [], "file" : "/unique_chucks/19/0x1e700861dcbc06c9a93fb17e556150e120cb6f8d.sol", "name" : "TheSchmeckle"}]} | 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#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"m_GameObject": {"type": "object", "properties": {"m_FileID": {"type": "integer"}, "m_PathID": {"type": "integer"}}, "required": ["m_FileID", "m_PathID"]}, "m_Enabled": {"type": "integer"}, "m_Script": {"type": "object", "properties": {"m_FileID": {"type": "integer"}, "m_PathID": {"type": "integer"}}, "required": ["m_FileID", "m_PathID"]}, "m_Name": {"type": "string"}, "vOrderList": {"type": "array", "items": {"type": "object", "properties": {"eOrder": {"type": "integer"}, "vsParam": {"type": "array", "items": {"type": "string"}}}, "required": ["eOrder", "vsParam"]}}}, "required": ["m_GameObject", "m_Enabled", "m_Script", "m_Name", "vOrderList"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"m_GameObject" : {"m_FileID" : 0, "m_PathID" : 0}, "m_Enabled" : 1, "m_Script" : {"m_FileID" : 0, "m_PathID" : 6520365622649918000}, "m_Name" : "QuestADV_010", "vOrderList" : [{"eOrder" : 92, "vsParam" : ["1"]}, {"eOrder" : 18, "vsParam" : ["1010", "\u30da\u30d1\u30fc\u30df\u30f3\u30c8", "\u306a\u3093\u304b\u3044\u308d\u3044\u308d\u3042\u3063\u3066\u75b2\u308c\u3061\u3083\u3063\u305f\u306d\u30fc\u3002\n\u6c17\u6674\u3089\u3057\u306b\u5916\u306b\u884c\u3053\u3046\u3088\u3001\u5916\uff01", "1", "", "", "peppermint_t_003"]}, {"eOrder" : 18, "vsParam" : ["1010", "\u30da\u30d1\u30fc\u30df\u30f3\u30c8", "\u3093\uff1f\u2026\u2026", "3", "", "", "peppermint_t_004"]}, {"eOrder" : 8, "vsParam" : ["1"]}, {"eOrder" : 95, "vsParam" : ["39"]}, {"eOrder" : 18, "vsParam" : ["", "\u30d9\u30eb\u30ac\u30e2\u30c3\u30c8", "\u2026\u2026\u3053\u308c\u3067\u3088\u3057\u3001\u3068", "", "1", "", "bergamot_m_037"]}, {"eOrder" : 18, "vsParam" : ["1010", "\u30da\u30d1\u30fc\u30df\u30f3\u30c8", "\u3042\u308c\u3001\u30d9\u30eb\u30ac\u30e2\u30c3\u30c8\u305b\u3093\u305b\u30fc\uff1f\n\u63b2\u793a\u677f\u306b\u4f55\u304b\u8cbc\u3063\u3066\u308b\u306e\uff1f", "0", "", "", "peppermint_m_057"]}, {"eOrder" : 18, "vsParam" : ["", "\u30d9\u30eb\u30ac\u30e2\u30c3\u30c8", "\u3042\u3042\u3001\u3061\u3087\u3063\u3068\u3057\u305f\u4f9d\u983c\u3092\u306a\u3002\n[px]\u3002\u63b2\u793a\u677f\u306f\u5c0f\u307e\u3081\u306b\u78ba\u8a8d\u3057\u3066\u3044\u308b\u304b\uff1f", "", "1", "", "bergamot_m_038"]}, {"eOrder" : 18, "vsParam" : ["", "\u30d9\u30eb\u30ac\u30e2\u30c3\u30c8", "\u3053\u306e\u63b2\u793a\u677f\u306f\u3001\u5b66\u751f\u306b\u3068\u3063\u3066\u6700\u3082\u91cd\u8981\u3068\u8a00\u3063\u3066\u3044\u3044\u3002\n\u306a\u306b\u305b\u2015\u2015", "", "1", "", "bergamot_m_039"]}, {"eOrder" : 8, "vsParam" : ["1"]}, {"eOrder" : 92, "vsParam" : ["0"]}, {"eOrder" : 95, "vsParam" : ["0"]}]} | json_instruct | {"type": "object", "properties": {"m_GameObject": {"type": "object", "properties": {"m_FileID": {"type": "integer"}, "m_PathID": {"type": "integer"}}, "required": ["m_FileID", "m_PathID"]}, "m_Enabled": {"type": "integer"}, "m_Script": {"type": "object", "properties": {"m_FileID": {"type": "integer"}, "m_PathID": {"type": "integer"}}, "required": ["m_FileID", "m_PathID"]}, "m_Name": {"type": "string"}, "vOrderList": {"type": "array", "items": {"type": "object", "properties": {"eOrder": {"type": "integer"}, "vsParam": {"type": "array", "items": {"type": "string"}}}, "required": ["eOrder", "vsParam"]}}}, "required": ["m_GameObject", "m_Enabled", "m_Script", "m_Name", "vOrderList"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"id": {"type": "string"}, "startDate": {"type": "string"}, "expiresDate": {"type": "string"}, "email": {"type": "string"}, "emailVerified": {"type": "boolean"}, "firstName": {"type": "string"}, "lastName": {"type": "string"}, "mobile": {"type": "null"}, "mobileVerified": {"type": "boolean"}, "photoURL": {"type": "string"}, "status": {"type": "string"}, "autoExpired": {"type": "boolean"}, "formResponses": {"type": "object", "properties": {"id": {"type": "string"}, "responses": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "type": {"type": "string"}, "value": {"type": "string"}}, "required": ["id", "type", "value"]}}}, "required": ["id", "responses"]}, "host": {"type": "object", "properties": {"id": {"type": "string"}, "email": {"type": "string"}, "mobile": {"type": "string"}, "company": {"type": "null"}, "lastName": {"type": "string"}, "photoURL": {"type": "string"}, "firstName": {"type": "string"}, "hostGroup": {"type": "string"}, "hostGroupName": {"type": "string"}}, "required": ["id", "email", "mobile", "company", "lastName", "photoURL", "firstName", "hostGroup", "hostGroupName"]}, "company": {"type": "string"}, "site": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "name"]}, "visitorType": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "name"]}}, "required": ["id", "startDate", "expiresDate", "email", "emailVerified", "firstName", "lastName", "mobile", "mobileVerified", "photoURL", "status", "autoExpired", "formResponses", "host", "company", "site", "visitorType"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "ef078e77-6f6e-4830-8bca-9bc8b140d3c9", "startDate" : "2017-11-15T18:18:29.589Z", "expiresDate" : "2017-11-15T18:19:38.248Z", "email" : "craig+test@cognoa.com", "emailVerified" : false, "firstName" : "Craig", "lastName" : "Test", "mobile" : null, "mobileVerified" : false, "photoURL" : "https://sinecloud-prod-uploads.s3-ap-southeast-2.amazonaws.com/upload/9e67826d-37b3-4cf6-949d-9e598cb843c1/photo.jpeg", "status" : "expired", "autoExpired" : false, "formResponses" : {"id" : "619342e7-1801-4ebc-bb0b-138510cb60c7", "responses" : [{"id" : "ad45b3de-4b4b-48d2-90f6-85aa7757c357", "type" : "text", "value" : "To test the notification script"}, {"id" : "69fd1024-613b-40c5-b67b-58188f710cdf", "type" : "signature", "value" : "https://sinecloud-prod-uploads.s3-ap-southeast-2.amazonaws.com/upload/61f25d01-8386-4333-80bc-61c1b69c6f8b/photo.jpeg"}]}, "host" : {"id" : "5ca02f14-e2cd-4a9e-b65f-0db3b6ee4c2e", "email" : "craig@cognoa.com", "mobile" : "+16508514450", "company" : null, "lastName" : "Hughes", "photoURL" : "https://sinecloud-prod-uploads.s3-ap-southeast-2.amazonaws.com/upload/e12ca038-0669-4674-8fe5-d8698fd79e3a/profile.png", "firstName" : "Craig", "hostGroup" : "2e9b9f70-810c-4b75-82b6-8b368958b6d5", "hostGroupName" : "Engineering"}, "company" : "Cognoa, Inc.", "site" : {"id" : "32a80802-5766-457d-8aaf-3fb122411ec1", "name" : "Palo Alto HQ"}, "visitorType" : {"id" : "d26469bc-d541-481b-b2e9-3a3a80e1ecdc", "name" : "Visitor"}} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "startDate": {"type": "string"}, "expiresDate": {"type": "string"}, "email": {"type": "string"}, "emailVerified": {"type": "boolean"}, "firstName": {"type": "string"}, "lastName": {"type": "string"}, "mobile": {"type": "null"}, "mobileVerified": {"type": "boolean"}, "photoURL": {"type": "string"}, "status": {"type": "string"}, "autoExpired": {"type": "boolean"}, "formResponses": {"type": "object", "properties": {"id": {"type": "string"}, "responses": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "type": {"type": "string"}, "value": {"type": "string"}}, "required": ["id", "type", "value"]}}}, "required": ["id", "responses"]}, "host": {"type": "object", "properties": {"id": {"type": "string"}, "email": {"type": "string"}, "mobile": {"type": "string"}, "company": {"type": "null"}, "lastName": {"type": "string"}, "photoURL": {"type": "string"}, "firstName": {"type": "string"}, "hostGroup": {"type": "string"}, "hostGroupName": {"type": "string"}}, "required": ["id", "email", "mobile", "company", "lastName", "photoURL", "firstName", "hostGroup", "hostGroupName"]}, "company": {"type": "string"}, "site": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "name"]}, "visitorType": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "name"]}}, "required": ["id", "startDate", "expiresDate", "email", "emailVerified", "firstName", "lastName", "mobile", "mobileVerified", "photoURL", "status", "autoExpired", "formResponses", "host", "company", "site", "visitorType"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "array", "items": {"type": "object", "properties": {"merged": {"type": "string"}, "source": {"type": "string"}}, "required": ["merged", "source"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"merged" : "/Users/fst239/Downloads/android-MultiWindowPlayground/Application/build/intermediates/res/merged/debug/drawable-ldrtl-mdpi-v17/abc_spinner_mtrl_am_alpha.9.png", "source" : "/Users/fst239/Downloads/android-MultiWindowPlayground/Application/build/intermediates/exploded-aar/com.android.support/appcompat-v7/24.0.0-alpha1/res/drawable-ldrtl-mdpi-v17/abc_spinner_mtrl_am_alpha.9.png"}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"merged": {"type": "string"}, "source": {"type": "string"}}, "required": ["merged", "source"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"PREVALENCE_BY_GENDER_AGE_YEAR": {"type": "object", "properties": {"TRELLIS_NAME": {"type": "array", "items": {}}, "SERIES_NAME": {"type": "array", "items": {}}, "X_CALENDAR_YEAR": {"type": "array", "items": {}}, "Y_PREVALENCE_1000PP": {"type": "array", "items": {}}}, "required": ["TRELLIS_NAME", "SERIES_NAME", "X_CALENDAR_YEAR", "Y_PREVALENCE_1000PP"]}, "PREVALENCE_BY_MONTH": {"type": "object", "properties": {"X_CALENDAR_MONTH": {"type": "array", "items": {}}, "Y_PREVALENCE_1000PP": {"type": "array", "items": {}}}, "required": ["X_CALENDAR_MONTH", "Y_PREVALENCE_1000PP"]}, "CONDITIONS_BY_TYPE": {"type": "object", "properties": {"CONCEPT_NAME": {"type": "string"}, "COUNT_VALUE": {"type": "integer"}}, "required": ["CONCEPT_NAME", "COUNT_VALUE"]}, "AGE_AT_FIRST_DIAGNOSIS": {"type": "object", "properties": {"CATEGORY": {"type": "array", "items": {"type": "string"}}, "MIN_VALUE": {"type": "array", "items": {"type": "integer"}}, "P10_VALUE": {"type": "array", "items": {"type": "integer"}}, "P25_VALUE": {"type": "array", "items": {"type": "integer"}}, "MEDIAN_VALUE": {"type": "array", "items": {"type": "integer"}}, "P75_VALUE": {"type": "array", "items": {"type": "integer"}}, "P90_VALUE": {"type": "array", "items": {"type": "integer"}}, "MAX_VALUE": {"type": "array", "items": {"type": "integer"}}}, "required": ["CATEGORY", "MIN_VALUE", "P10_VALUE", "P25_VALUE", "MEDIAN_VALUE", "P75_VALUE", "P90_VALUE", "MAX_VALUE"]}}, "required": ["PREVALENCE_BY_GENDER_AGE_YEAR", "PREVALENCE_BY_MONTH", "CONDITIONS_BY_TYPE", "AGE_AT_FIRST_DIAGNOSIS"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"PREVALENCE_BY_GENDER_AGE_YEAR" : {"TRELLIS_NAME" : [], "SERIES_NAME" : [], "X_CALENDAR_YEAR" : [], "Y_PREVALENCE_1000PP" : []}, "PREVALENCE_BY_MONTH" : {"X_CALENDAR_MONTH" : [], "Y_PREVALENCE_1000PP" : []}, "CONDITIONS_BY_TYPE" : {"CONCEPT_NAME" : "Observation recorded from EHR", "COUNT_VALUE" : 41}, "AGE_AT_FIRST_DIAGNOSIS" : {"CATEGORY" : ["MALE", "FEMALE"], "MIN_VALUE" : [20, 22], "P10_VALUE" : [25, 34], "P25_VALUE" : [35, 46], "MEDIAN_VALUE" : [51, 53], "P75_VALUE" : [58, 66], "P90_VALUE" : [70, 71], "MAX_VALUE" : [80, 91]}} | json_instruct | {"type": "object", "properties": {"PREVALENCE_BY_GENDER_AGE_YEAR": {"type": "object", "properties": {"TRELLIS_NAME": {"type": "array", "items": {}}, "SERIES_NAME": {"type": "array", "items": {}}, "X_CALENDAR_YEAR": {"type": "array", "items": {}}, "Y_PREVALENCE_1000PP": {"type": "array", "items": {}}}, "required": ["TRELLIS_NAME", "SERIES_NAME", "X_CALENDAR_YEAR", "Y_PREVALENCE_1000PP"]}, "PREVALENCE_BY_MONTH": {"type": "object", "properties": {"X_CALENDAR_MONTH": {"type": "array", "items": {}}, "Y_PREVALENCE_1000PP": {"type": "array", "items": {}}}, "required": ["X_CALENDAR_MONTH", "Y_PREVALENCE_1000PP"]}, "CONDITIONS_BY_TYPE": {"type": "object", "properties": {"CONCEPT_NAME": {"type": "string"}, "COUNT_VALUE": {"type": "integer"}}, "required": ["CONCEPT_NAME", "COUNT_VALUE"]}, "AGE_AT_FIRST_DIAGNOSIS": {"type": "object", "properties": {"CATEGORY": {"type": "array", "items": {"type": "string"}}, "MIN_VALUE": {"type": "array", "items": {"type": "integer"}}, "P10_VALUE": {"type": "array", "items": {"type": "integer"}}, "P25_VALUE": {"type": "array", "items": {"type": "integer"}}, "MEDIAN_VALUE": {"type": "array", "items": {"type": "integer"}}, "P75_VALUE": {"type": "array", "items": {"type": "integer"}}, "P90_VALUE": {"type": "array", "items": {"type": "integer"}}, "MAX_VALUE": {"type": "array", "items": {"type": "integer"}}}, "required": ["CATEGORY", "MIN_VALUE", "P10_VALUE", "P25_VALUE", "MEDIAN_VALUE", "P75_VALUE", "P90_VALUE", "MAX_VALUE"]}}, "required": ["PREVALENCE_BY_GENDER_AGE_YEAR", "PREVALENCE_BY_MONTH", "CONDITIONS_BY_TYPE", "AGE_AT_FIRST_DIAGNOSIS"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "keywords": {"type": "array", "items": {}}, "author": {"type": "string"}, "license": {"type": "string"}, "bin": {"type": "object", "properties": {"when": {"type": "string"}, "today": {"type": "string"}, "now": {"type": "string"}, "year": {"type": "string"}, "month": {"type": "string"}, "day": {"type": "string"}, "hour": {"type": "string"}, "minute": {"type": "string"}, "second": {"type": "string"}}, "required": ["when", "today", "now", "year", "month", "day", "hour", "minute", "second"]}}, "required": ["name", "version", "description", "main", "scripts", "keywords", "author", "license", "bin"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "date", "version" : "1.0.0", "description" : "", "main" : "index.js", "scripts" : {"test" : "echo \"Error: no test specified\" && exit 1"}, "keywords" : [], "author" : "", "license" : "ISC", "bin" : {"when" : "./bin/when", "today" : "./bin/today", "now" : "./bin/now", "year" : "./bin/year", "month" : "./bin/month", "day" : "./bin/day", "hour" : "./bin/hour", "minute" : "./bin/minute", "second" : "./bin/second"}} | 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"]}, "keywords": {"type": "array", "items": {}}, "author": {"type": "string"}, "license": {"type": "string"}, "bin": {"type": "object", "properties": {"when": {"type": "string"}, "today": {"type": "string"}, "now": {"type": "string"}, "year": {"type": "string"}, "month": {"type": "string"}, "day": {"type": "string"}, "hour": {"type": "string"}, "minute": {"type": "string"}, "second": {"type": "string"}}, "required": ["when", "today", "now", "year", "month", "day", "hour", "minute", "second"]}}, "required": ["name", "version", "description", "main", "scripts", "keywords", "author", "license", "bin"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"status": {"type": "integer"}, "data": {"type": "object", "properties": {"totalSubs": {"type": "integer"}, "subsInEachSource": {"type": "object", "properties": {"feedly": {"type": "integer"}, "inoreader": {"type": "integer"}, "feedsPub": {"type": "integer"}}, "required": ["feedly", "inoreader", "feedsPub"]}, "failedSources": {"type": "object", "properties": {"inoreader": {"type": "string"}}, "required": ["inoreader"]}}, "required": ["totalSubs", "subsInEachSource", "failedSources"]}, "lastModified": {"type": "integer"}}, "required": ["status", "data", "lastModified"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"status" : 200, "data" : {"totalSubs" : 45, "subsInEachSource" : {"feedly" : 26, "inoreader" : 0, "feedsPub" : 19}, "failedSources" : {"inoreader" : "RSS feed not found on Inoreader"}}, "lastModified" : 1632701383013} | json_instruct | {"type": "object", "properties": {"status": {"type": "integer"}, "data": {"type": "object", "properties": {"totalSubs": {"type": "integer"}, "subsInEachSource": {"type": "object", "properties": {"feedly": {"type": "integer"}, "inoreader": {"type": "integer"}, "feedsPub": {"type": "integer"}}, "required": ["feedly", "inoreader", "feedsPub"]}, "failedSources": {"type": "object", "properties": {"inoreader": {"type": "string"}}, "required": ["inoreader"]}}, "required": ["totalSubs", "subsInEachSource", "failedSources"]}, "lastModified": {"type": "integer"}}, "required": ["status", "data", "lastModified"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"word": {"type": "string"}, "definitions": {"type": "array", "items": {"type": "string"}}, "parts-of-speech": {"type": "string"}}, "required": ["word", "definitions", "parts-of-speech"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"word" : "Simply", "definitions" : ["In a straightforward or plain manner.", "Merely; just.", "Absolutely; completely (used for emphasis)", "Used to introduce a short summary of a situation."], "parts-of-speech" : "Adverb"} | json_instruct | {"type": "object", "properties": {"word": {"type": "string"}, "definitions": {"type": "array", "items": {"type": "string"}}, "parts-of-speech": {"type": "string"}}, "required": ["word", "definitions", "parts-of-speech"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"name": {"type": "string"}, "displayName": {"type": "string"}}, "required": ["name", "displayName"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "ReactNativeAuth", "displayName" : "ReactNativeAuth"} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "displayName": {"type": "string"}}, "required": ["name", "displayName"], "$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"}, "private": {"type": "boolean"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}}, "required": ["start"]}, "dependencies": {"type": "object", "properties": {"bcryptjs": {"type": "string"}, "body-parser": {"type": "string"}, "connect-flash": {"type": "string"}, "cookie-parser": {"type": "string"}, "debug": {"type": "string"}, "express": {"type": "string"}, "express-session": {"type": "string"}, "express-validator": {"type": "string"}, "handlebars-helpers": {"type": "string"}, "hbs": {"type": "string"}, "morgan": {"type": "string"}, "mysql": {"type": "string"}, "passport": {"type": "string"}, "passport-http": {"type": "string"}, "passport-local": {"type": "string"}, "serve-favicon": {"type": "string"}, "socket.io": {"type": "string"}, "mqtt": {"type": "string"}, "util": {"type": "string"}, "net": {"type": "string"}}, "required": ["bcryptjs", "body-parser", "connect-flash", "cookie-parser", "debug", "express", "express-session", "express-validator", "handlebars-helpers", "hbs", "morgan", "mysql", "passport", "passport-http", "passport-local", "serve-favicon", "socket.io", "mqtt", "util", "net"]}}, "required": ["name", "version", "private", "scripts", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "nuvistaserver", "version" : "0.0.0", "private" : true, "scripts" : {"start" : "node ./bin/www"}, "dependencies" : {"bcryptjs" : "~1.0.2", "body-parser" : "~1.15.2", "connect-flash" : "~0.1.1", "cookie-parser" : "~1.4.3", "debug" : "~2.2.0", "express" : "~4.14.0", "express-session" : "~1.0.0", "express-validator" : "*", "handlebars-helpers" : "^0.8.0", "hbs" : "~4.0.1", "morgan" : "~1.7.0", "mysql" : "2.12.0", "passport" : "*", "passport-http" : "*", "passport-local" : "*", "serve-favicon" : "~2.3.0", "socket.io" : "~1.7.3", "mqtt" : "~2.5.0", "util" : "~0.10.3", "net" : "~1.0.2"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "private": {"type": "boolean"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}}, "required": ["start"]}, "dependencies": {"type": "object", "properties": {"bcryptjs": {"type": "string"}, "body-parser": {"type": "string"}, "connect-flash": {"type": "string"}, "cookie-parser": {"type": "string"}, "debug": {"type": "string"}, "express": {"type": "string"}, "express-session": {"type": "string"}, "express-validator": {"type": "string"}, "handlebars-helpers": {"type": "string"}, "hbs": {"type": "string"}, "morgan": {"type": "string"}, "mysql": {"type": "string"}, "passport": {"type": "string"}, "passport-http": {"type": "string"}, "passport-local": {"type": "string"}, "serve-favicon": {"type": "string"}, "socket.io": {"type": "string"}, "mqtt": {"type": "string"}, "util": {"type": "string"}, "net": {"type": "string"}}, "required": ["bcryptjs", "body-parser", "connect-flash", "cookie-parser", "debug", "express", "express-session", "express-validator", "handlebars-helpers", "hbs", "morgan", "mysql", "passport", "passport-http", "passport-local", "serve-favicon", "socket.io", "mqtt", "util", "net"]}}, "required": ["name", "version", "private", "scripts", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"stationGroupId": {"type": "integer"}, "stations": {"type": "array", "items": {"type": "string"}}}, "required": ["stationGroupId", "stations"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"stationGroupId" : 9930603, "stations" : ["9930603"]} | json_instruct | {"type": "object", "properties": {"stationGroupId": {"type": "integer"}, "stations": {"type": "array", "items": {"type": "string"}}}, "required": ["stationGroupId", "stations"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"id": {"type": "integer"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"src:alt_label": {"type": "string"}, "src:geom": {"type": "string"}, "wof:geomhash": {"type": "string"}, "wof:id": {"type": "integer"}, "wof:repo": {"type": "string"}}, "required": ["src:alt_label", "src:geom", "wof:geomhash", "wof:id", "wof:repo"]}, "bbox": {"type": "array", "items": {"type": "number"}}, "geometry": {"type": "object", "properties": {"coordinates": {"type": "array", "items": {"type": "number"}}, "type": {"type": "string"}}, "required": ["coordinates", "type"]}}, "required": ["id", "type", "properties", "bbox", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : 1293235333, "type" : "Feature", "properties" : {"src:alt_label" : "geonames", "src:geom" : "geonames", "wof:geomhash" : "44a71e995f7eb082da0a35549272bcbc", "wof:id" : 1293235333, "wof:repo" : "whosonfirst-data-admin-ro"}, "bbox" : [23.90984, 44.62074, 23.90984, 44.62074], "geometry" : {"coordinates" : [23.90984, 44.62074], "type" : "Point"}} | json_instruct | {"type": "object", "properties": {"id": {"type": "integer"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"src:alt_label": {"type": "string"}, "src:geom": {"type": "string"}, "wof:geomhash": {"type": "string"}, "wof:id": {"type": "integer"}, "wof:repo": {"type": "string"}}, "required": ["src:alt_label", "src:geom", "wof:geomhash", "wof:id", "wof:repo"]}, "bbox": {"type": "array", "items": {"type": "number"}}, "geometry": {"type": "object", "properties": {"coordinates": {"type": "array", "items": {"type": "number"}}, "type": {"type": "string"}}, "required": ["coordinates", "type"]}}, "required": ["id", "type", "properties", "bbox", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"logs": {"type": "array", "items": {"type": "object", "properties": {"outputFile": {"type": "string"}, "map": {"type": "array", "items": {"type": "object", "properties": {"source": {"type": "string"}, "from": {"type": "object", "properties": {"startLines": {"type": "string"}, "startColumns": {"type": "string"}, "startOffsets": {"type": "string"}, "endColumns": {"type": "string"}, "endOffsets": {"type": "string"}}, "required": ["startLines", "startColumns", "startOffsets", "endColumns", "endOffsets"]}}, "required": ["source", "from"]}}}, "required": ["outputFile", "map"]}}}, "required": ["logs"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"logs" : [{"outputFile" : "/Users/weipeng/Personal/Projects/PocketFilm/Mobile/PocketFilm/platforms/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-ar/values-ar.xml", "map" : [{"source" : "/Users/weipeng/.gradle/caches/transforms-1/files-1.1/exoplayer-ui-2.6.1.aar/9edbf7cea058aa96e39fc81e6a8c3270/res/values-ar/values-ar.xml", "from" : {"startLines" : "2,3,4,5,6,7,8,9,10,11,12", "startColumns" : "4,4,4,4,4,4,4,4,4,4,4", "startOffsets" : "55,133,214,286,352,437,514,592,674,742,818", "endColumns" : "77,80,71,65,84,76,77,81,67,75,65", "endOffsets" : "128,209,281,347,432,509,587,669,737,813,879"}}, {"source" : "/Users/weipeng/.gradle/caches/transforms-1/files-1.1/support-compat-27.1.1.aar/64b9e843b63cc50addbc78d7115f173a/res/values-ar/values-ar.xml", "from" : {"startLines" : "2", "startColumns" : "4", "startOffsets" : "55", "endColumns" : "100", "endOffsets" : "151"}, "to" : {"startLines" : "13", "startColumns" : "4", "startOffsets" : "884", "endColumns" : "100", "endOffsets" : "980"}}]}]} | json_instruct | {"type": "object", "properties": {"logs": {"type": "array", "items": {"type": "object", "properties": {"outputFile": {"type": "string"}, "map": {"type": "array", "items": {"type": "object", "properties": {"source": {"type": "string"}, "from": {"type": "object", "properties": {"startLines": {"type": "string"}, "startColumns": {"type": "string"}, "startOffsets": {"type": "string"}, "endColumns": {"type": "string"}, "endOffsets": {"type": "string"}}, "required": ["startLines", "startColumns", "startOffsets", "endColumns", "endOffsets"]}}, "required": ["source", "from"]}}}, "required": ["outputFile", "map"]}}}, "required": ["logs"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"news_api_key": {"type": "string"}, "sp500_output_dir": {"type": "string"}, "sp500_recent_days": {"type": "integer"}, "sp500_ticker_interval_minutes": {"type": "integer"}}, "required": ["news_api_key", "sp500_output_dir", "sp500_recent_days", "sp500_ticker_interval_minutes"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"news_api_key" : "TODO insert NEWS_API_TOKEN vom .env", "sp500_output_dir" : "/usr/local/airflow/data/sp500", "sp500_recent_days" : 0, "sp500_ticker_interval_minutes" : 1} | json_instruct | {"type": "object", "properties": {"news_api_key": {"type": "string"}, "sp500_output_dir": {"type": "string"}, "sp500_recent_days": {"type": "integer"}, "sp500_ticker_interval_minutes": {"type": "integer"}}, "required": ["news_api_key", "sp500_output_dir", "sp500_recent_days", "sp500_ticker_interval_minutes"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"hash": {"type": "string"}, "parentHash": {"type": "string"}, "number": {"type": "integer"}, "timestamp": {"type": "integer"}, "nonce": {"type": "string"}, "difficulty": {"type": "integer"}, "gasLimit": {"type": "object", "properties": {"_hex": {"type": "string"}}, "required": ["_hex"]}, "gasUsed": {"type": "object", "properties": {"_hex": {"type": "string"}}, "required": ["_hex"]}, "miner": {"type": "string"}, "extraData": {"type": "string"}, "transactions": {"type": "array", "items": {}}}, "required": ["hash", "parentHash", "number", "timestamp", "nonce", "difficulty", "gasLimit", "gasUsed", "miner", "extraData", "transactions"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"hash" : "0x6150c1f266bcb2c2d5221a4acf1c177f43d817ccd84d21a6f300ae0fb40adeeb", "parentHash" : "0x5d5088edac1d1adbbee412e929cea867b270c33869e0ec31f688ca0bc6fe047f", "number" : 13756, "timestamp" : 1438386778, "nonce" : "0x5e956f1fc2c85047", "difficulty" : 824803836489, "gasLimit" : {"_hex" : "0x1388"}, "gasUsed" : {"_hex" : "0x0"}, "miner" : "0xf927a40C8B7F6E07c5af7FA2155B4864a4112B13", "extraData" : "0x476574682f76312e302e302f6c696e75782f676f312e342e32", "transactions" : []} | json_instruct | {"type": "object", "properties": {"hash": {"type": "string"}, "parentHash": {"type": "string"}, "number": {"type": "integer"}, "timestamp": {"type": "integer"}, "nonce": {"type": "string"}, "difficulty": {"type": "integer"}, "gasLimit": {"type": "object", "properties": {"_hex": {"type": "string"}}, "required": ["_hex"]}, "gasUsed": {"type": "object", "properties": {"_hex": {"type": "string"}}, "required": ["_hex"]}, "miner": {"type": "string"}, "extraData": {"type": "string"}, "transactions": {"type": "array", "items": {}}}, "required": ["hash", "parentHash", "number", "timestamp", "nonce", "difficulty", "gasLimit", "gasUsed", "miner", "extraData", "transactions"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"lint": {"type": "string"}, "test": {"type": "string"}}, "required": ["lint", "test"]}, "pre-commit": {"type": "array", "items": {"type": "string"}}, "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": {"fastbench": {"type": "string"}, "pre-commit": {"type": "string"}, "standard": {"type": "string"}, "tap-dot": {"type": "string"}, "tape": {"type": "string"}}, "required": ["fastbench", "pre-commit", "standard", "tap-dot", "tape"]}, "browser": {"type": "object", "properties": {"./time.js": {"type": "string"}}, "required": ["./time.js"]}}, "required": ["name", "version", "description", "main", "scripts", "pre-commit", "repository", "keywords", "author", "license", "bugs", "homepage", "devDependencies", "browser"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "retimer", "version" : "3.0.0", "description" : "Reschedulable Timer for your node needs", "main" : "retimer.js", "scripts" : {"lint" : "standard", "test" : "tape test.js | tap-dot"}, "pre-commit" : ["lint", "test"], "repository" : {"type" : "git", "url" : "git+https://github.com/mcollina/retimer.git"}, "keywords" : ["schedulable", "reschedulable", "timer", "setTimeout"], "author" : "Matteo Collina <hello@matteocollina.com>", "license" : "MIT", "bugs" : {"url" : "https://github.com/mcollina/retimer/issues"}, "homepage" : "https://github.com/mcollina/retimer#readme", "devDependencies" : {"fastbench" : "^1.0.0", "pre-commit" : "^1.0.10", "standard" : "^16.0.0", "tap-dot" : "^2.0.0", "tape" : "^5.0.0"}, "browser" : {"./time.js" : "./time-browser.js"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"lint": {"type": "string"}, "test": {"type": "string"}}, "required": ["lint", "test"]}, "pre-commit": {"type": "array", "items": {"type": "string"}}, "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": {"fastbench": {"type": "string"}, "pre-commit": {"type": "string"}, "standard": {"type": "string"}, "tap-dot": {"type": "string"}, "tape": {"type": "string"}}, "required": ["fastbench", "pre-commit", "standard", "tap-dot", "tape"]}, "browser": {"type": "object", "properties": {"./time.js": {"type": "string"}}, "required": ["./time.js"]}}, "required": ["name", "version", "description", "main", "scripts", "pre-commit", "repository", "keywords", "author", "license", "bugs", "homepage", "devDependencies", "browser"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"bundle.js": {"type": "string"}, "d3-dsv.js": {"type": "string"}, "d3-dsv.min.js": {"type": "string"}}, "required": ["bundle.js", "d3-dsv.js", "d3-dsv.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"bundle.js" : "sha512-jCFtEun1j0vQ3H/e1yaD1g3EbXRCSnjNlPXZMWy1B85J7DO2FWT2zVogiSdzyvnrNtljnULbqNCxVmPikA5ltg==", "d3-dsv.js" : "sha512-J2L4zYSomu/geFrbdhSCpoAKsvp3Gvq/4yLtU8qOqTT12d4SC0SWX2R6BYCeAXp6sr8KkTA9JxVxjzLGwAi7VQ==", "d3-dsv.min.js" : "sha512-KIp8v9CzK0lEh2JYPSaeL95UbnURKXdFwx/R7YBRjIN1qV3LDuA7tatACZ8WmdrGEcvTG3xlrp8E1SVhzJkcEA=="} | json_instruct | {"type": "object", "properties": {"bundle.js": {"type": "string"}, "d3-dsv.js": {"type": "string"}, "d3-dsv.min.js": {"type": "string"}}, "required": ["bundle.js", "d3-dsv.js", "d3-dsv.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"parameters": {"type": "object", "properties": {"endpoint": {"type": "string"}, "api-version": {"type": "string"}, "keyOptions": {"type": "object", "properties": {"keyType": {"type": "string"}}, "required": ["keyType"]}}, "required": ["endpoint", "api-version", "keyOptions"]}, "responses": {"type": "object", "properties": {"200": {"type": "object", "properties": {"headers": {"type": "object", "properties": {"Date": {"type": "string"}, "x-ms-request-id": {"type": "string"}, "X-Content-Type-Options": {"type": "string"}, "x-ms-ratelimit-remaining-tenant-reads": {"type": "string"}, "x-ms-correlation-request-id": {"type": "string"}}, "required": ["Date", "x-ms-request-id", "X-Content-Type-Options", "x-ms-ratelimit-remaining-tenant-reads", "x-ms-correlation-request-id"]}, "body": {"type": "object", "properties": {"atlasKafkaPrimaryEndpoint": {"type": "string"}, "atlasKafkaSecondaryEndpoint": {"type": "string"}}, "required": ["atlasKafkaPrimaryEndpoint", "atlasKafkaSecondaryEndpoint"]}}, "required": ["headers", "body"]}}, "required": ["200"]}}, "required": ["parameters", "responses"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"parameters" : {"endpoint" : "{endpoint}", "api-version" : "2018-12-01-preview", "keyOptions" : {"keyType" : "PrimaryKey"}}, "responses" : {"200" : {"headers" : {"Date" : "Wed, 13 Sep 2017 18:04:32 GMT", "x-ms-request-id" : "d5496da4-9c52-402f-b067-83cc9ddea888", "X-Content-Type-Options" : "nosniff", "x-ms-ratelimit-remaining-tenant-reads" : "14999", "x-ms-correlation-request-id" : "25c78f97-0b0a-4fe9-ad39-883a482265cd"}, "body" : {"atlasKafkaPrimaryEndpoint" : "Endpoint=sb://fake_objectId.servicebus.windows.net/;SharedAccessKeyName=RootManageSharedAccessKey;SharedAccessKey=ASDASasdfmasdf123412341234=", "atlasKafkaSecondaryEndpoint" : "Endpoint=sb://fake_objectId.servicebus.windows.net/;SharedAccessKeyName=AlternateSharedAccessKey;SharedAccessKey=BSDASasdfmasdf123412341234="}}}} | json_instruct | {"type": "object", "properties": {"parameters": {"type": "object", "properties": {"endpoint": {"type": "string"}, "api-version": {"type": "string"}, "keyOptions": {"type": "object", "properties": {"keyType": {"type": "string"}}, "required": ["keyType"]}}, "required": ["endpoint", "api-version", "keyOptions"]}, "responses": {"type": "object", "properties": {"200": {"type": "object", "properties": {"headers": {"type": "object", "properties": {"Date": {"type": "string"}, "x-ms-request-id": {"type": "string"}, "X-Content-Type-Options": {"type": "string"}, "x-ms-ratelimit-remaining-tenant-reads": {"type": "string"}, "x-ms-correlation-request-id": {"type": "string"}}, "required": ["Date", "x-ms-request-id", "X-Content-Type-Options", "x-ms-ratelimit-remaining-tenant-reads", "x-ms-correlation-request-id"]}, "body": {"type": "object", "properties": {"atlasKafkaPrimaryEndpoint": {"type": "string"}, "atlasKafkaSecondaryEndpoint": {"type": "string"}}, "required": ["atlasKafkaPrimaryEndpoint", "atlasKafkaSecondaryEndpoint"]}}, "required": ["headers", "body"]}}, "required": ["200"]}}, "required": ["parameters", "responses"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"name": {"type": "string"}, "displayName": {"type": "string"}}, "required": ["name", "displayName"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "nunbank", "displayName" : "nunbank"} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "displayName": {"type": "string"}}, "required": ["name", "displayName"], "$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"}, "ShortName": {"type": "string"}, "Description": {"type": "string"}, "casingName": {"type": "string"}}, "required": ["Name", "ShortName", "Description", "casingName"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"Name" : "7.62x25mm TT P gl", "ShortName" : "P gl", "Description" : "7.62x25 mm TT (\u0130ndeks GRAU - 57-N-132) - P tipi pirin\u00e7 ala\u015f\u0131ml\u0131 mermi.", "casingName" : "7.62x25mm TT P gl"} | json_instruct | {"type": "object", "properties": {"Name": {"type": "string"}, "ShortName": {"type": "string"}, "Description": {"type": "string"}, "casingName": {"type": "string"}}, "required": ["Name", "ShortName", "Description", "casingName"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {"type": "integer"}}, "productReviews": {"type": "array", "items": {}}}, "required": ["userId", "cartId", "preferredProducts", "productReviews"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"userId" : 2849, "cartId" : "1a0151e8-2c30-44ee-818c-4a3488a54b20", "preferredProducts" : [1954, 3990, 3432, 1431, 1722, 2789], "productReviews" : []} | json_instruct | {"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {"type": "integer"}}, "productReviews": {"type": "array", "items": {}}}, "required": ["userId", "cartId", "preferredProducts", "productReviews"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"parent": {"type": "string"}}, "required": ["parent"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"parent" : "rechiseled_compat:block/betternether_nether_sakura_planks_diagonal_stripes_connecting"} | json_instruct | {"type": "object", "properties": {"parent": {"type": "string"}}, "required": ["parent"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"nom": {"type": "string"}, "dpt": {"type": "string"}, "inscrits": {"type": "integer"}, "abs": {"type": "integer"}, "votants": {"type": "integer"}, "blancs": {"type": "integer"}, "nuls": {"type": "integer"}, "exp": {"type": "integer"}, "res": {"type": "array", "items": {"type": "object", "properties": {"panneau": {"type": "string"}, "voix": {"type": "integer"}}, "required": ["panneau", "voix"]}}}, "required": ["nom", "dpt", "inscrits", "abs", "votants", "blancs", "nuls", "exp", "res"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"nom" : "Saint-Yaguen", "dpt" : "Landes", "inscrits" : 523, "abs" : 91, "votants" : 432, "blancs" : 9, "nuls" : 69, "exp" : 354, "res" : [{"panneau" : "1", "voix" : 229}, {"panneau" : "2", "voix" : 125}]} | json_instruct | {"type": "object", "properties": {"nom": {"type": "string"}, "dpt": {"type": "string"}, "inscrits": {"type": "integer"}, "abs": {"type": "integer"}, "votants": {"type": "integer"}, "blancs": {"type": "integer"}, "nuls": {"type": "integer"}, "exp": {"type": "integer"}, "res": {"type": "array", "items": {"type": "object", "properties": {"panneau": {"type": "string"}, "voix": {"type": "integer"}}, "required": ["panneau", "voix"]}}}, "required": ["nom", "dpt", "inscrits", "abs", "votants", "blancs", "nuls", "exp", "res"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "array", "items": {"type": "object", "properties": {"en": {"type": "string"}, "ja": {"type": "string"}, "ph": {"type": "string"}}, "required": ["en", "ja", "ph"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"en" : "test", "ja" : "\u30c6\u30b9\u30c8[n]\n\u30c6\u30b9\u30c8\u3059\u308b[v]", "ph" : "t\u025bst"}, {"en" : "traffic", "ja" : "\u30c8\u30e9\u30d5\u30a3\u30c3\u30af\u30fb\u901a\u4fe1\u30fb\u901a\u4fe1\u91cf[n]", "ph" : "\u02c8tr\u00e6f\u026ak"}, {"en" : "tree", "ja" : "\u6728\u30fb\u30c4\u30ea\u30fc[n]", "ph" : "tri"}, {"en" : "true", "ja" : "\u6b63\u3057\u3044[adj]", "ph" : "tru"}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"en": {"type": "string"}, "ja": {"type": "string"}, "ph": {"type": "string"}}, "required": ["en", "ja", "ph"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "release": {"type": "object", "properties": {"extends": {"type": "string"}}, "required": ["extends"]}, "homepage": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "keywords": {"type": "array", "items": {}}, "author": {"type": "string"}, "license": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "devDependencies": {"type": "object", "properties": {"lz4": {"type": "string"}, "tap": {"type": "string"}}, "required": ["lz4", "tap"]}}, "required": ["name", "version", "description", "main", "scripts", "release", "homepage", "bugs", "keywords", "author", "license", "repository", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "lz4-offset-stream", "version" : "1.0.1", "description" : "Stream that emits offsets of lz4 encoded payloads", "main" : "index.js", "scripts" : {"test" : "tap --100"}, "release" : {"extends" : "@evanlucas/semrel"}, "homepage" : "https://github.com/evanlucas/lz4-offset-stream", "bugs" : {"url" : "https://github.com/evanlucas/lz4-offset-stream/issues"}, "keywords" : [], "author" : "Evan Lucas <evanlucas@me.com>", "license" : "MIT", "repository" : {"type" : "git", "url" : "git+ssh://git@github.com/evanlucas/lz4-offset-stream"}, "devDependencies" : {"lz4" : "^0.6.5", "tap" : "^15.0.9"}} | 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"]}, "release": {"type": "object", "properties": {"extends": {"type": "string"}}, "required": ["extends"]}, "homepage": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "keywords": {"type": "array", "items": {}}, "author": {"type": "string"}, "license": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "devDependencies": {"type": "object", "properties": {"lz4": {"type": "string"}, "tap": {"type": "string"}}, "required": ["lz4", "tap"]}}, "required": ["name", "version", "description", "main", "scripts", "release", "homepage", "bugs", "keywords", "author", "license", "repository", "devDependencies"], "$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"}, "engines": {"type": "object", "properties": {"node": {"type": "string"}}, "required": ["node"]}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}}, "required": ["start"]}, "author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"castv2-client": {"type": "string"}, "got": {"type": "string"}, "log-timestamp": {"type": "string"}, "mdns-js": {"type": "string"}, "ts-node": {"type": "string"}, "typescript": {"type": "string"}}, "required": ["castv2-client", "got", "log-timestamp", "mdns-js", "ts-node", "typescript"]}}, "required": ["name", "version", "description", "engines", "main", "scripts", "author", "license", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "yamaha_cc_listener", "version" : "1.0.0", "description" : "", "engines" : {"node" : "14.x"}, "main" : "index.js", "scripts" : {"start" : "ts-node ./app.ts"}, "author" : "", "license" : "ISC", "dependencies" : {"castv2-client" : "1.2.0", "got" : "11.0.2", "log-timestamp" : "0.3.0", "mdns-js" : "1.0.3", "ts-node" : "8.9.0", "typescript" : "3.8.3"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "engines": {"type": "object", "properties": {"node": {"type": "string"}}, "required": ["node"]}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}}, "required": ["start"]}, "author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"castv2-client": {"type": "string"}, "got": {"type": "string"}, "log-timestamp": {"type": "string"}, "mdns-js": {"type": "string"}, "ts-node": {"type": "string"}, "typescript": {"type": "string"}}, "required": ["castv2-client", "got", "log-timestamp", "mdns-js", "ts-node", "typescript"]}}, "required": ["name", "version", "description", "engines", "main", "scripts", "author", "license", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"description": {"type": "string"}, "input_method": {"type": "string"}, "parameters": {"type": "object", "properties": {"subscription_id": {"type": "object", "properties": {"description": {"type": "string"}, "type": {"type": "string"}}, "required": ["description", "type"]}, "resource_group_name": {"type": "object", "properties": {"description": {"type": "string"}, "type": {"type": "string"}}, "required": ["description", "type"]}, "manager_name": {"type": "object", "properties": {"description": {"type": "string"}, "type": {"type": "string"}}, "required": ["description", "type"]}, "api_version": {"type": "object", "properties": {"description": {"type": "string"}, "type": {"type": "string"}}, "required": ["description", "type"]}, "activationkey": {"type": "object", "properties": {"description": {"type": "string"}, "type": {"type": "string"}}, "required": ["description", "type"]}}, "required": ["subscription_id", "resource_group_name", "manager_name", "api_version", "activationkey"]}}, "required": ["description", "input_method", "parameters"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"description" : "Returns the activation key of the manager.", "input_method" : "stdin", "parameters" : {"subscription_id" : {"description" : "The subscription id", "type" : "Optional[String[1]]"}, "resource_group_name" : {"description" : "The resource group name", "type" : "Optional[String[1]]"}, "manager_name" : {"description" : "The manager name", "type" : "Optional[String[1]]"}, "api_version" : {"description" : "The api version", "type" : "Optional[String[1]]"}, "activationkey" : {"description" : "The activation key for the device.", "type" : "Optional[String[1]]"}}} | json_instruct | {"type": "object", "properties": {"description": {"type": "string"}, "input_method": {"type": "string"}, "parameters": {"type": "object", "properties": {"subscription_id": {"type": "object", "properties": {"description": {"type": "string"}, "type": {"type": "string"}}, "required": ["description", "type"]}, "resource_group_name": {"type": "object", "properties": {"description": {"type": "string"}, "type": {"type": "string"}}, "required": ["description", "type"]}, "manager_name": {"type": "object", "properties": {"description": {"type": "string"}, "type": {"type": "string"}}, "required": ["description", "type"]}, "api_version": {"type": "object", "properties": {"description": {"type": "string"}, "type": {"type": "string"}}, "required": ["description", "type"]}, "activationkey": {"type": "object", "properties": {"description": {"type": "string"}, "type": {"type": "string"}}, "required": ["description", "type"]}}, "required": ["subscription_id", "resource_group_name", "manager_name", "api_version", "activationkey"]}}, "required": ["description", "input_method", "parameters"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"Time": {"type": "string"}, "Temp": {"type": "number"}, "RelHum": {"type": "integer"}, "WindSpeed": {"type": "number"}, "WindDir": {"type": "integer"}}, "required": ["Time", "Temp", "RelHum", "WindSpeed", "WindDir"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"Time" : "2021-04-21T15:00:00Z", "Temp" : 21.4, "RelHum" : 53, "WindSpeed" : 5.8, "WindDir" : 335} | 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": {"content": {"type": "string"}, "entities": {"type": "array", "items": {"type": "object", "properties": {"offset": {"type": "integer"}, "type": {"type": "string"}, "id": {"type": "integer"}, "entity": {"type": "string"}}, "required": ["offset", "type", "id", "entity"]}}, "topics": {"type": "array", "items": {"type": "object", "properties": {"topic": {"type": "string"}, "id": {"type": "integer"}}, "required": ["topic", "id"]}}, "tweet_id": {"type": "string"}}, "required": ["content", "entities", "topics", "tweet_id"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"content" : "Landlord in audience May well be a gd landlord. The Majority are complete robbing shits. They do the least they can get away with. #bbcqt", "entities" : [{"offset" : 74, "type" : "topic keyword", "id" : 3, "entity" : "robbing"}, {"entity" : "landlord", "type" : "topic keyword", "id" : 4, "offset" : 0}, {"entity" : "landlord", "type" : "topic keyword", "id" : 5, "offset" : 38}], "topics" : [{"topic" : "crime", "id" : 1}, {"topic" : "housing", "id" : 2}], "tweet_id" : "578700893182394369"} | json_instruct | {"type": "object", "properties": {"content": {"type": "string"}, "entities": {"type": "array", "items": {"type": "object", "properties": {"offset": {"type": "integer"}, "type": {"type": "string"}, "id": {"type": "integer"}, "entity": {"type": "string"}}, "required": ["offset", "type", "id", "entity"]}}, "topics": {"type": "array", "items": {"type": "object", "properties": {"topic": {"type": "string"}, "id": {"type": "integer"}}, "required": ["topic", "id"]}}, "tweet_id": {"type": "string"}}, "required": ["content", "entities", "topics", "tweet_id"], "$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.