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"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"babar": {"type": "string"}, "lodash": {"type": "string"}}, "required": ["babar", "lodash"]}, "dependencies": {"type": "object", "properties": {"command-line-args": {"type": "string"}}, "required": ["command-line-args"]}}, "required": ["name", "version", "description", "main", "scripts", "keywords", "author", "license", "devDependencies", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "wordle-solver", "version" : "0.0.1", "description" : "Node Wordle Solving App", "main" : "index.js", "scripts" : {"test" : "jest"}, "keywords" : ["wordle"], "author" : "roto", "license" : "MIT", "devDependencies" : {"babar" : "^0.2.0", "lodash" : "^4.17.21"}, "dependencies" : {"command-line-args" : "^5.2.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"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"babar": {"type": "string"}, "lodash": {"type": "string"}}, "required": ["babar", "lodash"]}, "dependencies": {"type": "object", "properties": {"command-line-args": {"type": "string"}}, "required": ["command-line-args"]}}, "required": ["name", "version", "description", "main", "scripts", "keywords", "author", "license", "devDependencies", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"configurations": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "includePath": {"type": "array", "items": {"type": "string"}}, "defines": {"type": "array", "items": {"type": "string"}}, "intelliSenseMode": {"type": "string"}, "compilerArgs": {"type": "array", "items": {"type": "string"}}, "compilerPath": {"type": "string"}}, "required": ["name", "includePath", "defines", "intelliSenseMode", "compilerArgs", "compilerPath"]}}, "version": {"type": "integer"}}, "required": ["configurations", "version"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"configurations" : [{"name" : "Win32", "includePath" : ["${workspaceFolder}/**", "C:/Users/ENBSF/DEV/Courcera/CpSpec/TestRunner/**"], "defines" : ["_DEBUG", "UNICODE", "_UNICODE"], "intelliSenseMode" : "gcc-x64", "compilerArgs" : ["-Werror", "-pedantic-errors", "-Wall", "-Wextra", "-Wpedantic", "-Wcast-align", "-Wcast-qual", "-Wconversion", "-Wctor-dtor-privacy", "-Wduplicated-branches", "-Wduplicated-cond", "-Wextra-semi", "-Wfloat-equal", "-Wlogical-op", "-Wnon-virtual-dtor", "-Wold-style-cast", "-Woverloaded-virtual", "-Wredundant-decls", "-Wsign-conversion", "-Wsign-promo"], "compilerPath" : "C:/ProgramData/chocolatey/lib/mingw/tools/install/mingw64/bin/"}], "version" : 4} | json_instruct | {"type": "object", "properties": {"configurations": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "includePath": {"type": "array", "items": {"type": "string"}}, "defines": {"type": "array", "items": {"type": "string"}}, "intelliSenseMode": {"type": "string"}, "compilerArgs": {"type": "array", "items": {"type": "string"}}, "compilerPath": {"type": "string"}}, "required": ["name", "includePath", "defines", "intelliSenseMode", "compilerArgs", "compilerPath"]}}, "version": {"type": "integer"}}, "required": ["configurations", "version"], "$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"}, "private": {"type": "boolean"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"android": {"type": "string"}, "ios": {"type": "string"}, "web": {"type": "string"}}, "required": ["android", "ios", "web"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "devDependencies": {"type": "object", "properties": {}, "required": []}}, "required": ["name", "version", "private", "description", "main", "scripts", "repository", "author", "license", "bugs", "homepage", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "council-alert-app", "version" : "1.1.0", "private" : true, "description" : "Work on https://kusama.polkassembly.io/bounty/4", "main" : "index.ts", "scripts" : {"android" : "cd workspaces/app && yarn android", "ios" : "expo start --ios", "web" : "expo start --web"}, "repository" : {"type" : "git", "url" : "git+https://github.com/meta-dojo/council-alert-app.git"}, "author" : "meta-dojo team", "license" : "MIT", "bugs" : {"url" : "https://github.com/meta-dojo/council-alert-app/issues"}, "homepage" : "https://github.com/meta-dojo/council-alert-app#readme", "devDependencies" : {}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "private": {"type": "boolean"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"android": {"type": "string"}, "ios": {"type": "string"}, "web": {"type": "string"}}, "required": ["android", "ios", "web"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "devDependencies": {"type": "object", "properties": {}, "required": []}}, "required": ["name", "version", "private", "description", "main", "scripts", "repository", "author", "license", "bugs", "homepage", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "array", "items": {"type": "array", "items": {"type": "string"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [["a", "::after"]] | json_instruct | {"type": "array", "items": {"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": {"__symbolic": {"type": "string"}, "version": {"type": "integer"}, "metadata": {"type": "object", "properties": {"isSuccess": {"type": "object", "properties": {"__symbolic": {"type": "string"}, "message": {"type": "string"}, "line": {"type": "integer"}, "character": {"type": "integer"}}, "required": ["__symbolic", "message", "line", "character"]}}, "required": ["isSuccess"]}}, "required": ["__symbolic", "version", "metadata"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"__symbolic" : "module", "version" : 1, "metadata" : {"isSuccess" : {"__symbolic" : "error", "message" : "Function call not supported", "line" : 28, "character" : 24}}} | json_instruct | {"type": "object", "properties": {"__symbolic": {"type": "string"}, "version": {"type": "integer"}, "metadata": {"type": "object", "properties": {"isSuccess": {"type": "object", "properties": {"__symbolic": {"type": "string"}, "message": {"type": "string"}, "line": {"type": "integer"}, "character": {"type": "integer"}}, "required": ["__symbolic", "message", "line", "character"]}}, "required": ["isSuccess"]}}, "required": ["__symbolic", "version", "metadata"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"serve": {"type": "string"}, "build-ts": {"type": "string"}}, "required": ["serve", "build-ts"]}, "author": {"type": "string"}, "license": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"@types/connect-history-api-fallback": {"type": "string"}, "@types/express": {"type": "string"}, "@types/randomstring": {"type": "string"}, "@types/spotify-web-api-node": {"type": "string"}, "connect-history-api-fallback": {"type": "string"}, "nodemon": {"type": "string"}, "typescript": {"type": "string"}}, "required": ["@types/connect-history-api-fallback", "@types/express", "@types/randomstring", "@types/spotify-web-api-node", "connect-history-api-fallback", "nodemon", "typescript"]}, "dependencies": {"type": "object", "properties": {"body-parser": {"type": "string"}, "dotenv": {"type": "string"}, "express": {"type": "string"}, "http-status-codes": {"type": "string"}, "randomstring": {"type": "string"}, "spotify-web-api-node": {"type": "string"}}, "required": ["body-parser", "dotenv", "express", "http-status-codes", "randomstring", "spotify-web-api-node"]}}, "required": ["name", "version", "description", "main", "scripts", "author", "license", "devDependencies", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "vue-spotify-app-backend", "version" : "1.0.0", "description" : "", "main" : "app.js", "scripts" : {"serve" : "nodemon dist/app.js", "build-ts" : "tsc"}, "author" : "", "license" : "ISC", "devDependencies" : {"@types/connect-history-api-fallback" : "^1.3.5", "@types/express" : "^4.17.13", "@types/randomstring" : "^1.1.6", "@types/spotify-web-api-node" : "^4.0.2", "connect-history-api-fallback" : "^1.6.0", "nodemon" : "^2.0.6", "typescript" : "^4.1.3"}, "dependencies" : {"body-parser" : "^1.19.0", "dotenv" : "^10.0.0", "express" : "^4.17.1", "http-status-codes" : "^2.1.4", "randomstring" : "^1.1.5", "spotify-web-api-node" : "^5.0.0"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"serve": {"type": "string"}, "build-ts": {"type": "string"}}, "required": ["serve", "build-ts"]}, "author": {"type": "string"}, "license": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"@types/connect-history-api-fallback": {"type": "string"}, "@types/express": {"type": "string"}, "@types/randomstring": {"type": "string"}, "@types/spotify-web-api-node": {"type": "string"}, "connect-history-api-fallback": {"type": "string"}, "nodemon": {"type": "string"}, "typescript": {"type": "string"}}, "required": ["@types/connect-history-api-fallback", "@types/express", "@types/randomstring", "@types/spotify-web-api-node", "connect-history-api-fallback", "nodemon", "typescript"]}, "dependencies": {"type": "object", "properties": {"body-parser": {"type": "string"}, "dotenv": {"type": "string"}, "express": {"type": "string"}, "http-status-codes": {"type": "string"}, "randomstring": {"type": "string"}, "spotify-web-api-node": {"type": "string"}}, "required": ["body-parser", "dotenv", "express", "http-status-codes", "randomstring", "spotify-web-api-node"]}}, "required": ["name", "version", "description", "main", "scripts", "author", "license", "devDependencies", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "sponsors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "logo": {"type": "string"}, "website": {"type": "string"}}, "required": ["name", "logo", "website"]}}}, "required": ["name", "sponsors"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"name" : "Gold", "sponsors" : [{"name" : "Catalyst", "logo" : "Catalyst.png", "website" : "https://catalyst.net.nz"}, {"name" : "Xero", "logo" : "Xero.png", "website" : "https://www.xero.com"}, {"name" : "Media Suite", "logo" : "MediaSuite.png", "website" : "https://www.mediasuite.co.nz"}, {"name" : "Sharesies", "logo" : "Sharesies.png", "website" : "https://www.sharesies.nz"}, {"name" : "Actionstep", "logo" : "Actionstep.png", "website" : "https://www.actionstep.com"}, {"name" : "Raygun", "logo" : "Raygun.png", "website" : "https://raygun.com/"}]}, {"name" : "Silver", "sponsors" : [{"name" : "Dovetail", "logo" : "Dovetail.png", "website" : "https://dovetailstudios.com/"}, {"name" : "Vend", "logo" : "Vend.png", "website" : "https://www.vendhq.com/nz/"}]}, {"name" : "Bronze", "sponsors" : [{"name" : "Developers Institute", "logo" : "DevelopersInstitute.png", "website" : "https://www.developers.ac.nz/"}, {"name" : "Boost", "logo" : "Boost.png", "website" : "https://www.boost.co.nz/"}, {"name" : "Solve", "logo" : "Solve.png", "website" : "https://solve.io/"}]}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "sponsors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "logo": {"type": "string"}, "website": {"type": "string"}}, "required": ["name", "logo", "website"]}}}, "required": ["name", "sponsors"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"Department": {"type": "string"}, "Name": {"type": "string"}, "Position": {"type": "string"}, "Region": {"type": "string"}, "analytics": {"type": "array", "items": {"type": "object", "properties": {"c": {"type": "integer"}, "h": {"type": "number"}, "ha": {"type": "integer"}, "i": {"type": "integer"}, "y": {"type": "integer"}}, "required": ["c", "h", "ha", "i", "y"]}}, "declarationsLinks": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "provider": {"type": "string"}, "year": {"type": "integer"}}, "required": ["id", "provider", "year"]}}, "key": {"type": "string"}, "type": {"type": "string"}, "\u0414\u0435\u043a\u043b\u0430\u0440\u0430\u0446\u0456\u0457 2013": {"type": "string"}, "\u0414\u0435\u043a\u043b\u0430\u0440\u0430\u0446\u0456\u0457 2014": {"type": "string"}, "\u0414\u0435\u043a\u043b\u0430\u0440\u0430\u0446\u0456\u0457 2015": {"type": "string"}, "\u0414\u0435\u043a\u043b\u0430\u0440\u0430\u0446\u0456\u0457 2016": {"type": "string"}, "\u0414\u0435\u043a\u043b\u0430\u0440\u0430\u0446\u0456\u0457 \u0434\u043e\u0431\u0440\u043e\u0447\u0435\u0441\u043d\u043e\u0441\u0442\u0456": {"type": "string"}, "\u0424\u043e\u0442\u043e": {"type": "string"}, "\u042f\u043a \u0436\u0438\u0432\u0435": {"type": "string"}}, "required": ["Department", "Name", "Position", "Region", "analytics", "declarationsLinks", "key", "type", "\u0414\u0435\u043a\u043b\u0430\u0440\u0430\u0446\u0456\u0457 2013", "\u0414\u0435\u043a\u043b\u0430\u0440\u0430\u0446\u0456\u0457 2014", "\u0414\u0435\u043a\u043b\u0430\u0440\u0430\u0446\u0456\u0457 2015", "\u0414\u0435\u043a\u043b\u0430\u0440\u0430\u0446\u0456\u0457 2016", "\u0414\u0435\u043a\u043b\u0430\u0440\u0430\u0446\u0456\u0457 \u0434\u043e\u0431\u0440\u043e\u0447\u0435\u0441\u043d\u043e\u0441\u0442\u0456", "\u0424\u043e\u0442\u043e", "\u042f\u043a \u0436\u0438\u0432\u0435"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"Department" : "\u0412\u0456\u043d\u043d\u0438\u0446\u044c\u043a\u0430 \u043c\u0456\u0441\u0446\u0435\u0432\u0430 \u043f\u0440\u043e\u043a\u0443\u0440\u0430\u0442\u0443\u0440\u0430 \u0412\u0456\u043d\u043d\u0438\u0446\u044c\u043a\u043e\u0457 \u043e\u0431\u043b\u0430\u0441\u0442\u0456", "Name" : "\u0421\u043b\u0430\u0432\u0456\u043d\u0441\u044c\u043a\u0438\u0439 \u042f\u0440\u043e\u0441\u043b\u0430\u0432 \u0421\u0435\u0440\u0433\u0456\u0439\u043e\u0432\u0438\u0447", "Position" : "\u043f\u0440\u043e\u043a\u0443\u0440\u043e\u0440 \u0412\u0456\u043d\u043d\u0438\u0446\u044c\u043a\u043e\u0457 \u043c\u0456\u0441\u0446\u0435\u0432\u043e\u0457 \u043f\u0440\u043e\u043a\u0443\u0440\u0430\u0442\u0443\u0440\u0438 \u0412\u0456\u043d\u043d\u0438\u0446\u044c\u043a\u043e\u0457 \u043e\u0431\u043b\u0430\u0441\u0442\u0456", "Region" : "\u0412\u0456\u043d\u043d\u0438\u0446\u044c\u043a\u0430 \u043e\u0431\u043b\u0430\u0441\u0442\u044c", "analytics" : [{"c" : 1, "h" : 134.5, "ha" : 1, "i" : 71788, "y" : 2015}, {"c" : 1, "fi" : 39926, "h" : 134.5, "ha" : 1, "i" : 137115, "y" : 2016}, {"c" : 2, "fh" : 55.6, "fha" : 1, "fi" : 55788, "h" : 134.5, "ha" : 1, "i" : 257402, "y" : 2017}, {"c" : 1, "fh" : 55.6, "fha" : 1, "fi" : 10320, "h" : 134.5, "ha" : 1, "i" : 602246, "m" : 79728, "y" : 2018}], "declarationsLinks" : [{"id" : "nacp_33dc847f-8c1f-489b-9340-26c1e7029157", "provider" : "declarations.com.ua.opendata", "year" : 2015}, {"id" : "nacp_63c8662e-7ee1-4779-9002-98e06f8b1993", "provider" : "declarations.com.ua.opendata", "year" : 2016}, {"id" : "nacp_00cac827-8f67-403b-a234-c89c39e63761", "provider" : "declarations.com.ua.opendata", "year" : 2017}, {"id" : "nacp_4fa5374f-f95a-4aac-b805-f83a283ae07d", "provider" : "declarations.com.ua.opendata", "year" : 2018}], "key" : "slavinskiy_yaroslav_sergiyovich", "type" : "prosecutor", "\u0414\u0435\u043a\u043b\u0430\u0440\u0430\u0446\u0456\u0457 2013" : "", "\u0414\u0435\u043a\u043b\u0430\u0440\u0430\u0446\u0456\u0457 2014" : "", "\u0414\u0435\u043a\u043b\u0430\u0440\u0430\u0446\u0456\u0457 2015" : "https://public.nazk.gov.ua/declaration/33dc847f-8c1f-489b-9340-26c1e7029157", "\u0414\u0435\u043a\u043b\u0430\u0440\u0430\u0446\u0456\u0457 2016" : "https://public.nazk.gov.ua/declaration/63c8662e-7ee1-4779-9002-98e06f8b1993", "\u0414\u0435\u043a\u043b\u0430\u0440\u0430\u0446\u0456\u0457 \u0434\u043e\u0431\u0440\u043e\u0447\u0435\u0441\u043d\u043e\u0441\u0442\u0456" : "http://www.gp.gov.ua/integrity_profile/files/869f061a13fd01ecd4187be4a3f0b899.pdf", "\u0424\u043e\u0442\u043e" : "", "\u042f\u043a \u0436\u0438\u0432\u0435" : ""} | json_instruct | {"type": "object", "properties": {"Department": {"type": "string"}, "Name": {"type": "string"}, "Position": {"type": "string"}, "Region": {"type": "string"}, "analytics": {"type": "array", "items": {"type": "object", "properties": {"c": {"type": "integer"}, "h": {"type": "number"}, "ha": {"type": "integer"}, "i": {"type": "integer"}, "y": {"type": "integer"}}, "required": ["c", "h", "ha", "i", "y"]}}, "declarationsLinks": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "provider": {"type": "string"}, "year": {"type": "integer"}}, "required": ["id", "provider", "year"]}}, "key": {"type": "string"}, "type": {"type": "string"}, "\u0414\u0435\u043a\u043b\u0430\u0440\u0430\u0446\u0456\u0457 2013": {"type": "string"}, "\u0414\u0435\u043a\u043b\u0430\u0440\u0430\u0446\u0456\u0457 2014": {"type": "string"}, "\u0414\u0435\u043a\u043b\u0430\u0440\u0430\u0446\u0456\u0457 2015": {"type": "string"}, "\u0414\u0435\u043a\u043b\u0430\u0440\u0430\u0446\u0456\u0457 2016": {"type": "string"}, "\u0414\u0435\u043a\u043b\u0430\u0440\u0430\u0446\u0456\u0457 \u0434\u043e\u0431\u0440\u043e\u0447\u0435\u0441\u043d\u043e\u0441\u0442\u0456": {"type": "string"}, "\u0424\u043e\u0442\u043e": {"type": "string"}, "\u042f\u043a \u0436\u0438\u0432\u0435": {"type": "string"}}, "required": ["Department", "Name", "Position", "Region", "analytics", "declarationsLinks", "key", "type", "\u0414\u0435\u043a\u043b\u0430\u0440\u0430\u0446\u0456\u0457 2013", "\u0414\u0435\u043a\u043b\u0430\u0440\u0430\u0446\u0456\u0457 2014", "\u0414\u0435\u043a\u043b\u0430\u0440\u0430\u0446\u0456\u0457 2015", "\u0414\u0435\u043a\u043b\u0430\u0440\u0430\u0446\u0456\u0457 2016", "\u0414\u0435\u043a\u043b\u0430\u0440\u0430\u0446\u0456\u0457 \u0434\u043e\u0431\u0440\u043e\u0447\u0435\u0441\u043d\u043e\u0441\u0442\u0456", "\u0424\u043e\u0442\u043e", "\u042f\u043a \u0436\u0438\u0432\u0435"], "$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" : "rechiseled_compat:block/environmental_cherry_planks_diagonal_tiles_connecting"} | json_instruct | {"type": "object", "properties": {"parent": {"type": "string"}}, "required": ["parent"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"specimenId": {"type": "string"}, "specimenName": {"type": "string"}, "description": {"type": "null"}, "cptCodeId": {"type": "null"}, "cptCodeQuantity": {"type": "integer"}, "clientFixation": {"type": "string"}, "labFixation": {"type": "string"}, "requiresGrossExamination": {"type": "boolean"}, "processorRunId": {"type": "null"}}, "required": ["specimenId", "specimenName", "description", "cptCodeId", "cptCodeQuantity", "clientFixation", "labFixation", "requiresGrossExamination", "processorRunId"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"specimenId" : "SPCMNAUTOPSY", "specimenName" : "Autopsy Specimen", "description" : null, "cptCodeId" : null, "cptCodeQuantity" : 1, "clientFixation" : "Formalin", "labFixation" : "Fomalin", "requiresGrossExamination" : false, "processorRunId" : null} | json_instruct | {"type": "object", "properties": {"specimenId": {"type": "string"}, "specimenName": {"type": "string"}, "description": {"type": "null"}, "cptCodeId": {"type": "null"}, "cptCodeQuantity": {"type": "integer"}, "clientFixation": {"type": "string"}, "labFixation": {"type": "string"}, "requiresGrossExamination": {"type": "boolean"}, "processorRunId": {"type": "null"}}, "required": ["specimenId", "specimenName", "description", "cptCodeId", "cptCodeQuantity", "clientFixation", "labFixation", "requiresGrossExamination", "processorRunId"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"ast": {"type": "null"}, "code": {"type": "string"}, "map": {"type": "null"}, "metadata": {"type": "object", "properties": {}, "required": []}, "sourceType": {"type": "string"}}, "required": ["ast", "code", "map", "metadata", "sourceType"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"ast" : null, "code" : "'use strict';\n\nvar call = require('../internals/function-call');\n\nvar fixRegExpWellKnownSymbolLogic = require('../internals/fix-regexp-well-known-symbol-logic');\n\nvar anObject = require('../internals/an-object');\n\nvar requireObjectCoercible = require('../internals/require-object-coercible');\n\nvar sameValue = require('../internals/same-value');\n\nvar toString = require('../internals/to-string');\n\nvar getMethod = require('../internals/get-method');\n\nvar regExpExec = require('../internals/regexp-exec-abstract'); // @@search logic\n\n\nfixRegExpWellKnownSymbolLogic('search', function (SEARCH, nativeSearch, maybeCallNative) {\n return [// `String.prototype.search` method\n // https://tc39.es/ecma262/#sec-string.prototype.search\n function search(regexp) {\n var O = requireObjectCoercible(this);\n var searcher = regexp == undefined ? undefined : getMethod(regexp, SEARCH);\n return searcher ? call(searcher, regexp, O) : new RegExp(regexp)[SEARCH](toString(O));\n }, // `RegExp.prototype[@@search]` method\n // https://tc39.es/ecma262/#sec-regexp.prototype-@@search\n function (string) {\n var rx = anObject(this);\n var S = toString(string);\n var res = maybeCallNative(nativeSearch, rx, S);\n if (res.done) return res.value;\n var previousLastIndex = rx.lastIndex;\n if (!sameValue(previousLastIndex, 0)) rx.lastIndex = 0;\n var result = regExpExec(rx, S);\n if (!sameValue(rx.lastIndex, previousLastIndex)) rx.lastIndex = previousLastIndex;\n return result === null ? -1 : result.index;\n }];\n});", "map" : null, "metadata" : {}, "sourceType" : "script"} | json_instruct | {"type": "object", "properties": {"ast": {"type": "null"}, "code": {"type": "string"}, "map": {"type": "null"}, "metadata": {"type": "object", "properties": {}, "required": []}, "sourceType": {"type": "string"}}, "required": ["ast", "code", "map", "metadata", "sourceType"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"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": {}}, "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": "string"}, "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" : "The Bury Hunt (after Painting by C. Agar)", "creation_date" : "19th century", "creation_date_earliest" : "1800-01-01", "creation_date_latest" : "1899-01-01", "medium" : "color engraving", "accession_number" : "72.14.11", "id" : "cmoa:things/ed4b8749-aca5-4056-99ab-e925bb200fd8", "credit_line" : "Bequest of Robert S. Waters", "date_acquired" : "1972-05-11", "department" : "Fine Arts", "physical_location" : "Not on View", "item_width" : 35.0, "item_height" : 29.625, "item_depth" : 1.125, "item_diameter" : 0.0, "web_url" : "http://collection.cmoa.org/CollectionDetail.aspx?item=1016317", "provenance_text" : "Robert S. Waters Estate, Johnstown, PA", "classification" : "prints", "images" : [], "creator" : [{"artist_id" : "cmoa:parties/d061de21-4d49-431b-aaa5-6649578ba5b3", "party_type" : "Person", "full_name" : "Frederick Bromley", "cited_name" : "Bromley, Frederick", "role" : null, "nationality" : "English", "birth_date" : null, "death_date" : "1870-01-01", "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": {}}, "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": "string"}, "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#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"sentences": {"type": "array", "items": {"type": "object", "properties": {"text": {"type": "object", "properties": {"content": {"type": "string"}, "beginOffset": {"type": "integer"}}, "required": ["content", "beginOffset"]}, "sentiment": {"type": "object", "properties": {"magnitude": {"type": "number"}, "score": {"type": "number"}}, "required": ["magnitude", "score"]}}, "required": ["text", "sentiment"]}}, "tokens": {"type": "array", "items": {}}, "entities": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "type": {"type": "string"}, "metadata": {"type": "object", "properties": {}, "required": []}, "salience": {"type": "number"}, "mentions": {"type": "array", "items": {"type": "object", "properties": {"text": {"type": "object", "properties": {"content": {"type": "string"}, "beginOffset": {"type": "integer"}}, "required": ["content", "beginOffset"]}, "type": {"type": "string"}}, "required": ["text", "type"]}}}, "required": ["name", "type", "metadata", "salience", "mentions"]}}, "documentSentiment": {"type": "object", "properties": {"magnitude": {"type": "number"}, "score": {"type": "number"}}, "required": ["magnitude", "score"]}, "language": {"type": "string"}, "categories": {"type": "array", "items": {}}}, "required": ["sentences", "tokens", "entities", "documentSentiment", "language", "categories"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"sentences" : [{"text" : {"content" : "female 4 month active n friendly very kind love to be cuddle her father is a bengal while her mother is a domestic long hair", "beginOffset" : -1}, "sentiment" : {"magnitude" : 0.9, "score" : 0.9}}], "tokens" : [], "entities" : [{"name" : "father", "type" : "PERSON", "metadata" : {}, "salience" : 0.2766704, "mentions" : [{"text" : {"content" : "father", "beginOffset" : -1}, "type" : "COMMON"}]}, {"name" : "love", "type" : "OTHER", "metadata" : {}, "salience" : 0.24947767, "mentions" : [{"text" : {"content" : "love", "beginOffset" : -1}, "type" : "COMMON"}]}, {"name" : "mother", "type" : "PERSON", "metadata" : {}, "salience" : 0.2120897, "mentions" : [{"text" : {"content" : "mother", "beginOffset" : -1}, "type" : "COMMON"}]}, {"name" : "hair", "type" : "OTHER", "metadata" : {}, "salience" : 0.16001467, "mentions" : [{"text" : {"content" : "hair", "beginOffset" : -1}, "type" : "COMMON"}]}, {"name" : "bengal", "type" : "LOCATION", "metadata" : {}, "salience" : 0.10174756, "mentions" : [{"text" : {"content" : "bengal", "beginOffset" : -1}, "type" : "COMMON"}]}], "documentSentiment" : {"magnitude" : 0.9, "score" : 0.9}, "language" : "en", "categories" : []} | json_instruct | {"type": "object", "properties": {"sentences": {"type": "array", "items": {"type": "object", "properties": {"text": {"type": "object", "properties": {"content": {"type": "string"}, "beginOffset": {"type": "integer"}}, "required": ["content", "beginOffset"]}, "sentiment": {"type": "object", "properties": {"magnitude": {"type": "number"}, "score": {"type": "number"}}, "required": ["magnitude", "score"]}}, "required": ["text", "sentiment"]}}, "tokens": {"type": "array", "items": {}}, "entities": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "type": {"type": "string"}, "metadata": {"type": "object", "properties": {}, "required": []}, "salience": {"type": "number"}, "mentions": {"type": "array", "items": {"type": "object", "properties": {"text": {"type": "object", "properties": {"content": {"type": "string"}, "beginOffset": {"type": "integer"}}, "required": ["content", "beginOffset"]}, "type": {"type": "string"}}, "required": ["text", "type"]}}}, "required": ["name", "type", "metadata", "salience", "mentions"]}}, "documentSentiment": {"type": "object", "properties": {"magnitude": {"type": "number"}, "score": {"type": "number"}}, "required": ["magnitude", "score"]}, "language": {"type": "string"}, "categories": {"type": "array", "items": {}}}, "required": ["sentences", "tokens", "entities", "documentSentiment", "language", "categories"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "array", "items": {"type": "array", "items": {"type": "string"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [["220381405598", "\u521b\u4e1a\u519c\u573a\u865a\u62df\u751f\u6d3b\u533a", "123", "0"]] | json_instruct | {"type": "array", "items": {"type": "array", "items": {"type": "string"}}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"vega-lite.js": {"type": "string"}, "vega-lite.min.js": {"type": "string"}}, "required": ["vega-lite.js", "vega-lite.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"vega-lite.js" : "sha512-YaMuJkyF5kL1PspWHNjbek4hPmAabWctBwpa729h85qp3qNgXKCZHArUblPLRBwLOIEz06RhnwaGptclvLU8Pg==", "vega-lite.min.js" : "sha512-YQ9G9a+u5y25i0T2+zzgC8V1MV7Ry7ap+GqrdENGy3EIAs3m+SOlBI+kRMeI96Ys2SV0U6MrxB7DIjC1S2mYJg=="} | json_instruct | {"type": "object", "properties": {"vega-lite.js": {"type": "string"}, "vega-lite.min.js": {"type": "string"}}, "required": ["vega-lite.js", "vega-lite.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"confirmed": {"type": "object", "properties": {}, "required": []}, "suspected": {"type": "object", "properties": {}, "required": []}, "deaths": {"type": "object", "properties": {"CDMX": {"type": "integer"}, "SI": {"type": "integer"}, "HG": {"type": "integer"}, "JA": {"type": "integer"}, "SL": {"type": "integer"}, "CO": {"type": "integer"}, "BS": {"type": "integer"}, "DG": {"type": "integer"}, "MX": {"type": "integer"}, "MI": {"type": "integer"}, "MO": {"type": "integer"}, "OA": {"type": "integer"}, "PU": {"type": "integer"}, "QT": {"type": "integer"}, "QR": {"type": "integer"}, "VE": {"type": "integer"}, "GR": {"type": "integer"}, "NA": {"type": "integer"}, "TB": {"type": "integer"}, "ZA": {"type": "integer"}}, "required": ["CDMX", "SI", "HG", "JA", "SL", "CO", "BS", "DG", "MX", "MI", "MO", "OA", "PU", "QT", "QR", "VE", "GR", "NA", "TB", "ZA"]}}, "required": ["confirmed", "suspected", "deaths"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"confirmed" : {}, "suspected" : {}, "deaths" : {"CDMX" : 8, "SI" : 4, "HG" : 3, "JA" : 3, "SL" : 2, "CO" : 2, "BS" : 2, "DG" : 1, "MX" : 1, "MI" : 1, "MO" : 1, "OA" : 1, "PU" : 1, "QT" : 1, "QR" : 1, "VE" : 1, "GR" : 1, "NA" : 1, "TB" : 1, "ZA" : 1}} | json_instruct | {"type": "object", "properties": {"confirmed": {"type": "object", "properties": {}, "required": []}, "suspected": {"type": "object", "properties": {}, "required": []}, "deaths": {"type": "object", "properties": {"CDMX": {"type": "integer"}, "SI": {"type": "integer"}, "HG": {"type": "integer"}, "JA": {"type": "integer"}, "SL": {"type": "integer"}, "CO": {"type": "integer"}, "BS": {"type": "integer"}, "DG": {"type": "integer"}, "MX": {"type": "integer"}, "MI": {"type": "integer"}, "MO": {"type": "integer"}, "OA": {"type": "integer"}, "PU": {"type": "integer"}, "QT": {"type": "integer"}, "QR": {"type": "integer"}, "VE": {"type": "integer"}, "GR": {"type": "integer"}, "NA": {"type": "integer"}, "TB": {"type": "integer"}, "ZA": {"type": "integer"}}, "required": ["CDMX", "SI", "HG", "JA", "SL", "CO", "BS", "DG", "MX", "MI", "MO", "OA", "PU", "QT", "QR", "VE", "GR", "NA", "TB", "ZA"]}}, "required": ["confirmed", "suspected", "deaths"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "array", "items": {"type": "object", "properties": {"summary_date": {"type": "string"}, "period_id": {"type": "integer"}, "score": {"type": "integer"}, "score_activity_balance": {"type": "integer"}, "score_hrv_balance": {"type": "integer"}, "score_previous_day": {"type": "integer"}, "score_previous_night": {"type": "integer"}, "score_recovery_index": {"type": "integer"}, "score_resting_hr": {"type": "integer"}, "score_sleep_balance": {"type": "integer"}, "score_temperature": {"type": "integer"}, "rest_mode_state": {"type": "integer"}}, "required": ["summary_date", "period_id", "score", "score_activity_balance", "score_hrv_balance", "score_previous_day", "score_previous_night", "score_recovery_index", "score_resting_hr", "score_sleep_balance", "score_temperature", "rest_mode_state"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"summary_date" : "2021-07-24", "period_id" : 4, "score" : 83, "score_activity_balance" : 91, "score_hrv_balance" : 89, "score_previous_day" : 95, "score_previous_night" : 60, "score_recovery_index" : 100, "score_resting_hr" : 100, "score_sleep_balance" : 69, "score_temperature" : 96, "rest_mode_state" : 0}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"summary_date": {"type": "string"}, "period_id": {"type": "integer"}, "score": {"type": "integer"}, "score_activity_balance": {"type": "integer"}, "score_hrv_balance": {"type": "integer"}, "score_previous_day": {"type": "integer"}, "score_previous_night": {"type": "integer"}, "score_recovery_index": {"type": "integer"}, "score_resting_hr": {"type": "integer"}, "score_sleep_balance": {"type": "integer"}, "score_temperature": {"type": "integer"}, "rest_mode_state": {"type": "integer"}}, "required": ["summary_date", "period_id", "score", "score_activity_balance", "score_hrv_balance", "score_previous_day", "score_previous_night", "score_recovery_index", "score_resting_hr", "score_sleep_balance", "score_temperature", "rest_mode_state"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"name": {"type": "string"}, "id": {"type": "integer"}, "slug": {"type": "string"}, "description": {"type": "string"}, "article": {"type": "string"}, "externalImages": {"type": "array", "items": {"type": "string"}}, "price": {"type": "integer"}, "properties": {"type": "array", "items": {}}}, "required": ["name", "id", "slug", "description", "article", "externalImages", "price", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "Equaliser Cartridge . Round Liner 7RLLT (0,35\u043c\u043c)", "id" : 378, "slug" : "equaliser-cartridge-round-liner-7rllt-0-35mm", "description" : "\u041a\u043e\u043d\u0442\u0443\u0440\u043d\u044b\u0435 \u0438\u0433\u043b\u044b \u0441 \u0434\u043b\u0438\u043d\u043d\u043e\u0439 \u0437\u0430\u0442\u043e\u0447\u043a\u043e\u0439. \u0414\u0438\u0430\u043c\u0435\u0442\u0440 - 0,35\u043c\u043c\r\n\r\n\u0423\u0434\u043e\u0431\u043d\u0430\u044f \u0438 \u043f\u0440\u0430\u0432\u0438\u043b\u044c\u043d\u0430\u044f \u043a\u043e\u043d\u0441\u0442\u0440\u0443\u043a\u0446\u0438\u044f \u043f\u0440\u0435\u0434\u0443\u0441\u043c\u0430\u0442\u0440\u0438\u0432\u0430\u0435\u0442 \u043e\u0442\u043b\u0438\u0447\u043d\u044b\u0439 \u043f\u043e\u0442\u043e\u043a \u043a\u0440\u0430\u0441\u043a\u0438 \u0438 \u043e\u0442\u043b\u0438\u0447\u043d\u0443\u044e \u0432\u0438\u0434\u0438\u043c\u043e\u0441\u0442\u044c - \u0438\u0433\u043b\u044b, \u0438\u0437\u0433\u043e\u0442\u043e\u0432\u043b\u0435\u043d\u043d\u044b\u0435 \u0438\u0437 \u0432\u044b\u0441\u043e\u043a\u043e\u043a\u0430\u0447\u0435\u0441\u0442\u0432\u0435\u043d\u043d\u043e\u0439 \u0441\u0442\u0430\u043b\u0438 - \u0421\u0423\u041f\u0415\u0420 \u041e\u0421\u0422\u0420\u042b\u0415! \u041a\u0430\u0436\u0434\u044b\u0439 \u043a\u0430\u0440\u0442\u0440\u0438\u0434\u0436 \u0441\u0442\u0435\u0440\u0438\u043b\u0438\u0437\u043e\u0432\u0430\u043d \u0438 \u043e\u0441\u043d\u0430\u0449\u0435\u043d \u043c\u0435\u043c\u0431\u0440\u0430\u043d\u043e\u0439. \u041e\u0442\u043b\u0438\u0447\u043d\u043e\u0435 \u043a\u0430\u0447\u0435\u0441\u0442\u0432\u043e \u043a\u0430\u0436\u0434\u043e\u0439 \u0438\u0433\u043b\u044b. \r\n\r\n\u0412 \u0443\u043f\u0430\u043a\u043e\u0432\u043a\u0435 20 \u0448\u0442. ", "article" : "EQ-001", "externalImages" : ["0.jpeg"], "price" : 30, "properties" : []} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "id": {"type": "integer"}, "slug": {"type": "string"}, "description": {"type": "string"}, "article": {"type": "string"}, "externalImages": {"type": "array", "items": {"type": "string"}}, "price": {"type": "integer"}, "properties": {"type": "array", "items": {}}}, "required": ["name", "id", "slug", "description", "article", "externalImages", "price", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"10": {"type": "number"}, "11": {"type": "number"}, "12": {"type": "number"}, "13": {"type": "number"}, "15": {"type": "number"}, "16": {"type": "number"}, "17": {"type": "number"}, "18": {"type": "number"}, "19": {"type": "number"}}, "required": ["10", "11", "12", "13", "15", "16", "17", "18", "19"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"10" : 0.21951219512195122, "11" : 0.7172413793103448, "12" : 0.024390243902439025, "13" : 0.024390243902439025, "15" : 0.0, "16" : 0.0, "17" : 0.024390243902439025, "18" : 0.0975609756097561, "19" : 0.3170731707317073} | json_instruct | {"type": "object", "properties": {"10": {"type": "number"}, "11": {"type": "number"}, "12": {"type": "number"}, "13": {"type": "number"}, "15": {"type": "number"}, "16": {"type": "number"}, "17": {"type": "number"}, "18": {"type": "number"}, "19": {"type": "number"}}, "required": ["10", "11", "12", "13", "15", "16", "17", "18", "19"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"Spase": {"type": "object", "properties": {"xmlns": {"type": "string"}, "Version": {"type": "string"}, "DisplayData": {"type": "object", "properties": {"ResourceID": {"type": "string"}, "ResourceHeader": {"type": "object", "properties": {"ResourceName": {"type": "string"}, "ReleaseDate": {"type": "string"}, "Description": {"type": "string"}, "Contact": {"type": "array", "items": {"type": "object", "properties": {"PersonID": {"type": "string"}, "Role": {"type": "string"}}, "required": ["PersonID", "Role"]}}, "PriorID": {"type": "string"}}, "required": ["ResourceName", "ReleaseDate", "Description", "Contact", "PriorID"]}, "AccessInformation": {"type": "object", "properties": {"RepositoryID": {"type": "string"}, "Availability": {"type": "string"}, "AccessRights": {"type": "string"}, "AccessURL": {"type": "object", "properties": {"Name": {"type": "string"}, "URL": {"type": "string"}}, "required": ["Name", "URL"]}, "Format": {"type": "string"}}, "required": ["RepositoryID", "Availability", "AccessRights", "AccessURL", "Format"]}, "ProviderProcessingLevel": {"type": "string"}, "InstrumentID": {"type": "string"}, "MeasurementType": {"type": "string"}, "TemporalDescription": {"type": "object", "properties": {"TimeSpan": {"type": "object", "properties": {"StartDate": {"type": "string"}, "StopDate": {"type": "string"}}, "required": ["StartDate", "StopDate"]}}, "required": ["TimeSpan"]}, "ObservedRegion": {"type": "string"}}, "required": ["ResourceID", "ResourceHeader", "AccessInformation", "ProviderProcessingLevel", "InstrumentID", "MeasurementType", "TemporalDescription", "ObservedRegion"]}}, "required": ["xmlns", "Version", "DisplayData"]}}, "required": ["Spase"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"Spase" : {"xmlns" : "http://www.spase-group.org/data/schema", "Version" : "2.2.2", "DisplayData" : {"ResourceID" : "spase://VSPO/DisplayData/Ulysses/FGM/PLOTS", "ResourceHeader" : {"ResourceName" : "Ulysses magnetic field data plots at ESA", "ReleaseDate" : "2019-05-05T12:34:56Z", "Description" : "1-min and 1-hour Ulysses magnetic field data at ESA, also 1-sec data for 1990-3", "Contact" : [{"PersonID" : "spase://SMWG/Person/Andre.Balogh", "Role" : "PrincipalInvestigator"}, {"PersonID" : "spase://SMWG/Person/Joyce.E.Wolf", "Role" : "DataProducer"}], "PriorID" : "spase://VSPO/DisplayData/P_ULYSSES_HDR_MAG_PLOTS_UDS"}, "AccessInformation" : {"RepositoryID" : "spase://SMWG/Repository/ESA/ESAC/UlyssesFinalArchive", "Availability" : "Online", "AccessRights" : "Open", "AccessURL" : {"Name" : "VHM_FGM plots from ESA", "URL" : "http://ufa.esac.esa.int/ufa/#plots"}, "Format" : "GIF"}, "ProviderProcessingLevel" : "CALIBRATED", "InstrumentID" : "spase://SMWG/Instrument/Ulysses/FGM", "MeasurementType" : "MagneticField", "TemporalDescription" : {"TimeSpan" : {"StartDate" : "1990-10-25T00:00:00", "StopDate" : "2008-08-31T00:00:00"}}, "ObservedRegion" : "Heliosphere.Outer"}}} | json_instruct | {"type": "object", "properties": {"Spase": {"type": "object", "properties": {"xmlns": {"type": "string"}, "Version": {"type": "string"}, "DisplayData": {"type": "object", "properties": {"ResourceID": {"type": "string"}, "ResourceHeader": {"type": "object", "properties": {"ResourceName": {"type": "string"}, "ReleaseDate": {"type": "string"}, "Description": {"type": "string"}, "Contact": {"type": "array", "items": {"type": "object", "properties": {"PersonID": {"type": "string"}, "Role": {"type": "string"}}, "required": ["PersonID", "Role"]}}, "PriorID": {"type": "string"}}, "required": ["ResourceName", "ReleaseDate", "Description", "Contact", "PriorID"]}, "AccessInformation": {"type": "object", "properties": {"RepositoryID": {"type": "string"}, "Availability": {"type": "string"}, "AccessRights": {"type": "string"}, "AccessURL": {"type": "object", "properties": {"Name": {"type": "string"}, "URL": {"type": "string"}}, "required": ["Name", "URL"]}, "Format": {"type": "string"}}, "required": ["RepositoryID", "Availability", "AccessRights", "AccessURL", "Format"]}, "ProviderProcessingLevel": {"type": "string"}, "InstrumentID": {"type": "string"}, "MeasurementType": {"type": "string"}, "TemporalDescription": {"type": "object", "properties": {"TimeSpan": {"type": "object", "properties": {"StartDate": {"type": "string"}, "StopDate": {"type": "string"}}, "required": ["StartDate", "StopDate"]}}, "required": ["TimeSpan"]}, "ObservedRegion": {"type": "string"}}, "required": ["ResourceID", "ResourceHeader", "AccessInformation", "ProviderProcessingLevel", "InstrumentID", "MeasurementType", "TemporalDescription", "ObservedRegion"]}}, "required": ["xmlns", "Version", "DisplayData"]}}, "required": ["Spase"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"coord": {"type": "object", "properties": {"lon": {"type": "number"}, "lat": {"type": "number"}}, "required": ["lon", "lat"]}, "weather": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "main": {"type": "string"}, "description": {"type": "string"}, "icon": {"type": "string"}}, "required": ["id", "main", "description", "icon"]}}, "base": {"type": "string"}, "main": {"type": "object", "properties": {"temp": {"type": "number"}, "feels_like": {"type": "number"}, "temp_min": {"type": "number"}, "temp_max": {"type": "number"}, "pressure": {"type": "integer"}, "humidity": {"type": "integer"}}, "required": ["temp", "feels_like", "temp_min", "temp_max", "pressure", "humidity"]}, "visibility": {"type": "integer"}, "wind": {"type": "object", "properties": {"speed": {"type": "number"}, "deg": {"type": "integer"}}, "required": ["speed", "deg"]}, "clouds": {"type": "object", "properties": {"all": {"type": "integer"}}, "required": ["all"]}, "dt": {"type": "integer"}, "sys": {"type": "object", "properties": {"type": {"type": "integer"}, "id": {"type": "integer"}, "country": {"type": "string"}, "sunrise": {"type": "integer"}, "sunset": {"type": "integer"}}, "required": ["type", "id", "country", "sunrise", "sunset"]}, "timezone": {"type": "integer"}, "id": {"type": "integer"}, "name": {"type": "string"}, "cod": {"type": "integer"}}, "required": ["coord", "weather", "base", "main", "visibility", "wind", "clouds", "dt", "sys", "timezone", "id", "name", "cod"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"coord" : {"lon" : -0.13, "lat" : 51.51}, "weather" : [{"id" : 800, "main" : "Clear", "description" : "clear sky", "icon" : "01n"}], "base" : "stations", "main" : {"temp" : 7.47, "feels_like" : 3.16, "temp_min" : 4.44, "temp_max" : 10.56, "pressure" : 1019, "humidity" : 75}, "visibility" : 10000, "wind" : {"speed" : 4.1, "deg" : 100}, "clouds" : {"all" : 0}, "dt" : 1586043314, "sys" : {"type" : 1, "id" : 1414, "country" : "GB", "sunrise" : 1586064349, "sunset" : 1586112000}, "timezone" : 3600, "id" : 2643743, "name" : "London", "cod" : 200} | json_instruct | {"type": "object", "properties": {"coord": {"type": "object", "properties": {"lon": {"type": "number"}, "lat": {"type": "number"}}, "required": ["lon", "lat"]}, "weather": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "main": {"type": "string"}, "description": {"type": "string"}, "icon": {"type": "string"}}, "required": ["id", "main", "description", "icon"]}}, "base": {"type": "string"}, "main": {"type": "object", "properties": {"temp": {"type": "number"}, "feels_like": {"type": "number"}, "temp_min": {"type": "number"}, "temp_max": {"type": "number"}, "pressure": {"type": "integer"}, "humidity": {"type": "integer"}}, "required": ["temp", "feels_like", "temp_min", "temp_max", "pressure", "humidity"]}, "visibility": {"type": "integer"}, "wind": {"type": "object", "properties": {"speed": {"type": "number"}, "deg": {"type": "integer"}}, "required": ["speed", "deg"]}, "clouds": {"type": "object", "properties": {"all": {"type": "integer"}}, "required": ["all"]}, "dt": {"type": "integer"}, "sys": {"type": "object", "properties": {"type": {"type": "integer"}, "id": {"type": "integer"}, "country": {"type": "string"}, "sunrise": {"type": "integer"}, "sunset": {"type": "integer"}}, "required": ["type", "id", "country", "sunrise", "sunset"]}, "timezone": {"type": "integer"}, "id": {"type": "integer"}, "name": {"type": "string"}, "cod": {"type": "integer"}}, "required": ["coord", "weather", "base", "main", "visibility", "wind", "clouds", "dt", "sys", "timezone", "id", "name", "cod"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"\uc774\ub984": {"type": "string"}, "\ud55c\ubb38\uba85": {"type": "string"}, "\uc0dd\ub144\uc6d4\uc77c": {"type": "string"}, "\uc815\ub2f9": {"type": "string"}, "\uc120\uac70\uad6c": {"type": "string"}, "\ub2f9\uc120\ud69f\uc218": {"type": "string"}, "\ub2f9\uc120\ub300\uc218": {"type": "string"}}, "required": ["\uc774\ub984", "\ud55c\ubb38\uba85", "\uc0dd\ub144\uc6d4\uc77c", "\uc815\ub2f9", "\uc120\uac70\uad6c", "\ub2f9\uc120\ud69f\uc218", "\ub2f9\uc120\ub300\uc218"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"\uc774\ub984" : "\uc774\uc740\uc7ac", "\ud55c\ubb38\uba85" : "\uf9e1\u6069\u5bb0", "\uc0dd\ub144\uc6d4\uc77c" : "1952-03-27", "\uc815\ub2f9" : "\ud55c\ub098\ub77c\ub2f9", "\uc120\uac70\uad6c" : "\ube44\ub840\ub300\ud45c", "\ub2f9\uc120\ud69f\uc218" : "\uc7ac\uc120", "\ub2f9\uc120\ub300\uc218" : "18, 20"} | json_instruct | {"type": "object", "properties": {"\uc774\ub984": {"type": "string"}, "\ud55c\ubb38\uba85": {"type": "string"}, "\uc0dd\ub144\uc6d4\uc77c": {"type": "string"}, "\uc815\ub2f9": {"type": "string"}, "\uc120\uac70\uad6c": {"type": "string"}, "\ub2f9\uc120\ud69f\uc218": {"type": "string"}, "\ub2f9\uc120\ub300\uc218": {"type": "string"}}, "required": ["\uc774\ub984", "\ud55c\ubb38\uba85", "\uc0dd\ub144\uc6d4\uc77c", "\uc815\ub2f9", "\uc120\uac70\uad6c", "\ub2f9\uc120\ud69f\uc218", "\ub2f9\uc120\ub300\uc218"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"type": {"type": "string"}, "features": {"type": "array", "items": {"type": "object", "properties": {"geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["type", "coordinates"]}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"cartodb_id": {"type": "integer"}}, "required": ["cartodb_id"]}}, "required": ["geometry", "type", "properties"]}}}, "required": ["type", "features"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"type" : "FeatureCollection", "features" : [{"geometry" : {"type" : "Polygon", "coordinates" : [[[-100.501183, 31.410269], [-100.500437, 31.412237], [-100.49637, 31.416139], [-100.495819, 31.419632], [-100.496849, 31.424103], [-100.496263, 31.424356], [-100.469934, 31.415201], [-100.478258, 31.407649], [-100.480045, 31.408224], [-100.479239, 31.410649], [-100.482611, 31.410687], [-100.484771, 31.411609], [-100.491357, 31.412018], [-100.491726, 31.409588], [-100.49301, 31.410181], [-100.501245, 31.40976], [-100.501183, 31.410269]]]}, "type" : "Feature", "properties" : {"cartodb_id" : 89053}}]} | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "features": {"type": "array", "items": {"type": "object", "properties": {"geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["type", "coordinates"]}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"cartodb_id": {"type": "integer"}}, "required": ["cartodb_id"]}}, "required": ["geometry", "type", "properties"]}}}, "required": ["type", "features"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"repair_end": {"type": "string"}, "repair_begin": {"type": "string"}, "patches": {"type": "array", "items": {}}}, "required": ["repair_end", "repair_begin", "patches"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"repair_end" : "2019-07-01 20:01:37.156030", "repair_begin" : "2019-07-01 19:58:32.426513", "patches" : []} | json_instruct | {"type": "object", "properties": {"repair_end": {"type": "string"}, "repair_begin": {"type": "string"}, "patches": {"type": "array", "items": {}}}, "required": ["repair_end", "repair_begin", "patches"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"brief": {"type": "string"}, "long": {"type": "string"}}, "required": ["brief", "long"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"brief" : "flour", "long" : "<i>Meaning:</i> \"flour\" (as chipped off).<br/><i>Usage:</i> (fine) flour, meal.<br/><i>Source:</i> from an unused root meaning to \"strip\";"} | json_instruct | {"type": "object", "properties": {"brief": {"type": "string"}, "long": {"type": "string"}}, "required": ["brief", "long"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"name": {"type": "string"}, "name_long": {"type": "string"}, "fips": {"type": "string"}, "state_code_int": {"type": "integer"}, "state_code_postal": {"type": "string"}, "state_code_iso": {"type": "string"}, "county_code": {"type": "integer"}, "population": {"type": "integer"}, "countrylevel_id": {"type": "string"}, "census_data": {"type": "object", "properties": {"COUNTYNS": {"type": "string"}, "AFFGEOID": {"type": "string"}, "LSAD": {"type": "string"}, "ALAND": {"type": "integer"}, "AWATER": {"type": "integer"}}, "required": ["COUNTYNS", "AFFGEOID", "LSAD", "ALAND", "AWATER"]}, "center_lat": {"type": "number"}, "center_lon": {"type": "number"}, "area_m2": {"type": "integer"}, "timezone": {"type": "string"}}, "required": ["name", "name_long", "fips", "state_code_int", "state_code_postal", "state_code_iso", "county_code", "population", "countrylevel_id", "census_data", "center_lat", "center_lon", "area_m2", "timezone"]}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["type", "coordinates"]}}, "required": ["type", "properties", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"type" : "Feature", "properties" : {"name" : "Adams County", "name_long" : "Adams County, IL", "fips" : "17001", "state_code_int" : 17, "state_code_postal" : "IL", "state_code_iso" : "US-IL", "county_code" : 1, "population" : 65435, "countrylevel_id" : "fips:17001", "census_data" : {"COUNTYNS" : "00424202", "AFFGEOID" : "0500000US17001", "LSAD" : "06", "ALAND" : 2214804824, "AWATER" : 41767689}, "center_lat" : 39.99, "center_lon" : -91.19, "area_m2" : 2256572513, "timezone" : "America/Chicago"}, "geometry" : {"type" : "Polygon", "coordinates" : [[[-91.513, 40.181], [-91.511, 40.189], [-91.51, 40.191], [-91.505, 40.196], [-91.504, 40.198], [-91.505, 40.2], [-90.912, 40.193], [-90.913, 40.104], [-90.915, 39.93], [-90.917, 39.917], [-90.917, 39.845], [-90.916, 39.757], [-91.365, 39.759], [-91.366, 39.765], [-91.366, 39.775], [-91.365, 39.779], [-91.362, 39.785], [-91.362, 39.788], [-91.363, 39.793], [-91.368, 39.8], [-91.375, 39.809], [-91.378, 39.811], [-91.386, 39.816], [-91.398, 39.821], [-91.406, 39.826], [-91.415, 39.83], [-91.43, 39.838], [-91.433, 39.841], [-91.436, 39.846], [-91.446, 39.87], [-91.448, 39.878], [-91.447, 39.883], [-91.444, 39.894], [-91.429, 39.908], [-91.421, 39.915], [-91.42, 39.917], [-91.419, 39.922], [-91.419, 39.928], [-91.422, 39.933], [-91.426, 39.938], [-91.429, 39.941], [-91.435, 39.945], [-91.437, 39.946], [-91.442, 39.951], [-91.447, 39.96], [-91.45, 39.965], [-91.455, 39.971], [-91.459, 39.979], [-91.46, 39.98], [-91.464, 39.982], [-91.465, 39.984], [-91.467, 39.987], [-91.467, 39.991], [-91.469, 39.995], [-91.477, 40.009], [-91.484, 40.019], [-91.487, 40.023], [-91.495, 40.036], [-91.49, 40.057], [-91.495, 40.071], [-91.498, 40.078], [-91.501, 40.091], [-91.506, 40.108], [-91.509, 40.122], [-91.51, 40.128], [-91.512, 40.147], [-91.512, 40.149], [-91.508, 40.156], [-91.508, 40.158], [-91.512, 40.17], [-91.513, 40.179], [-91.513, 40.181]]]}} | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"name": {"type": "string"}, "name_long": {"type": "string"}, "fips": {"type": "string"}, "state_code_int": {"type": "integer"}, "state_code_postal": {"type": "string"}, "state_code_iso": {"type": "string"}, "county_code": {"type": "integer"}, "population": {"type": "integer"}, "countrylevel_id": {"type": "string"}, "census_data": {"type": "object", "properties": {"COUNTYNS": {"type": "string"}, "AFFGEOID": {"type": "string"}, "LSAD": {"type": "string"}, "ALAND": {"type": "integer"}, "AWATER": {"type": "integer"}}, "required": ["COUNTYNS", "AFFGEOID", "LSAD", "ALAND", "AWATER"]}, "center_lat": {"type": "number"}, "center_lon": {"type": "number"}, "area_m2": {"type": "integer"}, "timezone": {"type": "string"}}, "required": ["name", "name_long", "fips", "state_code_int", "state_code_postal", "state_code_iso", "county_code", "population", "countrylevel_id", "census_data", "center_lat", "center_lon", "area_m2", "timezone"]}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["type", "coordinates"]}}, "required": ["type", "properties", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"title": {"type": "string"}, "tagline": {"type": "object", "properties": {"en": {"type": "string"}, "zh": {"type": "string"}}, "required": ["en", "zh"]}, "introduce": {"type": "object", "properties": {"en": {"type": "string"}, "zh": {"type": "string"}}, "required": ["en", "zh"]}, "account_name": {"type": "string"}, "public_key": {"type": "string"}, "org": {"type": "object", "properties": {"name": {"type": "string"}, "website": {"type": "string"}, "email": {"type": "string"}, "branding": {"type": "object", "properties": {"logo": {"type": "string"}, "cover": {"type": "string"}}, "required": ["logo", "cover"]}, "location": {"type": "string"}, "social_network": {"type": "object", "properties": {"steemit": {"type": "string"}, "twitter": {"type": "string"}, "facebook": {"type": "string"}, "github": {"type": "string"}, "telegram": {"type": "string"}}, "required": ["steemit", "twitter", "facebook", "github", "telegram"]}}, "required": ["name", "website", "email", "branding", "location", "social_network"]}, "nodes": {"type": "array", "items": {"type": "object", "properties": {"location": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "name"]}, "is_producer": {"type": "boolean"}, "p2p_endpoint": {"type": "string"}, "api_endpoint": {"type": "string"}, "ssl_endpoint": {"type": "string"}}, "required": ["location", "is_producer", "p2p_endpoint", "api_endpoint", "ssl_endpoint"]}}}, "required": ["title", "tagline", "introduce", "account_name", "public_key", "org", "nodes"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"title" : "EOSphere", "tagline" : {"en" : "Australian based, and serving the entire EOSPhere", "zh" : "\u603b\u90e8\u8bbe\u5728\u6fb3\u5927\u5229\u4e9a\uff0c\u4f46\u670d\u52a1\u4e8e\u6574\u4e2aEOSphere"}, "introduce" : {"en" : "EOSphere are a passionate group of EOS enthusiasts and data centre professionals campaigning for election as founding block producers for the EOS Mainnet. Based in Australia, EOSphere are focussed on bootstrapping the EOS community and serving the entire EOSphere through provision of infrastructure, governance and community benefit initiatives", "zh" : "EOSphere\u662f\u4e00\u7fa4\u5145\u6ee1\u70ed\u60c5\u7684EOS\u7231\u597d\u8005\u548c\u6570\u636e\u4e2d\u5fc3\u4e13\u4e1a\u4eba\u58eb\uff0c\u4ed6\u4eec\u7ade\u9009EOS Mainnet\u7684\u521b\u59cb\u4eba\u3002 \u603b\u90e8\u4f4d\u4e8e\u6fb3\u5927\u5229\u4e9a\uff0cEOSphere\u81f4\u529b\u4e8e\u5f15\u5bfcEOS\u793e\u533a\uff0c\u5e76\u901a\u8fc7\u63d0\u4f9b\u57fa\u7840\u8bbe\u65bd\uff0c\u6cbb\u7406\u548c\u793e\u533a\u60e0\u76ca\u4e3e\u63aa\u4e3a\u6574\u4e2aEOSphere\u670d\u52a1"}, "account_name" : "eosphereiobp", "public_key" : "EOS5FYRrG3ThNU56d3uZ8d4bo4MsN5Fig9WPY3xYSpH3RqPhpoH3A", "org" : {"name" : "EOSphere", "website" : "https://www.eosphere.io/", "email" : "[email protected]", "branding" : {"logo" : "logo-eosphere.png", "cover" : "cover-eosphere.png"}, "location" : "Perth, Australia", "social_network" : {"steemit" : "https://steemit.com/@eosphere", "twitter" : "https://twitter.com/eosphere_io", "facebook" : "https://www.facebook.com/eosphereio", "github" : "https://github.com/eosphere", "telegram" : "https://t.me/@rossco99"}}, "nodes" : [{"location" : {"id" : "61", "name" : "Australia"}, "is_producer" : false, "p2p_endpoint" : "node1.eosphere.io:9876", "api_endpoint" : "node1.eosphere.io:8888", "ssl_endpoint" : "node1.eosphere.io:443"}]} | json_instruct | {"type": "object", "properties": {"title": {"type": "string"}, "tagline": {"type": "object", "properties": {"en": {"type": "string"}, "zh": {"type": "string"}}, "required": ["en", "zh"]}, "introduce": {"type": "object", "properties": {"en": {"type": "string"}, "zh": {"type": "string"}}, "required": ["en", "zh"]}, "account_name": {"type": "string"}, "public_key": {"type": "string"}, "org": {"type": "object", "properties": {"name": {"type": "string"}, "website": {"type": "string"}, "email": {"type": "string"}, "branding": {"type": "object", "properties": {"logo": {"type": "string"}, "cover": {"type": "string"}}, "required": ["logo", "cover"]}, "location": {"type": "string"}, "social_network": {"type": "object", "properties": {"steemit": {"type": "string"}, "twitter": {"type": "string"}, "facebook": {"type": "string"}, "github": {"type": "string"}, "telegram": {"type": "string"}}, "required": ["steemit", "twitter", "facebook", "github", "telegram"]}}, "required": ["name", "website", "email", "branding", "location", "social_network"]}, "nodes": {"type": "array", "items": {"type": "object", "properties": {"location": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "name"]}, "is_producer": {"type": "boolean"}, "p2p_endpoint": {"type": "string"}, "api_endpoint": {"type": "string"}, "ssl_endpoint": {"type": "string"}}, "required": ["location", "is_producer", "p2p_endpoint", "api_endpoint", "ssl_endpoint"]}}}, "required": ["title", "tagline", "introduce", "account_name", "public_key", "org", "nodes"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {"type": "integer"}}, "productReviews": {"type": "array", "items": {"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" : 24403, "cartId" : "2088811e-d9fd-4569-8642-d9d5e9fc8e73", "preferredProducts" : [977, 1107, 3522], "productReviews" : [{"productId" : 1311, "reviewText" : "heard about this on mbube radio, decided to give it a try.", "reviewDate" : "2018-07-21T22:43:26.1009912+03:00"}, {"productId" : 540, "reviewText" : "I saw one of these in Saint Lucia and I bought one.", "reviewDate" : "2017-08-06T05:52:42.8777605+03:00"}, {"productId" : 1952, "reviewText" : "I saw one of these in Canada and I bought one.", "reviewDate" : "2017-01-22T06:33:45.1899783+02:00"}]} | json_instruct | {"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {"type": "integer"}}, "productReviews": {"type": "array", "items": {"type": "object", "properties": {"productId": {"type": "integer"}, "reviewText": {"type": "string"}, "reviewDate": {"type": "string"}}, "required": ["productId", "reviewText", "reviewDate"]}}}, "required": ["userId", "cartId", "preferredProducts", "productReviews"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"coord": {"type": "object", "properties": {"lon": {"type": "number"}, "lat": {"type": "number"}}, "required": ["lon", "lat"]}, "weather": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "main": {"type": "string"}, "description": {"type": "string"}, "icon": {"type": "string"}}, "required": ["id", "main", "description", "icon"]}}, "base": {"type": "string"}, "main": {"type": "object", "properties": {"temp": {"type": "number"}, "feels_like": {"type": "number"}, "temp_min": {"type": "number"}, "temp_max": {"type": "number"}, "pressure": {"type": "integer"}, "humidity": {"type": "integer"}, "sea_level": {"type": "integer"}, "grnd_level": {"type": "integer"}}, "required": ["temp", "feels_like", "temp_min", "temp_max", "pressure", "humidity", "sea_level", "grnd_level"]}, "visibility": {"type": "integer"}, "wind": {"type": "object", "properties": {"speed": {"type": "number"}, "deg": {"type": "integer"}, "gust": {"type": "number"}}, "required": ["speed", "deg", "gust"]}, "clouds": {"type": "object", "properties": {"all": {"type": "integer"}}, "required": ["all"]}, "dt": {"type": "integer"}, "sys": {"type": "object", "properties": {"type": {"type": "integer"}, "id": {"type": "integer"}, "country": {"type": "string"}, "sunrise": {"type": "integer"}, "sunset": {"type": "integer"}}, "required": ["type", "id", "country", "sunrise", "sunset"]}, "timezone": {"type": "integer"}, "id": {"type": "integer"}, "name": {"type": "string"}, "cod": {"type": "integer"}}, "required": ["coord", "weather", "base", "main", "visibility", "wind", "clouds", "dt", "sys", "timezone", "id", "name", "cod"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"coord" : {"lon" : 10.5, "lat" : 51.5}, "weather" : [{"id" : 804, "main" : "Clouds", "description" : "overcast clouds", "icon" : "04d"}], "base" : "stations", "main" : {"temp" : 28.44, "feels_like" : 28.57, "temp_min" : 26.74, "temp_max" : 28.66, "pressure" : 1020, "humidity" : 46, "sea_level" : 1020, "grnd_level" : 985}, "visibility" : 10000, "wind" : {"speed" : 4.19, "deg" : 273, "gust" : 6.6}, "clouds" : {"all" : 100}, "dt" : 1628860043, "sys" : {"type" : 2, "id" : 2039460, "country" : "DE", "sunrise" : 1628827233, "sunset" : 1628880321}, "timezone" : 7200, "id" : 2921044, "name" : "Germany", "cod" : 200} | json_instruct | {"type": "object", "properties": {"coord": {"type": "object", "properties": {"lon": {"type": "number"}, "lat": {"type": "number"}}, "required": ["lon", "lat"]}, "weather": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "main": {"type": "string"}, "description": {"type": "string"}, "icon": {"type": "string"}}, "required": ["id", "main", "description", "icon"]}}, "base": {"type": "string"}, "main": {"type": "object", "properties": {"temp": {"type": "number"}, "feels_like": {"type": "number"}, "temp_min": {"type": "number"}, "temp_max": {"type": "number"}, "pressure": {"type": "integer"}, "humidity": {"type": "integer"}, "sea_level": {"type": "integer"}, "grnd_level": {"type": "integer"}}, "required": ["temp", "feels_like", "temp_min", "temp_max", "pressure", "humidity", "sea_level", "grnd_level"]}, "visibility": {"type": "integer"}, "wind": {"type": "object", "properties": {"speed": {"type": "number"}, "deg": {"type": "integer"}, "gust": {"type": "number"}}, "required": ["speed", "deg", "gust"]}, "clouds": {"type": "object", "properties": {"all": {"type": "integer"}}, "required": ["all"]}, "dt": {"type": "integer"}, "sys": {"type": "object", "properties": {"type": {"type": "integer"}, "id": {"type": "integer"}, "country": {"type": "string"}, "sunrise": {"type": "integer"}, "sunset": {"type": "integer"}}, "required": ["type", "id", "country", "sunrise", "sunset"]}, "timezone": {"type": "integer"}, "id": {"type": "integer"}, "name": {"type": "string"}, "cod": {"type": "integer"}}, "required": ["coord", "weather", "base", "main", "visibility", "wind", "clouds", "dt", "sys", "timezone", "id", "name", "cod"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"name": {"type": "string"}, "app_id": {"type": "string"}, "type": {"type": "string"}}, "required": ["name", "app_id", "type"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "akys", "app_id" : "4a790141", "type" : "ionic-angular"} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "app_id": {"type": "string"}, "type": {"type": "string"}}, "required": ["name", "app_id", "type"], "$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#"}
| ["publish-io", "wisdom"] | json_instruct | {"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "provinceId": {"type": "string"}, "regencyId": {"type": "string"}, "districtId": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "provinceId", "regencyId", "districtId", "name"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"id" : "1001", "provinceId" : "72", "regencyId" : "71", "districtId" : "06", "name" : "Nunu"}, {"id" : "1002", "provinceId" : "72", "regencyId" : "71", "districtId" : "06", "name" : "Palupi"}, {"id" : "1003", "provinceId" : "72", "regencyId" : "71", "districtId" : "06", "name" : "Tawanjuka"}, {"id" : "1004", "provinceId" : "72", "regencyId" : "71", "districtId" : "06", "name" : "Pengawu"}, {"id" : "1005", "provinceId" : "72", "regencyId" : "71", "districtId" : "06", "name" : "Duyu"}, {"id" : "1006", "provinceId" : "72", "regencyId" : "71", "districtId" : "06", "name" : "Boyaoge"}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "provinceId": {"type": "string"}, "regencyId": {"type": "string"}, "districtId": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "provinceId", "regencyId", "districtId", "name"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"text": {"type": "object", "properties": {"0": {"type": "object", "properties": {"m1": {"type": "string"}, "m2": {"type": "string"}}, "required": ["m1", "m2"]}, "1": {"type": "object", "properties": {"m1": {"type": "string"}, "m2": {"type": "string"}}, "required": ["m1", "m2"]}, "2": {"type": "object", "properties": {"m1": {"type": "string"}, "m2": {"type": "string"}}, "required": ["m1", "m2"]}, "3": {"type": "object", "properties": {"m1": {"type": "string"}, "m2": {"type": "string"}}, "required": ["m1", "m2"]}, "4": {"type": "object", "properties": {"m1": {"type": "string"}, "m2": {"type": "string"}}, "required": ["m1", "m2"]}}, "required": ["0", "1", "2", "3", "4"]}}, "required": ["text"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"text" : {"0" : {"m1" : "\u0647\u0631 \u0634\u0628 \u0627\u0632 \u062f\u0633\u062a \u063a\u0645\u062a \u062f\u06cc\u062f\u0647 \u0648 \u062f\u0644 \u062e\u0648\u0646 \u0634\u0648\u062f\u0645", "m2" : "\u0648\u0627\u0646\u06af\u0647 \u0627\u0632 \u0647\u0631 \u0645\u0698\u0647 \u0631\u0627\u0648\u0642 \u0634\u062f\u0647 \u0628\u06cc\u0631\u0648\u0646 \u0634\u0648\u062f\u0645"}, "1" : {"m1" : "\u06af\u0627\u0647 \u06af\u0627\u0647\u06cc \u0628\u0647 \u0633\u0631 \u0632\u0644\u0641 \u062a\u0648 \u062f\u0631 \u0645\u06cc \u0622\u06cc\u0645", "m2" : "\u0628\u0627 \u062f\u0644\u06cc \u062f\u0631 \u0647\u0645 \u0648 \u0622\u0646 \u0647\u0645 \u0632 \u063a\u0645\u062a \u062e\u0648\u0646 \u0634\u0648\u062f\u0645"}, "2" : {"m1" : "\u0645\u0631\u062f\u0645 \u062f\u06cc\u062f\u0647 \u06a9\u0646\u062f \u0631\u0642\u0635 \u0628\u0647 \u0635\u062d\u0631\u0627\u06cc \u062f\u0648 \u0631\u062e", "m2" : "\u0686\u0648\u0646 \u0628\u0645 \u0648 \u0632\u06cc\u0631 \u062f\u0644 \u062e\u0633\u062a\u0647 \u0628\u0647 \u06af\u0631\u062f\u0648\u0646 \u0634\u0648\u062f\u0645"}, "3" : {"m1" : "\u0631\u0648\u0632\u06af\u0627\u0631\u06cc \u0633\u062a \u0645\u0631\u0627 \u0633\u062e\u062a \u067e\u0631\u06cc\u0634\u0627\u0646 \u0632 \u063a\u0645\u062a", "m2" : "\u0686\u0647 \u06a9\u0646\u0645 \u0628\u06cc \u062a\u0648 \u0648 \u0627\u06cc\u0646 \u0639\u0645\u0631 \u0628\u0647 \u0633\u0631 \u0686\u0648\u0646 \u0634\u0648\u062f\u0645\u061f"}, "4" : {"m1" : "\u062e\u0627\u0631 \u062e\u0627\u0631\u062a \u0646\u0634\u0648\u062f \u0627\u0632 \u062f\u0644 \u062e\u0633\u0631\u0648 \u0628\u06cc\u0631\u0648\u0646", "m2" : "\u06af\u0631 \u0686\u0647 \u0627\u0632 \u062e\u0648\u0646 \u062c\u06af\u0631 \u0631\u062e \u0647\u0645\u0647 \u06af\u0644\u06af\u0648\u0646 \u0634\u0648\u062f\u0645"}}} | json_instruct | {"type": "object", "properties": {"text": {"type": "object", "properties": {"0": {"type": "object", "properties": {"m1": {"type": "string"}, "m2": {"type": "string"}}, "required": ["m1", "m2"]}, "1": {"type": "object", "properties": {"m1": {"type": "string"}, "m2": {"type": "string"}}, "required": ["m1", "m2"]}, "2": {"type": "object", "properties": {"m1": {"type": "string"}, "m2": {"type": "string"}}, "required": ["m1", "m2"]}, "3": {"type": "object", "properties": {"m1": {"type": "string"}, "m2": {"type": "string"}}, "required": ["m1", "m2"]}, "4": {"type": "object", "properties": {"m1": {"type": "string"}, "m2": {"type": "string"}}, "required": ["m1", "m2"]}}, "required": ["0", "1", "2", "3", "4"]}}, "required": ["text"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"id": {"type": "string"}, "text": {"type": "string"}}, "required": ["id", "text"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "d585-28", "text" : "F. H. LaGUARDIA, Mayor\nM. S. NOVIK, Director\nWNYC\nAnd\nStations\nWASJ\nWKDX\nWBCD\nW2XRG\nW2XVP\nk\nNEW YORK\nWORLD\u2019S FAIR 1939\nCITY OF NEW YORK\nMUNICIPAL BROADCASTING SYSTEM\nMUNICIPAL BUILDING\nWORTH 2-5600\nOctober 18, 1939.\nMr. Prank E. Schooley. Executive Secretary,\nThe Nat*l. Assn, of Educational Broadcasters,\nUniversity of Illinois,\nUrbana, Illinois.\nMy dear Frank:\nThe hearings in Washington have been definitely\nset for Monday, October 23rd. We had a meeting of all concerned\nlast week in New York and it seems that the attorneys would like\nto have you in Washington on Sunday just to kind of go over the\ngeneral presentation.\nI have discussed the matter of finances with\nWalter Lemmon and can assure you that the transportation and\nincidental expenses will all be taken care of and a check will\nbe available for you upon arrival.\nWe are all planning on a one day session and the\nchances are pretty slim of it going over beyond one day. Under\nany condition, it is safe for you to figure on having to spend\nonly one day in Washington, if the actual time away from the\noffice is an important element to you.\n1*11 make reservations for you at the Willard,\nunless Walter Lemmon has another place for you, and under those\nconditions, we will wire you.\nWill you send me a confirmation of this note and\nlet me know when you are arriving, etc?\nVerM sincerely yours,\n\u2014-\u2014\u2019\nDirector.\nP.S. As part of your testimony, it would be advisable if you can\nhave the \"dope\" on the number of educational stations that were in\nexistence at one time, something about why they were dropped and\nhow many we have today and program difficulties and stuff\"of that\nsort. It might be \"rehashing\" but I think this will be the first\ntime that it will be given a real chance to be presented to an\n\"New York City's Own Station\u201d\u2014810 Kc."} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "text": {"type": "string"}}, "required": ["id", "text"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"navigationBarTitleText": {"type": "string"}, "enablePullDownRefresh": {"type": "boolean"}, "usingComponents": {"type": "object", "properties": {"u-swiper": {"type": "string"}, "u-icon": {"type": "string"}}, "required": ["u-swiper", "u-icon"]}}, "required": ["navigationBarTitleText", "enablePullDownRefresh", "usingComponents"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"navigationBarTitleText" : "", "enablePullDownRefresh" : false, "usingComponents" : {"u-swiper" : "/uni_modules/uview-ui/components/u-swiper/u-swiper", "u-icon" : "/uni_modules/uview-ui/components/u-icon/u-icon"}} | json_instruct | {"type": "object", "properties": {"navigationBarTitleText": {"type": "string"}, "enablePullDownRefresh": {"type": "boolean"}, "usingComponents": {"type": "object", "properties": {"u-swiper": {"type": "string"}, "u-icon": {"type": "string"}}, "required": ["u-swiper", "u-icon"]}}, "required": ["navigationBarTitleText", "enablePullDownRefresh", "usingComponents"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"bug_id": {"type": "string"}, "target": {"type": "array", "items": {"type": "string"}}, "tool": {"type": "string"}, "correctness": {"type": "string"}, "project": {"type": "string"}, "ID": {"type": "string"}}, "required": ["bug_id", "target", "tool", "correctness", "project", "ID"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"bug_id" : "35", "target" : ["org/apache/commons/lang3/ArrayUtils.java:3300", "org/apache/commons/lang3/ArrayUtils.java:3574"], "tool" : "ACS", "correctness" : "Correct", "project" : "Lang", "ID" : "329_NFL_ACS_Patch_4_4"} | json_instruct | {"type": "object", "properties": {"bug_id": {"type": "string"}, "target": {"type": "array", "items": {"type": "string"}}, "tool": {"type": "string"}, "correctness": {"type": "string"}, "project": {"type": "string"}, "ID": {"type": "string"}}, "required": ["bug_id", "target", "tool", "correctness", "project", "ID"], "$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": {"modifiers": {"type": "array", "items": {"type": "string"}}}, "required": ["modifiers"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"modifiers" : ["GUdTMN6LZb2TfnD3AAYJDTJPXBy76kVuuG"]}, {"modifiers" : []}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"modifiers": {"type": "array", "items": {"type": "string"}}}, "required": ["modifiers"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "type": {"type": "string"}, "require-dev": {"type": "object", "properties": {"topthink/framework": {"type": "string"}}, "required": ["topthink/framework"]}, "license": {"type": "string"}, "autoload": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"Phinx\\": {"type": "string"}, "think\\migration\\": {"type": "string"}}, "required": ["Phinx\\", "think\\migration\\"]}, "files": {"type": "array", "items": {"type": "string"}}}, "required": ["psr-4", "files"]}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}}, "minimum-stability": {"type": "string"}}, "required": ["name", "description", "type", "require-dev", "license", "autoload", "authors", "minimum-stability"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "chouvc/ealing-migration", "description" : "The a for Ealing migration", "type" : "library", "require-dev" : {"topthink/framework" : "^5.0"}, "license" : "Apache-2.0", "autoload" : {"psr-4" : {"Phinx\\" : "phinx/src/Phinx", "think\\migration\\" : "src"}, "files" : ["src/config.php"]}, "authors" : [{"name" : "chouvc", "email" : "[email protected]"}], "minimum-stability" : "dev"} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "type": {"type": "string"}, "require-dev": {"type": "object", "properties": {"topthink/framework": {"type": "string"}}, "required": ["topthink/framework"]}, "license": {"type": "string"}, "autoload": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"Phinx\\": {"type": "string"}, "think\\migration\\": {"type": "string"}}, "required": ["Phinx\\", "think\\migration\\"]}, "files": {"type": "array", "items": {"type": "string"}}}, "required": ["psr-4", "files"]}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}}, "minimum-stability": {"type": "string"}}, "required": ["name", "description", "type", "require-dev", "license", "autoload", "authors", "minimum-stability"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "authors": {"type": "array", "items": {"type": "string"}}, "license": {"type": "string"}, "homepage": {"type": "string"}, "ignore": {"type": "array", "items": {"type": "string"}}, "dependencies": {"type": "object", "properties": {"bootstrap-sass": {"type": "string"}}, "required": ["bootstrap-sass"]}, "devDependencies": {"type": "object", "properties": {"bootstrap-sass": {"type": "string"}, "font-awesome": {"type": "string"}, "jquery": {"type": "string"}, "bootstrap-select": {"type": "string"}, "jquery-ui": {"type": "string"}, "bower": {"type": "string"}, "install": {"type": "string"}, "seiyria-bootstrap-slider": {"type": "string"}, "html5shiv": {"type": "string"}}, "required": ["bootstrap-sass", "font-awesome", "jquery", "bootstrap-select", "jquery-ui", "bower", "install", "seiyria-bootstrap-slider", "html5shiv"]}}, "required": ["name", "description", "main", "authors", "license", "homepage", "ignore", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "template", "description" : "This is a starter template for Web app.", "main" : "index.js", "authors" : ["Tej"], "license" : "ISC", "homepage" : "", "ignore" : ["**/.*", "node_modules", "bower_components", "test", "tests"], "dependencies" : {"bootstrap-sass" : "^3.3.6"}, "devDependencies" : {"bootstrap-sass" : "bootstrap-sass-official#^3.3.6", "font-awesome" : "fontawesome#^4.6.3", "jquery" : "^1.11.3", "bootstrap-select" : "^1.11.2", "jquery-ui" : "^1.12.0", "bower" : "*", "install" : "^1.0.4", "seiyria-bootstrap-slider" : "^9.2.2", "html5shiv" : "^3.7.3"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "authors": {"type": "array", "items": {"type": "string"}}, "license": {"type": "string"}, "homepage": {"type": "string"}, "ignore": {"type": "array", "items": {"type": "string"}}, "dependencies": {"type": "object", "properties": {"bootstrap-sass": {"type": "string"}}, "required": ["bootstrap-sass"]}, "devDependencies": {"type": "object", "properties": {"bootstrap-sass": {"type": "string"}, "font-awesome": {"type": "string"}, "jquery": {"type": "string"}, "bootstrap-select": {"type": "string"}, "jquery-ui": {"type": "string"}, "bower": {"type": "string"}, "install": {"type": "string"}, "seiyria-bootstrap-slider": {"type": "string"}, "html5shiv": {"type": "string"}}, "required": ["bootstrap-sass", "font-awesome", "jquery", "bootstrap-select", "jquery-ui", "bower", "install", "seiyria-bootstrap-slider", "html5shiv"]}}, "required": ["name", "description", "main", "authors", "license", "homepage", "ignore", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"_id": {"type": "string"}, "brewery": {"type": "string"}, "name": {"type": "string"}, "abv": {"type": "string"}, "description": {"type": "string"}, "category": {"type": "string"}, "style": {"type": "string"}, "updated": {"type": "string"}}, "required": ["_id", "brewery", "name", "abv", "description", "category", "style", "updated"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"_id" : "beer_Border_Gold_Oranic_Ale", "brewery" : "Broughton Ales", "name" : "Border Gold Oranic Ale", "abv" : "6", "description" : "According to legend, gold panned from the crystal clear Border streams of the Yarrow valley, nearby the site of the Broughton Ales brewery, was used to make the third wedding ring of Mary Queen of Scots.\r\n \r\nThis golden coloured ale is brewed with a skilful blend of organically grown hops and malt, and pure Scottish water to the exacting standards required by Soil Association Certification Ltd. of the United Kingdom.\r\n\r\nThe end result is a light golden coloured, clean tasting beer with an excellent hop aroma and aftertaste.\r\n\r\nAt 6.0% ABV a premium ale for those who know and care about what they eat and drink.\r\n\r\nBorder Gold has won several awards, the most recent being a bronze medal in the International Brewing Awards in Munich 2005.", "category" : "North American Ale", "style" : "Golden or Blonde Ale", "updated" : "2010-07-22 20:00:20"} | json_instruct | {"type": "object", "properties": {"_id": {"type": "string"}, "brewery": {"type": "string"}, "name": {"type": "string"}, "abv": {"type": "string"}, "description": {"type": "string"}, "category": {"type": "string"}, "style": {"type": "string"}, "updated": {"type": "string"}}, "required": ["_id", "brewery", "name", "abv", "description", "category", "style", "updated"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"towns": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "url": {"type": "string"}}, "required": ["name", "url"]}}}, "required": ["towns"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"towns" : [{"name" : "Besadingen", "url" : "besadingen"}]} | json_instruct | {"type": "object", "properties": {"towns": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "url": {"type": "string"}}, "required": ["name", "url"]}}}, "required": ["towns"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"name": {"type": "string"}, "assets": {"type": "array", "items": {"type": "object", "properties": {"files": {"type": "array", "items": {"type": "string"}}, "version": {"type": "string"}, "mainfile": {"type": "string"}}, "required": ["files", "version", "mainfile"]}}, "versions": {"type": "array", "items": {"type": "string"}}, "zip": {"type": "string"}, "author": {"type": "string"}, "homepage": {"type": "string"}, "description": {"type": "string"}, "mainfile": {"type": "string"}, "lastversion": {"type": "string"}}, "required": ["name", "assets", "versions", "zip", "author", "homepage", "description", "mainfile", "lastversion"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "flashcanvas", "assets" : [{"files" : ["canvas2png.js", "flashcanvas.js", "flashcanvas.swf"], "version" : "1.5", "mainfile" : "flashcanvas.js"}], "versions" : ["1.5"], "zip" : "flashcanvas.zip", "author" : "flashcanvas", "homepage" : "http://flashcanvas.net/", "description" : "FlashCanvas is a JavaScript library which adds the HTML5 Canvas support to Internet Explorer. It renders shapes and images via Flash drawing API. It supports almost all Canvas APIs and, in many cases, runs faster than other similar libraries which use VML or Silverlight.", "mainfile" : "flashcanvas.js", "lastversion" : "1.5"} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "assets": {"type": "array", "items": {"type": "object", "properties": {"files": {"type": "array", "items": {"type": "string"}}, "version": {"type": "string"}, "mainfile": {"type": "string"}}, "required": ["files", "version", "mainfile"]}}, "versions": {"type": "array", "items": {"type": "string"}}, "zip": {"type": "string"}, "author": {"type": "string"}, "homepage": {"type": "string"}, "description": {"type": "string"}, "mainfile": {"type": "string"}, "lastversion": {"type": "string"}}, "required": ["name", "assets", "versions", "zip", "author", "homepage", "description", "mainfile", "lastversion"], "$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"}, "private": {"type": "boolean"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}}, "required": ["start"]}, "dependencies": {"type": "object", "properties": {"debug": {"type": "string"}, "dotenv": {"type": "string"}, "express": {"type": "string"}, "http": {"type": "string"}, "mongoose": {"type": "string"}}, "required": ["debug", "dotenv", "express", "http", "mongoose"]}}, "required": ["name", "version", "private", "scripts", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "blog-back-end", "version" : "0.0.0", "private" : true, "scripts" : {"start" : "node app.js"}, "dependencies" : {"debug" : "~2.6.9", "dotenv" : "^6.0.0", "express" : "~4.16.0", "http" : "0.0.0", "mongoose" : "^5.1.6"}} | 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": {"debug": {"type": "string"}, "dotenv": {"type": "string"}, "express": {"type": "string"}, "http": {"type": "string"}, "mongoose": {"type": "string"}}, "required": ["debug", "dotenv", "express", "http", "mongoose"]}}, "required": ["name", "version", "private", "scripts", "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"}, "description": {"type": "string"}, "type": {"type": "string"}, "require": {"type": "object", "properties": {"php-di/php-di": {"type": "string"}, "selective/basepath": {"type": "string"}, "slim/psr7": {"type": "string"}, "slim/slim": {"type": "string"}, "tuupola/slim-jwt-auth": {"type": "string"}}, "required": ["php-di/php-di", "selective/basepath", "slim/psr7", "slim/slim", "tuupola/slim-jwt-auth"]}, "require-dev": {"type": "object", "properties": {"phpspec/prophecy": {"type": "string"}, "phpstan/phpstan": {"type": "string"}, "phpunit/phpunit": {"type": "string"}, "squizlabs/php_codesniffer": {"type": "string"}}, "required": ["phpspec/prophecy", "phpstan/phpstan", "phpunit/phpunit", "squizlabs/php_codesniffer"]}, "license": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}}, "autoload": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"Skelton\\": {"type": "string"}}, "required": ["Skelton\\"]}}, "required": ["psr-4"]}, "autoload-dev": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"Skelton\\Test\\": {"type": "string"}}, "required": ["Skelton\\Test\\"]}}, "required": ["psr-4"]}, "scripts": {"type": "object", "properties": {"test": {"type": "array", "items": {"type": "string"}}, "phpunit": {"type": "string"}, "phpcs": {"type": "string"}, "phpstan": {"type": "string"}}, "required": ["test", "phpunit", "phpcs", "phpstan"]}, "config": {"type": "object", "properties": {"process-timeout": {"type": "integer"}, "sort-packages": {"type": "boolean"}}, "required": ["process-timeout", "sort-packages"]}}, "required": ["name", "description", "type", "require", "require-dev", "license", "authors", "autoload", "autoload-dev", "scripts", "config"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "rwi/skelton", "description" : "Skelton is a structure variant of the PHP micro framework Slim that helps you reuse past projects by configurable routing and processes and definition of processes and providers.", "type" : "library", "require" : {"php-di/php-di" : "^6.0", "selective/basepath" : "^1.0", "slim/psr7" : "^1", "slim/slim" : "^4.4", "tuupola/slim-jwt-auth" : "^3.5"}, "require-dev" : {"phpspec/prophecy" : "^1.10", "phpstan/phpstan" : "^0.11.5", "phpunit/phpunit" : "^8.5", "squizlabs/php_codesniffer" : "^3.5"}, "license" : "MIT", "authors" : [{"name" : "Ederico Rocha", "email" : "[email protected]"}], "autoload" : {"psr-4" : {"Skelton\\" : "Skelton"}}, "autoload-dev" : {"psr-4" : {"Skelton\\Test\\" : "tests/"}}, "scripts" : {"test" : ["@phpunit", "@phpcs", "@phpstan"], "phpunit" : "phpunit", "phpcs" : "phpcs", "phpstan" : "phpstan analyse Skelton --memory-limit=-1"}, "config" : {"process-timeout" : 0, "sort-packages" : true}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "type": {"type": "string"}, "require": {"type": "object", "properties": {"php-di/php-di": {"type": "string"}, "selective/basepath": {"type": "string"}, "slim/psr7": {"type": "string"}, "slim/slim": {"type": "string"}, "tuupola/slim-jwt-auth": {"type": "string"}}, "required": ["php-di/php-di", "selective/basepath", "slim/psr7", "slim/slim", "tuupola/slim-jwt-auth"]}, "require-dev": {"type": "object", "properties": {"phpspec/prophecy": {"type": "string"}, "phpstan/phpstan": {"type": "string"}, "phpunit/phpunit": {"type": "string"}, "squizlabs/php_codesniffer": {"type": "string"}}, "required": ["phpspec/prophecy", "phpstan/phpstan", "phpunit/phpunit", "squizlabs/php_codesniffer"]}, "license": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}}, "autoload": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"Skelton\\": {"type": "string"}}, "required": ["Skelton\\"]}}, "required": ["psr-4"]}, "autoload-dev": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"Skelton\\Test\\": {"type": "string"}}, "required": ["Skelton\\Test\\"]}}, "required": ["psr-4"]}, "scripts": {"type": "object", "properties": {"test": {"type": "array", "items": {"type": "string"}}, "phpunit": {"type": "string"}, "phpcs": {"type": "string"}, "phpstan": {"type": "string"}}, "required": ["test", "phpunit", "phpcs", "phpstan"]}, "config": {"type": "object", "properties": {"process-timeout": {"type": "integer"}, "sort-packages": {"type": "boolean"}}, "required": ["process-timeout", "sort-packages"]}}, "required": ["name", "description", "type", "require", "require-dev", "license", "authors", "autoload", "autoload-dev", "scripts", "config"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"code": {"type": "string"}, "description": {"type": "string"}, "info": {"type": "array", "items": {"type": "string"}}, "symptoms": {"type": "array", "items": {"type": "string"}}, "causes": {"type": "array", "items": {"type": "string"}}, "type": {"type": "string"}}, "required": ["code", "description", "info", "symptoms", "causes", "type"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"code" : "P0541", "description" : "Intake Air Heater \"A\" Circuit Low", "info" : ["This generic powertrain diagnostic trouble code (DTC) typically applies to all OBD-II equipped vehicles that have an air intake heater, including but not limited to Chevrolet GMC (Duramax), Ford (Powerstroke), Honda, Nissan, Dodge, etc.", "This code is one of a number of possible codes that are associated with an intake air heater circuit malfunction. An intake air heater is an essential component for a diesel engine to assist the starting process. The five codes that the Powertrain Control Module (PCM) may set for intake air heater \"A\" circuit issues are P0540, P0541, P0542, P0543, and P2604.", "\n\u00a0", "What is the purpose of an air intake heater?", "The intake air heater \"A\" circuit is designed to operate the components that provide warm air to facilitate diesel engine starting and idling at various temperatures. The typical intake air heater circuit incorporates a heater element, relays, temperature sensor and at least one blower. Air ducts are also needed to route the warm air to the intake and electrical connections and wiring control the operation of these components.", "Trouble code P0541 is triggered by the PCM when it receives a low signal from the intake air heater \"A\" circuit. The circuit may be out of range, contain a faulty component or have improper airflow. Various malfunctions within the circuit may be present and can be physical, mechanical or electrical.", "Here is an example of an air intake heater:\n"], "symptoms" : ["Engine will not start\nLonger than normal cranking time\nCheck Engine Light illuminated\nRough idle at cold temperatures\nEngine stalls"], "causes" : ["Typically, potential causes for this code include:", "Faulty heater element relay\nDetective heater element\nFaulty temperature sensor\nCorroded or damaged connector\nDamaged or restricted air duct\nFaulty or damaged wiring\nDefective Blower motor\nFaulty PCM", "Another style of air intake heater:\n"], "type" : "WARN"} | json_instruct | {"type": "object", "properties": {"code": {"type": "string"}, "description": {"type": "string"}, "info": {"type": "array", "items": {"type": "string"}}, "symptoms": {"type": "array", "items": {"type": "string"}}, "causes": {"type": "array", "items": {"type": "string"}}, "type": {"type": "string"}}, "required": ["code", "description", "info", "symptoms", "causes", "type"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"description": {"type": "string"}, "favorite": {"type": "string"}, "length": {"type": "string"}, "likes": {"type": "string"}, "recorded": {"type": "string"}, "speakers": {"type": "array", "items": {}}, "tags": {"type": "array", "items": {}}, "thumbnail_url": {"type": "string"}, "title": {"type": "string"}, "videos": {"type": "array", "items": {"type": "object", "properties": {"code": {"type": "string"}, "type": {"type": "string"}}, "required": ["code", "type"]}}, "views": {"type": "string"}}, "required": ["description", "favorite", "length", "likes", "recorded", "speakers", "tags", "thumbnail_url", "title", "videos", "views"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"description" : "Elegantly Produce and Consume Compiled Packages (babel, coffee-script, etc) - Benjamin Lupton, Bevry\n\n\"JavaScript production use to be as easy as publishing your source code, which worked across all environments, with a few minor tweaks. Consumption was as easy as downloading and requiring the package.\n\nThese days, code may be run anywhere, in all sorts of browsers, desktops, and devices, with varying capabilities, not always known by the producer. JavaScript has evolved, incorporating new features that save developers time, although not supported accross all possible environments - with requires either abstinence of time saving features, or reducing environment support, or compiling on the producer or consumer side, all of which is complex and difficult.\n\nEditions solves this problem elegantly in a standardised way. Producers produce their packages in their ideal configurations, then publish the package with multiple editions for the consumers to consume at their digression. Consumers are made aware of this through automated README updates, can select the exact edition that meets their exact needs - or by default, have the best edition for their environment loaded automatically. All the complexity of modern JavaScript publishing is solved, for the consumer and publisher.\"", "favorite" : "0", "length" : "21:02", "likes" : "4", "recorded" : "2016-11-29", "speakers" : [], "tags" : [], "thumbnail_url" : "https://i.ytimg.com/vi/IAB8_UlcNWI/hqdefault.jpg", "title" : "Elegantly Produce and Consume Compiled Packages (babel, coffee-script, etc) - Benjamin Lupton, Bevry", "videos" : [{"code" : "IAB8_UlcNWI", "type" : "youtube"}], "views" : "228"} | json_instruct | {"type": "object", "properties": {"description": {"type": "string"}, "favorite": {"type": "string"}, "length": {"type": "string"}, "likes": {"type": "string"}, "recorded": {"type": "string"}, "speakers": {"type": "array", "items": {}}, "tags": {"type": "array", "items": {}}, "thumbnail_url": {"type": "string"}, "title": {"type": "string"}, "videos": {"type": "array", "items": {"type": "object", "properties": {"code": {"type": "string"}, "type": {"type": "string"}}, "required": ["code", "type"]}}, "views": {"type": "string"}}, "required": ["description", "favorite", "length", "likes", "recorded", "speakers", "tags", "thumbnail_url", "title", "videos", "views"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"string_to_sentences": {"type": "object", "properties": {}, "required": []}, "post_correction": {"type": "object", "properties": {}, "required": []}, "ner_bert": {"type": "object", "properties": {"berts_to_use": {"type": "object", "properties": {"40-10-1-split-minus-137-fixed": {"type": "array", "items": {"type": "string"}}}, "required": ["40-10-1-split-minus-137-fixed"]}}, "required": ["berts_to_use"]}, "ner_lists": {"type": "object", "properties": {"data_dir": {"type": "array", "items": {"type": "string"}}, "entity_types": {"type": "array", "items": {"type": "string"}}, "cutoff_score": {"type": "number"}, "word_getter": {"type": "string"}}, "required": ["data_dir", "entity_types", "cutoff_score", "word_getter"]}, "modernisation": {"type": "object", "properties": {"modernisable_entities": {"type": "array", "items": {"type": "string"}}}, "required": ["modernisable_entities"]}}, "required": ["string_to_sentences", "post_correction", "ner_bert", "ner_lists", "modernisation"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"string_to_sentences" : {}, "post_correction" : {}, "ner_bert" : {"berts_to_use" : {"40-10-1-split-minus-137-fixed" : ["person", "location", "time"]}}, "ner_lists" : {"data_dir" : ["ner_lists", "SZSA"], "entity_types" : ["person", "location", "time"], "cutoff_score" : 0.85, "word_getter" : "BERT"}, "modernisation" : {"modernisable_entities" : ["O", "B-time", "I-time"]}} | json_instruct | {"type": "object", "properties": {"string_to_sentences": {"type": "object", "properties": {}, "required": []}, "post_correction": {"type": "object", "properties": {}, "required": []}, "ner_bert": {"type": "object", "properties": {"berts_to_use": {"type": "object", "properties": {"40-10-1-split-minus-137-fixed": {"type": "array", "items": {"type": "string"}}}, "required": ["40-10-1-split-minus-137-fixed"]}}, "required": ["berts_to_use"]}, "ner_lists": {"type": "object", "properties": {"data_dir": {"type": "array", "items": {"type": "string"}}, "entity_types": {"type": "array", "items": {"type": "string"}}, "cutoff_score": {"type": "number"}, "word_getter": {"type": "string"}}, "required": ["data_dir", "entity_types", "cutoff_score", "word_getter"]}, "modernisation": {"type": "object", "properties": {"modernisable_entities": {"type": "array", "items": {"type": "string"}}}, "required": ["modernisable_entities"]}}, "required": ["string_to_sentences", "post_correction", "ner_bert", "ner_lists", "modernisation"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"typescript.preferences.importModuleSpecifier": {"type": "string"}, "typescript.preferences.quoteStyle": {"type": "string"}, "prettier.singleQuote": {"type": "boolean"}, "editor.formatOnSave": {"type": "boolean"}, "editor.codeActionsOnSave": {"type": "object", "properties": {"source.organizeImports": {"type": "boolean"}}, "required": ["source.organizeImports"]}}, "required": ["typescript.preferences.importModuleSpecifier", "typescript.preferences.quoteStyle", "prettier.singleQuote", "editor.formatOnSave", "editor.codeActionsOnSave"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"typescript.preferences.importModuleSpecifier" : "relative", "typescript.preferences.quoteStyle" : "single", "prettier.singleQuote" : true, "editor.formatOnSave" : true, "editor.codeActionsOnSave" : {"source.organizeImports" : true}} | json_instruct | {"type": "object", "properties": {"typescript.preferences.importModuleSpecifier": {"type": "string"}, "typescript.preferences.quoteStyle": {"type": "string"}, "prettier.singleQuote": {"type": "boolean"}, "editor.formatOnSave": {"type": "boolean"}, "editor.codeActionsOnSave": {"type": "object", "properties": {"source.organizeImports": {"type": "boolean"}}, "required": ["source.organizeImports"]}}, "required": ["typescript.preferences.importModuleSpecifier", "typescript.preferences.quoteStyle", "prettier.singleQuote", "editor.formatOnSave", "editor.codeActionsOnSave"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"index_name": {"type": "string"}, "start_urls": {"type": "array", "items": {"type": "string"}}, "selectors": {"type": "object", "properties": {"lvl0": {"type": "string"}, "lvl1": {"type": "string"}, "lvl2": {"type": "string"}, "lvl3": {"type": "string"}, "lvl4": {"type": "string"}, "lvl5": {"type": "string"}, "text": {"type": "string"}}, "required": ["lvl0", "lvl1", "lvl2", "lvl3", "lvl4", "lvl5", "text"]}, "selectors_exclude": {"type": "array", "items": {"type": "string"}}, "min_indexed_level": {"type": "integer"}, "conversation_id": {"type": "array", "items": {"type": "string"}}, "nb_hits": {"type": "integer"}}, "required": ["index_name", "start_urls", "selectors", "selectors_exclude", "min_indexed_level", "conversation_id", "nb_hits"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"index_name" : "wakanda_studio", "start_urls" : ["http://wakanda.github.io/wakanda-studio/"], "selectors" : {"lvl0" : "#chapter", "lvl1" : "section h1", "lvl2" : "section h2", "lvl3" : "section h3", "lvl4" : "section h4", "lvl5" : "section h5", "text" : "section p"}, "selectors_exclude" : ["#table-of-contents", "section ul", ".home-container", "#home"], "min_indexed_level" : 1, "conversation_id" : ["169633359"], "nb_hits" : 170} | json_instruct | {"type": "object", "properties": {"index_name": {"type": "string"}, "start_urls": {"type": "array", "items": {"type": "string"}}, "selectors": {"type": "object", "properties": {"lvl0": {"type": "string"}, "lvl1": {"type": "string"}, "lvl2": {"type": "string"}, "lvl3": {"type": "string"}, "lvl4": {"type": "string"}, "lvl5": {"type": "string"}, "text": {"type": "string"}}, "required": ["lvl0", "lvl1", "lvl2", "lvl3", "lvl4", "lvl5", "text"]}, "selectors_exclude": {"type": "array", "items": {"type": "string"}}, "min_indexed_level": {"type": "integer"}, "conversation_id": {"type": "array", "items": {"type": "string"}}, "nb_hits": {"type": "integer"}}, "required": ["index_name", "start_urls", "selectors", "selectors_exclude", "min_indexed_level", "conversation_id", "nb_hits"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [[1988, 9], [1989, 9], [1990, 5], [1991, 8], [1992, 9], [1993, 6], [1994, 14], [1995, 20], [1996, 18], [1997, 15], [1998, 16], [1999, 18], [2000, 25], [2001, 25], [2002, 17], [2003, 32], [2004, 35], [2005, 75], [2006, 88], [2007, 89], [2008, 126], [2009, 184], [2010, 163], [2011, 218], [2012, 186], [2013, 173], [2014, 198]] | 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": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "text": {"type": "string"}}, "required": ["id", "text"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"id" : "440982100001", "text" : "\u957f\u5c90\u5c45\u59d4\u4f1a"}, {"id" : "440982100201", "text" : "\u957f\u5c90\u6751\u59d4\u4f1a"}, {"id" : "440982100202", "text" : "\u897f\u6e7e\u6751\u59d4\u4f1a"}, {"id" : "440982100203", "text" : "\u53cc\u724c\u6751\u59d4\u4f1a"}, {"id" : "440982100204", "text" : "\u7c73\u80fd\u6751\u59d4\u4f1a"}, {"id" : "440982100205", "text" : "\u77f3\u5b81\u6751\u59d4\u4f1a"}, {"id" : "440982100206", "text" : "\u4e1c\u65b9\u6751\u59d4\u4f1a"}, {"id" : "440982100207", "text" : "\u4e2d\u5858\u6751\u59d4\u4f1a"}, {"id" : "440982100208", "text" : "\u4e0b\u5c71\u6751\u59d4\u4f1a"}, {"id" : "440982100209", "text" : "\u4e1c\u5b89\u6751\u59d4\u4f1a"}, {"id" : "440982100210", "text" : "\u65b0\u4e30\u6751\u59d4\u4f1a"}, {"id" : "440982100211", "text" : "\u5357\u5cad\u6751\u59d4\u4f1a"}, {"id" : "440982100212", "text" : "\u65fa\u5cad\u6751\u59d4\u4f1a"}, {"id" : "440982100213", "text" : "\u5858\u5317\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#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"author": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "name"]}, "date": {"type": "object", "properties": {"day": {"type": "integer"}, "full": {"type": "integer"}, "month": {"type": "integer"}, "week": {"type": "integer"}}, "required": ["day", "full", "month", "week"]}, "id": {"type": "string"}, "misc": {"type": "object", "properties": {"postHint": {"type": "string"}}, "required": ["postHint"]}, "picture": {"type": "object", "properties": {"filesize": {"type": "integer"}, "fullUrl": {"type": "string"}, "hash": {"type": "string"}, "height": {"type": "integer"}, "lqip": {"type": "string"}, "thumbnailUrl": {"type": "string"}, "url": {"type": "string"}, "width": {"type": "integer"}}, "required": ["filesize", "fullUrl", "hash", "height", "lqip", "thumbnailUrl", "url", "width"]}, "score": {"type": "object", "properties": {"comments": {"type": "integer"}, "downs": {"type": "integer"}, "isCurated": {"type": "boolean"}, "ratio": {"type": "number"}, "ups": {"type": "integer"}, "value": {"type": "integer"}}, "required": ["comments", "downs", "isCurated", "ratio", "ups", "value"]}, "subreddit": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "name"]}, "tags": {"type": "array", "items": {"type": "string"}}, "title": {"type": "string"}, "url": {"type": "string"}}, "required": ["author", "date", "id", "misc", "picture", "score", "subreddit", "tags", "title", "url"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"author" : {"id" : "t2_59u6onkl", "name" : "MiscellaneaMaps"}, "date" : {"day" : 1617753600, "full" : 1617807346, "month" : 1617235200, "week" : 1617494400}, "id" : "t3_mm3wza", "misc" : {"postHint" : "image"}, "picture" : {"filesize" : 140410, "fullUrl" : "https://preview.redd.it/4e23nftglrr61.jpg?auto=webp&s=4c23783edfdebe29b23038e396f613ae8a4e6cb4", "hash" : "941e32f9ca", "height" : 992, "lqip" : "data:image/jpg;base64,/9j/2wBDAAYEBQYFBAYGBQYHBwYIChAKCgkJChQODwwQFxQYGBcUFhYaHSUfGhsjHBYWICwgIyYnKSopGR8tMC0oMCUoKSj/2wBDAQcHBwoIChMKChMoGhYaKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCj/wAARCAAQAAoDASIAAhEBAxEB/8QAFgABAQEAAAAAAAAAAAAAAAAABwMG/8QAIxAAAgEDAwQDAAAAAAAAAAAAAQIDBAURACFBBhIxcRMikf/EABUBAQEAAAAAAAAAAAAAAAAAAAAD/8QAGREAAgMBAAAAAAAAAAAAAAAAAQIAAxEh/9oADAMBAAIRAxEAPwA0g6YsC9IrXRXOKecqgkhMWGRjx596w00cSzOq1D9oYgYQ+P3SZX22zx9XzUoipFpgIAo43VM7Z38k41StslqasnMNNQGMyMVPydmRnb68euNQNowRWpVm0k9n/9k=", "thumbnailUrl" : "https://a.thumbs.redditmedia.com/2CWDhywW-Sp7sbvcWatNv4cH_Fggsl5RzEjXG8ZtF74.jpg", "url" : "https://preview.redd.it/4e23nftglrr61.jpg?width=640&crop=smart&auto=webp&s=6cd9cfa1644527f8cba6bad5fd1d7cffb860cd72", "width" : 640}, "score" : {"comments" : 1, "downs" : 0, "isCurated" : false, "ratio" : 0.95, "ups" : 14, "value" : 14}, "subreddit" : {"id" : "t5_3isai", "name" : "dndmaps"}, "tags" : ["Building"], "title" : "Pharaoh's Throne Room (31x20)", "url" : "https://www.reddit.com/r/dndmaps/comments/mm3wza/pharaohs_throne_room_31x20/"} | json_instruct | {"type": "object", "properties": {"author": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "name"]}, "date": {"type": "object", "properties": {"day": {"type": "integer"}, "full": {"type": "integer"}, "month": {"type": "integer"}, "week": {"type": "integer"}}, "required": ["day", "full", "month", "week"]}, "id": {"type": "string"}, "misc": {"type": "object", "properties": {"postHint": {"type": "string"}}, "required": ["postHint"]}, "picture": {"type": "object", "properties": {"filesize": {"type": "integer"}, "fullUrl": {"type": "string"}, "hash": {"type": "string"}, "height": {"type": "integer"}, "lqip": {"type": "string"}, "thumbnailUrl": {"type": "string"}, "url": {"type": "string"}, "width": {"type": "integer"}}, "required": ["filesize", "fullUrl", "hash", "height", "lqip", "thumbnailUrl", "url", "width"]}, "score": {"type": "object", "properties": {"comments": {"type": "integer"}, "downs": {"type": "integer"}, "isCurated": {"type": "boolean"}, "ratio": {"type": "number"}, "ups": {"type": "integer"}, "value": {"type": "integer"}}, "required": ["comments", "downs", "isCurated", "ratio", "ups", "value"]}, "subreddit": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "name"]}, "tags": {"type": "array", "items": {"type": "string"}}, "title": {"type": "string"}, "url": {"type": "string"}}, "required": ["author", "date", "id", "misc", "picture", "score", "subreddit", "tags", "title", "url"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"<page title>": {"type": "string"}, "aperture range": {"type": "string"}, "auto focus": {"type": "string"}, "camera resolution": {"type": "string"}, "digital zoom": {"type": "string"}, "face detection": {"type": "string"}, "focal length": {"type": "string"}, "image stablizer": {"type": "string"}, "internal memory": {"type": "string"}, "iso rating": {"type": "string"}, "lens type": {"type": "string"}, "manual focus": {"type": "string"}, "maximum shutter speed": {"type": "string"}, "memory card type": {"type": "string"}, "metering": {"type": "string"}, "minimum shutter speed": {"type": "string"}, "optical zoom": {"type": "string"}, "self timer": {"type": "string"}, "shooting modes": {"type": "string"}, "upgradable memory": {"type": "string"}, "video format": {"type": "string"}, "white balancing": {"type": "string"}}, "required": ["<page title>", "aperture range", "auto focus", "camera resolution", "digital zoom", "face detection", "focal length", "image stablizer", "internal memory", "iso rating", "lens type", "manual focus", "maximum shutter speed", "memory card type", "metering", "minimum shutter speed", "optical zoom", "self timer", "shooting modes", "upgradable memory", "video format", "white balancing"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"<page title>" : "Sony Cybershot DSC W830 Price In India, Bangalore, Hyderabad, Delhi, Chennai, Mumbai, Pune, Kolkatta", "aperture range" : "F3.3 (W) - F8.0 (T)", "auto focus" : "Yes", "camera resolution" : "20.1 MP", "digital zoom" : "32x", "face detection" : "Yes", "focal length" : "4.5 - 36 mm", "image stablizer" : "Yes, Optical", "internal memory" : "27.0 MB", "iso rating" : "80 - 3200", "lens type" : "Vario-Tessar", "manual focus" : "No", "maximum shutter speed" : "1/1600 Sec", "memory card type" : "Memory Stick Duo / Memory Stick PRO Duo / Memory Stick PRO Duo - High Speed / Memory Stick PRO HG Duo / SD / SDHC / SDXC / Memory Stick Micro / Memory Stick Micro (Mark 2) / microSD / microSDHC", "metering" : "Yes, Light Metering (Multi Pattern, Centre Weighted, Spot)", "minimum shutter speed" : "2 Sec", "optical zoom" : "8x", "self timer" : "Yes, 10 sec", "shooting modes" : "Intelligent Auto, Easy Shooting, Program Auto, Panorama, Scene Selection, Picture Effect, 3D", "upgradable memory" : "Yes", "video format" : "MP4", "white balancing" : "Auto, Daylight, Cloudy, Fluorescent, Incandescent, Flash, One Push, One Push Set"} | json_instruct | {"type": "object", "properties": {"<page title>": {"type": "string"}, "aperture range": {"type": "string"}, "auto focus": {"type": "string"}, "camera resolution": {"type": "string"}, "digital zoom": {"type": "string"}, "face detection": {"type": "string"}, "focal length": {"type": "string"}, "image stablizer": {"type": "string"}, "internal memory": {"type": "string"}, "iso rating": {"type": "string"}, "lens type": {"type": "string"}, "manual focus": {"type": "string"}, "maximum shutter speed": {"type": "string"}, "memory card type": {"type": "string"}, "metering": {"type": "string"}, "minimum shutter speed": {"type": "string"}, "optical zoom": {"type": "string"}, "self timer": {"type": "string"}, "shooting modes": {"type": "string"}, "upgradable memory": {"type": "string"}, "video format": {"type": "string"}, "white balancing": {"type": "string"}}, "required": ["<page title>", "aperture range", "auto focus", "camera resolution", "digital zoom", "face detection", "focal length", "image stablizer", "internal memory", "iso rating", "lens type", "manual focus", "maximum shutter speed", "memory card type", "metering", "minimum shutter speed", "optical zoom", "self timer", "shooting modes", "upgradable memory", "video format", "white balancing"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"_id": {"type": "object", "properties": {"id": {"type": "string"}, "datatype": {"type": "string"}}, "required": ["id", "datatype"]}, "lastModified": {"type": "string"}, "variableId": {"type": "string"}, "legend": {"type": "object", "properties": {"title": {"type": "object", "properties": {"text": {"type": "string"}, "fontSize": {"type": "integer"}}, "required": ["text", "fontSize"]}, "steps": {"type": "integer"}}, "required": ["title", "steps"]}, "colourPaletteName": {"type": "string"}, "scaleMin": {"type": "integer"}, "scaleMax": {"type": "integer"}}, "required": ["_id", "lastModified", "variableId", "legend", "colourPaletteName", "scaleMin", "scaleMax"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"_id" : {"id" : "ereefs/bgc/dor_c", "datatype" : "VARIABLE"}, "lastModified" : "2020-07-23T16:40:00.000+08:00", "variableId" : "DOR_C", "legend" : {"title" : {"text" : "Dissolved Organic Carbon (mg C m-3)", "fontSize" : 12}, "steps" : 6}, "colourPaletteName" : "Blue25Red75Rainbow2", "scaleMin" : 230, "scaleMax" : 730} | json_instruct | {"type": "object", "properties": {"_id": {"type": "object", "properties": {"id": {"type": "string"}, "datatype": {"type": "string"}}, "required": ["id", "datatype"]}, "lastModified": {"type": "string"}, "variableId": {"type": "string"}, "legend": {"type": "object", "properties": {"title": {"type": "object", "properties": {"text": {"type": "string"}, "fontSize": {"type": "integer"}}, "required": ["text", "fontSize"]}, "steps": {"type": "integer"}}, "required": ["title", "steps"]}, "colourPaletteName": {"type": "string"}, "scaleMin": {"type": "integer"}, "scaleMax": {"type": "integer"}}, "required": ["_id", "lastModified", "variableId", "legend", "colourPaletteName", "scaleMin", "scaleMax"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"creators": {"type": "array", "items": {"type": "object", "properties": {"affiliation": {"type": "string"}, "name": {"type": "string"}, "orcid": {"type": "string"}}, "required": ["affiliation", "name", "orcid"]}}, "keywords": {"type": "array", "items": {"type": "string"}}, "license": {"type": "string"}, "upload_type": {"type": "string"}}, "required": ["creators", "keywords", "license", "upload_type"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"creators" : [{"affiliation" : "Earth Lab, University of Colorado - Boulder", "name" : "Wasser, Leah", "orcid" : "0000-0002-8177-6550"}, {"affiliation" : "Earth Lab, University of Colorado - Boulder", "name" : "Joseph, Max", "orcid" : "0000-0002-7745-9990"}, {"affiliation" : "Earth Lab, University of Colorado - Boulder", "name" : "McGlinchy, Joe", "orcid" : "0000-0003-2135-0168"}, {"affiliation" : "Earth Lab, University of Colorado - Boulder", "name" : "Palomino, Jenny", "orcid" : "0000-0003-4879-9299"}, {"affiliation" : "Berkeley Institute for Data Science, UC Berkeley", "name" : "Holdgraf, Chris", "orcid" : "0000-0002-2391-0678"}, {"affiliation" : "Wild Tree Tech", "name" : "Head, Tim", "orcid" : "0000-0003-0931-3698"}], "keywords" : ["geospatial", "GIS", "earth analytics"], "license" : "BSD-3", "upload_type" : "software"} | json_instruct | {"type": "object", "properties": {"creators": {"type": "array", "items": {"type": "object", "properties": {"affiliation": {"type": "string"}, "name": {"type": "string"}, "orcid": {"type": "string"}}, "required": ["affiliation", "name", "orcid"]}}, "keywords": {"type": "array", "items": {"type": "string"}}, "license": {"type": "string"}, "upload_type": {"type": "string"}}, "required": ["creators", "keywords", "license", "upload_type"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "array", "items": {"type": "object", "properties": {"nick": {"type": "string"}, "message": {"type": "string"}}, "required": ["nick", "message"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"nick" : "da_wunder", "message" : "Hello World!"}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"nick": {"type": "string"}, "message": {"type": "string"}}, "required": ["nick", "message"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"900635240": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900635241": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900635242": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}}, "required": ["900635240", "900635241", "900635242"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"900635240" : {"nama" : "TPS 1", "dapil" : [5201, 15206, 2520601]}, "900635241" : {"nama" : "TPS 2", "dapil" : [5201, 15206, 2520601]}, "900635242" : {"nama" : "TPS 3", "dapil" : [5201, 15206, 2520601]}} | json_instruct | {"type": "object", "properties": {"900635240": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900635241": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900635242": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}}, "required": ["900635240", "900635241", "900635242"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"asset": {"type": "object", "properties": {"version": {"type": "string"}, "tilesetVersion": {"type": "string"}, "gltfUpAxis": {"type": "string"}}, "required": ["version", "tilesetVersion", "gltfUpAxis"]}, "geometricError": {"type": "integer"}, "root": {"type": "object", "properties": {"transform": {"type": "array", "items": {"type": "number"}}, "boundingVolume": {"type": "object", "properties": {"region": {"type": "array", "items": {"type": "number"}}}, "required": ["region"]}, "geometricError": {"type": "integer"}, "refine": {"type": "string"}, "content": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}}, "required": ["transform", "boundingVolume", "geometricError", "refine", "content"]}}, "required": ["asset", "geometricError", "root"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"asset" : {"version" : "0.0", "tilesetVersion" : "1.0.0-obj23dtiles", "gltfUpAxis" : "Y"}, "geometricError" : 200, "root" : {"transform" : [0.9954612079013915, 0.09516818566885954, 0, 0, -0.05300373995399989, 0.5544202259092229, 0.8305472994680405, 0, 0.07904167960254437, -0.8267776179476944, 0.5569480975336436, 0, 504662.9092778429, -5278784.561479095, 3532180.138727674, 1], "boundingVolume" : {"region" : [-1.4754840851166002, 0.590706369555481, -1.4754837075703722, 0.5907068432284809, -1, 1]}, "geometricError" : 0, "refine" : "ADD", "content" : {"url" : "tile-buildings(-84.544000,33.840000,-84.534000,33.850000).osm.obj.postprocessed.b3dm"}}} | json_instruct | {"type": "object", "properties": {"asset": {"type": "object", "properties": {"version": {"type": "string"}, "tilesetVersion": {"type": "string"}, "gltfUpAxis": {"type": "string"}}, "required": ["version", "tilesetVersion", "gltfUpAxis"]}, "geometricError": {"type": "integer"}, "root": {"type": "object", "properties": {"transform": {"type": "array", "items": {"type": "number"}}, "boundingVolume": {"type": "object", "properties": {"region": {"type": "array", "items": {"type": "number"}}}, "required": ["region"]}, "geometricError": {"type": "integer"}, "refine": {"type": "string"}, "content": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}}, "required": ["transform", "boundingVolume", "geometricError", "refine", "content"]}}, "required": ["asset", "geometricError", "root"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "version": {"type": "string"}, "main": {"type": "string"}}, "required": ["name", "description", "version", "main"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "is-windows", "description" : "Fake non-scoped submodule", "version" : "0.0.0", "main" : "index.js"} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "version": {"type": "string"}, "main": {"type": "string"}}, "required": ["name", "description", "version", "main"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"directions": {"type": "array", "items": {"type": "string"}}, "ingredients": {"type": "array", "items": {"type": "string"}}, "language": {"type": "string"}, "source": {"type": "string"}, "tags": {"type": "array", "items": {}}, "title": {"type": "string"}, "url": {"type": "string"}}, "required": ["directions", "ingredients", "language", "source", "tags", "title", "url"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"directions" : ["To Make Sour Cream Mixture: In a blender or food processor, puree cilantro, sour cream, jalapeno salsa and 1/2 can of the green chile salsa. Set aside.", "To Make Chicken Mixture: In a large bowl, combine shredded chicken, onion and the remaining 1 1/2 cans of green chile salsa. Mix well.", "Preheat oven to 350 degrees F (175 degrees C).", "Heat tortillas in conventional or microwave oven until soft. Pour enough of the sour cream mixture into a 9x13 inch baking dish to coat the bottom. Place 2 heaping tablespoonfuls of the chicken mixture in each tortilla, roll up and place seam side down in the baking dish. Pour remaining sour cream mixture over all and top with shredded cheese.", "Cover dish tightly with aluminum foil and bake at 350 degrees F (175 degrees C) for about 30 minutes, or until dish is heated through and bubbling."], "ingredients" : ["1 bunch cilantro", "1 cup sour cream", "2 (7 ounce) cans jalapeno salsa", "2 (7 ounce) cans prepared green chile salsa", "2 skinless, boneless chicken breast halves, cooked and shredded", "1 onion", "12 (6 inch) flour tortillas", "2 cups shredded Cheddar cheese"], "language" : "en-US", "source" : "allrecipes.com", "tags" : [], "title" : "Sour Cream Chicken Enchiladas", "url" : "http://allrecipes.com/recipe/16701/sour-cream-chicken-enchiladas/"} | json_instruct | {"type": "object", "properties": {"directions": {"type": "array", "items": {"type": "string"}}, "ingredients": {"type": "array", "items": {"type": "string"}}, "language": {"type": "string"}, "source": {"type": "string"}, "tags": {"type": "array", "items": {}}, "title": {"type": "string"}, "url": {"type": "string"}}, "required": ["directions", "ingredients", "language", "source", "tags", "title", "url"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"config": {"type": "object", "properties": {"abort": {"type": "object", "properties": {"already_configured": {"type": "string"}, "unknown": {"type": "string"}}, "required": ["already_configured", "unknown"]}, "error": {"type": "object", "properties": {"not_found": {"type": "string"}}, "required": ["not_found"]}, "step": {"type": "object", "properties": {"user": {"type": "object", "properties": {"data": {"type": "object", "properties": {"code": {"type": "string"}}, "required": ["code"]}, "data_description": {"type": "object", "properties": {"code": {"type": "string"}}, "required": ["code"]}}, "required": ["data", "data_description"]}}, "required": ["user"]}}, "required": ["abort", "error", "step"]}}, "required": ["config"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"config" : {"abort" : {"already_configured" : "Seade on juba h\u00e4\u00e4lestatud", "unknown" : "Tundmatu t\u00f5rge"}, "error" : {"not_found" : "Seadmeid ei leitud"}, "step" : {"user" : {"data" : {"code" : "Jaama kood"}, "data_description" : {"code" : "N\u00e4eb v\u00e4lja nagu ESCAT4300000043206B"}}}}} | json_instruct | {"type": "object", "properties": {"config": {"type": "object", "properties": {"abort": {"type": "object", "properties": {"already_configured": {"type": "string"}, "unknown": {"type": "string"}}, "required": ["already_configured", "unknown"]}, "error": {"type": "object", "properties": {"not_found": {"type": "string"}}, "required": ["not_found"]}, "step": {"type": "object", "properties": {"user": {"type": "object", "properties": {"data": {"type": "object", "properties": {"code": {"type": "string"}}, "required": ["code"]}, "data_description": {"type": "object", "properties": {"code": {"type": "string"}}, "required": ["code"]}}, "required": ["data", "data_description"]}}, "required": ["user"]}}, "required": ["abort", "error", "step"]}}, "required": ["config"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"parent": {"type": "string"}}, "required": ["parent"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"parent" : "programmers-chest:block/programmers_chest_block"} | json_instruct | {"type": "object", "properties": {"parent": {"type": "string"}}, "required": ["parent"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"values": {"type": "array", "items": {"type": "string"}}}, "required": ["values"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"values" : ["aestd.private:lib1/entity/shoot_arrow/check_v2"]} | json_instruct | {"type": "object", "properties": {"values": {"type": "array", "items": {"type": "string"}}}, "required": ["values"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "homepage": {"type": "string"}, "author": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "engines": {"type": "object", "properties": {"node": {"type": "string"}}, "required": ["node"]}, "devDependencies": {"type": "object", "properties": {"tap": {"type": "string"}}, "required": ["tap"]}, "scripts": {"type": "object", "properties": {"preinstall": {"type": "string"}}, "required": ["preinstall"]}, "main": {"type": "string"}}, "required": ["name", "version", "description", "keywords", "homepage", "author", "repository", "engines", "devDependencies", "scripts", "main"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "dtrace-provider", "version" : "0.2.8", "description" : "Native DTrace providers for node.js applications", "keywords" : ["dtrace"], "homepage" : "https://github.com/chrisa/node-dtrace-provider#readme", "author" : {"name" : "Chris Andrews", "email" : "[email protected]"}, "repository" : {"type" : "git", "url" : "http://github.com/chrisa/node-dtrace-provider.git"}, "engines" : {"node" : ">=0.6"}, "devDependencies" : {"tap" : ">=0.2.0"}, "scripts" : {"preinstall" : "scripts/preinstall.js"}, "main" : "./dtrace-provider.js"} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "homepage": {"type": "string"}, "author": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "engines": {"type": "object", "properties": {"node": {"type": "string"}}, "required": ["node"]}, "devDependencies": {"type": "object", "properties": {"tap": {"type": "string"}}, "required": ["tap"]}, "scripts": {"type": "object", "properties": {"preinstall": {"type": "string"}}, "required": ["preinstall"]}, "main": {"type": "string"}}, "required": ["name", "version", "description", "keywords", "homepage", "author", "repository", "engines", "devDependencies", "scripts", "main"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"report_suites": {"type": "array", "items": {"type": "object", "properties": {"rsid": {"type": "string"}, "site_title": {"type": "string"}}, "required": ["rsid", "site_title"]}}}, "required": ["report_suites"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"report_suites" : [{"rsid" : "omniture.api-gateway", "site_title" : "test_suite"}]} | json_instruct | {"type": "object", "properties": {"report_suites": {"type": "array", "items": {"type": "object", "properties": {"rsid": {"type": "string"}, "site_title": {"type": "string"}}, "required": ["rsid", "site_title"]}}}, "required": ["report_suites"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "author": {"type": "string"}, "homepage": {"type": "string"}, "license": {"type": "string"}, "main": {"type": "string"}, "module": {"type": "string"}, "browser": {"type": "string"}, "unpkg": {"type": "string"}, "directories": {"type": "object", "properties": {"src": {"type": "string"}}, "required": ["src"]}, "files": {"type": "array", "items": {"type": "string"}}, "publishConfig": {"type": "object", "properties": {"access": {"type": "string"}}, "required": ["access"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "scripts": {"type": "object", "properties": {"clean": {"type": "string"}, "dist": {"type": "string"}}, "required": ["clean", "dist"]}, "dependencies": {"type": "object", "properties": {"@json2render/plugin-classics": {"type": "string"}, "@json2render/plugin-modern": {"type": "string"}, "@json2render/plugin-vue": {"type": "string"}, "@json2render/vue": {"type": "string"}}, "required": ["@json2render/plugin-classics", "@json2render/plugin-modern", "@json2render/plugin-vue", "@json2render/vue"]}, "gitHead": {"type": "string"}}, "required": ["name", "version", "description", "author", "homepage", "license", "main", "module", "browser", "unpkg", "directories", "files", "publishConfig", "repository", "bugs", "scripts", "dependencies", "gitHead"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "@json2render/vue-full", "version" : "1.0.4", "description" : "> TODO: description", "author" : "fyl080801 <[email protected]>", "homepage" : "https://github.com/fyl080801/json-to-render#readme", "license" : "MIT", "main" : "src/index.ts", "module" : "src/index.ts", "browser" : "dist/index.umd.js", "unpkg" : "dist/index.min.js", "directories" : {"src" : "src"}, "files" : ["src", "dist"], "publishConfig" : {"access" : "public"}, "repository" : {"type" : "git", "url" : "git+https://github.com/fyl080801/json-to-render.git"}, "bugs" : {"url" : "https://github.com/fyl080801/json-to-render/issues"}, "scripts" : {"clean" : "rimraf dist", "dist" : "yarn clean && cross-env NODE_ENV=production rollup --config rollup.config.js"}, "dependencies" : {"@json2render/plugin-classics" : "^1.0.2", "@json2render/plugin-modern" : "^1.0.2", "@json2render/plugin-vue" : "^1.1.2", "@json2render/vue" : "^1.2.1"}, "gitHead" : "6b7755b42a7f2c4e549d815da91bb3727594ef03"} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "author": {"type": "string"}, "homepage": {"type": "string"}, "license": {"type": "string"}, "main": {"type": "string"}, "module": {"type": "string"}, "browser": {"type": "string"}, "unpkg": {"type": "string"}, "directories": {"type": "object", "properties": {"src": {"type": "string"}}, "required": ["src"]}, "files": {"type": "array", "items": {"type": "string"}}, "publishConfig": {"type": "object", "properties": {"access": {"type": "string"}}, "required": ["access"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "scripts": {"type": "object", "properties": {"clean": {"type": "string"}, "dist": {"type": "string"}}, "required": ["clean", "dist"]}, "dependencies": {"type": "object", "properties": {"@json2render/plugin-classics": {"type": "string"}, "@json2render/plugin-modern": {"type": "string"}, "@json2render/plugin-vue": {"type": "string"}, "@json2render/vue": {"type": "string"}}, "required": ["@json2render/plugin-classics", "@json2render/plugin-modern", "@json2render/plugin-vue", "@json2render/vue"]}, "gitHead": {"type": "string"}}, "required": ["name", "version", "description", "author", "homepage", "license", "main", "module", "browser", "unpkg", "directories", "files", "publishConfig", "repository", "bugs", "scripts", "dependencies", "gitHead"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"clientID": {"type": "string"}, "serverToken": {"type": "string"}, "clientToken": {"type": "string"}, "encKey": {"type": "string"}, "macKey": {"type": "string"}}, "required": ["clientID", "serverToken", "clientToken", "encKey", "macKey"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"clientID" : "nGYo7cUpwXLGhe5gPivtkQ==", "serverToken" : "1@PpU9txfzpcA76XCLBxGfMDfOHEocSjw6UMktX2o0y4ZhSCL5GK9t7o7Vz25Xyu6nEhCip8GCp26K4A==", "clientToken" : "ZOA0sWaDqq/zwr399v7tCYZ/OuARZGRhOHPJG0o1mRU=", "encKey" : "zs/CMeAz3iw030tjWzwypjYijjUQsi/25vJg827UzY0=", "macKey" : "FtkrKIlKSg7NbuSthyyBTYvQCoSIArxQFrhe9BybqTQ="} | json_instruct | {"type": "object", "properties": {"clientID": {"type": "string"}, "serverToken": {"type": "string"}, "clientToken": {"type": "string"}, "encKey": {"type": "string"}, "macKey": {"type": "string"}}, "required": ["clientID", "serverToken", "clientToken", "encKey", "macKey"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "properties": {"type": "object", "properties": {"id": {"type": "string"}, "type": {"type": "string"}, "name": {"type": "string"}, "code": {"type": "string"}}, "required": ["id", "type", "name", "code"]}}, "required": ["type", "coordinates", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"type" : "MultiPolygon", "coordinates" : [[[[-99.319063, 38.539059], [-99.318766, 38.539057], [-99.31635, 38.539003], [-99.315529, 38.538984], [-99.312073, 38.538902], [-99.311992, 38.5389], [-99.311342, 38.538876], [-99.310961, 38.538872], [-99.309759, 38.538838], [-99.308992, 38.538817], [-99.308594, 38.538812], [-99.30748, 38.5388], [-99.306798, 38.538793], [-99.306106, 38.538787], [-99.306083, 38.539217], [-99.306117, 38.539413], [-99.306099, 38.53995], [-99.30369, 38.541158], [-99.300818, 38.541102], [-99.300981, 38.539349], [-99.301068, 38.539213], [-99.301121, 38.538716], [-99.300463, 38.538705], [-99.300409, 38.533814], [-99.300404, 38.532097], [-99.300409, 38.531451], [-99.300396, 38.529516], [-99.300388, 38.527897], [-99.300377, 38.524272], [-99.30085, 38.524266], [-99.300885, 38.524253], [-99.301229, 38.524234], [-99.301642, 38.524246], [-99.302304, 38.524223], [-99.302855, 38.524233], [-99.30414, 38.524257], [-99.305945, 38.52429], [-99.306182, 38.524295], [-99.307233, 38.524304], [-99.307263, 38.524262], [-99.307377, 38.524245], [-99.307746, 38.524244], [-99.308073, 38.524246], [-99.308327, 38.524269], [-99.308361, 38.524312], [-99.308368, 38.52434], [-99.309227, 38.524311], [-99.3095, 38.524332], [-99.310368, 38.524342], [-99.311505, 38.524356], [-99.312506, 38.524352], [-99.313022, 38.524361], [-99.316136, 38.524384], [-99.317389, 38.5244], [-99.31791, 38.524406], [-99.318406, 38.524413], [-99.318769, 38.524416], [-99.318856, 38.529658], [-99.318856, 38.530116], [-99.318845, 38.531684], [-99.318872, 38.532554], [-99.318985, 38.536053], [-99.318988, 38.536147], [-99.31899, 38.536243], [-99.319002, 38.536629], [-99.319063, 38.539059]]]], "properties" : {"id" : "usa-ks-la-crosse-city", "type" : "city", "name" : "La Crosse", "code" : "2037500"}} | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "properties": {"type": "object", "properties": {"id": {"type": "string"}, "type": {"type": "string"}, "name": {"type": "string"}, "code": {"type": "string"}}, "required": ["id", "type", "name", "code"]}}, "required": ["type", "coordinates", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {".js": {"type": "string"}}, "required": [".js"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {".js" : "fad824bf188b06fd2b7b0626618adf5dd0f9dfe5.js"} | json_instruct | {"type": "object", "properties": {".js": {"type": "string"}}, "required": [".js"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"pools": {"type": "object", "properties": {"A-warm": {"type": "object", "properties": {"servers": {"type": "array", "items": {"type": "string"}}}, "required": ["servers"]}, "A-cold": {"type": "object", "properties": {"servers": {"type": "array", "items": {"type": "string"}}}, "required": ["servers"]}}, "required": ["A-warm", "A-cold"]}, "route": {"type": "object", "properties": {"type": {"type": "string"}, "cold": {"type": "string"}, "warm": {"type": "string"}}, "required": ["type", "cold", "warm"]}}, "required": ["pools", "route"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"pools" : {"A-warm" : {"servers" : ["127.0.0.1:11610"]}, "A-cold" : {"servers" : ["127.0.0.1:11611"]}}, "route" : {"type" : "WarmUpRoute", "cold" : "PoolRoute|A-cold", "warm" : "PoolRoute|A-warm"}} | json_instruct | {"type": "object", "properties": {"pools": {"type": "object", "properties": {"A-warm": {"type": "object", "properties": {"servers": {"type": "array", "items": {"type": "string"}}}, "required": ["servers"]}, "A-cold": {"type": "object", "properties": {"servers": {"type": "array", "items": {"type": "string"}}}, "required": ["servers"]}}, "required": ["A-warm", "A-cold"]}, "route": {"type": "object", "properties": {"type": {"type": "string"}, "cold": {"type": "string"}, "warm": {"type": "string"}}, "required": ["type", "cold", "warm"]}}, "required": ["pools", "route"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"results": {"type": "array", "items": {"type": "object", "properties": {"categories": {"type": "array", "items": {"type": "object", "properties": {"count": {"type": "integer"}, "label": {"type": "string"}}, "required": ["count", "label"]}}, "label": {"type": "string"}, "open_ended": {"type": "null"}, "set": {"type": "integer"}, "unset": {"type": "integer"}}, "required": ["categories", "label", "open_ended", "set", "unset"]}}}, "required": ["results"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"results" : [{"categories" : [{"count" : 2, "label" : "Male"}, {"count" : 5, "label" : "Female"}], "label" : "All", "open_ended" : null, "set" : 7, "unset" : 3}]} | json_instruct | {"type": "object", "properties": {"results": {"type": "array", "items": {"type": "object", "properties": {"categories": {"type": "array", "items": {"type": "object", "properties": {"count": {"type": "integer"}, "label": {"type": "string"}}, "required": ["count", "label"]}}, "label": {"type": "string"}, "open_ended": {"type": "null"}, "set": {"type": "integer"}, "unset": {"type": "integer"}}, "required": ["categories", "label", "open_ended", "set", "unset"]}}}, "required": ["results"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"type": {"type": "string"}, "objects": {"type": "object", "properties": {"E01031976": {"type": "object", "properties": {"type": {"type": "string"}, "crs": {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"]}}, "required": ["type", "properties"]}, "geometries": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"OA11CD": {"type": "string"}, "LAD11CD": {"type": "string"}}, "required": ["OA11CD", "LAD11CD"]}, "arcs": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}}, "required": ["type", "properties", "arcs"]}}}, "required": ["type", "crs", "geometries"]}}, "required": ["E01031976"]}, "arcs": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}}, "transform": {"type": "object", "properties": {"scale": {"type": "array", "items": {"type": "number"}}, "translate": {"type": "array", "items": {"type": "number"}}}, "required": ["scale", "translate"]}}, "required": ["type", "objects", "arcs", "transform"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"type" : "Topology", "objects" : {"E01031976" : {"type" : "GeometryCollection", "crs" : {"type" : "name", "properties" : {"name" : "urn:ogc:def:crs:OGC:1.3:CRS84"}}, "geometries" : [{"type" : "Polygon", "properties" : {"OA11CD" : "E00163064", "LAD11CD" : "E06000054"}, "arcs" : [[0, 1]]}, {"type" : "Polygon", "properties" : {"OA11CD" : "E00163068", "LAD11CD" : "E06000054"}, "arcs" : [[-1, 2, 3, 4, 5]]}, {"type" : "Polygon", "properties" : {"OA11CD" : "E00163069", "LAD11CD" : "E06000054"}, "arcs" : [[6, -4, 7]]}, {"type" : "Polygon", "properties" : {"OA11CD" : "E00166389", "LAD11CD" : "E06000054"}, "arcs" : [[8, 9]]}, {"type" : "Polygon", "properties" : {"OA11CD" : "E00166390", "LAD11CD" : "E06000054"}, "arcs" : [[10, -5, -7, 11, -9]]}]}}, "arcs" : [[[281, 8093], [799, 31], [1012, -717], [493, 799], [407, 19], [945, -523], [-208, -524]], [[3729, 7178], [-1638, -970], [-799, 724], [-1011, 1161]], [[281, 8093], [-281, 337], [1864, 655], [1089, -66], [-59, 980], [1947, -387]], [[4841, 9612], [-309, -1156], [1001, -765]], [[5533, 7691], [-1040, -380], [-318, -930]], [[4175, 6381], [-446, 797]], [[9496, 6946], [-1603, 675], [-471, 986], [-1613, 37], [578, -575], [-854, -378]], [[4841, 9612], [132, 64], [1222, -304], [2515, 104], [495, -1176], [553, -238], [20, -182], [-493, 129], [211, -1063]], [[4156, 6284], [1182, 7], [2964, -1047], [702, 260], [594, -302]], [[9598, 5202], [-51, -352], [-286, -1414], [-1675, -3436], [-5169, 1214], [638, 2278], [1101, 2792]], [[4156, 6284], [19, 97]], [[9496, 6946], [503, -533], [-401, -1211]]], "transform" : {"scale" : [1.086454106006806e-06, 9.872758666857288e-07], "translate" : [-1.768245722781097, 51.15844203398704]}} | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "objects": {"type": "object", "properties": {"E01031976": {"type": "object", "properties": {"type": {"type": "string"}, "crs": {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"]}}, "required": ["type", "properties"]}, "geometries": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"OA11CD": {"type": "string"}, "LAD11CD": {"type": "string"}}, "required": ["OA11CD", "LAD11CD"]}, "arcs": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}}, "required": ["type", "properties", "arcs"]}}}, "required": ["type", "crs", "geometries"]}}, "required": ["E01031976"]}, "arcs": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}}, "transform": {"type": "object", "properties": {"scale": {"type": "array", "items": {"type": "number"}}, "translate": {"type": "array", "items": {"type": "number"}}}, "required": ["scale", "translate"]}}, "required": ["type", "objects", "arcs", "transform"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {"type": "integer"}}, "productReviews": {"type": "array", "items": {"type": "object", "properties": {"productId": {"type": "integer"}, "reviewText": {"type": "string"}, "reviewDate": {"type": "string"}}, "required": ["productId", "reviewText", "reviewDate"]}}}, "required": ["userId", "cartId", "preferredProducts", "productReviews"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"userId" : 70811, "cartId" : "8e8fb7ed-dad8-4907-837b-a88bfd861132", "preferredProducts" : [4465, 2539, 948, 4660, 4835], "productReviews" : [{"productId" : 4951, "reviewText" : "I saw one of these in South Korea and I bought one.", "reviewDate" : "2016-09-23T06:54:48.079472+03:00"}, {"productId" : 2117, "reviewText" : "this mobile is gracious.", "reviewDate" : "2017-06-06T01:28:10.8137459+03:00"}, {"productId" : 2006, "reviewText" : "i use it for 10 weeks when i'm in my jail.", "reviewDate" : "2017-05-17T15:11:29.0964307+03:00"}, {"productId" : 4722, "reviewText" : "It only works when I'm Nepal.", "reviewDate" : "2017-05-13T09:57:52.9405898+03:00"}]} | json_instruct | {"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {"type": "integer"}}, "productReviews": {"type": "array", "items": {"type": "object", "properties": {"productId": {"type": "integer"}, "reviewText": {"type": "string"}, "reviewDate": {"type": "string"}}, "required": ["productId", "reviewText", "reviewDate"]}}}, "required": ["userId", "cartId", "preferredProducts", "productReviews"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "license": {"type": "string"}, "main": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "author": {"type": "string"}, "engines": {"type": "object", "properties": {"node": {"type": "string"}}, "required": ["node"]}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}, "build": {"type": "string"}, "test": {"type": "string"}}, "required": ["start", "build", "test"]}, "files": {"type": "array", "items": {"type": "string"}}, "keywords": {"type": "array", "items": {"type": "string"}}, "dependencies": {"type": "object", "properties": {"chalk": {"type": "string"}, "yeoman-generator": {"type": "string"}, "yosay": {"type": "string"}}, "required": ["chalk", "yeoman-generator", "yosay"]}, "devDependencies": {"type": "object", "properties": {"babel": {"type": "string"}, "babel-cli": {"type": "string"}, "babel-core": {"type": "string"}, "babel-plugin-transform-es2015-modules-commonjs": {"type": "string"}, "gulp": {"type": "string"}, "gulp-babel": {"type": "string"}, "mocha": {"type": "string"}}, "required": ["babel", "babel-cli", "babel-core", "babel-plugin-transform-es2015-modules-commonjs", "gulp", "gulp-babel", "mocha"]}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "directories": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}}, "required": ["name", "version", "description", "license", "main", "repository", "author", "engines", "scripts", "files", "keywords", "dependencies", "devDependencies", "bugs", "homepage", "directories"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "generator-nodejs-module", "version" : "1.0.2", "description" : "Yeoman generator", "license" : "MIT", "main" : "app/index.js", "repository" : {"type" : "git", "url" : "https://github.com/ericmdantas/generator-nodejs-module"}, "author" : "Eric Mendes Dantas <[email protected]> (https://github.com/ericmdantas)", "engines" : {"node" : "stable"}, "scripts" : {"start" : "gulp compile", "build" : "gulp compile && npm t", "test" : "mocha --reporter min --require babel-core/register"}, "files" : ["app"], "keywords" : ["yeoman-generator", "nodejs-generator", "nodejs-module-generator", "iojs-generator", "iojs-module-generator", "iojs-es6-generator", "es6", "iojs"], "dependencies" : {"chalk" : "^0.5.0", "yeoman-generator" : "^0.18.0", "yosay" : "^0.3.0"}, "devDependencies" : {"babel" : "^6.1.18", "babel-cli" : "^6.1.18", "babel-core" : "^6.1.21", "babel-plugin-transform-es2015-modules-commonjs" : "^6.1.20", "gulp" : "^3.9.0", "gulp-babel" : "^6.1.0", "mocha" : "^2.3.3"}, "bugs" : {"url" : "https://github.com/ericmdantas/generator-nodejs-module/issues"}, "homepage" : "https://github.com/ericmdantas/generator-nodejs-module", "directories" : {"test" : "test"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "license": {"type": "string"}, "main": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "author": {"type": "string"}, "engines": {"type": "object", "properties": {"node": {"type": "string"}}, "required": ["node"]}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}, "build": {"type": "string"}, "test": {"type": "string"}}, "required": ["start", "build", "test"]}, "files": {"type": "array", "items": {"type": "string"}}, "keywords": {"type": "array", "items": {"type": "string"}}, "dependencies": {"type": "object", "properties": {"chalk": {"type": "string"}, "yeoman-generator": {"type": "string"}, "yosay": {"type": "string"}}, "required": ["chalk", "yeoman-generator", "yosay"]}, "devDependencies": {"type": "object", "properties": {"babel": {"type": "string"}, "babel-cli": {"type": "string"}, "babel-core": {"type": "string"}, "babel-plugin-transform-es2015-modules-commonjs": {"type": "string"}, "gulp": {"type": "string"}, "gulp-babel": {"type": "string"}, "mocha": {"type": "string"}}, "required": ["babel", "babel-cli", "babel-core", "babel-plugin-transform-es2015-modules-commonjs", "gulp", "gulp-babel", "mocha"]}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "directories": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}}, "required": ["name", "version", "description", "license", "main", "repository", "author", "engines", "scripts", "files", "keywords", "dependencies", "devDependencies", "bugs", "homepage", "directories"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"place_name": {"type": "string"}, "state_name": {"type": "string"}, "state_abbrv": {"type": "string"}, "lat": {"type": "string"}, "long": {"type": "string"}}, "required": ["place_name", "state_name", "state_abbrv", "lat", "long"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"place_name" : "Alden", "state_name" : "Iowa", "state_abbrv" : "IA", "lat" : "42.5179", "long" : "-93.3841"} | json_instruct | {"type": "object", "properties": {"place_name": {"type": "string"}, "state_name": {"type": "string"}, "state_abbrv": {"type": "string"}, "lat": {"type": "string"}, "long": {"type": "string"}}, "required": ["place_name", "state_name", "state_abbrv", "lat", "long"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "minimum-stability": {"type": "string"}, "license": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}}, "repositories": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}}, "require": {"type": "object", "properties": {"pepeverde/doctrine1": {"type": "string"}}, "required": ["pepeverde/doctrine1"]}, "autoload": {"type": "object", "properties": {"psr-0": {"type": "object", "properties": {"Doctrine_": {"type": "string"}}, "required": ["Doctrine_"]}}, "required": ["psr-0"]}}, "required": ["name", "description", "minimum-stability", "license", "authors", "repositories", "require", "autoload"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "endelwar/doctrine1-addons", "description" : "Some missing classes and utilities for Doctrine 1.2", "minimum-stability" : "stable", "license" : "MIT", "authors" : [{"name" : "Manuel Dalla Lana", "email" : "[email protected]"}], "repositories" : [{"type" : "vcs", "url" : "https://github.com/pepeverde/doctrine1"}], "require" : {"pepeverde/doctrine1" : "1.3.*"}, "autoload" : {"psr-0" : {"Doctrine_" : "lib/"}}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "minimum-stability": {"type": "string"}, "license": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}}, "repositories": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}}, "require": {"type": "object", "properties": {"pepeverde/doctrine1": {"type": "string"}}, "required": ["pepeverde/doctrine1"]}, "autoload": {"type": "object", "properties": {"psr-0": {"type": "object", "properties": {"Doctrine_": {"type": "string"}}, "required": ["Doctrine_"]}}, "required": ["psr-0"]}}, "required": ["name", "description", "minimum-stability", "license", "authors", "repositories", "require", "autoload"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"language": {"type": "string"}, "plugins": {"type": "array", "items": {"type": "string"}}, "pluginsConfig": {"type": "object", "properties": {"uml": {"type": "object", "properties": {"format": {"type": "string"}, "charset": {"type": "string"}, "nailgun": {"type": "boolean"}}, "required": ["format", "charset", "nailgun"]}}, "required": ["uml"]}}, "required": ["language", "plugins", "pluginsConfig"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"language" : "ja", "plugins" : ["-sharing", "hide-published-with", "-lunr", "-search", "search-pro-kui", "uml", "expandable-chapters", "include-codeblock", "code-editor", "code"], "pluginsConfig" : {"uml" : {"format" : "svg", "charset" : "UTF-8", "nailgun" : false}}} | json_instruct | {"type": "object", "properties": {"language": {"type": "string"}, "plugins": {"type": "array", "items": {"type": "string"}}, "pluginsConfig": {"type": "object", "properties": {"uml": {"type": "object", "properties": {"format": {"type": "string"}, "charset": {"type": "string"}, "nailgun": {"type": "boolean"}}, "required": ["format", "charset", "nailgun"]}}, "required": ["uml"]}}, "required": ["language", "plugins", "pluginsConfig"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"type": {"type": "string"}, "features": {"type": "array", "items": {"type": "object", "properties": {"geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["type", "coordinates"]}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"cartodb_id": {"type": "integer"}}, "required": ["cartodb_id"]}}, "required": ["geometry", "type", "properties"]}}}, "required": ["type", "features"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"type" : "FeatureCollection", "features" : [{"geometry" : {"type" : "Polygon", "coordinates" : [[[-118.192479, 34.040466], [-118.184645, 34.040516], [-118.184461, 34.031851], [-118.192359, 34.031161], [-118.192377, 34.033233], [-118.191269, 34.033613], [-118.191291, 34.034417], [-118.192384, 34.034002], [-118.192479, 34.040466]]]}, "type" : "Feature", "properties" : {"cartodb_id" : 5345}}]} | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "features": {"type": "array", "items": {"type": "object", "properties": {"geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["type", "coordinates"]}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"cartodb_id": {"type": "integer"}}, "required": ["cartodb_id"]}}, "required": ["geometry", "type", "properties"]}}}, "required": ["type", "features"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "dependencies": {"type": "object", "properties": {"polymer": {"type": "string"}, "websocket-component": {"type": "string"}, "lazy-imports": {"type": "string"}, "iron-ajax": {"type": "string"}, "app-route": {"type": "string"}, "iron-pages": {"type": "string"}, "paper-button": {"type": "string"}, "iron-flex-layout": {"type": "string"}, "app-layout": {"type": "string"}, "d3": {"type": "string"}, "iron-timer": {"type": "string"}, "iron-form": {"type": "string"}, "paper-radio-group": {"type": "string"}, "paper-radio-button": {"type": "string"}, "paper-input": {"type": "string"}, "paper-divider": {"type": "string"}}, "required": ["polymer", "websocket-component", "lazy-imports", "iron-ajax", "app-route", "iron-pages", "paper-button", "iron-flex-layout", "app-layout", "d3", "iron-timer", "iron-form", "paper-radio-group", "paper-radio-button", "paper-input", "paper-divider"]}, "devDependencies": {"type": "object", "properties": {"web-component-tester": {"type": "string"}, "webcomponentsjs": {"type": "string"}}, "required": ["web-component-tester", "webcomponentsjs"]}}, "required": ["name", "description", "main", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "rubberedge2", "description" : "Modern take of the rubberedge experiment", "main" : "index.html", "dependencies" : {"polymer" : "Polymer/polymer#^2.0.0", "websocket-component" : "^1.1.3", "lazy-imports" : "Polymer/lazy-imports#^2.0.0", "iron-ajax" : "PolymerElements/iron-ajax#^2.0.0", "app-route" : "PolymerElements/app-route#^2.0.0", "iron-pages" : "PolymerElements/iron-pages#^2.0.0", "paper-button" : "PolymerElements/paper-button#^2.0.0", "iron-flex-layout" : "PolymerElements/iron-flex-layout#^2.0.0", "app-layout" : "PolymerElements/app-layout#^2.0.0", "d3" : "^4.9.1", "iron-timer" : "Collaborne/iron-timer#^1.0.3", "iron-form" : "PolymerElements/iron-form#2.0-preview", "paper-radio-group" : "PolymerElements/paper-radio-group#^2.0.0", "paper-radio-button" : "PolymerElements/paper-radio-button#^2.0.0", "paper-input" : "PolymerElements/paper-input#^2.0.0", "paper-divider" : "wincinderith/paper-divider#^2.0.0"}, "devDependencies" : {"web-component-tester" : "^6.0.0-prerelease.5", "webcomponentsjs" : "webcomponents/webcomponentsjs#^v1.0.0"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "dependencies": {"type": "object", "properties": {"polymer": {"type": "string"}, "websocket-component": {"type": "string"}, "lazy-imports": {"type": "string"}, "iron-ajax": {"type": "string"}, "app-route": {"type": "string"}, "iron-pages": {"type": "string"}, "paper-button": {"type": "string"}, "iron-flex-layout": {"type": "string"}, "app-layout": {"type": "string"}, "d3": {"type": "string"}, "iron-timer": {"type": "string"}, "iron-form": {"type": "string"}, "paper-radio-group": {"type": "string"}, "paper-radio-button": {"type": "string"}, "paper-input": {"type": "string"}, "paper-divider": {"type": "string"}}, "required": ["polymer", "websocket-component", "lazy-imports", "iron-ajax", "app-route", "iron-pages", "paper-button", "iron-flex-layout", "app-layout", "d3", "iron-timer", "iron-form", "paper-radio-group", "paper-radio-button", "paper-input", "paper-divider"]}, "devDependencies": {"type": "object", "properties": {"web-component-tester": {"type": "string"}, "webcomponentsjs": {"type": "string"}}, "required": ["web-component-tester", "webcomponentsjs"]}}, "required": ["name", "description", "main", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"citations": {"type": "array", "items": {"type": "object", "properties": {"Paper_link": {"type": "string"}, "Title": {"type": "string"}, "authors": {"type": "array", "items": {"type": "string"}}, "Citations_Link": {"type": "string"}}, "required": ["Paper_link", "Title", "authors", "Citations_Link"]}}, "paper_link": {"type": "string"}, "authors": {"type": "array", "items": {"type": "string"}}, "title": {"type": "string"}, "publication": {"type": "string"}}, "required": ["citations", "paper_link", "authors", "title", "publication"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"citations" : [{"Paper_link" : "http://link.springer.com/chapter/10.1007/978-3-540-74761-1_12", "Title" : "Crystal growth of oxides by optical floating zone technique", "authors" : ["HA Dabkowska", "AB Dabkowski "], "Citations_Link" : "https://scholar.google.com/scholar?cites=939139899912411977&as_sdt=2005&sciodt=0,5&hl=en&num=20"}, {"Paper_link" : "http://www.springerlink.com/index/JU58804577220563.pdf", "Title" : "Textured growth and orientation dependence of hardness measurement on superconducting Bi 2 Sr 2 CaCu 2 O y", "authors" : ["P Murugakoothan", "R Jayavel", "CRV Rao "], "Citations_Link" : "https://scholar.google.com/scholar?cites=8441460251389524351&as_sdt=2005&sciodt=0,5&hl=en&num=20"}, {"Paper_link" : "https://books.google.com/books?hl=en&lr=&id=L5hSxHg13wYC&oi=fnd&pg=PA341&ots=D_sD9m1sUd&sig=QKG8YecLeopnPxWFsXQXdeR5iFY", "Title" : "Growth Of Oxides Single Crystals By The Optical Floating Zone Method", "authors" : ["HA Dabkowska", "BD Gaulin "], "Citations_Link" : "https://scholar.google.com/scholar?q=related:XWB8sDlPM88J:scholar.google.com/&hl=en&num=20&as_sdt=0,5&sciodt=0,5"}], "paper_link" : "https://scholar.google.com/citations?view_op=view_citation&hl=en&user=Zs9227oAAAAJ&cstart=1759&pagesize=100&citation_for_view=Zs9227oAAAAJ:EkMFNTzSJA0C", "authors" : ["P Murugakoothan", "R Jayavel", "CRV Rao", "C Subramanian", "P Ramasamy"], "title" : "Growth and characterisation of Bi 2 Sr 2 Ca 1 Cu 2 O y by the floating zone method", "publication" : "Materials chemistry and physics 31 (3), 281-284, 1992"} | json_instruct | {"type": "object", "properties": {"citations": {"type": "array", "items": {"type": "object", "properties": {"Paper_link": {"type": "string"}, "Title": {"type": "string"}, "authors": {"type": "array", "items": {"type": "string"}}, "Citations_Link": {"type": "string"}}, "required": ["Paper_link", "Title", "authors", "Citations_Link"]}}, "paper_link": {"type": "string"}, "authors": {"type": "array", "items": {"type": "string"}}, "title": {"type": "string"}, "publication": {"type": "string"}}, "required": ["citations", "paper_link", "authors", "title", "publication"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "array", "items": {"type": "array", "items": {"type": "string"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [["610424101200", "\u859b\u5f55\u6751\u59d4\u4f1a", "121", "0"], ["610424101203", "\u6619\u652f\u574a\u6751\u59d4\u4f1a", "220", "0"], ["610424101205", "\u9a6c\u5170\u5be8\u6751\u59d4\u4f1a", "220", "0"], ["610424101208", "\u859b\u5b85\u6751\u59d4\u4f1a", "220", "0"], ["610424101213", "\u5317\u7530\u679c\u6751\u59d4\u4f1a", "220", "0"], ["610424101214", "\u76d8\u5dde\u6751\u59d4\u4f1a", "122", "0"], ["610424101215", "\u65b0\u4e30\u6751\u59d4\u4f1a", "220", "0"], ["610424101216", "\u957f\u5174\u6751\u59d4\u4f1a", "220", "0"], ["610424101217", "\u5927\u5c0f\u9a6c\u6751\u59d4\u4f1a", "220", "0"], ["610424101218", "\u5927\u5899\u6751\u59d4\u4f1a", "121", "0"], ["610424101219", "\u5bcc\u5fb7\u5e9c\u6751\u59d4\u4f1a", "220", "0"], ["610424101223", "\u897f\u5929\u5821\u6751\u59d4\u4f1a", "122", "0"], ["610424101226", "\u8d75\u91cc\u6751\u59d4\u4f1a", "122", "0"], ["610424101227", "\u4e1c\u5174\u6751", "220", "0"]] | json_instruct | {"type": "array", "items": {"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": "object", "properties": {"707959f-a": {"type": "object", "properties": {"width": {"type": "integer"}, "thumb_url": {"type": "string"}, "image_url": {"type": "string"}, "title": {"type": "string"}, "date": {"type": "string"}, "text": {"type": "string"}, "folder": {"type": "string"}, "height": {"type": "integer"}, "original_title": {"type": "string"}, "years": {"type": "array", "items": {"type": "string"}}}, "required": ["width", "thumb_url", "image_url", "title", "date", "text", "folder", "height", "original_title", "years"]}}, "required": ["707959f-a"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"707959f-a" : {"width" : 600, "thumb_url" : "http://oldnyc-assets.nypl.org/thumb/707959f-a.jpg", "image_url" : "http://oldnyc-assets.nypl.org/600px/707959f-a.jpg", "title" : "", "date" : "1930", "text" : "2nd Avenue and 104th Street, looking south, showing the Atlantic and Pacific Tea Company, on northwest corner of 2nd Avenue.\n1930\n", "folder" : "2nd Avenue & 104th Street, Manhattan, NY", "height" : 461, "original_title" : "Manhattan: 2nd Avenue - 104th Street", "years" : ["1930"]}} | json_instruct | {"type": "object", "properties": {"707959f-a": {"type": "object", "properties": {"width": {"type": "integer"}, "thumb_url": {"type": "string"}, "image_url": {"type": "string"}, "title": {"type": "string"}, "date": {"type": "string"}, "text": {"type": "string"}, "folder": {"type": "string"}, "height": {"type": "integer"}, "original_title": {"type": "string"}, "years": {"type": "array", "items": {"type": "string"}}}, "required": ["width", "thumb_url", "image_url", "title", "date", "text", "folder", "height", "original_title", "years"]}}, "required": ["707959f-a"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"average_occupancy": {"type": "array", "items": {"type": "number"}}}, "required": ["average_occupancy"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"average_occupancy" : [2.7485382977202186, 2.8004390438361653, 2.804595380921073, 2.8328735055609964, 2.6188840149889887, 2.80082157131404, 2.7630609920234166, 2.842243890052419, 2.923777184964981, 2.930174469453065, 2.9793570200093575, 2.8280306719900867, 2.7489538734379333, 2.806404179122874, 2.821598904327177, 2.688745193070811, 2.8213566791821965, 2.6838080022529867, 2.736668316899821, 2.722175516174039, 2.7853792362239465, 2.800026886811361, 2.719955687454336, 2.880304177708994, 2.9136611726337462, 2.905719852015212, 2.859416962780014, 2.678876870066624, 2.5521887474507405, 2.418413745567379, 2.233408822659316, 2.1874711793382033, 2.097236518828934, 2.0321925447274247, 1.9663666026968643, 1.968608660861687, 13.039767817709967, 1.740977799338239, 1.8738305732057625, 1.9473483716674225, 2.0771530771268787, 2.2548447740438946, 2.355518856875955, 2.410129815948248, 2.611476340412617, 2.7013160945258416, 2.7131471789639665, 2.8112392672996847, 2.852167070293054, 2.857687673688101, 2.789377701680399, 2.7915247684949147, 2.786738461472503, 2.71268570192784, 2.812381203216676, 2.7491492487589477, 2.7834982617182025, 2.8304078543605797, 2.7833944311508336, 2.6998305028768375, 2.773588498660208, 2.688618878475812, 2.7617895281371507, 2.855134496304776, 2.9063365460533057, 2.823015371858003, 2.7668567540695004, 2.795218882783465, 2.909046689724847, 2.794850014071583, 2.8016866029520857, 2.8207436307862364, 2.6944272041144415, 2.859122634262437, 2.862237045860674]} | json_instruct | {"type": "object", "properties": {"average_occupancy": {"type": "array", "items": {"type": "number"}}}, "required": ["average_occupancy"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"id": {"type": "string"}, "price": {"type": "object", "properties": {"totalPaymentPrice": {"type": "object", "properties": {"paymentCurrencyAmount": {"type": "integer"}, "paymentCurrencyCode": {"type": "string"}, "paymentCurrencyExchangeRate": {"type": "integer"}, "paymentCurrencySymbol": {"type": "string"}}, "required": ["paymentCurrencyAmount", "paymentCurrencyCode", "paymentCurrencyExchangeRate", "paymentCurrencySymbol"]}, "totalPrice": {"type": "object", "properties": {"basePayoutCurrencyCode": {"type": "string"}, "basePayoutPrice": {"type": "integer"}, "convenienceFee": {"type": "integer"}, "currencyCode": {"type": "string"}, "discount": {"type": "integer"}, "discountPrice": {"type": "integer"}, "originalPrice": {"type": "integer"}, "originalUnitPrice": {"type": "null"}, "unitPrice": {"type": "null"}, "vat": {"type": "integer"}, "voucherDiscount": {"type": "integer"}}, "required": ["basePayoutCurrencyCode", "basePayoutPrice", "convenienceFee", "currencyCode", "discount", "discountPrice", "originalPrice", "originalUnitPrice", "unitPrice", "vat", "voucherDiscount"]}}, "required": ["totalPaymentPrice", "totalPrice"]}}, "required": ["id", "price"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "bc0c263d039c4d228800c3a79bee7487", "price" : {"totalPaymentPrice" : {"paymentCurrencyAmount" : 3333, "paymentCurrencyCode" : "CAD", "paymentCurrencyExchangeRate" : 1, "paymentCurrencySymbol" : "$"}, "totalPrice" : {"basePayoutCurrencyCode" : "USD", "basePayoutPrice" : 2715, "convenienceFee" : 0, "currencyCode" : "CAD", "discount" : 834, "discountPrice" : 3333, "originalPrice" : 4167, "originalUnitPrice" : null, "unitPrice" : null, "vat" : 0, "voucherDiscount" : 0}}} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "price": {"type": "object", "properties": {"totalPaymentPrice": {"type": "object", "properties": {"paymentCurrencyAmount": {"type": "integer"}, "paymentCurrencyCode": {"type": "string"}, "paymentCurrencyExchangeRate": {"type": "integer"}, "paymentCurrencySymbol": {"type": "string"}}, "required": ["paymentCurrencyAmount", "paymentCurrencyCode", "paymentCurrencyExchangeRate", "paymentCurrencySymbol"]}, "totalPrice": {"type": "object", "properties": {"basePayoutCurrencyCode": {"type": "string"}, "basePayoutPrice": {"type": "integer"}, "convenienceFee": {"type": "integer"}, "currencyCode": {"type": "string"}, "discount": {"type": "integer"}, "discountPrice": {"type": "integer"}, "originalPrice": {"type": "integer"}, "originalUnitPrice": {"type": "null"}, "unitPrice": {"type": "null"}, "vat": {"type": "integer"}, "voucherDiscount": {"type": "integer"}}, "required": ["basePayoutCurrencyCode", "basePayoutPrice", "convenienceFee", "currencyCode", "discount", "discountPrice", "originalPrice", "originalUnitPrice", "unitPrice", "vat", "voucherDiscount"]}}, "required": ["totalPaymentPrice", "totalPrice"]}}, "required": ["id", "price"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"h": {"type": "string"}, "c": {"type": "object", "properties": {"main": {"type": "boolean"}}, "required": ["main"]}}, "required": ["h", "c"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"h" : "a40c7946eaea3094517e", "c" : {"main" : true}} | json_instruct | {"type": "object", "properties": {"h": {"type": "string"}, "c": {"type": "object", "properties": {"main": {"type": "boolean"}}, "required": ["main"]}}, "required": ["h", "c"], "$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" : "trental", "definition" : "1. (R. C. Ch.) An office and mass for the dead on the thirtieth day after death or burial. \"Their trentals and their shrifts.\" Spenser. 2. Hence, a dirge; an elegy."} | json_instruct | {"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "array", "items": {"type": "object", "properties": {"namespace": {"type": "string"}, "functions": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "type": {"type": "string"}, "description": {"type": "string"}, "async": {"type": "boolean"}, "parameters": {"type": "array", "items": {}}}, "required": ["name", "type", "description", "async", "parameters"]}}}, "required": ["namespace", "functions"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"namespace" : "migration", "functions" : [{"name" : "getUserPrefs", "type" : "function", "description" : "Get the prefs set by the user", "async" : true, "parameters" : []}, {"name" : "getAccountPrefs", "type" : "function", "description" : "Get the prefs set by the user for a specific account", "async" : true, "parameters" : []}, {"name" : "getDkimKeys", "type" : "function", "description" : "Get the stored DKIM keys", "async" : true, "parameters" : []}, {"name" : "getSignRulesUser", "type" : "function", "description" : "Get users sign rules", "async" : true, "parameters" : []}]}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"namespace": {"type": "string"}, "functions": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "type": {"type": "string"}, "description": {"type": "string"}, "async": {"type": "boolean"}, "parameters": {"type": "array", "items": {}}}, "required": ["name", "type", "description", "async", "parameters"]}}}, "required": ["namespace", "functions"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"id": {"type": "string"}, "provinceId": {"type": "string"}, "regencyId": {"type": "string"}, "districtId": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "provinceId", "regencyId", "districtId", "name"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "1013", "provinceId" : "73", "regencyId" : "18", "districtId" : "20", "name" : "Rembon"} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "provinceId": {"type": "string"}, "regencyId": {"type": "string"}, "districtId": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "provinceId", "regencyId", "districtId", "name"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"900643371": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900643372": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900643373": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}}, "required": ["900643371", "900643372", "900643373"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"900643371" : {"nama" : "TPS 1", "dapil" : [5301, 15306, 2530607]}, "900643372" : {"nama" : "TPS 2", "dapil" : [5301, 15306, 2530607]}, "900643373" : {"nama" : "TPS 3", "dapil" : [5301, 15306, 2530607]}} | json_instruct | {"type": "object", "properties": {"900643371": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900643372": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900643373": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}}, "required": ["900643371", "900643372", "900643373"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"width": {"type": "number"}, "rotation": {"type": "number"}, "xCenter": {"type": "number"}, "yCenter": {"type": "number"}, "height": {"type": "number"}}, "required": ["width", "rotation", "xCenter", "yCenter", "height"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"width" : 0.1569881, "rotation" : -2.889857, "xCenter" : 0.5085617, "yCenter" : 0.66228324, "height" : 0.19623514} | json_instruct | {"type": "object", "properties": {"width": {"type": "number"}, "rotation": {"type": "number"}, "xCenter": {"type": "number"}, "yCenter": {"type": "number"}, "height": {"type": "number"}}, "required": ["width", "rotation", "xCenter", "yCenter", "height"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"aws-sdk.js": {"type": "string"}, "aws-sdk.min.js": {"type": "string"}}, "required": ["aws-sdk.js", "aws-sdk.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"aws-sdk.js" : "sha512-uUDvYNSfyh+zCZNAchT+cKdPx7Ywh1OXlmK9GaU4idSAOuWlfTONk48gcE5Ty36IRuRYR+QrgDkKh7ect+swcg==", "aws-sdk.min.js" : "sha512-uQYvgjTtS1g2Wh5p7v+wggpRFqM7RsWPZfJAcPYGNgSlN/HzSZvjo/rLN750LjKuV6MtvDmT4VAnLDZOznDhgA=="} | json_instruct | {"type": "object", "properties": {"aws-sdk.js": {"type": "string"}, "aws-sdk.min.js": {"type": "string"}}, "required": ["aws-sdk.js", "aws-sdk.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"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"]}, "LENGTH_OF_ERA": {"type": "object", "properties": {"CATEGORY": {"type": "string"}, "MIN_VALUE": {"type": "integer"}, "P10_VALUE": {"type": "integer"}, "P25_VALUE": {"type": "integer"}, "MEDIAN_VALUE": {"type": "integer"}, "P75_VALUE": {"type": "integer"}, "P90_VALUE": {"type": "integer"}, "MAX_VALUE": {"type": "integer"}}, "required": ["CATEGORY", "MIN_VALUE", "P10_VALUE", "P25_VALUE", "MEDIAN_VALUE", "P75_VALUE", "P90_VALUE", "MAX_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", "LENGTH_OF_ERA", "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" : []}, "LENGTH_OF_ERA" : {"CATEGORY" : "Length of era", "MIN_VALUE" : 1, "P10_VALUE" : 1, "P25_VALUE" : 1, "MEDIAN_VALUE" : 1, "P75_VALUE" : 1, "P90_VALUE" : 1, "MAX_VALUE" : 23}, "AGE_AT_FIRST_DIAGNOSIS" : {"CATEGORY" : ["MALE", "FEMALE"], "MIN_VALUE" : [7, 23], "P10_VALUE" : [34, 32], "P25_VALUE" : [46, 44], "MEDIAN_VALUE" : [56, 58], "P75_VALUE" : [67, 72], "P90_VALUE" : [80, 79], "MAX_VALUE" : [97, 89]}} | 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"]}, "LENGTH_OF_ERA": {"type": "object", "properties": {"CATEGORY": {"type": "string"}, "MIN_VALUE": {"type": "integer"}, "P10_VALUE": {"type": "integer"}, "P25_VALUE": {"type": "integer"}, "MEDIAN_VALUE": {"type": "integer"}, "P75_VALUE": {"type": "integer"}, "P90_VALUE": {"type": "integer"}, "MAX_VALUE": {"type": "integer"}}, "required": ["CATEGORY", "MIN_VALUE", "P10_VALUE", "P25_VALUE", "MEDIAN_VALUE", "P75_VALUE", "P90_VALUE", "MAX_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", "LENGTH_OF_ERA", "AGE_AT_FIRST_DIAGNOSIS"], "$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"}, "author": {"type": "string"}, "license": {"type": "string"}, "repository": {"type": "string"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}, "build": {"type": "string"}, "test": {"type": "string"}}, "required": ["start", "build", "test"]}, "dependencies": {"type": "object", "properties": {"@types/node": {"type": "string"}, "lodash": {"type": "string"}, "probot": {"type": "string"}, "typescript": {"type": "string"}, "uuid": {"type": "string"}}, "required": ["@types/node", "lodash", "probot", "typescript", "uuid"]}, "devDependencies": {"type": "object", "properties": {"jest": {"type": "string"}, "smee-client": {"type": "string"}, "standard": {"type": "string"}}, "required": ["jest", "smee-client", "standard"]}, "engines": {"type": "object", "properties": {"node": {"type": "string"}, "npm": {"type": "string"}}, "required": ["node", "npm"]}, "standard": {"type": "object", "properties": {"env": {"type": "array", "items": {"type": "string"}}}, "required": ["env"]}}, "required": ["name", "version", "description", "author", "license", "repository", "scripts", "dependencies", "devDependencies", "engines", "standard"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "label-gun", "version" : "1.0.0", "description" : "", "author" : "Emiliano Heyns <[email protected]> (https://github.com/retorquere/label-gun)", "license" : "ISC", "repository" : "https://github.com/retorquere/label-gun.git", "scripts" : {"start" : "probot run ./build/index.js", "build" : "tsc --module commonjs --outDir build/ --noImplicitAny --sourceMap --target es2016 index.ts", "test" : "probot simulate issues test/fixtures/owner-comment.json ./index.js"}, "dependencies" : {"@types/node" : "^10.12.9", "lodash" : "^4.17.11", "probot" : "^7.3.1", "typescript" : "^3.1.6", "uuid" : "^3.3.2"}, "devDependencies" : {"jest" : "^23.6.0", "smee-client" : "^1.0.2", "standard" : "^12.0.1"}, "engines" : {"node" : ">= 7.7.0", "npm" : ">= 4.0.0"}, "standard" : {"env" : ["jest"]}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "author": {"type": "string"}, "license": {"type": "string"}, "repository": {"type": "string"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}, "build": {"type": "string"}, "test": {"type": "string"}}, "required": ["start", "build", "test"]}, "dependencies": {"type": "object", "properties": {"@types/node": {"type": "string"}, "lodash": {"type": "string"}, "probot": {"type": "string"}, "typescript": {"type": "string"}, "uuid": {"type": "string"}}, "required": ["@types/node", "lodash", "probot", "typescript", "uuid"]}, "devDependencies": {"type": "object", "properties": {"jest": {"type": "string"}, "smee-client": {"type": "string"}, "standard": {"type": "string"}}, "required": ["jest", "smee-client", "standard"]}, "engines": {"type": "object", "properties": {"node": {"type": "string"}, "npm": {"type": "string"}}, "required": ["node", "npm"]}, "standard": {"type": "object", "properties": {"env": {"type": "array", "items": {"type": "string"}}}, "required": ["env"]}}, "required": ["name", "version", "description", "author", "license", "repository", "scripts", "dependencies", "devDependencies", "engines", "standard"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"index_name": {"type": "string"}, "start_urls": {"type": "array", "items": {"type": "string"}}, "stop_urls": {"type": "array", "items": {}}, "selectors": {"type": "object", "properties": {"lvl0": {"type": "object", "properties": {"selector": {"type": "string"}, "type": {"type": "string"}}, "required": ["selector", "type"]}, "lvl1": {"type": "string"}, "lvl2": {"type": "string"}, "lvl3": {"type": "string"}, "lvl4": {"type": "string"}, "lvl5": {"type": "string"}, "text": {"type": "string"}}, "required": ["lvl0", "lvl1", "lvl2", "lvl3", "lvl4", "lvl5", "text"]}, "selectors_exclude": {"type": "array", "items": {"type": "string"}}, "min_indexed_level": {"type": "integer"}, "conversation_id": {"type": "array", "items": {"type": "string"}}, "nb_hits": {"type": "integer"}}, "required": ["index_name", "start_urls", "stop_urls", "selectors", "selectors_exclude", "min_indexed_level", "conversation_id", "nb_hits"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"index_name" : "storybook-js", "start_urls" : ["https://storybook.js.org", "https://storybook.js.org/basics/introduction/"], "stop_urls" : [], "selectors" : {"lvl0" : {"selector" : "//*[contains(@id, 'nav')]//li/a[contains(@class, 'selected')]/../../preceding::h3[1]", "type" : "xpath"}, "lvl1" : ".content h1", "lvl2" : ".content h2", "lvl3" : ".content h3", "lvl4" : ".content h4", "lvl5" : ".content h5", "text" : ".content p, .content li"}, "selectors_exclude" : [".header-anchor"], "min_indexed_level" : 1, "conversation_id" : ["374048318"], "nb_hits" : 1035} | json_instruct | {"type": "object", "properties": {"index_name": {"type": "string"}, "start_urls": {"type": "array", "items": {"type": "string"}}, "stop_urls": {"type": "array", "items": {}}, "selectors": {"type": "object", "properties": {"lvl0": {"type": "object", "properties": {"selector": {"type": "string"}, "type": {"type": "string"}}, "required": ["selector", "type"]}, "lvl1": {"type": "string"}, "lvl2": {"type": "string"}, "lvl3": {"type": "string"}, "lvl4": {"type": "string"}, "lvl5": {"type": "string"}, "text": {"type": "string"}}, "required": ["lvl0", "lvl1", "lvl2", "lvl3", "lvl4", "lvl5", "text"]}, "selectors_exclude": {"type": "array", "items": {"type": "string"}}, "min_indexed_level": {"type": "integer"}, "conversation_id": {"type": "array", "items": {"type": "string"}}, "nb_hits": {"type": "integer"}}, "required": ["index_name", "start_urls", "stop_urls", "selectors", "selectors_exclude", "min_indexed_level", "conversation_id", "nb_hits"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"citations": {"type": "array", "items": {"type": "object", "properties": {"textCitation": {"type": "string"}}, "required": ["textCitation"]}}, "names": {"type": "array", "items": {"type": "string"}}, "language": {"type": "string"}, "lookupTerms": {"type": "array", "items": {"type": "string"}}, "metaLanguage": {"type": "string"}, "remarks": {"type": "string"}, "statement": {"type": "string"}}, "required": ["citations", "names", "language", "lookupTerms", "metaLanguage", "remarks", "statement"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"citations" : [{"textCitation" : "[See hashunx on Metamath](http://us.metamath.org/mpegif/hashunx.html)"}], "names" : ["hashunx"], "language" : "METAMATH_SET_MM", "lookupTerms" : ["#T_cA", "#T_wcel", "#T_cV", "#T_w3a--1", "#T_cB", "#T_wcel", "#T_cW", "#T_w3a--2", "#T_cA", "#T_cin", "#T_cB", "#T_wceq", "#T_c0", "#T_wi", "#T_chash", "#T_cfv", "#T_cA", "#T_cun", "#T_cB", "#T_wceq", "#T_chash", "#T_cfv", "#T_cA", "#T_cxad", "#T_chash", "#T_cfv", "#T_cB"], "metaLanguage" : "METAMATH", "remarks" : " The size of the union of disjoint sets is the result of the extended real addition of their sizes, analogous to ~ hashun . (Contributed by Alexander van der Vekens, 21-Dec-2017.) ", "statement" : "hashunx $p |- ( ( A e. V /\\ B e. W /\\ ( A i^i B ) = (/) ) -> ( # ` ( A u. B ) ) = ( ( # ` A ) +e ( # ` B ) ) ) $."} | json_instruct | {"type": "object", "properties": {"citations": {"type": "array", "items": {"type": "object", "properties": {"textCitation": {"type": "string"}}, "required": ["textCitation"]}}, "names": {"type": "array", "items": {"type": "string"}}, "language": {"type": "string"}, "lookupTerms": {"type": "array", "items": {"type": "string"}}, "metaLanguage": {"type": "string"}, "remarks": {"type": "string"}, "statement": {"type": "string"}}, "required": ["citations", "names", "language", "lookupTerms", "metaLanguage", "remarks", "statement"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"type": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "number"}}}, "required": ["type", "coordinates"]}, "properties": {"type": "object", "properties": {"deliverable": {"type": "string"}, "maximum-net-dwellings": {"type": "string"}, "name": {"type": "string"}, "site-plan-url": {"type": "string"}, "notes": {"type": "string"}, "site-address": {"type": "string"}, "organisation": {"type": "string"}, "point": {"type": "string"}, "minimum-net-dwellings": {"type": "string"}, "hectares": {"type": "string"}, "site": {"type": "string"}, "planning-permission-status": {"type": "string"}, "slug": {"type": "string"}, "entity": {"type": "integer"}, "entry-date": {"type": "string"}}, "required": ["deliverable", "maximum-net-dwellings", "name", "site-plan-url", "notes", "site-address", "organisation", "point", "minimum-net-dwellings", "hectares", "site", "planning-permission-status", "slug", "entity", "entry-date"]}}, "required": ["type", "geometry", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"type" : "Feature", "geometry" : {"type" : "Point", "coordinates" : [-1.495984, 52.418872]}, "properties" : {"deliverable" : "yes", "maximum-net-dwellings" : "128", "name" : "F30", "site-plan-url" : "http://www.coventry.gov.uk/downloads/file/19663/lp53_shlaa_2016_report_and_appendices", "notes" : "Industrial units and storage area. Development will need to satisfy employment protection policies of the coventry local plan 2016.", "site-address" : "Storage and Industrial units at Red Lane and Midland Street", "organisation" : "local-authority-eng:COV", "point" : "POINT(-1.495984 52.418872)", "minimum-net-dwellings" : "128", "hectares" : "3.56", "site" : "F30", "planning-permission-status" : "not permissioned", "slug" : "/brownfield-land/local-authority-eng/COV/F30", "entity" : 480493, "entry-date" : "2019-11-30"}} | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "number"}}}, "required": ["type", "coordinates"]}, "properties": {"type": "object", "properties": {"deliverable": {"type": "string"}, "maximum-net-dwellings": {"type": "string"}, "name": {"type": "string"}, "site-plan-url": {"type": "string"}, "notes": {"type": "string"}, "site-address": {"type": "string"}, "organisation": {"type": "string"}, "point": {"type": "string"}, "minimum-net-dwellings": {"type": "string"}, "hectares": {"type": "string"}, "site": {"type": "string"}, "planning-permission-status": {"type": "string"}, "slug": {"type": "string"}, "entity": {"type": "integer"}, "entry-date": {"type": "string"}}, "required": ["deliverable", "maximum-net-dwellings", "name", "site-plan-url", "notes", "site-address", "organisation", "point", "minimum-net-dwellings", "hectares", "site", "planning-permission-status", "slug", "entity", "entry-date"]}}, "required": ["type", "geometry", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"type": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "number"}}}, "required": ["type", "coordinates"]}, "properties": {"type": "object", "properties": {"site": {"type": "string"}, "name": {"type": "string"}, "organisation": {"type": "string"}, "planning-permission-history": {"type": "string"}, "ownership-status": {"type": "string"}, "site-plan-url": {"type": "string"}, "site-address": {"type": "string"}, "planning-permission-date": {"type": "string"}, "deliverable": {"type": "string"}, "minimum-net-dwellings": {"type": "string"}, "start-date": {"type": "string"}, "planning-permission-type": {"type": "string"}, "point": {"type": "string"}, "maximum-net-dwellings": {"type": "string"}, "notes": {"type": "string"}, "hectares": {"type": "string"}, "planning-permission-status": {"type": "string"}, "slug": {"type": "string"}, "entity": {"type": "integer"}, "entry-date": {"type": "string"}}, "required": ["site", "name", "organisation", "planning-permission-history", "ownership-status", "site-plan-url", "site-address", "planning-permission-date", "deliverable", "minimum-net-dwellings", "start-date", "planning-permission-type", "point", "maximum-net-dwellings", "notes", "hectares", "planning-permission-status", "slug", "entity", "entry-date"]}}, "required": ["type", "geometry", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"type" : "Feature", "geometry" : {"type" : "Point", "coordinates" : [-2.468504, 53.566603]}, "properties" : {"site" : "1308-BOL", "name" : "1308-BOL", "organisation" : "local-authority-eng:BOL", "planning-permission-history" : "https://www.planningpa.bolton.gov.uk/online-applications-17/search.do?action=simple&searchType=Application", "ownership-status" : "not owned by a public authority", "site-plan-url" : "http://mappinggm.org.uk/gmodin/", "site-address" : "Dean Conservative Club, Raven Road, BL3 4QL", "planning-permission-date" : "2017-06-22", "deliverable" : "yes", "minimum-net-dwellings" : "2", "start-date" : "2017-12-31", "planning-permission-type" : "full planning permission", "point" : "POINT(-2.468504 53.566603)", "maximum-net-dwellings" : "2", "notes" : "DEMOLITION OF BUILDINGS AND ERECTION OF TWO DETACHED DWELLINGS 00879/17. http://mappinggm.org.uk/gmodin/", "hectares" : "0.46", "planning-permission-status" : "permissioned", "slug" : "/brownfield-land/local-authority-eng/BOL/1308-BOL", "entity" : 477193, "entry-date" : "2017-12-31"}} | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "number"}}}, "required": ["type", "coordinates"]}, "properties": {"type": "object", "properties": {"site": {"type": "string"}, "name": {"type": "string"}, "organisation": {"type": "string"}, "planning-permission-history": {"type": "string"}, "ownership-status": {"type": "string"}, "site-plan-url": {"type": "string"}, "site-address": {"type": "string"}, "planning-permission-date": {"type": "string"}, "deliverable": {"type": "string"}, "minimum-net-dwellings": {"type": "string"}, "start-date": {"type": "string"}, "planning-permission-type": {"type": "string"}, "point": {"type": "string"}, "maximum-net-dwellings": {"type": "string"}, "notes": {"type": "string"}, "hectares": {"type": "string"}, "planning-permission-status": {"type": "string"}, "slug": {"type": "string"}, "entity": {"type": "integer"}, "entry-date": {"type": "string"}}, "required": ["site", "name", "organisation", "planning-permission-history", "ownership-status", "site-plan-url", "site-address", "planning-permission-date", "deliverable", "minimum-net-dwellings", "start-date", "planning-permission-type", "point", "maximum-net-dwellings", "notes", "hectares", "planning-permission-status", "slug", "entity", "entry-date"]}}, "required": ["type", "geometry", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"directions": {"type": "array", "items": {"type": "string"}}, "ingredients": {"type": "array", "items": {"type": "string"}}, "language": {"type": "string"}, "source": {"type": "string"}, "tags": {"type": "array", "items": {}}, "title": {"type": "string"}, "url": {"type": "string"}}, "required": ["directions", "ingredients", "language", "source", "tags", "title", "url"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"directions" : ["Grease a disposable 8x8 inch baking pan. Stir sugar, corn syrup, and vinegar together in a heavy saucepan until the sugar is just mixed in, and the mixture looks like dirty sand.", "Place pan over medium-low heat. Cook to 307 degrees F on a candy thermometer, about 15 minutes. Remove from heat; gently stir in baking soda. Pour candy into prepared pan and let cool in a draft free area.", "Break cooled candy into bite-size pieces. Melt chocolate chips in a double boiler. Dip candy pieces in chocolate to coat. Let chocolate harden; store candy in an airtight container."], "ingredients" : ["1 cup white sugar", "1 cup dark corn syrup", "1 tablespoon distilled white vinegar", "1 tablespoon baking soda", "2 (12 ounce) bags semisweet chocolate chips"], "language" : "en-US", "source" : "allrecipes.com", "tags" : [], "title" : "Cab Shop Seafoam", "url" : "http://allrecipes.com/recipe/166538/cab-shop-seafoam/"} | json_instruct | {"type": "object", "properties": {"directions": {"type": "array", "items": {"type": "string"}}, "ingredients": {"type": "array", "items": {"type": "string"}}, "language": {"type": "string"}, "source": {"type": "string"}, "tags": {"type": "array", "items": {}}, "title": {"type": "string"}, "url": {"type": "string"}}, "required": ["directions", "ingredients", "language", "source", "tags", "title", "url"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"code": {"type": "integer"}, "parent": {"type": "integer"}, "name": {"type": "string"}, "latitude": {"type": "null"}, "longitude": {"type": "null"}, "postal": {"type": "array", "items": {"type": "integer"}}, "children": {"type": "array", "items": {}}}, "required": ["code", "parent", "name", "latitude", "longitude", "postal", "children"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"code" : 5304071011, "parent" : 5304071, "name" : "OFU", "latitude" : null, "longitude" : null, "postal" : [85581, 85563], "children" : []} | json_instruct | {"type": "object", "properties": {"code": {"type": "integer"}, "parent": {"type": "integer"}, "name": {"type": "string"}, "latitude": {"type": "null"}, "longitude": {"type": "null"}, "postal": {"type": "array", "items": {"type": "integer"}}, "children": {"type": "array", "items": {}}}, "required": ["code", "parent", "name", "latitude", "longitude", "postal", "children"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"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" : [-73.64, 43.07]}, "type" : "Feature", "id" : "12884", "properties" : {"other_cities" : "", "city" : "Victory Mills", "state" : "NY", "county" : "Saratoga 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#"} |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.