input
stringlengths
159
2.05k
output
stringlengths
5
10.3k
task
stringclasses
1 value
schema
stringlengths
100
1.99k
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"}, "dependencies": {"type": "object", "properties": {"axios": {"type": "string"}, "body-parser": {"type": "string"}, "dotenv": {"type": "string"}, "express": {"type": "string"}, "mongoose": {"type": "string"}, "prettier": {"type": "string"}, "qs": {"type": "string"}, "socket.io": {"type": "string"}}, "required": ["axios", "body-parser", "dotenv", "express", "mongoose", "prettier", "qs", "socket.io"]}, "devDependencies": {"type": "object", "properties": {"body-parser": {"type": "string"}, "eslint": {"type": "string"}, "express": {"type": "string"}, "nodemon": {"type": "string"}, "prettier": {"type": "string"}, "socket.io": {"type": "string"}}, "required": ["body-parser", "eslint", "express", "nodemon", "prettier", "socket.io"]}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "start": {"type": "string"}, "start:dev": {"type": "string"}, "lint": {"type": "string"}, "lint:fix": {"type": "string"}}, "required": ["test", "start", "start:dev", "lint", "lint:fix"]}, "author": {"type": "string"}, "license": {"type": "string"}}, "required": ["name", "version", "description", "main", "dependencies", "devDependencies", "scripts", "author", "license"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "backend", "version" : "1.0.0", "description" : "Backend for autoDJ", "main" : "app.js", "dependencies" : {"axios" : "^0.21.1", "body-parser" : "^1.19.0", "dotenv" : "^8.2.0", "express" : "^4.17.1", "mongoose" : "^5.11.9", "prettier" : "^2.2.1", "qs" : "^6.9.4", "socket.io" : "^3.0.4"}, "devDependencies" : {"body-parser" : "^1.19.0", "eslint" : "^7.21.0", "express" : "^4.17.1", "nodemon" : "^2.0.7", "prettier" : "^2.2.1", "socket.io" : "^3.0.4"}, "scripts" : {"test" : "echo \"Error: no test specified\" && exit 1", "start" : "node app.js", "start:dev" : "nodemon app.js --ignore '*.json'", "lint" : "eslint", "lint:fix" : "eslint --fix"}, "author" : "", "license" : "ISC"}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "dependencies": {"type": "object", "properties": {"axios": {"type": "string"}, "body-parser": {"type": "string"}, "dotenv": {"type": "string"}, "express": {"type": "string"}, "mongoose": {"type": "string"}, "prettier": {"type": "string"}, "qs": {"type": "string"}, "socket.io": {"type": "string"}}, "required": ["axios", "body-parser", "dotenv", "express", "mongoose", "prettier", "qs", "socket.io"]}, "devDependencies": {"type": "object", "properties": {"body-parser": {"type": "string"}, "eslint": {"type": "string"}, "express": {"type": "string"}, "nodemon": {"type": "string"}, "prettier": {"type": "string"}, "socket.io": {"type": "string"}}, "required": ["body-parser", "eslint", "express", "nodemon", "prettier", "socket.io"]}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "start": {"type": "string"}, "start:dev": {"type": "string"}, "lint": {"type": "string"}, "lint:fix": {"type": "string"}}, "required": ["test", "start", "start:dev", "lint", "lint:fix"]}, "author": {"type": "string"}, "license": {"type": "string"}}, "required": ["name", "version", "description", "main", "dependencies", "devDependencies", "scripts", "author", "license"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"token": {"type": "string"}, "name": {"type": "array", "items": {"type": "string"}}, "homepage": {"type": "string"}, "url": {"type": "string"}, "appcast": {"type": "string"}, "version": {"type": "string"}, "sha256": {"type": "string"}, "artifacts": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}, "caveats": {"type": "null"}, "depends_on": {"type": "object", "properties": {}, "required": []}, "conflicts_with": {"type": "null"}, "container": {"type": "null"}, "auto_updates": {"type": "null"}}, "required": ["token", "name", "homepage", "url", "appcast", "version", "sha256", "artifacts", "caveats", "depends_on", "conflicts_with", "container", "auto_updates"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"token" : "tandem", "name" : ["Tandem"], "homepage" : "https://tandem.chat/", "url" : "https://wisp-app.s3-accelerate.amazonaws.com/Tandem-1.5.9-mac.zip", "appcast" : "https://wisp-app.s3-accelerate.amazonaws.com/latest-mac.yml", "version" : "1.5.9", "sha256" : "fab32f45b9d5d43d101650ef965d108604e7d37cad462e158759ef9eaee35ac1", "artifacts" : [["Tandem.app"]], "caveats" : null, "depends_on" : {}, "conflicts_with" : null, "container" : null, "auto_updates" : null}
json_instruct
{"type": "object", "properties": {"token": {"type": "string"}, "name": {"type": "array", "items": {"type": "string"}}, "homepage": {"type": "string"}, "url": {"type": "string"}, "appcast": {"type": "string"}, "version": {"type": "string"}, "sha256": {"type": "string"}, "artifacts": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}, "caveats": {"type": "null"}, "depends_on": {"type": "object", "properties": {}, "required": []}, "conflicts_with": {"type": "null"}, "container": {"type": "null"}, "auto_updates": {"type": "null"}}, "required": ["token", "name", "homepage", "url", "appcast", "version", "sha256", "artifacts", "caveats", "depends_on", "conflicts_with", "container", "auto_updates"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"outfolder": {"type": "string"}, "parse_params": {"type": "object", "properties": {"nprocs": {"type": "integer"}}, "required": ["nprocs"]}, "feature_params": {"type": "object", "properties": {"base_data": {"type": "string"}, "walk_args": {"type": "object", "properties": {"nprocs": {"type": "integer"}, "length": {"type": "integer"}, "n": {"type": "integer"}, "metapaths": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}}, "required": ["nprocs", "length", "n", "metapaths"]}, "w2v_args": {"type": "object", "properties": {"size": {"type": "integer"}, "window": {"type": "integer"}, "min_count": {"type": "integer"}, "negative": {"type": "integer"}, "sg": {"type": "integer"}, "workers": {"type": "integer"}, "iter": {"type": "integer"}}, "required": ["size", "window", "min_count", "negative", "sg", "workers", "iter"]}}, "required": ["base_data", "walk_args", "w2v_args"]}}, "required": ["outfolder", "parse_params", "feature_params"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"outfolder" : "data/out/miniset-test", "parse_params" : {"nprocs" : 16}, "feature_params" : {"base_data" : "data/out/miniset-train", "walk_args" : {"nprocs" : 16, "length" : 60, "n" : 3, "metapaths" : [["app", "api", "app"], ["app", "api", "method", "api", "app"], ["app", "api", "package", "api", "app"], ["app", "api", "package", "api", "method", "api", "app"], ["app", "api", "method", "api", "package", "api", "app"]]}, "w2v_args" : {"size" : 128, "window" : 5, "min_count" : 0, "negative" : 5, "sg" : 1, "workers" : 16, "iter" : 5}}}
json_instruct
{"type": "object", "properties": {"outfolder": {"type": "string"}, "parse_params": {"type": "object", "properties": {"nprocs": {"type": "integer"}}, "required": ["nprocs"]}, "feature_params": {"type": "object", "properties": {"base_data": {"type": "string"}, "walk_args": {"type": "object", "properties": {"nprocs": {"type": "integer"}, "length": {"type": "integer"}, "n": {"type": "integer"}, "metapaths": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}}, "required": ["nprocs", "length", "n", "metapaths"]}, "w2v_args": {"type": "object", "properties": {"size": {"type": "integer"}, "window": {"type": "integer"}, "min_count": {"type": "integer"}, "negative": {"type": "integer"}, "sg": {"type": "integer"}, "workers": {"type": "integer"}, "iter": {"type": "integer"}}, "required": ["size", "window", "min_count", "negative", "sg", "workers", "iter"]}}, "required": ["base_data", "walk_args", "w2v_args"]}}, "required": ["outfolder", "parse_params", "feature_params"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"aboutUs": {"type": "string"}, "learn": {"type": "string"}, "featuredSections": {"type": "array", "items": {"type": "object", "properties": {"cta": {"type": "string"}, "url": {"type": "string"}, "description": {"type": "string"}, "iconId": {"type": "string"}}, "required": ["cta", "url", "description", "iconId"]}}}, "required": ["aboutUs", "learn", "featuredSections"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"aboutUs" : "The Act Now Coalition is an independent 501(c)(3) nonprofit founded by volunteers in March 2020. Covid Act Now is our COVID-focused initiative to help people make informed decisions by providing timely and accurate data about COVID in the U.S.", "learn" : "Find simple definitions of COVID-related terms, deep dives into COVID science and treatments, and concise answers to pressing COVID questions.", "featuredSections" : [{"cta" : "Alerts", "url" : "#share", "description" : "Receive emails when your location changes risk level or vaccine eligibility", "iconId" : "ALERTS"}, {"cta" : "Research Rundown", "description" : "Look back through digestible summaries of scientific literature and COVID research from the past year.", "url" : "/research-rundown-archive", "iconId" : "DAILY_DOWNLOAD"}, {"cta" : "Data API", "url" : "/data-api", "description" : "Get realtime, local data including daily new cases, % vaccinated, and more.", "iconId" : "API"}]}
json_instruct
{"type": "object", "properties": {"aboutUs": {"type": "string"}, "learn": {"type": "string"}, "featuredSections": {"type": "array", "items": {"type": "object", "properties": {"cta": {"type": "string"}, "url": {"type": "string"}, "description": {"type": "string"}, "iconId": {"type": "string"}}, "required": ["cta", "url", "description", "iconId"]}}}, "required": ["aboutUs", "learn", "featuredSections"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "license": {"type": "string"}, "type": {"type": "string"}, "autoload": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"esome\\": {"type": "string"}}, "required": ["esome\\"]}}, "required": ["psr-4"]}, "autoload-dev": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"Tests\\": {"type": "string"}}, "required": ["Tests\\"]}}, "required": ["psr-4"]}, "require": {"type": "object", "properties": {"php": {"type": "string"}, "doctrine/orm": {"type": "string"}}, "required": ["php", "doctrine/orm"]}, "require-dev": {"type": "object", "properties": {"phpunit/phpunit": {"type": "string"}}, "required": ["phpunit/phpunit"]}, "scripts": {"type": "object", "properties": {}, "required": []}}, "required": ["name", "description", "license", "type", "autoload", "autoload-dev", "require", "require-dev", "scripts"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "esome/doctrine-bulk-persister", "description" : "A doctrine extension for bulk operations.", "license" : "proprietary", "type" : "library", "autoload" : {"psr-4" : {"esome\\" : "src"}}, "autoload-dev" : {"psr-4" : {"Tests\\" : "tests/"}}, "require" : {"php" : ">=7.0.0", "doctrine/orm" : "^2.5"}, "require-dev" : {"phpunit/phpunit" : "^5.6"}, "scripts" : {}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "license": {"type": "string"}, "type": {"type": "string"}, "autoload": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"esome\\": {"type": "string"}}, "required": ["esome\\"]}}, "required": ["psr-4"]}, "autoload-dev": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"Tests\\": {"type": "string"}}, "required": ["Tests\\"]}}, "required": ["psr-4"]}, "require": {"type": "object", "properties": {"php": {"type": "string"}, "doctrine/orm": {"type": "string"}}, "required": ["php", "doctrine/orm"]}, "require-dev": {"type": "object", "properties": {"phpunit/phpunit": {"type": "string"}}, "required": ["phpunit/phpunit"]}, "scripts": {"type": "object", "properties": {}, "required": []}}, "required": ["name", "description", "license", "type", "autoload", "autoload-dev", "require", "require-dev", "scripts"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"name": {"type": "string"}, "abv": {"type": "number"}, "ibu": {"type": "number"}, "srm": {"type": "number"}, "upc": {"type": "integer"}, "type": {"type": "string"}, "brewery_id": {"type": "string"}, "updated": {"type": "string"}, "description": {"type": "string"}, "style": {"type": "string"}, "category": {"type": "string"}}, "required": ["name", "abv", "ibu", "srm", "upc", "type", "brewery_id", "updated", "description", "style", "category"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "90 Minute IPA", "abv" : 9.0, "ibu" : 0.0, "srm" : 0.0, "upc" : 0, "type" : "beer", "brewery_id" : "dogfish_head_craft_brewery", "updated" : "2010-07-22 20:00:20", "description" : "Esquire Magazine calls our 90 Minute .IPA., \"perhaps the best I.P.A. in America.\" An Imperial I.P.A. brewed to be savored from a snifter. A big beer with a great malt backbone that stands up to the extreme hopping rate. This beer is an excellent candidate for use with Randall The Enamel Animal!", "style" : "Imperial or Double India Pale Ale", "category" : "North American Ale"}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "abv": {"type": "number"}, "ibu": {"type": "number"}, "srm": {"type": "number"}, "upc": {"type": "integer"}, "type": {"type": "string"}, "brewery_id": {"type": "string"}, "updated": {"type": "string"}, "description": {"type": "string"}, "style": {"type": "string"}, "category": {"type": "string"}}, "required": ["name", "abv", "ibu", "srm", "upc", "type", "brewery_id", "updated", "description", "style", "category"], "$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"}, "version": {"type": "string"}, "engines": {"type": "object", "properties": {"gitbook": {"type": "string"}}, "required": ["gitbook"]}, "homepage": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "dependencies": {"type": "object", "properties": {"gulp": {"type": "string"}, "gulp-concat": {"type": "string"}, "gulp-minify-css": {"type": "string"}, "gulp-rename": {"type": "string"}}, "required": ["gulp", "gulp-concat", "gulp-minify-css", "gulp-rename"]}}, "required": ["name", "description", "main", "version", "engines", "homepage", "repository", "license", "bugs", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "gitbook-plugin-clojurescript", "description" : "A Gitbook plugin for running a ClojureScript REPL inside Gitbook", "main" : "index.js", "version" : "0.1.0", "engines" : {"gitbook" : "*"}, "homepage" : "https://github.com/prakhar1989/gitbook-plugin-repl", "repository" : {"type" : "git", "url" : "https://github.com/prakhar1989/gitbook-plugin-repl.git"}, "license" : "Apache 2", "bugs" : {"url" : "https://github.com/prakhar1989/gitbook-plugin-repl/issues"}, "dependencies" : {"gulp" : "^3.8.10", "gulp-concat" : "^2.4.3", "gulp-minify-css" : "^0.4.2", "gulp-rename" : "^1.2.0"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "version": {"type": "string"}, "engines": {"type": "object", "properties": {"gitbook": {"type": "string"}}, "required": ["gitbook"]}, "homepage": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "dependencies": {"type": "object", "properties": {"gulp": {"type": "string"}, "gulp-concat": {"type": "string"}, "gulp-minify-css": {"type": "string"}, "gulp-rename": {"type": "string"}}, "required": ["gulp", "gulp-concat", "gulp-minify-css", "gulp-rename"]}}, "required": ["name", "description", "main", "version", "engines", "homepage", "repository", "license", "bugs", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"testRunIds": {"type": "array", "items": {"type": "string"}}, "unfilteredTests": {"type": "object", "properties": {"dts": {"type": "array", "items": {}}}, "required": ["dts"]}, "filteredTests": {"type": "object", "properties": {"dts": {"type": "array", "items": {}}}, "required": ["dts"]}, "roundTime": {"type": "number"}}, "required": ["testRunIds", "unfilteredTests", "filteredTests", "roundTime"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"testRunIds" : ["1635803550834-c89afea4-25eb-4e0f-8606-c090d7fe912a"], "unfilteredTests" : {"dts" : []}, "filteredTests" : {"dts" : []}, "roundTime" : 22.548627926}
json_instruct
{"type": "object", "properties": {"testRunIds": {"type": "array", "items": {"type": "string"}}, "unfilteredTests": {"type": "object", "properties": {"dts": {"type": "array", "items": {}}}, "required": ["dts"]}, "filteredTests": {"type": "object", "properties": {"dts": {"type": "array", "items": {}}}, "required": ["dts"]}, "roundTime": {"type": "number"}}, "required": ["testRunIds", "unfilteredTests", "filteredTests", "roundTime"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"/": {"type": "object", "properties": {"target": {"type": "string"}, "secure": {"type": "boolean"}}, "required": ["target", "secure"]}}, "required": ["/"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"/" : {"target" : "https://localhost:5005", "secure" : false}}
json_instruct
{"type": "object", "properties": {"/": {"type": "object", "properties": {"target": {"type": "string"}, "secure": {"type": "boolean"}}, "required": ["target", "secure"]}}, "required": ["/"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"iisSettings": {"type": "object", "properties": {"windowsAuthentication": {"type": "boolean"}, "anonymousAuthentication": {"type": "boolean"}, "iisExpress": {"type": "object", "properties": {"applicationUrl": {"type": "string"}, "sslPort": {"type": "integer"}}, "required": ["applicationUrl", "sslPort"]}}, "required": ["windowsAuthentication", "anonymousAuthentication", "iisExpress"]}, "profiles": {"type": "object", "properties": {"IIS Express": {"type": "object", "properties": {"commandName": {"type": "string"}, "launchBrowser": {"type": "boolean"}, "environmentVariables": {"type": "object", "properties": {"GOOGLE_APPLICATION_CREDENTIALS": {"type": "string"}, "EndpointHost": {"type": "string"}, "EndpointPort": {"type": "string"}, "ASPNETCORE_ENVIRONMENT": {"type": "string"}}, "required": ["GOOGLE_APPLICATION_CREDENTIALS", "EndpointHost", "EndpointPort", "ASPNETCORE_ENVIRONMENT"]}, "ancmHostingModel": {"type": "string"}}, "required": ["commandName", "launchBrowser", "environmentVariables", "ancmHostingModel"]}, "StackDriver.Magent.Core": {"type": "object", "properties": {"commandName": {"type": "string"}, "launchBrowser": {"type": "boolean"}, "environmentVariables": {"type": "object", "properties": {"ASPNETCORE_ENVIRONMENT": {"type": "string"}}, "required": ["ASPNETCORE_ENVIRONMENT"]}, "applicationUrl": {"type": "string"}}, "required": ["commandName", "launchBrowser", "environmentVariables", "applicationUrl"]}}, "required": ["IIS Express", "StackDriver.Magent.Core"]}}, "required": ["iisSettings", "profiles"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"iisSettings" : {"windowsAuthentication" : false, "anonymousAuthentication" : true, "iisExpress" : {"applicationUrl" : "http://localhost:54735/", "sslPort" : 0}}, "profiles" : {"IIS Express" : {"commandName" : "IISExpress", "launchBrowser" : true, "environmentVariables" : {"GOOGLE_APPLICATION_CREDENTIALS" : "Config\\gcloud.json", "EndpointHost" : "localhost", "EndpointPort" : "18245", "ASPNETCORE_ENVIRONMENT" : "Development"}, "ancmHostingModel" : "InProcess"}, "StackDriver.Magent.Core" : {"commandName" : "Project", "launchBrowser" : true, "environmentVariables" : {"ASPNETCORE_ENVIRONMENT" : "Development"}, "applicationUrl" : "https://localhost:5001;http://localhost:5000"}}}
json_instruct
{"type": "object", "properties": {"iisSettings": {"type": "object", "properties": {"windowsAuthentication": {"type": "boolean"}, "anonymousAuthentication": {"type": "boolean"}, "iisExpress": {"type": "object", "properties": {"applicationUrl": {"type": "string"}, "sslPort": {"type": "integer"}}, "required": ["applicationUrl", "sslPort"]}}, "required": ["windowsAuthentication", "anonymousAuthentication", "iisExpress"]}, "profiles": {"type": "object", "properties": {"IIS Express": {"type": "object", "properties": {"commandName": {"type": "string"}, "launchBrowser": {"type": "boolean"}, "environmentVariables": {"type": "object", "properties": {"GOOGLE_APPLICATION_CREDENTIALS": {"type": "string"}, "EndpointHost": {"type": "string"}, "EndpointPort": {"type": "string"}, "ASPNETCORE_ENVIRONMENT": {"type": "string"}}, "required": ["GOOGLE_APPLICATION_CREDENTIALS", "EndpointHost", "EndpointPort", "ASPNETCORE_ENVIRONMENT"]}, "ancmHostingModel": {"type": "string"}}, "required": ["commandName", "launchBrowser", "environmentVariables", "ancmHostingModel"]}, "StackDriver.Magent.Core": {"type": "object", "properties": {"commandName": {"type": "string"}, "launchBrowser": {"type": "boolean"}, "environmentVariables": {"type": "object", "properties": {"ASPNETCORE_ENVIRONMENT": {"type": "string"}}, "required": ["ASPNETCORE_ENVIRONMENT"]}, "applicationUrl": {"type": "string"}}, "required": ["commandName", "launchBrowser", "environmentVariables", "applicationUrl"]}}, "required": ["IIS Express", "StackDriver.Magent.Core"]}}, "required": ["iisSettings", "profiles"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"token": {"type": "string"}, "guild_config": {"type": "object", "properties": {}, "required": []}, "conf_manager": {"type": "array", "items": {}}}, "required": ["token", "guild_config", "conf_manager"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"token" : "discord bot token", "guild_config" : {}, "conf_manager" : []}
json_instruct
{"type": "object", "properties": {"token": {"type": "string"}, "guild_config": {"type": "object", "properties": {}, "required": []}, "conf_manager": {"type": "array", "items": {}}}, "required": ["token", "guild_config", "conf_manager"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"532925101": {"type": "string"}, "532925102": {"type": "string"}, "532925103": {"type": "string"}, "532925104": {"type": "string"}, "532925105": {"type": "string"}, "532925106": {"type": "string"}, "532925203": {"type": "string"}, "532925204": {"type": "string"}}, "required": ["532925101", "532925102", "532925103", "532925104", "532925105", "532925106", "532925203", "532925204"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"532925101" : "\u5f25\u57ce\u9547", "532925102" : "\u7ea2\u5ca9\u9547", "532925103" : "\u65b0\u8857\u9547", "532925104" : "\u5bc5\u8857\u9547", "532925105" : "\u82f4\u529b\u9547", "532925106" : "\u5bc6\u7949\u9547", "532925203" : "\u5fb7\u82f4\u4e61", "532925204" : "\u725b\u8857\u5f5d\u65cf\u4e61"}
json_instruct
{"type": "object", "properties": {"532925101": {"type": "string"}, "532925102": {"type": "string"}, "532925103": {"type": "string"}, "532925104": {"type": "string"}, "532925105": {"type": "string"}, "532925106": {"type": "string"}, "532925203": {"type": "string"}, "532925204": {"type": "string"}}, "required": ["532925101", "532925102", "532925103", "532925104", "532925105", "532925106", "532925203", "532925204"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"}
["cc-wallet-core", "testnet-charger"]
json_instruct
{"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"address": {"type": "string"}, "trackStartDate": {"type": "string"}, "trackStartUnixTimestamp": {"type": "integer"}, "pingStats": {"type": "array", "items": {"type": "object", "properties": {"0": {"type": "integer"}}, "required": ["0"]}}}, "required": ["address", "trackStartDate", "trackStartUnixTimestamp", "pingStats"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"address" : "ban_1ehzaftudrro6aopqgx3t7bfgikybucg5ipawfx7nd9nbrufa4p5ffbtmrq9", "trackStartDate" : "3/25/2022 10:20:37 PM", "trackStartUnixTimestamp" : 1648261237222, "pingStats" : [{"0" : 1}]}
json_instruct
{"type": "object", "properties": {"address": {"type": "string"}, "trackStartDate": {"type": "string"}, "trackStartUnixTimestamp": {"type": "integer"}, "pingStats": {"type": "array", "items": {"type": "object", "properties": {"0": {"type": "integer"}}, "required": ["0"]}}}, "required": ["address", "trackStartDate", "trackStartUnixTimestamp", "pingStats"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"width": {"type": "integer"}, "filename": {"type": "string"}}, "required": ["width", "filename"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"width" : 992, "filename" : "17.JPG"}
json_instruct
{"type": "object", "properties": {"width": {"type": "integer"}, "filename": {"type": "string"}}, "required": ["width", "filename"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"dependencies": {"type": "object", "properties": {"debug": {"type": "string"}}, "required": ["debug"]}, "globalDependencies": {"type": "object", "properties": {"atom": {"type": "string"}, "core-js": {"type": "string"}, "node": {"type": "string"}}, "required": ["atom", "core-js", "node"]}}, "required": ["dependencies", "globalDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"dependencies" : {"debug" : "registry:npm/debug#2.0.0+20160511151334"}, "globalDependencies" : {"atom" : "registry:env/atom#1.6.0+20160321005638", "core-js" : "registry:dt/core-js#0.0.0+20160602141332", "node" : "registry:dt/node#6.0.0+20160602155235"}}
json_instruct
{"type": "object", "properties": {"dependencies": {"type": "object", "properties": {"debug": {"type": "string"}}, "required": ["debug"]}, "globalDependencies": {"type": "object", "properties": {"atom": {"type": "string"}, "core-js": {"type": "string"}, "node": {"type": "string"}}, "required": ["atom", "core-js", "node"]}}, "required": ["dependencies", "globalDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"atom-workspace": {"type": "object", "properties": {"ctrl-alt-o": {"type": "string"}}, "required": ["ctrl-alt-o"]}}, "required": ["atom-workspace"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"atom-workspace" : {"ctrl-alt-o" : "try-make-plugins-word-count:toggle"}}
json_instruct
{"type": "object", "properties": {"atom-workspace": {"type": "object", "properties": {"ctrl-alt-o": {"type": "string"}}, "required": ["ctrl-alt-o"]}}, "required": ["atom-workspace"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"$": {"type": "string"}}, "required": ["$"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"$" : "f6bfb747fba609b26c9714c3fcaf31e651MzgnAE0PXru3v34GSHyKdQBqpUDrspGHsb6RB3FSw/d4zdAFrLQs4OkUnd+DcIM3JLoTCJfVWS8H/9c76DsszljEIRbqEzhDumUrEhktr3jcOBYaXWBUXzKyZPjI/8lxVjrO5JH/XtoimrqKkLH0EqhvVRG88IowVr+lybOhzJvisVKMzPsBk3emaxgOUTxKB9d47RldFmwIRTrTEFrLqXQxW9+bSKiC8PjzvX2bmgJ1l4yUE4JCwjjvwS321pzc0F2N83iyxdcpMSdkshmT4SMOQO/giSPQYAI+TClP05P6r3w4QbwwgjPOjLCz3YcD/6WkeY/dirDJUC+2REaq4MdJyUzNiUJVtzb/er10Gs03HYr1MR4AqKfvew5SSI91bDToE8onBdZdmzhwbJsGewHpXfJeSUObRqyhX85YbWOMkcShrLioATEk/2dWCSr1jkjSNcrXq2JDYFfJmVT/whFyey6UFMIukL"}
json_instruct
{"type": "object", "properties": {"$": {"type": "string"}}, "required": ["$"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "array", "items": {"type": "object", "properties": {"errors": {"type": "array", "items": {}}, "file": {"type": "string"}, "name": {"type": "string"}}, "required": ["errors", "file", "name"]}}}, "required": ["contract", "tool", "start", "end", "duration", "analysis"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"contract" : "0x30b39581177d0c035e9f9ae0fa67f4d56493d8ae", "tool" : "osiris", "start" : 1564610311.271407, "end" : 1564610364.0603392, "duration" : 52.78893232345581, "analysis" : [{"errors" : [], "file" : "/unique_chucks/38/0x30b39581177d0c035e9f9ae0fa67f4d56493d8ae.sol", "name" : "Greenbit"}]}
json_instruct
{"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "array", "items": {"type": "object", "properties": {"errors": {"type": "array", "items": {}}, "file": {"type": "string"}, "name": {"type": "string"}}, "required": ["errors", "file", "name"]}}}, "required": ["contract", "tool", "start", "end", "duration", "analysis"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "repository": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"axios": {"type": "string"}, "body-parser": {"type": "string"}, "dotenv": {"type": "string"}, "express": {"type": "string"}, "twilio": {"type": "string"}}, "required": ["axios", "body-parser", "dotenv", "express", "twilio"]}}, "required": ["name", "version", "description", "main", "repository", "license", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "poc-twilio", "version" : "0.1.0", "description" : "A playground to test Twilio SMS sending/receiving capabilities", "main" : "server.js", "repository" : "https://github.com/dirtyhenry/poc-twilio", "license" : "MIT", "dependencies" : {"axios" : "^0.21.1", "body-parser" : "^1.19.0", "dotenv" : "^8.2.0", "express" : "^4.17.1", "twilio" : "^3.37.1"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "repository": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"axios": {"type": "string"}, "body-parser": {"type": "string"}, "dotenv": {"type": "string"}, "express": {"type": "string"}, "twilio": {"type": "string"}}, "required": ["axios", "body-parser", "dotenv", "express", "twilio"]}}, "required": ["name", "version", "description", "main", "repository", "license", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"origin": {"type": "string"}, "download_link": {"type": "string"}, "views": {"type": "integer"}, "x_resolution": {"type": "integer"}, "filetype": {"type": "string"}, "site": {"type": "string"}, "y_resolution": {"type": "integer"}, "colors": {"type": "array", "items": {"type": "string"}}, "comments": {"type": "array", "items": {"type": "string"}}, "favorites": {"type": "integer"}, "descriptors": {"type": "array", "items": {"type": "string"}}, "uploader": {"type": "string"}}, "required": ["origin", "download_link", "views", "x_resolution", "filetype", "site", "y_resolution", "colors", "comments", "favorites", "descriptors", "uploader"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"origin" : "http://wallbase.cc/wallpaper/672791", "download_link" : "http://wallpapers.wallbase.cc/rozne/wallpaper-672791.jpg", "views" : 6211, "x_resolution" : 1440, "filetype" : "jpg", "site" : "wallbase.cc", "y_resolution" : 900, "colors" : ["#ffffff", "#95b0a1", "#547faa", "#0e1d31", "#fee0a4"], "comments" : [""], "favorites" : 26, "descriptors" : ["cartoons", "Facebook", "Internet", "Google", "YouTube", "Twitter", "myspace", "Wikipedia", "DeviantART", "Meet the Internet"], "uploader" : " 4chan"}
json_instruct
{"type": "object", "properties": {"origin": {"type": "string"}, "download_link": {"type": "string"}, "views": {"type": "integer"}, "x_resolution": {"type": "integer"}, "filetype": {"type": "string"}, "site": {"type": "string"}, "y_resolution": {"type": "integer"}, "colors": {"type": "array", "items": {"type": "string"}}, "comments": {"type": "array", "items": {"type": "string"}}, "favorites": {"type": "integer"}, "descriptors": {"type": "array", "items": {"type": "string"}}, "uploader": {"type": "string"}}, "required": ["origin", "download_link", "views", "x_resolution", "filetype", "site", "y_resolution", "colors", "comments", "favorites", "descriptors", "uploader"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "text": {"type": "string"}}, "required": ["id", "text"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"id" : "230828211202", "text" : "\u7ea2\u4e30\u6751\u59d4\u4f1a"}, {"id" : "230828211203", "text" : "\u7ea2\u5e86\u6751\u59d4\u4f1a"}, {"id" : "230828211204", "text" : "\u7ea2\u6cc9\u6751\u59d4\u4f1a"}, {"id" : "230828211205", "text" : "\u7ea2\u536b\u6751\u59d4\u4f1a"}, {"id" : "230828211207", "text" : "\u6c38\u53d1\u6751\u59d4\u4f1a"}, {"id" : "230828211211", "text" : "\u6cb3\u53d1\u6751\u59d4\u4f1a"}, {"id" : "230828211212", "text" : "\u8dc3\u8fdb\u6751\u59d4\u4f1a"}, {"id" : "230828211213", "text" : "\u88d5\u5fb7\u6751\u59d4\u4f1a"}, {"id" : "230828211214", "text" : "\u52a0\u5174\u6751\u59d4\u4f1a"}, {"id" : "230828211215", "text" : "\u524d\u8fdb\u6751\u59d4\u4f1a"}, {"id" : "230828211216", "text" : "\u5317\u534e\u6751\u59d4\u4f1a"}, {"id" : "230828211217", "text" : "\u88d5\u65b0\u6751\u59d4\u4f1a"}, {"id" : "230828211218", "text" : "\u5b8f\u56fe\u6751\u59d4\u4f1a"}, {"id" : "230828211219", "text" : "\u671d\u9633\u6751\u59d4\u4f1a"}, {"id" : "230828211220", "text" : "\u5357\u534e\u6751\u59d4\u4f1a"}, {"id" : "230828211509", "text" : "\u56fd\u8425\u826f\u79cd\u573a\u751f\u6d3b\u533a"}, {"id" : "230828211513", "text" : "\u56fd\u8425\u6c64\u539f\u53bf\u79cd\u755c\u573a"}]
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#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"header": {"type": "object", "properties": {"protoclVersion": {"type": "object", "properties": {"protocolVersion": {"type": "string"}}, "required": ["protocolVersion"]}}, "required": ["protoclVersion"]}, "body": {"type": "object", "properties": {"rx_obcTime": {"type": "string"}, "rx_recvCnt": {"type": "string"}, "rx_gpsDate": {"type": "string"}, "rx_gpsTime": {"type": "string"}, "rx_lat": {"type": "number"}, "rx_long": {"type": "number"}, "rx_alt": {"type": "string"}, "rx_temp": {"type": "string"}, "rx_airP": {"type": "string"}, "rx_bSize": {"type": "string"}, "tx_id": {"type": "string"}, "tx_cnt": {"type": "string"}, "payload": {"type": "integer"}, "tx_gpsTime": {"type": "string"}, "tx_lat": {"type": "number"}, "tx_long": {"type": "number"}, "tx_alt": {"type": "integer"}}, "required": ["rx_obcTime", "rx_recvCnt", "rx_gpsDate", "rx_gpsTime", "rx_lat", "rx_long", "rx_alt", "rx_temp", "rx_airP", "rx_bSize", "tx_id", "tx_cnt", "payload", "tx_gpsTime", "tx_lat", "tx_long", "tx_alt"]}}, "required": ["header", "body"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"header" : {"protoclVersion" : {"protocolVersion" : "0.0.2"}}, "body" : {"rx_obcTime" : "336209", "rx_recvCnt" : "52", "rx_gpsDate" : "10419", "rx_gpsTime" : "80324", "rx_lat" : 35.191468, "rx_long" : 139.647584, "rx_alt" : "30", "rx_temp" : "28.43", "rx_airP" : "100706", "rx_bSize" : "35", "tx_id" : "23", "tx_cnt" : "144", "payload" : 1, "tx_gpsTime" : "80314", "tx_lat" : 35.19146, "tx_long" : 139.647632, "tx_alt" : 38}}
json_instruct
{"type": "object", "properties": {"header": {"type": "object", "properties": {"protoclVersion": {"type": "object", "properties": {"protocolVersion": {"type": "string"}}, "required": ["protocolVersion"]}}, "required": ["protoclVersion"]}, "body": {"type": "object", "properties": {"rx_obcTime": {"type": "string"}, "rx_recvCnt": {"type": "string"}, "rx_gpsDate": {"type": "string"}, "rx_gpsTime": {"type": "string"}, "rx_lat": {"type": "number"}, "rx_long": {"type": "number"}, "rx_alt": {"type": "string"}, "rx_temp": {"type": "string"}, "rx_airP": {"type": "string"}, "rx_bSize": {"type": "string"}, "tx_id": {"type": "string"}, "tx_cnt": {"type": "string"}, "payload": {"type": "integer"}, "tx_gpsTime": {"type": "string"}, "tx_lat": {"type": "number"}, "tx_long": {"type": "number"}, "tx_alt": {"type": "integer"}}, "required": ["rx_obcTime", "rx_recvCnt", "rx_gpsDate", "rx_gpsTime", "rx_lat", "rx_long", "rx_alt", "rx_temp", "rx_airP", "rx_bSize", "tx_id", "tx_cnt", "payload", "tx_gpsTime", "tx_lat", "tx_long", "tx_alt"]}}, "required": ["header", "body"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"id": {"type": "integer"}, "surahNumber": {"type": "string"}, "ayatNumber": {"type": "string"}, "arabic": {"type": "string"}, "english": {"type": "string"}, "bengali": {"type": "string"}}, "required": ["id", "surahNumber", "ayatNumber", "arabic", "english", "bengali"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : 1826, "surahNumber" : "015", "ayatNumber" : "024", "arabic" : "\u0648\u064e\u0644\u064e\u0642\u064e\u062f\u0652 \u0639\u064e\u0644\u0650\u0645\u0652\u0646\u064e\u0627 \u0627\u0644\u0652\u0645\u064f\u0633\u0652\u062a\u064e\u0642\u0652\u062f\u0650\u0645\u0650\u064a\u0646\u064e \u0645\u0650\u0646\u0652\u0643\u064f\u0645\u0652 \u0648\u064e\u0644\u064e\u0642\u064e\u062f\u0652 \u0639\u064e\u0644\u0650\u0645\u0652\u0646\u064e\u0627 \u0627\u0644\u0652\u0645\u064f\u0633\u0652\u062a\u064e\u0623\u0652\u062e\u0650\u0631\u0650\u064a\u0646\u064e", "english" : "And indeed, We know the first generations of you who had passed away, and indeed, We know the present generations of you (mankind), and also those who will come afterwards.", "bengali" : "\u0986\u09ae\u09bf \u099c\u09c7\u09a8\u09c7 \u09b0\u09c7\u0996\u09c7\u099b\u09bf \u09a4\u09c7\u09be\u09ae\u09be\u09a6\u09c7\u09b0 \u0985\u0997\u09cd\u09b0\u0997\u09be\u09ae\u09c0\u09a6\u09c7\u09b0\u0995\u09c7 \u098f\u09ac\u0982 \u0986\u09ae\u09bf \u099c\u09c7\u09a8\u09c7 \u09b0\u09c7\u0996\u09c7\u099b\u09bf \u09aa\u09b6\u09cd\u099a\u09be\u09a6\u0997\u09be\u09ae\u09c0\u09a6\u09c7\u09b0\u0995\u09c7\u0964"}
json_instruct
{"type": "object", "properties": {"id": {"type": "integer"}, "surahNumber": {"type": "string"}, "ayatNumber": {"type": "string"}, "arabic": {"type": "string"}, "english": {"type": "string"}, "bengali": {"type": "string"}}, "required": ["id", "surahNumber", "ayatNumber", "arabic", "english", "bengali"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "author": {"type": "string"}, "description": {"type": "string"}, "dependencies": {"type": "object", "properties": {"colors": {"type": "string"}, "commander": {"type": "string"}, "express": {"type": "string"}, "irc": {"type": "string"}, "request": {"type": "string"}, "swig": {"type": "string"}, "forever": {"type": "string"}}, "required": ["colors", "commander", "express", "irc", "request", "swig", "forever"]}, "license": {"type": "string"}, "engines": {"type": "object", "properties": {"node": {"type": "string"}}, "required": ["node"]}, "devDependencies": {"type": "object", "properties": {"bower": {"type": "string"}}, "required": ["bower"]}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}}, "required": ["start"]}}, "required": ["name", "version", "author", "description", "dependencies", "license", "engines", "devDependencies", "scripts"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "ircbot", "version" : "0.0.1", "author" : "Gregg <gregg.thomason@asti-usa.com>", "description" : "IRCBOT", "dependencies" : {"colors" : "~0.6.2", "commander" : "~2.0.0", "express" : "^3.x.x", "irc" : "*", "request" : "^2.34.0", "swig" : "^1.3.2", "forever" : "^0.11.1"}, "license" : "", "engines" : {"node" : ">=0.6"}, "devDependencies" : {"bower" : "~1.3.3"}, "scripts" : {"start" : "./node_modules/.bin/forever -w index.js -n blahbot -j '#derp' -h localhost"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "author": {"type": "string"}, "description": {"type": "string"}, "dependencies": {"type": "object", "properties": {"colors": {"type": "string"}, "commander": {"type": "string"}, "express": {"type": "string"}, "irc": {"type": "string"}, "request": {"type": "string"}, "swig": {"type": "string"}, "forever": {"type": "string"}}, "required": ["colors", "commander", "express", "irc", "request", "swig", "forever"]}, "license": {"type": "string"}, "engines": {"type": "object", "properties": {"node": {"type": "string"}}, "required": ["node"]}, "devDependencies": {"type": "object", "properties": {"bower": {"type": "string"}}, "required": ["bower"]}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}}, "required": ["start"]}}, "required": ["name", "version", "author", "description", "dependencies", "license", "engines", "devDependencies", "scripts"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "type": {"type": "string"}, "ref": {"type": "string"}, "description": {"type": "string"}, "author": {"type": "string"}, "inputs": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "type": {"type": "string"}, "required": {"type": "boolean"}}, "required": ["name", "type", "required"]}}, "outputs": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "type": {"type": "string"}}, "required": ["name", "type"]}}}, "required": ["name", "version", "type", "ref", "description", "author", "inputs", "outputs"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "mashling-core", "version" : "0.0.1", "type" : "flogo:activity", "ref" : "github.com/TIBCOSoftware/mashling/internal/pkg/model/v2/activity/core", "description" : "mashling-core implements the routing logic for a Mashling instance.", "author" : "Jeffrey Bozek <jbozek@tibco.com>", "inputs" : [{"name" : "mashlingPayload", "type" : "object", "required" : false}, {"name" : "identifier", "type" : "string", "required" : true}, {"name" : "instance", "type" : "string", "required" : true}, {"name" : "routes", "type" : "array", "required" : true}, {"name" : "services", "type" : "array", "required" : true}], "outputs" : [{"name" : "result", "type" : "object"}]}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "type": {"type": "string"}, "ref": {"type": "string"}, "description": {"type": "string"}, "author": {"type": "string"}, "inputs": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "type": {"type": "string"}, "required": {"type": "boolean"}}, "required": ["name", "type", "required"]}}, "outputs": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "type": {"type": "string"}}, "required": ["name", "type"]}}}, "required": ["name", "version", "type", "ref", "description", "author", "inputs", "outputs"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"features": {"type": "array", "items": {"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": {"TIMESTAMP UTC": {"type": "string"}, "CLASSIFICATION": {"type": "string"}}, "required": ["TIMESTAMP UTC", "CLASSIFICATION"]}}, "required": ["type", "geometry", "properties"]}}, "type": {"type": "string"}}, "required": ["features", "type"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"features" : [{"type" : "Feature", "geometry" : {"type" : "Point", "coordinates" : [28.769060981274905, 41.61727491994609]}, "properties" : {"TIMESTAMP UTC" : "2021-02-23T08:58:42", "CLASSIFICATION" : "Flying plane"}}, {"type" : "Feature", "geometry" : {"type" : "Point", "coordinates" : [28.948702415537852, 41.536502233513026]}, "properties" : {"TIMESTAMP UTC" : "2021-02-23T08:58:42", "CLASSIFICATION" : "Flying plane"}}, {"type" : "Feature", "geometry" : {"type" : "Point", "coordinates" : [28.721013172509963, 41.482593877717875]}, "properties" : {"TIMESTAMP UTC" : "2021-02-23T08:58:57", "CLASSIFICATION" : "Flying plane"}}, {"type" : "Feature", "geometry" : {"type" : "Point", "coordinates" : [29.255993252191242, 41.44692451563342]}, "properties" : {"TIMESTAMP UTC" : "2021-02-23T08:58:57", "CLASSIFICATION" : "Flying plane"}}, {"type" : "Feature", "geometry" : {"type" : "Point", "coordinates" : [29.19790560278885, 41.29346539613656]}, "properties" : {"TIMESTAMP UTC" : "2021-02-23T08:58:57", "CLASSIFICATION" : "Flying plane"}}, {"type" : "Feature", "geometry" : {"type" : "Point", "coordinates" : [28.720774128685264, 41.006762790566036]}, "properties" : {"TIMESTAMP UTC" : "2021-02-23T08:58:57", "CLASSIFICATION" : "Flying plane"}}, {"type" : "Feature", "geometry" : {"type" : "Point", "coordinates" : [28.725076917529883, 41.26552289838274]}, "properties" : {"TIMESTAMP UTC" : "2021-02-23T08:58:57", "CLASSIFICATION" : "Flying plane"}}], "type" : "FeatureCollection"}
json_instruct
{"type": "object", "properties": {"features": {"type": "array", "items": {"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": {"TIMESTAMP UTC": {"type": "string"}, "CLASSIFICATION": {"type": "string"}}, "required": ["TIMESTAMP UTC", "CLASSIFICATION"]}}, "required": ["type", "geometry", "properties"]}}, "type": {"type": "string"}}, "required": ["features", "type"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"modal.label": {"type": "string"}, "searchButton.title": {"type": "string"}, "meta.pluginTitle": {"type": "string"}}, "required": ["modal.label", "searchButton.title", "meta.pluginTitle"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"modal.label" : "Select Vendor", "searchButton.title" : "Find Vendor", "meta.pluginTitle" : "Organizaciones"}
json_instruct
{"type": "object", "properties": {"modal.label": {"type": "string"}, "searchButton.title": {"type": "string"}, "meta.pluginTitle": {"type": "string"}}, "required": ["modal.label", "searchButton.title", "meta.pluginTitle"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "homepage": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "files": {"type": "array", "items": {"type": "string"}}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "types": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"@types/node": {"type": "string"}, "ava": {"type": "string"}, "typescript": {"type": "string"}}, "required": ["@types/node", "ava", "typescript"]}, "scripts": {"type": "object", "properties": {"build": {"type": "string"}, "test": {"type": "string"}}, "required": ["build", "test"]}, "author": {"type": "string"}, "license": {"type": "string"}}, "required": ["name", "version", "description", "main", "homepage", "keywords", "files", "repository", "types", "devDependencies", "scripts", "author", "license"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "minta", "version" : "3.1.7", "description" : "Simple, effective, functional pattern matcher", "main" : "dist/minta.js", "homepage" : "https://github.com/jahan-addison/minta", "keywords" : ["typescript", "javascript", "pattern", "matching", "functional", "parser", "parsing"], "files" : ["minta.d.ts", "dist/*.js"], "repository" : {"type" : "git", "url" : "git+https://github.com/jahan-addison/minta.git"}, "types" : "./minta.d.ts", "devDependencies" : {"@types/node" : "^10.9.4", "ava" : "^0.19.1", "typescript" : "^2.2.2"}, "scripts" : {"build" : "./node_modules/typescript/bin/tsc", "test" : "./node_modules/typescript/bin/tsc && ./node_modules/ava/cli.js dist/test.js"}, "author" : "Jahan Addison", "license" : "Apache-2.0"}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "homepage": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "files": {"type": "array", "items": {"type": "string"}}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "types": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"@types/node": {"type": "string"}, "ava": {"type": "string"}, "typescript": {"type": "string"}}, "required": ["@types/node", "ava", "typescript"]}, "scripts": {"type": "object", "properties": {"build": {"type": "string"}, "test": {"type": "string"}}, "required": ["build", "test"]}, "author": {"type": "string"}, "license": {"type": "string"}}, "required": ["name", "version", "description", "main", "homepage", "keywords", "files", "repository", "types", "devDependencies", "scripts", "author", "license"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"title": {"type": "string"}, "set": {"type": "string"}, "kind": {"type": "string"}, "culture": {"type": "string"}, "twilight": {"type": "string"}, "card_type": {"type": "string"}, "strength": {"type": "string"}, "game_text": {"type": "string"}, "rarity": {"type": "string"}, "notes": {"type": "string"}, "number": {"type": "string"}}, "required": ["title", "set", "kind", "culture", "twilight", "card_type", "strength", "game_text", "rarity", "notes", "number"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"title" : "Fury of the Evil Army", "set" : "Treachery & Deceit", "kind" : "Shadow", "culture" : "Uruk-Hai", "twilight" : "0", "card_type" : "Condition", "strength" : "+1", "game_text" : "Bearer must be an [Uruk-hai] minion. Each time bearer wins a skirmish, you may choose one", "rarity" : "C", "notes" : "Scan courtesy of Shieldmaiden.", "number" : "18C116"}
json_instruct
{"type": "object", "properties": {"title": {"type": "string"}, "set": {"type": "string"}, "kind": {"type": "string"}, "culture": {"type": "string"}, "twilight": {"type": "string"}, "card_type": {"type": "string"}, "strength": {"type": "string"}, "game_text": {"type": "string"}, "rarity": {"type": "string"}, "notes": {"type": "string"}, "number": {"type": "string"}}, "required": ["title", "set", "kind", "culture", "twilight", "card_type", "strength", "game_text", "rarity", "notes", "number"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"h": {"type": "array", "items": {"type": "object", "properties": {"d": {"type": "array", "items": {"type": "object", "properties": {"e": {"type": "array", "items": {"type": "string"}}, "f": {"type": "string"}}, "required": ["e", "f"]}}}, "required": ["d"]}}, "tag": {"type": "string"}, "stem": {"type": "string"}, "t": {"type": "string"}}, "required": ["h", "tag", "stem", "t"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"h" : [{"d" : [{"e" : ["\ufff9`Caciwaciwas~ `sanay~ `ko~ `kero~ `nangra~.\ufffa\ufffb\u4ed6\u5011\u7684\u821e\u4ea4\u932f\u8457\u3002", "\ufff9`Caciwaciwas~ `sanay~ `ko~ `ca'ang~ `no~ `kilang~.\ufffa\ufffb\u6a39\u679d\u4e92\u76f8\u4ea4\u53c9\u3002"], "f" : "(\u8a31\u591a\u6a39\u679d)\u4e92\u76f8\u4ea4\u53c9\u3001\u4ea4\u932f\u3002"}]}], "tag" : "[\u758a 2]", "stem" : "ciwas", "t" : "caciwaciwas"}
json_instruct
{"type": "object", "properties": {"h": {"type": "array", "items": {"type": "object", "properties": {"d": {"type": "array", "items": {"type": "object", "properties": {"e": {"type": "array", "items": {"type": "string"}}, "f": {"type": "string"}}, "required": ["e", "f"]}}}, "required": ["d"]}}, "tag": {"type": "string"}, "stem": {"type": "string"}, "t": {"type": "string"}}, "required": ["h", "tag", "stem", "t"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"Time": {"type": "string"}, "Temp": {"type": "number"}, "RelHum": {"type": "integer"}, "WindSpeed": {"type": "number"}, "WindDir": {"type": "integer"}}, "required": ["Time", "Temp", "RelHum", "WindSpeed", "WindDir"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"Time" : "2020-11-17T16:00:00Z", "Temp" : 19.5, "RelHum" : 65, "WindSpeed" : 1.9, "WindDir" : 331}
json_instruct
{"type": "object", "properties": {"Time": {"type": "string"}, "Temp": {"type": "number"}, "RelHum": {"type": "integer"}, "WindSpeed": {"type": "number"}, "WindDir": {"type": "integer"}}, "required": ["Time", "Temp", "RelHum", "WindSpeed", "WindDir"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"variants": {"type": "object", "properties": {"": {"type": "object", "properties": {"model": {"type": "string"}}, "required": ["model"]}}, "required": [""]}}, "required": ["variants"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"variants" : {"" : {"model" : "firstmod:block/duplicator"}}}
json_instruct
{"type": "object", "properties": {"variants": {"type": "object", "properties": {"": {"type": "object", "properties": {"model": {"type": "string"}}, "required": ["model"]}}, "required": [""]}}, "required": ["variants"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"(0, 0, 2)": {"type": "string"}, "(1, 0, 1)": {"type": "string"}, "(1, 1, 1)": {"type": "string"}, "(2, 0, 1)": {"type": "string"}, "(2, 1, 1)": {"type": "string"}, "(3, 0, 1)": {"type": "string"}, "(3, 1, 1)": {"type": "string"}, "(4, 0, 1)": {"type": "string"}, "(4, 1, 1)": {"type": "string"}, "(5, 0, 1)": {"type": "string"}, "(5, 1, 1)": {"type": "string"}, "(6, 0, 1)": {"type": "string"}, "(6, 1, 1)": {"type": "string"}, "(7, 0, 2)": {"type": "string"}, "(8, 0, 1)": {"type": "string"}, "(8, 1, 1)": {"type": "string"}, "(9, 0, 1)": {"type": "string"}, "(9, 1, 1)": {"type": "string"}, "(10, 0, 1)": {"type": "string"}, "(10, 1, 1)": {"type": "string"}, "(11, 0, 1)": {"type": "string"}, "(11, 1, 1)": {"type": "string"}, "(12, 0, 1)": {"type": "string"}, "(12, 1, 1)": {"type": "string"}}, "required": ["(0, 0, 2)", "(1, 0, 1)", "(1, 1, 1)", "(2, 0, 1)", "(2, 1, 1)", "(3, 0, 1)", "(3, 1, 1)", "(4, 0, 1)", "(4, 1, 1)", "(5, 0, 1)", "(5, 1, 1)", "(6, 0, 1)", "(6, 1, 1)", "(7, 0, 2)", "(8, 0, 1)", "(8, 1, 1)", "(9, 0, 1)", "(9, 1, 1)", "(10, 0, 1)", "(10, 1, 1)", "(11, 0, 1)", "(11, 1, 1)", "(12, 0, 1)", "(12, 1, 1)"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"(0, 0, 2)" : "Erykah Badu", "(1, 0, 1)" : "Born", "(1, 1, 1)" : "Erica Abi Wright, (1971-02-26) February 26, 1971 (age 47), Dallas, Texas, U.S.", "(2, 0, 1)" : "Residence", "(2, 1, 1)" : "Dallas, Texas, U.S.", "(3, 0, 1)" : "Occupation", "(3, 1, 1)" : "Singer, songwriter, actress", "(4, 0, 1)" : "Years active", "(4, 1, 1)" : "1994-present", "(5, 0, 1)" : "Partner(s)", "(5, 1, 1)" : "Jay Electronica (2004-2009), Carl Jones (2013-2018)", "(6, 0, 1)" : "Children", "(6, 1, 1)" : "3", "(7, 0, 2)" : "Musical career", "(8, 0, 1)" : "Genres", "(8, 1, 1)" : "Neo soul, R&B, experimental R&B", "(9, 0, 1)" : "Instruments", "(9, 1, 1)" : "Vocals", "(10, 0, 1)" : "Labels", "(10, 1, 1)" : "Kedar, Universal, Motown, Control Freaq", "(11, 0, 1)" : "Associated acts", "(11, 1, 1)" : "Soulquarians, Andr\u00e9 3000, Common, D.R.A.M., Jay Electronica, Flying Lotus, Madlib, Thundercat", "(12, 0, 1)" : "Website", "(12, 1, 1)" : "Erykah-Badu.com"}
json_instruct
{"type": "object", "properties": {"(0, 0, 2)": {"type": "string"}, "(1, 0, 1)": {"type": "string"}, "(1, 1, 1)": {"type": "string"}, "(2, 0, 1)": {"type": "string"}, "(2, 1, 1)": {"type": "string"}, "(3, 0, 1)": {"type": "string"}, "(3, 1, 1)": {"type": "string"}, "(4, 0, 1)": {"type": "string"}, "(4, 1, 1)": {"type": "string"}, "(5, 0, 1)": {"type": "string"}, "(5, 1, 1)": {"type": "string"}, "(6, 0, 1)": {"type": "string"}, "(6, 1, 1)": {"type": "string"}, "(7, 0, 2)": {"type": "string"}, "(8, 0, 1)": {"type": "string"}, "(8, 1, 1)": {"type": "string"}, "(9, 0, 1)": {"type": "string"}, "(9, 1, 1)": {"type": "string"}, "(10, 0, 1)": {"type": "string"}, "(10, 1, 1)": {"type": "string"}, "(11, 0, 1)": {"type": "string"}, "(11, 1, 1)": {"type": "string"}, "(12, 0, 1)": {"type": "string"}, "(12, 1, 1)": {"type": "string"}}, "required": ["(0, 0, 2)", "(1, 0, 1)", "(1, 1, 1)", "(2, 0, 1)", "(2, 1, 1)", "(3, 0, 1)", "(3, 1, 1)", "(4, 0, 1)", "(4, 1, 1)", "(5, 0, 1)", "(5, 1, 1)", "(6, 0, 1)", "(6, 1, 1)", "(7, 0, 2)", "(8, 0, 1)", "(8, 1, 1)", "(9, 0, 1)", "(9, 1, 1)", "(10, 0, 1)", "(10, 1, 1)", "(11, 0, 1)", "(11, 1, 1)", "(12, 0, 1)", "(12, 1, 1)"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "src": {"type": "string"}}, "required": ["name", "src"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"name" : "Kennet Radio", "src" : "http://stream.kennetradio.com:80/128.mp3?t=1526291523"}, {"name" : "The Breeze", "src" : "http://stream2.radiomonitor.com:80/Breeze-Newbury-128?t=1526291524"}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "src": {"type": "string"}}, "required": ["name", "src"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"id": {"type": "integer"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"src:alt_label": {"type": "string"}, "src:geom": {"type": "string"}, "wof:geomhash": {"type": "string"}, "wof:id": {"type": "integer"}, "wof:repo": {"type": "string"}}, "required": ["src:alt_label", "src:geom", "wof:geomhash", "wof:id", "wof:repo"]}, "bbox": {"type": "array", "items": {"type": "number"}}, "geometry": {"type": "object", "properties": {"coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}, "type": {"type": "string"}}, "required": ["coordinates", "type"]}}, "required": ["id", "type", "properties", "bbox", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : 404385047, "type" : "Feature", "properties" : {"src:alt_label" : "quattroshapes", "src:geom" : "quattroshapes", "wof:geomhash" : "7443c575a1a6565a11452f5fe533fc8c", "wof:id" : 404385047, "wof:repo" : "whosonfirst-data-admin-fr"}, "bbox" : [4.04983697419842, 43.73846425655751, 4.09923558582998, 43.76770869597834], "geometry" : {"coordinates" : [[[4.0560141010069, 43.73846425655751], [4.04983697419842, 43.74206969651965], [4.06218031316928, 43.75170528846695], [4.06724825411265, 43.76449790450668], [4.08386188019257, 43.76770869597834], [4.09110168333339, 43.76379365289071], [4.0926165063319, 43.75403206535437], [4.09923558582998, 43.74959175251297], [4.08642888656292, 43.74070288485846], [4.06864785453038, 43.74169775386959], [4.0560141010069, 43.73846425655751]]], "type" : "Polygon"}}
json_instruct
{"type": "object", "properties": {"id": {"type": "integer"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"src:alt_label": {"type": "string"}, "src:geom": {"type": "string"}, "wof:geomhash": {"type": "string"}, "wof:id": {"type": "integer"}, "wof:repo": {"type": "string"}}, "required": ["src:alt_label", "src:geom", "wof:geomhash", "wof:id", "wof:repo"]}, "bbox": {"type": "array", "items": {"type": "number"}}, "geometry": {"type": "object", "properties": {"coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}, "type": {"type": "string"}}, "required": ["coordinates", "type"]}}, "required": ["id", "type", "properties", "bbox", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "summary": {"type": "string"}, "description": {"type": "string"}, "homepage": {"type": "string"}, "license": {"type": "string"}, "authors": {"type": "object", "properties": {"John McKerrell": {"type": "string"}}, "required": ["John McKerrell"]}, "source": {"type": "object", "properties": {"git": {"type": "string"}, "tag": {"type": "string"}}, "required": ["git", "tag"]}, "source_files": {"type": "string"}, "dependencies": {"type": "object", "properties": {"RegexKitLite": {"type": "array", "items": {"type": "string"}}}, "required": ["RegexKitLite"]}}, "required": ["name", "version", "summary", "description", "homepage", "license", "authors", "source", "source_files", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "NSString-KeyPathReplace", "version" : "0.1.0", "summary" : "Simple Objective C NSString category for replacing key path references with values from a dictionary.", "description" : " A simple NSString cateogory that gives you the ability to interpolate values\n into a string taken from a given NSDictionary. It also allows you to specify\n default values to be used if the dictionary does not contain a value for a\n keypath. Default values can be provided inline with the keypath or in a\n separate dictionary.\n", "homepage" : "https://github.com/johnmckerrell/NSString-KeyPathReplace", "license" : "MIT", "authors" : {"John McKerrell" : "john@mckerrell.net"}, "source" : {"git" : "https://github.com/johnmckerrell/NSString-KeyPathReplace.git", "tag" : "0.1.0"}, "source_files" : "NSString-KeyPathReplace/*", "dependencies" : {"RegexKitLite" : ["~> 4.0"]}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "summary": {"type": "string"}, "description": {"type": "string"}, "homepage": {"type": "string"}, "license": {"type": "string"}, "authors": {"type": "object", "properties": {"John McKerrell": {"type": "string"}}, "required": ["John McKerrell"]}, "source": {"type": "object", "properties": {"git": {"type": "string"}, "tag": {"type": "string"}}, "required": ["git", "tag"]}, "source_files": {"type": "string"}, "dependencies": {"type": "object", "properties": {"RegexKitLite": {"type": "array", "items": {"type": "string"}}}, "required": ["RegexKitLite"]}}, "required": ["name", "version", "summary", "description", "homepage", "license", "authors", "source", "source_files", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"Time": {"type": "string"}, "Temp": {"type": "number"}, "RelHum": {"type": "integer"}, "WindSpeed": {"type": "number"}, "WindDir": {"type": "integer"}}, "required": ["Time", "Temp", "RelHum", "WindSpeed", "WindDir"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"Time" : "2021-08-12T12:00:00Z", "Temp" : 29.5, "RelHum" : 46, "WindSpeed" : 7.1, "WindDir" : 293}
json_instruct
{"type": "object", "properties": {"Time": {"type": "string"}, "Temp": {"type": "number"}, "RelHum": {"type": "integer"}, "WindSpeed": {"type": "number"}, "WindDir": {"type": "integer"}}, "required": ["Time", "Temp", "RelHum", "WindSpeed", "WindDir"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"Hello to you $userFirstName! Very nice to have you with us. Let me tell a little bit about moi.": {"type": "string"}, "So, like I said, my name is Fran\u00e7ois and I'm here to help you out with any questions you have about food and diet!": {"type": "string"}, "Oh, Fran\u00e7ois loves to talk about food. Eating food and cooking food! What about you, do you like to cook?": {"type": "string"}, "Yes, I like cooking.": {"type": "string"}, "I don't really like cooking.": {"type": "string"}, "I see you and me will get along just fine!": {"type": "string"}, "I see I have some work to do... but not to worry, I will teach you a thing or two in the coming weeks!": {"type": "string"}, "Anyway, come talk to me if you want to discuss recipes, or if you have any questions about dieting.": {"type": "string"}, "Or just for a chat of course, I always love to chat about... food, cheese, recipes... hmmm, anything really!": {"type": "string"}, "Okay, thank you Fran\u00e7ois!": {"type": "string"}, "Adieu! Talk to you later!": {"type": "string"}}, "required": ["Hello to you $userFirstName! Very nice to have you with us. Let me tell a little bit about moi.", "So, like I said, my name is Fran\u00e7ois and I'm here to help you out with any questions you have about food and diet!", "Oh, Fran\u00e7ois loves to talk about food. Eating food and cooking food! What about you, do you like to cook?", "Yes, I like cooking.", "I don't really like cooking.", "I see you and me will get along just fine!", "I see I have some work to do... but not to worry, I will teach you a thing or two in the coming weeks!", "Anyway, come talk to me if you want to discuss recipes, or if you have any questions about dieting.", "Or just for a chat of course, I always love to chat about... food, cheese, recipes... hmmm, anything really!", "Okay, thank you Fran\u00e7ois!", "Adieu! Talk to you later!"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"Hello to you $userFirstName! Very nice to have you with us. Let me tell a little bit about moi." : "Hallo daar, $userFirstName! Leuk om je te ontmoeten. Ik zal eerst een beetje over moi vertellen.", "So, like I said, my name is Fran\u00e7ois and I'm here to help you out with any questions you have about food and diet!" : "Zoals ik zei, mijn naam is Fran\u00e7ois en ik ben hier om je te helpen met al je vragen over voeding en dieet.", "Oh, Fran\u00e7ois loves to talk about food. Eating food and cooking food! What about you, do you like to cook?" : "Oh, Fran\u00e7ois is dol op praten over eten. Eten, maar ook koken. Vind je het ook leuk om te koken?", "Yes, I like cooking." : "Ja, ik vind koken leuk.", "I don't really like cooking." : "Ik hou niet zo van koken.", "I see you and me will get along just fine!" : "Ik zie dat we het prima met elkaar kunnen vinden!", "I see I have some work to do... but not to worry, I will teach you a thing or two in the coming weeks!" : "Ik zie dat ik wel wat werk te doen heb... Maar maak je geen zorgen, ik zal je het een en ander leren in de komende weken.", "Anyway, come talk to me if you want to discuss recipes, or if you have any questions about dieting." : "In ieder geval, je bent altijd welkom om te praten over recepten, of als je een vraag hebt over jouw dieet.", "Or just for a chat of course, I always love to chat about... food, cheese, recipes... hmmm, anything really!" : "Of gewoon voor een kletspraatje natuurlijk, ik ben dol op praten over... eten, kaas, recepten... hmmm, eigenlijk alles wel!", "Okay, thank you Fran\u00e7ois!" : "Ok\u00e9, dankjewel Fran\u00e7ois!", "Adieu! Talk to you later!" : "Adieu! Ik spreek je snel!"}
json_instruct
{"type": "object", "properties": {"Hello to you $userFirstName! Very nice to have you with us. Let me tell a little bit about moi.": {"type": "string"}, "So, like I said, my name is Fran\u00e7ois and I'm here to help you out with any questions you have about food and diet!": {"type": "string"}, "Oh, Fran\u00e7ois loves to talk about food. Eating food and cooking food! What about you, do you like to cook?": {"type": "string"}, "Yes, I like cooking.": {"type": "string"}, "I don't really like cooking.": {"type": "string"}, "I see you and me will get along just fine!": {"type": "string"}, "I see I have some work to do... but not to worry, I will teach you a thing or two in the coming weeks!": {"type": "string"}, "Anyway, come talk to me if you want to discuss recipes, or if you have any questions about dieting.": {"type": "string"}, "Or just for a chat of course, I always love to chat about... food, cheese, recipes... hmmm, anything really!": {"type": "string"}, "Okay, thank you Fran\u00e7ois!": {"type": "string"}, "Adieu! Talk to you later!": {"type": "string"}}, "required": ["Hello to you $userFirstName! Very nice to have you with us. Let me tell a little bit about moi.", "So, like I said, my name is Fran\u00e7ois and I'm here to help you out with any questions you have about food and diet!", "Oh, Fran\u00e7ois loves to talk about food. Eating food and cooking food! What about you, do you like to cook?", "Yes, I like cooking.", "I don't really like cooking.", "I see you and me will get along just fine!", "I see I have some work to do... but not to worry, I will teach you a thing or two in the coming weeks!", "Anyway, come talk to me if you want to discuss recipes, or if you have any questions about dieting.", "Or just for a chat of course, I always love to chat about... food, cheese, recipes... hmmm, anything really!", "Okay, thank you Fran\u00e7ois!", "Adieu! Talk to you later!"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"}
["markdown-ui"]
json_instruct
{"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"username": {"type": "string"}, "additional_items": {"type": "array", "items": {}}, "items": {"type": "object", "properties": {"1": {"type": "string"}, "3": {"type": "string"}, "2": {"type": "string"}, "5": {"type": "string"}, "4": {"type": "string"}}, "required": ["1", "3", "2", "5", "4"]}, "tweet_id": {"type": "string"}, "timespent": {"type": "number"}, "starttime": {"type": "number"}, "itemcount": {"type": "string"}, "savingtime": {"type": "number"}}, "required": ["username", "additional_items", "items", "tweet_id", "timespent", "starttime", "itemcount", "savingtime"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"username" : "user07", "additional_items" : [], "items" : {"1" : "neutral", "3" : "neutral", "2" : "neutral", "5" : "neutral", "4" : "neutral"}, "tweet_id" : "578179469426425856", "timespent" : 78.033686161041, "starttime" : 1429742091.503, "itemcount" : "5", "savingtime" : 1429742169.5367}
json_instruct
{"type": "object", "properties": {"username": {"type": "string"}, "additional_items": {"type": "array", "items": {}}, "items": {"type": "object", "properties": {"1": {"type": "string"}, "3": {"type": "string"}, "2": {"type": "string"}, "5": {"type": "string"}, "4": {"type": "string"}}, "required": ["1", "3", "2", "5", "4"]}, "tweet_id": {"type": "string"}, "timespent": {"type": "number"}, "starttime": {"type": "number"}, "itemcount": {"type": "string"}, "savingtime": {"type": "number"}}, "required": ["username", "additional_items", "items", "tweet_id", "timespent", "starttime", "itemcount", "savingtime"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"index": {"type": "integer"}, "hash": {"type": "integer"}, "artDyeHash": {"type": "integer"}, "redacted": {"type": "boolean"}, "dyeManifestHash": {"type": "integer"}, "blacklisted": {"type": "boolean"}}, "required": ["index", "hash", "artDyeHash", "redacted", "dyeManifestHash", "blacklisted"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"index" : 1629, "hash" : 266867714, "artDyeHash" : 266867714, "redacted" : false, "dyeManifestHash" : 34178562, "blacklisted" : false}
json_instruct
{"type": "object", "properties": {"index": {"type": "integer"}, "hash": {"type": "integer"}, "artDyeHash": {"type": "integer"}, "redacted": {"type": "boolean"}, "dyeManifestHash": {"type": "integer"}, "blacklisted": {"type": "boolean"}}, "required": ["index", "hash", "artDyeHash", "redacted", "dyeManifestHash", "blacklisted"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"ledgerFY": {"type": "array", "items": {}}, "totalRecords": {"type": "integer"}}, "required": ["ledgerFY", "totalRecords"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"ledgerFY" : [], "totalRecords" : 0}
json_instruct
{"type": "object", "properties": {"ledgerFY": {"type": "array", "items": {}}, "totalRecords": {"type": "integer"}}, "required": ["ledgerFY", "totalRecords"], "$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"}, "main": {"type": "string"}, "license": {"type": "string"}, "scripts": {"type": "object", "properties": {"prep:arc": {"type": "string"}, "build": {"type": "string"}, "package:release": {"type": "string"}, "release": {"type": "string"}}, "required": ["prep:arc", "build", "package:release", "release"]}, "dependencies": {"type": "object", "properties": {"bn.js": {"type": "string"}, "csv": {"type": "string"}, "csv-stringify": {"type": "string"}, "formstate": {"type": "string"}, "web3": {"type": "string"}, "jsonschema": {"type": "string"}}, "required": ["bn.js", "csv", "csv-stringify", "formstate", "web3", "jsonschema"]}, "devDependencies": {"type": "object", "properties": {"@daostack/migration": {"type": "string"}, "@types/bn.js": {"type": "string"}, "@types/node": {"type": "string"}, "@types/web3": {"type": "string"}, "copyfiles": {"type": "string"}, "ncp": {"type": "string"}, "rimraf": {"type": "string"}, "typescript": {"type": "string"}}, "required": ["@daostack/migration", "@types/bn.js", "@types/node", "@types/web3", "copyfiles", "ncp", "rimraf", "typescript"]}, "peerDependencies": {"type": "object", "properties": {"mobx": {"type": "string"}}, "required": ["mobx"]}}, "required": ["name", "version", "main", "license", "scripts", "dependencies", "devDependencies", "peerDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "@dorgtech/daocreator-lib", "version" : "1.0.1", "main" : "dist/index.js", "license" : "MIT", "scripts" : {"prep:arc" : "node scripts/prepArc.js", "build" : "rimraf ./dist && tsc && copyfiles -u 1 src/**/*.js src/**/*.json dist", "package:release" : "rm -rf ./package && mkdir ./package && cp -r ./dist/ ./package/dist && cp README.md package.json ./package && cp -r ./src ./package/src", "release" : "yarn build && yarn package:release && yarn publish ./package --access public"}, "dependencies" : {"bn.js" : "^5.0.0", "csv" : "^5.1.2", "csv-stringify" : "^5.3.3", "formstate" : "^1.3.0", "web3" : "1.2.4", "jsonschema" : "^1.2.5"}, "devDependencies" : {"@daostack/migration" : "0.0.1-rc.36-v5", "@types/bn.js" : "^4.11.5", "@types/node" : "^10.12.18", "@types/web3" : "1.0.19", "copyfiles" : "2.1.1", "ncp" : "2.0.0", "rimraf" : "^3.0.0", "typescript" : "3.4.5"}, "peerDependencies" : {"mobx" : ">=5.11.0"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "main": {"type": "string"}, "license": {"type": "string"}, "scripts": {"type": "object", "properties": {"prep:arc": {"type": "string"}, "build": {"type": "string"}, "package:release": {"type": "string"}, "release": {"type": "string"}}, "required": ["prep:arc", "build", "package:release", "release"]}, "dependencies": {"type": "object", "properties": {"bn.js": {"type": "string"}, "csv": {"type": "string"}, "csv-stringify": {"type": "string"}, "formstate": {"type": "string"}, "web3": {"type": "string"}, "jsonschema": {"type": "string"}}, "required": ["bn.js", "csv", "csv-stringify", "formstate", "web3", "jsonschema"]}, "devDependencies": {"type": "object", "properties": {"@daostack/migration": {"type": "string"}, "@types/bn.js": {"type": "string"}, "@types/node": {"type": "string"}, "@types/web3": {"type": "string"}, "copyfiles": {"type": "string"}, "ncp": {"type": "string"}, "rimraf": {"type": "string"}, "typescript": {"type": "string"}}, "required": ["@daostack/migration", "@types/bn.js", "@types/node", "@types/web3", "copyfiles", "ncp", "rimraf", "typescript"]}, "peerDependencies": {"type": "object", "properties": {"mobx": {"type": "string"}}, "required": ["mobx"]}}, "required": ["name", "version", "main", "license", "scripts", "dependencies", "devDependencies", "peerDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "array", "items": {"type": "object", "properties": {"number": {"type": "integer"}, "id": {"type": "string"}, "name": {"type": "string"}, "snippet": {"type": "string"}}, "required": ["number", "id", "name", "snippet"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"number" : 1, "id" : "able-bodied", "name" : "Able-bodied", "snippet" : "We assume that users are not physically disabled in any way that would interfere with the process."}, {"number" : 2, "id" : "intelligent", "name" : "Average Intelligence", "snippet" : "We assume that users are of average intelligence or greater."}, {"number" : 3, "id" : "measure", "name" : "Understands how to take a fluid measurement", "snippet" : "We assume that the user can use a measuring device (such as a measuring cup) for measuring fluids."}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"number": {"type": "integer"}, "id": {"type": "string"}, "name": {"type": "string"}, "snippet": {"type": "string"}}, "required": ["number", "id", "name", "snippet"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"Name": {"type": "string"}, "Registry ID": {"type": "string"}, "Class": {"type": "string"}}, "required": ["Name", "Registry ID", "Class"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"Name" : "calpod", "Registry ID" : "lycanitesmobs:calpod", "Class" : "com.lycanitesmobs.core.entity.creature.EntityCalpod"}
json_instruct
{"type": "object", "properties": {"Name": {"type": "string"}, "Registry ID": {"type": "string"}, "Class": {"type": "string"}}, "required": ["Name", "Registry ID", "Class"], "$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"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}}, "autoload": {"type": "object", "properties": {"psr-0": {"type": "object", "properties": {"SimpleValidator\\": {"type": "string"}}, "required": ["SimpleValidator\\"]}}, "required": ["psr-0"]}, "require": {"type": "object", "properties": {"php": {"type": "string"}}, "required": ["php"]}, "license": {"type": "string"}}, "required": ["name", "description", "authors", "autoload", "require", "license"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "simple-validator/simple-validator", "description" : "Yet another validation class for PHP", "authors" : [{"name" : "Can Gelis", "email" : "geliscan@gmail.com"}], "autoload" : {"psr-0" : {"SimpleValidator\\" : "src/"}}, "require" : {"php" : ">=5.3.0"}, "license" : "MIT"}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}}, "autoload": {"type": "object", "properties": {"psr-0": {"type": "object", "properties": {"SimpleValidator\\": {"type": "string"}}, "required": ["SimpleValidator\\"]}}, "required": ["psr-0"]}, "require": {"type": "object", "properties": {"php": {"type": "string"}}, "required": ["php"]}, "license": {"type": "string"}}, "required": ["name", "description", "authors", "autoload", "require", "license"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"content": {"type": "string"}, "entities": {"type": "array", "items": {"type": "object", "properties": {"offset": {"type": "integer"}, "type": {"type": "string"}, "id": {"type": "integer"}, "entity": {"type": "string"}}, "required": ["offset", "type", "id", "entity"]}}, "topics": {"type": "array", "items": {"type": "object", "properties": {"topic": {"type": "string"}, "id": {"type": "integer"}}, "required": ["topic", "id"]}}, "tweet_id": {"type": "string"}}, "required": ["content", "entities", "topics", "tweet_id"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"content" : "Imagine if all Osborne's figures said \"brillion\" instead of \"billion\" & we were forced into adopting an unsustainable fish currency #bbcqt", "entities" : [{"offset" : 0, "type" : "ne", "id" : 2, "entity" : "imagine"}, {"entity" : "currency", "type" : "topic keyword", "id" : 3, "offset" : 123}, {"entity" : "osborne", "type" : "topic keyword", "id" : 4, "offset" : 15}], "topics" : [{"topic" : "economy", "id" : 1}], "tweet_id" : "581229698522443776"}
json_instruct
{"type": "object", "properties": {"content": {"type": "string"}, "entities": {"type": "array", "items": {"type": "object", "properties": {"offset": {"type": "integer"}, "type": {"type": "string"}, "id": {"type": "integer"}, "entity": {"type": "string"}}, "required": ["offset", "type", "id", "entity"]}}, "topics": {"type": "array", "items": {"type": "object", "properties": {"topic": {"type": "string"}, "id": {"type": "integer"}}, "required": ["topic", "id"]}}, "tweet_id": {"type": "string"}}, "required": ["content", "entities", "topics", "tweet_id"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"topic": {"type": "string"}, "category": {"type": "string"}, "attachments": {"type": "array", "items": {}}, "created_by_name": {"type": "string"}, "created_at": {"type": "string"}, "body": {"type": "string"}, "id": {"type": "string"}, "created_by": {"type": "string"}}, "required": ["topic", "category", "attachments", "created_by_name", "created_at", "body", "id", "created_by"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"topic" : "BRDF website updated", "category" : "radiance-dev", "attachments" : [], "created_by_name" : "Peter Apian-Bennewitz", "created_at" : "April 12, 2012 at 05:18AM", "body" : "Hi folks,\n\n\nquick note to those interested in BRDF/BSDF measured data:\n\n\nThe collection of BRDF data at \nhttp://www.pab.eu/gonio-photometer/demodata/bme/ got an updated set of \nvisualisations of the out-of-plane data, using a newer version of my \nmountain tool. The new one is more quantitative, which should help \ngetting the message to folks not so familiar with BRDFs. Feedback as to \nthat aim is appreciated, on- or off-list.\n\n\nFor those newer on the list, here's last year's talk which mentions the \nbme data: \nhttp://www.pab-opto.de/radiance/vortrag_september_2011/brtf-talk-2011.web.pdf \n\n\n\n\nAnd while we're at it: Anyone actually used that data to motivate or \ntest other BSDF models in Radiance (or other renderers) ?\n\n\nthanks, best\nPeter\n\n\n\n\npab advanced technologies Ltd, http://www.pab.eu\n___\n<sup>Automatically generated content from [radiance mailing-list](https://radiance-online.org/pipermail/radiance-dev/2012-April/001200.html).</sup>", "id" : "radiance-dev_001200", "created_by" : "Peter_Apian-Bennewitz"}
json_instruct
{"type": "object", "properties": {"topic": {"type": "string"}, "category": {"type": "string"}, "attachments": {"type": "array", "items": {}}, "created_by_name": {"type": "string"}, "created_at": {"type": "string"}, "body": {"type": "string"}, "id": {"type": "string"}, "created_by": {"type": "string"}}, "required": ["topic", "category", "attachments", "created_by_name", "created_at", "body", "id", "created_by"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"latest_version": {"type": "array", "items": {"type": "string"}}, "meta": {"type": "object", "properties": {"description": {"type": "string"}, "homepage": {"type": "string"}, "license": {"type": "string"}}, "required": ["description", "homepage", "license"]}, "versions": {"type": "object", "properties": {"0.1": {"type": "object", "properties": {"sha256": {"type": "string"}, "url": {"type": "string"}}, "required": ["sha256", "url"]}}, "required": ["0.1"]}}, "required": ["latest_version", "meta", "versions"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"latest_version" : ["0.1"], "meta" : {"description" : "A Package for sparse coding using DNNs", "homepage" : "https://github.com/Chunmun91/scdnn", "license" : "MIT"}, "versions" : {"0.1" : {"sha256" : "c4c9e14114fcded56415f6690ab098ae40c642e8e59dc20745d2730513729838", "url" : "https://files.pythonhosted.org/packages/32/ef/24ef563e52c21da702b9ef2fcd1d23b392373b2c966dffe247471b5bb091/scdnn-0.1.tar.gz"}}}
json_instruct
{"type": "object", "properties": {"latest_version": {"type": "array", "items": {"type": "string"}}, "meta": {"type": "object", "properties": {"description": {"type": "string"}, "homepage": {"type": "string"}, "license": {"type": "string"}}, "required": ["description", "homepage", "license"]}, "versions": {"type": "object", "properties": {"0.1": {"type": "object", "properties": {"sha256": {"type": "string"}, "url": {"type": "string"}}, "required": ["sha256", "url"]}}, "required": ["0.1"]}}, "required": ["latest_version", "meta", "versions"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"ConnectionStrings": {"type": "object", "properties": {"DefaultConnection": {"type": "string"}}, "required": ["DefaultConnection"]}, "IdentityServer": {"type": "object", "properties": {"Clients": {"type": "object", "properties": {"ApiAuthSampleSPA": {"type": "object", "properties": {"Profile": {"type": "string"}}, "required": ["Profile"]}}, "required": ["ApiAuthSampleSPA"]}}, "required": ["Clients"]}, "AllowedHosts": {"type": "string"}}, "required": ["ConnectionStrings", "IdentityServer", "AllowedHosts"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"ConnectionStrings" : {"DefaultConnection" : "DataSource=app.db;Cache=Shared"}, "IdentityServer" : {"Clients" : {"ApiAuthSampleSPA" : {"Profile" : "IdentityServerSPA"}}}, "AllowedHosts" : "*"}
json_instruct
{"type": "object", "properties": {"ConnectionStrings": {"type": "object", "properties": {"DefaultConnection": {"type": "string"}}, "required": ["DefaultConnection"]}, "IdentityServer": {"type": "object", "properties": {"Clients": {"type": "object", "properties": {"ApiAuthSampleSPA": {"type": "object", "properties": {"Profile": {"type": "string"}}, "required": ["Profile"]}}, "required": ["ApiAuthSampleSPA"]}}, "required": ["Clients"]}, "AllowedHosts": {"type": "string"}}, "required": ["ConnectionStrings", "IdentityServer", "AllowedHosts"], "$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"}, "id": {"type": "string"}, "properties": {"type": "object", "properties": {"amenity": {"type": "string"}, "contact:facebook": {"type": "string"}, "description": {"type": "string"}, "operator": {"type": "string"}, "phone": {"type": "string"}, "vending": {"type": "string"}, "id": {"type": "string"}}, "required": ["amenity", "contact:facebook", "description", "operator", "phone", "vending", "id"]}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "number"}}}, "required": ["type", "coordinates"]}}, "required": ["type", "id", "properties", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"type" : "Feature", "id" : "node/9127891961", "properties" : {"amenity" : "vending_machine", "contact:facebook" : "https://www.facebook.com/Alsheimersbioerdbeeren/", "description" : "Bio Eier (6er M/XL 3\u20ac), Nudeln (500g 4\u20ac), Kartoffeln (2Kg 3.50\u20ac)", "operator" : "D\u00fcrrbacher Bio", "phone" : "+49 931 93284", "vending" : "food;noodles;potatoes;eggs", "id" : "node/9127891961"}, "geometry" : {"type" : "Point", "coordinates" : [9.9073958, 49.8087449]}}
json_instruct
{"type": "object", "properties": {"type": {"type": "string"}, "id": {"type": "string"}, "properties": {"type": "object", "properties": {"amenity": {"type": "string"}, "contact:facebook": {"type": "string"}, "description": {"type": "string"}, "operator": {"type": "string"}, "phone": {"type": "string"}, "vending": {"type": "string"}, "id": {"type": "string"}}, "required": ["amenity", "contact:facebook", "description", "operator", "phone", "vending", "id"]}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "number"}}}, "required": ["type", "coordinates"]}}, "required": ["type", "id", "properties", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
[[1989, 5], [2003, 7]]
json_instruct
{"type": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "homepage": {"type": "string"}, "type": {"type": "string"}, "license": {"type": "string"}, "version": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}}, "keywords": {"type": "array", "items": {"type": "string"}}, "minimum-stability": {"type": "string"}, "require": {"type": "object", "properties": {"php": {"type": "string"}}, "required": ["php"]}, "autoload": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"yoohip\\": {"type": "string"}}, "required": ["yoohip\\"]}}, "required": ["psr-4"]}}, "required": ["name", "description", "homepage", "type", "license", "version", "authors", "keywords", "minimum-stability", "require", "autoload"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "yoohip/random-string", "description" : "This is a package that generates random strings.", "homepage" : "http://www.zslyoo.top/", "type" : "library", "license" : "MIT", "version" : "1.0", "authors" : [{"name" : "yoohip", "email" : "yoohip@163.com"}], "keywords" : ["php", "random", "strings"], "minimum-stability" : "stable", "require" : {"php" : ">=7.1.0"}, "autoload" : {"psr-4" : {"yoohip\\" : "src"}}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "homepage": {"type": "string"}, "type": {"type": "string"}, "license": {"type": "string"}, "version": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}}, "keywords": {"type": "array", "items": {"type": "string"}}, "minimum-stability": {"type": "string"}, "require": {"type": "object", "properties": {"php": {"type": "string"}}, "required": ["php"]}, "autoload": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"yoohip\\": {"type": "string"}}, "required": ["yoohip\\"]}}, "required": ["psr-4"]}}, "required": ["name", "description", "homepage", "type", "license", "version", "authors", "keywords", "minimum-stability", "require", "autoload"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"additionalFeatures": {"type": "string"}, "about": {"type": "object", "properties": {"race": {"type": "string"}, "type": {"type": "string"}}, "required": ["race", "type"]}, "lifepoints": {"type": "string"}, "cost": {"type": "object", "properties": {"minerals": {"type": "string"}, "vespan": {"type": "string"}}, "required": ["minerals", "vespan"]}, "id": {"type": "string"}, "images": {"type": "array", "items": {"type": "string"}}, "name": {"type": "string"}}, "required": ["additionalFeatures", "about", "lifepoints", "cost", "id", "images", "name"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"additionalFeatures" : "For more than a thousand years, the Protoss of the Templar caste have defended their people, dedicating their long lives to the pursuit of martial perfection. Zealots are peerless warriors who have yet to ascend to the uppermost ranks of the Khala. Ever eager for advancement, they train for decades in hand-to-hand combat, tactics, pain tolerance, and martial discipline. Their formidable physiques are further enhanced by cybernetic implants and power suits. Zealots use their substantial psionic abilities to create blades of pure energy that serve as their primary melee weapons.", "about" : {"race" : "Protoss", "type" : "unit"}, "lifepoints" : "100", "cost" : {"minerals" : "100", "vespan" : "0"}, "id" : "zealot", "images" : ["img/starcraft/units/protoss/zealot.jpg"], "name" : "Zealot"}
json_instruct
{"type": "object", "properties": {"additionalFeatures": {"type": "string"}, "about": {"type": "object", "properties": {"race": {"type": "string"}, "type": {"type": "string"}}, "required": ["race", "type"]}, "lifepoints": {"type": "string"}, "cost": {"type": "object", "properties": {"minerals": {"type": "string"}, "vespan": {"type": "string"}}, "required": ["minerals", "vespan"]}, "id": {"type": "string"}, "images": {"type": "array", "items": {"type": "string"}}, "name": {"type": "string"}}, "required": ["additionalFeatures", "about", "lifepoints", "cost", "id", "images", "name"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"model": {"type": "string"}, "dataset": {"type": "string"}, "rmse_train": {"type": "number"}, "rmse_test": {"type": "number"}, "log_score_train": {"type": "number"}, "log_score_test": {"type": "number"}, "crps_train": {"type": "number"}, "crps_test": {"type": "number"}, "picp_train": {"type": "number"}, "picp_test": {"type": "number"}, "mpiw_train": {"type": "number"}, "mpiw_test": {"type": "number"}}, "required": ["model", "dataset", "rmse_train", "rmse_test", "log_score_train", "log_score_test", "crps_train", "crps_test", "picp_train", "picp_test", "mpiw_train", "mpiw_test"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"model" : "MC dropout", "dataset" : "yacht", "rmse_train" : 1.1782200305094905, "rmse_test" : 1.194546324010861, "log_score_train" : -1.8779844633653937, "log_score_test" : -1.975071597276773, "crps_train" : 0.8780649187171983, "crps_test" : 0.9204462052081257, "picp_train" : 1.0, "picp_test" : 1.0, "mpiw_train" : 12.170928814962224, "mpiw_test" : 12.92554401976707}
json_instruct
{"type": "object", "properties": {"model": {"type": "string"}, "dataset": {"type": "string"}, "rmse_train": {"type": "number"}, "rmse_test": {"type": "number"}, "log_score_train": {"type": "number"}, "log_score_test": {"type": "number"}, "crps_train": {"type": "number"}, "crps_test": {"type": "number"}, "picp_train": {"type": "number"}, "picp_test": {"type": "number"}, "mpiw_train": {"type": "number"}, "mpiw_test": {"type": "number"}}, "required": ["model", "dataset", "rmse_train", "rmse_test", "log_score_train", "log_score_test", "crps_train", "crps_test", "picp_train", "picp_test", "mpiw_train", "mpiw_test"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"type": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["type", "coordinates"]}, "properties": {"type": "object", "properties": {"code": {"type": "integer"}, "url": {"type": "string"}, "view": {"type": "string"}}, "required": ["code", "url", "view"]}}, "required": ["type", "geometry", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"type" : "Feature", "geometry" : {"type" : "Polygon", "coordinates" : [[[150.25, 41.5], [150.25, 41.583333333333336], [150.375, 41.583333333333336], [150.375, 41.5], [150.25, 41.5]]]}, "properties" : {"code" : 625022, "url" : "http://madefor.github.io/0410/api/v1/625022.geojson", "view" : "https://github.com/madefor/0410/blob/gh-pages/api/v1/625022.geojson"}}
json_instruct
{"type": "object", "properties": {"type": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["type", "coordinates"]}, "properties": {"type": "object", "properties": {"code": {"type": "integer"}, "url": {"type": "string"}, "view": {"type": "string"}}, "required": ["code", "url", "view"]}}, "required": ["type", "geometry", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"word" : "quitture", "definition" : "A discharge; an issue. [Obs.] To cleanse the quitture from thy wound. Chapman."}
json_instruct
{"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
[[1883, 5], [1916, 5], [1917, 10], [1920, 8], [1921, 7], [1923, 9], [1926, 8], [1927, 5], [1928, 6], [1930, 8], [1939, 6], [1941, 5], [1942, 6], [1946, 5], [1947, 7], [1948, 7], [1951, 7], [1953, 5], [1959, 5]]
json_instruct
{"type": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"id": {"type": "integer"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"src:alt_label": {"type": "string"}, "src:geom": {"type": "string"}, "wof:geomhash": {"type": "string"}, "wof:id": {"type": "integer"}, "wof:repo": {"type": "string"}}, "required": ["src:alt_label", "src:geom", "wof:geomhash", "wof:id", "wof:repo"]}, "bbox": {"type": "array", "items": {"type": "number"}}, "geometry": {"type": "object", "properties": {"coordinates": {"type": "array", "items": {"type": "number"}}, "type": {"type": "string"}}, "required": ["coordinates", "type"]}}, "required": ["id", "type", "properties", "bbox", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : 1125773293, "type" : "Feature", "properties" : {"src:alt_label" : "qs_pg", "src:geom" : "qs_pg", "wof:geomhash" : "fe9efc9da3b6d838cb49967da504c742", "wof:id" : 1125773293, "wof:repo" : "whosonfirst-data-admin-fr"}, "bbox" : [-0.03077, 44.55941, -0.03077, 44.55941], "geometry" : {"coordinates" : [-0.03077, 44.55941], "type" : "Point"}}
json_instruct
{"type": "object", "properties": {"id": {"type": "integer"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"src:alt_label": {"type": "string"}, "src:geom": {"type": "string"}, "wof:geomhash": {"type": "string"}, "wof:id": {"type": "integer"}, "wof:repo": {"type": "string"}}, "required": ["src:alt_label", "src:geom", "wof:geomhash", "wof:id", "wof:repo"]}, "bbox": {"type": "array", "items": {"type": "number"}}, "geometry": {"type": "object", "properties": {"coordinates": {"type": "array", "items": {"type": "number"}}, "type": {"type": "string"}}, "required": ["coordinates", "type"]}}, "required": ["id", "type", "properties", "bbox", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"h": {"type": "array", "items": {"type": "object", "properties": {"d": {"type": "array", "items": {"type": "object", "properties": {"e": {"type": "array", "items": {"type": "string"}}, "f": {"type": "string"}}, "required": ["e", "f"]}}}, "required": ["d"]}}, "stem": {"type": "string"}, "t": {"type": "string"}}, "required": ["h", "stem", "t"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"h" : [{"d" : [{"e" : ["\ufff9`Keriden~ `to~ `ningra~ `ko~ `wawa~ `a~ `micomod~.\ufffa\ufffb\u4ed6\u9818\u8457\u5b69\u5b50\u9032\u53bb\u4e86\u3002"], "f" : "\u628a\u67d0\u67d0\u9818\u5c0e\uff0c\u5f15\u5c0e\u3002"}]}], "stem" : "kerid", "t" : "keriden"}
json_instruct
{"type": "object", "properties": {"h": {"type": "array", "items": {"type": "object", "properties": {"d": {"type": "array", "items": {"type": "object", "properties": {"e": {"type": "array", "items": {"type": "string"}}, "f": {"type": "string"}}, "required": ["e", "f"]}}}, "required": ["d"]}}, "stem": {"type": "string"}, "t": {"type": "string"}}, "required": ["h", "stem", "t"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"minimist": {"type": "string"}, "wav": {"type": "string"}}, "required": ["minimist", "wav"]}, "devDependencies": {"type": "object", "properties": {"standard": {"type": "string"}}, "required": ["standard"]}}, "required": ["name", "version", "description", "main", "scripts", "author", "license", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "wave-surfer", "version" : "1.0.0", "description" : "Surf Waves and read/write metadata", "main" : "index.js", "scripts" : {"test" : "echo \"Error: no test specified\" && exit 1"}, "author" : "Michael Matuzak", "license" : "MIT", "dependencies" : {"minimist" : "^1.1.1", "wav" : "^1.0.0"}, "devDependencies" : {"standard" : "^4.3.1"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"minimist": {"type": "string"}, "wav": {"type": "string"}}, "required": ["minimist", "wav"]}, "devDependencies": {"type": "object", "properties": {"standard": {"type": "string"}}, "required": ["standard"]}}, "required": ["name", "version", "description", "main", "scripts", "author", "license", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"data": {"type": "object", "properties": {"datoCmsProduct": {"type": "object", "properties": {"id": {"type": "string"}, "itemtype": {"type": "string"}, "image": {"type": "null"}, "price": {"type": "integer"}}, "required": ["id", "itemtype", "image", "price"]}}, "required": ["datoCmsProduct"]}, "pageContext": {"type": "object", "properties": {"slug": {"type": "string"}}, "required": ["slug"]}}, "required": ["data", "pageContext"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"data" : {"datoCmsProduct" : {"id" : "DatoCmsProduct-670947-en", "itemtype" : "Baseball Cap", "image" : null, "price" : 16}}, "pageContext" : {"slug" : "squadron-cap-white"}}
json_instruct
{"type": "object", "properties": {"data": {"type": "object", "properties": {"datoCmsProduct": {"type": "object", "properties": {"id": {"type": "string"}, "itemtype": {"type": "string"}, "image": {"type": "null"}, "price": {"type": "integer"}}, "required": ["id", "itemtype", "image", "price"]}}, "required": ["datoCmsProduct"]}, "pageContext": {"type": "object", "properties": {"slug": {"type": "string"}}, "required": ["slug"]}}, "required": ["data", "pageContext"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"CantRefuseTheCallAnymore": {"type": "array", "items": {"type": "string"}}}, "required": ["CantRefuseTheCallAnymore"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"CantRefuseTheCallAnymore" : ["TheHerosJourney", "ThresholdGuardians", "RefusalOfTheCall", "TheHero", "DarkestHour", "TheHero", "ThresholdGuardians", "TropeMaker", "TrueCompanions", "TrueCompanions", "TheHero", "VillainProtagonist", "Deuteragonist", "BeneathTheEarth", "HeroicSacrifice", "SuperheroSchool", "Unperson", "EldritchLocation", "TomatoInTheMirror", "DungeonCrawling", "HumanPopsicle", "BigBad", "ClassifiedInformation", "RedPillBluePill", "CallToAdventure", "DesperatelyLookingForAPurposeInLife", "WhamEpisode", "ExactlyWhatItSaysOnTheTin", "CrapsackWorld", "EverythingsDeaderWithZombies", "OnlyMostlyDead", "DoomedHometown", "RivalTurnedEvil", "BroughtDownToNormal", "CombiningMecha", "CrapsackWorld", "EverythingsDeaderWithZombies", "OnlyMostlyDead", "DoomedHometown", "RivalTurnedEvil", "BroughtDownToNormal", "TheWoobie", "WideEyedIdealist", "ThresholdGuardians", "CityOfAdventure"]}
json_instruct
{"type": "object", "properties": {"CantRefuseTheCallAnymore": {"type": "array", "items": {"type": "string"}}}, "required": ["CantRefuseTheCallAnymore"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"nom": {"type": "string"}, "circ": {"type": "string"}, "dpt": {"type": "string"}, "inscrits": {"type": "integer"}, "abs": {"type": "integer"}, "votants": {"type": "integer"}, "blancs": {"type": "integer"}, "nuls": {"type": "integer"}, "exp": {"type": "integer"}, "res": {"type": "array", "items": {"type": "object", "properties": {"nuance": {"type": "string"}, "nom": {"type": "string"}, "voix": {"type": "integer"}}, "required": ["nuance", "nom", "voix"]}}}, "required": ["nom", "circ", "dpt", "inscrits", "abs", "votants", "blancs", "nuls", "exp", "res"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"nom" : "Foucarmont", "circ" : "6\u00e8me circonscription", "dpt" : "Seine-Maritime", "inscrits" : 545, "abs" : 286, "votants" : 259, "blancs" : 14, "nuls" : 3, "exp" : 242, "res" : [{"nuance" : "COM", "nom" : "M. S\u00e9bastien JUMEL", "voix" : 125}, {"nuance" : "REM", "nom" : "M. Philippe DUFOUR", "voix" : 117}]}
json_instruct
{"type": "object", "properties": {"nom": {"type": "string"}, "circ": {"type": "string"}, "dpt": {"type": "string"}, "inscrits": {"type": "integer"}, "abs": {"type": "integer"}, "votants": {"type": "integer"}, "blancs": {"type": "integer"}, "nuls": {"type": "integer"}, "exp": {"type": "integer"}, "res": {"type": "array", "items": {"type": "object", "properties": {"nuance": {"type": "string"}, "nom": {"type": "string"}, "voix": {"type": "integer"}}, "required": ["nuance", "nom", "voix"]}}}, "required": ["nom", "circ", "dpt", "inscrits", "abs", "votants", "blancs", "nuls", "exp", "res"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"condName": {"type": "string"}}, "required": ["condName"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"condName" : "Normal/Charged Attack Hit within 0.3s"}
json_instruct
{"type": "object", "properties": {"condName": {"type": "string"}}, "required": ["condName"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"id": {"type": "integer"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"src:alt_label": {"type": "string"}, "src:geom": {"type": "string"}, "wof:geomhash": {"type": "string"}, "wof:id": {"type": "integer"}, "wof:repo": {"type": "string"}}, "required": ["src:alt_label", "src:geom", "wof:geomhash", "wof:id", "wof:repo"]}, "bbox": {"type": "array", "items": {"type": "number"}}, "geometry": {"type": "object", "properties": {"coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}, "type": {"type": "string"}}, "required": ["coordinates", "type"]}}, "required": ["id", "type", "properties", "bbox", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : 404413031, "type" : "Feature", "properties" : {"src:alt_label" : "quattroshapes", "src:geom" : "quattroshapes", "wof:geomhash" : "18a55d414f8a092349f718f48f649072", "wof:id" : 404413031, "wof:repo" : "whosonfirst-data-admin-fr"}, "bbox" : [4.5732483509772, 49.82429706122903, 4.63926391917319, 49.87087304444454], "geometry" : {"coordinates" : [[[4.61286697919299, 49.82608745363623], [4.60417100639124, 49.82429706122903], [4.6009868967847, 49.82640562331036], [4.58293769266782, 49.82711730830473], [4.58459234120299, 49.84105067896415], [4.5732483509772, 49.86068699289809], [4.59498593331808, 49.87087304444454], [4.61582286960032, 49.869467038177], [4.63164598836359, 49.86041496892577], [4.63926391917319, 49.85654799198822], [4.63853825902067, 49.8499622650352], [4.62607974389046, 49.84407246205777], [4.62416167805794, 49.83095178802151], [4.6142054603429, 49.82932264250255], [4.61286697919299, 49.82608745363623]]], "type" : "Polygon"}}
json_instruct
{"type": "object", "properties": {"id": {"type": "integer"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"src:alt_label": {"type": "string"}, "src:geom": {"type": "string"}, "wof:geomhash": {"type": "string"}, "wof:id": {"type": "integer"}, "wof:repo": {"type": "string"}}, "required": ["src:alt_label", "src:geom", "wof:geomhash", "wof:id", "wof:repo"]}, "bbox": {"type": "array", "items": {"type": "number"}}, "geometry": {"type": "object", "properties": {"coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}, "type": {"type": "string"}}, "required": ["coordinates", "type"]}}, "required": ["id", "type", "properties", "bbox", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"url": {"type": "string"}, "sha1": {"type": "string"}}, "required": ["url", "sha1"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"url" : "https://static.wikia.nocookie.net/griftlands_gamepedia_en/images/a/a0/Gao_portrait.png/revision/latest?cb=20200831194821", "sha1" : "f0a4bbc4f07f803c89171dbb65807aecb33f188a"}
json_instruct
{"type": "object", "properties": {"url": {"type": "string"}, "sha1": {"type": "string"}}, "required": ["url", "sha1"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"ja321:0.1": {"type": "string"}, "ja321:0.2": {"type": "string"}, "ja321:0.3": {"type": "string"}, "ja321:0.4": {"type": "string"}, "ja321:1.1": {"type": "string"}, "ja321:1.2": {"type": "string"}, "ja321:1.3": {"type": "string"}, "ja321:1.4": {"type": "string"}, "ja321:2.1": {"type": "string"}, "ja321:2.2": {"type": "string"}, "ja321:2.3": {"type": "string"}, "ja321:2.4": {"type": "string"}, "ja321:3.1": {"type": "string"}, "ja321:3.2": {"type": "string"}, "ja321:3.3": {"type": "string"}, "ja321:3.4": {"type": "string"}, "ja321:4.1": {"type": "string"}, "ja321:4.2": {"type": "string"}, "ja321:4.3": {"type": "string"}, "ja321:4.4": {"type": "string"}, "ja321:5.1": {"type": "string"}}, "required": ["ja321:0.1", "ja321:0.2", "ja321:0.3", "ja321:0.4", "ja321:1.1", "ja321:1.2", "ja321:1.3", "ja321:1.4", "ja321:2.1", "ja321:2.2", "ja321:2.3", "ja321:2.4", "ja321:3.1", "ja321:3.2", "ja321:3.3", "ja321:3.4", "ja321:4.1", "ja321:4.2", "ja321:4.3", "ja321:4.4", "ja321:5.1"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"ja321:0.1" : "J\u0101taka", "ja321:0.2" : "Catukkanip\u0101ta", "ja321:0.3" : "Ku\u1e6did\u016bsakavagga", "ja321:0.4" : "1. Ku\u1e6did\u016bsakaj\u0101taka", "ja321:1.1" : "\u201cManussasseva te s\u012bsa\u1e41,", "ja321:1.2" : "hatthap\u0101d\u0101 ca v\u0101nara;", "ja321:1.3" : "Atha kena nu va\u1e47\u1e47ena,", "ja321:1.4" : "ag\u0101ra\u1e41 te na vijjati\u201d.", "ja321:2.1" : "\u201cManussasseva me s\u012bsa\u1e41,", "ja321:2.2" : "hatthap\u0101d\u0101 ca si\u1e45gila;", "ja321:2.3" : "Y\u0101hu se\u1e6d\u1e6dh\u0101 manussesu,", "ja321:2.4" : "s\u0101 me pa\u00f1\u00f1\u0101 na vijjati\u201d.", "ja321:3.1" : "\u201cAnava\u1e6d\u1e6dhitacittassa,", "ja321:3.2" : "lahucittassa dubbhino;", "ja321:3.3" : "Nicca\u1e41 addhuvas\u012blassa,", "ja321:3.4" : "sukhabh\u0101vo na vijjati.", "ja321:4.1" : "So karassu \u0101nubh\u0101va\u1e41,", "ja321:4.2" : "v\u012btivattassu s\u012bliya\u1e41;", "ja321:4.3" : "S\u012btav\u0101taparitt\u0101\u1e47a\u1e41,", "ja321:4.4" : "karassu ku\u1e6dava\u1e41 kap\u012b\u201dti.", "ja321:5.1" : "Ku\u1e6did\u016bsakaj\u0101taka\u1e41 pa\u1e6dhama\u1e41."}
json_instruct
{"type": "object", "properties": {"ja321:0.1": {"type": "string"}, "ja321:0.2": {"type": "string"}, "ja321:0.3": {"type": "string"}, "ja321:0.4": {"type": "string"}, "ja321:1.1": {"type": "string"}, "ja321:1.2": {"type": "string"}, "ja321:1.3": {"type": "string"}, "ja321:1.4": {"type": "string"}, "ja321:2.1": {"type": "string"}, "ja321:2.2": {"type": "string"}, "ja321:2.3": {"type": "string"}, "ja321:2.4": {"type": "string"}, "ja321:3.1": {"type": "string"}, "ja321:3.2": {"type": "string"}, "ja321:3.3": {"type": "string"}, "ja321:3.4": {"type": "string"}, "ja321:4.1": {"type": "string"}, "ja321:4.2": {"type": "string"}, "ja321:4.3": {"type": "string"}, "ja321:4.4": {"type": "string"}, "ja321:5.1": {"type": "string"}}, "required": ["ja321:0.1", "ja321:0.2", "ja321:0.3", "ja321:0.4", "ja321:1.1", "ja321:1.2", "ja321:1.3", "ja321:1.4", "ja321:2.1", "ja321:2.2", "ja321:2.3", "ja321:2.4", "ja321:3.1", "ja321:3.2", "ja321:3.3", "ja321:3.4", "ja321:4.1", "ja321:4.2", "ja321:4.3", "ja321:4.4", "ja321:5.1"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "license": {"type": "object", "properties": {"key": {"type": "string"}, "name": {"type": "string"}, "spdx_id": {"type": "string"}, "url": {"type": "string"}}, "required": ["key", "name", "spdx_id", "url"]}, "starNum": {"type": "integer"}, "folkNum": {"type": "integer"}, "watchNum": {"type": "integer"}, "topic": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "description", "license", "starNum", "folkNum", "watchNum", "topic"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "CMS-Hunter", "description" : "CMS\u6f0f\u6d1e\u6d4b\u8bd5\u7528\u4f8b\u96c6\u5408", "license" : {"key" : "gpl-3.0", "name" : "GNU General Public License v3.0", "spdx_id" : "GPL-3.0", "url" : "https://api.github.com/licenses/gpl-3.0"}, "starNum" : 185, "folkNum" : 65, "watchNum" : 185, "topic" : ["cms-hunter", "joomla", "phpcms", "wordpress"]}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "license": {"type": "object", "properties": {"key": {"type": "string"}, "name": {"type": "string"}, "spdx_id": {"type": "string"}, "url": {"type": "string"}}, "required": ["key", "name", "spdx_id", "url"]}, "starNum": {"type": "integer"}, "folkNum": {"type": "integer"}, "watchNum": {"type": "integer"}, "topic": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "description", "license", "starNum", "folkNum", "watchNum", "topic"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"firstTime": {"type": "boolean"}}, "required": ["firstTime"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"firstTime" : true}
json_instruct
{"type": "object", "properties": {"firstTime": {"type": "boolean"}}, "required": ["firstTime"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"course_code": {"type": "string"}, "course_name": {"type": "string"}, "semesters": {"type": "integer"}, "faculty": {"type": "string"}, "school": {"type": "string"}, "units": {"type": "string"}, "duration": {"type": "string"}, "description": {"type": "string"}, "prerequisites": {"type": "string"}, "incompatible": {"type": "string"}, "restricted": {"type": "string"}}, "required": ["course_code", "course_name", "semesters", "faculty", "school", "units", "duration", "description", "prerequisites", "incompatible", "restricted"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"course_code" : "MATH3303", "course_name" : "Abstract Algebra & Number Theory", "semesters" : 1, "faculty" : "Science", "school" : "Mathematics & Physics School", "units" : "2", "duration" : "One Semester", "description" : "MATH3303 covers key topics in group theory and ring theory, with a view towards commutative algebra, algebraic number theory and representation theory.", "prerequisites" : "MATH2301", "incompatible" : "", "restricted" : ""}
json_instruct
{"type": "object", "properties": {"course_code": {"type": "string"}, "course_name": {"type": "string"}, "semesters": {"type": "integer"}, "faculty": {"type": "string"}, "school": {"type": "string"}, "units": {"type": "string"}, "duration": {"type": "string"}, "description": {"type": "string"}, "prerequisites": {"type": "string"}, "incompatible": {"type": "string"}, "restricted": {"type": "string"}}, "required": ["course_code", "course_name", "semesters", "faculty", "school", "units", "duration", "description", "prerequisites", "incompatible", "restricted"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"index": {"type": "integer"}, "redacted": {"type": "boolean"}, "hash": {"type": "integer"}, "blacklisted": {"type": "boolean"}}, "required": ["index", "redacted", "hash", "blacklisted"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"index" : 3974, "redacted" : false, "hash" : 3246717642, "blacklisted" : false}
json_instruct
{"type": "object", "properties": {"index": {"type": "integer"}, "redacted": {"type": "boolean"}, "hash": {"type": "integer"}, "blacklisted": {"type": "boolean"}}, "required": ["index", "redacted", "hash", "blacklisted"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"parameters": {"type": "object", "properties": {"endpoint": {"type": "string"}, "request": {"type": "object", "properties": {"sessionId": {"type": "string"}}, "required": ["sessionId"]}, "api-version": {"type": "string"}}, "required": ["endpoint", "request", "api-version"]}, "responses": {"type": "object", "properties": {"200": {"type": "object", "properties": {"headers": {"type": "object", "properties": {"Date": {"type": "string"}, "X-Content-Type-Options": {"type": "string"}, "x-ms-ratelimit-remaining-subscription-reads": {"type": "string"}, "x-ms-request-id": {"type": "string"}, "x-ms-correlation-request-id": {"type": "string"}}, "required": ["Date", "X-Content-Type-Options", "x-ms-ratelimit-remaining-subscription-reads", "x-ms-request-id", "x-ms-correlation-request-id"]}}, "required": ["headers"]}}, "required": ["200"]}}, "required": ["parameters", "responses"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"parameters" : {"endpoint" : "exampleWorkspace.dev.azuresynapse.net", "request" : {"sessionId" : "91fb57e0-8292-47be-89ff-c8f2d2bb2a7e"}, "api-version" : "2021-06-01-preview"}, "responses" : {"200" : {"headers" : {"Date" : "Sat, 16 Jun 2018 00:40:01 GMT", "X-Content-Type-Options" : "nosniff", "x-ms-ratelimit-remaining-subscription-reads" : "14989", "x-ms-request-id" : "2f955e10-c6df-45a7-97d4-81acdb8540cd", "x-ms-correlation-request-id" : "2f955e10-c6df-45a7-97d4-81acdb8540cd"}}}}
json_instruct
{"type": "object", "properties": {"parameters": {"type": "object", "properties": {"endpoint": {"type": "string"}, "request": {"type": "object", "properties": {"sessionId": {"type": "string"}}, "required": ["sessionId"]}, "api-version": {"type": "string"}}, "required": ["endpoint", "request", "api-version"]}, "responses": {"type": "object", "properties": {"200": {"type": "object", "properties": {"headers": {"type": "object", "properties": {"Date": {"type": "string"}, "X-Content-Type-Options": {"type": "string"}, "x-ms-ratelimit-remaining-subscription-reads": {"type": "string"}, "x-ms-request-id": {"type": "string"}, "x-ms-correlation-request-id": {"type": "string"}}, "required": ["Date", "X-Content-Type-Options", "x-ms-ratelimit-remaining-subscription-reads", "x-ms-request-id", "x-ms-correlation-request-id"]}}, "required": ["headers"]}}, "required": ["200"]}}, "required": ["parameters", "responses"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"manifest_version": {"type": "integer"}, "name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "permissions": {"type": "array", "items": {"type": "string"}}, "web_accessible_resources": {"type": "array", "items": {"type": "string"}}, "icons": {"type": "object", "properties": {"48": {"type": "string"}, "128": {"type": "string"}}, "required": ["48", "128"]}, "browser_action": {"type": "object", "properties": {"default_icon": {"type": "string"}}, "required": ["default_icon"]}, "background": {"type": "object", "properties": {"persistent": {"type": "boolean"}, "scripts": {"type": "array", "items": {"type": "string"}}}, "required": ["persistent", "scripts"]}, "commands": {"type": "object", "properties": {"_execute_browser_action": {"type": "object", "properties": {"suggested_key": {"type": "object", "properties": {"default": {"type": "string"}, "windows": {"type": "string"}, "mac": {"type": "string"}, "chromeos": {"type": "string"}, "linux": {"type": "string"}}, "required": ["default", "windows", "mac", "chromeos", "linux"]}}, "required": ["suggested_key"]}}, "required": ["_execute_browser_action"]}, "options_page": {"type": "string"}}, "required": ["manifest_version", "name", "version", "description", "permissions", "web_accessible_resources", "icons", "browser_action", "background", "commands", "options_page"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"manifest_version" : 2, "name" : "Prisc!", "version" : "0.2.5", "description" : "\u300c\u30d7\u30ea\u30b9\u30af\uff01\u300d\u306f\u30ef\u30f3\u30af\u30ea\u30c3\u30af\u3067\u30d6\u30e9\u30a6\u30b6\u753b\u9762\u30b9\u30af\u30ea\u30fc\u30f3\u30b7\u30e7\u30c3\u30c8\u3092\u64ae\u308bChrome\u62e1\u5f35\u3067\u3059\u3002\u30c8\u30ea\u30df\u30f3\u30b0\u306a\u3069\u6700\u4f4e\u9650\u306e\u7de8\u96c6\u3001\u304a\u3088\u3073Twitter\u3078\u306e\u753b\u50cf\u4ed8\u304d\u6295\u7a3f\u304c\u3067\u304d\u307e\u3059\u3002", "permissions" : ["https://api.twitter.com/*", "activeTab", "downloads"], "web_accessible_resources" : ["chrome_ex_oauth.html*"], "icons" : {"48" : "asset/img/icon/icon.48.png", "128" : "asset/img/icon/icon.128.png"}, "browser_action" : {"default_icon" : "asset/img/icon/icon.128.png"}, "background" : {"persistent" : true, "scripts" : ["oauth_lib/chrome_ex_oauth.js", "oauth_lib/chrome_ex_oauthsimple.js", "build/app.js"]}, "commands" : {"_execute_browser_action" : {"suggested_key" : {"default" : "Ctrl+Shift+S", "windows" : "Ctrl+Shift+S", "mac" : "Command+Shift+S", "chromeos" : "Ctrl+Shift+S", "linux" : "Ctrl+Shift+S"}}}, "options_page" : "asset/html/app.html?view=Options"}
json_instruct
{"type": "object", "properties": {"manifest_version": {"type": "integer"}, "name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "permissions": {"type": "array", "items": {"type": "string"}}, "web_accessible_resources": {"type": "array", "items": {"type": "string"}}, "icons": {"type": "object", "properties": {"48": {"type": "string"}, "128": {"type": "string"}}, "required": ["48", "128"]}, "browser_action": {"type": "object", "properties": {"default_icon": {"type": "string"}}, "required": ["default_icon"]}, "background": {"type": "object", "properties": {"persistent": {"type": "boolean"}, "scripts": {"type": "array", "items": {"type": "string"}}}, "required": ["persistent", "scripts"]}, "commands": {"type": "object", "properties": {"_execute_browser_action": {"type": "object", "properties": {"suggested_key": {"type": "object", "properties": {"default": {"type": "string"}, "windows": {"type": "string"}, "mac": {"type": "string"}, "chromeos": {"type": "string"}, "linux": {"type": "string"}}, "required": ["default", "windows", "mac", "chromeos", "linux"]}}, "required": ["suggested_key"]}}, "required": ["_execute_browser_action"]}, "options_page": {"type": "string"}}, "required": ["manifest_version", "name", "version", "description", "permissions", "web_accessible_resources", "icons", "browser_action", "background", "commands", "options_page"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"type": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["type", "coordinates"]}, "properties": {"type": "object", "properties": {"code": {"type": "integer"}, "url": {"type": "string"}, "view": {"type": "string"}}, "required": ["code", "url", "view"]}}, "required": ["type", "geometry", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"type" : "Feature", "geometry" : {"type" : "Polygon", "coordinates" : [[[145.375, 26.333333333333332], [145.375, 26.416666666666668], [145.5, 26.416666666666668], [145.5, 26.333333333333332], [145.375, 26.333333333333332]]]}, "properties" : {"code" : 394543, "url" : "http://madefor.github.io/0410/api/v1/394543.geojson", "view" : "https://github.com/madefor/0410/blob/gh-pages/api/v1/394543.geojson"}}
json_instruct
{"type": "object", "properties": {"type": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["type", "coordinates"]}, "properties": {"type": "object", "properties": {"code": {"type": "integer"}, "url": {"type": "string"}, "view": {"type": "string"}}, "required": ["code", "url", "view"]}}, "required": ["type", "geometry", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"900721329": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900721330": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900721331": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900721332": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900721333": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900721334": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}}, "required": ["900721329", "900721330", "900721331", "900721332", "900721333", "900721334"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"900721329" : {"nama" : "TPS 1", "dapil" : [7301, 17303, 2730602]}, "900721330" : {"nama" : "TPS 2", "dapil" : [7301, 17303, 2730602]}, "900721331" : {"nama" : "TPS 3", "dapil" : [7301, 17303, 2730602]}, "900721332" : {"nama" : "TPS 4", "dapil" : [7301, 17303, 2730602]}, "900721333" : {"nama" : "TPS 5", "dapil" : [7301, 17303, 2730602]}, "900721334" : {"nama" : "TPS 6", "dapil" : [7301, 17303, 2730602]}}
json_instruct
{"type": "object", "properties": {"900721329": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900721330": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900721331": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900721332": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900721333": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900721334": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}}, "required": ["900721329", "900721330", "900721331", "900721332", "900721333", "900721334"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"id": {"type": "string"}, "text": {"type": "string"}}, "required": ["id", "text"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : "d1043-113", "text" : "President Charles E0 Friley\n2\nHay 13, 1952\nMr. Ralph Steetle of the Joint Committee on Educational Television\nindicates the American Council on Education would very probably like\nto endorse this conference and offer any assistance possible as well\nas the JCET itself.\nWe would propose, on the basis of recommendation by the subcommittee\n(Marvin, Lorch, and Hull) and the general committee, to have a 2-day\norientation session idxich would attract perhaps 100 or more people and\nto follow this up with a workshop for a more restricted group which\nwould proceed on a seminar basis to examine some of the problems more\nclosely.\nDr. George Town really keynoted the concept of the conference when he\nsaid, \"Iowa State is the only institution with actual experience. We\nshould endeavor to base our conference on that fact.\"\nIn addition to the $1,500 anticipated from the EASE it is estimated\nthat an additional $2,500 would be required either from General College\nFunds or from W0I-T? Ford Foundation Research Funds or both to handle\nexpenses of some consultants in the engineering field, some FCC personnel,\nand an attorney in addition to costs of printing, etc.\nWe are requesting your tentative approval for this proposal in order\nthat we may negotiate more effectively with the NAEB and Kellogg people\ntomorrow.\nSincerely yours,\nRichard B. Hull\nRadlo^T? Director\nJoseph H. Worth\nCoordinator of Radio\nand TV Education"}
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "text": {"type": "string"}}, "required": ["id", "text"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"courseCode": {"type": "string"}, "courseCredit": {"type": "string"}, "description": {"type": "string"}, "faculty": {"type": "string"}, "preclusion": {"type": "string"}, "title": {"type": "string"}}, "required": ["courseCode", "courseCredit", "description", "faculty", "preclusion", "title"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"courseCode" : "SE5233R", "courseCredit" : "5", "description" : "", "faculty" : "Arts and Social Science", "preclusion" : "IZ5103, SE6233", "title" : "Economies of Southeast Asia"}
json_instruct
{"type": "object", "properties": {"courseCode": {"type": "string"}, "courseCredit": {"type": "string"}, "description": {"type": "string"}, "faculty": {"type": "string"}, "preclusion": {"type": "string"}, "title": {"type": "string"}}, "required": ["courseCode", "courseCredit", "description", "faculty", "preclusion", "title"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "array", "items": {"type": "object", "properties": {"errors": {"type": "array", "items": {}}, "file": {"type": "string"}, "name": {"type": "string"}}, "required": ["errors", "file", "name"]}}}, "required": ["contract", "tool", "start", "end", "duration", "analysis"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"contract" : "0x049a0b974add339d04565f6e407edfdd95218d3e", "tool" : "honeybadger", "start" : 1565828353.126371, "end" : 1565828408.8400228, "duration" : 55.71365189552307, "analysis" : [{"errors" : [], "file" : "/unique_chucks/18/0x049a0b974add339d04565f6e407edfdd95218d3e.sol", "name" : "Indatasets"}, {"errors" : [], "file" : "/unique_chucks/18/0x049a0b974add339d04565f6e407edfdd95218d3e.sol", "name" : "SafeMath"}, {"errors" : [], "file" : "/unique_chucks/18/0x049a0b974add339d04565f6e407edfdd95218d3e.sol", "name" : "vsgame"}]}
json_instruct
{"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "array", "items": {"type": "object", "properties": {"errors": {"type": "array", "items": {}}, "file": {"type": "string"}, "name": {"type": "string"}}, "required": ["errors", "file", "name"]}}}, "required": ["contract", "tool", "start", "end", "duration", "analysis"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "array", "items": {"type": "object", "properties": {"manufacturer": {"type": "string"}, "market_name": {"type": "string"}, "codename": {"type": "string"}, "model": {"type": "string"}}, "required": ["manufacturer", "market_name", "codename", "model"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"manufacturer" : "Asus", "market_name" : "MeMO Pad HD 8 (ME180A)", "codename" : "K00L", "model" : "K00L"}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"manufacturer": {"type": "string"}, "market_name": {"type": "string"}, "codename": {"type": "string"}, "model": {"type": "string"}}, "required": ["manufacturer", "market_name", "codename", "model"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"python.pythonPath": {"type": "string"}, "python.languageServer": {"type": "string"}, "cSpell.words": {"type": "array", "items": {"type": "string"}}, "files.associations": {"type": "object", "properties": {"*.yml": {"type": "string"}}, "required": ["*.yml"]}}, "required": ["python.pythonPath", "python.languageServer", "cSpell.words", "files.associations"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"python.pythonPath" : ".venv/bin/python3", "python.languageServer" : "Pylance", "cSpell.words" : ["avdteam", "cookiecutter", "CSVs", "devcontainer", "loopback", "mgmt", "svis", "vrfs", "vtep", "VXLAN"], "files.associations" : {"*.yml" : "jinja-yaml"}}
json_instruct
{"type": "object", "properties": {"python.pythonPath": {"type": "string"}, "python.languageServer": {"type": "string"}, "cSpell.words": {"type": "array", "items": {"type": "string"}}, "files.associations": {"type": "object", "properties": {"*.yml": {"type": "string"}}, "required": ["*.yml"]}}, "required": ["python.pythonPath", "python.languageServer", "cSpell.words", "files.associations"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "frequency": {"type": "integer"}, "gender": {"type": "string"}}, "required": ["name", "frequency", "gender"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"name" : "DUSTYNN", "frequency" : 2, "gender" : "male"}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "frequency": {"type": "integer"}, "gender": {"type": "string"}}, "required": ["name", "frequency", "gender"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
[[1990, 5], [1994, 6], [1999, 6], [2000, 5], [2001, 6], [2002, 10], [2003, 10], [2004, 7], [2005, 12], [2006, 8], [2009, 5], [2014, 5]]
json_instruct
{"type": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"value": {"type": "array", "items": {"type": "string"}}}, "required": ["value"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"value" : ["hrapid-helping-disseminate-performance-which-and-these_p", "pwill.beta-define.impl", "eperv:_the.future.offer_a", "uspecifications.pervasive-to_and_and.of.fr", "pspecific_of.used-a"]}
json_instruct
{"type": "object", "properties": {"value": {"type": "array", "items": {"type": "string"}}}, "required": ["value"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"app": {"type": "array", "items": {"type": "string"}}, "component---src-pages-404-js": {"type": "array", "items": {"type": "string"}}, "component---src-pages-index-js": {"type": "array", "items": {"type": "string"}}, "component---src-pages-page-2-js": {"type": "array", "items": {"type": "string"}}}, "required": ["app", "component---src-pages-404-js", "component---src-pages-index-js", "component---src-pages-page-2-js"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"app" : ["/app-d24f3f708d0ed1fe2473.js"], "component---src-pages-404-js" : ["/component---src-pages-404-js-de147e2a411283ceee16.js"], "component---src-pages-index-js" : ["/component---src-pages-index-js-b51f2ee8950095946f7c.js"], "component---src-pages-page-2-js" : ["/component---src-pages-page-2-js-186050ffe135cc98d138.js"]}
json_instruct
{"type": "object", "properties": {"app": {"type": "array", "items": {"type": "string"}}, "component---src-pages-404-js": {"type": "array", "items": {"type": "string"}}, "component---src-pages-index-js": {"type": "array", "items": {"type": "string"}}, "component---src-pages-page-2-js": {"type": "array", "items": {"type": "string"}}}, "required": ["app", "component---src-pages-404-js", "component---src-pages-index-js", "component---src-pages-page-2-js"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"./dist/react-big-calendar.js": {"type": "object", "properties": {"bundled": {"type": "integer"}, "minified": {"type": "integer"}, "gzipped": {"type": "integer"}}, "required": ["bundled", "minified", "gzipped"]}, "./dist/react-big-calendar.min.js": {"type": "object", "properties": {"bundled": {"type": "integer"}, "minified": {"type": "integer"}, "gzipped": {"type": "integer"}}, "required": ["bundled", "minified", "gzipped"]}, "dist/react-big-calendar.esm.js": {"type": "object", "properties": {"bundled": {"type": "integer"}, "minified": {"type": "integer"}, "gzipped": {"type": "integer"}, "treeshaked": {"type": "object", "properties": {"rollup": {"type": "object", "properties": {"code": {"type": "integer"}, "import_statements": {"type": "integer"}}, "required": ["code", "import_statements"]}, "webpack": {"type": "object", "properties": {"code": {"type": "integer"}}, "required": ["code"]}}, "required": ["rollup", "webpack"]}}, "required": ["bundled", "minified", "gzipped", "treeshaked"]}}, "required": ["./dist/react-big-calendar.js", "./dist/react-big-calendar.min.js", "dist/react-big-calendar.esm.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"./dist/react-big-calendar.js" : {"bundled" : 529315, "minified" : 156293, "gzipped" : 47707}, "./dist/react-big-calendar.min.js" : {"bundled" : 470146, "minified" : 139583, "gzipped" : 43610}, "dist/react-big-calendar.esm.js" : {"bundled" : 177934, "minified" : 84390, "gzipped" : 21034, "treeshaked" : {"rollup" : {"code" : 60274, "import_statements" : 1595}, "webpack" : {"code" : 64829}}}}
json_instruct
{"type": "object", "properties": {"./dist/react-big-calendar.js": {"type": "object", "properties": {"bundled": {"type": "integer"}, "minified": {"type": "integer"}, "gzipped": {"type": "integer"}}, "required": ["bundled", "minified", "gzipped"]}, "./dist/react-big-calendar.min.js": {"type": "object", "properties": {"bundled": {"type": "integer"}, "minified": {"type": "integer"}, "gzipped": {"type": "integer"}}, "required": ["bundled", "minified", "gzipped"]}, "dist/react-big-calendar.esm.js": {"type": "object", "properties": {"bundled": {"type": "integer"}, "minified": {"type": "integer"}, "gzipped": {"type": "integer"}, "treeshaked": {"type": "object", "properties": {"rollup": {"type": "object", "properties": {"code": {"type": "integer"}, "import_statements": {"type": "integer"}}, "required": ["code", "import_statements"]}, "webpack": {"type": "object", "properties": {"code": {"type": "integer"}}, "required": ["code"]}}, "required": ["rollup", "webpack"]}}, "required": ["bundled", "minified", "gzipped", "treeshaked"]}}, "required": ["./dist/react-big-calendar.js", "./dist/react-big-calendar.min.js", "dist/react-big-calendar.esm.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"baseObjects": {"type": "array", "items": {"type": "string"}}, "returnObjects": {"type": "array", "items": {"type": "string"}}, "callbackArgs": {"type": "array", "items": {"type": "object", "properties": {"0": {"type": "integer"}, "1": {"type": "integer"}, "2": {"type": "array", "items": {"type": "integer"}}}, "required": ["0", "1", "2"]}}}, "required": ["baseObjects", "returnObjects", "callbackArgs"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"baseObjects" : ["[843,403,783,0]", "[843,403,783,0]", "[843,403,783,0]", "[843,403,783,0]"], "returnObjects" : ["\"Error\"", "\"Error\"", "\"Error\"", "\"Error\""], "callbackArgs" : [{"0" : 843, "1" : 0, "2" : [843, 403, 783, 0]}, {"0" : 843, "1" : 0, "2" : [843, 403, 783, 0]}, {"0" : 843, "1" : 0, "2" : [843, 403, 783, 0]}, {"0" : 843, "1" : 0, "2" : [843, 403, 783, 0]}]}
json_instruct
{"type": "object", "properties": {"baseObjects": {"type": "array", "items": {"type": "string"}}, "returnObjects": {"type": "array", "items": {"type": "string"}}, "callbackArgs": {"type": "array", "items": {"type": "object", "properties": {"0": {"type": "integer"}, "1": {"type": "integer"}, "2": {"type": "array", "items": {"type": "integer"}}}, "required": ["0", "1", "2"]}}}, "required": ["baseObjects", "returnObjects", "callbackArgs"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "repository": {"type": "string"}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "dependencies": {"type": "object", "properties": {"jquery": {"type": "string"}, "fontawesome": {"type": "string"}}, "required": ["jquery", "fontawesome"]}, "keywords": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "version", "description", "repository", "author", "license", "bugs", "homepage", "dependencies", "keywords"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "jQuery-Github-Feed", "version" : "1.0.0", "description" : "This is a small and simple jQuery plugin to make github repositories, activity and gists widget from multiple accounts.", "repository" : "bachors/jQuery-Github-Feed", "author" : "Ican Bachors", "license" : "MIT", "bugs" : {"url" : "https://github.com/bachors/jQuery-Github-Feed/issues"}, "homepage" : "https://github.com/bachors/jQuery-Github-Feed", "dependencies" : {"jquery" : "^2.1.3", "fontawesome" : "^4.7.0"}, "keywords" : ["github", "feed", "repositories", "git"]}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "repository": {"type": "string"}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "dependencies": {"type": "object", "properties": {"jquery": {"type": "string"}, "fontawesome": {"type": "string"}}, "required": ["jquery", "fontawesome"]}, "keywords": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "version", "description", "repository", "author", "license", "bugs", "homepage", "dependencies", "keywords"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"id": {"type": "integer"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"src:alt_label": {"type": "string"}, "src:geom": {"type": "string"}, "wof:geomhash": {"type": "string"}, "wof:id": {"type": "integer"}, "wof:repo": {"type": "string"}}, "required": ["src:alt_label", "src:geom", "wof:geomhash", "wof:id", "wof:repo"]}, "bbox": {"type": "array", "items": {"type": "number"}}, "geometry": {"type": "object", "properties": {"coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}, "type": {"type": "string"}}, "required": ["coordinates", "type"]}}, "required": ["id", "type", "properties", "bbox", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : 101900597, "type" : "Feature", "properties" : {"src:alt_label" : "quattroshapes", "src:geom" : "quattroshapes", "wof:geomhash" : "0283395f0a1335b0e57b8bf527dfec6f", "wof:id" : 101900597, "wof:repo" : "whosonfirst-data-admin-fr"}, "bbox" : [3.09230007867183, 49.90709668433703, 3.10491152386686, 49.91386556682636], "geometry" : {"coordinates" : [[[3.10149266392341, 49.91386556682636], [3.10175067739374, 49.91207635870359], [3.10313768750496, 49.91216074956515], [3.10339562580521, 49.91037153598961], [3.10478258928737, 49.91045590631762], [3.10491152386686, 49.90956129703335], [3.10352458592882, 49.90947692851478], [3.10365354003505, 49.90858232058162], [3.10087972863227, 49.90841353642378], [3.10100872780504, 49.90751893165179], [3.09407440512808, 49.90709668433703], [3.09394527825373, 49.90799128005381], [3.09255840157857, 49.90790677804182], [3.09230007867183, 49.90969596447462], [3.09368700642972, 49.90978047011106], [3.09342871050251, 49.91156965833301], [3.09481569381615, 49.91165415068019], [3.09468656235862, 49.91254874591522], [3.0960735756866, 49.91263322316013], [3.0962026815987, 49.91173862611322], [3.10036367174672, 49.91199195092753], [3.10010560718109, 49.91378115542938], [3.10149266392341, 49.91386556682636]]], "type" : "Polygon"}}
json_instruct
{"type": "object", "properties": {"id": {"type": "integer"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"src:alt_label": {"type": "string"}, "src:geom": {"type": "string"}, "wof:geomhash": {"type": "string"}, "wof:id": {"type": "integer"}, "wof:repo": {"type": "string"}}, "required": ["src:alt_label", "src:geom", "wof:geomhash", "wof:id", "wof:repo"]}, "bbox": {"type": "array", "items": {"type": "number"}}, "geometry": {"type": "object", "properties": {"coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}, "type": {"type": "string"}}, "required": ["coordinates", "type"]}}, "required": ["id", "type", "properties", "bbox", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"new_version": {"type": "string"}}, "required": ["new_version"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"new_version" : "0.9.18"}
json_instruct
{"type": "object", "properties": {"new_version": {"type": "string"}}, "required": ["new_version"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"btn": {"type": "object", "properties": {"signin": {"type": "string"}, "signup": {"type": "string"}, "send": {"type": "string"}}, "required": ["signin", "signup", "send"]}, "form": {"type": "object", "properties": {"placeholder": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}, "message": {"type": "string"}}, "required": ["name", "email", "message"]}}, "required": ["placeholder"]}, "social": {"type": "object", "properties": {"title": {"type": "string"}}, "required": ["title"]}, "footer": {"type": "object", "properties": {"writeToUs": {"type": "string"}}, "required": ["writeToUs"]}}, "required": ["btn", "form", "social", "footer"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"btn" : {"signin" : "Sign in", "signup" : "Sign up", "send" : "Send"}, "form" : {"placeholder" : {"name" : "Name", "email" : "Email", "message" : "Message"}}, "social" : {"title" : "Follow us"}, "footer" : {"writeToUs" : "Write to us"}}
json_instruct
{"type": "object", "properties": {"btn": {"type": "object", "properties": {"signin": {"type": "string"}, "signup": {"type": "string"}, "send": {"type": "string"}}, "required": ["signin", "signup", "send"]}, "form": {"type": "object", "properties": {"placeholder": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}, "message": {"type": "string"}}, "required": ["name", "email", "message"]}}, "required": ["placeholder"]}, "social": {"type": "object", "properties": {"title": {"type": "string"}}, "required": ["title"]}, "footer": {"type": "object", "properties": {"writeToUs": {"type": "string"}}, "required": ["writeToUs"]}}, "required": ["btn", "form", "social", "footer"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "array", "items": {}}}, "required": ["contract", "tool", "start", "end", "duration", "analysis"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"contract" : "0x9fb2fd4bce3061b826bf1a0b53b737c6f3e0e586", "tool" : "osiris", "start" : 1564629796.5130734, "end" : 1564629799.173184, "duration" : 2.6601104736328125, "analysis" : []}
json_instruct
{"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "array", "items": {}}}, "required": ["contract", "tool", "start", "end", "duration", "analysis"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"uuid": {"type": "string"}, "children": {"type": "array", "items": {"type": "string"}}, "befores": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "status": {"type": "string"}, "start": {"type": "integer"}, "stop": {"type": "integer"}}, "required": ["name", "status", "start", "stop"]}}, "start": {"type": "integer"}, "stop": {"type": "integer"}}, "required": ["uuid", "children", "befores", "start", "stop"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"uuid" : "0b0352e3-030e-4514-8d5a-b4c51d3078e8", "children" : ["805f4c79-050d-4dee-83ed-52464b0e68f1"], "befores" : [{"name" : "app", "status" : "passed", "start" : 1618250986528, "stop" : 1618250986618}], "start" : 1618250986528, "stop" : 1618250986630}
json_instruct
{"type": "object", "properties": {"uuid": {"type": "string"}, "children": {"type": "array", "items": {"type": "string"}}, "befores": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "status": {"type": "string"}, "start": {"type": "integer"}, "stop": {"type": "integer"}}, "required": ["name", "status", "start", "stop"]}}, "start": {"type": "integer"}, "stop": {"type": "integer"}}, "required": ["uuid", "children", "befores", "start", "stop"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"id": {"type": "string"}, "district_id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "district_id", "name"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : "7311090012", "district_id" : "7311090", "name" : "CINNONG"}
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "district_id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "district_id", "name"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"directions": {"type": "array", "items": {"type": "string"}}, "ingredients": {"type": "array", "items": {"type": "string"}}, "language": {"type": "string"}, "source": {"type": "string"}, "tags": {"type": "array", "items": {}}, "title": {"type": "string"}, "url": {"type": "string"}}, "required": ["directions", "ingredients", "language", "source", "tags", "title", "url"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"directions" : ["Preheat oven to 350 degrees F (175 degrees C). Grease a 9x13 baking dish.", "Warm oil in a small skillet. Use tongs to dip tortillas into the oil one at a time, turning to warm both sides. Sprinkle an even amount of Cheddar cheese down the center of each warmed tortilla. Roll tortillas to enclose cheese; place seam side down in the prepared baking dish.", "Combine the chili, onion, and half of the processed cheese in a large bowl. Pour the chili mixture over the tortillas; top with the remaining processed cheese.", "Bake in the preheated oven until hot and bubbly, about 20 minutes."], "ingredients" : ["1/4 cup vegetable oil", "1 (10 ounce) package corn tortillas", "1 (16 ounce) package Cheddar cheese, grated", "2 (19 ounce) cans chili without beans (such as Wolf Brand \u00ae)", "1 small onion, chopped", "1 (8 ounce) package processed cheese, cubed, divided"], "language" : "en-US", "source" : "allrecipes.com", "tags" : [], "title" : "Cheesy Chili Enchiladas", "url" : "http://allrecipes.com/recipe/89196/cheesy-chili-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#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"id": {"type": "string"}, "kind": {"type": "string"}, "name": {"type": "string"}, "properties": {"type": "object", "properties": {"collection": {"type": "object", "properties": {"referenceName": {"type": "string"}, "type": {"type": "string"}}, "required": ["referenceName", "type"]}, "endpoint": {"type": "string"}, "location": {"type": "string"}, "resourceGroup": {"type": "string"}, "resourceName": {"type": "string"}, "subscriptionId": {"type": "string"}}, "required": ["collection", "endpoint", "location", "resourceGroup", "resourceName", "subscriptionId"]}}, "required": ["id", "kind", "name", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : "datasources/AzureFileService", "kind" : "AzureFileService", "name" : "AzureFileService", "properties" : {"collection" : {"referenceName" : "qaomdj", "type" : "CollectionReference"}, "endpoint" : "https://scanbrazilsouthcrkbyzq.file.core.windows.net/", "location" : "brazilsouth", "resourceGroup" : "managed-rg-twyqlvx", "resourceName" : "scanbrazilsouthcrkbyzq", "subscriptionId" : "2c334b6c-e556-40ac-a4c0-c0d1d2e08ca0"}}
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "kind": {"type": "string"}, "name": {"type": "string"}, "properties": {"type": "object", "properties": {"collection": {"type": "object", "properties": {"referenceName": {"type": "string"}, "type": {"type": "string"}}, "required": ["referenceName", "type"]}, "endpoint": {"type": "string"}, "location": {"type": "string"}, "resourceGroup": {"type": "string"}, "resourceName": {"type": "string"}, "subscriptionId": {"type": "string"}}, "required": ["collection", "endpoint", "location", "resourceGroup", "resourceName", "subscriptionId"]}}, "required": ["id", "kind", "name", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"type": {"type": "string"}, "objects": {"type": "object", "properties": {"E01001468": {"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": ["E01001468"]}, "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" : {"E01001468" : {"type" : "GeometryCollection", "crs" : {"type" : "name", "properties" : {"name" : "urn:ogc:def:crs:OGC:1.3:CRS84"}}, "geometries" : [{"type" : "Polygon", "properties" : {"OA11CD" : "E00007324", "LAD11CD" : "E09000010"}, "arcs" : [[0, 1, 2, 3, 4]]}, {"type" : "Polygon", "properties" : {"OA11CD" : "E00007325", "LAD11CD" : "E09000010"}, "arcs" : [[5, -2, 6]]}, {"type" : "Polygon", "properties" : {"OA11CD" : "E00007326", "LAD11CD" : "E09000010"}, "arcs" : [[-7, -1, 7]]}, {"type" : "Polygon", "properties" : {"OA11CD" : "E00007327", "LAD11CD" : "E09000010"}, "arcs" : [[-4, 8]]}]}}, "arcs" : [[[2643, 484], [741, 1070], [1072, 760], [-608, 561], [277, 379], [-1297, 624]], [[2828, 3878], [-234, 730], [368, 175], [109, 442], [-902, 650]], [[2169, 5875], [1313, 4124], [2139, -1360], [1819, -856], [1108, -2607], [1222, -1877]], [[9770, 3299], [-1221, -405], [-247, 379], [-1392, -556]], [[6910, 2717], [46, -997], [-1632, 43], [-482, -428], [-692, 150], [-1507, -1001]], [[1584, 5388], [336, -258], [249, 745]], [[2828, 3878], [-73, -324], [-160, 270], [-925, 30], [190, 166], [-272, 150], [124, 749], [-314, 70], [186, 399]], [[2643, 484], [-1193, -484], [-1036, 1049], [-166, 1178], [354, 1182], [-602, 69], [735, 1454], [593, 662], [256, -206]], [[9770, 3299], [229, -304], [-1773, -783], [188, -473], [-246, -124], [-679, 36], [-579, 1066]]], "transform" : {"scale" : [1.6804261067445753e-06, 1.129373991336958e-06], "translate" : [-0.113198191953713, 51.6614439931607]}}
json_instruct
{"type": "object", "properties": {"type": {"type": "string"}, "objects": {"type": "object", "properties": {"E01001468": {"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": ["E01001468"]}, "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#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"name": {"type": "string"}, "number": {"type": "string"}, "is_illegal": {"type": "boolean"}, "text": {"type": "string"}, "type": {"type": "string"}, "is_monster": {"type": "boolean"}, "is_spell": {"type": "boolean"}, "is_trap": {"type": "boolean"}, "property": {"type": "string"}}, "required": ["name", "number", "is_illegal", "text", "type", "is_monster", "is_spell", "is_trap", "property"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "Dimensional Inversion", "number" : "98666339", "is_illegal" : false, "text" : "Activate only when a monster(s) you own is removed from play by an opponent's effect. Special Summon 1 of those monsters.", "type" : "Trap", "is_monster" : false, "is_spell" : false, "is_trap" : true, "property" : "Normal"}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "number": {"type": "string"}, "is_illegal": {"type": "boolean"}, "text": {"type": "string"}, "type": {"type": "string"}, "is_monster": {"type": "boolean"}, "is_spell": {"type": "boolean"}, "is_trap": {"type": "boolean"}, "property": {"type": "string"}}, "required": ["name", "number", "is_illegal", "text", "type", "is_monster", "is_spell", "is_trap", "property"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "is_illegal": {"type": "boolean"}, "is_custom": {"type": "boolean"}, "text": {"type": "string"}, "images": {"type": "array", "items": {"type": "string"}}, "type": {"type": "string"}, "attribute": {"type": "string"}, "atk": {"type": "integer"}, "species": {"type": "string"}, "monster_type": {"type": "string"}, "is_pendulum": {"type": "boolean"}, "ability": {"type": "string"}, "has_effect": {"type": "boolean"}, "def": {"type": "integer"}, "level": {"type": "integer"}, "is_tuner": {"type": "boolean"}}, "required": ["id", "name", "is_illegal", "is_custom", "text", "images", "type", "attribute", "atk", "species", "monster_type", "is_pendulum", "ability", "has_effect", "def", "level", "is_tuner"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : 34408491, "name" : "Beelze of the Diabolic Dragons", "is_illegal" : false, "is_custom" : false, "text" : "1 DARK Tuner + 1+ non-Tuner monsters\nCannot be destroyed by battle or card effects. If you take damage from an attack involving this card, or from an opponent's card effect: This card gains ATK equal to the damage you took.", "images" : ["https://storage.googleapis.com/ygoprodeck.com/pics/34408491.jpg"], "type" : "Monster", "attribute" : "DARK", "atk" : 3000, "species" : "Dragon", "monster_type" : "Synchro", "is_pendulum" : false, "ability" : "", "has_effect" : true, "def" : 3000, "level" : 8, "is_tuner" : false}
json_instruct
{"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "is_illegal": {"type": "boolean"}, "is_custom": {"type": "boolean"}, "text": {"type": "string"}, "images": {"type": "array", "items": {"type": "string"}}, "type": {"type": "string"}, "attribute": {"type": "string"}, "atk": {"type": "integer"}, "species": {"type": "string"}, "monster_type": {"type": "string"}, "is_pendulum": {"type": "boolean"}, "ability": {"type": "string"}, "has_effect": {"type": "boolean"}, "def": {"type": "integer"}, "level": {"type": "integer"}, "is_tuner": {"type": "boolean"}}, "required": ["id", "name", "is_illegal", "is_custom", "text", "images", "type", "attribute", "atk", "species", "monster_type", "is_pendulum", "ability", "has_effect", "def", "level", "is_tuner"], "$schema": "http://json-schema.org/draft-07/schema#"}