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": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"word" : "prosaicism", "definition" : "The quality or state of being prosaic; a prosaic manner or style. [R.] Poe."} | json_instruct | {"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$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-01-15T21:00:00Z", "Temp" : 9.3, "RelHum" : 92, "WindSpeed" : 1.8, "WindDir" : 114} | 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": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "dependencies": {"type": "object", "properties": {"dotenv": {"type": "string"}, "express": {"type": "string"}, "inquirer": {"type": "string"}, "mysql2": {"type": "string"}, "sequelize": {"type": "string"}}, "required": ["dotenv", "express", "inquirer", "mysql2", "sequelize"]}, "devDependencies": {"type": "object", "properties": {}, "required": []}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "start": {"type": "string"}}, "required": ["test", "start"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}}, "required": ["name", "version", "description", "main", "dependencies", "devDependencies", "scripts", "repository", "author", "license", "bugs", "homepage"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "employee-tracker-hw12", "version" : "1.0.0", "description" : "An app to track employee details within a database", "main" : "app.js", "dependencies" : {"dotenv" : "^10.0.0", "express" : "^4.17.1", "inquirer" : "^8.2.0", "mysql2" : "^2.3.3", "sequelize" : "^6.9.0"}, "devDependencies" : {}, "scripts" : {"test" : "echo \"Error: no test specified\" && exit 1", "start" : "node app.js"}, "repository" : {"type" : "git", "url" : "git+https://github.com/nicoletr/employee-tracker-HW12.git"}, "author" : "", "license" : "MIT", "bugs" : {"url" : "https://github.com/nicoletr/employee-tracker-HW12/issues"}, "homepage" : "https://github.com/nicoletr/employee-tracker-HW12#readme"} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "dependencies": {"type": "object", "properties": {"dotenv": {"type": "string"}, "express": {"type": "string"}, "inquirer": {"type": "string"}, "mysql2": {"type": "string"}, "sequelize": {"type": "string"}}, "required": ["dotenv", "express", "inquirer", "mysql2", "sequelize"]}, "devDependencies": {"type": "object", "properties": {}, "required": []}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "start": {"type": "string"}}, "required": ["test", "start"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}}, "required": ["name", "version", "description", "main", "dependencies", "devDependencies", "scripts", "repository", "author", "license", "bugs", "homepage"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"$schema": {"type": "string"}, "profiles": {"type": "object", "properties": {}, "required": []}, "schemes": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "author": {"type": "string"}, "foreground": {"type": "string"}, "background": {"type": "string"}, "cursorColor": {"type": "string"}, "selectionBackground": {"type": "string"}, "black": {"type": "string"}, "red": {"type": "string"}, "green": {"type": "string"}, "yellow": {"type": "string"}, "blue": {"type": "string"}, "purple": {"type": "string"}, "cyan": {"type": "string"}, "white": {"type": "string"}, "brightBlack": {"type": "string"}, "brightRed": {"type": "string"}, "brightGreen": {"type": "string"}, "brightYellow": {"type": "string"}, "brightBlue": {"type": "string"}, "brightPurple": {"type": "string"}, "brightCyan": {"type": "string"}, "brightWhite": {"type": "string"}}, "required": ["name", "author", "foreground", "background", "cursorColor", "selectionBackground", "black", "red", "green", "yellow", "blue", "purple", "cyan", "white", "brightBlack", "brightRed", "brightGreen", "brightYellow", "brightBlue", "brightPurple", "brightCyan", "brightWhite"]}}, "keybindings": {"type": "array", "items": {}}}, "required": ["$schema", "profiles", "schemes", "keybindings"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"$schema" : "https://aka.ms/terminal-profiles-schema", "profiles" : {}, "schemes" : [{"name" : "Pigeon Dark", "author" : "Moenupa", "foreground" : "#D4D4D4", "background" : "#1E1E1E", "cursorColor" : "#FFFFFF", "selectionBackground" : "#999999", "black" : "#1E1E1E", "red" : "#CC6666", "green" : "#8FCC66", "yellow" : "#CCB866", "blue" : "#66A3CC", "purple" : "#B866CC", "cyan" : "#66CCA3", "white" : "#999999", "brightBlack" : "#666666", "brightRed" : "#FF8080", "brightGreen" : "#B2FF80", "brightYellow" : "#FFE680", "brightBlue" : "#80CCFF", "brightPurple" : "#E680FF", "brightCyan" : "#80FFCC", "brightWhite" : "#EFEFEF"}], "keybindings" : []} | json_instruct | {"type": "object", "properties": {"$schema": {"type": "string"}, "profiles": {"type": "object", "properties": {}, "required": []}, "schemes": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "author": {"type": "string"}, "foreground": {"type": "string"}, "background": {"type": "string"}, "cursorColor": {"type": "string"}, "selectionBackground": {"type": "string"}, "black": {"type": "string"}, "red": {"type": "string"}, "green": {"type": "string"}, "yellow": {"type": "string"}, "blue": {"type": "string"}, "purple": {"type": "string"}, "cyan": {"type": "string"}, "white": {"type": "string"}, "brightBlack": {"type": "string"}, "brightRed": {"type": "string"}, "brightGreen": {"type": "string"}, "brightYellow": {"type": "string"}, "brightBlue": {"type": "string"}, "brightPurple": {"type": "string"}, "brightCyan": {"type": "string"}, "brightWhite": {"type": "string"}}, "required": ["name", "author", "foreground", "background", "cursorColor", "selectionBackground", "black", "red", "green", "yellow", "blue", "purple", "cyan", "white", "brightBlack", "brightRed", "brightGreen", "brightYellow", "brightBlue", "brightPurple", "brightCyan", "brightWhite"]}}, "keybindings": {"type": "array", "items": {}}}, "required": ["$schema", "profiles", "schemes", "keybindings"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "scripts": {"type": "object", "properties": {"lint": {"type": "string"}, "test": {"type": "string"}, "set-qa-tests-env": {"type": "string"}, "clear-qa-tests-env": {"type": "string"}, "qa-tests": {"type": "string"}}, "required": ["lint", "test", "set-qa-tests-env", "clear-qa-tests-env", "qa-tests"]}, "bin": {"type": "object", "properties": {"update-fidc": {"type": "string"}}, "required": ["update-fidc"]}, "author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"dotenv": {"type": "string"}, "fs-extra": {"type": "string"}, "node-fetch": {"type": "string"}, "replace-in-file": {"type": "string"}, "yargs": {"type": "string"}}, "required": ["dotenv", "fs-extra", "node-fetch", "replace-in-file", "yargs"]}, "devDependencies": {"type": "object", "properties": {"husky": {"type": "string"}, "jest": {"type": "string"}, "newman": {"type": "string"}, "newman-env": {"type": "string"}, "newman-reporter-htmlextra": {"type": "string"}, "standard": {"type": "string"}}, "required": ["husky", "jest", "newman", "newman-env", "newman-reporter-htmlextra", "standard"]}, "standard": {"type": "object", "properties": {"env": {"type": "array", "items": {"type": "string"}}, "ignore": {"type": "array", "items": {"type": "string"}}}, "required": ["env", "ignore"]}, "husky": {"type": "object", "properties": {"hooks": {"type": "object", "properties": {"pre-commit": {"type": "string"}}, "required": ["pre-commit"]}}, "required": ["hooks"]}}, "required": ["name", "version", "description", "scripts", "bin", "author", "license", "dependencies", "devDependencies", "standard", "husky"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "forgerock-cloud-config", "version" : "1.0.0", "description" : "", "scripts" : {"lint" : "standard", "test" : "jest --coverage", "set-qa-tests-env" : "newman-env run ./qa-tests/env.postman_environment.json", "clear-qa-tests-env" : "newman-env run ./qa-tests/env.postman_environment.json --env-var platformUrl=null --env-var ClientId=null --env-var username=null --env-var password=null --env-var realm=realms/root/realms/alpha --env-var IDCloudAdminUsername=null --env-var IDCloudAdminPassword=null --env-var cookie_Name=null --env-var ClientSecret=null", "qa-tests" : "node ./qa-tests/TestRunner.js"}, "bin" : {"update-fidc" : "./index.js"}, "author" : "Amido", "license" : "ISC", "dependencies" : {"dotenv" : "^8.2.0", "fs-extra" : "^9.1.0", "node-fetch" : "^2.6.1", "replace-in-file" : "^6.2.0", "yargs" : "^16.2.0"}, "devDependencies" : {"husky" : "^4.3.8", "jest" : "^26.6.3", "newman" : "^5.2.2", "newman-env" : "^1.0.1", "newman-reporter-htmlextra" : "^1.20.1", "standard" : "^16.0.3"}, "standard" : {"env" : ["jest"], "ignore" : ["config/**/*.js"]}, "husky" : {"hooks" : {"pre-commit" : "npm run lint && npm test"}}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "scripts": {"type": "object", "properties": {"lint": {"type": "string"}, "test": {"type": "string"}, "set-qa-tests-env": {"type": "string"}, "clear-qa-tests-env": {"type": "string"}, "qa-tests": {"type": "string"}}, "required": ["lint", "test", "set-qa-tests-env", "clear-qa-tests-env", "qa-tests"]}, "bin": {"type": "object", "properties": {"update-fidc": {"type": "string"}}, "required": ["update-fidc"]}, "author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"dotenv": {"type": "string"}, "fs-extra": {"type": "string"}, "node-fetch": {"type": "string"}, "replace-in-file": {"type": "string"}, "yargs": {"type": "string"}}, "required": ["dotenv", "fs-extra", "node-fetch", "replace-in-file", "yargs"]}, "devDependencies": {"type": "object", "properties": {"husky": {"type": "string"}, "jest": {"type": "string"}, "newman": {"type": "string"}, "newman-env": {"type": "string"}, "newman-reporter-htmlextra": {"type": "string"}, "standard": {"type": "string"}}, "required": ["husky", "jest", "newman", "newman-env", "newman-reporter-htmlextra", "standard"]}, "standard": {"type": "object", "properties": {"env": {"type": "array", "items": {"type": "string"}}, "ignore": {"type": "array", "items": {"type": "string"}}}, "required": ["env", "ignore"]}, "husky": {"type": "object", "properties": {"hooks": {"type": "object", "properties": {"pre-commit": {"type": "string"}}, "required": ["pre-commit"]}}, "required": ["hooks"]}}, "required": ["name", "version", "description", "scripts", "bin", "author", "license", "dependencies", "devDependencies", "standard", "husky"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "version": {"type": "string"}, "type": {"type": "string"}, "license": {"type": "string"}}, "required": ["name", "description", "version", "type", "license"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "kirby-fieldecho", "description" : "Kirby CMS Tag to echo fields of current Page-Object", "version" : "1.0.0", "type" : "kirby-plugin", "license" : "MIT"} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "version": {"type": "string"}, "type": {"type": "string"}, "license": {"type": "string"}}, "required": ["name", "description", "version", "type", "license"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "array", "items": {"type": "object", "properties": {"label": {"type": "string"}, "normalizedVertices": {"type": "array", "items": {"type": "object", "properties": {"x": {"type": "number"}, "y": {"type": "number"}}, "required": ["x", "y"]}}, "score": {"type": "number"}}, "required": ["label", "normalizedVertices", "score"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"label" : "Animal", "normalizedVertices" : [{"x" : 0.2107936, "y" : 0.47174206}, {"x" : 0.3342714, "y" : 0.47174206}, {"x" : 0.3342714, "y" : 0.6744624}, {"x" : 0.2107936, "y" : 0.6744624}], "score" : 0.6397696}, {"label" : "Deer", "normalizedVertices" : [{"x" : 0.2107936, "y" : 0.47174206}, {"x" : 0.3342714, "y" : 0.47174206}, {"x" : 0.3342714, "y" : 0.6744624}, {"x" : 0.2107936, "y" : 0.6744624}], "score" : 0.5671992}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"label": {"type": "string"}, "normalizedVertices": {"type": "array", "items": {"type": "object", "properties": {"x": {"type": "number"}, "y": {"type": "number"}}, "required": ["x", "y"]}}, "score": {"type": "number"}}, "required": ["label", "normalizedVertices", "score"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "license": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}}, "require": {"type": "object", "properties": {"php": {"type": "string"}, "illuminate/filesystem": {"type": "string"}, "illuminate/support": {"type": "string"}, "pingpong/support": {"type": "string"}, "doctrine/dbal": {"type": "string"}}, "required": ["php", "illuminate/filesystem", "illuminate/support", "pingpong/support", "doctrine/dbal"]}, "require-dev": {"type": "object", "properties": {"mockery/mockery": {"type": "string"}, "phpunit/phpunit": {"type": "string"}}, "required": ["mockery/mockery", "phpunit/phpunit"]}, "autoload": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"Pingpong\\Generators\\": {"type": "string"}}, "required": ["Pingpong\\Generators\\"]}}, "required": ["psr-4"]}, "minimum-stability": {"type": "string"}}, "required": ["name", "description", "license", "keywords", "authors", "require", "require-dev", "autoload", "minimum-stability"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "pingpong/generators", "description" : "Laravel Generators", "license" : "BSD-3-Clause", "keywords" : ["laravel", "generators", "pingpong"], "authors" : [{"name" : "Pingpong Labs", "email" : "pingpong.labs@gmail.com"}], "require" : {"php" : ">=5.4.0", "illuminate/filesystem" : "5.1.*", "illuminate/support" : "5.1.*", "pingpong/support" : "2.1.*", "doctrine/dbal" : "~2.5"}, "require-dev" : {"mockery/mockery" : "~0.9", "phpunit/phpunit" : "~4"}, "autoload" : {"psr-4" : {"Pingpong\\Generators\\" : ""}}, "minimum-stability" : "stable"} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "license": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}}, "require": {"type": "object", "properties": {"php": {"type": "string"}, "illuminate/filesystem": {"type": "string"}, "illuminate/support": {"type": "string"}, "pingpong/support": {"type": "string"}, "doctrine/dbal": {"type": "string"}}, "required": ["php", "illuminate/filesystem", "illuminate/support", "pingpong/support", "doctrine/dbal"]}, "require-dev": {"type": "object", "properties": {"mockery/mockery": {"type": "string"}, "phpunit/phpunit": {"type": "string"}}, "required": ["mockery/mockery", "phpunit/phpunit"]}, "autoload": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"Pingpong\\Generators\\": {"type": "string"}}, "required": ["Pingpong\\Generators\\"]}}, "required": ["psr-4"]}, "minimum-stability": {"type": "string"}}, "required": ["name", "description", "license", "keywords", "authors", "require", "require-dev", "autoload", "minimum-stability"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"word" : "blushingly", "definition" : "In a blushing manner; with a blush or blushes; as, to answer or confess blushingly."} | json_instruct | {"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"paths": {"type": "object", "properties": {"config": {"type": "array", "items": {"type": "string"}}, "output": {"type": "object", "properties": {"sassVariablesPath": {"type": "string"}, "jsonFileName": {"type": "string"}}, "required": ["sassVariablesPath", "jsonFileName"]}}, "required": ["config", "output"]}}, "required": ["paths"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"paths" : {"config" : ["config--libero.js"], "output" : {"sassVariablesPath" : "/source/css/sass/variables/", "jsonFileName" : "/source/js/derivedConfig.json"}}} | json_instruct | {"type": "object", "properties": {"paths": {"type": "object", "properties": {"config": {"type": "array", "items": {"type": "string"}}, "output": {"type": "object", "properties": {"sassVariablesPath": {"type": "string"}, "jsonFileName": {"type": "string"}}, "required": ["sassVariablesPath", "jsonFileName"]}}, "required": ["config", "output"]}}, "required": ["paths"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "object", "properties": {"en": {"type": "string"}}, "required": ["en"]}, "country": {"type": "string"}, "region": {"type": "string"}, "identifiers": {"type": "object", "properties": {"icao": {"type": "string"}, "wban": {"type": "string"}, "usaf": {"type": "string"}}, "required": ["icao", "wban", "usaf"]}, "location": {"type": "object", "properties": {"latitude": {"type": "number"}, "longitude": {"type": "number"}, "elevation": {"type": "integer"}}, "required": ["latitude", "longitude", "elevation"]}, "timezone": {"type": "string"}}, "required": ["id", "name", "country", "region", "identifiers", "location", "timezone"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "KIZG0", "name" : {"en" : "Fryeburg"}, "country" : "US", "region" : "ME", "identifiers" : {"icao" : "KIZG", "wban" : "54772", "usaf" : "726183"}, "location" : {"latitude" : 43.9833, "longitude" : -70.95, "elevation" : 138}, "timezone" : "America/New_York"} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "object", "properties": {"en": {"type": "string"}}, "required": ["en"]}, "country": {"type": "string"}, "region": {"type": "string"}, "identifiers": {"type": "object", "properties": {"icao": {"type": "string"}, "wban": {"type": "string"}, "usaf": {"type": "string"}}, "required": ["icao", "wban", "usaf"]}, "location": {"type": "object", "properties": {"latitude": {"type": "number"}, "longitude": {"type": "number"}, "elevation": {"type": "integer"}}, "required": ["latitude", "longitude", "elevation"]}, "timezone": {"type": "string"}}, "required": ["id", "name", "country", "region", "identifiers", "location", "timezone"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"946791686415": {"type": "object", "properties": {"type": {"type": "string"}, "bookName": {"type": "string"}, "subjectName": {"type": "string"}, "fName": {"type": "string"}}, "required": ["type", "bookName", "subjectName", "fName"]}}, "required": ["946791686415"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"946791686415" : {"type" : "book open", "bookName" : "Epic%20Quest", "subjectName" : "school", "fName" : "users/My0vYW5kcm9pZF9hc3NldC93d3cvc2Nob29sL0VwaWMlMjBRdWVzdC92YXJpYWJsZS1FUV9TYW1wbGVyLUVRX1NhbXBsZXIuaHRtbC1hbmFseXRpY3MtOTQ2NzkxNjg1OTk5.json"}} | json_instruct | {"type": "object", "properties": {"946791686415": {"type": "object", "properties": {"type": {"type": "string"}, "bookName": {"type": "string"}, "subjectName": {"type": "string"}, "fName": {"type": "string"}}, "required": ["type", "bookName", "subjectName", "fName"]}}, "required": ["946791686415"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "array", "items": {"type": "array", "items": {"type": "string"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [["330329106001", "\u817e\u9633\u793e\u533a", "121", "0"], ["330329106200", "\u4e2d\u6751\u6751\u59d4\u4f1a", "121", "0"], ["330329106201", "\u65b0\u8054\u6751\u59d4\u4f1a", "220", "0"], ["330329106202", "\u548c\u5e73\u6751\u59d4\u4f1a", "220", "0"], ["330329106205", "\u767d\u5de2\u6751\u59d4\u4f1a", "220", "0"], ["330329106207", "\u767e\u798f\u5ca9\u6751\u59d4\u4f1a", "220", "0"], ["330329106208", "\u57e0\u4e0b\u6751\u59d4\u4f1a", "220", "0"], ["330329106209", "\u627f\u5929\u6751\u59d4\u4f1a", "220", "0"], ["330329106210", "\u4e1c\u5b89\u6751\u59d4\u4f1a", "220", "0"], ["330329106212", "\u7ea2\u6731\u7530\u6751\u59d4\u4f1a", "220", "0"], ["330329106216", "\u83b2\u5934\u6751\u59d4\u4f1a", "220", "0"], ["330329106218", "\u6c90\u5cf0\u6751\u59d4\u4f1a", "220", "0"], ["330329106220", "\u5434\u5bb6\u58a9\u6751\u59d4\u4f1a", "220", "0"], ["330329106223", "\u96c5\u9633\u576a\u6751\u59d4\u4f1a", "220", "0"], ["330329106224", "\u798f\u6885\u6751\u59d4\u4f1a", "220", "0"], ["330329106225", "\u5cad\u579f\u6751\u59d4\u4f1a", "220", "0"], ["330329106226", "\u677e\u579f\u6751\u59d4\u4f1a", "121", "0"], ["330329106227", "\u4e0a\u4ec1\u6751\u59d4\u4f1a", "220", "0"], ["330329106228", "\u4e0b\u6751\u6751\u59d4\u4f1a", "220", "0"], ["330329106229", "\u4e0a\u6751\u6751\u59d4\u4f1a", "220", "0"], ["330329106230", "\u7075\u4e7e\u6751\u59d4\u4f1a", "220", "0"]] | json_instruct | {"type": "array", "items": {"type": "array", "items": {"type": "string"}}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"case": {"type": "integer"}, "local": {"type": "integer"}, "amend": {"type": "integer"}, "outside": {"type": "integer"}, "death": {"type": "integer"}, "date": {"type": "string"}, "brief": {"type": "string"}, "url": {"type": "string"}}, "required": ["case", "local", "amend", "outside", "death", "date", "brief", "url"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"case" : 10, "local" : 6, "amend" : 0, "outside" : 4, "death" : 12, "date" : "2021-08-07", "brief" : "\u767c\u4f48\u65e5\u671f\uff1a2021-08-07 \u4e2d\u592e\u6d41\u884c\u75ab\u60c5\u6307\u63ee\u4e2d\u5fc3\u4eca(7)\u65e5\u516c\u5e03\u570b\u5167\u65b0\u589e10\u4f8bCOVID-19\u78ba\u5b9a\u75c5\u4f8b\uff0c\u5206\u5225\u70ba6\u4f8b\u672c\u571f\u53ca4\u4f8b\u5883\u5916\u79fb\u5165\uff1b\u53e6\u78ba\u8a3a\u500b\u6848\u4e2d\u65b0\u589e12\u4f8b\u6b7b\u4ea1\u3002", "url" : "https://www.cdc.gov.tw/Bulletin/Detail/rEkGqTzLoF3TtCb1mBaaSg?typeid=9"} | json_instruct | {"type": "object", "properties": {"case": {"type": "integer"}, "local": {"type": "integer"}, "amend": {"type": "integer"}, "outside": {"type": "integer"}, "death": {"type": "integer"}, "date": {"type": "string"}, "brief": {"type": "string"}, "url": {"type": "string"}}, "required": ["case", "local", "amend", "outside", "death", "date", "brief", "url"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "main": {"type": "string"}, "license": {"type": "string"}, "private": {"type": "boolean"}, "workspaces": {"type": "array", "items": {"type": "string"}}, "dependencies": {"type": "object", "properties": {"aws-sam-local": {"type": "string"}, "babel-eslint": {"type": "string"}, "eslint": {"type": "string"}, "eslint-config-airbnb-base": {"type": "string"}, "eslint-plugin-import": {"type": "string"}, "jest": {"type": "string"}, "jest-runner-eslint": {"type": "string"}, "prettier": {"type": "string"}, "serverless": {"type": "string"}}, "required": ["aws-sam-local", "babel-eslint", "eslint", "eslint-config-airbnb-base", "eslint-plugin-import", "jest", "jest-runner-eslint", "prettier", "serverless"]}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "lint": {"type": "string"}}, "required": ["test", "lint"]}, "devDependencies": {"type": "object", "properties": {"eslint-config-prettier": {"type": "string"}, "eslint-plugin-prettier": {"type": "string"}}, "required": ["eslint-config-prettier", "eslint-plugin-prettier"]}}, "required": ["name", "version", "main", "license", "private", "workspaces", "dependencies", "scripts", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "aws-utils", "version" : "1.0.0", "main" : "index.js", "license" : "Apache-2.0", "private" : true, "workspaces" : ["packages/**/*"], "dependencies" : {"aws-sam-local" : "^0.2.11", "babel-eslint" : "^8.2.3", "eslint" : "^4.19.1", "eslint-config-airbnb-base" : "^12.1.0", "eslint-plugin-import" : "^2.11.0", "jest" : "^23.1.0", "jest-runner-eslint" : "^0.5.0", "prettier" : "^1.12.1", "serverless" : "^1.35.0"}, "scripts" : {"test" : "yarn jest --coverage --detectOpenHandles --forceExit", "lint" : "yarn eslint ."}, "devDependencies" : {"eslint-config-prettier" : "^2.9.0", "eslint-plugin-prettier" : "^2.6.0"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "main": {"type": "string"}, "license": {"type": "string"}, "private": {"type": "boolean"}, "workspaces": {"type": "array", "items": {"type": "string"}}, "dependencies": {"type": "object", "properties": {"aws-sam-local": {"type": "string"}, "babel-eslint": {"type": "string"}, "eslint": {"type": "string"}, "eslint-config-airbnb-base": {"type": "string"}, "eslint-plugin-import": {"type": "string"}, "jest": {"type": "string"}, "jest-runner-eslint": {"type": "string"}, "prettier": {"type": "string"}, "serverless": {"type": "string"}}, "required": ["aws-sam-local", "babel-eslint", "eslint", "eslint-config-airbnb-base", "eslint-plugin-import", "jest", "jest-runner-eslint", "prettier", "serverless"]}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "lint": {"type": "string"}}, "required": ["test", "lint"]}, "devDependencies": {"type": "object", "properties": {"eslint-config-prettier": {"type": "string"}, "eslint-plugin-prettier": {"type": "string"}}, "required": ["eslint-config-prettier", "eslint-plugin-prettier"]}}, "required": ["name", "version", "main", "license", "private", "workspaces", "dependencies", "scripts", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"type": {"type": "string"}, "unknownProperty": {"type": "string"}}, "required": ["type", "unknownProperty"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"type" : "Schema", "unknownProperty" : "x"} | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "unknownProperty": {"type": "string"}}, "required": ["type", "unknownProperty"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"area": {"type": "object", "properties": {"id": {"type": "string"}, "iso-3166-1-code-list": {"type": "array", "items": {"type": "string"}}, "name": {"type": "string"}, "sort-name": {"type": "string"}}, "required": ["id", "iso-3166-1-code-list", "name", "sort-name"]}, "country": {"type": "string"}, "id": {"type": "string"}, "name": {"type": "string"}, "sort-name": {"type": "string"}, "type": {"type": "string"}}, "required": ["area", "country", "id", "name", "sort-name", "type"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"area" : {"id" : "0df04709-c7d8-3b55-a6ea-f3e5069a947b", "iso-3166-1-code-list" : ["AR"], "name" : "Argentina", "sort-name" : "Argentina"}, "country" : "AR", "id" : "08dd2dbb-a747-42a7-a139-33e8d1f4a133", "name" : "Cola de Pato", "sort-name" : "Cola de Pato", "type" : "Group"} | json_instruct | {"type": "object", "properties": {"area": {"type": "object", "properties": {"id": {"type": "string"}, "iso-3166-1-code-list": {"type": "array", "items": {"type": "string"}}, "name": {"type": "string"}, "sort-name": {"type": "string"}}, "required": ["id", "iso-3166-1-code-list", "name", "sort-name"]}, "country": {"type": "string"}, "id": {"type": "string"}, "name": {"type": "string"}, "sort-name": {"type": "string"}, "type": {"type": "string"}}, "required": ["area", "country", "id", "name", "sort-name", "type"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"text": {"type": "object", "properties": {"0": {"type": "object", "properties": {"m1": {"type": "string"}, "m2": {"type": "string"}}, "required": ["m1", "m2"]}}, "required": ["0"]}}, "required": ["text"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"text" : {"0" : {"m1" : "\u0645\u0648\u062c \u0648 \u0628\u062d\u0631 \u0648 \u062d\u0628\u0627\u0628 \u0627\u06cc \u062f\u0627\u0646\u0627", "m2" : "\u06af\u0631 \u0637\u0644\u0628 \u0645\u06cc\u200c\u06a9\u0646\u06cc \u0628\u062c\u0648 \u0627\u0632 \u0645\u0627"}}} | json_instruct | {"type": "object", "properties": {"text": {"type": "object", "properties": {"0": {"type": "object", "properties": {"m1": {"type": "string"}, "m2": {"type": "string"}}, "required": ["m1", "m2"]}}, "required": ["0"]}}, "required": ["text"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"new_version": {"type": "string"}}, "required": ["new_version"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"new_version" : "1.53.5"} | json_instruct | {"type": "object", "properties": {"new_version": {"type": "string"}}, "required": ["new_version"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"id": {"type": "integer"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"src:alt_label": {"type": "string"}, "src:geom": {"type": "string"}, "wof:geomhash": {"type": "string"}, "wof:id": {"type": "integer"}, "wof:repo": {"type": "string"}}, "required": ["src:alt_label", "src:geom", "wof:geomhash", "wof:id", "wof:repo"]}, "bbox": {"type": "array", "items": {"type": "number"}}, "geometry": {"type": "object", "properties": {"coordinates": {"type": "array", "items": {"type": "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" : 404351637, "type" : "Feature", "properties" : {"src:alt_label" : "quattroshapes", "src:geom" : "quattroshapes", "wof:geomhash" : "18a51ea2b5befdd28f1842d0bdc28390", "wof:id" : 404351637, "wof:repo" : "whosonfirst-data-admin-fr"}, "bbox" : [2.46023284418068, 42.5248354327047, 2.50637446109825, 42.61411092082243], "geometry" : {"coordinates" : [[[2.4721475077433, 42.5248354327047], [2.46529465288822, 42.5339438813571], [2.469921199605, 42.54382877386576], [2.46302020397171, 42.55656896497462], [2.46023284418068, 42.57001299702621], [2.46423257231429, 42.58346441713827], [2.46369830174364, 42.60056126087396], [2.46092251351561, 42.60332532259], [2.46942896619493, 42.60468947327653], [2.47478416024673, 42.61411092082243], [2.47775859624633, 42.61361303608631], [2.49338261246253, 42.60715218109788], [2.5038465734049, 42.59602626970534], [2.49576737455316, 42.58751963240637], [2.49531096252483, 42.57698998125699], [2.4959125403828, 42.56649240426815], [2.50578924709745, 42.55056339807599], [2.50637446109825, 42.54030869502511], [2.49661958606595, 42.52963726233597], [2.4721475077433, 42.5248354327047]]], "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": {"chromeWebSecurity": {"type": "boolean"}, "integrationFolder": {"type": "string"}, "modifyObstructiveCode": {"type": "boolean"}, "numTestsKeptInMemory": {"type": "integer"}, "reporter": {"type": "string"}, "retries": {"type": "object", "properties": {"openMode": {"type": "integer"}, "runMode": {"type": "integer"}}, "required": ["openMode", "runMode"]}, "video": {"type": "boolean"}}, "required": ["chromeWebSecurity", "integrationFolder", "modifyObstructiveCode", "numTestsKeptInMemory", "reporter", "retries", "video"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"chromeWebSecurity" : false, "integrationFolder" : "tests", "modifyObstructiveCode" : false, "numTestsKeptInMemory" : 0, "reporter" : "spec", "retries" : {"openMode" : 0, "runMode" : 4}, "video" : false} | json_instruct | {"type": "object", "properties": {"chromeWebSecurity": {"type": "boolean"}, "integrationFolder": {"type": "string"}, "modifyObstructiveCode": {"type": "boolean"}, "numTestsKeptInMemory": {"type": "integer"}, "reporter": {"type": "string"}, "retries": {"type": "object", "properties": {"openMode": {"type": "integer"}, "runMode": {"type": "integer"}}, "required": ["openMode", "runMode"]}, "video": {"type": "boolean"}}, "required": ["chromeWebSecurity", "integrationFolder", "modifyObstructiveCode", "numTestsKeptInMemory", "reporter", "retries", "video"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"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" : "0xf9a6d3e592900b08d2a8cae7a47c13e0feb3dab3", "tool" : "slither", "start" : 1563646488.264524, "end" : 1563646492.5204904, "duration" : 4.255966424942017, "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#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"word" : "erythrean", "definition" : "Red in color. \"The erythrean main.\" Milton."} | json_instruct | {"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"file": {"type": "string"}, "frames": {"type": "object", "properties": {"down": {"type": "object", "properties": {"x": {"type": "integer"}, "y": {"type": "integer"}, "w": {"type": "integer"}, "h": {"type": "integer"}, "offX": {"type": "integer"}, "offY": {"type": "integer"}, "sourceW": {"type": "integer"}, "sourceH": {"type": "integer"}}, "required": ["x", "y", "w", "h", "offX", "offY", "sourceW", "sourceH"]}, "left": {"type": "object", "properties": {"x": {"type": "integer"}, "y": {"type": "integer"}, "w": {"type": "integer"}, "h": {"type": "integer"}, "offX": {"type": "integer"}, "offY": {"type": "integer"}, "sourceW": {"type": "integer"}, "sourceH": {"type": "integer"}}, "required": ["x", "y", "w", "h", "offX", "offY", "sourceW", "sourceH"]}, "right": {"type": "object", "properties": {"x": {"type": "integer"}, "y": {"type": "integer"}, "w": {"type": "integer"}, "h": {"type": "integer"}, "offX": {"type": "integer"}, "offY": {"type": "integer"}, "sourceW": {"type": "integer"}, "sourceH": {"type": "integer"}}, "required": ["x", "y", "w", "h", "offX", "offY", "sourceW", "sourceH"]}, "super": {"type": "object", "properties": {"x": {"type": "integer"}, "y": {"type": "integer"}, "w": {"type": "integer"}, "h": {"type": "integer"}, "offX": {"type": "integer"}, "offY": {"type": "integer"}, "sourceW": {"type": "integer"}, "sourceH": {"type": "integer"}}, "required": ["x", "y", "w", "h", "offX", "offY", "sourceW", "sourceH"]}, "top": {"type": "object", "properties": {"x": {"type": "integer"}, "y": {"type": "integer"}, "w": {"type": "integer"}, "h": {"type": "integer"}, "offX": {"type": "integer"}, "offY": {"type": "integer"}, "sourceW": {"type": "integer"}, "sourceH": {"type": "integer"}}, "required": ["x", "y", "w", "h", "offX", "offY", "sourceW", "sourceH"]}}, "required": ["down", "left", "right", "super", "top"]}}, "required": ["file", "frames"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"file" : "buttons.png", "frames" : {"down" : {"x" : 0, "y" : 96, "w" : 46, "h" : 46, "offX" : 1, "offY" : 1, "sourceW" : 48, "sourceH" : 48}, "left" : {"x" : 48, "y" : 48, "w" : 46, "h" : 46, "offX" : 1, "offY" : 1, "sourceW" : 48, "sourceH" : 48}, "right" : {"x" : 0, "y" : 48, "w" : 46, "h" : 46, "offX" : 1, "offY" : 1, "sourceW" : 48, "sourceH" : 48}, "super" : {"x" : 48, "y" : 0, "w" : 46, "h" : 46, "offX" : 1, "offY" : 1, "sourceW" : 48, "sourceH" : 48}, "top" : {"x" : 0, "y" : 0, "w" : 46, "h" : 46, "offX" : 1, "offY" : 1, "sourceW" : 48, "sourceH" : 48}}} | json_instruct | {"type": "object", "properties": {"file": {"type": "string"}, "frames": {"type": "object", "properties": {"down": {"type": "object", "properties": {"x": {"type": "integer"}, "y": {"type": "integer"}, "w": {"type": "integer"}, "h": {"type": "integer"}, "offX": {"type": "integer"}, "offY": {"type": "integer"}, "sourceW": {"type": "integer"}, "sourceH": {"type": "integer"}}, "required": ["x", "y", "w", "h", "offX", "offY", "sourceW", "sourceH"]}, "left": {"type": "object", "properties": {"x": {"type": "integer"}, "y": {"type": "integer"}, "w": {"type": "integer"}, "h": {"type": "integer"}, "offX": {"type": "integer"}, "offY": {"type": "integer"}, "sourceW": {"type": "integer"}, "sourceH": {"type": "integer"}}, "required": ["x", "y", "w", "h", "offX", "offY", "sourceW", "sourceH"]}, "right": {"type": "object", "properties": {"x": {"type": "integer"}, "y": {"type": "integer"}, "w": {"type": "integer"}, "h": {"type": "integer"}, "offX": {"type": "integer"}, "offY": {"type": "integer"}, "sourceW": {"type": "integer"}, "sourceH": {"type": "integer"}}, "required": ["x", "y", "w", "h", "offX", "offY", "sourceW", "sourceH"]}, "super": {"type": "object", "properties": {"x": {"type": "integer"}, "y": {"type": "integer"}, "w": {"type": "integer"}, "h": {"type": "integer"}, "offX": {"type": "integer"}, "offY": {"type": "integer"}, "sourceW": {"type": "integer"}, "sourceH": {"type": "integer"}}, "required": ["x", "y", "w", "h", "offX", "offY", "sourceW", "sourceH"]}, "top": {"type": "object", "properties": {"x": {"type": "integer"}, "y": {"type": "integer"}, "w": {"type": "integer"}, "h": {"type": "integer"}, "offX": {"type": "integer"}, "offY": {"type": "integer"}, "sourceW": {"type": "integer"}, "sourceH": {"type": "integer"}}, "required": ["x", "y", "w", "h", "offX", "offY", "sourceW", "sourceH"]}}, "required": ["down", "left", "right", "super", "top"]}}, "required": ["file", "frames"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"demos": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "images": {"type": "array", "items": {"type": "string"}}}, "required": ["id", "images"]}}}, "required": ["demos"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"demos" : [{"id" : "default", "images" : ["https://s10.mogucdn.com/mlcdn/c45406/171019_0hl990d5d59aa1ellakj93d39chjk_610x50.png"]}, {"id" : "format", "images" : ["https://s10.mogucdn.com/mlcdn/c45406/171019_427fgl911h8ikk2g0ci2khk05j3a8_604x50.png"]}, {"id" : "style", "images" : ["https://s10.mogucdn.com/mlcdn/c45406/171019_0j42kjf2l13fd536ig6cj4i0k02e5_610x58.png"]}, {"id" : "event", "images" : ["https://s10.mogucdn.com/mlcdn/c45406/171020_6gc6kccakad75l1cf25a8h9bc23j8_604x184.png"]}]} | json_instruct | {"type": "object", "properties": {"demos": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "images": {"type": "array", "items": {"type": "string"}}}, "required": ["id", "images"]}}}, "required": ["demos"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"dataTable.cjs.js": {"type": "string"}, "dataTable.cjs.min.js": {"type": "string"}, "dataTable.css": {"type": "string"}, "dataTable.es6.js": {"type": "string"}, "dataTable.helpers.js": {"type": "string"}, "dataTable.helpers.min.js": {"type": "string"}, "dataTable.js": {"type": "string"}, "dataTable.min.css": {"type": "string"}, "dataTable.min.js": {"type": "string"}, "material.css": {"type": "string"}, "material.min.css": {"type": "string"}}, "required": ["dataTable.cjs.js", "dataTable.cjs.min.js", "dataTable.css", "dataTable.es6.js", "dataTable.helpers.js", "dataTable.helpers.min.js", "dataTable.js", "dataTable.min.css", "dataTable.min.js", "material.css", "material.min.css"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"dataTable.cjs.js" : "sha512-Kn+tp1h1NEVugrz2KqE79XxJeVtgNGup/i/vzSTdiRvybW64EokN1xyOWOKTN9qG0NuH0ODOab7CmJIDnxYCqQ==", "dataTable.cjs.min.js" : "sha512-0LlpLMe76goodvdTbqCSq3IcnmTPNZAxxYeaTMtnI06FO/OLcxBPyTn7InyPNk9aw8xHeNfvuumsGZKMHLTckQ==", "dataTable.css" : "sha512-L+TYDmRVcBCoXpnvz51OVnlvlQTmzO36DGNvcThu1fqrm+Aj3HkWzzwKl8ul62g8oJdvV5XH7OUKM6quQoDQnA==", "dataTable.es6.js" : "sha512-BQqXBxpOU0N2WhSpU583wRRM60QsCkMwr+5q3mLvmtTzJohnVJJ2s2DyaqzUCX+NyrIsmCUUgXiAtG/C56xJWg==", "dataTable.helpers.js" : "sha512-i+GJabT8lBlKQuH15PtbUZImGZePX1ZXVdWA5bU36UbKnCuvAzpVK6fydmp9W7oOvINANcpQca8iGpAt8Eb+gQ==", "dataTable.helpers.min.js" : "sha512-/MA3rHVglG01UZzOQBZq2voMRKyM2X7upr6liOKH/ZBpEbWxSTSH0Sh8zUO7S6FWVBgxvQqe5AJQA7rOYnK+HA==", "dataTable.js" : "sha512-SP5jyI9mQWRS7URrStP8STOltDgest/+NjaDs4lHmop58JzCBm5IESSlYvPBx2VNB0tmYykRxNXKDCEbZCMDxA==", "dataTable.min.css" : "sha512-HRrnUUMAYykYc97RteliMWoTg6F9nq0ZWdY46pFJP7krutFHBbCTDjkt9dfqHgdSBRatV3Gln9vFaOEFQGiPzg==", "dataTable.min.js" : "sha512-TXF/ss8cMCsCY+/unAtEgKY8S0Qhlt+QuwUimudLK/2amGVQg+pQGHAvKtf1HVQUZP/qQU3GcX3+jMpkqd/e8g==", "material.css" : "sha512-+UwERm5AL7dkvrhldWqJ83oVmdOG/yYNRqY6m6A/66az0qGDHBo2a7abnHNERgL35f/qz5yDTsaG9NTR6YR3rA==", "material.min.css" : "sha512-7GMa3khWbJTaY82dsPjjC4Q4mlgiXFGztiJoX6vcTPa19t+M2NuXoEo3R6rLVPss2uq/PVBPJOYWF+upFaka5g=="} | json_instruct | {"type": "object", "properties": {"dataTable.cjs.js": {"type": "string"}, "dataTable.cjs.min.js": {"type": "string"}, "dataTable.css": {"type": "string"}, "dataTable.es6.js": {"type": "string"}, "dataTable.helpers.js": {"type": "string"}, "dataTable.helpers.min.js": {"type": "string"}, "dataTable.js": {"type": "string"}, "dataTable.min.css": {"type": "string"}, "dataTable.min.js": {"type": "string"}, "material.css": {"type": "string"}, "material.min.css": {"type": "string"}}, "required": ["dataTable.cjs.js", "dataTable.cjs.min.js", "dataTable.css", "dataTable.es6.js", "dataTable.helpers.js", "dataTable.helpers.min.js", "dataTable.js", "dataTable.min.css", "dataTable.min.js", "material.css", "material.min.css"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"id_0359": {"type": "object", "properties": {"publicdate": {"type": "string"}, "title": {"type": "string"}}, "required": ["publicdate", "title"]}}, "required": ["id_0359"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id_0359" : {"publicdate" : "2006-08-06 23:01:58", "title" : "Aesop's Fables, Volume 12 (Fables 276-284)"}} | json_instruct | {"type": "object", "properties": {"id_0359": {"type": "object", "properties": {"publicdate": {"type": "string"}, "title": {"type": "string"}}, "required": ["publicdate", "title"]}}, "required": ["id_0359"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"nom": {"type": "string"}, "dpt": {"type": "string"}, "inscrits": {"type": "integer"}, "abs": {"type": "integer"}, "votants": {"type": "integer"}, "blancs": {"type": "integer"}, "nuls": {"type": "integer"}, "exp": {"type": "integer"}, "res": {"type": "array", "items": {"type": "object", "properties": {"panneau": {"type": "string"}, "voix": {"type": "integer"}}, "required": ["panneau", "voix"]}}}, "required": ["nom", "dpt", "inscrits", "abs", "votants", "blancs", "nuls", "exp", "res"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"nom" : "Faimbe", "dpt" : "Doubs", "inscrits" : 76, "abs" : 4, "votants" : 72, "blancs" : 10, "nuls" : 1, "exp" : 61, "res" : [{"panneau" : "2", "voix" : 38}, {"panneau" : "1", "voix" : 23}]} | json_instruct | {"type": "object", "properties": {"nom": {"type": "string"}, "dpt": {"type": "string"}, "inscrits": {"type": "integer"}, "abs": {"type": "integer"}, "votants": {"type": "integer"}, "blancs": {"type": "integer"}, "nuls": {"type": "integer"}, "exp": {"type": "integer"}, "res": {"type": "array", "items": {"type": "object", "properties": {"panneau": {"type": "string"}, "voix": {"type": "integer"}}, "required": ["panneau", "voix"]}}}, "required": ["nom", "dpt", "inscrits", "abs", "votants", "blancs", "nuls", "exp", "res"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"parent": {"type": "string"}}, "required": ["parent"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"parent" : "conquest:block/marble_column_with_marble_base_wall_post"} | json_instruct | {"type": "object", "properties": {"parent": {"type": "string"}}, "required": ["parent"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"id": {"type": "string"}, "expression": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}}, "required": ["id"]}}}, "required": ["id", "expression"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "http://data.doremus.org/performance/f2e24425-e7b6-3ff7-91ad-b8025c7961d6", "expression" : [{"id" : "http://data.doremus.org/expression/e2433524-89ec-3331-9875-b35818c8d27a"}, {"id" : "http://data.doremus.org/expression/c410395b-822e-3c12-a521-fe5d351cfa9a"}, {"id" : "http://data.doremus.org/expression/084f51cd-8b52-33be-ae74-15021e82db49"}, {"id" : "http://data.doremus.org/expression/3bc2b657-0797-3c0b-ba1f-77fea803fadd"}, {"id" : "http://data.doremus.org/expression/0ca54a89-1330-39fc-ac6c-679e1907002d"}, {"id" : "http://data.doremus.org/expression/a57b910e-34a4-3c4d-940e-665cfe298d09"}, {"id" : "http://data.doremus.org/expression/fbbeef03-4361-38e1-bf55-2cf406d3bef0"}, {"id" : "http://data.doremus.org/expression/c874ae7d-2387-36c8-9154-ad2674532698"}, {"id" : "http://data.doremus.org/expression/641961fb-bb2d-3405-9ffa-520215592745"}, {"id" : "http://data.doremus.org/expression/51e2fa08-5d34-3e13-88f4-a71f5c256e09"}]} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "expression": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}}, "required": ["id"]}}}, "required": ["id", "expression"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"pos": {"type": "string"}, "translits": {"type": "object", "properties": {"Mnas\u014dni": {"type": "object", "properties": {"act.21.16|13": {"type": "array", "items": {"type": "string"}}}, "required": ["act.21.16|13"]}}, "required": ["Mnas\u014dni"]}, "meanings": {"type": "object", "properties": {"mnason": {"type": "integer"}}, "required": ["mnason"]}, "meaningsCount": {"type": "integer"}, "occurences": {"type": "integer"}}, "required": ["pos", "translits", "meanings", "meaningsCount", "occurences"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"pos" : "n", "translits" : {"Mnas\u014dni" : {"act.21.16|13" : ["we would lodge,", "Mnason,", "a certain"]}}, "meanings" : {"mnason" : 1}, "meaningsCount" : 1, "occurences" : 1} | json_instruct | {"type": "object", "properties": {"pos": {"type": "string"}, "translits": {"type": "object", "properties": {"Mnas\u014dni": {"type": "object", "properties": {"act.21.16|13": {"type": "array", "items": {"type": "string"}}}, "required": ["act.21.16|13"]}}, "required": ["Mnas\u014dni"]}, "meanings": {"type": "object", "properties": {"mnason": {"type": "integer"}}, "required": ["mnason"]}, "meaningsCount": {"type": "integer"}, "occurences": {"type": "integer"}}, "required": ["pos", "translits", "meanings", "meaningsCount", "occurences"], "$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"}, "id": {"type": "string"}, "address": {"type": "string"}, "school_type": {"type": "string"}, "fax": {"type": "string"}, "phone": {"type": "string"}, "website": {"type": "string"}, "email": {"type": "string"}, "state": {"type": "string"}, "programs": {"type": "object", "properties": {"programs": {"type": "array", "items": {}}}, "required": ["programs"]}, "full_time_school": {"type": "boolean"}, "lon": {"type": "number"}, "lat": {"type": "number"}}, "required": ["name", "id", "address", "school_type", "fax", "phone", "website", "email", "state", "programs", "full_time_school", "lon", "lat"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "Forstwaldschule St\u00e4dt. Gem. Grundschule", "id" : "NRW-103202", "address" : "Bellenweg 50, 47804 Krefeld", "school_type" : "Grundschule", "fax" : "02151 3659567", "phone" : "02151 312603", "website" : " http://www.forstwaldschule.de", "email" : " 103202@schule.nrw.de ", "state" : "NRW", "programs" : {"programs" : []}, "full_time_school" : false, "lon" : 6.505932, "lat" : 51.302382} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "id": {"type": "string"}, "address": {"type": "string"}, "school_type": {"type": "string"}, "fax": {"type": "string"}, "phone": {"type": "string"}, "website": {"type": "string"}, "email": {"type": "string"}, "state": {"type": "string"}, "programs": {"type": "object", "properties": {"programs": {"type": "array", "items": {}}}, "required": ["programs"]}, "full_time_school": {"type": "boolean"}, "lon": {"type": "number"}, "lat": {"type": "number"}}, "required": ["name", "id", "address", "school_type", "fax", "phone", "website", "email", "state", "programs", "full_time_school", "lon", "lat"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"code": {"type": "integer"}, "parent": {"type": "integer"}, "name": {"type": "string"}, "latitude": {"type": "null"}, "longitude": {"type": "null"}, "postal": {"type": "array", "items": {"type": "integer"}}, "children": {"type": "array", "items": {}}}, "required": ["code", "parent", "name", "latitude", "longitude", "postal", "children"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"code" : 9418061006, "parent" : 9418061, "name" : "TALIKOBAK", "latitude" : null, "longitude" : null, "postal" : [99022], "children" : []} | json_instruct | {"type": "object", "properties": {"code": {"type": "integer"}, "parent": {"type": "integer"}, "name": {"type": "string"}, "latitude": {"type": "null"}, "longitude": {"type": "null"}, "postal": {"type": "array", "items": {"type": "integer"}}, "children": {"type": "array", "items": {}}}, "required": ["code", "parent", "name", "latitude", "longitude", "postal", "children"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"Website": {"type": "string"}, "Name": {"type": "string"}}, "required": ["Website", "Name"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"Website" : "http://tiledb.org/", "Name" : "TileDB"} | json_instruct | {"type": "object", "properties": {"Website": {"type": "string"}, "Name": {"type": "string"}}, "required": ["Website", "Name"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"type": {"type": "string"}, "run_if": {"type": "string"}, "pipeline": {"type": "string"}, "stage": {"type": "string"}, "job": {"type": "string"}, "is_source_a_file": {"type": "boolean"}, "artifact_origin": {"type": "string"}, "source": {"type": "string"}, "destination": {"type": "string"}}, "required": ["type", "run_if", "pipeline", "stage", "job", "is_source_a_file", "artifact_origin", "source", "destination"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"type" : "fetch", "run_if" : "any", "pipeline" : "upstream", "stage" : "upstream_stage", "job" : "upstream_job", "is_source_a_file" : true, "artifact_origin" : "gocd", "source" : "result", "destination" : "test"} | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "run_if": {"type": "string"}, "pipeline": {"type": "string"}, "stage": {"type": "string"}, "job": {"type": "string"}, "is_source_a_file": {"type": "boolean"}, "artifact_origin": {"type": "string"}, "source": {"type": "string"}, "destination": {"type": "string"}}, "required": ["type", "run_if", "pipeline", "stage", "job", "is_source_a_file", "artifact_origin", "source", "destination"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"typeaheadjs.css": {"type": "string"}, "typeaheadjs.min.css": {"type": "string"}}, "required": ["typeaheadjs.css", "typeaheadjs.min.css"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"typeaheadjs.css" : "sha512-bem2NJHXCoSAby1NJLtUKHUX3iHneOyb0cHoGtPSejrK7Eeouf8stGmjbny011J37p0FSNUyGxl+phomMC431A==", "typeaheadjs.min.css" : "sha512-0uS9q578MxIMb0nZ9SQ2wN1ln81z/IZhXSmhxz0/KikE0HE3WBIbPJwumAs/GUQDdcnLFWwmFuzauBwFnKrcEw=="} | json_instruct | {"type": "object", "properties": {"typeaheadjs.css": {"type": "string"}, "typeaheadjs.min.css": {"type": "string"}}, "required": ["typeaheadjs.css", "typeaheadjs.min.css"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"count": {"type": "integer"}, "412031": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}, "359031": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}, "N.A.//": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}, "252020": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}, "291127": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}, "353031": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}, "113061": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}, "113031": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}, "119XXX": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}, "439061": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}}, "required": ["count", "412031", "359031", "N.A.//", "252020", "291127", "353031", "113061", "113031", "119XXX", "439061"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"count" : 26, "412031" : {"count" : 1}, "359031" : {"count" : 1}, "N.A.//" : {"count" : 16}, "252020" : {"count" : 2}, "291127" : {"count" : 1}, "353031" : {"count" : 1}, "113061" : {"count" : 1}, "113031" : {"count" : 1}, "119XXX" : {"count" : 1}, "439061" : {"count" : 1}} | json_instruct | {"type": "object", "properties": {"count": {"type": "integer"}, "412031": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}, "359031": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}, "N.A.//": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}, "252020": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}, "291127": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}, "353031": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}, "113061": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}, "113031": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}, "119XXX": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}, "439061": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}}, "required": ["count", "412031", "359031", "N.A.//", "252020", "291127", "353031", "113061", "113031", "119XXX", "439061"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"Andoy": {"type": "string"}, "Anvaing": {"type": "string"}, "Auby": {"type": "string"}, "Baillonville": {"type": "string"}, "Ensival": {"type": "string"}, "Estaimbourg": {"type": "string"}, "Fayt-lez-Manage": {"type": "string"}, "Frasnes": {"type": "string"}, "Ham": {"type": "string"}, "Hoves": {"type": "string"}, "Rocourt": {"type": "string"}, "Sainte-C\u00e9cile": {"type": "string"}, "Seny": {"type": "string"}, "Soye": {"type": "string"}, "Tourinnes-St-Lambert": {"type": "string"}, "Vottem": {"type": "string"}}, "required": ["Andoy", "Anvaing", "Auby", "Baillonville", "Ensival", "Estaimbourg", "Fayt-lez-Manage", "Frasnes", "Ham", "Hoves", "Rocourt", "Sainte-C\u00e9cile", "Seny", "Soye", "Tourinnes-St-Lambert", "Vottem"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"Andoy" : "ANY", "Anvaing" : "AVG", "Auby" : "AUY", "Baillonville" : "BAI", "Ensival" : "ENS", "Estaimbourg" : "EST", "Fayt-lez-Manage" : "FLM", "Frasnes" : "FRS", "Ham" : "HAW", "Hoves" : "WAH", "Rocourt" : "RJT", "Sainte-C\u00e9cile" : "SCC", "Seny" : "SYE", "Soye" : "SWL", "Tourinnes-St-Lambert" : "TSL", "Vottem" : "VTM"} | json_instruct | {"type": "object", "properties": {"Andoy": {"type": "string"}, "Anvaing": {"type": "string"}, "Auby": {"type": "string"}, "Baillonville": {"type": "string"}, "Ensival": {"type": "string"}, "Estaimbourg": {"type": "string"}, "Fayt-lez-Manage": {"type": "string"}, "Frasnes": {"type": "string"}, "Ham": {"type": "string"}, "Hoves": {"type": "string"}, "Rocourt": {"type": "string"}, "Sainte-C\u00e9cile": {"type": "string"}, "Seny": {"type": "string"}, "Soye": {"type": "string"}, "Tourinnes-St-Lambert": {"type": "string"}, "Vottem": {"type": "string"}}, "required": ["Andoy", "Anvaing", "Auby", "Baillonville", "Ensival", "Estaimbourg", "Fayt-lez-Manage", "Frasnes", "Ham", "Hoves", "Rocourt", "Sainte-C\u00e9cile", "Seny", "Soye", "Tourinnes-St-Lambert", "Vottem"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"Name": {"type": "string"}, "ShortName": {"type": "string"}, "Description": {"type": "string"}}, "required": ["Name", "ShortName", "Description"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"Name" : "Mirino Reflex Leupold DeltaPoint", "ShortName" : "DP", "Description" : "Il mirino compatto DeltaPoint Reflex creato da Leupold quasi non conosce limiti nella variet\u00e0 di applicazione. Originariamente disegnato per l'uso su fucili a pompa nelle competizioni e nella pratica del tiro, \u00e8 stato riconosciuto per le sue buone performance su un'ampia gamma di armi. Dai fucili a pompa e pistole, fino ai fucili di tipo AR, come mirino principale o di riserva, ne assaporerete i suoi eccellenti risultati."} | json_instruct | {"type": "object", "properties": {"Name": {"type": "string"}, "ShortName": {"type": "string"}, "Description": {"type": "string"}}, "required": ["Name", "ShortName", "Description"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"$schema": {"type": "string"}, "type": {"type": "array", "items": {"type": "string"}}}, "required": ["$schema", "type"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"$schema" : "https://json-schema.org/draft/2019-09/schema", "type" : ["object", "string", "null"]} | json_instruct | {"type": "object", "properties": {"$schema": {"type": "string"}, "type": {"type": "array", "items": {"type": "string"}}}, "required": ["$schema", "type"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"id": {"type": "string"}}, "required": ["id"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "a268a86afa26a9142a92bf76c087e3f77af2e676"} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}}, "required": ["id"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"plugins": {"type": "array", "items": {"type": "string"}}}, "required": ["plugins"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"plugins" : ["prettier-plugin-svelte"]} | json_instruct | {"type": "object", "properties": {"plugins": {"type": "array", "items": {"type": "string"}}}, "required": ["plugins"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"latest": {"type": "string"}, "8": {"type": "string"}}, "required": ["latest", "8"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"latest" : "9.4.0.24572", "8" : "8.18.8.23081"} | json_instruct | {"type": "object", "properties": {"latest": {"type": "string"}, "8": {"type": "string"}}, "required": ["latest", "8"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"name": {"type": "string"}, "codepoint": {"type": "string"}, "title": {"type": "string"}, "svg": {"type": "string"}, "aliases": {"type": "array", "items": {"type": "string"}}, "tags": {"type": "array", "items": {"type": "object", "properties": {"title": {"type": "string"}, "titleZh": {"type": "string"}, "name": {"type": "string"}, "count": {"type": "integer"}}, "required": ["title", "titleZh", "name", "count"]}}, "style": {"type": "string"}, "pre": {"type": "string"}, "author": {"type": "string"}, "version": {"type": "string"}, "zhs": {"type": "array", "items": {"type": "string"}}, "description": {"type": "string"}, "comments": {"type": "array", "items": {}}}, "required": ["name", "codepoint", "title", "svg", "aliases", "tags", "style", "pre", "author", "version", "zhs", "description", "comments"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "tired", "codepoint" : "f5c8", "title" : "Tired Face", "svg" : "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 496 512\"><path d=\"M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm33.8 189.7l80-48c11.6-6.9 24 7.7 15.4 18L343.6 208l33.6 40.3c8.7 10.4-3.9 24.8-15.4 18l-80-48c-7.7-4.7-7.7-15.9 0-20.6zm-163-30c-8.6-10.3 3.8-24.9 15.4-18l80 48c7.8 4.7 7.8 15.9 0 20.6l-80 48c-11.5 6.8-24-7.6-15.4-18l33.6-40.3-33.6-40.3zM248 288c51.9 0 115.3 43.8 123.2 106.7 1.7 13.6-8 24.6-17.7 20.4-25.9-11.1-64.4-17.4-105.5-17.4s-79.6 6.3-105.5 17.4c-9.8 4.2-19.4-7-17.7-20.4C132.7 331.8 196.1 288 248 288z\"/></svg>", "aliases" : ["angry", "emoticon", "face", "grumpy", "upset"], "tags" : [{"title" : "Emoji", "titleZh" : "\u8868\u60c5\u7b26\u53f7", "name" : "emoji", "count" : 36}], "style" : "solid", "pre" : "fas", "author" : "fontawesome", "version" : "5.11.1", "zhs" : ["\u75b2\u5026\u7684\u8138", "\u751f\u6c14", "\u56fe\u91ca", "\u8138", "\u813e\u6c14\u66b4\u8e81", "\u5fc3\u70e6"], "description" : "", "comments" : []} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "codepoint": {"type": "string"}, "title": {"type": "string"}, "svg": {"type": "string"}, "aliases": {"type": "array", "items": {"type": "string"}}, "tags": {"type": "array", "items": {"type": "object", "properties": {"title": {"type": "string"}, "titleZh": {"type": "string"}, "name": {"type": "string"}, "count": {"type": "integer"}}, "required": ["title", "titleZh", "name", "count"]}}, "style": {"type": "string"}, "pre": {"type": "string"}, "author": {"type": "string"}, "version": {"type": "string"}, "zhs": {"type": "array", "items": {"type": "string"}}, "description": {"type": "string"}, "comments": {"type": "array", "items": {}}}, "required": ["name", "codepoint", "title", "svg", "aliases", "tags", "style", "pre", "author", "version", "zhs", "description", "comments"], "$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": "number"}}}, "required": ["type", "coordinates"]}, "properties": {"type": "object", "properties": {"name": {"type": "string"}, "start-date": {"type": "string"}, "point": {"type": "string"}, "documentation-url": {"type": "string"}, "listed-building-grade": {"type": "string"}, "listed-building": {"type": "string"}, "slug": {"type": "string"}, "entry-date": {"type": "string"}}, "required": ["name", "start-date", "point", "documentation-url", "listed-building-grade", "listed-building", "slug", "entry-date"]}}, "required": ["type", "geometry", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"type" : "Feature", "geometry" : {"type" : "Point", "coordinates" : [-0.276489, 50.932769]}, "properties" : {"name" : "DUFFIES HACKETTS", "start-date" : "1955-03-15", "point" : "POINT (-0.276489 50.932769)", "documentation-url" : "https://historicengland.org.uk/listing/the-list/list-entry/1027399", "listed-building-grade" : "II", "listed-building" : "1027399", "slug" : "/listed-building/1027399", "entry-date" : "1980-05-09"}} | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "number"}}}, "required": ["type", "coordinates"]}, "properties": {"type": "object", "properties": {"name": {"type": "string"}, "start-date": {"type": "string"}, "point": {"type": "string"}, "documentation-url": {"type": "string"}, "listed-building-grade": {"type": "string"}, "listed-building": {"type": "string"}, "slug": {"type": "string"}, "entry-date": {"type": "string"}}, "required": ["name", "start-date", "point", "documentation-url", "listed-building-grade", "listed-building", "slug", "entry-date"]}}, "required": ["type", "geometry", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"subreddit": {"type": "string"}, "author": {"type": "string"}, "count": {"type": "integer"}}, "required": ["subreddit", "author", "count"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"subreddit" : "facebookwins", "author" : "im_hitman", "count" : 3} | json_instruct | {"type": "object", "properties": {"subreddit": {"type": "string"}, "author": {"type": "string"}, "count": {"type": "integer"}}, "required": ["subreddit", "author", "count"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"navigationBarTitleText": {"type": "string"}, "enablePullDownRefresh": {"type": "boolean"}, "usingComponents": {"type": "object", "properties": {"uni-calendar": {"type": "string"}, "mx-datepicker": {"type": "string"}}, "required": ["uni-calendar", "mx-datepicker"]}}, "required": ["navigationBarTitleText", "enablePullDownRefresh", "usingComponents"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"navigationBarTitleText" : "\u641c\u7d22", "enablePullDownRefresh" : true, "usingComponents" : {"uni-calendar" : "/components/uni-calendar/uni-calendar", "mx-datepicker" : "/components/mx-datepicker/mx-datepicker"}} | json_instruct | {"type": "object", "properties": {"navigationBarTitleText": {"type": "string"}, "enablePullDownRefresh": {"type": "boolean"}, "usingComponents": {"type": "object", "properties": {"uni-calendar": {"type": "string"}, "mx-datepicker": {"type": "string"}}, "required": ["uni-calendar", "mx-datepicker"]}}, "required": ["navigationBarTitleText", "enablePullDownRefresh", "usingComponents"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"type": {"type": "string"}, "objects": {"type": "object", "properties": {"E01005364": {"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": ["E01005364"]}, "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" : {"E01005364" : {"type" : "GeometryCollection", "crs" : {"type" : "name", "properties" : {"name" : "urn:ogc:def:crs:OGC:1.3:CRS84"}}, "geometries" : [{"type" : "Polygon", "properties" : {"OA11CD" : "E00027154", "LAD11CD" : "E08000004"}, "arcs" : [[0, 1, 2, 3, 4, 5]]}, {"type" : "Polygon", "properties" : {"OA11CD" : "E00027163", "LAD11CD" : "E08000004"}, "arcs" : [[6, -2, 7]]}, {"type" : "Polygon", "properties" : {"OA11CD" : "E00027169", "LAD11CD" : "E08000004"}, "arcs" : [[-4, 8, 9, 10]]}, {"type" : "Polygon", "properties" : {"OA11CD" : "E00027172", "LAD11CD" : "E08000004"}, "arcs" : [[-10, 11]]}, {"type" : "Polygon", "properties" : {"OA11CD" : "E00027173", "LAD11CD" : "E08000004"}, "arcs" : [[-8, -1, 12, 13]]}, {"type" : "Polygon", "properties" : {"OA11CD" : "E00027176", "LAD11CD" : "E08000004"}, "arcs" : [[-6, 14, -13]]}]}}, "arcs" : [[[3653, 2915], [-1161, 1907]], [[2492, 4822], [1978, 1486]], [[4470, 6308], [300, 137], [782, -1120]], [[5552, 5325], [456, -1312], [-339, -258]], [[5669, 3755], [-155, -635]], [[5514, 3120], [-241, 405], [-711, -426], [94, -685], [-1003, 501]], [[2220, 4613], [-444, 795], [598, 391], [160, 757], [-1052, -763], [-597, 1164], [236, 1097], [685, 245], [352, 1126], [712, 574], [971, -2801], [608, 99], [21, -989]], [[2492, 4822], [-272, -209]], [[5552, 5325], [1020, 352], [280, -685], [694, 452], [188, -380]], [[7734, 5064], [102, -562], [-1260, -618], [-406, -967], [540, -167], [544, -1294], [1138, 658], [1119, 103], [162, -459]], [[9673, 1758], [4, -396], [-2739, -1118], [-1269, 3511]], [[7734, 5064], [315, 175], [1950, -3196], [-326, -285]], [[3653, 2915], [-352, -464], [1568, -1763]], [[4869, 688], [-79, -374], [-1390, -314], [150, 1169], [-1303, 1272], [-2247, 913], [249, 189], [924, 35], [-171, 554], [1218, 481]], [[5514, 3120], [949, -3040], [-1594, 608]]], "transform" : {"scale" : [1.202181421712886e-06, 6.261452235393298e-07], "translate" : [-2.151338876311405, 53.508626091790255]}} | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "objects": {"type": "object", "properties": {"E01005364": {"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": ["E01005364"]}, "arcs": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}}, "transform": {"type": "object", "properties": {"scale": {"type": "array", "items": {"type": "number"}}, "translate": {"type": "array", "items": {"type": "number"}}}, "required": ["scale", "translate"]}}, "required": ["type", "objects", "arcs", "transform"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"title": {"type": "string"}, "source": {"type": "string"}, "time": {"type": "string"}, "content": {"type": "string"}}, "required": ["title", "source", "time", "content"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"title" : "\u535a\u683c\u5df4\uff1a\u517b\u4f24\u671f\u95f4\u4e00\u76f4\u5728\u770bB\u8d39\u7684\u6bd4\u8d5b\uff0c\u4e3a\u7684\u5c31\u662f\u65e0\u7f1d\u8854\u63a5", "source" : "Twitter", "time" : "2020-07-16 21:16:32", "content" : "\u864e\u62517\u670816\u65e5\u8baf\u00a0\u66fc\u8054\u7403\u661f\u535a\u683c\u5df4\u8fd1\u65e5\u63a5\u53d7\u91c7\u8bbf\u65f6\u8868\u793a\uff0c\u4e3a\u4e86\u5c3d\u5feb\u548cB\u8d39\u5f62\u6210\u9ed8\u5951\uff0c\u4ed6\u5728\u517b\u4f24\u671f\u95f4\u5c31\u5f00\u59cb\u5206\u6790B\u8d39\u7684\u6bd4\u8d5b\u65b9\u5f0f\u3002\n\u535a\u683c\u5df4\u8bf4\uff1a\u201c\u5f53\u4ed6\u6765\u5230\u66fc\u8054\u4e4b\u540e\uff0c\u6211\u8981\u505a\u7684\u5c31\u662f\u7acb\u523b\u4e86\u89e3\u4ed6\uff0c\u6211\u4e0d\u60f3\uff08\u590d\u51fa\u540e\uff09\u53c8\u5f97\u82b1\u4e00\u4e2a\u6708\u7684\u65f6\u95f4\u6765\u548c\u4ed6\u78e8\u5408\u3002\u201d\n\u201c\u6240\u4ee5\u6211\u4f1a\u770b\u4ed6\u6bd4\u8d5b\uff0c\u770b\u4ed6\u573a\u4e0a\u7ad9\u4f4d\uff0c\u5982\u4f55\u5904\u7406\u7403\u4ee5\u53ca\u4ed6\u7684\u7279\u957f\u662f\u4ec0\u4e48\u3002\u8fd9\u6837\u5f53\u6211\u590d\u51fa\u7684\u65f6\u5019\uff0c\u5c31\u80fd\u548c\u4ed6\u5f88\u597d\u5f97\u642d\u6863\u3002\u201d\n\u201c\u5f53\u548c\u4ed6\u4e00\u8d77\u5e76\u80a9\u4f5c\u6218\u4e4b\u540e\uff0c\u6211\u7acb\u523b\u5c31\u77e5\u9053\u2018\u8fd9\u7403\u6211\u80fd\u8fd9\u4e48\u8dd1\u2019\uff0c\u2018\u90a3\u7403\u6211\u8be5\u90a3\u4e48\u4f20\uff0c\u56e0\u4e3a\u6211\u77e5\u9053\u4ed6\u5728\u90a3\u4e2a\u4f4d\u7f6e\u5f88\u6709\u5a01\u80c1\u3002\u2019\u201d\n\u201c\u6211\u4f1a\u5206\u6790\u4ed6\u7684\u6bd4\u8d5b\u65b9\u5f0f\uff0c\u5206\u6790\u6211\u8be5\u5982\u4f55\u66f4\u597d\u5730\u9009\u4f4d\uff0c\u4ee5\u53ca\u8bf8\u5982\u6b64\u7c7b\u7684\u4e8b\u60c5\u3002\u201d\n\u76f8\u5173\u9605\u8bfb\uff1a\n\u535a\u683c\u5df4\uff1a\u4e0d\u60f3\u8003\u8651\u5176\u4ed6\u7403\u961f\u7684\u7ed3\u679c\uff0c\u8981\u8d62\u4e0b\u672a\u6765\u7684\u6bcf\u573a\u6bd4\u8d5b (\u7f16\u8f91\uff1a\u59da\u51e1)"} | json_instruct | {"type": "object", "properties": {"title": {"type": "string"}, "source": {"type": "string"}, "time": {"type": "string"}, "content": {"type": "string"}}, "required": ["title", "source", "time", "content"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"name": {"type": "string"}, "private": {"type": "boolean"}, "description": {"type": "string"}, "version": {"type": "string"}, "author": {"type": "string"}, "dependencies": {"type": "object", "properties": {"gatsby": {"type": "string"}, "gatsby-plugin-manifest": {"type": "string"}, "gatsby-theme-sylius": {"type": "string"}}, "required": ["gatsby", "gatsby-plugin-manifest", "gatsby-theme-sylius"]}, "devDependencies": {"type": "object", "properties": {"cypress": {"type": "string"}, "gh-pages": {"type": "string"}, "start-server-and-test": {"type": "string"}}, "required": ["cypress", "gh-pages", "start-server-and-test"]}, "license": {"type": "string"}, "scripts": {"type": "object", "properties": {"build": {"type": "string"}, "develop": {"type": "string"}, "format": {"type": "string"}, "start": {"type": "string"}, "serve": {"type": "string"}, "deploy": {"type": "string"}, "test": {"type": "string"}, "clean": {"type": "string"}, "cy:open": {"type": "string"}, "cy:run": {"type": "string"}, "test:e2e": {"type": "string"}, "test:e2e:ci": {"type": "string"}}, "required": ["build", "develop", "format", "start", "serve", "deploy", "test", "clean", "cy:open", "cy:run", "test:e2e", "test:e2e:ci"]}}, "required": ["name", "private", "description", "version", "author", "dependencies", "devDependencies", "license", "scripts"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "gatsbylius-starter-default", "private" : true, "description" : "A simple starter to get up and developing quickly with Gatsbylius", "version" : "0.2.2", "author" : "Waiting for a contact email, see https://github.com/Gatsbylius/Gatsbylius", "dependencies" : {"gatsby" : "^2.19.12", "gatsby-plugin-manifest" : "^2.2.41", "gatsby-theme-sylius" : "^0.3.0"}, "devDependencies" : {"cypress" : "^3.8.2", "gh-pages" : "^2.1.1", "start-server-and-test" : "^1.10.8"}, "license" : "MIT", "scripts" : {"build" : "gatsby build", "develop" : "gatsby develop", "format" : "prettier --write \"**/*.{js,jsx,json,md}\"", "start" : "npm run develop", "serve" : "gatsby serve", "deploy" : "gatsby build --prefix-paths && gh-pages -d public", "test" : "echo \"Write tests! -> https://gatsby.dev/unit-testing\" && exit 1", "clean" : "gatsby clean", "cy:open" : "cypress open", "cy:run" : "cypress run", "test:e2e" : "start-server-and-test develop http://localhost:8000 cy:open", "test:e2e:ci" : "start-server-and-test develop http://localhost:8000 cy:run"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "private": {"type": "boolean"}, "description": {"type": "string"}, "version": {"type": "string"}, "author": {"type": "string"}, "dependencies": {"type": "object", "properties": {"gatsby": {"type": "string"}, "gatsby-plugin-manifest": {"type": "string"}, "gatsby-theme-sylius": {"type": "string"}}, "required": ["gatsby", "gatsby-plugin-manifest", "gatsby-theme-sylius"]}, "devDependencies": {"type": "object", "properties": {"cypress": {"type": "string"}, "gh-pages": {"type": "string"}, "start-server-and-test": {"type": "string"}}, "required": ["cypress", "gh-pages", "start-server-and-test"]}, "license": {"type": "string"}, "scripts": {"type": "object", "properties": {"build": {"type": "string"}, "develop": {"type": "string"}, "format": {"type": "string"}, "start": {"type": "string"}, "serve": {"type": "string"}, "deploy": {"type": "string"}, "test": {"type": "string"}, "clean": {"type": "string"}, "cy:open": {"type": "string"}, "cy:run": {"type": "string"}, "test:e2e": {"type": "string"}, "test:e2e:ci": {"type": "string"}}, "required": ["build", "develop", "format", "start", "serve", "deploy", "test", "clean", "cy:open", "cy:run", "test:e2e", "test:e2e:ci"]}}, "required": ["name", "private", "description", "version", "author", "dependencies", "devDependencies", "license", "scripts"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"name": {"type": "string"}, "type": {"type": "string"}, "description": {"type": "string"}, "homepage": {"type": "string"}, "license": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}, "homepage": {"type": "string"}, "role": {"type": "string"}}, "required": ["name", "email", "homepage", "role"]}}, "require": {"type": "object", "properties": {"php": {"type": "string"}, "nezamy/route": {"type": "string"}, "nette/robot-loader": {"type": "string"}, "keboola/csv": {"type": "string"}}, "required": ["php", "nezamy/route", "nette/robot-loader", "keboola/csv"]}, "require-dev": {"type": "object", "properties": {"phpunit/phpunit": {"type": "string"}}, "required": ["phpunit/phpunit"]}, "autoload": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"": {"type": "string"}}, "required": [""]}}, "required": ["psr-4"]}, "autoload-dev": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"": {"type": "string"}}, "required": [""]}}, "required": ["psr-4"]}, "config": {"type": "object", "properties": {"optimize-autoloader": {"type": "boolean"}}, "required": ["optimize-autoloader"]}, "prefer-stable": {"type": "boolean"}}, "required": ["name", "type", "description", "homepage", "license", "authors", "require", "require-dev", "autoload", "autoload-dev", "config", "prefer-stable"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "kenlog/instant-mvc", "type" : "project", "description" : "Instant MVC PHP Micro-Framework", "homepage" : "https://github.com/kenlog/instant-mvc", "license" : "MIT", "authors" : [{"name" : "Valentino Pesce", "email" : "valentino@iltuobrand.it", "homepage" : "https://github.com/kenlog", "role" : "Developer"}], "require" : {"php" : "^7.2", "nezamy/route" : "^1.2", "nette/robot-loader" : "^3.2", "keboola/csv" : "^2.1"}, "require-dev" : {"phpunit/phpunit" : "^8.1"}, "autoload" : {"psr-4" : {"" : "src/"}}, "autoload-dev" : {"psr-4" : {"" : "tests/"}}, "config" : {"optimize-autoloader" : true}, "prefer-stable" : true} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "type": {"type": "string"}, "description": {"type": "string"}, "homepage": {"type": "string"}, "license": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}, "homepage": {"type": "string"}, "role": {"type": "string"}}, "required": ["name", "email", "homepage", "role"]}}, "require": {"type": "object", "properties": {"php": {"type": "string"}, "nezamy/route": {"type": "string"}, "nette/robot-loader": {"type": "string"}, "keboola/csv": {"type": "string"}}, "required": ["php", "nezamy/route", "nette/robot-loader", "keboola/csv"]}, "require-dev": {"type": "object", "properties": {"phpunit/phpunit": {"type": "string"}}, "required": ["phpunit/phpunit"]}, "autoload": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"": {"type": "string"}}, "required": [""]}}, "required": ["psr-4"]}, "autoload-dev": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"": {"type": "string"}}, "required": [""]}}, "required": ["psr-4"]}, "config": {"type": "object", "properties": {"optimize-autoloader": {"type": "boolean"}}, "required": ["optimize-autoloader"]}, "prefer-stable": {"type": "boolean"}}, "required": ["name", "type", "description", "homepage", "license", "authors", "require", "require-dev", "autoload", "autoload-dev", "config", "prefer-stable"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"slug": {"type": "string"}, "title": {"type": "string"}, "parent_slug": {"type": "null"}, "path": {"type": "string"}, "repoCount": {"type": "integer"}, "userCount": {"type": "integer"}, "popularity": {"type": "integer"}}, "required": ["slug", "title", "parent_slug", "path", "repoCount", "userCount", "popularity"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"slug" : "qtum", "title" : "Qtum", "parent_slug" : null, "path" : "qtum", "repoCount" : 100, "userCount" : 36, "popularity" : 803011} | json_instruct | {"type": "object", "properties": {"slug": {"type": "string"}, "title": {"type": "string"}, "parent_slug": {"type": "null"}, "path": {"type": "string"}, "repoCount": {"type": "integer"}, "userCount": {"type": "integer"}, "popularity": {"type": "integer"}}, "required": ["slug", "title", "parent_slug", "path", "repoCount", "userCount", "popularity"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"h": {"type": "string"}, "c": {"type": "object", "properties": {"0": {"type": "boolean"}}, "required": ["0"]}}, "required": ["h", "c"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"h" : "b5c5fdd0a762b1e74665", "c" : {"0" : false}} | json_instruct | {"type": "object", "properties": {"h": {"type": "string"}, "c": {"type": "object", "properties": {"0": {"type": "boolean"}}, "required": ["0"]}}, "required": ["h", "c"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"type": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "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" : [[[131.125, 44.75], [131.125, 44.833333333333336], [131.25, 44.833333333333336], [131.25, 44.75], [131.125, 44.75]]]}, "properties" : {"code" : 673111, "url" : "http://madefor.github.io/0410/api/v1/673111.geojson", "view" : "https://github.com/madefor/0410/blob/gh-pages/api/v1/673111.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#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "private": {"type": "boolean"}, "plugin": {"type": "object", "properties": {"provides": {"type": "array", "items": {"type": "string"}}, "consumes": {"type": "array", "items": {"type": "string"}}}, "required": ["provides", "consumes"]}}, "required": ["name", "version", "description", "main", "private", "plugin"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "document", "version" : "0.1.0", "description" : "Module which provides functionality for managing and rendering mongo documents", "main" : "app.js", "private" : true, "plugin" : {"provides" : ["document"], "consumes" : ["api", "frontend", "backend"]}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "private": {"type": "boolean"}, "plugin": {"type": "object", "properties": {"provides": {"type": "array", "items": {"type": "string"}}, "consumes": {"type": "array", "items": {"type": "string"}}}, "required": ["provides", "consumes"]}}, "required": ["name", "version", "description", "main", "private", "plugin"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "authors": {"type": "array", "items": {"type": "string"}}, "description": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "license": {"type": "string"}, "ignore": {"type": "array", "items": {"type": "string"}}, "homepage": {"type": "string"}, "dependencies": {"type": "object", "properties": {"angular": {"type": "string"}, "bootstrap": {"type": "string"}, "angular-route": {"type": "string"}, "dragula.js": {"type": "string"}, "angular-bootstrap": {"type": "string"}}, "required": ["angular", "bootstrap", "angular-route", "dragula.js", "angular-bootstrap"]}}, "required": ["name", "version", "authors", "description", "keywords", "license", "ignore", "homepage", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "angular-boilerplate", "version" : "0.0.1", "authors" : ["Rinat Mullayanov <nutsgamedev@gmail.com>"], "description" : "Angular boilerplate", "keywords" : ["angular", "boilerplate"], "license" : "MIT", "ignore" : ["node_modules", "bower_components", "src/bower_components"], "homepage" : "https://github.com/RinatMullayanov/ng-agile-board", "dependencies" : {"angular" : "~1.3.15", "bootstrap" : "~3.3.4", "angular-route" : "~1.3.15", "dragula.js" : "~1.5.0", "angular-bootstrap" : "~0.12.1"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "authors": {"type": "array", "items": {"type": "string"}}, "description": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "license": {"type": "string"}, "ignore": {"type": "array", "items": {"type": "string"}}, "homepage": {"type": "string"}, "dependencies": {"type": "object", "properties": {"angular": {"type": "string"}, "bootstrap": {"type": "string"}, "angular-route": {"type": "string"}, "dragula.js": {"type": "string"}, "angular-bootstrap": {"type": "string"}}, "required": ["angular", "bootstrap", "angular-route", "dragula.js", "angular-bootstrap"]}}, "required": ["name", "version", "authors", "description", "keywords", "license", "ignore", "homepage", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"946895619711": {"type": "object", "properties": {"type": {"type": "string"}, "bookName": {"type": "string"}, "subjectName": {"type": "string"}, "fName": {"type": "string"}}, "required": ["type", "bookName", "subjectName", "fName"]}, "946895620055": {"type": "object", "properties": {"type": {"type": "string"}}, "required": ["type"]}, "946895620057": {"type": "object", "properties": {"type": {"type": "string"}}, "required": ["type"]}, "946895623130": {"type": "object", "properties": {"type": {"type": "string"}}, "required": ["type"]}, "946895623132": {"type": "object", "properties": {"type": {"type": "string"}}, "required": ["type"]}}, "required": ["946895619711", "946895620055", "946895620057", "946895623130", "946895623132"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"946895619711" : {"type" : "book open", "bookName" : "Epic%20Quest", "subjectName" : "school", "fName" : "users/My0vYW5kcm9pZF9hc3NldC93d3cvc2Nob29sL0VwaWMlMjBRdWVzdC92YXJpYWJsZS1FUV9NYXBfdmlkZW9zLUVRX01hcF92aWRfaG9yc2UuaHRtbC1hbmFseXRpY3MtOTQ2ODk1NjE5NjE4.json"}, "946895620055" : {"type" : "st"}, "946895620057" : {"type" : "ss"}, "946895623130" : {"type" : "st"}, "946895623132" : {"type" : "ss"}} | json_instruct | {"type": "object", "properties": {"946895619711": {"type": "object", "properties": {"type": {"type": "string"}, "bookName": {"type": "string"}, "subjectName": {"type": "string"}, "fName": {"type": "string"}}, "required": ["type", "bookName", "subjectName", "fName"]}, "946895620055": {"type": "object", "properties": {"type": {"type": "string"}}, "required": ["type"]}, "946895620057": {"type": "object", "properties": {"type": {"type": "string"}}, "required": ["type"]}, "946895623130": {"type": "object", "properties": {"type": {"type": "string"}}, "required": ["type"]}, "946895623132": {"type": "object", "properties": {"type": {"type": "string"}}, "required": ["type"]}}, "required": ["946895619711", "946895620055", "946895620057", "946895623130", "946895623132"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"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"}}, "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)"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"(0, 0, 2)" : "Jacques Cousteau", "(1, 0, 1)" : "Born", "(1, 1, 1)" : "Jacques-Yves Cousteau, (1910-06-11)11 June 1910, Saint-Andr\u00e9-de-Cubzac, France", "(2, 0, 1)" : "Died", "(2, 1, 1)" : "25 June 1997(1997-06-25) (aged 87), Paris, France", "(3, 0, 1)" : "Nationality", "(3, 1, 1)" : "French", "(4, 0, 1)" : "Occupation", "(4, 1, 1)" : "Oceanographer", "(5, 0, 1)" : "Spouse(s)", "(5, 1, 1)" : "Simone Melchior Cousteau (1937-1990, her death), Francine Triplet Cousteau (1991-1997)", "(6, 0, 1)" : "Children", "(6, 1, 1)" : "4, Jean-Michel, Philippe Cousteau, Diane, and Pierre-Yves."} | 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"}}, "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)"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"migrate": {"type": "object", "properties": {"btn": {"type": "object", "properties": {"unlock": {"type": "string"}}, "required": ["unlock"]}, "description": {"type": "object", "properties": {"enterPass": {"type": "string"}, "goBack": {"type": "string"}, "unlock": {"type": "string"}}, "required": ["enterPass", "goBack", "unlock"]}, "headers": {"type": "object", "properties": {"unlock": {"type": "string"}, "unlockAccount": {"type": "string"}}, "required": ["unlock", "unlockAccount"]}, "subtitle": {"type": "object", "properties": {"account": {"type": "string"}, "pending": {"type": "string"}, "unlocked": {"type": "string"}}, "required": ["account", "pending", "unlocked"]}}, "required": ["btn", "description", "headers", "subtitle"]}}, "required": ["migrate"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"migrate" : {"btn" : {"unlock" : "Odblokuj"}, "description" : {"enterPass" : "Wprowad\u017a swoje has\u0142o do konta lub", "goBack" : "powr\u00f3t", "unlock" : "Odblokuj swoje konta. Mo\u017cesz wr\u00f3ci\u0107 do tego kroku p\u00f3\u017aniej."}, "headers" : {"unlock" : "Odblokuj swoje konta", "unlockAccount" : "Odblokuj konto"}, "subtitle" : {"account" : "Konto", "pending" : "W oczekiwaniu na odblokowanie", "unlocked" : "Pomy\u015blnie odblokowano"}}} | json_instruct | {"type": "object", "properties": {"migrate": {"type": "object", "properties": {"btn": {"type": "object", "properties": {"unlock": {"type": "string"}}, "required": ["unlock"]}, "description": {"type": "object", "properties": {"enterPass": {"type": "string"}, "goBack": {"type": "string"}, "unlock": {"type": "string"}}, "required": ["enterPass", "goBack", "unlock"]}, "headers": {"type": "object", "properties": {"unlock": {"type": "string"}, "unlockAccount": {"type": "string"}}, "required": ["unlock", "unlockAccount"]}, "subtitle": {"type": "object", "properties": {"account": {"type": "string"}, "pending": {"type": "string"}, "unlocked": {"type": "string"}}, "required": ["account", "pending", "unlocked"]}}, "required": ["btn", "description", "headers", "subtitle"]}}, "required": ["migrate"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "array", "items": {"type": "object", "properties": {"namaKab": {"type": "string"}, "originalFilename": {"type": "string"}, "namaPartai": {"type": "string"}, "id": {"type": "integer"}, "noUrut": {"type": "integer"}, "nama": {"type": "string"}, "stringJenisKelamin": {"type": "string"}}, "required": ["namaKab", "originalFilename", "namaPartai", "id", "noUrut", "nama", "stringJenisKelamin"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"namaKab" : "TIMOR TENGAH SELATAN", "originalFilename" : "9_1.jpg", "namaPartai" : "Persatuan Indonesia", "id" : 85826, "noUrut" : 1, "nama" : "NICODEMUS ASBANU, SH", "stringJenisKelamin" : "Laki-Laki"}, {"namaKab" : "TIMOR TENGAH SELATAN", "originalFilename" : "9_2.jpg", "namaPartai" : "Persatuan Indonesia", "id" : 85905, "noUrut" : 2, "nama" : "CORNELIS NUBAN", "stringJenisKelamin" : "Laki-Laki"}, {"namaKab" : "TIMOR TENGAH SELATAN", "originalFilename" : "9_3.jpg", "namaPartai" : "Persatuan Indonesia", "id" : 85383, "noUrut" : 3, "nama" : "YANRIS MONIKA SOPBABA", "stringJenisKelamin" : "Perempuan"}, {"namaKab" : "TIMOR TENGAH SELATAN", "originalFilename" : "9_4.jpg", "namaPartai" : "Persatuan Indonesia", "id" : 85974, "noUrut" : 4, "nama" : "FRANSISKUS TALLAN, S.Pd", "stringJenisKelamin" : "Laki-Laki"}, {"namaKab" : "TIMOR TENGAH SELATAN", "originalFilename" : "9_5.jpg", "namaPartai" : "Persatuan Indonesia", "id" : 86032, "noUrut" : 5, "nama" : "HOFNI P. SUN", "stringJenisKelamin" : "Laki-Laki"}, {"namaKab" : "TIMOR TENGAH SELATAN", "originalFilename" : "9_6.jpg", "namaPartai" : "Persatuan Indonesia", "id" : 86083, "noUrut" : 6, "nama" : "AFLIANA E. LIUNIMA", "stringJenisKelamin" : "Perempuan"}, {"namaKab" : "TIMOR TENGAH SELATAN", "originalFilename" : "9_7.jpg", "namaPartai" : "Persatuan Indonesia", "id" : 86121, "noUrut" : 7, "nama" : "SIMEON PITAY", "stringJenisKelamin" : "Laki-Laki"}, {"namaKab" : "TIMOR TENGAH SELATAN", "originalFilename" : "9_8.jpg", "namaPartai" : "Persatuan Indonesia", "id" : 86183, "noUrut" : 8, "nama" : "SINTJE A. NUBAN, S.Pd", "stringJenisKelamin" : "Perempuan"}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"namaKab": {"type": "string"}, "originalFilename": {"type": "string"}, "namaPartai": {"type": "string"}, "id": {"type": "integer"}, "noUrut": {"type": "integer"}, "nama": {"type": "string"}, "stringJenisKelamin": {"type": "string"}}, "required": ["namaKab", "originalFilename", "namaPartai", "id", "noUrut", "nama", "stringJenisKelamin"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "helper-app"} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"parent": {"type": "string"}, "textures": {"type": "object", "properties": {"wall": {"type": "string"}, "opposite": {"type": "string"}, "end": {"type": "string"}}, "required": ["wall", "opposite", "end"]}}, "required": ["parent", "textures"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"parent" : "minecraft:block/template_wall_side_bricks_opposite", "textures" : {"wall" : "minecraft:block/walls/mossy_stone_bricks_wall_opposite", "opposite" : "minecraft:block/walls/mossy_stone_bricks_wall", "end" : "minecraft:block/walls/mossy_stone_bricks_wall_end"}} | json_instruct | {"type": "object", "properties": {"parent": {"type": "string"}, "textures": {"type": "object", "properties": {"wall": {"type": "string"}, "opposite": {"type": "string"}, "end": {"type": "string"}}, "required": ["wall", "opposite", "end"]}}, "required": ["parent", "textures"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "district_id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "district_id", "name"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"id" : "3216062001", "district_id" : "3216062", "name" : "SUKARAYA"}, {"id" : "3216062002", "district_id" : "3216062", "name" : "KARANGRAHAYU"}, {"id" : "3216062003", "district_id" : "3216062", "name" : "KARANGSETIA"}, {"id" : "3216062004", "district_id" : "3216062", "name" : "KARANGSATU"}, {"id" : "3216062005", "district_id" : "3216062", "name" : "KARANGMUKTI"}, {"id" : "3216062006", "district_id" : "3216062", "name" : "KARANGANYAR"}, {"id" : "3216062007", "district_id" : "3216062", "name" : "KARANGBAHAGIA"}, {"id" : "3216062008", "district_id" : "3216062", "name" : "KARANGSENTOSA"}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "district_id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "district_id", "name"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"state-machine.min.js": {"type": "string"}}, "required": ["state-machine.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"state-machine.min.js" : "sha512-zjTgpTbKUkFaHpDo5YoUYK8J3kU3q8M0hRelWMJCyu8IWI9rBzPSTuESB07/nzqtKBHZaZ0WjalyKVXNMsQJ8Q=="} | json_instruct | {"type": "object", "properties": {"state-machine.min.js": {"type": "string"}}, "required": ["state-machine.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"json": {"type": "string"}, "anObject": {"type": "object", "properties": {"anArray": {"type": "array", "items": {"type": "integer"}}}, "required": ["anArray"]}}, "required": ["json", "anObject"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"json" : "json", "anObject" : {"anArray" : [0, 1, 2]}} | json_instruct | {"type": "object", "properties": {"json": {"type": "string"}, "anObject": {"type": "object", "properties": {"anArray": {"type": "array", "items": {"type": "integer"}}}, "required": ["anArray"]}}, "required": ["json", "anObject"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"nom": {"type": "string"}, "dpt": {"type": "string"}, "inscrits": {"type": "integer"}, "abs": {"type": "integer"}, "votants": {"type": "integer"}, "blancs": {"type": "integer"}, "nuls": {"type": "integer"}, "exp": {"type": "integer"}, "res": {"type": "array", "items": {"type": "object", "properties": {"panneau": {"type": "string"}, "voix": {"type": "integer"}}, "required": ["panneau", "voix"]}}}, "required": ["nom", "dpt", "inscrits", "abs", "votants", "blancs", "nuls", "exp", "res"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"nom" : "Saint-Julien-le-Petit", "dpt" : "Haute-Vienne", "inscrits" : 284, "abs" : 68, "votants" : 216, "blancs" : 23, "nuls" : 16, "exp" : 177, "res" : [{"panneau" : "1", "voix" : 125}, {"panneau" : "2", "voix" : 52}]} | json_instruct | {"type": "object", "properties": {"nom": {"type": "string"}, "dpt": {"type": "string"}, "inscrits": {"type": "integer"}, "abs": {"type": "integer"}, "votants": {"type": "integer"}, "blancs": {"type": "integer"}, "nuls": {"type": "integer"}, "exp": {"type": "integer"}, "res": {"type": "array", "items": {"type": "object", "properties": {"panneau": {"type": "string"}, "voix": {"type": "integer"}}, "required": ["panneau", "voix"]}}}, "required": ["nom", "dpt", "inscrits", "abs", "votants", "blancs", "nuls", "exp", "res"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"name": {"type": "string"}, "symbol": {"type": "string"}, "type": {"type": "string"}, "decimals": {"type": "integer"}, "description": {"type": "string"}, "website": {"type": "string"}, "explorer": {"type": "string"}, "status": {"type": "string"}, "id": {"type": "string"}}, "required": ["name", "symbol", "type", "decimals", "description", "website", "explorer", "status", "id"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "Swarm Fund Token", "symbol" : "SWM", "type" : "ERC20", "decimals" : 18, "description" : "-", "website" : "", "explorer" : "https://etherscan.io/token/0x9e88613418cF03dCa54D6a2cf6Ad934A78C7A17A", "status" : "active", "id" : "0x9e88613418cF03dCa54D6a2cf6Ad934A78C7A17A"} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "symbol": {"type": "string"}, "type": {"type": "string"}, "decimals": {"type": "integer"}, "description": {"type": "string"}, "website": {"type": "string"}, "explorer": {"type": "string"}, "status": {"type": "string"}, "id": {"type": "string"}}, "required": ["name", "symbol", "type", "decimals", "description", "website", "explorer", "status", "id"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"url": {"type": "string"}, "name": {"type": "string"}, "password": {"type": "string"}, "email": {"type": "string"}, "wrong-password": {"type": "string"}, "wrong-email": {"type": "string"}, "testcasepageurl": {"type": "string"}}, "required": ["url", "name", "password", "email", "wrong-password", "wrong-email", "testcasepageurl"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"url" : "https://www.automationexercise.com/", "name" : "test0128879123", "password" : "test012890879123", "email" : "alexsmkovtkvtzb4979123@sgisfg.com", "wrong-password" : "test01289087912377", "wrong-email" : "alexsmkovtkvtzb497912377@sgisfg.com", "testcasepageurl" : "https://www.automationexercise.com/test_cases"} | json_instruct | {"type": "object", "properties": {"url": {"type": "string"}, "name": {"type": "string"}, "password": {"type": "string"}, "email": {"type": "string"}, "wrong-password": {"type": "string"}, "wrong-email": {"type": "string"}, "testcasepageurl": {"type": "string"}}, "required": ["url", "name", "password", "email", "wrong-password", "wrong-email", "testcasepageurl"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "array", "items": {"type": "object", "properties": {"outputFileName": {"type": "string"}, "inputFiles": {"type": "array", "items": {"type": "string"}}}, "required": ["outputFileName", "inputFiles"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"outputFileName" : "wwwroot/UploadFile.min.js", "inputFiles" : ["wwwroot/UploadFile.js"]}, {"outputFileName" : "wwwroot/JavascriptUploadFileDemo.min.js", "inputFiles" : ["wwwroot/JavascriptUploadFileDemo.js"]}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"outputFileName": {"type": "string"}, "inputFiles": {"type": "array", "items": {"type": "string"}}}, "required": ["outputFileName", "inputFiles"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "authors": {"type": "array", "items": {"type": "string"}}, "license": {"type": "string"}, "homepage": {"type": "string"}, "moduleType": {"type": "array", "items": {}}, "ignore": {"type": "array", "items": {"type": "string"}}, "dependencies": {"type": "object", "properties": {"bootstrap-sass": {"type": "string"}, "d3": {"type": "string"}, "ace": {"type": "string"}, "bootstrap": {"type": "string"}, "ace-builds": {"type": "string"}, "d3-tip": {"type": "string"}}, "required": ["bootstrap-sass", "d3", "ace", "bootstrap", "ace-builds", "d3-tip"]}}, "required": ["name", "description", "main", "authors", "license", "homepage", "moduleType", "ignore", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "peachpy.io", "description" : "GT HPC Garage Peachpy project", "main" : "index.js", "authors" : ["agubba3"], "license" : "ISC", "homepage" : "https://github.com/PeachPy/peachpy.io", "moduleType" : [], "ignore" : ["**/.*", "node_modules", "bower_components", "test", "tests"], "dependencies" : {"bootstrap-sass" : "^3.3.6", "d3" : "^3.5.5", "ace" : "^1.2.3", "bootstrap" : "^3.3.6", "ace-builds" : "1.2.0", "d3-tip" : "^0.6.7"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "authors": {"type": "array", "items": {"type": "string"}}, "license": {"type": "string"}, "homepage": {"type": "string"}, "moduleType": {"type": "array", "items": {}}, "ignore": {"type": "array", "items": {"type": "string"}}, "dependencies": {"type": "object", "properties": {"bootstrap-sass": {"type": "string"}, "d3": {"type": "string"}, "ace": {"type": "string"}, "bootstrap": {"type": "string"}, "ace-builds": {"type": "string"}, "d3-tip": {"type": "string"}}, "required": ["bootstrap-sass", "d3", "ace", "bootstrap", "ace-builds", "d3-tip"]}}, "required": ["name", "description", "main", "authors", "license", "homepage", "moduleType", "ignore", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "homepage": {"type": "string"}, "version": {"type": "string"}, "main": {"type": "string"}, "author": {"type": "object", "properties": {"email": {"type": "string"}, "name": {"type": "string"}, "url": {"type": "string"}}, "required": ["email", "name", "url"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "dependencies": {"type": "object", "properties": {"exists-file": {"type": "string"}, "is-directory": {"type": "string"}, "trim-newlines": {"type": "string"}}, "required": ["exists-file", "is-directory", "trim-newlines"]}, "devDependencies": {"type": "object", "properties": {"coffee-script": {"type": "string"}, "git-dirty": {"type": "string"}, "mocha": {"type": "string"}, "should": {"type": "string"}, "standard": {"type": "string"}}, "required": ["coffee-script", "git-dirty", "mocha", "should", "standard"]}, "engines": {"type": "object", "properties": {"node": {"type": "string"}}, "required": ["node"]}, "scripts": {"type": "object", "properties": {"clean": {"type": "string"}, "lint": {"type": "string"}, "pretest": {"type": "string"}, "test": {"type": "string"}}, "required": ["clean", "lint", "pretest", "test"]}, "license": {"type": "string"}}, "required": ["name", "description", "homepage", "version", "main", "author", "repository", "bugs", "keywords", "dependencies", "devDependencies", "engines", "scripts", "license"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "load-opts", "description" : "Load opts config file.", "homepage" : "https://github.com/Kikobeats/load-opts", "version" : "1.2.1", "main" : "./index.js", "author" : {"email" : "josefrancisco.verdu@gmail.com", "name" : "Kiko Beats", "url" : "https://github.com/Kikobeats"}, "repository" : {"type" : "git", "url" : "git+https://github.com/kikobeats/load-opts.git"}, "bugs" : {"url" : "https://github.com/Kikobeats/load-opts/issues"}, "keywords" : ["load", "opts"], "dependencies" : {"exists-file" : "~3.0.1", "is-directory" : "~0.3.0", "trim-newlines" : "~3.0.0"}, "devDependencies" : {"coffee-script" : "latest", "git-dirty" : "latest", "mocha" : "latest", "should" : "latest", "standard" : "latest"}, "engines" : {"node" : ">= 0.10"}, "scripts" : {"clean" : "rm -rf node_modules", "lint" : "standard index.js test", "pretest" : "npm run lint", "test" : "mocha"}, "license" : "MIT"} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "homepage": {"type": "string"}, "version": {"type": "string"}, "main": {"type": "string"}, "author": {"type": "object", "properties": {"email": {"type": "string"}, "name": {"type": "string"}, "url": {"type": "string"}}, "required": ["email", "name", "url"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "dependencies": {"type": "object", "properties": {"exists-file": {"type": "string"}, "is-directory": {"type": "string"}, "trim-newlines": {"type": "string"}}, "required": ["exists-file", "is-directory", "trim-newlines"]}, "devDependencies": {"type": "object", "properties": {"coffee-script": {"type": "string"}, "git-dirty": {"type": "string"}, "mocha": {"type": "string"}, "should": {"type": "string"}, "standard": {"type": "string"}}, "required": ["coffee-script", "git-dirty", "mocha", "should", "standard"]}, "engines": {"type": "object", "properties": {"node": {"type": "string"}}, "required": ["node"]}, "scripts": {"type": "object", "properties": {"clean": {"type": "string"}, "lint": {"type": "string"}, "pretest": {"type": "string"}, "test": {"type": "string"}}, "required": ["clean", "lint", "pretest", "test"]}, "license": {"type": "string"}}, "required": ["name", "description", "homepage", "version", "main", "author", "repository", "bugs", "keywords", "dependencies", "devDependencies", "engines", "scripts", "license"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"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/409772", "download_link" : "http://wallpapers.wallbase.cc/rozne/wallpaper-409772.jpg", "views" : 2463, "x_resolution" : 1600, "filetype" : "jpg", "site" : "wallbase.cc", "y_resolution" : 1200, "colors" : ["#ffffff", "#322301", "#4d5253", "#cdca6a", "#a97f09"], "comments" : [""], "favorites" : 2, "descriptors" : ["comics", "bread", "toast", "comic strip", "Not From Concentrate"], "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#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}, "homepage": {"type": "string"}}, "required": ["name", "email", "homepage"]}}, "homepage": {"type": "string"}, "type": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "license": {"type": "string"}, "minimum-stability": {"type": "string"}, "require": {"type": "object", "properties": {"php": {"type": "string"}, "laravel/lumen-framework": {"type": "string"}}, "required": ["php", "laravel/lumen-framework"]}, "require-dev": {"type": "object", "properties": {"squizlabs/php_codesniffer": {"type": "string"}}, "required": ["squizlabs/php_codesniffer"]}, "autoload": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"Turker\\ConfigAutoloader\\": {"type": "string"}}, "required": ["Turker\\ConfigAutoloader\\"]}}, "required": ["psr-4"]}, "scripts": {"type": "object", "properties": {"check-style": {"type": "string"}, "fix-style": {"type": "string"}}, "required": ["check-style", "fix-style"]}, "prefer-stable": {"type": "boolean"}}, "required": ["name", "description", "authors", "homepage", "type", "keywords", "license", "minimum-stability", "require", "require-dev", "autoload", "scripts", "prefer-stable"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "turkeryildirim/lumen-config-autoloader", "description" : "This package provides an easy way to autoload config files from your application's config folder.", "authors" : [{"name" : "T\u00fcrker YILDIRIM", "email" : "me@turkeryildirim.com", "homepage" : "http://turkeryildirim.com"}], "homepage" : "https://github.com/turkeryildirim/lumen-config-autoloader", "type" : "library", "keywords" : ["lumen", "config", "autoload", "api", "load"], "license" : "MIT", "minimum-stability" : "stable", "require" : {"php" : ">=5.6", "laravel/lumen-framework" : "^5.4"}, "require-dev" : {"squizlabs/php_codesniffer" : "^3.0"}, "autoload" : {"psr-4" : {"Turker\\ConfigAutoloader\\" : "src/"}}, "scripts" : {"check-style" : "phpcs -p --standard=PSR2 src/", "fix-style" : "phpcbf -p --standard=PSR2 src/"}, "prefer-stable" : true} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}, "homepage": {"type": "string"}}, "required": ["name", "email", "homepage"]}}, "homepage": {"type": "string"}, "type": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "license": {"type": "string"}, "minimum-stability": {"type": "string"}, "require": {"type": "object", "properties": {"php": {"type": "string"}, "laravel/lumen-framework": {"type": "string"}}, "required": ["php", "laravel/lumen-framework"]}, "require-dev": {"type": "object", "properties": {"squizlabs/php_codesniffer": {"type": "string"}}, "required": ["squizlabs/php_codesniffer"]}, "autoload": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"Turker\\ConfigAutoloader\\": {"type": "string"}}, "required": ["Turker\\ConfigAutoloader\\"]}}, "required": ["psr-4"]}, "scripts": {"type": "object", "properties": {"check-style": {"type": "string"}, "fix-style": {"type": "string"}}, "required": ["check-style", "fix-style"]}, "prefer-stable": {"type": "boolean"}}, "required": ["name", "description", "authors", "homepage", "type", "keywords", "license", "minimum-stability", "require", "require-dev", "autoload", "scripts", "prefer-stable"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"id": {"type": "integer"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"src:alt_label": {"type": "string"}, "src:geom": {"type": "string"}, "wof:geomhash": {"type": "string"}, "wof:id": {"type": "integer"}, "wof:repo": {"type": "string"}}, "required": ["src:alt_label", "src:geom", "wof:geomhash", "wof:id", "wof:repo"]}, "bbox": {"type": "array", "items": {"type": "number"}}, "geometry": {"type": "object", "properties": {"coordinates": {"type": "array", "items": {"type": "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" : 404386867, "type" : "Feature", "properties" : {"src:alt_label" : "quattroshapes", "src:geom" : "quattroshapes", "wof:geomhash" : "2a0347a14e6c8a57dcd6e92e26897322", "wof:id" : 404386867, "wof:repo" : "whosonfirst-data-admin-fr"}, "bbox" : [4.8499561681467, 44.37171976334582, 4.8993241473304, 44.40660253685589], "geometry" : {"coordinates" : [[[4.88216890723782, 44.37171976334582], [4.8775865353592, 44.3728425147964], [4.87611974858466, 44.38313232606336], [4.86786489165721, 44.39133147980068], [4.86401609033645, 44.3934316641183], [4.8499561681467, 44.39089549520984], [4.85109859303122, 44.40087097494635], [4.85615969138722, 44.40660253685589], [4.8948608039346, 44.40512406476142], [4.8993241473304, 44.39552055915549], [4.89226024501493, 44.39083387457873], [4.88216890723782, 44.37171976334582]]], "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": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "src": {"type": "string"}}, "required": ["name", "src"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"name" : "Onda Cero Vilanova", "src" : "http://icecast-streaming.nice264.com/vilanova?t=1526288508"}] | 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 an example JSON object that satisfies this schema:
{"type": "object", "properties": {"type": {"type": "string"}, "features": {"type": "array", "items": {"type": "object", "properties": {"geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["type", "coordinates"]}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"cartodb_id": {"type": "integer"}}, "required": ["cartodb_id"]}}, "required": ["geometry", "type", "properties"]}}}, "required": ["type", "features"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"type" : "FeatureCollection", "features" : [{"geometry" : {"type" : "Polygon", "coordinates" : [[[-70.291992, 43.630218], [-70.28596, 43.636855], [-70.282079, 43.639777], [-70.280262, 43.639005], [-70.27123, 43.64178], [-70.26433, 43.641821], [-70.258659, 43.633671], [-70.252187, 43.634489], [-70.251619, 43.631685], [-70.261885, 43.625176], [-70.268182, 43.624945], [-70.271799, 43.623207], [-70.277754, 43.627938], [-70.291992, 43.630218]]]}, "type" : "Feature", "properties" : {"cartodb_id" : 29470}}]} | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "features": {"type": "array", "items": {"type": "object", "properties": {"geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["type", "coordinates"]}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"cartodb_id": {"type": "integer"}}, "required": ["cartodb_id"]}}, "required": ["geometry", "type", "properties"]}}}, "required": ["type", "features"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "frequency": {"type": "integer"}, "males": {"type": "string"}, "females": {"type": "string"}}, "required": ["name", "frequency", "males", "females"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"name" : "KAJALI", "frequency" : 2, "males" : "50.0 %", "females" : "50.0 %"}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "frequency": {"type": "integer"}, "males": {"type": "string"}, "females": {"type": "string"}}, "required": ["name", "frequency", "males", "females"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"hints": {"type": "array", "items": {"type": "string"}}}, "required": ["hints"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"hints" : ["We are trying to make the reward high when the water level is high, and lower when it gets further away from that. The water level should be 0.5. So for example, when the water level, the reward should be the highest, when the water level is 0, the reward should be low and the same for a water level of 1. In this example, we can turn this around: we use a penalty when the water level goes away from 0.5. So if the water level raises to 1, there should be a high penalty. If we substract the penalty, we have a negative reward. If the penalty is 0 (for the case of a water level of 0.5) the reward is 0, but this is a higher reward then a negative reward! This is the easiest way to make your rewards.", "Start of by how this penalty would look like on a graph, with the water level on the x-axis and the penalty on the y-axis. Try transforming this graph into a formula.", "The goal water level is 0.5, so if water level = 0.5; penalty = 0. You can write this as 'ideal water level' - 0.5 = 0, which is equal to the penalty at that point. This is your startpoint, base your formula around 'water_level - 0.5'", "Starting with this 'water_level - 0.5', you want to make sure the penalty is positive on both sides. You can do this with for example taking the absolute value of it (abs()) or squaring it (**2)", "The target water level is actually only defined in the reward function", "...this means that it's actually only defined in the penalty function which you wrote."]} | json_instruct | {"type": "object", "properties": {"hints": {"type": "array", "items": {"type": "string"}}}, "required": ["hints"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"id": {"type": "string"}, "text": {"type": "string"}}, "required": ["id", "text"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "d427-109", "text" : ".ftrbana, Illinois\nCOP!\n'! G D P 1\nSeptember 29, 1954\nDr. Maurice Seay\nDirector2 Division of Education\nW. K. Kellogg Foundation\nBattle Greek, Michigan\nBoar Br. Seays\nThis is simply to say how Bsuch I appreciated and enjoyed moating with\nyou a week ago today* * Since 1 assume that Bob VanDuyn is sow bade, I m sending\nhim a not\u00ae on next year9a possible appropriation as effected by the fact that we\nnow have, an Associate Director ae a part of our regular Headquarters9 staff,\nwhoso salary is not included in the $34,000.00 Headquarters9 .budget subject to\nrenewal next year. You \u00a9ay recall that provision for an Associate Director,\nwith salary for a little over a year and a half was approved as a part of Head-\nquarters8 operation during the past year.\nW@ shall be holding rather intensive meetings both before and at the\nHew York Convention. Following these discussions w\u00ae shall present our rec-\namneafi&tioB\u00a9 explicitly for tbo Washington office and other matters that X\nbriefly went-over with you. This will give us a basis of discussion of the\nwhole problem in time for the firming up of plans for the future which must be\ncompleted before too long during the present fiscal year. Those item\u00a9 will of\ncourse all b\u00a9 submitted to Bob VahBuyn, as in the past.\nOnce again, sincere thanks for your hospitality. And let us know at\nany time if there is anything w\u00ae can provide you \u00a9r the Foundation to help mak\u00a9\nyour work easier.\nSincerely yours.\nHJSspc\"\nccs Hobart V&nDuyn\nHarry J. Skomia\nExecutive Director"} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "text": {"type": "string"}}, "required": ["id", "text"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"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" : [[[124.0, 20.75], [124.0, 20.833333333333332], [124.125, 20.833333333333332], [124.125, 20.75], [124.0, 20.75]]]}, "properties" : {"code" : 312410, "url" : "http://madefor.github.io/0410/api/v1/312410.geojson", "view" : "https://github.com/madefor/0410/blob/gh-pages/api/v1/312410.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 sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"birthday": {"type": "string"}, "position": {"type": "string"}, "name": {"type": "string"}}, "required": ["birthday", "position", "name"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"birthday" : "1991-08-07", "position" : "TE", "name" : "Blake Bell"} | json_instruct | {"type": "object", "properties": {"birthday": {"type": "string"}, "position": {"type": "string"}, "name": {"type": "string"}}, "required": ["birthday", "position", "name"], "$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": "number"}}, "type": {"type": "string"}}, "required": ["coordinates", "type"]}}, "required": ["id", "type", "properties", "bbox", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : 101766163, "type" : "Feature", "properties" : {"src:alt_label" : "quattroshapes_pg", "src:geom" : "quattroshapes_pg", "wof:geomhash" : "b6816d228b6b0ddde305c4f7e15a6b41", "wof:id" : 101766163, "wof:repo" : "whosonfirst-data-admin-fr"}, "bbox" : [3.61051, 47.7664, 3.61051, 47.7664], "geometry" : {"coordinates" : [3.61051, 47.7664], "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#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"aws-sdk.js": {"type": "string"}, "aws-sdk.min.js": {"type": "string"}}, "required": ["aws-sdk.js", "aws-sdk.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"aws-sdk.js" : "sha512-kaiA9zriZuYghA+Y8E+bmwhsLMXIVZQrNj+73inJjowdxfNuSZal+trf15C95K0Vs1uawG10LrMhf0x3bz1bdA==", "aws-sdk.min.js" : "sha512-6NVIp+8zFkoPMJOed563foLUiRTZtsdgnnciXC4j71HAhpsSP+WUdojoUKsFpEBYz1mz/zpetjISc7K4hGsYiw=="} | json_instruct | {"type": "object", "properties": {"aws-sdk.js": {"type": "string"}, "aws-sdk.min.js": {"type": "string"}}, "required": ["aws-sdk.js", "aws-sdk.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"template": {"type": "string"}, "data": {"type": "object", "properties": {"MyName": {"type": "string"}}, "required": ["MyName"]}, "expected": {"type": "string"}}, "required": ["template", "data", "expected"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"template" : "{{&'MyName}}", "data" : {"MyName" : "<span id=\"x\" class='bold'>`fethi`</span>\r\n\tgurcan"}, "expected" : "<span id=\"x\" class=''bold''>`fethi`</span>\r\n\tgurcan"} | json_instruct | {"type": "object", "properties": {"template": {"type": "string"}, "data": {"type": "object", "properties": {"MyName": {"type": "string"}}, "required": ["MyName"]}, "expected": {"type": "string"}}, "required": ["template", "data", "expected"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"\uc758\uc548\uc811\uc218\uc815\ubcf4": {"type": "object", "properties": {"\uc758\uc548\ubc88\ud638": {"type": "array", "items": {"type": "string"}}, "\uc81c\uc548\uc77c\uc790": {"type": "array", "items": {"type": "string"}}, "\uc81c\uc548\uc790": {"type": "array", "items": {"type": "string"}}, "\ubb38\uc11c": {"type": "array", "items": {"type": "string"}}, "\uc81c\uc548\ud68c\uae30": {"type": "array", "items": {"type": "string"}}}, "required": ["\uc758\uc548\ubc88\ud638", "\uc81c\uc548\uc77c\uc790", "\uc81c\uc548\uc790", "\ubb38\uc11c", "\uc81c\uc548\ud68c\uae30"]}, "\ubcf8\ud68c\uc758 \uc2ec\uc758\uc815\ubcf4": {"type": "object", "properties": {"\uc0c1\uc815\uc77c": {"type": "array", "items": {"type": "string"}}, "\uc758\uacb0\uc77c": {"type": "array", "items": {"type": "string"}}, "\ud68c\uc758\uba85": {"type": "array", "items": {"type": "string"}}, "\ud68c\uc758\uacb0\uacfc": {"type": "array", "items": {"type": "string"}}, "\ud68c\uc758\ub85d": {"type": "array", "items": {"type": "string"}}}, "required": ["\uc0c1\uc815\uc77c", "\uc758\uacb0\uc77c", "\ud68c\uc758\uba85", "\ud68c\uc758\uacb0\uacfc", "\ud68c\uc758\ub85d"]}, "parsed_date": {"type": "string"}}, "required": ["\uc758\uc548\uc811\uc218\uc815\ubcf4", "\ubcf8\ud68c\uc758 \uc2ec\uc758\uc815\ubcf4", "parsed_date"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"\uc758\uc548\uc811\uc218\uc815\ubcf4" : {"\uc758\uc548\ubc88\ud638" : ["040570"], "\uc81c\uc548\uc77c\uc790" : [""], "\uc81c\uc548\uc790" : ["\uad6d\ud68c\uc6b4\uc601\uc704\uc6d0\uc7a5"], "\ubb38\uc11c" : [""], "\uc81c\uc548\ud68c\uae30" : ["\uc81c4\ub300(1958~1960)\uc81c32\ud68c"]}, "\ubcf8\ud68c\uc758 \uc2ec\uc758\uc815\ubcf4" : {"\uc0c1\uc815\uc77c" : [""], "\uc758\uacb0\uc77c" : ["1959-06-17"], "\ud68c\uc758\uba85" : ["\uc81c32\ud68c\uc81c47\ucc28"], "\ud68c\uc758\uacb0\uacfc" : ["\uc6d0\uc548\uac00\uacb0"], "\ud68c\uc758\ub85d" : [""]}, "parsed_date" : "2021-02-17"} | json_instruct | {"type": "object", "properties": {"\uc758\uc548\uc811\uc218\uc815\ubcf4": {"type": "object", "properties": {"\uc758\uc548\ubc88\ud638": {"type": "array", "items": {"type": "string"}}, "\uc81c\uc548\uc77c\uc790": {"type": "array", "items": {"type": "string"}}, "\uc81c\uc548\uc790": {"type": "array", "items": {"type": "string"}}, "\ubb38\uc11c": {"type": "array", "items": {"type": "string"}}, "\uc81c\uc548\ud68c\uae30": {"type": "array", "items": {"type": "string"}}}, "required": ["\uc758\uc548\ubc88\ud638", "\uc81c\uc548\uc77c\uc790", "\uc81c\uc548\uc790", "\ubb38\uc11c", "\uc81c\uc548\ud68c\uae30"]}, "\ubcf8\ud68c\uc758 \uc2ec\uc758\uc815\ubcf4": {"type": "object", "properties": {"\uc0c1\uc815\uc77c": {"type": "array", "items": {"type": "string"}}, "\uc758\uacb0\uc77c": {"type": "array", "items": {"type": "string"}}, "\ud68c\uc758\uba85": {"type": "array", "items": {"type": "string"}}, "\ud68c\uc758\uacb0\uacfc": {"type": "array", "items": {"type": "string"}}, "\ud68c\uc758\ub85d": {"type": "array", "items": {"type": "string"}}}, "required": ["\uc0c1\uc815\uc77c", "\uc758\uacb0\uc77c", "\ud68c\uc758\uba85", "\ud68c\uc758\uacb0\uacfc", "\ud68c\uc758\ub85d"]}, "parsed_date": {"type": "string"}}, "required": ["\uc758\uc548\uc811\uc218\uc815\ubcf4", "\ubcf8\ud68c\uc758 \uc2ec\uc758\uc815\ubcf4", "parsed_date"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"manifest": {"type": "object", "properties": {"manifest": {"type": "object", "properties": {"library": {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "assets": {"type": "object", "properties": {"asset": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "mimeType": {"type": "string"}, "param": {"type": "object", "properties": {"key": {"type": "string"}, "value": {"type": "string"}}, "required": ["key", "value"]}}, "required": ["name", "mimeType", "param"]}}}, "required": ["asset"]}}, "required": ["name", "version", "assets"]}}, "required": ["library"]}}, "required": ["manifest"]}, "sprites": {"type": "object", "properties": {"acc_chest_U_rank1_h_lay_ca_2723_2_0": {"type": "object", "properties": {"left": {"type": "string"}, "top": {"type": "string"}, "width": {"type": "string"}, "height": {"type": "string"}}, "required": ["left", "top", "width", "height"]}, "acc_chest_U_rank1_h_std_ca_2723_1_0": {"type": "object", "properties": {"left": {"type": "string"}, "top": {"type": "string"}, "width": {"type": "string"}, "height": {"type": "string"}}, "required": ["left", "top", "width", "height"]}, "acc_chest_U_rank1_h_std_ca_2723_2_0": {"type": "object", "properties": {"left": {"type": "string"}, "top": {"type": "string"}, "width": {"type": "string"}, "height": {"type": "string"}}, "required": ["left", "top", "width", "height"]}, "acc_chest_U_rank1_h_std_ca_2723_3_0": {"type": "object", "properties": {"left": {"type": "string"}, "top": {"type": "string"}, "width": {"type": "string"}, "height": {"type": "string"}}, "required": ["left", "top", "width", "height"]}}, "required": ["acc_chest_U_rank1_h_lay_ca_2723_2_0", "acc_chest_U_rank1_h_std_ca_2723_1_0", "acc_chest_U_rank1_h_std_ca_2723_2_0", "acc_chest_U_rank1_h_std_ca_2723_3_0"]}}, "required": ["manifest", "sprites"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"manifest" : {"manifest" : {"library" : {"name" : "acc_chest_U_rank1", "version" : "0.1", "assets" : {"asset" : [{"name" : "h_std_ca_2723_2_0", "mimeType" : "image/png", "param" : {"key" : "offset", "value" : "-28,35"}}, {"name" : "h_std_ca_2723_1_0", "mimeType" : "image/png", "param" : {"key" : "offset", "value" : "-38,38"}}, {"name" : "h_std_ca_2723_3_0", "mimeType" : "image/png", "param" : {"key" : "offset", "value" : "-24,37"}}, {"name" : "h_lay_ca_2723_2_0", "mimeType" : "image/png", "param" : {"key" : "offset", "value" : "-5,17"}}]}}}}, "sprites" : {"acc_chest_U_rank1_h_lay_ca_2723_2_0" : {"left" : "0", "top" : "0", "width" : "6", "height" : "4"}, "acc_chest_U_rank1_h_std_ca_2723_1_0" : {"left" : "6", "top" : "0", "width" : "3", "height" : "3"}, "acc_chest_U_rank1_h_std_ca_2723_2_0" : {"left" : "9", "top" : "0", "width" : "6", "height" : "4"}, "acc_chest_U_rank1_h_std_ca_2723_3_0" : {"left" : "15", "top" : "0", "width" : "6", "height" : "3"}}} | json_instruct | {"type": "object", "properties": {"manifest": {"type": "object", "properties": {"manifest": {"type": "object", "properties": {"library": {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "assets": {"type": "object", "properties": {"asset": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "mimeType": {"type": "string"}, "param": {"type": "object", "properties": {"key": {"type": "string"}, "value": {"type": "string"}}, "required": ["key", "value"]}}, "required": ["name", "mimeType", "param"]}}}, "required": ["asset"]}}, "required": ["name", "version", "assets"]}}, "required": ["library"]}}, "required": ["manifest"]}, "sprites": {"type": "object", "properties": {"acc_chest_U_rank1_h_lay_ca_2723_2_0": {"type": "object", "properties": {"left": {"type": "string"}, "top": {"type": "string"}, "width": {"type": "string"}, "height": {"type": "string"}}, "required": ["left", "top", "width", "height"]}, "acc_chest_U_rank1_h_std_ca_2723_1_0": {"type": "object", "properties": {"left": {"type": "string"}, "top": {"type": "string"}, "width": {"type": "string"}, "height": {"type": "string"}}, "required": ["left", "top", "width", "height"]}, "acc_chest_U_rank1_h_std_ca_2723_2_0": {"type": "object", "properties": {"left": {"type": "string"}, "top": {"type": "string"}, "width": {"type": "string"}, "height": {"type": "string"}}, "required": ["left", "top", "width", "height"]}, "acc_chest_U_rank1_h_std_ca_2723_3_0": {"type": "object", "properties": {"left": {"type": "string"}, "top": {"type": "string"}, "width": {"type": "string"}, "height": {"type": "string"}}, "required": ["left", "top", "width", "height"]}}, "required": ["acc_chest_U_rank1_h_lay_ca_2723_2_0", "acc_chest_U_rank1_h_std_ca_2723_1_0", "acc_chest_U_rank1_h_std_ca_2723_2_0", "acc_chest_U_rank1_h_std_ca_2723_3_0"]}}, "required": ["manifest", "sprites"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"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-03-09T17:00:00Z", "Temp" : 16.2, "RelHum" : 79, "WindSpeed" : 0.7, "WindDir" : 348} | 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#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"data": {"type": "object", "properties": {"id": {"type": "integer"}, "title": {"type": "string"}, "primoId": {"type": "string"}, "slug": {"type": "string"}, "shortcode": {"type": "string"}, "imageUrl": {"type": "string"}, "content": {"type": "string"}, "imageType": {"type": "string"}, "date": {"type": "string"}, "dateText": {"type": "string"}, "timestamp": {"type": "string"}, "instagramUsername": {"type": "string"}, "featuredMedia": {"type": "object", "properties": {"sourceUrl": {"type": "string"}, "sizes": {"type": "object", "properties": {"medium": {"type": "object", "properties": {"sourceUrl": {"type": "string"}, "width": {"type": "integer"}, "height": {"type": "integer"}, "__typename": {"type": "string"}}, "required": ["sourceUrl", "width", "height", "__typename"]}, "full": {"type": "object", "properties": {"sourceUrl": {"type": "string"}, "width": {"type": "integer"}, "height": {"type": "integer"}, "__typename": {"type": "string"}}, "required": ["sourceUrl", "width", "height", "__typename"]}, "__typename": {"type": "string"}}, "required": ["medium", "full", "__typename"]}, "__typename": {"type": "string"}}, "required": ["sourceUrl", "sizes", "__typename"]}, "__typename": {"type": "string"}}, "required": ["id", "title", "primoId", "slug", "shortcode", "imageUrl", "content", "imageType", "date", "dateText", "timestamp", "instagramUsername", "featuredMedia", "__typename"]}}, "required": ["data"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"data" : {"id" : 92873, "title" : "Daphne Lowe Kelley", "primoId" : "", "slug" : "", "shortcode" : "", "imageUrl" : "https://dxlab.sl.nsw.gov.au/images-newselfwales/selfie-1544070594849.png", "content" : "Daphne Lowe Kelley", "imageType" : "gallery_selfie", "date" : "2018-12-06 15:29:54", "dateText" : "", "timestamp" : "", "instagramUsername" : "", "featuredMedia" : {"sourceUrl" : "https://dxlab.sl.nsw.gov.au/images-newselfwales/selfie-1544070594849.png", "sizes" : {"medium" : {"sourceUrl" : "https://dxlab.sl.nsw.gov.au/images-newselfwales/selfie-1544070594849-300x300.png", "width" : 300, "height" : 300, "__typename" : "MediaSize"}, "full" : {"sourceUrl" : "https://dxlab.sl.nsw.gov.au/images-newselfwales/selfie-1544070594849.png", "width" : 1080, "height" : 1080, "__typename" : "MediaSize"}, "__typename" : "MediaSizes"}, "__typename" : "Media"}, "__typename" : "NewSelfWalesGallerySelfie"}} | json_instruct | {"type": "object", "properties": {"data": {"type": "object", "properties": {"id": {"type": "integer"}, "title": {"type": "string"}, "primoId": {"type": "string"}, "slug": {"type": "string"}, "shortcode": {"type": "string"}, "imageUrl": {"type": "string"}, "content": {"type": "string"}, "imageType": {"type": "string"}, "date": {"type": "string"}, "dateText": {"type": "string"}, "timestamp": {"type": "string"}, "instagramUsername": {"type": "string"}, "featuredMedia": {"type": "object", "properties": {"sourceUrl": {"type": "string"}, "sizes": {"type": "object", "properties": {"medium": {"type": "object", "properties": {"sourceUrl": {"type": "string"}, "width": {"type": "integer"}, "height": {"type": "integer"}, "__typename": {"type": "string"}}, "required": ["sourceUrl", "width", "height", "__typename"]}, "full": {"type": "object", "properties": {"sourceUrl": {"type": "string"}, "width": {"type": "integer"}, "height": {"type": "integer"}, "__typename": {"type": "string"}}, "required": ["sourceUrl", "width", "height", "__typename"]}, "__typename": {"type": "string"}}, "required": ["medium", "full", "__typename"]}, "__typename": {"type": "string"}}, "required": ["sourceUrl", "sizes", "__typename"]}, "__typename": {"type": "string"}}, "required": ["id", "title", "primoId", "slug", "shortcode", "imageUrl", "content", "imageType", "date", "dateText", "timestamp", "instagramUsername", "featuredMedia", "__typename"]}}, "required": ["data"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"lastUpdated": {"type": "integer"}, "username": {"type": "string"}, "scores": {"type": "array", "items": {"type": "object", "properties": {"xp": {"type": "integer"}, "rank": {"type": "integer"}, "cardId": {"type": "integer"}}, "required": ["xp", "rank", "cardId"]}}}, "required": ["lastUpdated", "username", "scores"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"lastUpdated" : 1655019279666, "username" : "TemmieTime42", "scores" : [{"xp" : 18084, "rank" : 362, "cardId" : 312}]} | json_instruct | {"type": "object", "properties": {"lastUpdated": {"type": "integer"}, "username": {"type": "string"}, "scores": {"type": "array", "items": {"type": "object", "properties": {"xp": {"type": "integer"}, "rank": {"type": "integer"}, "cardId": {"type": "integer"}}, "required": ["xp", "rank", "cardId"]}}}, "required": ["lastUpdated", "username", "scores"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"hour positive count": {"type": "integer"}, "hour neutral count": {"type": "integer"}, "hour negative count": {"type": "integer"}, "hour distri": {"type": "object", "properties": {"0.01": {"type": "integer"}, "0.64": {"type": "integer"}, "0.05": {"type": "integer"}, "0.0": {"type": "integer"}, "0.1": {"type": "integer"}, "1.0": {"type": "integer"}, "0.7": {"type": "integer"}, "0.8": {"type": "integer"}, "0.02": {"type": "integer"}, "0.97": {"type": "integer"}, "0.99": {"type": "integer"}, "0.74": {"type": "integer"}}, "required": ["0.01", "0.64", "0.05", "0.0", "0.1", "1.0", "0.7", "0.8", "0.02", "0.97", "0.99", "0.74"]}}, "required": ["hour positive count", "hour neutral count", "hour negative count", "hour distri"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"hour positive count" : 6, "hour neutral count" : 4, "hour negative count" : 11, "hour distri" : {"0.01" : 2, "0.64" : 1, "0.05" : 2, "0.0" : 3, "0.1" : 2, "1.0" : 4, "0.7" : 1, "0.8" : 1, "0.02" : 2, "0.97" : 1, "0.99" : 1, "0.74" : 1}} | json_instruct | {"type": "object", "properties": {"hour positive count": {"type": "integer"}, "hour neutral count": {"type": "integer"}, "hour negative count": {"type": "integer"}, "hour distri": {"type": "object", "properties": {"0.01": {"type": "integer"}, "0.64": {"type": "integer"}, "0.05": {"type": "integer"}, "0.0": {"type": "integer"}, "0.1": {"type": "integer"}, "1.0": {"type": "integer"}, "0.7": {"type": "integer"}, "0.8": {"type": "integer"}, "0.02": {"type": "integer"}, "0.97": {"type": "integer"}, "0.99": {"type": "integer"}, "0.74": {"type": "integer"}}, "required": ["0.01", "0.64", "0.05", "0.0", "0.1", "1.0", "0.7", "0.8", "0.02", "0.97", "0.99", "0.74"]}}, "required": ["hour positive count", "hour neutral count", "hour negative count", "hour distri"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"author": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "name"]}, "date": {"type": "object", "properties": {"day": {"type": "integer"}, "full": {"type": "integer"}, "month": {"type": "integer"}, "week": {"type": "integer"}}, "required": ["day", "full", "month", "week"]}, "id": {"type": "string"}, "misc": {"type": "object", "properties": {"postHint": {"type": "string"}}, "required": ["postHint"]}, "picture": {"type": "object", "properties": {"filesize": {"type": "integer"}, "fullUrl": {"type": "string"}, "hash": {"type": "string"}, "height": {"type": "integer"}, "lqip": {"type": "string"}, "thumbnailUrl": {"type": "string"}, "url": {"type": "string"}, "width": {"type": "integer"}}, "required": ["filesize", "fullUrl", "hash", "height", "lqip", "thumbnailUrl", "url", "width"]}, "score": {"type": "object", "properties": {"comments": {"type": "integer"}, "downs": {"type": "integer"}, "isCurated": {"type": "boolean"}, "ratio": {"type": "integer"}, "ups": {"type": "integer"}, "value": {"type": "integer"}}, "required": ["comments", "downs", "isCurated", "ratio", "ups", "value"]}, "subreddit": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "name"]}, "tags": {"type": "array", "items": {"type": "string"}}, "title": {"type": "string"}, "url": {"type": "string"}}, "required": ["author", "date", "id", "misc", "picture", "score", "subreddit", "tags", "title", "url"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"author" : {"id" : "t2_9dlff", "name" : "vincent__h"}, "date" : {"day" : 1601856000, "full" : 1601934504, "month" : 1601510400, "week" : 1601769600}, "id" : "t3_j5sob2", "misc" : {"postHint" : "image"}, "picture" : {"filesize" : 143008, "fullUrl" : "https://preview.redd.it/wrja4olljcr51.jpg?auto=webp&s=a290ce36f478de9500b050a07cb7c24c1ff3c041", "hash" : "ae1f5767e2", "height" : 853, "lqip" : "data:image/jpg;base64,/9j/2wBDAAYEBQYFBAYGBQYHBwYIChAKCgkJChQODwwQFxQYGBcUFhYaHSUfGhsjHBYWICwgIyYnKSopGR8tMC0oMCUoKSj/2wBDAQcHBwoIChMKChMoGhYaKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCj/wAARCAAQAAwDASIAAhEBAxEB/8QAFgABAQEAAAAAAAAAAAAAAAAABgQF/8QAIxAAAQQBBAEFAAAAAAAAAAAAAQIDBBEFAAYSMUEHISJhcf/EABUBAQEAAAAAAAAAAAAAAAAAAAID/8QAGhEAAQUBAAAAAAAAAAAAAAAAAgABAxEhMf/aAAwDAQACEQMRAD8AlzUd97IyV5Jtxqa48pbqX0kKNnz790fytakDekrGsllMRE0qpRWp1YCTxA4pBugK6+9OPUnZ8rKuMT8fMTJUsFLMR5YB7tQbJ7B7rxV3Wi8TYoU1zzs+NEkrJKWlOgqCOvlVi7CtSYyGTbpAo3cc6v/Z", "thumbnailUrl" : "https://b.thumbs.redditmedia.com/uEu4DQSGTmDfS6OfTFu0USmpc-TI02GoF7vEW6WZq9E.jpg", "url" : "https://preview.redd.it/wrja4olljcr51.jpg?width=640&crop=smart&auto=webp&s=710d0195fab7e7ef0a4484ee60e28220f93794e8", "width" : 640}, "score" : {"comments" : 2, "downs" : 0, "isCurated" : false, "ratio" : 1, "ups" : 4, "value" : 4}, "subreddit" : {"id" : "t5_3isai", "name" : "dndmaps"}, "tags" : ["Region"], "title" : "A nameless Empire (part of a homebrew world)", "url" : "https://www.reddit.com/r/dndmaps/comments/j5sob2/a_nameless_empire_part_of_a_homebrew_world/"} | json_instruct | {"type": "object", "properties": {"author": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "name"]}, "date": {"type": "object", "properties": {"day": {"type": "integer"}, "full": {"type": "integer"}, "month": {"type": "integer"}, "week": {"type": "integer"}}, "required": ["day", "full", "month", "week"]}, "id": {"type": "string"}, "misc": {"type": "object", "properties": {"postHint": {"type": "string"}}, "required": ["postHint"]}, "picture": {"type": "object", "properties": {"filesize": {"type": "integer"}, "fullUrl": {"type": "string"}, "hash": {"type": "string"}, "height": {"type": "integer"}, "lqip": {"type": "string"}, "thumbnailUrl": {"type": "string"}, "url": {"type": "string"}, "width": {"type": "integer"}}, "required": ["filesize", "fullUrl", "hash", "height", "lqip", "thumbnailUrl", "url", "width"]}, "score": {"type": "object", "properties": {"comments": {"type": "integer"}, "downs": {"type": "integer"}, "isCurated": {"type": "boolean"}, "ratio": {"type": "integer"}, "ups": {"type": "integer"}, "value": {"type": "integer"}}, "required": ["comments", "downs", "isCurated", "ratio", "ups", "value"]}, "subreddit": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "name"]}, "tags": {"type": "array", "items": {"type": "string"}}, "title": {"type": "string"}, "url": {"type": "string"}}, "required": ["author", "date", "id", "misc", "picture", "score", "subreddit", "tags", "title", "url"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"n_dim": {"type": "integer"}, "n_trials": {"type": "integer"}, "objective": {"type": "string"}, "white": {"type": "string"}, "black": {"type": "string"}, "traceback": {"type": "array", "items": {"type": "string"}}, "best_val": {"type": "array", "items": {"type": "number"}}, "best_x": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}, "feval_count": {"type": "array", "items": {"type": "integer"}}, "n_trials_instructed": {"type": "array", "items": {"type": "integer"}}, "passing": {"type": "array", "items": {"type": "boolean"}}, "completed": {"type": "boolean"}, "points": {"type": "number"}, "winner": {"type": "string"}, "loser": {"type": "string"}}, "required": ["n_dim", "n_trials", "objective", "white", "black", "traceback", "best_val", "best_x", "feval_count", "n_trials_instructed", "passing", "completed", "points", "winner", "loser"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"n_dim" : 13, "n_trials" : 130, "objective" : "qing_on_cube", "white" : "platypus_ibea", "black" : "platypus_nsgaii", "traceback" : ["passing", "passing"], "best_val" : [1072112541769.2471, 3531454885549.0977], "best_x" : [[0.3864937820061728, 0.11856574148891597, 0.4549334571620349, 0.21099748387485373, 0.5287137500635999, 0.0787682948772841, 0.4978183660983698, 0.5356358634188356, 0.22563703622639908, 0.4000046873871582, 0.22805025356155995, 0.5740762832746313, 0.4079265805098219], [0.3892174425913616, 0.3260967753952021, 0.2109138013008961, 0.4885319241192002, 0.4629959494400212, 0.34881521411258376, 0.10981540949836333, 0.49894542788248963, 0.6974595335478339, 0.6088241276391307, 0.35482484756048993, 0.6673155719458784, 0.34886901894719224]], "feval_count" : [100, 100], "n_trials_instructed" : [91, 100], "passing" : [true, true], "completed" : true, "points" : 1.0, "winner" : "platypus_ibea", "loser" : "platypus_nsgaii"} | json_instruct | {"type": "object", "properties": {"n_dim": {"type": "integer"}, "n_trials": {"type": "integer"}, "objective": {"type": "string"}, "white": {"type": "string"}, "black": {"type": "string"}, "traceback": {"type": "array", "items": {"type": "string"}}, "best_val": {"type": "array", "items": {"type": "number"}}, "best_x": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}, "feval_count": {"type": "array", "items": {"type": "integer"}}, "n_trials_instructed": {"type": "array", "items": {"type": "integer"}}, "passing": {"type": "array", "items": {"type": "boolean"}}, "completed": {"type": "boolean"}, "points": {"type": "number"}, "winner": {"type": "string"}, "loser": {"type": "string"}}, "required": ["n_dim", "n_trials", "objective", "white", "black", "traceback", "best_val", "best_x", "feval_count", "n_trials_instructed", "passing", "completed", "points", "winner", "loser"], "$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"}, "manifest_version": {"type": "integer"}, "natively_connectable": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "version", "manifest_version", "natively_connectable"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "unit_tests --gtest_filter=NativelyConnectableManifestTest.Basic", "version" : "1", "manifest_version" : 2, "natively_connectable" : ["com.google.chrome.test.echo", "com.google.chrome.test.echo", "com.google.chrome.test.host_binary_missing"]} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "manifest_version": {"type": "integer"}, "natively_connectable": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "version", "manifest_version", "natively_connectable"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "number"}}}, "required": ["type", "coordinates"]}, "type": {"type": "string"}, "id": {"type": "string"}, "properties": {"type": "object", "properties": {"other_cities": {"type": "string"}, "city": {"type": "string"}, "state": {"type": "string"}, "county": {"type": "string"}}, "required": ["other_cities", "city", "state", "county"]}}, "required": ["geometry", "type", "id", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"geometry" : {"type" : "Point", "coordinates" : [-76.89, 40.24]}, "type" : "Feature", "id" : "17043", "properties" : {"other_cities" : "Wormleysburg", "city" : "Lemoyne", "state" : "PA", "county" : "Cumberland County"}} | json_instruct | {"type": "object", "properties": {"geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "number"}}}, "required": ["type", "coordinates"]}, "type": {"type": "string"}, "id": {"type": "string"}, "properties": {"type": "object", "properties": {"other_cities": {"type": "string"}, "city": {"type": "string"}, "state": {"type": "string"}, "county": {"type": "string"}}, "required": ["other_cities", "city", "state", "county"]}}, "required": ["geometry", "type", "id", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}, "homepage": {"type": "string"}}, "required": ["name", "version", "description", "repository", "keywords", "author", "license", "homepage"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "full-year-calendar", "version" : "1.0.0", "description" : "A calendar that shows dates in yearly view", "repository" : {"type" : "git", "url" : "https://github.com/andrefrua/FullYearCalendar_v2.git"}, "keywords" : ["calendar", "yearly", "yearlycalendar"], "author" : "Andr\u00e9 Rua", "license" : "MIT", "homepage" : "https://github.com/andrefrua/FullYearCalendar_v2#readme"} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}, "homepage": {"type": "string"}}, "required": ["name", "version", "description", "repository", "keywords", "author", "license", "homepage"], "$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"}, "dependencies": {"type": "object", "properties": {"express": {"type": "string"}, "grunt": {"type": "string"}, "grunt-coveralls": {"type": "string"}, "istanbul": {"type": "string"}, "mocha": {"type": "string"}, "should": {"type": "string"}, "grunt-mocha-istanbul": {"type": "string"}}, "required": ["express", "grunt", "grunt-coveralls", "istanbul", "mocha", "should", "grunt-mocha-istanbul"]}, "author": {"type": "string"}, "description": {"type": "string"}}, "required": ["name", "version", "dependencies", "author", "description"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "node-maze-game", "version" : "0.1.0", "dependencies" : {"express" : "~3.3.4", "grunt" : "~0.4.5", "grunt-coveralls" : "~1.0.0", "istanbul" : "~0.3.13", "mocha" : "~2.2.4", "should" : "~6.0.1", "grunt-mocha-istanbul" : "~2.4.0"}, "author" : "Nicolas Dubien <github@dubien.org>", "description" : "Puzzle-game where the solver as to find a path from departure to end in limited amount of mouvments"} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "dependencies": {"type": "object", "properties": {"express": {"type": "string"}, "grunt": {"type": "string"}, "grunt-coveralls": {"type": "string"}, "istanbul": {"type": "string"}, "mocha": {"type": "string"}, "should": {"type": "string"}, "grunt-mocha-istanbul": {"type": "string"}}, "required": ["express", "grunt", "grunt-coveralls", "istanbul", "mocha", "should", "grunt-mocha-istanbul"]}, "author": {"type": "string"}, "description": {"type": "string"}}, "required": ["name", "version", "dependencies", "author", "description"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "license": {"type": "string"}, "autoload": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"Medology\\GherkinCsFixer\\": {"type": "string"}}, "required": ["Medology\\GherkinCsFixer\\"]}}, "required": ["psr-4"]}, "bin": {"type": "array", "items": {"type": "string"}}, "require": {"type": "object", "properties": {"php": {"type": "string"}, "ext-mbstring": {"type": "string"}}, "required": ["php", "ext-mbstring"]}, "require-dev": {"type": "object", "properties": {"phpunit/phpunit": {"type": "string"}, "medology/custom-php-cs-fixer": {"type": "string"}}, "required": ["phpunit/phpunit", "medology/custom-php-cs-fixer"]}, "autoload-dev": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"Tests\\": {"type": "string"}}, "required": ["Tests\\"]}}, "required": ["psr-4"]}, "repositories": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}}}, "required": ["name", "description", "license", "autoload", "bin", "require", "require-dev", "autoload-dev", "repositories"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "medology/gherkin-cs-fixer", "description" : "Gherkin code auto formatter", "license" : "MIT", "autoload" : {"psr-4" : {"Medology\\GherkinCsFixer\\" : "src/"}}, "bin" : ["bin/gherkin-fixer"], "require" : {"php" : ">=7.1.0", "ext-mbstring" : "*"}, "require-dev" : {"phpunit/phpunit" : "^8.4", "medology/custom-php-cs-fixer" : "^1.0"}, "autoload-dev" : {"psr-4" : {"Tests\\" : "tests/"}}, "repositories" : [{"type" : "vcs", "url" : "git@github.com:Medology/custom-php-cs-fixer.git"}]} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "license": {"type": "string"}, "autoload": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"Medology\\GherkinCsFixer\\": {"type": "string"}}, "required": ["Medology\\GherkinCsFixer\\"]}}, "required": ["psr-4"]}, "bin": {"type": "array", "items": {"type": "string"}}, "require": {"type": "object", "properties": {"php": {"type": "string"}, "ext-mbstring": {"type": "string"}}, "required": ["php", "ext-mbstring"]}, "require-dev": {"type": "object", "properties": {"phpunit/phpunit": {"type": "string"}, "medology/custom-php-cs-fixer": {"type": "string"}}, "required": ["phpunit/phpunit", "medology/custom-php-cs-fixer"]}, "autoload-dev": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"Tests\\": {"type": "string"}}, "required": ["Tests\\"]}}, "required": ["psr-4"]}, "repositories": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}}}, "required": ["name", "description", "license", "autoload", "bin", "require", "require-dev", "autoload-dev", "repositories"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"beamWeights": {"type": "array", "items": {"type": "object", "properties": {"beamWeightsDetails": {"type": "array", "items": {"type": "object", "properties": {"receptor": {"type": "integer"}, "receptorWeightsDetails": {"type": "array", "items": {"type": "object", "properties": {"fsid": {"type": "integer"}, "weights": {"type": "array", "items": {"type": "number"}}}, "required": ["fsid", "weights"]}}}, "required": ["receptor", "receptorWeightsDetails"]}}}, "required": ["beamWeightsDetails"]}}}, "required": ["beamWeights"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"beamWeights" : [{"beamWeightsDetails" : [{"receptor" : 2, "receptorWeightsDetails" : [{"fsid" : 2, "weights" : [0.1, 0.2, 0.3, 0.4, 0.5, 0.6]}]}]}, {"beamWeightsDetails" : [{"receptor" : 2, "receptorWeightsDetails" : [{"fsid" : 2, "weights" : [1.1, 1.2, 1.3, 1.4, 1.5, 1.6]}]}]}, {"beamWeightsDetails" : [{"receptor" : 2, "receptorWeightsDetails" : [{"fsid" : 2, "weights" : [2.1, 2.2, 2.3, 2.4, 2.5, 2.6]}]}]}]} | json_instruct | {"type": "object", "properties": {"beamWeights": {"type": "array", "items": {"type": "object", "properties": {"beamWeightsDetails": {"type": "array", "items": {"type": "object", "properties": {"receptor": {"type": "integer"}, "receptorWeightsDetails": {"type": "array", "items": {"type": "object", "properties": {"fsid": {"type": "integer"}, "weights": {"type": "array", "items": {"type": "number"}}}, "required": ["fsid", "weights"]}}}, "required": ["receptor", "receptorWeightsDetails"]}}}, "required": ["beamWeightsDetails"]}}}, "required": ["beamWeights"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"new_version": {"type": "string"}}, "required": ["new_version"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"new_version" : "0.0_9"} | json_instruct | {"type": "object", "properties": {"new_version": {"type": "string"}}, "required": ["new_version"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"name": {"type": "string"}, "ignore": {"type": "array", "items": {"type": "string"}}, "dependencies": {"type": "object", "properties": {"chai": {"type": "string"}, "chroma-js": {"type": "string"}, "fontawesome": {"type": "string"}, "iron-behaviors": {"type": "string"}, "iron-flex-layout": {"type": "string"}, "iron-input": {"type": "string"}, "iron-selector": {"type": "string"}, "mocha": {"type": "string"}, "mousetrap": {"type": "string"}, "numeral": {"type": "string"}, "pace": {"type": "string"}, "pixi": {"type": "string"}, "polymer": {"type": "string"}, "stats.js": {"type": "string"}, "svg.js": {"type": "string"}, "web-animations-js": {"type": "string"}, "paper-input": {"type": "string"}, "paper-button": {"type": "string"}, "paper-radio-button": {"type": "string"}, "paper-styles": {"type": "string"}}, "required": ["chai", "chroma-js", "fontawesome", "iron-behaviors", "iron-flex-layout", "iron-input", "iron-selector", "mocha", "mousetrap", "numeral", "pace", "pixi", "polymer", "stats.js", "svg.js", "web-animations-js", "paper-input", "paper-button", "paper-radio-button", "paper-styles"]}, "devDependencies": {"type": "object", "properties": {}, "required": []}}, "required": ["name", "ignore", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "fireball", "ignore" : ["**/.*", "3rd", "bower_components", "ext", "node_modules", "test"], "dependencies" : {"chai" : "2.3.0", "chroma-js" : "0.8.0", "fontawesome" : "4.3.0", "iron-behaviors" : "PolymerElements/iron-behaviors#^1.0.0", "iron-flex-layout" : "PolymerElements/iron-flex-layout#^1.0.0", "iron-input" : "PolymerElements/iron-input#^1.0.0", "iron-selector" : "PolymerElements/iron-selector#^1.0.0", "mocha" : "2.2.5", "mousetrap" : "ccampbell/mousetrap#1.5.2", "numeral" : "1.5.3", "pace" : "1.0.2", "pixi" : "3.0.6", "polymer" : "Polymer/polymer#1.1.1", "stats.js" : "mrdoob/stats.js#master", "svg.js" : "2.0.5", "web-animations-js" : "web-animations/web-animations-js#master", "paper-input" : "PolymerElements/paper-input#^1.0.0", "paper-button" : "PolymerElements/paper-button#^1.0.0", "paper-radio-button" : "PolymerElements/paper-radio-button#^1.0.0", "paper-styles" : "fireball-x/paper-styles#1.0.8"}, "devDependencies" : {}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "ignore": {"type": "array", "items": {"type": "string"}}, "dependencies": {"type": "object", "properties": {"chai": {"type": "string"}, "chroma-js": {"type": "string"}, "fontawesome": {"type": "string"}, "iron-behaviors": {"type": "string"}, "iron-flex-layout": {"type": "string"}, "iron-input": {"type": "string"}, "iron-selector": {"type": "string"}, "mocha": {"type": "string"}, "mousetrap": {"type": "string"}, "numeral": {"type": "string"}, "pace": {"type": "string"}, "pixi": {"type": "string"}, "polymer": {"type": "string"}, "stats.js": {"type": "string"}, "svg.js": {"type": "string"}, "web-animations-js": {"type": "string"}, "paper-input": {"type": "string"}, "paper-button": {"type": "string"}, "paper-radio-button": {"type": "string"}, "paper-styles": {"type": "string"}}, "required": ["chai", "chroma-js", "fontawesome", "iron-behaviors", "iron-flex-layout", "iron-input", "iron-selector", "mocha", "mousetrap", "numeral", "pace", "pixi", "polymer", "stats.js", "svg.js", "web-animations-js", "paper-input", "paper-button", "paper-radio-button", "paper-styles"]}, "devDependencies": {"type": "object", "properties": {}, "required": []}}, "required": ["name", "ignore", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.