input
stringlengths
159
2.05k
output
stringlengths
5
10.3k
task
stringclasses
1 value
schema
stringlengths
100
1.99k
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"900766175": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900766176": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900766177": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}}, "required": ["900766175", "900766176", "900766177"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"900766175" : {"nama" : "TPS 1", "dapil" : [9101, 19103, 2912603]}, "900766176" : {"nama" : "TPS 2", "dapil" : [9101, 19103, 2912603]}, "900766177" : {"nama" : "TPS 3", "dapil" : [9101, 19103, 2912603]}}
json_instruct
{"type": "object", "properties": {"900766175": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900766176": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900766177": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}}, "required": ["900766175", "900766176", "900766177"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "array", "items": {"type": "object", "properties": {"model": {"type": "string"}, "pk": {"type": "integer"}, "fields": {"type": "object", "properties": {"from_user": {"type": "integer"}, "to_user": {"type": "integer"}, "message": {"type": "string"}, "created": {"type": "string"}, "rejected": {"type": "null"}, "viewed": {"type": "null"}}, "required": ["from_user", "to_user", "message", "created", "rejected", "viewed"]}}, "required": ["model", "pk", "fields"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"model" : "friends.friendshiprequest", "pk" : 1, "fields" : {"from_user" : 4, "to_user" : 1, "message" : "", "created" : "2017-10-12T08:32:27Z", "rejected" : null, "viewed" : null}}, {"model" : "friends.friendshiprequest", "pk" : 2, "fields" : {"from_user" : 4, "to_user" : 2, "message" : "", "created" : "2017-10-12T08:32:42Z", "rejected" : null, "viewed" : null}}, {"model" : "friends.friendshiprequest", "pk" : 3, "fields" : {"from_user" : 3, "to_user" : 2, "message" : "", "created" : "2017-10-12T08:32:57Z", "rejected" : null, "viewed" : null}}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"model": {"type": "string"}, "pk": {"type": "integer"}, "fields": {"type": "object", "properties": {"from_user": {"type": "integer"}, "to_user": {"type": "integer"}, "message": {"type": "string"}, "created": {"type": "string"}, "rejected": {"type": "null"}, "viewed": {"type": "null"}}, "required": ["from_user", "to_user", "message", "created", "rejected", "viewed"]}}, "required": ["model", "pk", "fields"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"name": {"type": "string"}, "main": {"type": "string"}, "author": {"type": "string"}, "homepage": {"type": "string"}, "license": {"type": "string"}, "scripts": {"type": "object", "properties": {"dev": {"type": "string"}, "start": {"type": "string"}}, "required": ["dev", "start"]}, "dependencies": {"type": "object", "properties": {"body-parser": {"type": "string"}, "csv-parse": {"type": "string"}, "d3fc-sample": {"type": "string"}, "datalib": {"type": "string"}, "ejs": {"type": "string"}, "express": {"type": "string"}, "express-ejs-layouts": {"type": "string"}, "path": {"type": "string"}}, "required": ["body-parser", "csv-parse", "d3fc-sample", "datalib", "ejs", "express", "express-ejs-layouts", "path"]}, "devDependencies": {"type": "object", "properties": {"nodemon": {"type": "string"}}, "required": ["nodemon"]}, "engines": {"type": "object", "properties": {"node": {"type": "string"}}, "required": ["node"]}}, "required": ["name", "main", "author", "homepage", "license", "scripts", "dependencies", "devDependencies", "engines"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "polya-1", "main" : "server.js", "author" : "Federico Commisso", "homepage" : "polyaxial.com", "license" : "MIT", "scripts" : {"dev" : "nodemon server.js", "start" : "node server.js"}, "dependencies" : {"body-parser" : "^1.18.2", "csv-parse" : "^2.2.0", "d3fc-sample" : "^3.0.5", "datalib" : "^1.8.0", "ejs" : "^1.0.0", "express" : "^4.6.1", "express-ejs-layouts" : "^1.1.0", "path" : "^0.12.7"}, "devDependencies" : {"nodemon" : "^1.17.3"}, "engines" : {"node" : "9.5.0"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "main": {"type": "string"}, "author": {"type": "string"}, "homepage": {"type": "string"}, "license": {"type": "string"}, "scripts": {"type": "object", "properties": {"dev": {"type": "string"}, "start": {"type": "string"}}, "required": ["dev", "start"]}, "dependencies": {"type": "object", "properties": {"body-parser": {"type": "string"}, "csv-parse": {"type": "string"}, "d3fc-sample": {"type": "string"}, "datalib": {"type": "string"}, "ejs": {"type": "string"}, "express": {"type": "string"}, "express-ejs-layouts": {"type": "string"}, "path": {"type": "string"}}, "required": ["body-parser", "csv-parse", "d3fc-sample", "datalib", "ejs", "express", "express-ejs-layouts", "path"]}, "devDependencies": {"type": "object", "properties": {"nodemon": {"type": "string"}}, "required": ["nodemon"]}, "engines": {"type": "object", "properties": {"node": {"type": "string"}}, "required": ["node"]}}, "required": ["name", "main", "author", "homepage", "license", "scripts", "dependencies", "devDependencies", "engines"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"106": {"type": "integer"}, "107": {"type": "integer"}, "108": {"type": "integer"}, "111": {"type": "integer"}, "113": {"type": "integer"}, "12": {"type": "integer"}, "124": {"type": "integer"}, "13": {"type": "integer"}, "137": {"type": "integer"}, "138": {"type": "integer"}, "140": {"type": "integer"}, "141": {"type": "integer"}, "147": {"type": "integer"}, "149": {"type": "integer"}, "15": {"type": "integer"}, "151": {"type": "integer"}, "152": {"type": "integer"}, "164": {"type": "integer"}, "177": {"type": "integer"}, "19": {"type": "integer"}, "20": {"type": "integer"}, "25": {"type": "integer"}, "27": {"type": "integer"}, "29": {"type": "integer"}, "3": {"type": "integer"}, "33": {"type": "integer"}, "35": {"type": "integer"}, "42": {"type": "integer"}, "45": {"type": "integer"}, "46": {"type": "integer"}, "48": {"type": "integer"}, "52": {"type": "integer"}, "63": {"type": "integer"}, "68": {"type": "integer"}, "69": {"type": "integer"}, "75": {"type": "integer"}, "78": {"type": "integer"}, "79": {"type": "integer"}, "83": {"type": "integer"}, "87": {"type": "integer"}, "89": {"type": "integer"}, "94": {"type": "integer"}, "99": {"type": "integer"}}, "required": ["106", "107", "108", "111", "113", "12", "124", "13", "137", "138", "140", "141", "147", "149", "15", "151", "152", "164", "177", "19", "20", "25", "27", "29", "3", "33", "35", "42", "45", "46", "48", "52", "63", "68", "69", "75", "78", "79", "83", "87", "89", "94", "99"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"106" : 65759, "107" : 146147, "108" : 157603, "111" : 384394, "113" : 132962, "12" : 262607, "124" : 77887, "13" : 385403, "137" : 94363, "138" : 213074, "140" : 78663, "141" : 77780, "147" : 44450, "149" : 159745, "15" : 185746, "151" : 35522, "152" : 22722, "164" : 83360, "177" : 136282, "19" : 67871, "20" : 82182, "25" : 30377, "27" : 309135, "29" : 317165, "3" : 36834, "33" : 120405, "35" : 152133, "42" : 44390, "45" : 6143, "46" : 4830, "48" : 215297, "52" : 29253, "63" : 201559, "68" : 141653, "69" : 19260, "75" : 40912, "78" : 306843, "79" : 180347, "83" : 105764, "87" : 2285, "89" : 19938, "94" : 22357, "99" : 203943}
json_instruct
{"type": "object", "properties": {"106": {"type": "integer"}, "107": {"type": "integer"}, "108": {"type": "integer"}, "111": {"type": "integer"}, "113": {"type": "integer"}, "12": {"type": "integer"}, "124": {"type": "integer"}, "13": {"type": "integer"}, "137": {"type": "integer"}, "138": {"type": "integer"}, "140": {"type": "integer"}, "141": {"type": "integer"}, "147": {"type": "integer"}, "149": {"type": "integer"}, "15": {"type": "integer"}, "151": {"type": "integer"}, "152": {"type": "integer"}, "164": {"type": "integer"}, "177": {"type": "integer"}, "19": {"type": "integer"}, "20": {"type": "integer"}, "25": {"type": "integer"}, "27": {"type": "integer"}, "29": {"type": "integer"}, "3": {"type": "integer"}, "33": {"type": "integer"}, "35": {"type": "integer"}, "42": {"type": "integer"}, "45": {"type": "integer"}, "46": {"type": "integer"}, "48": {"type": "integer"}, "52": {"type": "integer"}, "63": {"type": "integer"}, "68": {"type": "integer"}, "69": {"type": "integer"}, "75": {"type": "integer"}, "78": {"type": "integer"}, "79": {"type": "integer"}, "83": {"type": "integer"}, "87": {"type": "integer"}, "89": {"type": "integer"}, "94": {"type": "integer"}, "99": {"type": "integer"}}, "required": ["106", "107", "108", "111", "113", "12", "124", "13", "137", "138", "140", "141", "147", "149", "15", "151", "152", "164", "177", "19", "20", "25", "27", "29", "3", "33", "35", "42", "45", "46", "48", "52", "63", "68", "69", "75", "78", "79", "83", "87", "89", "94", "99"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "license": {"type": "string"}, "author": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "devDependencies": {"type": "object", "properties": {"grunt": {"type": "string"}, "grunt-build-lifecycle": {"type": "string"}, "grunt-contrib-coffee": {"type": "string"}, "grunt-contrib-uglify": {"type": "string"}}, "required": ["grunt", "grunt-build-lifecycle", "grunt-contrib-coffee", "grunt-contrib-uglify"]}}, "required": ["name", "version", "description", "keywords", "license", "author", "repository", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "ng-country-select", "version" : "0.0.10", "description" : "AngularJS directive for country-select-js jQuery plugin", "keywords" : ["international", "country", "code", "mobile", "input", "flag", "directive", "angular", "angularjs"], "license" : "MIT", "author" : "George Nikolaides (http://gnik.me)", "repository" : {"type" : "git", "url" : "https://github.com/immortalcy/ng-country-select-js"}, "devDependencies" : {"grunt" : "^0.4.5", "grunt-build-lifecycle" : "^0.1.1", "grunt-contrib-coffee" : "^0.13.0", "grunt-contrib-uglify" : "^0.9.1"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "license": {"type": "string"}, "author": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "devDependencies": {"type": "object", "properties": {"grunt": {"type": "string"}, "grunt-build-lifecycle": {"type": "string"}, "grunt-contrib-coffee": {"type": "string"}, "grunt-contrib-uglify": {"type": "string"}}, "required": ["grunt", "grunt-build-lifecycle", "grunt-contrib-coffee", "grunt-contrib-uglify"]}}, "required": ["name", "version", "description", "keywords", "license", "author", "repository", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"www": {"type": "object", "properties": {"port": {"type": "string"}, "message": {"type": "string"}, "session2": {"type": "string"}, "session": {"type": "string"}, "secretKey": {"type": "string"}, "debug_file": {"type": "string"}, "debug_console": {"type": "string"}}, "required": ["port", "message", "session2", "session", "secretKey", "debug_file", "debug_console"]}, "auth": {"type": "object", "properties": {"debug_file": {"type": "string"}, "debug_console": {"type": "string"}}, "required": ["debug_file", "debug_console"]}, "sio": {"type": "object", "properties": {"debug_file": {"type": "string"}, "debug_console": {"type": "string"}}, "required": ["debug_file", "debug_console"]}, "files": {"type": "object", "properties": {"directory": {"type": "string"}, "debug_file": {"type": "string"}, "debug_console": {"type": "string"}}, "required": ["directory", "debug_file", "debug_console"]}, "upload": {"type": "object", "properties": {"directory": {"type": "string"}}, "required": ["directory"]}, "charts": {"type": "object", "properties": {"debug_file": {"type": "string"}, "debug_console": {"type": "string"}}, "required": ["debug_file", "debug_console"]}, "settings": {"type": "object", "properties": {"debug_file": {"type": "string"}, "debug_console": {"type": "string"}}, "required": ["debug_file", "debug_console"]}, "users": {"type": "object", "properties": {"database": {"type": "string"}, "database2": {"type": "string"}, "json": {"type": "object", "properties": {"directory": {"type": "string"}, "file": {"type": "string"}}, "required": ["directory", "file"]}, "sqlite3": {"type": "object", "properties": {"directory": {"type": "string"}, "file": {"type": "string"}}, "required": ["directory", "file"]}}, "required": ["database", "database2", "json", "sqlite3"]}}, "required": ["www", "auth", "sio", "files", "upload", "charts", "settings", "users"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"www" : {"port" : "3000", "message" : "Node JS listening on port 3000!", "session2" : "sqlite3", "session" : "memory", "secretKey" : "SuperSecretKey123!", "debug_file" : "error", "debug_console" : "error"}, "auth" : {"debug_file" : "error", "debug_console" : "debug"}, "sio" : {"debug_file" : "error", "debug_console" : "error"}, "files" : {"directory" : "fileserver", "debug_file" : "debug", "debug_console" : "debug"}, "upload" : {"directory" : "fileserver"}, "charts" : {"debug_file" : "error", "debug_console" : "error"}, "settings" : {"debug_file" : "error", "debug_console" : "error"}, "users" : {"database" : "json", "database2" : "sqlite3", "json" : {"directory" : "db", "file" : "users.json"}, "sqlite3" : {"directory" : "db", "file" : "users.db"}}}
json_instruct
{"type": "object", "properties": {"www": {"type": "object", "properties": {"port": {"type": "string"}, "message": {"type": "string"}, "session2": {"type": "string"}, "session": {"type": "string"}, "secretKey": {"type": "string"}, "debug_file": {"type": "string"}, "debug_console": {"type": "string"}}, "required": ["port", "message", "session2", "session", "secretKey", "debug_file", "debug_console"]}, "auth": {"type": "object", "properties": {"debug_file": {"type": "string"}, "debug_console": {"type": "string"}}, "required": ["debug_file", "debug_console"]}, "sio": {"type": "object", "properties": {"debug_file": {"type": "string"}, "debug_console": {"type": "string"}}, "required": ["debug_file", "debug_console"]}, "files": {"type": "object", "properties": {"directory": {"type": "string"}, "debug_file": {"type": "string"}, "debug_console": {"type": "string"}}, "required": ["directory", "debug_file", "debug_console"]}, "upload": {"type": "object", "properties": {"directory": {"type": "string"}}, "required": ["directory"]}, "charts": {"type": "object", "properties": {"debug_file": {"type": "string"}, "debug_console": {"type": "string"}}, "required": ["debug_file", "debug_console"]}, "settings": {"type": "object", "properties": {"debug_file": {"type": "string"}, "debug_console": {"type": "string"}}, "required": ["debug_file", "debug_console"]}, "users": {"type": "object", "properties": {"database": {"type": "string"}, "database2": {"type": "string"}, "json": {"type": "object", "properties": {"directory": {"type": "string"}, "file": {"type": "string"}}, "required": ["directory", "file"]}, "sqlite3": {"type": "object", "properties": {"directory": {"type": "string"}, "file": {"type": "string"}}, "required": ["directory", "file"]}}, "required": ["database", "database2", "json", "sqlite3"]}}, "required": ["www", "auth", "sio", "files", "upload", "charts", "settings", "users"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "array", "items": {"type": "object", "properties": {"manufacturer": {"type": "string"}, "market_name": {"type": "string"}, "codename": {"type": "string"}, "model": {"type": "string"}}, "required": ["manufacturer", "market_name", "codename", "model"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"manufacturer" : "Samsung", "market_name" : "Galaxy A50s", "codename" : "a50s", "model" : "SM-A5070"}, {"manufacturer" : "Samsung", "market_name" : "Galaxy A50s", "codename" : "a50s", "model" : "SM-A507FN"}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"manufacturer": {"type": "string"}, "market_name": {"type": "string"}, "codename": {"type": "string"}, "model": {"type": "string"}}, "required": ["manufacturer", "market_name", "codename", "model"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"Modules": {"type": "object", "properties": {"org.commons.jconfig.config.ConfigManagerConfig": {"type": "object", "properties": {"ConfigPath": {"type": "string"}}, "required": ["ConfigPath"]}}, "required": ["org.commons.jconfig.config.ConfigManagerConfig"]}}, "required": ["Modules"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"Modules" : {"org.commons.jconfig.config.ConfigManagerConfig" : {"ConfigPath" : "src/test/resources"}}}
json_instruct
{"type": "object", "properties": {"Modules": {"type": "object", "properties": {"org.commons.jconfig.config.ConfigManagerConfig": {"type": "object", "properties": {"ConfigPath": {"type": "string"}}, "required": ["ConfigPath"]}}, "required": ["org.commons.jconfig.config.ConfigManagerConfig"]}}, "required": ["Modules"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"name": {"type": "string"}, "number": {"type": "string"}, "is_illegal": {"type": "boolean"}, "text": {"type": "string"}, "type": {"type": "string"}, "is_monster": {"type": "boolean"}, "is_spell": {"type": "boolean"}, "is_trap": {"type": "boolean"}, "property": {"type": "string"}}, "required": ["name", "number", "is_illegal", "text", "type", "is_monster", "is_spell", "is_trap", "property"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "Dark Advance", "number" : "97001138", "is_illegal" : false, "text" : "During either player's Main Phase or Battle Phase: Target 1 monster in your Graveyard with 2400 or more ATK and 1000 DEF; add it to your hand, then immediately after this effect resolves, you can Tribute Summon 1 monster with 2400 or more ATK and 1000 DEF in face-up Attack Position. You can only activate 1 \"Dark Advance\" per turn.", "type" : "Trap", "is_monster" : false, "is_spell" : false, "is_trap" : true, "property" : "Normal"}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "number": {"type": "string"}, "is_illegal": {"type": "boolean"}, "text": {"type": "string"}, "type": {"type": "string"}, "is_monster": {"type": "boolean"}, "is_spell": {"type": "boolean"}, "is_trap": {"type": "boolean"}, "property": {"type": "string"}}, "required": ["name", "number", "is_illegal", "text", "type", "is_monster", "is_spell", "is_trap", "property"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"build": {"type": "string"}, "start": {"type": "string"}, "test": {"type": "string"}}, "required": ["build", "start", "test"]}, "author": {"type": "string"}, "license": {"type": "string"}, "homepage": {"type": "string"}, "dependencies": {"type": "object", "properties": {"@openlearning/xapi": {"type": "string"}, "react": {"type": "string"}, "react-dom": {"type": "string"}, "react-simple-code-editor": {"type": "string"}}, "required": ["@openlearning/xapi", "react", "react-dom", "react-simple-code-editor"]}, "devDependencies": {"type": "object", "properties": {"@babel/core": {"type": "string"}, "@babel/preset-env": {"type": "string"}, "@babel/preset-react": {"type": "string"}, "@types/mermaid": {"type": "string"}, "@types/react": {"type": "string"}, "@types/react-dom": {"type": "string"}, "css-loader": {"type": "string"}, "html-webpack-plugin": {"type": "string"}, "style-loader": {"type": "string"}, "ts-loader": {"type": "string"}, "typescript": {"type": "string"}, "webpack": {"type": "string"}, "webpack-cli": {"type": "string"}, "webpack-dev-server": {"type": "string"}}, "required": ["@babel/core", "@babel/preset-env", "@babel/preset-react", "@types/mermaid", "@types/react", "@types/react-dom", "css-loader", "html-webpack-plugin", "style-loader", "ts-loader", "typescript", "webpack", "webpack-cli", "webpack-dev-server"]}}, "required": ["name", "version", "description", "main", "scripts", "author", "license", "homepage", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "@cs101/hexArt", "version" : "1.0.0", "description" : "Create artworks using hexadecimal", "main" : "index.js", "scripts" : {"build" : "webpack --mode=production", "start" : "webpack serve --mode=development", "test" : "echo \"Error: no test specified\" && exit 1"}, "author" : "David Collien", "license" : "MIT", "homepage" : "https://github.com/cs101course/hexArt#readme", "dependencies" : {"@openlearning/xapi" : "^0.1.6", "react" : "^17.0.2", "react-dom" : "^17.0.2", "react-simple-code-editor" : "^0.11.0"}, "devDependencies" : {"@babel/core" : "^7.14.5", "@babel/preset-env" : "^7.14.5", "@babel/preset-react" : "^7.14.5", "@types/mermaid" : "^8.2.7", "@types/react" : "^17.0.11", "@types/react-dom" : "^17.0.7", "css-loader" : "^5.2.6", "html-webpack-plugin" : "^5.3.1", "style-loader" : "^2.0.0", "ts-loader" : "^9.2.3", "typescript" : "^4.3.2", "webpack" : "^5.38.1", "webpack-cli" : "^4.7.2", "webpack-dev-server" : "^3.11.2"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"build": {"type": "string"}, "start": {"type": "string"}, "test": {"type": "string"}}, "required": ["build", "start", "test"]}, "author": {"type": "string"}, "license": {"type": "string"}, "homepage": {"type": "string"}, "dependencies": {"type": "object", "properties": {"@openlearning/xapi": {"type": "string"}, "react": {"type": "string"}, "react-dom": {"type": "string"}, "react-simple-code-editor": {"type": "string"}}, "required": ["@openlearning/xapi", "react", "react-dom", "react-simple-code-editor"]}, "devDependencies": {"type": "object", "properties": {"@babel/core": {"type": "string"}, "@babel/preset-env": {"type": "string"}, "@babel/preset-react": {"type": "string"}, "@types/mermaid": {"type": "string"}, "@types/react": {"type": "string"}, "@types/react-dom": {"type": "string"}, "css-loader": {"type": "string"}, "html-webpack-plugin": {"type": "string"}, "style-loader": {"type": "string"}, "ts-loader": {"type": "string"}, "typescript": {"type": "string"}, "webpack": {"type": "string"}, "webpack-cli": {"type": "string"}, "webpack-dev-server": {"type": "string"}}, "required": ["@babel/core", "@babel/preset-env", "@babel/preset-react", "@types/mermaid", "@types/react", "@types/react-dom", "css-loader", "html-webpack-plugin", "style-loader", "ts-loader", "typescript", "webpack", "webpack-cli", "webpack-dev-server"]}}, "required": ["name", "version", "description", "main", "scripts", "author", "license", "homepage", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"autolispext.project.openlspfile.filenotexist": {"type": "string"}}, "required": ["autolispext.project.openlspfile.filenotexist"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"autolispext.project.openlspfile.filenotexist" : "O arquivo n\u00e3o existe: "}
json_instruct
{"type": "object", "properties": {"autolispext.project.openlspfile.filenotexist": {"type": "string"}}, "required": ["autolispext.project.openlspfile.filenotexist"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"type": {"type": "string"}, "liquid": {"type": "object", "properties": {"fluid": {"type": "string"}, "nbt": {"type": "object", "properties": {"Bottle": {"type": "string"}, "Potion": {"type": "string"}}, "required": ["Bottle", "Potion"]}}, "required": ["fluid", "nbt"]}, "ingredients": {"type": "array", "items": {"type": "object", "properties": {"item": {"type": "string"}}, "required": ["item"]}}, "output": {"type": "object", "properties": {"item": {"type": "string"}}, "required": ["item"]}, "fluidLevelsConsumed": {"type": "integer"}, "dippingTimeInTicks": {"type": "integer"}, "dryingTimeInTicks": {"type": "integer"}, "numberOfDips": {"type": "integer"}}, "required": ["type", "liquid", "ingredients", "output", "fluidLevelsConsumed", "dippingTimeInTicks", "dryingTimeInTicks", "numberOfDips"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"type" : "hexerei:dipper", "liquid" : {"fluid" : "create:potion", "nbt" : {"Bottle" : "REGULAR", "Potion" : "minecraft:leaping"}}, "ingredients" : [{"item" : "minecraft:red_mushroom"}], "output" : {"item" : "minecraft:spider_eye"}, "fluidLevelsConsumed" : 50, "dippingTimeInTicks" : 500, "dryingTimeInTicks" : 100, "numberOfDips" : 1}
json_instruct
{"type": "object", "properties": {"type": {"type": "string"}, "liquid": {"type": "object", "properties": {"fluid": {"type": "string"}, "nbt": {"type": "object", "properties": {"Bottle": {"type": "string"}, "Potion": {"type": "string"}}, "required": ["Bottle", "Potion"]}}, "required": ["fluid", "nbt"]}, "ingredients": {"type": "array", "items": {"type": "object", "properties": {"item": {"type": "string"}}, "required": ["item"]}}, "output": {"type": "object", "properties": {"item": {"type": "string"}}, "required": ["item"]}, "fluidLevelsConsumed": {"type": "integer"}, "dippingTimeInTicks": {"type": "integer"}, "dryingTimeInTicks": {"type": "integer"}, "numberOfDips": {"type": "integer"}}, "required": ["type", "liquid", "ingredients", "output", "fluidLevelsConsumed", "dippingTimeInTicks", "dryingTimeInTicks", "numberOfDips"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"compilerOptions": {"type": "object", "properties": {"target": {"type": "string"}, "lib": {"type": "array", "items": {"type": "string"}}, "module": {"type": "string"}, "outDir": {"type": "string"}, "rootDir": {"type": "string"}, "baseUrl": {"type": "string"}, "esModuleInterop": {"type": "boolean"}, "removeComments": {"type": "boolean"}, "strict": {"type": "boolean"}, "forceConsistentCasingInFileNames": {"type": "boolean"}}, "required": ["target", "lib", "module", "outDir", "rootDir", "baseUrl", "esModuleInterop", "removeComments", "strict", "forceConsistentCasingInFileNames"]}, "include": {"type": "array", "items": {"type": "string"}}}, "required": ["compilerOptions", "include"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"compilerOptions" : {"target" : "ESNEXT", "lib" : ["ES2015", "dom"], "module" : "none", "outDir" : "SHIMON/static/js/", "rootDir" : "src/ts/", "baseUrl" : "./", "esModuleInterop" : true, "removeComments" : true, "strict" : true, "forceConsistentCasingInFileNames" : true}, "include" : ["./src/ts/*"]}
json_instruct
{"type": "object", "properties": {"compilerOptions": {"type": "object", "properties": {"target": {"type": "string"}, "lib": {"type": "array", "items": {"type": "string"}}, "module": {"type": "string"}, "outDir": {"type": "string"}, "rootDir": {"type": "string"}, "baseUrl": {"type": "string"}, "esModuleInterop": {"type": "boolean"}, "removeComments": {"type": "boolean"}, "strict": {"type": "boolean"}, "forceConsistentCasingInFileNames": {"type": "boolean"}}, "required": ["target", "lib", "module", "outDir", "rootDir", "baseUrl", "esModuleInterop", "removeComments", "strict", "forceConsistentCasingInFileNames"]}, "include": {"type": "array", "items": {"type": "string"}}}, "required": ["compilerOptions", "include"], "$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" : "Charbonni\u00e8res", "dpt" : "Eure-et-Loir", "inscrits" : 198, "abs" : 32, "votants" : 166, "blancs" : 13, "nuls" : 7, "exp" : 146, "res" : [{"panneau" : "1", "voix" : 81}, {"panneau" : "2", "voix" : 65}]}
json_instruct
{"type": "object", "properties": {"nom": {"type": "string"}, "dpt": {"type": "string"}, "inscrits": {"type": "integer"}, "abs": {"type": "integer"}, "votants": {"type": "integer"}, "blancs": {"type": "integer"}, "nuls": {"type": "integer"}, "exp": {"type": "integer"}, "res": {"type": "array", "items": {"type": "object", "properties": {"panneau": {"type": "string"}, "voix": {"type": "integer"}}, "required": ["panneau", "voix"]}}}, "required": ["nom", "dpt", "inscrits", "abs", "votants", "blancs", "nuls", "exp", "res"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"recommendations": {"type": "array", "items": {"type": "string"}}}, "required": ["recommendations"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"recommendations" : ["scalameta.metals"]}
json_instruct
{"type": "object", "properties": {"recommendations": {"type": "array", "items": {"type": "string"}}}, "required": ["recommendations"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"env_info": {"type": "object", "properties": {"env_id": {"type": "string"}, "gym_version": {"type": "string"}}, "required": ["env_id", "gym_version"]}, "stats": {"type": "string"}, "videos": {"type": "array", "items": {}}}, "required": ["env_info", "stats", "videos"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"env_info" : {"env_id" : "Cat-v0", "gym_version" : "0.10.8"}, "stats" : "openaigym.episode_batch.0.4371.stats.json", "videos" : []}
json_instruct
{"type": "object", "properties": {"env_info": {"type": "object", "properties": {"env_id": {"type": "string"}, "gym_version": {"type": "string"}}, "required": ["env_id", "gym_version"]}, "stats": {"type": "string"}, "videos": {"type": "array", "items": {}}}, "required": ["env_info", "stats", "videos"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"$schema": {"type": "string"}, "title": {"type": "string"}, "type": {"type": "string"}, "additionalProperties": {"type": "boolean"}, "properties": {"type": "object", "properties": {"requestId": {"type": "object", "properties": {"type": {"type": "string"}, "format": {"type": "string"}}, "required": ["type", "format"]}, "success": {"type": "object", "properties": {"type": {"type": "string"}}, "required": ["type"]}}, "required": ["requestId", "success"]}}, "required": ["$schema", "title", "type", "additionalProperties", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"$schema" : "http://json-schema.org/draft-04/schema#", "title" : "RoomResponse", "type" : "object", "additionalProperties" : false, "properties" : {"requestId" : {"type" : "integer", "format" : "int32"}, "success" : {"type" : "boolean"}}}
json_instruct
{"type": "object", "properties": {"$schema": {"type": "string"}, "title": {"type": "string"}, "type": {"type": "string"}, "additionalProperties": {"type": "boolean"}, "properties": {"type": "object", "properties": {"requestId": {"type": "object", "properties": {"type": {"type": "string"}, "format": {"type": "string"}}, "required": ["type", "format"]}, "success": {"type": "object", "properties": {"type": {"type": "string"}}, "required": ["type"]}}, "required": ["requestId", "success"]}}, "required": ["$schema", "title", "type", "additionalProperties", "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"}, "main": {"type": "string"}, "repository": {"type": "string"}, "author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"vercel": {"type": "string"}}, "required": ["vercel"]}, "scripts": {"type": "object", "properties": {"setup": {"type": "string"}, "start": {"type": "string"}, "dev": {"type": "string"}}, "required": ["setup", "start", "dev"]}}, "required": ["name", "version", "main", "repository", "author", "license", "dependencies", "scripts"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "template-go-vercel", "version" : "1.0.0", "main" : "index.js", "repository" : "https://github.com/riccardogiorato/template-go-vercel", "author" : "riccardogiorato <https://riccardogiorato.com/>", "license" : "MIT", "dependencies" : {"vercel" : "^24.0.0"}, "scripts" : {"setup" : "yarn vercel login && yarn vercel link", "start" : "yarn vercel dev", "dev" : "yarn start"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "main": {"type": "string"}, "repository": {"type": "string"}, "author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"vercel": {"type": "string"}}, "required": ["vercel"]}, "scripts": {"type": "object", "properties": {"setup": {"type": "string"}, "start": {"type": "string"}, "dev": {"type": "string"}}, "required": ["setup", "start", "dev"]}}, "required": ["name", "version", "main", "repository", "author", "license", "dependencies", "scripts"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "ih"}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"version": {"type": "string"}, "name": {"type": "string"}, "example_code": {"type": "array", "items": {"type": "string"}}, "example_comment": {"type": "string"}, "summary": {"type": "string"}, "description": {"type": "array", "items": {"type": "string"}}, "parameters": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "desc": {"type": "string"}, "type": {"type": "string"}}, "required": ["name", "desc", "type"]}}, "footnotes": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "text": {"type": "array", "items": {"type": "string"}}, "code": {"type": "array", "items": {"type": "string"}}}, "required": ["type", "text", "code"]}}}, "required": ["version", "name", "example_code", "example_comment", "summary", "description", "parameters", "footnotes"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"version" : "2.0", "name" : "on_frame", "example_code" : ["function on_frame_func()", "\t-- code to execute", "end"], "example_comment" : "", "summary" : "", "description" : ["Assigns a function to be executed at a specific point in the animation.", "&emsp;`on_frame()` triggers _**don't**_ happen after a specific amount of game-time frames (1/60th of a second),", "&emsp; instead they happen when the animation moves to the next entry in its list for an animation.", "", "e.g. If an animation named `EXAMPLE_ANIMATION` has 8 states that last 1/6th of a second each:", "&emsp;`on_frame(1)` will trigger when starting the animation, `on_frame(2)` will trigger 1/6th of a second later, etc."], "parameters" : [{"name" : "on_frame_func", "desc" : "", "type" : "function"}], "footnotes" : [{"type" : "notice", "text" : ["`on_frame_func` requires **no** parameters, and to return **nothing**."], "code" : ["local animation\t\t-- Example Animation Handler", "function on_frame_func( )", "\tprint( \"animation interrupted!\" )", "end", "", "animation.on_frame = on_frame_func"]}]}
json_instruct
{"type": "object", "properties": {"version": {"type": "string"}, "name": {"type": "string"}, "example_code": {"type": "array", "items": {"type": "string"}}, "example_comment": {"type": "string"}, "summary": {"type": "string"}, "description": {"type": "array", "items": {"type": "string"}}, "parameters": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "desc": {"type": "string"}, "type": {"type": "string"}}, "required": ["name", "desc", "type"]}}, "footnotes": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "text": {"type": "array", "items": {"type": "string"}}, "code": {"type": "array", "items": {"type": "string"}}}, "required": ["type", "text", "code"]}}}, "required": ["version", "name", "example_code", "example_comment", "summary", "description", "parameters", "footnotes"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"extends": {"type": "string"}, "compilerOptions": {"type": "object", "properties": {"module": {"type": "string"}, "outDir": {"type": "string"}, "types": {"type": "array", "items": {"type": "string"}}, "lib": {"type": "array", "items": {"type": "string"}}, "jsx": {"type": "string"}, "noUnusedLocals": {"type": "boolean"}, "noFallthroughCasesInSwitch": {"type": "boolean"}}, "required": ["module", "outDir", "types", "lib", "jsx", "noUnusedLocals", "noFallthroughCasesInSwitch"]}, "include": {"type": "array", "items": {"type": "string"}}, "exclude": {"type": "array", "items": {"type": "string"}}}, "required": ["extends", "compilerOptions", "include", "exclude"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"extends" : "../../tsconfig", "compilerOptions" : {"module" : "esnext", "outDir" : "dist", "types" : ["vite/client"], "lib" : ["dom", "esnext"], "jsx" : "react", "noUnusedLocals" : false, "noFallthroughCasesInSwitch" : true}, "include" : ["src"], "exclude" : ["node_modules", "build"]}
json_instruct
{"type": "object", "properties": {"extends": {"type": "string"}, "compilerOptions": {"type": "object", "properties": {"module": {"type": "string"}, "outDir": {"type": "string"}, "types": {"type": "array", "items": {"type": "string"}}, "lib": {"type": "array", "items": {"type": "string"}}, "jsx": {"type": "string"}, "noUnusedLocals": {"type": "boolean"}, "noFallthroughCasesInSwitch": {"type": "boolean"}}, "required": ["module", "outDir", "types", "lib", "jsx", "noUnusedLocals", "noFallthroughCasesInSwitch"]}, "include": {"type": "array", "items": {"type": "string"}}, "exclude": {"type": "array", "items": {"type": "string"}}}, "required": ["extends", "compilerOptions", "include", "exclude"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"nom": {"type": "string"}, "circ": {"type": "string"}, "dpt": {"type": "string"}, "inscrits": {"type": "integer"}, "abs": {"type": "integer"}, "votants": {"type": "integer"}, "blancs": {"type": "integer"}, "nuls": {"type": "integer"}, "exp": {"type": "integer"}, "res": {"type": "array", "items": {"type": "object", "properties": {"nuance": {"type": "string"}, "nom": {"type": "string"}, "voix": {"type": "integer"}}, "required": ["nuance", "nom", "voix"]}}}, "required": ["nom", "circ", "dpt", "inscrits", "abs", "votants", "blancs", "nuls", "exp", "res"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"nom" : "Ar\u00e2ches", "circ" : "6\u00e8me circonscription", "dpt" : "Haute-Savoie", "inscrits" : 1500, "abs" : 798, "votants" : 702, "blancs" : 2, "nuls" : 2, "exp" : 698, "res" : [{"nuance" : "REM", "nom" : "M. Xavier ROSEREN", "voix" : 291}, {"nuance" : "LR", "nom" : "Mme Sophie DION", "voix" : 150}, {"nuance" : "DIV", "nom" : "M. Fr\u00e9d\u00e9ric CHAMPLY", "voix" : 81}, {"nuance" : "FI", "nom" : "Mme Sylvie BRIANCEAU", "voix" : 72}, {"nuance" : "ECO", "nom" : "M. Jacques VENJEAN", "voix" : 39}, {"nuance" : "FN", "nom" : "M. Karam AOUN", "voix" : 32}, {"nuance" : "DVD", "nom" : "M. Charles HEDRICH", "voix" : 14}, {"nuance" : "REG", "nom" : "M. Pierre BIGUET", "voix" : 8}, {"nuance" : "DLF", "nom" : "Mme Am\u00e9lie SARLIN", "voix" : 5}, {"nuance" : "DIV", "nom" : "M. S\u00e9bastien DUCROT", "voix" : 3}, {"nuance" : "EXG", "nom" : "Mme Catherine DERRIEN", "voix" : 3}]}
json_instruct
{"type": "object", "properties": {"nom": {"type": "string"}, "circ": {"type": "string"}, "dpt": {"type": "string"}, "inscrits": {"type": "integer"}, "abs": {"type": "integer"}, "votants": {"type": "integer"}, "blancs": {"type": "integer"}, "nuls": {"type": "integer"}, "exp": {"type": "integer"}, "res": {"type": "array", "items": {"type": "object", "properties": {"nuance": {"type": "string"}, "nom": {"type": "string"}, "voix": {"type": "integer"}}, "required": ["nuance", "nom", "voix"]}}}, "required": ["nom", "circ", "dpt", "inscrits", "abs", "votants", "blancs", "nuls", "exp", "res"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"rating": {"type": "string"}, "uuid": {"type": "string"}, "review_date": {"type": "string"}, "helpful": {"type": "string"}, "reviewer_id": {"type": "string"}, "not_helpful": {"type": "string"}, "review_text": {"type": "string"}, "summary": {"type": "string"}, "product_name": {"type": "string"}, "product_id": {"type": "string"}}, "required": ["rating", "uuid", "review_date", "helpful", "reviewer_id", "not_helpful", "review_text", "summary", "product_name", "product_id"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"rating" : "4", "uuid" : "603", "review_date" : "2013-10-21", "helpful" : "0", "reviewer_id" : "A1M8TDUXW3218K", "not_helpful" : "0", "review_text" : "I purchased this fan to replace a fan I had on my kitchen window for over 20 years. After much research (the original fan's company went out of business) I found this fan was the closest to my old one. It does not fit properly in my kitchen window, but I managed to hold it on by pinning it from the top to the bottom with the window. The sides are fine I had lot of lee way and did not need much. I must say it is easier to clean than my older one and it does what is promised. The three setting work great eliminating odors and recycling air. The fact that is reversible is very useful. Please keep in mind that my review is for an apartment window not a house.", "summary" : "Lako Reversible Window Fan", "product_name" : "Lasko #2155A Electrically Reversible Window Fan, 16 Inches", "product_id" : "B00002N5Z9"}
json_instruct
{"type": "object", "properties": {"rating": {"type": "string"}, "uuid": {"type": "string"}, "review_date": {"type": "string"}, "helpful": {"type": "string"}, "reviewer_id": {"type": "string"}, "not_helpful": {"type": "string"}, "review_text": {"type": "string"}, "summary": {"type": "string"}, "product_name": {"type": "string"}, "product_id": {"type": "string"}}, "required": ["rating", "uuid", "review_date", "helpful", "reviewer_id", "not_helpful", "review_text", "summary", "product_name", "product_id"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"token": {"type": "string"}, "mongo": {"type": "string"}}, "required": ["token", "mongo"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"token" : "Discord bot token", "mongo" : "mongoDB connection string, should start with mongodb://"}
json_instruct
{"type": "object", "properties": {"token": {"type": "string"}, "mongo": {"type": "string"}}, "required": ["token", "mongo"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"directions": {"type": "array", "items": {"type": "string"}}, "ingredients": {"type": "array", "items": {"type": "string"}}, "language": {"type": "string"}, "source": {"type": "string"}, "tags": {"type": "array", "items": {}}, "title": {"type": "string"}, "url": {"type": "string"}}, "required": ["directions", "ingredients", "language", "source", "tags", "title", "url"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"directions" : ["Cook and stir bacon in a Dutch oven over medium heat until browned and crisp, 5 to 10 minutes. Transfer bacon to a paper-towel lined plate and drain grease from Dutch oven.", "Cook and stir Italian sausage in Dutch oven until browned and crumbly, 5 to 10 minutes. Pour beef broth into Dutch oven and bring to a boil while scraping the browned bits of food off of the bottom of the pan with a wooden spoon.", "Stir celery, onion, carrot, Italian seasoning, coriander, garlic, black pepper, and sea salt into beef broth mixture; bring to a simmer and cook until vegetables are tender and liquid is reduced, 15 to 20 minutes. Stir cabbage, apple, and cooked bacon into vegetable mixture; cook until cabbage and apples are tender and desired consistency is reached, 30 to 45 minutes."], "ingredients" : ["3 slices bacon, diced", "1 pound bulk mild Italian sausage", "1 (14 ounce) can beef broth", "2 cups diced celery", "1 white onion, diced", "5 ounces shredded carrots", "2 tablespoons Italian seasoning", "2 teaspoons ground coriander", "1 1/2 teaspoons garlic, minced", "1 teaspoon ground black pepper", "1/2 teaspoon coarse sea salt", "1 head cabbage, shredded", "1 sweet apple, diced"], "language" : "en-US", "source" : "allrecipes.com", "tags" : [], "title" : "Italian Cabbage Casserole", "url" : "http://allrecipes.com/recipe/241936/italian-cabbage-casserole/"}
json_instruct
{"type": "object", "properties": {"directions": {"type": "array", "items": {"type": "string"}}, "ingredients": {"type": "array", "items": {"type": "string"}}, "language": {"type": "string"}, "source": {"type": "string"}, "tags": {"type": "array", "items": {}}, "title": {"type": "string"}, "url": {"type": "string"}}, "required": ["directions", "ingredients", "language", "source", "tags", "title", "url"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "author": {"type": "string"}, "homepage": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "main": {"type": "string"}, "files": {"type": "array", "items": {"type": "string"}}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "build": {"type": "string"}, "prepublish": {"type": "string"}}, "required": ["test", "build", "prepublish"]}, "dependencies": {"type": "object", "properties": {"esutils": {"type": "string"}, "shift-parser": {"type": "string"}, "shift-reducer": {"type": "string"}, "shift-regexp-acceptor": {"type": "string"}}, "required": ["esutils", "shift-parser", "shift-reducer", "shift-regexp-acceptor"]}, "devDependencies": {"type": "object", "properties": {"babel-cli": {"type": "string"}, "babel-register": {"type": "string"}, "babel-preset-es2015": {"type": "string"}, "everything.js": {"type": "string"}, "mocha": {"type": "string"}, "shift-ast": {"type": "string"}}, "required": ["babel-cli", "babel-register", "babel-preset-es2015", "everything.js", "mocha", "shift-ast"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "license": {"type": "string"}}, "required": ["name", "version", "description", "author", "homepage", "repository", "main", "files", "scripts", "dependencies", "devDependencies", "keywords", "bugs", "license"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "shift-validator", "version" : "4.0.0", "description" : "validator for the Shift AST format", "author" : "Shape Security", "homepage" : "https://github.com/shapesecurity/shift-validator-js", "repository" : {"type" : "git", "url" : "https://github.com/shapesecurity/shift-validator-js.git"}, "main" : "dist/index.js", "files" : ["dist"], "scripts" : {"test" : "mocha --compilers js:babel-register --inline-diffs --check-leaks --ui tdd --reporter dot test", "build" : "babel --source-maps-inline --out-dir dist src", "prepublish" : "rm -rf dist/* && npm update && npm run build"}, "dependencies" : {"esutils" : "2.0.2", "shift-parser" : "6.0.0", "shift-reducer" : "5.0.0", "shift-regexp-acceptor" : "1.0.1"}, "devDependencies" : {"babel-cli" : "6.3.13", "babel-register" : "6.3.13", "babel-preset-es2015" : "6.3.13", "everything.js" : "1.0.3", "mocha" : "2.3.4", "shift-ast" : "5.0.0"}, "keywords" : ["Shift", "AST", "validator", "valid", "abstract", "syntax", "tree"], "bugs" : {"url" : "https://github.com/shapesecurity/shift-validator-js/issues"}, "license" : "Apache-2.0"}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "author": {"type": "string"}, "homepage": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "main": {"type": "string"}, "files": {"type": "array", "items": {"type": "string"}}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "build": {"type": "string"}, "prepublish": {"type": "string"}}, "required": ["test", "build", "prepublish"]}, "dependencies": {"type": "object", "properties": {"esutils": {"type": "string"}, "shift-parser": {"type": "string"}, "shift-reducer": {"type": "string"}, "shift-regexp-acceptor": {"type": "string"}}, "required": ["esutils", "shift-parser", "shift-reducer", "shift-regexp-acceptor"]}, "devDependencies": {"type": "object", "properties": {"babel-cli": {"type": "string"}, "babel-register": {"type": "string"}, "babel-preset-es2015": {"type": "string"}, "everything.js": {"type": "string"}, "mocha": {"type": "string"}, "shift-ast": {"type": "string"}}, "required": ["babel-cli", "babel-register", "babel-preset-es2015", "everything.js", "mocha", "shift-ast"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "license": {"type": "string"}}, "required": ["name", "version", "description", "author", "homepage", "repository", "main", "files", "scripts", "dependencies", "devDependencies", "keywords", "bugs", "license"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"shape": {"type": "string"}, "rotation": {"type": "integer"}, "hash": {"type": "integer"}, "points": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}, "center": {"type": "array", "items": {"type": "number"}}, "sides": {"type": "array", "items": {"type": "number"}}, "perimeter": {"type": "number"}, "angles": {"type": "array", "items": {"type": "number"}}, "area": {"type": "number"}}, "required": ["shape", "rotation", "hash", "points", "center", "sides", "perimeter", "angles", "area"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"shape" : "triangle", "rotation" : -343, "hash" : 579262294622384586, "points" : [[88.66666666666666, 68.66666666666667], [122.66666666666666, 115.66666666666667], [88.66666666666666, 115.66666666666667]], "center" : [100.0, 100.0], "sides" : [58.008620049092706, 34.0, 47.0], "perimeter" : 139.0086200490927, "angles" : [54.117862753795784, 90.0, 35.88213724620421], "area" : 799.0000000000003}
json_instruct
{"type": "object", "properties": {"shape": {"type": "string"}, "rotation": {"type": "integer"}, "hash": {"type": "integer"}, "points": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}, "center": {"type": "array", "items": {"type": "number"}}, "sides": {"type": "array", "items": {"type": "number"}}, "perimeter": {"type": "number"}, "angles": {"type": "array", "items": {"type": "number"}}, "area": {"type": "number"}}, "required": ["shape", "rotation", "hash", "points", "center", "sides", "perimeter", "angles", "area"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"value": {"type": "string"}, "prev": {"type": "integer"}}, "required": ["value", "prev"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"value" : "Comments on version 9 of 1111's paper", "prev" : 0}
json_instruct
{"type": "object", "properties": {"value": {"type": "string"}, "prev": {"type": "integer"}}, "required": ["value", "prev"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"type": {"type": "string"}, "id": {"type": "string"}, "properties": {"type": "object", "properties": {"alt_name": {"type": "string"}, "amenity": {"type": "string"}, "barrier": {"type": "string"}, "landuse": {"type": "string"}, "name": {"type": "string"}, "opening_hours": {"type": "string"}, "id": {"type": "string"}}, "required": ["alt_name", "amenity", "barrier", "landuse", "name", "opening_hours", "id"]}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "number"}}}, "required": ["type", "coordinates"]}}, "required": ["type", "id", "properties", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"type" : "Feature", "id" : "way/175404347", "properties" : {"alt_name" : "Gie\u0142da samochodowa", "amenity" : "marketplace", "barrier" : "wall", "landuse" : "retail", "name" : "Kiermasz cz\u0119\u015bci Automobilklub Wielkopolski", "opening_hours" : "Th; Su", "id" : "way/175404347"}, "geometry" : {"type" : "Point", "coordinates" : [16.7942191, 52.4187553]}}
json_instruct
{"type": "object", "properties": {"type": {"type": "string"}, "id": {"type": "string"}, "properties": {"type": "object", "properties": {"alt_name": {"type": "string"}, "amenity": {"type": "string"}, "barrier": {"type": "string"}, "landuse": {"type": "string"}, "name": {"type": "string"}, "opening_hours": {"type": "string"}, "id": {"type": "string"}}, "required": ["alt_name", "amenity", "barrier", "landuse", "name", "opening_hours", "id"]}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "number"}}}, "required": ["type", "coordinates"]}}, "required": ["type", "id", "properties", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"private": {"type": "boolean"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}, "build": {"type": "string"}}, "required": ["start", "build"]}, "devDependencies": {"type": "object", "properties": {"@astrojs/renderer-vue": {"type": "string"}, "astro": {"type": "string"}}, "required": ["@astrojs/renderer-vue", "astro"]}, "dependencies": {"type": "object", "properties": {"modern-normalize": {"type": "string"}}, "required": ["modern-normalize"]}}, "required": ["private", "scripts", "devDependencies", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"private" : true, "scripts" : {"start" : "astro dev", "build" : "astro build"}, "devDependencies" : {"@astrojs/renderer-vue" : "^0.3.0", "astro" : "^0.22.1"}, "dependencies" : {"modern-normalize" : "^1.1.0"}}
json_instruct
{"type": "object", "properties": {"private": {"type": "boolean"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}, "build": {"type": "string"}}, "required": ["start", "build"]}, "devDependencies": {"type": "object", "properties": {"@astrojs/renderer-vue": {"type": "string"}, "astro": {"type": "string"}}, "required": ["@astrojs/renderer-vue", "astro"]}, "dependencies": {"type": "object", "properties": {"modern-normalize": {"type": "string"}}, "required": ["modern-normalize"]}}, "required": ["private", "scripts", "devDependencies", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "id": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["type", "coordinates"]}, "geometry_name": {"type": "string"}, "properties": {"type": "object", "properties": {"id": {"type": "integer"}, "nome": {"type": "string"}, "cod": {"type": "integer"}, "ptotalvia": {"type": "integer"}, "ppasseio1": {"type": "number"}, "ppasseio2": {"type": "number"}, "leidata": {"type": "string"}, "hierarquia": {"type": "null"}, "bairro": {"type": "string"}, "abrevlogr": {"type": "null"}, "pavto": {"type": "string"}, "anopavtoin": {"type": "string"}, "loteamnome": {"type": "string"}, "nomeloteamento": {"type": "string"}}, "required": ["id", "nome", "cod", "ptotalvia", "ppasseio1", "ppasseio2", "leidata", "hierarquia", "bairro", "abrevlogr", "pavto", "anopavtoin", "loteamnome", "nomeloteamento"]}}, "required": ["type", "id", "geometry", "geometry_name", "properties"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"type" : "Feature", "id" : "viewsistemaviariocompleto.fid-cda359b_16bd380d5a7_4ec1", "geometry" : {"type" : "MultiLineString", "coordinates" : [[[-48.69507882, -26.9247965], [-48.69432719, -26.92521077], [-48.69394849, -26.92543588], [-48.69310778, -26.92590266]]]}, "geometry_name" : "geom", "properties" : {"id" : 868, "nome" : "R.Mario Ferrari", "cod" : 967, "ptotalvia" : 10, "ppasseio1" : 1.5, "ppasseio2" : 1.5, "leidata" : "3104/1996", "hierarquia" : null, "bairro" : "Cidade Nova", "abrevlogr" : null, "pavto" : "Asfalto", "anopavtoin" : "ago/11", "loteamnome" : "Padre Schmitt", "nomeloteamento" : "Rua \"14\""}}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "id": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["type", "coordinates"]}, "geometry_name": {"type": "string"}, "properties": {"type": "object", "properties": {"id": {"type": "integer"}, "nome": {"type": "string"}, "cod": {"type": "integer"}, "ptotalvia": {"type": "integer"}, "ppasseio1": {"type": "number"}, "ppasseio2": {"type": "number"}, "leidata": {"type": "string"}, "hierarquia": {"type": "null"}, "bairro": {"type": "string"}, "abrevlogr": {"type": "null"}, "pavto": {"type": "string"}, "anopavtoin": {"type": "string"}, "loteamnome": {"type": "string"}, "nomeloteamento": {"type": "string"}}, "required": ["id", "nome", "cod", "ptotalvia", "ppasseio1", "ppasseio2", "leidata", "hierarquia", "bairro", "abrevlogr", "pavto", "anopavtoin", "loteamnome", "nomeloteamento"]}}, "required": ["type", "id", "geometry", "geometry_name", "properties"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"id": {"type": "integer"}, "node": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "nameCN": {"type": "string"}, "image": {"type": "string"}, "date": {"type": "string"}}, "required": ["id", "name", "nameCN", "image", "date"]}}, "relate": {"type": "array", "items": {"type": "object", "properties": {"relate": {"type": "string"}, "src": {"type": "integer"}, "dst": {"type": "integer"}}, "required": ["relate", "src", "dst"]}}}, "required": ["id", "node", "relate"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : 4015, "node" : [{"id" : 4015, "name" : "\u30c0\u30a4\u30d0\u30fc\u30b8\u30a7\u30f3\u30b9\u30fb\u30a4\u30f4", "nameCN" : "\u6b7b\u4f53\u5175", "image" : "//lain.bgm.tv/pic/cover/m/58/75/4015_7Dn1Y.jpg", "date" : "2003-07-02"}, {"id" : 8591, "name" : "\u307f\u3055\u304d\u30af\u30ed\u30cb\u30af\u30eb \u301c\u30c0\u30a4\u30d0\u30fc\u30b8\u30a7\u30f3\u30b9\u30fb\u30a4\u30f4\u301c", "nameCN" : "\u6b7b\u4f53\u5175 \u7b2c\u4e8c\u5b63", "image" : "//lain.bgm.tv/pic/cover/m/cd/6b/8591_uJjUW.jpg", "date" : "2004-01-02"}], "relate" : [{"relate" : "\u7eed\u96c6", "src" : 4015, "dst" : 8591}, {"relate" : "\u524d\u4f20", "src" : 8591, "dst" : 4015}]}
json_instruct
{"type": "object", "properties": {"id": {"type": "integer"}, "node": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "nameCN": {"type": "string"}, "image": {"type": "string"}, "date": {"type": "string"}}, "required": ["id", "name", "nameCN", "image", "date"]}}, "relate": {"type": "array", "items": {"type": "object", "properties": {"relate": {"type": "string"}, "src": {"type": "integer"}, "dst": {"type": "integer"}}, "required": ["relate", "src", "dst"]}}}, "required": ["id", "node", "relate"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"word": {"type": "string"}, "definitions": {"type": "array", "items": {"type": "string"}}, "parts-of-speech": {"type": "string"}}, "required": ["word", "definitions", "parts-of-speech"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"word" : "Maladaptive", "definitions" : ["Not adjusting adequately or appropriately to the environment or situation."], "parts-of-speech" : "Adjective"}
json_instruct
{"type": "object", "properties": {"word": {"type": "string"}, "definitions": {"type": "array", "items": {"type": "string"}}, "parts-of-speech": {"type": "string"}}, "required": ["word", "definitions", "parts-of-speech"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"query": {"type": "string"}, "prediction": {"type": "object", "properties": {"topIntent": {"type": "string"}, "intents": {"type": "object", "properties": {"SetDescription": {"type": "object", "properties": {"score": {"type": "number"}}, "required": ["score"]}}, "required": ["SetDescription"]}, "entities": {"type": "object", "properties": {}, "required": []}}, "required": ["topIntent", "intents", "entities"]}}, "required": ["query", "prediction"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"query" : "this is a test description", "prediction" : {"topIntent" : "SetDescription", "intents" : {"SetDescription" : {"score" : 0.8036943}}, "entities" : {}}}
json_instruct
{"type": "object", "properties": {"query": {"type": "string"}, "prediction": {"type": "object", "properties": {"topIntent": {"type": "string"}, "intents": {"type": "object", "properties": {"SetDescription": {"type": "object", "properties": {"score": {"type": "number"}}, "required": ["score"]}}, "required": ["SetDescription"]}, "entities": {"type": "object", "properties": {}, "required": []}}, "required": ["topIntent", "intents", "entities"]}}, "required": ["query", "prediction"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"id": {"type": "integer"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"src:alt_label": {"type": "string"}, "src:geom": {"type": "string"}, "wof:geomhash": {"type": "string"}, "wof:id": {"type": "integer"}, "wof:repo": {"type": "string"}}, "required": ["src:alt_label", "src:geom", "wof:geomhash", "wof:id", "wof:repo"]}, "bbox": {"type": "array", "items": {"type": "number"}}, "geometry": {"type": "object", "properties": {"coordinates": {"type": "array", "items": {"type": "number"}}, "type": {"type": "string"}}, "required": ["coordinates", "type"]}}, "required": ["id", "type", "properties", "bbox", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : 404567915, "type" : "Feature", "properties" : {"src:alt_label" : "quattroshapes_pg", "src:geom" : "quattroshapes_pg", "wof:geomhash" : "d9a7cd5e6b1ba79e12cbc6f732a44089", "wof:id" : 404567915, "wof:repo" : "whosonfirst-data-admin-ch"}, "bbox" : [7.18869, 45.97925, 7.18869, 45.97925], "geometry" : {"coordinates" : [7.18869, 45.97925], "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#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"type": {"type": "string"}, "features": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"label:cs": {"type": "string"}, "P31": {"type": "string"}, "P31^label:cs": {"type": "string"}, "P131^label:cs": {"type": "string"}, "P6736": {"type": "string"}}, "required": ["label:cs", "P31", "P31^label:cs", "P131^label:cs", "P6736"]}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "number"}}}, "required": ["type", "coordinates"]}}, "required": ["type", "properties", "geometry"]}}}, "required": ["type", "features"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"type" : "FeatureCollection", "features" : [{"type" : "Feature", "properties" : {"label:cs" : "Kapli\u010dka v\u00fdchodn\u011b od Mal\u00e9 \u010cernoci", "P31" : "http://www.wikidata.org/entity/Q14552192", "P31^label:cs" : "Kapli\u010dka", "P131^label:cs" : "Bl\u0161any", "P6736" : "19883"}, "geometry" : {"type" : "Point", "coordinates" : [13.5591, 50.20555]}}]}
json_instruct
{"type": "object", "properties": {"type": {"type": "string"}, "features": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"label:cs": {"type": "string"}, "P31": {"type": "string"}, "P31^label:cs": {"type": "string"}, "P131^label:cs": {"type": "string"}, "P6736": {"type": "string"}}, "required": ["label:cs", "P31", "P31^label:cs", "P131^label:cs", "P6736"]}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "number"}}}, "required": ["type", "coordinates"]}}, "required": ["type", "properties", "geometry"]}}}, "required": ["type", "features"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"score_indist": {"type": "number"}, "score_outdist": {"type": "number"}, "_step": {"type": "integer"}, "_runtime": {"type": "integer"}, "_timestamp": {"type": "integer"}}, "required": ["score_indist", "score_outdist", "_step", "_runtime", "_timestamp"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"score_indist" : 0.97, "score_outdist" : 0.97, "_step" : 6, "_runtime" : 1123, "_timestamp" : 1619649257}
json_instruct
{"type": "object", "properties": {"score_indist": {"type": "number"}, "score_outdist": {"type": "number"}, "_step": {"type": "integer"}, "_runtime": {"type": "integer"}, "_timestamp": {"type": "integer"}}, "required": ["score_indist", "score_outdist", "_step", "_runtime", "_timestamp"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"parent": {"type": "string"}}, "required": ["parent"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"parent" : "arcanogeology:block/cobbled_asranite"}
json_instruct
{"type": "object", "properties": {"parent": {"type": "string"}}, "required": ["parent"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"brief": {"type": "string"}, "long": {"type": "string"}}, "required": ["brief", "long"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"brief" : "I bring, present, come up to and stand by", "long" : "I bring, present, prove, come up to and stand by, am present."}
json_instruct
{"type": "object", "properties": {"brief": {"type": "string"}, "long": {"type": "string"}}, "required": ["brief", "long"], "$schema": "http://json-schema.org/draft-07/schema#"}
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" : "achroous", "definition" : "Colorless; achromatic."}
json_instruct
{"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"__meta__": {"type": "object", "properties": {"issue_count": {"type": "integer"}, "today": {"type": "string"}, "yesterday": {"type": "string"}}, "required": ["issue_count", "today", "yesterday"]}}, "required": ["__meta__"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"__meta__" : {"issue_count" : 0, "today" : "2021-06-27T22:00:11", "yesterday" : "2021-06-26T22:00:11"}}
json_instruct
{"type": "object", "properties": {"__meta__": {"type": "object", "properties": {"issue_count": {"type": "integer"}, "today": {"type": "string"}, "yesterday": {"type": "string"}}, "required": ["issue_count", "today", "yesterday"]}}, "required": ["__meta__"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}, "watch": {"type": "string"}, "test": {"type": "string"}, "build:ui": {"type": "string"}, "deploy": {"type": "string"}, "deploy:full": {"type": "string"}, "logs:prod": {"type": "string"}, "lint": {"type": "string"}}, "required": ["start", "watch", "test", "build:ui", "deploy", "deploy:full", "logs:prod", "lint"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "dependencies": {"type": "object", "properties": {"body-parser": {"type": "string"}, "express": {"type": "string"}, "jsonwebtoken": {"type": "string"}, "mongoose": {"type": "string"}, "mongoose-unique-validator": {"type": "string"}}, "required": ["body-parser", "express", "jsonwebtoken", "mongoose", "mongoose-unique-validator"]}, "devDependencies": {"type": "object", "properties": {"bcrypt": {"type": "string"}, "cors": {"type": "string"}, "dotenv": {"type": "string"}, "eslint": {"type": "string"}, "eslint-plugin-react": {"type": "string"}, "jest": {"type": "string"}, "nodemon": {"type": "string"}, "supertest": {"type": "string"}, "tern-eslint": {"type": "string"}}, "required": ["bcrypt", "cors", "dotenv", "eslint", "eslint-plugin-react", "jest", "nodemon", "supertest", "tern-eslint"]}}, "required": ["name", "version", "description", "main", "scripts", "repository", "author", "license", "bugs", "homepage", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "bloglist", "version" : "1.0.0", "description" : "", "main" : "index.js", "scripts" : {"start" : "NODE_ENV=production node index.js", "watch" : "NODE_ENV=development nodemon index.js", "test" : "NODE_ENV=test jest --verbose --runInBand", "build:ui" : "rm -rf build && cd ../phonebook/ && npm run build --prod && cp -r build ../phonebook-server/", "deploy" : "git push heroku master", "deploy:full" : "npm run build:ui && git add . && git commit -m uibuild && git push && npm run deploy", "logs:prod" : "heroku logs --tail", "lint" : "eslint ."}, "repository" : {"type" : "git", "url" : "git+https://github.com/ultrachrisp/FullStackOpen.git"}, "author" : "Chris Pyke", "license" : "MIT", "bugs" : {"url" : "https://github.com/ultrachrisp/FullStackOpen/issues"}, "homepage" : "https://github.com/ultrachrisp/FullStackOpen#readme", "dependencies" : {"body-parser" : "^1.19.0", "express" : "^4.17.1", "jsonwebtoken" : "^8.5.1", "mongoose" : "^5.7.12", "mongoose-unique-validator" : "^2.0.3"}, "devDependencies" : {"bcrypt" : "^5.0.0", "cors" : "^2.8.5", "dotenv" : "^8.2.0", "eslint" : "^6.6.0", "eslint-plugin-react" : "^7.16.0", "jest" : "^24.9.0", "nodemon" : "^1.19.4", "supertest" : "^4.0.2", "tern-eslint" : "^0.5.0"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}, "watch": {"type": "string"}, "test": {"type": "string"}, "build:ui": {"type": "string"}, "deploy": {"type": "string"}, "deploy:full": {"type": "string"}, "logs:prod": {"type": "string"}, "lint": {"type": "string"}}, "required": ["start", "watch", "test", "build:ui", "deploy", "deploy:full", "logs:prod", "lint"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "dependencies": {"type": "object", "properties": {"body-parser": {"type": "string"}, "express": {"type": "string"}, "jsonwebtoken": {"type": "string"}, "mongoose": {"type": "string"}, "mongoose-unique-validator": {"type": "string"}}, "required": ["body-parser", "express", "jsonwebtoken", "mongoose", "mongoose-unique-validator"]}, "devDependencies": {"type": "object", "properties": {"bcrypt": {"type": "string"}, "cors": {"type": "string"}, "dotenv": {"type": "string"}, "eslint": {"type": "string"}, "eslint-plugin-react": {"type": "string"}, "jest": {"type": "string"}, "nodemon": {"type": "string"}, "supertest": {"type": "string"}, "tern-eslint": {"type": "string"}}, "required": ["bcrypt", "cors", "dotenv", "eslint", "eslint-plugin-react", "jest", "nodemon", "supertest", "tern-eslint"]}}, "required": ["name", "version", "description", "main", "scripts", "repository", "author", "license", "bugs", "homepage", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"css/libs.css": {"type": "string"}, "css/sky-bundle.css": {"type": "string"}, "css/sky.css": {"type": "string"}, "js/libs.js": {"type": "string"}, "js/libs.min.js": {"type": "string"}, "js/locales/sky-locale-en-AU.js": {"type": "string"}, "js/locales/sky-locale-en-CA.js": {"type": "string"}, "js/locales/sky-locale-en-GB.js": {"type": "string"}, "js/locales/sky-locale-en-US.js": {"type": "string"}, "js/sky-bundle.js": {"type": "string"}, "js/sky-bundle.min.js": {"type": "string"}, "js/sky.js": {"type": "string"}, "js/sky.min.js": {"type": "string"}, "js/skylint.min.js": {"type": "string"}}, "required": ["css/libs.css", "css/sky-bundle.css", "css/sky.css", "js/libs.js", "js/libs.min.js", "js/locales/sky-locale-en-AU.js", "js/locales/sky-locale-en-CA.js", "js/locales/sky-locale-en-GB.js", "js/locales/sky-locale-en-US.js", "js/sky-bundle.js", "js/sky-bundle.min.js", "js/sky.js", "js/sky.min.js", "js/skylint.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"css/libs.css" : "sha256-+QsyBWJxUeBObspirA+m4pRwZGgOWwfxaJBL1440+94=", "css/sky-bundle.css" : "sha256-vB4dNHKVXQaiHBE4eX2uoC+IZ15dWvt0hn9+3GmFmDk=", "css/sky.css" : "sha256-Wgl3Ti9Et4KsCfhxkYLyY/CLsKGDpBltrG+fN4EbiVY=", "js/libs.js" : "sha256-7vUdjwyvWd5NwHGVdCren6HaNo4eUbiy9375R8yFYLY=", "js/libs.min.js" : "sha256-e5zJgnc4VYp/8kRBpU46AsBkI3hNKlD2Qt5844VS6xw=", "js/locales/sky-locale-en-AU.js" : "sha256-QLO++KcB85upXH8ujIqJ0upiU8hyrd247OSoXmjG+V0=", "js/locales/sky-locale-en-CA.js" : "sha256-OHqpLc4m0bm1KN4eLqg646v+SVnud1JIOaWde67uPok=", "js/locales/sky-locale-en-GB.js" : "sha256-PY3Lqogy8Ur9tZ1O7jahhE/6tici0RHAzlNt21owHwU=", "js/locales/sky-locale-en-US.js" : "sha256-ZhzAPrq1sVcN7lie+E8WN816ADCnBjKwxOq1DYinpVU=", "js/sky-bundle.js" : "sha256-uCzDL/6J0AuSNFs9WU0ad9jqxEvmRadlOnXUYjOpDJE=", "js/sky-bundle.min.js" : "sha256-80kRot00WpdngtZf49GYyUFXffu7psAysDcU/+bGO+I=", "js/sky.js" : "sha256-Ki6hyupPX1m7wN4/IHh0kAIgG2jaxpsOmLldvswLHQA=", "js/sky.min.js" : "sha256-vb0yd2VEGomWIzqMrnYBou4AxjIULfo7mD1P20r+kew=", "js/skylint.min.js" : "sha256-1ObquCA1MBJAsGi3zgY8eC/DQCkwzLAlYeVKUHrzBjc="}
json_instruct
{"type": "object", "properties": {"css/libs.css": {"type": "string"}, "css/sky-bundle.css": {"type": "string"}, "css/sky.css": {"type": "string"}, "js/libs.js": {"type": "string"}, "js/libs.min.js": {"type": "string"}, "js/locales/sky-locale-en-AU.js": {"type": "string"}, "js/locales/sky-locale-en-CA.js": {"type": "string"}, "js/locales/sky-locale-en-GB.js": {"type": "string"}, "js/locales/sky-locale-en-US.js": {"type": "string"}, "js/sky-bundle.js": {"type": "string"}, "js/sky-bundle.min.js": {"type": "string"}, "js/sky.js": {"type": "string"}, "js/sky.min.js": {"type": "string"}, "js/skylint.min.js": {"type": "string"}}, "required": ["css/libs.css", "css/sky-bundle.css", "css/sky.css", "js/libs.js", "js/libs.min.js", "js/locales/sky-locale-en-AU.js", "js/locales/sky-locale-en-CA.js", "js/locales/sky-locale-en-GB.js", "js/locales/sky-locale-en-US.js", "js/sky-bundle.js", "js/sky-bundle.min.js", "js/sky.js", "js/sky.min.js", "js/skylint.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "array", "items": {"type": "array", "items": {"type": "string"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
[["Agra ", "Uttar Pradesh", "1.21", "146"], ["Gautam Buddha Nagar ", "Uttar Pradesh", "1.11", "141"], ["Etah ", "Uttar Pradesh", "1.11", "201"], ["Tarn Taran ", "Punjab", "1.09", "50"], ["Mau", "Uttar Pradesh", "1.07", "192"], ["Allahabad", "Uttar Pradesh", "1.06", "175"], ["Varanasi ", "Uttar Pradesh", "1.01", "197"], ["Chandauli ", "Uttar Pradesh", "1.00", "196"], ["Sheikhpura ", "Bihar", "1.00", "228"], ["Gaya ", "Bihar", "1.00", "236"]]
json_instruct
{"type": "array", "items": {"type": "array", "items": {"type": "string"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"}
["elsinore"]
json_instruct
{"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "BrowserRequestor"}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"presente": {"type": "object", "properties": {"eu": {"type": "string"}, "tu": {"type": "string"}, "ele": {"type": "string"}, "nos": {"type": "string"}, "vos": {"type": "string"}, "eles": {"type": "string"}}, "required": ["eu", "tu", "ele", "nos", "vos", "eles"]}, "preterito_imperfeito": {"type": "object", "properties": {"eu": {"type": "string"}, "tu": {"type": "string"}, "ele": {"type": "string"}, "nos": {"type": "string"}, "vos": {"type": "string"}, "eles": {"type": "string"}}, "required": ["eu", "tu", "ele", "nos", "vos", "eles"]}, "preterito_perfeito": {"type": "object", "properties": {"eu": {"type": "string"}, "tu": {"type": "string"}, "ele": {"type": "string"}, "nos": {"type": "string"}, "vos": {"type": "string"}, "eles": {"type": "string"}}, "required": ["eu", "tu", "ele", "nos", "vos", "eles"]}, "preterito_mais_que_perfeito": {"type": "object", "properties": {"eu": {"type": "string"}, "tu": {"type": "string"}, "ele": {"type": "string"}, "nos": {"type": "string"}, "vos": {"type": "string"}, "eles": {"type": "string"}}, "required": ["eu", "tu", "ele", "nos", "vos", "eles"]}, "futuro_do_presente": {"type": "object", "properties": {"eu": {"type": "string"}, "tu": {"type": "string"}, "ele": {"type": "string"}, "nos": {"type": "string"}, "vos": {"type": "string"}, "eles": {"type": "string"}}, "required": ["eu", "tu", "ele", "nos", "vos", "eles"]}, "futuro_do_preterito": {"type": "object", "properties": {"eu": {"type": "string"}, "tu": {"type": "string"}, "ele": {"type": "string"}, "nos": {"type": "string"}, "vos": {"type": "string"}, "eles": {"type": "string"}}, "required": ["eu", "tu", "ele", "nos", "vos", "eles"]}}, "required": ["presente", "preterito_imperfeito", "preterito_perfeito", "preterito_mais_que_perfeito", "futuro_do_presente", "futuro_do_preterito"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"presente" : {"eu" : "retomo", "tu" : "retomas", "ele" : "retoma", "nos" : "retomamos", "vos" : "retomais", "eles" : "retomam"}, "preterito_imperfeito" : {"eu" : "retomava", "tu" : "retomavas", "ele" : "retomava", "nos" : "retom\u00e1vamos", "vos" : "retom\u00e1veis", "eles" : "retomavam"}, "preterito_perfeito" : {"eu" : "retomei", "tu" : "retomaste", "ele" : "retomou", "nos" : "retomamos", "vos" : "retomastes", "eles" : "retomaram"}, "preterito_mais_que_perfeito" : {"eu" : "retomara", "tu" : "retomaras", "ele" : "retomara", "nos" : "retom\u00e1ramos", "vos" : "retom\u00e1reis", "eles" : "retomaram"}, "futuro_do_presente" : {"eu" : "retomarei", "tu" : "retomar\u00e1s", "ele" : "retomar\u00e1", "nos" : "retomaremos", "vos" : "retomareis", "eles" : "retomar\u00e3o"}, "futuro_do_preterito" : {"eu" : "retomaria", "tu" : "retomarias", "ele" : "retomaria", "nos" : "retomar\u00edamos", "vos" : "retomar\u00edeis", "eles" : "retomariam"}}
json_instruct
{"type": "object", "properties": {"presente": {"type": "object", "properties": {"eu": {"type": "string"}, "tu": {"type": "string"}, "ele": {"type": "string"}, "nos": {"type": "string"}, "vos": {"type": "string"}, "eles": {"type": "string"}}, "required": ["eu", "tu", "ele", "nos", "vos", "eles"]}, "preterito_imperfeito": {"type": "object", "properties": {"eu": {"type": "string"}, "tu": {"type": "string"}, "ele": {"type": "string"}, "nos": {"type": "string"}, "vos": {"type": "string"}, "eles": {"type": "string"}}, "required": ["eu", "tu", "ele", "nos", "vos", "eles"]}, "preterito_perfeito": {"type": "object", "properties": {"eu": {"type": "string"}, "tu": {"type": "string"}, "ele": {"type": "string"}, "nos": {"type": "string"}, "vos": {"type": "string"}, "eles": {"type": "string"}}, "required": ["eu", "tu", "ele", "nos", "vos", "eles"]}, "preterito_mais_que_perfeito": {"type": "object", "properties": {"eu": {"type": "string"}, "tu": {"type": "string"}, "ele": {"type": "string"}, "nos": {"type": "string"}, "vos": {"type": "string"}, "eles": {"type": "string"}}, "required": ["eu", "tu", "ele", "nos", "vos", "eles"]}, "futuro_do_presente": {"type": "object", "properties": {"eu": {"type": "string"}, "tu": {"type": "string"}, "ele": {"type": "string"}, "nos": {"type": "string"}, "vos": {"type": "string"}, "eles": {"type": "string"}}, "required": ["eu", "tu", "ele", "nos", "vos", "eles"]}, "futuro_do_preterito": {"type": "object", "properties": {"eu": {"type": "string"}, "tu": {"type": "string"}, "ele": {"type": "string"}, "nos": {"type": "string"}, "vos": {"type": "string"}, "eles": {"type": "string"}}, "required": ["eu", "tu", "ele", "nos", "vos", "eles"]}}, "required": ["presente", "preterito_imperfeito", "preterito_perfeito", "preterito_mais_que_perfeito", "futuro_do_presente", "futuro_do_preterito"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"user": {"type": "string"}, "repos": {"type": "integer"}, "login": {"type": "string"}, "id": {"type": "integer"}, "avatar_url": {"type": "string"}, "url": {"type": "string"}, "html_url": {"type": "string"}, "followers_url": {"type": "string"}, "following_url": {"type": "string"}, "gists_url": {"type": "string"}, "starred_url": {"type": "string"}, "subscriptions_url": {"type": "string"}, "organizations_url": {"type": "string"}, "repos_url": {"type": "string"}, "events_url": {"type": "string"}, "received_events_url": {"type": "string"}, "type": {"type": "string"}, "site_admin": {"type": "boolean"}, "name": {"type": "null"}, "company": {"type": "null"}, "blog": {"type": "null"}, "location": {"type": "null"}, "email": {"type": "null"}, "hireable": {"type": "null"}, "bio": {"type": "null"}, "public_repos": {"type": "integer"}, "public_gists": {"type": "integer"}, "followers": {"type": "integer"}, "following": {"type": "integer"}, "created_at": {"type": "string"}, "updated_at": {"type": "string"}}, "required": ["user", "repos", "login", "id", "avatar_url", "url", "html_url", "followers_url", "following_url", "gists_url", "starred_url", "subscriptions_url", "organizations_url", "repos_url", "events_url", "received_events_url", "type", "site_admin", "name", "company", "blog", "location", "email", "hireable", "bio", "public_repos", "public_gists", "followers", "following", "created_at", "updated_at"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"user" : "loudwinston", "repos" : 1, "login" : "loudwinston", "id" : 49882, "avatar_url" : "https://avatars0.githubusercontent.com/u/49882?v=3", "url" : "https://api.github.com/users/loudwinston", "html_url" : "https://github.com/loudwinston", "followers_url" : "https://api.github.com/users/loudwinston/followers", "following_url" : "https://api.github.com/users/loudwinston/following{/other_user}", "gists_url" : "https://api.github.com/users/loudwinston/gists{/gist_id}", "starred_url" : "https://api.github.com/users/loudwinston/starred{/owner}{/repo}", "subscriptions_url" : "https://api.github.com/users/loudwinston/subscriptions", "organizations_url" : "https://api.github.com/users/loudwinston/orgs", "repos_url" : "https://api.github.com/users/loudwinston/repos", "events_url" : "https://api.github.com/users/loudwinston/events{/privacy}", "received_events_url" : "https://api.github.com/users/loudwinston/received_events", "type" : "User", "site_admin" : false, "name" : null, "company" : null, "blog" : null, "location" : null, "email" : null, "hireable" : null, "bio" : null, "public_repos" : 15, "public_gists" : 2, "followers" : 4, "following" : 0, "created_at" : "2009-01-28T07:45:52Z", "updated_at" : "2017-01-09T23:37:25Z"}
json_instruct
{"type": "object", "properties": {"user": {"type": "string"}, "repos": {"type": "integer"}, "login": {"type": "string"}, "id": {"type": "integer"}, "avatar_url": {"type": "string"}, "url": {"type": "string"}, "html_url": {"type": "string"}, "followers_url": {"type": "string"}, "following_url": {"type": "string"}, "gists_url": {"type": "string"}, "starred_url": {"type": "string"}, "subscriptions_url": {"type": "string"}, "organizations_url": {"type": "string"}, "repos_url": {"type": "string"}, "events_url": {"type": "string"}, "received_events_url": {"type": "string"}, "type": {"type": "string"}, "site_admin": {"type": "boolean"}, "name": {"type": "null"}, "company": {"type": "null"}, "blog": {"type": "null"}, "location": {"type": "null"}, "email": {"type": "null"}, "hireable": {"type": "null"}, "bio": {"type": "null"}, "public_repos": {"type": "integer"}, "public_gists": {"type": "integer"}, "followers": {"type": "integer"}, "following": {"type": "integer"}, "created_at": {"type": "string"}, "updated_at": {"type": "string"}}, "required": ["user", "repos", "login", "id", "avatar_url", "url", "html_url", "followers_url", "following_url", "gists_url", "starred_url", "subscriptions_url", "organizations_url", "repos_url", "events_url", "received_events_url", "type", "site_admin", "name", "company", "blog", "location", "email", "hireable", "bio", "public_repos", "public_gists", "followers", "following", "created_at", "updated_at"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"em": {"type": "array", "items": {}}, "bites": {"type": "array", "items": {"type": "object", "properties": {"location": {"type": "object", "properties": {"latitude": {"type": "number"}, "longitude": {"type": "number"}}, "required": ["latitude", "longitude"]}}, "required": ["location"]}}, "other": {"type": "array", "items": {"type": "object", "properties": {"location": {"type": "object", "properties": {"latitude": {"type": "number"}, "longitude": {"type": "number"}}, "required": ["latitude", "longitude"]}}, "required": ["location"]}}, "fever": {"type": "array", "items": {}}}, "required": ["em", "bites", "other", "fever"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"em" : [], "bites" : [{"location" : {"latitude" : 52.72, "longitude" : 6.35}}], "other" : [{"location" : {"latitude" : 51.65, "longitude" : 4.6}}], "fever" : []}
json_instruct
{"type": "object", "properties": {"em": {"type": "array", "items": {}}, "bites": {"type": "array", "items": {"type": "object", "properties": {"location": {"type": "object", "properties": {"latitude": {"type": "number"}, "longitude": {"type": "number"}}, "required": ["latitude", "longitude"]}}, "required": ["location"]}}, "other": {"type": "array", "items": {"type": "object", "properties": {"location": {"type": "object", "properties": {"latitude": {"type": "number"}, "longitude": {"type": "number"}}, "required": ["latitude", "longitude"]}}, "required": ["location"]}}, "fever": {"type": "array", "items": {}}}, "required": ["em", "bites", "other", "fever"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}}, "required": ["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"}, "dependencies": {"type": "object", "properties": {"bindable-collection": {"type": "string"}, "bindable-object": {"type": "string"}, "brace": {"type": "string"}, "browserify-middleware": {"type": "string"}, "compression": {"type": "string"}, "es5-shim": {"type": "string"}, "express": {"type": "string"}, "glob": {"type": "string"}, "he": {"type": "string"}, "less": {"type": "string"}, "lodash": {"type": "string"}, "marked": {"type": "string"}, "memoizee": {"type": "string"}, "paperclip": {"type": "string"}, "through": {"type": "string"}, "traverse": {"type": "string"}}, "required": ["bindable-collection", "bindable-object", "brace", "browserify-middleware", "compression", "es5-shim", "express", "glob", "he", "less", "lodash", "marked", "memoizee", "paperclip", "through", "traverse"]}, "devDependencies": {"type": "object", "properties": {"bower": {"type": "string"}}, "required": ["bower"]}}, "required": ["name", "version", "description", "main", "scripts", "repository", "author", "license", "bugs", "homepage", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "paperclipjs.com", "version" : "1.0.0", "description" : "Main website. 100% Mojo.", "main" : "./lib/index.js", "scripts" : {"start" : "node ."}, "repository" : {"type" : "git", "url" : "https://github.com/mojo-js/paperclipjs.com.git"}, "author" : "", "license" : "ISC", "bugs" : {"url" : "https://github.com/mojo-js/paperclipjs.com/issues"}, "homepage" : "https://github.com/mojo-js/paperclipjs.com", "dependencies" : {"bindable-collection" : "0.0.x", "bindable-object" : "0.0.x", "brace" : "^0.4.0", "browserify-middleware" : "^4.1.0", "compression" : "^1.2.0", "es5-shim" : "^4.0.3", "express" : "^4.10.1", "glob" : "^4.0.6", "he" : "^0.5.0", "less" : "^1.7.5", "lodash" : "^2.4.1", "marked" : "^0.3.2", "memoizee" : "^0.3.8", "paperclip" : "^3.0.8", "through" : "^2.3.6", "traverse" : "^0.6.6"}, "devDependencies" : {"bower" : "^1.3.12"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}}, "required": ["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"}, "dependencies": {"type": "object", "properties": {"bindable-collection": {"type": "string"}, "bindable-object": {"type": "string"}, "brace": {"type": "string"}, "browserify-middleware": {"type": "string"}, "compression": {"type": "string"}, "es5-shim": {"type": "string"}, "express": {"type": "string"}, "glob": {"type": "string"}, "he": {"type": "string"}, "less": {"type": "string"}, "lodash": {"type": "string"}, "marked": {"type": "string"}, "memoizee": {"type": "string"}, "paperclip": {"type": "string"}, "through": {"type": "string"}, "traverse": {"type": "string"}}, "required": ["bindable-collection", "bindable-object", "brace", "browserify-middleware", "compression", "es5-shim", "express", "glob", "he", "less", "lodash", "marked", "memoizee", "paperclip", "through", "traverse"]}, "devDependencies": {"type": "object", "properties": {"bower": {"type": "string"}}, "required": ["bower"]}}, "required": ["name", "version", "description", "main", "scripts", "repository", "author", "license", "bugs", "homepage", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"build_code_deps_var": {"type": "string"}, "cm_archive": {"type": "string"}, "code_deps_var": {"type": "string"}}, "required": ["build_code_deps_var", "cm_archive", "code_deps_var"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"build_code_deps_var" : "CM_CODE_DEP_COMPILER", "cm_archive" : "", "code_deps_var" : "CM_CODE_DEP_COMPILER"}
json_instruct
{"type": "object", "properties": {"build_code_deps_var": {"type": "string"}, "cm_archive": {"type": "string"}, "code_deps_var": {"type": "string"}}, "required": ["build_code_deps_var", "cm_archive", "code_deps_var"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"header": {"type": "object", "properties": {"protoclVersion": {"type": "object", "properties": {"protocolVersion": {"type": "string"}}, "required": ["protocolVersion"]}}, "required": ["protoclVersion"]}, "body": {"type": "object", "properties": {"rx_obcTime": {"type": "string"}, "rx_recvCnt": {"type": "string"}, "rx_gpsDate": {"type": "string"}, "rx_gpsTime": {"type": "string"}, "rx_lat": {"type": "number"}, "rx_long": {"type": "number"}, "rx_alt": {"type": "string"}, "rx_temp": {"type": "string"}, "rx_airP": {"type": "string"}, "rx_bSize": {"type": "string"}, "tx_id": {"type": "string"}, "tx_cnt": {"type": "string"}, "payload": {"type": "integer"}, "tx_gpsTime": {"type": "string"}, "tx_lat": {"type": "number"}, "tx_long": {"type": "number"}, "tx_alt": {"type": "integer"}}, "required": ["rx_obcTime", "rx_recvCnt", "rx_gpsDate", "rx_gpsTime", "rx_lat", "rx_long", "rx_alt", "rx_temp", "rx_airP", "rx_bSize", "tx_id", "tx_cnt", "payload", "tx_gpsTime", "tx_lat", "tx_long", "tx_alt"]}}, "required": ["header", "body"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"header" : {"protoclVersion" : {"protocolVersion" : "0.0.2"}}, "body" : {"rx_obcTime" : "2080208", "rx_recvCnt" : "303", "rx_gpsDate" : "110319", "rx_gpsTime" : "75802", "rx_lat" : 39.027152, "rx_long" : 140.605488, "rx_alt" : "11108", "rx_temp" : "34.75", "rx_airP" : "76896", "rx_bSize" : "38", "tx_id" : "23", "tx_cnt" : "134", "payload" : 1, "tx_gpsTime" : "75736", "tx_lat" : 38.970744, "tx_long" : 140.588512, "tx_alt" : 11102}}
json_instruct
{"type": "object", "properties": {"header": {"type": "object", "properties": {"protoclVersion": {"type": "object", "properties": {"protocolVersion": {"type": "string"}}, "required": ["protocolVersion"]}}, "required": ["protoclVersion"]}, "body": {"type": "object", "properties": {"rx_obcTime": {"type": "string"}, "rx_recvCnt": {"type": "string"}, "rx_gpsDate": {"type": "string"}, "rx_gpsTime": {"type": "string"}, "rx_lat": {"type": "number"}, "rx_long": {"type": "number"}, "rx_alt": {"type": "string"}, "rx_temp": {"type": "string"}, "rx_airP": {"type": "string"}, "rx_bSize": {"type": "string"}, "tx_id": {"type": "string"}, "tx_cnt": {"type": "string"}, "payload": {"type": "integer"}, "tx_gpsTime": {"type": "string"}, "tx_lat": {"type": "number"}, "tx_long": {"type": "number"}, "tx_alt": {"type": "integer"}}, "required": ["rx_obcTime", "rx_recvCnt", "rx_gpsDate", "rx_gpsTime", "rx_lat", "rx_long", "rx_alt", "rx_temp", "rx_airP", "rx_bSize", "tx_id", "tx_cnt", "payload", "tx_gpsTime", "tx_lat", "tx_long", "tx_alt"]}}, "required": ["header", "body"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "array", "items": {"type": "object", "properties": {"users": {"type": "integer"}, "id": {"type": "string"}}, "required": ["users", "id"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"users" : 5791, "id" : "GB-SCT"}, {"users" : 83, "id" : "GB-UKC"}, {"users" : 78, "id" : "GB-UKD"}, {"users" : 2, "id" : "GB-UKE"}, {"users" : 66, "id" : "GB-UKF"}, {"users" : 342, "id" : "GB-UKG"}, {"users" : 24, "id" : "GB-UKH"}, {"users" : 85, "id" : "GB-UKI"}, {"users" : 49, "id" : "GB-UKJ"}, {"users" : 48, "id" : "GB-UKK"}, {"users" : 2199, "id" : "GB-WLS"}, {"users" : 1042, "id" : "GB-NIR"}, {"users" : 88, "id" : "GG"}, {"users" : 8320, "id" : "JE"}, {"users" : 187, "id" : "IM"}, {"users" : 17320, "id" : "IE"}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"users": {"type": "integer"}, "id": {"type": "string"}}, "required": ["users", "id"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"vis-graph3d.min.js": {"type": "string"}, "vis-network.min.css": {"type": "string"}, "vis-network.min.js": {"type": "string"}, "vis-timeline-graph2d.min.css": {"type": "string"}, "vis-timeline-graph2d.min.js": {"type": "string"}, "vis.css": {"type": "string"}, "vis.js": {"type": "string"}, "vis.min.css": {"type": "string"}, "vis.min.js": {"type": "string"}}, "required": ["vis-graph3d.min.js", "vis-network.min.css", "vis-network.min.js", "vis-timeline-graph2d.min.css", "vis-timeline-graph2d.min.js", "vis.css", "vis.js", "vis.min.css", "vis.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"vis-graph3d.min.js" : "sha512-ZEbRb0yu40qBCCIiERgt1LGPLCXwIJAVpnKNybRE+FM+OrBV9tofYoU/ytknF3OkU4WGQjdT+Vys89i9l0L4VQ==", "vis-network.min.css" : "sha512-NJXM8vzWgDcBy9SCUTJXYnNO43sZV3pfLWWZMFTuCtEUIOcznk+AMpH6N3XruxavYfMeMmjrzDMEQ6psRh/6Hw==", "vis-network.min.js" : "sha512-xkMFGFtsr551HQIjYZHQNfAYVPGX4ZgiPCx+3IKY3p03p5rWzwNz77Staar9OPsAM9so6Ye0cVCm7XJ2wvI4HA==", "vis-timeline-graph2d.min.css" : "sha512-bbXw0l+sIgE839ldwV4+tEPR4lIelw+Ryj35jm5c6KTgXNJybZJ4DrV+a40zK9kx8pvqNbneG0TGdJBP2jUa4Q==", "vis-timeline-graph2d.min.js" : "sha512-AzERLajc4AIzlF+zYiLWFo2550Fmq7zExR5JhAmAM6V8MdSzsC+rFKl/0hBDT+/WeUwlGN576wopA9xxlosjFA==", "vis.css" : "sha512-JAEp4Z2okJsFNVbKTdRHNsNnSb7gbh4PyBljSfEtTeiSXzVhyLQDWAFqBYuXhtb8Wsb9/8z0QUCHijyghkWIBw==", "vis.js" : "sha512-+IFSmcMwZMYE/0gvKZdbYdTGw4mQZE9HUeh7FGaTv8RSARb3N5xCDvspMtzxLEvZ2eWeiHPANwiGIlHhigm0Ow==", "vis.min.css" : "sha512-8OVtKyemDe8Koi/74dnSJughhkwnzqq217zUtUumyvx0Z0kF6H0YYFobH2kEYjKMNq2xNQyN64dnleqecTSL0A==", "vis.min.js" : "sha512-kuTu/IPCoXP0Vl+6kBftssvNqK6R3ySYkChBaWYoNVvua8qkUf16PLZtw+PX+W42b2pjPR37O3laqF/VRb4PJQ=="}
json_instruct
{"type": "object", "properties": {"vis-graph3d.min.js": {"type": "string"}, "vis-network.min.css": {"type": "string"}, "vis-network.min.js": {"type": "string"}, "vis-timeline-graph2d.min.css": {"type": "string"}, "vis-timeline-graph2d.min.js": {"type": "string"}, "vis.css": {"type": "string"}, "vis.js": {"type": "string"}, "vis.min.css": {"type": "string"}, "vis.min.js": {"type": "string"}}, "required": ["vis-graph3d.min.js", "vis-network.min.css", "vis-network.min.js", "vis-timeline-graph2d.min.css", "vis-timeline-graph2d.min.js", "vis.css", "vis.js", "vis.min.css", "vis.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"config": {"type": "object", "properties": {"abort": {"type": "object", "properties": {"auth_fail": {"type": "string"}, "cannot_connect": {"type": "string"}, "connection_error": {"type": "string"}, "invalid_auth": {"type": "string"}}, "required": ["auth_fail", "cannot_connect", "connection_error", "invalid_auth"]}, "create_entry": {"type": "object", "properties": {"default": {"type": "string"}}, "required": ["default"]}, "error": {"type": "object", "properties": {"auth_fail": {"type": "string"}, "cannot_connect": {"type": "string"}, "connection_error": {"type": "string"}, "invalid_auth": {"type": "string"}}, "required": ["auth_fail", "cannot_connect", "connection_error", "invalid_auth"]}, "flow_title": {"type": "string"}, "step": {"type": "object", "properties": {"user": {"type": "object", "properties": {"data": {"type": "object", "properties": {"host": {"type": "string"}, "password": {"type": "string"}, "path": {"type": "string"}, "path_zms": {"type": "string"}, "ssl": {"type": "string"}, "username": {"type": "string"}, "verify_ssl": {"type": "string"}}, "required": ["host", "password", "path", "path_zms", "ssl", "username", "verify_ssl"]}, "title": {"type": "string"}}, "required": ["data", "title"]}}, "required": ["user"]}}, "required": ["abort", "create_entry", "error", "flow_title", "step"]}}, "required": ["config"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"config" : {"abort" : {"auth_fail" : "Nome de usu\u00e1rio ou senha est\u00e1 incorreta.", "cannot_connect" : "Falha ao conectar", "connection_error" : "Falha ao conectar a um servidor ZoneMinder.", "invalid_auth" : "Autentica\u00e7\u00e3o inv\u00e1lida"}, "create_entry" : {"default" : "Servidor ZoneMinder adicionado."}, "error" : {"auth_fail" : "Nome de usu\u00e1rio ou senha est\u00e1 incorreta.", "cannot_connect" : "Falha ao conectar", "connection_error" : "Falha ao conectar a um servidor ZoneMinder.", "invalid_auth" : "Autentica\u00e7\u00e3o inv\u00e1lida"}, "flow_title" : "ZoneMinder", "step" : {"user" : {"data" : {"host" : "Host e Porta (ex 10.10.0.4:8010)", "password" : "Senha", "path" : "Caminho ZM", "path_zms" : "Caminho ZMS", "ssl" : "Usar um certificado SSL", "username" : "Usu\u00e1rio", "verify_ssl" : "Verifique o certificado SSL"}, "title" : "Adicione o Servidor ZoneMinder."}}}}
json_instruct
{"type": "object", "properties": {"config": {"type": "object", "properties": {"abort": {"type": "object", "properties": {"auth_fail": {"type": "string"}, "cannot_connect": {"type": "string"}, "connection_error": {"type": "string"}, "invalid_auth": {"type": "string"}}, "required": ["auth_fail", "cannot_connect", "connection_error", "invalid_auth"]}, "create_entry": {"type": "object", "properties": {"default": {"type": "string"}}, "required": ["default"]}, "error": {"type": "object", "properties": {"auth_fail": {"type": "string"}, "cannot_connect": {"type": "string"}, "connection_error": {"type": "string"}, "invalid_auth": {"type": "string"}}, "required": ["auth_fail", "cannot_connect", "connection_error", "invalid_auth"]}, "flow_title": {"type": "string"}, "step": {"type": "object", "properties": {"user": {"type": "object", "properties": {"data": {"type": "object", "properties": {"host": {"type": "string"}, "password": {"type": "string"}, "path": {"type": "string"}, "path_zms": {"type": "string"}, "ssl": {"type": "string"}, "username": {"type": "string"}, "verify_ssl": {"type": "string"}}, "required": ["host", "password", "path", "path_zms", "ssl", "username", "verify_ssl"]}, "title": {"type": "string"}}, "required": ["data", "title"]}}, "required": ["user"]}}, "required": ["abort", "create_entry", "error", "flow_title", "step"]}}, "required": ["config"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}}, "required": ["start"]}, "author": {"type": "string"}, "license": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"@parcel/transformer-sass": {"type": "string"}, "gsap": {"type": "string"}, "parcel": {"type": "string"}, "postcss": {"type": "string"}, "postcss-nested": {"type": "string"}}, "required": ["@parcel/transformer-sass", "gsap", "parcel", "postcss", "postcss-nested"]}, "dependencies": {"type": "object", "properties": {"sass": {"type": "string"}, "smooth-scrollbar": {"type": "string"}}, "required": ["sass", "smooth-scrollbar"]}}, "required": ["name", "version", "description", "main", "scripts", "author", "license", "devDependencies", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "scrollbar-interactions", "version" : "1.0.0", "description" : "", "main" : "src/index.js", "scripts" : {"start" : "parcel index.html"}, "author" : "", "license" : "ISC", "devDependencies" : {"@parcel/transformer-sass" : "^2.3.2", "gsap" : "^3.9.1", "parcel" : "^2.3.0", "postcss" : "^8.4.6", "postcss-nested" : "^5.0.6"}, "dependencies" : {"sass" : "^1.49.7", "smooth-scrollbar" : "^8.7.4"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}}, "required": ["start"]}, "author": {"type": "string"}, "license": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"@parcel/transformer-sass": {"type": "string"}, "gsap": {"type": "string"}, "parcel": {"type": "string"}, "postcss": {"type": "string"}, "postcss-nested": {"type": "string"}}, "required": ["@parcel/transformer-sass", "gsap", "parcel", "postcss", "postcss-nested"]}, "dependencies": {"type": "object", "properties": {"sass": {"type": "string"}, "smooth-scrollbar": {"type": "string"}}, "required": ["sass", "smooth-scrollbar"]}}, "required": ["name", "version", "description", "main", "scripts", "author", "license", "devDependencies", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"normalStoreUrl": {"type": "string"}, "port": {"type": "integer"}, "accessToken": {"type": "string"}}, "required": ["normalStoreUrl", "port", "accessToken"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"normalStoreUrl" : "https://www.example.com", "port" : 4000, "accessToken" : "accessToken"}
json_instruct
{"type": "object", "properties": {"normalStoreUrl": {"type": "string"}, "port": {"type": "integer"}, "accessToken": {"type": "string"}}, "required": ["normalStoreUrl", "port", "accessToken"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"databaseEngine": {"type": "string"}, "databaseName": {"type": "string"}, "port": {"type": "integer"}, "hostname": {"type": "string"}, "driver": {"type": "string"}, "username": {"type": "string"}, "password": {"type": "string"}}, "required": ["databaseEngine", "databaseName", "port", "hostname", "driver", "username", "password"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"databaseEngine" : "sqlite", "databaseName" : "kv_db", "port" : 90, "hostname" : "hostname", "driver" : "DRIVER", "username" : "USER", "password" : "Password"}
json_instruct
{"type": "object", "properties": {"databaseEngine": {"type": "string"}, "databaseName": {"type": "string"}, "port": {"type": "integer"}, "hostname": {"type": "string"}, "driver": {"type": "string"}, "username": {"type": "string"}, "password": {"type": "string"}}, "required": ["databaseEngine", "databaseName", "port", "hostname", "driver", "username", "password"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"Antipolo": {"type": "string"}, "Burdeos, Polillo Isl": {"type": "string"}, "Candelaria": {"type": "string"}, "Novaliches": {"type": "string"}, "Polillo, Polillo Isl": {"type": "string"}}, "required": ["Antipolo", "Burdeos, Polillo Isl", "Candelaria", "Novaliches", "Polillo, Polillo Isl"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"Antipolo" : "OTP", "Burdeos, Polillo Isl" : "BUR", "Candelaria" : "CDA", "Novaliches" : "NHV", "Polillo, Polillo Isl" : "PLL"}
json_instruct
{"type": "object", "properties": {"Antipolo": {"type": "string"}, "Burdeos, Polillo Isl": {"type": "string"}, "Candelaria": {"type": "string"}, "Novaliches": {"type": "string"}, "Polillo, Polillo Isl": {"type": "string"}}, "required": ["Antipolo", "Burdeos, Polillo Isl", "Candelaria", "Novaliches", "Polillo, Polillo Isl"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"PREVALENCE_BY_GENDER_AGE_YEAR": {"type": "object", "properties": {"TRELLIS_NAME": {"type": "array", "items": {}}, "SERIES_NAME": {"type": "array", "items": {}}, "X_CALENDAR_YEAR": {"type": "array", "items": {}}, "Y_PREVALENCE_1000PP": {"type": "array", "items": {}}}, "required": ["TRELLIS_NAME", "SERIES_NAME", "X_CALENDAR_YEAR", "Y_PREVALENCE_1000PP"]}, "PREVALENCE_BY_MONTH": {"type": "object", "properties": {"X_CALENDAR_MONTH": {"type": "array", "items": {}}, "Y_PREVALENCE_1000PP": {"type": "array", "items": {}}}, "required": ["X_CALENDAR_MONTH", "Y_PREVALENCE_1000PP"]}, "CONDITIONS_BY_TYPE": {"type": "object", "properties": {"CONCEPT_NAME": {"type": "string"}, "COUNT_VALUE": {"type": "integer"}}, "required": ["CONCEPT_NAME", "COUNT_VALUE"]}, "AGE_AT_FIRST_DIAGNOSIS": {"type": "object", "properties": {"CATEGORY": {"type": "array", "items": {"type": "string"}}, "MIN_VALUE": {"type": "array", "items": {"type": "integer"}}, "P10_VALUE": {"type": "array", "items": {"type": "integer"}}, "P25_VALUE": {"type": "array", "items": {"type": "integer"}}, "MEDIAN_VALUE": {"type": "array", "items": {"type": "integer"}}, "P75_VALUE": {"type": "array", "items": {"type": "integer"}}, "P90_VALUE": {"type": "array", "items": {"type": "integer"}}, "MAX_VALUE": {"type": "array", "items": {"type": "integer"}}}, "required": ["CATEGORY", "MIN_VALUE", "P10_VALUE", "P25_VALUE", "MEDIAN_VALUE", "P75_VALUE", "P90_VALUE", "MAX_VALUE"]}}, "required": ["PREVALENCE_BY_GENDER_AGE_YEAR", "PREVALENCE_BY_MONTH", "CONDITIONS_BY_TYPE", "AGE_AT_FIRST_DIAGNOSIS"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"PREVALENCE_BY_GENDER_AGE_YEAR" : {"TRELLIS_NAME" : [], "SERIES_NAME" : [], "X_CALENDAR_YEAR" : [], "Y_PREVALENCE_1000PP" : []}, "PREVALENCE_BY_MONTH" : {"X_CALENDAR_MONTH" : [], "Y_PREVALENCE_1000PP" : []}, "CONDITIONS_BY_TYPE" : {"CONCEPT_NAME" : "Observation recorded from EHR", "COUNT_VALUE" : 43}, "AGE_AT_FIRST_DIAGNOSIS" : {"CATEGORY" : ["FEMALE", "MALE"], "MIN_VALUE" : [6, 15], "P10_VALUE" : [10, 17], "P25_VALUE" : [46, 27], "MEDIAN_VALUE" : [53, 49], "P75_VALUE" : [73, 63], "P90_VALUE" : [75, 67], "MAX_VALUE" : [85, 89]}}
json_instruct
{"type": "object", "properties": {"PREVALENCE_BY_GENDER_AGE_YEAR": {"type": "object", "properties": {"TRELLIS_NAME": {"type": "array", "items": {}}, "SERIES_NAME": {"type": "array", "items": {}}, "X_CALENDAR_YEAR": {"type": "array", "items": {}}, "Y_PREVALENCE_1000PP": {"type": "array", "items": {}}}, "required": ["TRELLIS_NAME", "SERIES_NAME", "X_CALENDAR_YEAR", "Y_PREVALENCE_1000PP"]}, "PREVALENCE_BY_MONTH": {"type": "object", "properties": {"X_CALENDAR_MONTH": {"type": "array", "items": {}}, "Y_PREVALENCE_1000PP": {"type": "array", "items": {}}}, "required": ["X_CALENDAR_MONTH", "Y_PREVALENCE_1000PP"]}, "CONDITIONS_BY_TYPE": {"type": "object", "properties": {"CONCEPT_NAME": {"type": "string"}, "COUNT_VALUE": {"type": "integer"}}, "required": ["CONCEPT_NAME", "COUNT_VALUE"]}, "AGE_AT_FIRST_DIAGNOSIS": {"type": "object", "properties": {"CATEGORY": {"type": "array", "items": {"type": "string"}}, "MIN_VALUE": {"type": "array", "items": {"type": "integer"}}, "P10_VALUE": {"type": "array", "items": {"type": "integer"}}, "P25_VALUE": {"type": "array", "items": {"type": "integer"}}, "MEDIAN_VALUE": {"type": "array", "items": {"type": "integer"}}, "P75_VALUE": {"type": "array", "items": {"type": "integer"}}, "P90_VALUE": {"type": "array", "items": {"type": "integer"}}, "MAX_VALUE": {"type": "array", "items": {"type": "integer"}}}, "required": ["CATEGORY", "MIN_VALUE", "P10_VALUE", "P25_VALUE", "MEDIAN_VALUE", "P75_VALUE", "P90_VALUE", "MAX_VALUE"]}}, "required": ["PREVALENCE_BY_GENDER_AGE_YEAR", "PREVALENCE_BY_MONTH", "CONDITIONS_BY_TYPE", "AGE_AT_FIRST_DIAGNOSIS"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"id": {"type": "integer"}, "citation_title": {"type": "string"}, "citation_author": {"type": "array", "items": {"type": "string"}}, "citation_publication_date": {"type": "string"}, "issue_date": {"type": "string"}, "revision_date": {"type": "string"}, "topics": {"type": "array", "items": {"type": "string"}}, "program": {"type": "array", "items": {"type": "string"}}, "projects": {"type": "null"}, "working_groups": {"type": "null"}, "abstract": {"type": "string"}, "acknowledgement": {"type": "string"}}, "required": ["id", "citation_title", "citation_author", "citation_publication_date", "issue_date", "revision_date", "topics", "program", "projects", "working_groups", "abstract", "acknowledgement"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : 8799, "citation_title" : "Publicly Provided Education", "citation_author" : ["Eric A. Hanushek"], "citation_publication_date" : "2002-02-21", "issue_date" : "2002-02-21", "revision_date" : "None", "topics" : ["Public Economics", "Public Goods", "Health, Education, and Welfare", "Education"], "program" : ["Children", "Labor Studies", "Public Economics", "Economics of Education"], "projects" : null, "working_groups" : null, "abstract" : "\n\nHistorically, most attention in public programs has been given to the resources devoted to the activity, and resources have been used to index both commitment and quality. Education differs from other areas of public expenditure because direct measures of outcomes are available, making it is possible to consider results and, by implication, to consider the efficiency of provision. Early interpretations of the evidence, emanating from popular interpretations of the Coleman Report that 'schools do not make a difference,' are incorrect, but the basic evidence behind the statement suggests serious performance problems of government supply, because purchased inputs to schools are not closely related to outcomes. This paper reviews that evidence along with providing an evaluation of the various controversial aspects including issues of causality, consumer behavior, and estimation approaches. Two detailed policy areas are discussed in terms of the evidence on performance: public versus private provision and the financing of schools.\n\n", "acknowledgement" : "\n"}
json_instruct
{"type": "object", "properties": {"id": {"type": "integer"}, "citation_title": {"type": "string"}, "citation_author": {"type": "array", "items": {"type": "string"}}, "citation_publication_date": {"type": "string"}, "issue_date": {"type": "string"}, "revision_date": {"type": "string"}, "topics": {"type": "array", "items": {"type": "string"}}, "program": {"type": "array", "items": {"type": "string"}}, "projects": {"type": "null"}, "working_groups": {"type": "null"}, "abstract": {"type": "string"}, "acknowledgement": {"type": "string"}}, "required": ["id", "citation_title", "citation_author", "citation_publication_date", "issue_date", "revision_date", "topics", "program", "projects", "working_groups", "abstract", "acknowledgement"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"translation-revision-date": {"type": "string"}, "generator": {"type": "string"}, "domain": {"type": "string"}, "locale_data": {"type": "object", "properties": {"messages": {"type": "object", "properties": {"": {"type": "object", "properties": {"domain": {"type": "string"}, "plural-forms": {"type": "string"}, "lang": {"type": "string"}}, "required": ["domain", "plural-forms", "lang"]}, "Unknown error": {"type": "array", "items": {"type": "string"}}, "Import from JSON": {"type": "array", "items": {"type": "string"}}, "Invalid Reusable Block JSON file": {"type": "array", "items": {"type": "string"}}, "Reusable block imported successfully!": {"type": "array", "items": {"type": "string"}}, "Invalid JSON file": {"type": "array", "items": {"type": "string"}}, "button label\u0004Import": {"type": "array", "items": {"type": "string"}}, "File": {"type": "array", "items": {"type": "string"}}}, "required": ["", "Unknown error", "Import from JSON", "Invalid Reusable Block JSON file", "Reusable block imported successfully!", "Invalid JSON file", "button label\u0004Import", "File"]}}, "required": ["messages"]}, "comment": {"type": "object", "properties": {"reference": {"type": "string"}}, "required": ["reference"]}}, "required": ["translation-revision-date", "generator", "domain", "locale_data", "comment"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"translation-revision-date" : "2019-11-06 15:43:14+0000", "generator" : "GlotPress/2.4.0-alpha", "domain" : "messages", "locale_data" : {"messages" : {"" : {"domain" : "messages", "plural-forms" : "nplurals=2; plural=n != 1;", "lang" : "nl_BE"}, "Unknown error" : ["Onbekende fout"], "Import from JSON" : ["Importeer vanuit JSON"], "Invalid Reusable Block JSON file" : ["Ongeldig herbruikbare blok JSON-bestand"], "Reusable block imported successfully!" : ["Herbruikbaar blok succesvol ge\u00efmporteerd!"], "Invalid JSON file" : ["Ongeldig JSON-bestand"], "button label\u0004Import" : ["Importeer"], "File" : ["Bestand"]}}, "comment" : {"reference" : "wp-includes/js/dist/list-reusable-blocks.js"}}
json_instruct
{"type": "object", "properties": {"translation-revision-date": {"type": "string"}, "generator": {"type": "string"}, "domain": {"type": "string"}, "locale_data": {"type": "object", "properties": {"messages": {"type": "object", "properties": {"": {"type": "object", "properties": {"domain": {"type": "string"}, "plural-forms": {"type": "string"}, "lang": {"type": "string"}}, "required": ["domain", "plural-forms", "lang"]}, "Unknown error": {"type": "array", "items": {"type": "string"}}, "Import from JSON": {"type": "array", "items": {"type": "string"}}, "Invalid Reusable Block JSON file": {"type": "array", "items": {"type": "string"}}, "Reusable block imported successfully!": {"type": "array", "items": {"type": "string"}}, "Invalid JSON file": {"type": "array", "items": {"type": "string"}}, "button label\u0004Import": {"type": "array", "items": {"type": "string"}}, "File": {"type": "array", "items": {"type": "string"}}}, "required": ["", "Unknown error", "Import from JSON", "Invalid Reusable Block JSON file", "Reusable block imported successfully!", "Invalid JSON file", "button label\u0004Import", "File"]}}, "required": ["messages"]}, "comment": {"type": "object", "properties": {"reference": {"type": "string"}}, "required": ["reference"]}}, "required": ["translation-revision-date", "generator", "domain", "locale_data", "comment"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {"type": "integer"}}, "productReviews": {"type": "array", "items": {"type": "object", "properties": {"productId": {"type": "integer"}, "reviewText": {"type": "string"}, "reviewDate": {"type": "string"}}, "required": ["productId", "reviewText", "reviewDate"]}}}, "required": ["userId", "cartId", "preferredProducts", "productReviews"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"userId" : 79588, "cartId" : "c0b55cd9-6735-478b-894d-2bc54a58a415", "preferredProducts" : [4667, 1092, 2747, 3366, 4438, 399, 2369, 4670, 4807], "productReviews" : [{"productId" : 2831, "reviewText" : "SoCal cockroaches are unwelcome, crafty, and tenacious. This bypass keeps them away.", "reviewDate" : "2017-09-20T10:14:35.2861863+03:00"}, {"productId" : 4027, "reviewText" : "My neighbor Elisha has one of these. She works as a fortune teller and she says it looks floppy.", "reviewDate" : "2017-12-07T16:35:19.6669429+02:00"}]}
json_instruct
{"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {"type": "integer"}}, "productReviews": {"type": "array", "items": {"type": "object", "properties": {"productId": {"type": "integer"}, "reviewText": {"type": "string"}, "reviewDate": {"type": "string"}}, "required": ["productId", "reviewText", "reviewDate"]}}}, "required": ["userId", "cartId", "preferredProducts", "productReviews"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"key": {"type": "string"}, "short_name": {"type": "string"}, "name": {"type": "string"}, "category": {"type": "string"}, "owner": {"type": "string"}, "homepage_url": {"type": "string"}, "notes": {"type": "string"}, "spdx_license_key": {"type": "string"}}, "required": ["key", "short_name", "name", "category", "owner", "homepage_url", "notes", "spdx_license_key"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"key" : "nwhm", "short_name" : "Non White Heterosexual Male", "name" : "Non White Heterosexual Male", "category" : "Permissive", "owner" : "Unspecified", "homepage_url" : "https://nonwhiteheterosexualmalelicense.org/", "notes" : "From https://github.com/ErikMcClure/bad-licenses", "spdx_license_key" : "LicenseRef-scancode-nwhm"}
json_instruct
{"type": "object", "properties": {"key": {"type": "string"}, "short_name": {"type": "string"}, "name": {"type": "string"}, "category": {"type": "string"}, "owner": {"type": "string"}, "homepage_url": {"type": "string"}, "notes": {"type": "string"}, "spdx_license_key": {"type": "string"}}, "required": ["key", "short_name", "name", "category", "owner", "homepage_url", "notes", "spdx_license_key"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"number": {"type": "string"}, "title": {"type": "string"}, "url": {"type": "string"}, "difficulty": {"type": "string"}, "question": {"type": "string"}, "code": {"type": "string"}}, "required": ["number", "title", "url", "difficulty", "question", "code"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"number" : "888", "title" : "Fair Candy Swap", "url" : "https://leetcode.com/problems/fair-candy-swap", "difficulty" : "Easy", "question" : "Alice and Bob have candy bars of different sizes: A[i] is the size of the i-th bar of candy that Alice has, and B[j] is the size of the j-th bar of candy that Bob has.\n\nSince they are friends, they would like to exchange one candy bar each so that after the exchange, they both have the same total&#xA0;amount of candy.&#xA0; (The total amount of candy&#xA0;a person has is the sum of the sizes of candy&#xA0;bars they have.)\n\nReturn an integer array ans&#xA0;where ans[0] is the size of the candy bar that Alice must exchange, and ans[1] is the size of the candy bar that Bob must exchange.\n\nIf there are multiple answers, you may return any one of them.&#xA0; It is guaranteed an answer exists.\n\n&#xA0;\n\n\nExample 1:\n\nInput: A = [1,1], B = [2,2]\nOutput: [1,2]\n\n\n\nExample 2:\n\nInput: A = [1,2], B = [2,3]\nOutput: [1,2]\n\n\n\nExample 3:\n\nInput: A = [2], B = [1,3]\nOutput: [2,3]\n\n\n\nExample 4:\n\nInput: A = [1,2,5], B = [2,4]\nOutput: [5,4]\n\n\n&#xA0;\n\nNote:\n\n\n\t1 &lt;= A.length &lt;= 10000\n\t1 &lt;= B.length &lt;= 10000\n\t1 &lt;= A[i] &lt;= 100000\n\t1 &lt;= B[i] &lt;= 100000\n\tIt is guaranteed that Alice and Bob have different total amounts of&#xA0;candy.\n\tIt is guaranteed there exists an&#xA0;answer.\n\n\n\n\n\n", "code" : "undefinedpublic class Solution { \u00a0 \u00a0public int[] FairCandySwap(int[] A, int[] B) { \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 }}"}
json_instruct
{"type": "object", "properties": {"number": {"type": "string"}, "title": {"type": "string"}, "url": {"type": "string"}, "difficulty": {"type": "string"}, "question": {"type": "string"}, "code": {"type": "string"}}, "required": ["number", "title", "url", "difficulty", "question", "code"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"enrollments": {"type": "array", "items": {"type": "object", "properties": {"course": {"type": "string"}, "user": {"type": "integer"}, "status": {"type": "string"}}, "required": ["course", "user", "status"]}}}, "required": ["enrollments"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"enrollments" : [{"course" : "A1", "user" : 326, "status" : "passed"}, {"course" : "B1", "user" : 326, "status" : "failed"}]}
json_instruct
{"type": "object", "properties": {"enrollments": {"type": "array", "items": {"type": "object", "properties": {"course": {"type": "string"}, "user": {"type": "integer"}, "status": {"type": "string"}}, "required": ["course", "user", "status"]}}}, "required": ["enrollments"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"jquery.form.js": {"type": "string"}, "jquery.form.min.js": {"type": "string"}}, "required": ["jquery.form.js", "jquery.form.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"jquery.form.js" : "sha512-tqjAsGm+04jYd4iVDBPZX7lbIxnnPcageMMDsuOX4PNqSD34GFsjA8Ttl3OZCnBr8hw911x+t+imw57DRssXog==", "jquery.form.min.js" : "sha512-2+qKhBS1G2s4sxhdJv2/JBXuumDZRAgByY+dN/rRvftdd33rBHLWFSEBJ1hIM3MhbZzQmLra7ouo6LsoW5+bfw=="}
json_instruct
{"type": "object", "properties": {"jquery.form.js": {"type": "string"}, "jquery.form.min.js": {"type": "string"}}, "required": ["jquery.form.js", "jquery.form.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"url": {"type": "string"}, "attribution": {"type": "object", "properties": {"url": {"type": "string"}, "text": {"type": "string"}, "required": {"type": "boolean"}}, "required": ["url", "text", "required"]}, "type": {"type": "string"}, "name": {"type": "string"}, "description": {"type": "string"}, "icon": {"type": "string"}, "start_date": {"type": "string"}, "end_date": {"type": "string"}, "country_code": {"type": "string"}, "extent": {"type": "object", "properties": {"min_zoom": {"type": "integer"}, "max_zoom": {"type": "integer"}, "bbox": {"type": "object", "properties": {"min_lon": {"type": "number"}, "max_lon": {"type": "number"}, "min_lat": {"type": "number"}, "max_lat": {"type": "number"}}, "required": ["min_lon", "max_lon", "min_lat", "max_lat"]}, "polygon": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["min_zoom", "max_zoom", "bbox", "polygon"]}}, "required": ["url", "attribution", "type", "name", "description", "icon", "start_date", "end_date", "country_code", "extent"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"url" : "http://geo.nls.uk/maps/towns/kilmarnock/{zoom}/{x}/{-y}.png", "attribution" : {"url" : "http://maps.nls.uk/townplans/kilmarnock.html", "text" : "National Library of Scotland - Kilmarnock 1857-1859", "required" : true}, "type" : "tms", "name" : "OS Town Plans, Kilmarnock 1857-1859 (NLS)", "description" : "Detailed town plan of Kilmarnock 1857-1859, courtesy of National Library of Scotland.", "icon" : "http://nls.tileserver.com/nls70-nq8.png", "start_date" : "1857", "end_date" : "1860", "country_code" : "GB", "extent" : {"min_zoom" : 13, "max_zoom" : 20, "bbox" : {"min_lon" : -4.5194347, "max_lon" : -4.4748238, "min_lat" : 55.58950933, "max_lat" : 55.62104083}, "polygon" : [[[-4.51746876, 55.58950933], [-4.5194347, 55.62017114], [-4.47675652, 55.62104083], [-4.4748238, 55.59037802]]]}}
json_instruct
{"type": "object", "properties": {"url": {"type": "string"}, "attribution": {"type": "object", "properties": {"url": {"type": "string"}, "text": {"type": "string"}, "required": {"type": "boolean"}}, "required": ["url", "text", "required"]}, "type": {"type": "string"}, "name": {"type": "string"}, "description": {"type": "string"}, "icon": {"type": "string"}, "start_date": {"type": "string"}, "end_date": {"type": "string"}, "country_code": {"type": "string"}, "extent": {"type": "object", "properties": {"min_zoom": {"type": "integer"}, "max_zoom": {"type": "integer"}, "bbox": {"type": "object", "properties": {"min_lon": {"type": "number"}, "max_lon": {"type": "number"}, "min_lat": {"type": "number"}, "max_lat": {"type": "number"}}, "required": ["min_lon", "max_lon", "min_lat", "max_lat"]}, "polygon": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["min_zoom", "max_zoom", "bbox", "polygon"]}}, "required": ["url", "attribution", "type", "name", "description", "icon", "start_date", "end_date", "country_code", "extent"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "array", "items": {"type": "array", "items": {"type": "string"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
[["Airtel Business", "July 2016 Present (5 months)"], ["Airtel Business", "October 2013 Present (3 years 2 months)"], ["Airtel Business", "October 2010 September 2013 (3 years)"], ["Reliance Communications", "July 2009 October 2010 (1 year 4 months)"], ["Hughes Communications India Limited", "2008 2009 (1 year)"], ["Hughes Communications India Limited", "2004 2007 (3 years)"], ["Onward Technologies Ltd", "2000 2003 (3 years)"], ["The Art of Living", "December 2002"], ["Bharti Airtel", "1998 2000"], ["Dale Carnegie Training India", "1993 1996"]]
json_instruct
{"type": "array", "items": {"type": "array", "items": {"type": "string"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"id": {"type": "integer"}, "info": {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "additionalInfo": {"type": "null"}, "format": {"type": "string"}, "category": {"type": "string"}, "createdAt": {"type": "string"}, "updatedAt": {"type": "string"}, "license": {"type": "string"}, "author": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}}, "required": ["id", "name"]}}, "required": ["name", "description", "additionalInfo", "format", "category", "createdAt", "updatedAt", "license", "author"]}, "stats": {"type": "object", "properties": {"installs": {"type": "object", "properties": {"total": {"type": "integer"}, "weekly": {"type": "integer"}}, "required": ["total", "weekly"]}}, "required": ["installs"]}, "screenshots": {"type": "object", "properties": {"main": {"type": "object", "properties": {"name": {"type": "string"}, "archived": {"type": "boolean"}}, "required": ["name", "archived"]}}, "required": ["main"]}, "discussions": {"type": "object", "properties": {"stats": {"type": "object", "properties": {"discussionsCount": {"type": "integer"}, "commentsCount": {"type": "integer"}}, "required": ["discussionsCount", "commentsCount"]}, "data": {"type": "array", "items": {}}}, "required": ["stats", "data"]}, "style": {"type": "object", "properties": {"css": {"type": "string"}}, "required": ["css"]}}, "required": ["id", "info", "stats", "screenshots", "discussions", "style"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : 97702, "info" : {"name" : "Clannad Dash Icons", "description" : "The Girls of Clannad!", "additionalInfo" : null, "format" : "uso", "category" : "tumblr", "createdAt" : "2014-01-30T18:31:52.000Z", "updatedAt" : "2014-01-30T18:31:52.000Z", "license" : "NO-REDISTRIBUTION", "author" : {"id" : 171039, "name" : "Aria_Minase"}}, "stats" : {"installs" : {"total" : 231, "weekly" : 0}}, "screenshots" : {"main" : {"name" : "97702_after.jpeg", "archived" : false}}, "discussions" : {"stats" : {"discussionsCount" : 0, "commentsCount" : 0}, "data" : []}, "style" : {"css" : "@-moz-document url-prefix(\"http://www.tumblr.com/\"), url-prefix('https://www.tumblr.com/') {\r\n.new_post_label{ font-size: 0 !important }\r\n.new_post_label > I:before { content: none !important }\r\n#new_post{ background: url('http://i.imgur.com/SlAtdHp.jpg') center no-repeat white !important }\r\n}"}}
json_instruct
{"type": "object", "properties": {"id": {"type": "integer"}, "info": {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "additionalInfo": {"type": "null"}, "format": {"type": "string"}, "category": {"type": "string"}, "createdAt": {"type": "string"}, "updatedAt": {"type": "string"}, "license": {"type": "string"}, "author": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}}, "required": ["id", "name"]}}, "required": ["name", "description", "additionalInfo", "format", "category", "createdAt", "updatedAt", "license", "author"]}, "stats": {"type": "object", "properties": {"installs": {"type": "object", "properties": {"total": {"type": "integer"}, "weekly": {"type": "integer"}}, "required": ["total", "weekly"]}}, "required": ["installs"]}, "screenshots": {"type": "object", "properties": {"main": {"type": "object", "properties": {"name": {"type": "string"}, "archived": {"type": "boolean"}}, "required": ["name", "archived"]}}, "required": ["main"]}, "discussions": {"type": "object", "properties": {"stats": {"type": "object", "properties": {"discussionsCount": {"type": "integer"}, "commentsCount": {"type": "integer"}}, "required": ["discussionsCount", "commentsCount"]}, "data": {"type": "array", "items": {}}}, "required": ["stats", "data"]}, "style": {"type": "object", "properties": {"css": {"type": "string"}}, "required": ["css"]}}, "required": ["id", "info", "stats", "screenshots", "discussions", "style"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"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" : "Filtro para m\u00e1scara de g\u00e1s", "ShortName" : "Filtro", "Description" : "Filtro absorvedor (FPK) para GP-7k Cartucho met\u00e1lico"}
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": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"}
["cf-angular-file-saver", "jspdf", "jspdf-yworks", "nosaverpdf"]
json_instruct
{"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"token-filters": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"]}}}, "required": ["token-filters"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"token-filters" : [{"name" : "germanstem"}]}
json_instruct
{"type": "object", "properties": {"token-filters": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"]}}}, "required": ["token-filters"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"minutes": {"type": "integer"}, "pubdate": {"type": "string"}, "tags": {"type": "array", "items": {"type": "string"}}, "title": {"type": "string"}}, "required": ["minutes", "pubdate", "tags", "title"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"minutes" : 20, "pubdate" : "2021-10-06T22:48:10+09:00", "tags" : ["programming"], "title" : "UNIQUE \u5236\u7d04\u306f NULL \u306e\u5217\u3092\u8907\u6570\u542b\u3093\u3067\u3082\u826f\u3044"}
json_instruct
{"type": "object", "properties": {"minutes": {"type": "integer"}, "pubdate": {"type": "string"}, "tags": {"type": "array", "items": {"type": "string"}}, "title": {"type": "string"}}, "required": ["minutes", "pubdate", "tags", "title"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"width": {"type": "number"}, "rotation": {"type": "number"}, "xCenter": {"type": "number"}, "yCenter": {"type": "number"}, "height": {"type": "number"}}, "required": ["width", "rotation", "xCenter", "yCenter", "height"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"width" : 0.16380432, "rotation" : 1.1063528, "xCenter" : 0.23763211, "yCenter" : 0.4490845, "height" : 0.29120767}
json_instruct
{"type": "object", "properties": {"width": {"type": "number"}, "rotation": {"type": "number"}, "xCenter": {"type": "number"}, "yCenter": {"type": "number"}, "height": {"type": "number"}}, "required": ["width", "rotation", "xCenter", "yCenter", "height"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"address": {"type": "string"}, "cert_auth_type": {"type": "string"}, "cert_sign": {"type": "string"}, "cert_user_id": {"type": "string"}, "files": {"type": "object", "properties": {"data.json": {"type": "object", "properties": {"sha512": {"type": "string"}, "size": {"type": "integer"}}, "required": ["sha512", "size"]}}, "required": ["data.json"]}, "inner_path": {"type": "string"}, "modified": {"type": "number"}, "signs": {"type": "object", "properties": {"1LH3seL2knRt5Np5LeGRcgGdpwEu4Nc9Bx": {"type": "string"}}, "required": ["1LH3seL2knRt5Np5LeGRcgGdpwEu4Nc9Bx"]}}, "required": ["address", "cert_auth_type", "cert_sign", "cert_user_id", "files", "inner_path", "modified", "signs"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"address" : "1TaLkFrMwvbNsooF4ioKAY9EuxTBTjipT", "cert_auth_type" : "web", "cert_sign" : "G7DvepuCUtm/+94LRjCM8oioBkoR3aQhfUCItMZmKDr5ec/6K4tuhoepfL9472MDod3hzjCkNSFs/agbUvSneg4=", "cert_user_id" : "alisa@zeroid.bit", "files" : {"data.json" : {"sha512" : "c1b74c1de2d3b462ad702255c92c0c9485e5337cf16d41a9c39362b8e62c3621", "size" : 2832}}, "inner_path" : "data/users/1LH3seL2knRt5Np5LeGRcgGdpwEu4Nc9Bx/content.json", "modified" : 1479974382.158065, "signs" : {"1LH3seL2knRt5Np5LeGRcgGdpwEu4Nc9Bx" : "HB5DO9ExXh8tvREnpPADjAxsY0Xz1F9BxtkxjbWxITWSXApFdk6tJJhg1Aht4Sl+Re0XGJlaHUzmKYWi6ykATdk="}}
json_instruct
{"type": "object", "properties": {"address": {"type": "string"}, "cert_auth_type": {"type": "string"}, "cert_sign": {"type": "string"}, "cert_user_id": {"type": "string"}, "files": {"type": "object", "properties": {"data.json": {"type": "object", "properties": {"sha512": {"type": "string"}, "size": {"type": "integer"}}, "required": ["sha512", "size"]}}, "required": ["data.json"]}, "inner_path": {"type": "string"}, "modified": {"type": "number"}, "signs": {"type": "object", "properties": {"1LH3seL2knRt5Np5LeGRcgGdpwEu4Nc9Bx": {"type": "string"}}, "required": ["1LH3seL2knRt5Np5LeGRcgGdpwEu4Nc9Bx"]}}, "required": ["address", "cert_auth_type", "cert_sign", "cert_user_id", "files", "inner_path", "modified", "signs"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"icon": {"type": "string"}, "fields": {"type": "array", "items": {"type": "string"}}, "geometry": {"type": "array", "items": {"type": "string"}}, "tags": {"type": "object", "properties": {"leisure": {"type": "string"}}, "required": ["leisure"]}, "terms": {"type": "array", "items": {"type": "string"}}, "name": {"type": "string"}}, "required": ["icon", "fields", "geometry", "tags", "terms", "name"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"icon" : "temaki-binoculars", "fields" : ["building_area"], "geometry" : ["point", "area"], "tags" : {"leisure" : "bird_hide"}, "terms" : ["machan", "ornithology"], "name" : "Bird Hide"}
json_instruct
{"type": "object", "properties": {"icon": {"type": "string"}, "fields": {"type": "array", "items": {"type": "string"}}, "geometry": {"type": "array", "items": {"type": "string"}}, "tags": {"type": "object", "properties": {"leisure": {"type": "string"}}, "required": ["leisure"]}, "terms": {"type": "array", "items": {"type": "string"}}, "name": {"type": "string"}}, "required": ["icon", "fields", "geometry", "tags", "terms", "name"], "$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"}, "lockfileVersion": {"type": "integer"}, "requires": {"type": "boolean"}, "dependencies": {"type": "object", "properties": {"better-owop-js": {"type": "object", "properties": {"version": {"type": "string"}, "resolved": {"type": "string"}, "integrity": {"type": "string"}, "requires": {"type": "object", "properties": {"ws": {"type": "string"}}, "required": ["ws"]}}, "required": ["version", "resolved", "integrity", "requires"]}, "ws": {"type": "object", "properties": {"version": {"type": "string"}, "resolved": {"type": "string"}, "integrity": {"type": "string"}}, "required": ["version", "resolved", "integrity"]}}, "required": ["better-owop-js", "ws"]}}, "required": ["name", "version", "lockfileVersion", "requires", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "dashnet-pixel-thing-bot", "version" : "1.0.0", "lockfileVersion" : 1, "requires" : true, "dependencies" : {"better-owop-js" : {"version" : "1.0.2", "resolved" : "https://registry.npmjs.org/better-owop-js/-/better-owop-js-1.0.2.tgz", "integrity" : "sha512-V7T/96Tx9lYstcOAFglvzJfciamO0VsBXoP5Srj4QzwEimvxB2V7hp4phdSZItPVww7qVqX/+OQ9yznAarnpjA==", "requires" : {"ws" : "^7.2.5"}}, "ws" : {"version" : "7.2.5", "resolved" : "https://registry.npmjs.org/ws/-/ws-7.2.5.tgz", "integrity" : "sha512-C34cIU4+DB2vMyAbmEKossWq2ZQDr6QEyuuCzWrM9zfw1sGc0mYiJ0UnG9zzNykt49C2Fi34hvr2vssFQRS6EA=="}}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "lockfileVersion": {"type": "integer"}, "requires": {"type": "boolean"}, "dependencies": {"type": "object", "properties": {"better-owop-js": {"type": "object", "properties": {"version": {"type": "string"}, "resolved": {"type": "string"}, "integrity": {"type": "string"}, "requires": {"type": "object", "properties": {"ws": {"type": "string"}}, "required": ["ws"]}}, "required": ["version", "resolved", "integrity", "requires"]}, "ws": {"type": "object", "properties": {"version": {"type": "string"}, "resolved": {"type": "string"}, "integrity": {"type": "string"}}, "required": ["version", "resolved", "integrity"]}}, "required": ["better-owop-js", "ws"]}}, "required": ["name", "version", "lockfileVersion", "requires", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"images": {"type": "array", "items": {"type": "object", "properties": {"idiom": {"type": "string"}, "filename": {"type": "string"}, "scale": {"type": "string"}}, "required": ["idiom", "filename", "scale"]}}, "info": {"type": "object", "properties": {"version": {"type": "integer"}, "author": {"type": "string"}}, "required": ["version", "author"]}}, "required": ["images", "info"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"images" : [{"idiom" : "universal", "filename" : "icon_shenpi@1x.png", "scale" : "1x"}, {"idiom" : "universal", "filename" : "icon_shenpi@2x.png", "scale" : "2x"}, {"idiom" : "universal", "filename" : "icon_shenpi@3x.png", "scale" : "3x"}], "info" : {"version" : 1, "author" : "xcode"}}
json_instruct
{"type": "object", "properties": {"images": {"type": "array", "items": {"type": "object", "properties": {"idiom": {"type": "string"}, "filename": {"type": "string"}, "scale": {"type": "string"}}, "required": ["idiom", "filename", "scale"]}}, "info": {"type": "object", "properties": {"version": {"type": "integer"}, "author": {"type": "string"}}, "required": ["version", "author"]}}, "required": ["images", "info"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"id": {"type": "string"}}, "required": ["id"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : "ae21431056abde0519fec7d7d25bd315f7ea3a1a"}
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}}, "required": ["id"], "$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"}, "title": {"type": "string"}, "scripts": {"type": "object", "properties": {}, "required": []}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "dependencies": {"type": "object", "properties": {"child_process": {"type": "string"}}, "required": ["child_process"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "engines": {"type": "object", "properties": {"brackets": {"type": "string"}}, "required": ["brackets"]}, "author": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}, "license": {"type": "string"}}, "required": ["name", "version", "description", "title", "scripts", "repository", "dependencies", "keywords", "engines", "author", "license"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "phoenix.brackets.phplinter", "version" : "1.0.2", "description" : "This extension works using `php -l` command", "title" : "PHPLinter for Brackets", "scripts" : {}, "repository" : {"type" : "git", "url" : "https://github.com/phoenix3008/brackets-phplinter.git"}, "dependencies" : {"child_process" : "*"}, "keywords" : ["phplinter", "phplint", "brackets", "php", "validate php", "linter", "codequality", "linting", "code inspection", "inspection"], "engines" : {"brackets" : ">=0.30.0"}, "author" : {"name" : "Serghei", "email" : "phoenix92@inbox.ru"}, "license" : "MIT"}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "title": {"type": "string"}, "scripts": {"type": "object", "properties": {}, "required": []}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "dependencies": {"type": "object", "properties": {"child_process": {"type": "string"}}, "required": ["child_process"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "engines": {"type": "object", "properties": {"brackets": {"type": "string"}}, "required": ["brackets"]}, "author": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}, "license": {"type": "string"}}, "required": ["name", "version", "description", "title", "scripts", "repository", "dependencies", "keywords", "engines", "author", "license"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"files.associations": {"type": "object", "properties": {"riscv.h": {"type": "string"}}, "required": ["riscv.h"]}}, "required": ["files.associations"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"files.associations" : {"riscv.h" : "c"}}
json_instruct
{"type": "object", "properties": {"files.associations": {"type": "object", "properties": {"riscv.h": {"type": "string"}}, "required": ["riscv.h"]}}, "required": ["files.associations"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "pokemons": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "chance": {"type": "integer"}}, "required": ["id", "chance"]}}}, "required": ["id", "pokemons"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"id" : 1, "pokemons" : [{"id" : 10, "chance" : 24}, {"id" : 13, "chance" : 24}, {"id" : 16, "chance" : 24}, {"id" : 19, "chance" : 23}, {"id" : 25, "chance" : 5}]}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "pokemons": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "chance": {"type": "integer"}}, "required": ["id", "chance"]}}}, "required": ["id", "pokemons"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"id": {"type": "integer"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"src:alt_label": {"type": "string"}, "src:geom": {"type": "string"}, "wof:geomhash": {"type": "string"}, "wof:id": {"type": "integer"}, "wof:repo": {"type": "string"}}, "required": ["src:alt_label", "src:geom", "wof:geomhash", "wof:id", "wof:repo"]}, "bbox": {"type": "array", "items": {"type": "number"}}, "geometry": {"type": "object", "properties": {"coordinates": {"type": "array", "items": {"type": "number"}}, "type": {"type": "string"}}, "required": ["coordinates", "type"]}}, "required": ["id", "type", "properties", "bbox", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : 1210047891, "type" : "Feature", "properties" : {"src:alt_label" : "geonames", "src:geom" : "geonames", "wof:geomhash" : "572d02527d9333bf3f829bfd6ad3489f", "wof:id" : 1210047891, "wof:repo" : "whosonfirst-data-admin-nz"}, "bbox" : [172.05, -41.5, 172.05, -41.5], "geometry" : {"coordinates" : [172.05, -41.5], "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#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"package-id": {"type": "string"}, "name": {"type": "string"}, "version": {"type": "string"}, "jurisdiction": {"type": "array", "items": {"type": "object", "properties": {"coding": {"type": "array", "items": {"type": "object", "properties": {"system": {"type": "string"}, "code": {"type": "string"}}, "required": ["system", "code"]}}}, "required": ["coding"]}}, "canonical": {"type": "string"}, "url": {"type": "string"}, "title": {"type": "string"}, "description": {"type": "string"}, "dependencies": {"type": "object", "properties": {"hl7.fhir.r4.core": {"type": "string"}, "hl7.fhir.us.core": {"type": "string"}}, "required": ["hl7.fhir.r4.core", "hl7.fhir.us.core"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "language": {"type": "string"}, "author": {"type": "string"}, "maintainers": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}, "url": {"type": "string"}}, "required": ["name", "email", "url"]}}, "license": {"type": "string"}, "list": {"type": "array", "items": {"type": "object", "properties": {"version": {"type": "string"}, "desc": {"type": "string"}, "path": {"type": "string"}, "status": {"type": "string"}, "current": {"type": "boolean"}, "fhirversion": {"type": "string"}}, "required": ["version", "desc", "path", "status", "current", "fhirversion"]}}}, "required": ["package-id", "name", "version", "jurisdiction", "canonical", "url", "title", "description", "dependencies", "keywords", "language", "author", "maintainers", "license", "list"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"package-id" : "hl7.fhir.us.pacio-fs", "name" : "hl7.fhir.us.pacio-fs", "version" : "0.1.0", "jurisdiction" : [{"coding" : [{"system" : "urn:iso:std:iso:3166", "code" : "US"}]}], "canonical" : "https://paciowg.github.io/functional-status-ig/", "url" : "http://hl7.org/fhir/us/pacio-fs", "title" : "PACIO Functional Status Implementation Guide", "description" : "To advance interoperable health data exchange between post-acute care (PAC) and other providers, patients, and key stakeholders", "dependencies" : {"hl7.fhir.r4.core" : "4.0.1", "hl7.fhir.us.core" : "3.1.0"}, "keywords" : ["Functional Status", "PACIO", "Post-Acute Care"], "language" : "en", "author" : "HL7 Patient Care Work Group", "maintainers" : [{"name" : "PACIO project", "email" : "info@pacioproject.org", "url" : "http://www.hl7.org/Special/committees/patientcare/"}], "license" : "CC0-1.0", "list" : [{"version" : "current", "desc" : "Continuous Integration Build for FHIR R4 (latest in version control)", "path" : "http://build.fhir.org/ig/HL7/fhir-pacio-functional-status", "status" : "ci-build", "current" : true, "fhirversion" : "4.0.1"}]}
json_instruct
{"type": "object", "properties": {"package-id": {"type": "string"}, "name": {"type": "string"}, "version": {"type": "string"}, "jurisdiction": {"type": "array", "items": {"type": "object", "properties": {"coding": {"type": "array", "items": {"type": "object", "properties": {"system": {"type": "string"}, "code": {"type": "string"}}, "required": ["system", "code"]}}}, "required": ["coding"]}}, "canonical": {"type": "string"}, "url": {"type": "string"}, "title": {"type": "string"}, "description": {"type": "string"}, "dependencies": {"type": "object", "properties": {"hl7.fhir.r4.core": {"type": "string"}, "hl7.fhir.us.core": {"type": "string"}}, "required": ["hl7.fhir.r4.core", "hl7.fhir.us.core"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "language": {"type": "string"}, "author": {"type": "string"}, "maintainers": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}, "url": {"type": "string"}}, "required": ["name", "email", "url"]}}, "license": {"type": "string"}, "list": {"type": "array", "items": {"type": "object", "properties": {"version": {"type": "string"}, "desc": {"type": "string"}, "path": {"type": "string"}, "status": {"type": "string"}, "current": {"type": "boolean"}, "fhirversion": {"type": "string"}}, "required": ["version", "desc", "path", "status", "current", "fhirversion"]}}}, "required": ["package-id", "name", "version", "jurisdiction", "canonical", "url", "title", "description", "dependencies", "keywords", "language", "author", "maintainers", "license", "list"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"IsRecentlyVerified": {"type": "boolean"}, "ID": {"type": "integer"}, "UUID": {"type": "string"}, "DataProviderID": {"type": "integer"}, "OperatorID": {"type": "integer"}, "OperatorsReference": {"type": "string"}, "UsageTypeID": {"type": "integer"}, "UsageCost": {"type": "string"}, "AddressInfo": {"type": "object", "properties": {"ID": {"type": "integer"}, "Title": {"type": "string"}, "AddressLine1": {"type": "string"}, "Town": {"type": "string"}, "StateOrProvince": {"type": "string"}, "Postcode": {"type": "string"}, "CountryID": {"type": "integer"}, "Latitude": {"type": "number"}, "Longitude": {"type": "number"}, "RelatedURL": {"type": "string"}, "DistanceUnit": {"type": "integer"}}, "required": ["ID", "Title", "AddressLine1", "Town", "StateOrProvince", "Postcode", "CountryID", "Latitude", "Longitude", "RelatedURL", "DistanceUnit"]}, "Connections": {"type": "array", "items": {"type": "object", "properties": {"ID": {"type": "integer"}, "ConnectionTypeID": {"type": "integer"}, "StatusTypeID": {"type": "integer"}, "LevelID": {"type": "integer"}, "Amps": {"type": "integer"}, "Voltage": {"type": "integer"}, "PowerKW": {"type": "integer"}, "CurrentTypeID": {"type": "integer"}, "Quantity": {"type": "integer"}}, "required": ["ID", "ConnectionTypeID", "StatusTypeID", "LevelID", "Amps", "Voltage", "PowerKW", "CurrentTypeID", "Quantity"]}}, "NumberOfPoints": {"type": "integer"}, "StatusTypeID": {"type": "integer"}, "DateLastStatusUpdate": {"type": "string"}, "DataQualityLevel": {"type": "integer"}, "DateCreated": {"type": "string"}, "SubmissionStatusTypeID": {"type": "integer"}}, "required": ["IsRecentlyVerified", "ID", "UUID", "DataProviderID", "OperatorID", "OperatorsReference", "UsageTypeID", "UsageCost", "AddressInfo", "Connections", "NumberOfPoints", "StatusTypeID", "DateLastStatusUpdate", "DataQualityLevel", "DateCreated", "SubmissionStatusTypeID"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"IsRecentlyVerified" : false, "ID" : 64413, "UUID" : "950655E6-BC9E-45E2-84DA-40AD9B7FE232", "DataProviderID" : 1, "OperatorID" : 23, "OperatorsReference" : "14005", "UsageTypeID" : 4, "UsageCost" : "\u20ac0.30/kWh; altre tariffe per le auto piu\u0300 vecchie", "AddressInfo" : {"ID" : 64759, "Title" : "Tesla Supercharger Outlet Village Palmanova", "AddressLine1" : "Strada provinciale 126 di Visco", "Town" : "Aiello del Friuli", "StateOrProvince" : "UD", "Postcode" : "33041", "CountryID" : 112, "Latitude" : 45.8841674407038, "Longitude" : 13.3452834340476, "RelatedURL" : "http://www.teslamotors.com/", "DistanceUnit" : 0}, "Connections" : [{"ID" : 82621, "ConnectionTypeID" : 27, "StatusTypeID" : 50, "LevelID" : 3, "Amps" : 300, "Voltage" : 400, "PowerKW" : 120, "CurrentTypeID" : 30, "Quantity" : 8}], "NumberOfPoints" : 8, "StatusTypeID" : 50, "DateLastStatusUpdate" : "2019-03-23T07:52:00Z", "DataQualityLevel" : 1, "DateCreated" : "2016-03-05T18:09:00Z", "SubmissionStatusTypeID" : 200}
json_instruct
{"type": "object", "properties": {"IsRecentlyVerified": {"type": "boolean"}, "ID": {"type": "integer"}, "UUID": {"type": "string"}, "DataProviderID": {"type": "integer"}, "OperatorID": {"type": "integer"}, "OperatorsReference": {"type": "string"}, "UsageTypeID": {"type": "integer"}, "UsageCost": {"type": "string"}, "AddressInfo": {"type": "object", "properties": {"ID": {"type": "integer"}, "Title": {"type": "string"}, "AddressLine1": {"type": "string"}, "Town": {"type": "string"}, "StateOrProvince": {"type": "string"}, "Postcode": {"type": "string"}, "CountryID": {"type": "integer"}, "Latitude": {"type": "number"}, "Longitude": {"type": "number"}, "RelatedURL": {"type": "string"}, "DistanceUnit": {"type": "integer"}}, "required": ["ID", "Title", "AddressLine1", "Town", "StateOrProvince", "Postcode", "CountryID", "Latitude", "Longitude", "RelatedURL", "DistanceUnit"]}, "Connections": {"type": "array", "items": {"type": "object", "properties": {"ID": {"type": "integer"}, "ConnectionTypeID": {"type": "integer"}, "StatusTypeID": {"type": "integer"}, "LevelID": {"type": "integer"}, "Amps": {"type": "integer"}, "Voltage": {"type": "integer"}, "PowerKW": {"type": "integer"}, "CurrentTypeID": {"type": "integer"}, "Quantity": {"type": "integer"}}, "required": ["ID", "ConnectionTypeID", "StatusTypeID", "LevelID", "Amps", "Voltage", "PowerKW", "CurrentTypeID", "Quantity"]}}, "NumberOfPoints": {"type": "integer"}, "StatusTypeID": {"type": "integer"}, "DateLastStatusUpdate": {"type": "string"}, "DataQualityLevel": {"type": "integer"}, "DateCreated": {"type": "string"}, "SubmissionStatusTypeID": {"type": "integer"}}, "required": ["IsRecentlyVerified", "ID", "UUID", "DataProviderID", "OperatorID", "OperatorsReference", "UsageTypeID", "UsageCost", "AddressInfo", "Connections", "NumberOfPoints", "StatusTypeID", "DateLastStatusUpdate", "DataQualityLevel", "DateCreated", "SubmissionStatusTypeID"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"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-Quentin", "dpt" : "Aisne", "inscrits" : 34448, "abs" : 9537, "votants" : 24911, "blancs" : 431, "nuls" : 210, "exp" : 24270, "res" : [{"panneau" : "2", "voix" : 6973}, {"panneau" : "3", "voix" : 5171}, {"panneau" : "9", "voix" : 4671}, {"panneau" : "11", "voix" : 4295}, {"panneau" : "4", "voix" : 1245}, {"panneau" : "1", "voix" : 1072}, {"panneau" : "6", "voix" : 265}, {"panneau" : "5", "voix" : 225}, {"panneau" : "10", "voix" : 175}, {"panneau" : "8", "voix" : 141}, {"panneau" : "7", "voix" : 37}]}
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#"}
Create a JSON structure that matches this schema definition: {"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" : [[[-73.903475, 40.675507], [-73.89999, 40.6769], [-73.899307, 40.673982], [-73.89367, 40.674822], [-73.892711, 40.671046], [-73.901982, 40.66967], [-73.903475, 40.675507]]]}, "type" : "Feature", "properties" : {"cartodb_id" : 46012}}]}
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#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"dependencies": {"type": "object", "properties": {"axios": {"type": "string"}, "babel-core": {"type": "string"}, "babel-loader": {"type": "string"}, "babel-preset-env": {"type": "string"}, "codemirror": {"type": "string"}, "css-loader": {"type": "string"}, "extract-text-webpack-plugin": {"type": "string"}, "sass": {"type": "string"}, "sass-loader": {"type": "string"}, "style-loader": {"type": "string"}, "toastr": {"type": "string"}, "vue": {"type": "string"}, "vue-loader": {"type": "string"}, "vue-template-compiler": {"type": "string"}, "vuedraggable": {"type": "string"}, "webpack": {"type": "string"}, "webpack-cli": {"type": "string"}}, "required": ["axios", "babel-core", "babel-loader", "babel-preset-env", "codemirror", "css-loader", "extract-text-webpack-plugin", "sass", "sass-loader", "style-loader", "toastr", "vue", "vue-loader", "vue-template-compiler", "vuedraggable", "webpack", "webpack-cli"]}, "scripts": {"type": "object", "properties": {"dev": {"type": "string"}, "watch": {"type": "string"}, "prod": {"type": "string"}}, "required": ["dev", "watch", "prod"]}, "devDependencies": {"type": "object", "properties": {"cssnano": {"type": "string"}, "postcss-loader": {"type": "string"}, "postcss-preset-env": {"type": "string"}}, "required": ["cssnano", "postcss-loader", "postcss-preset-env"]}}, "required": ["dependencies", "scripts", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"dependencies" : {"axios" : "^0.18.1", "babel-core" : "^6.26.3", "babel-loader" : "^7.1.5", "babel-preset-env" : "^1.7.0", "codemirror" : "^5.46.0", "css-loader" : "^2.1.1", "extract-text-webpack-plugin" : "^4.0.0-beta.0", "sass" : "^1.20.1", "sass-loader" : "^7.1.0", "style-loader" : "^0.21.0", "toastr" : "^2.1.4", "vue" : "^2.6.10", "vue-loader" : "^15.7.0", "vue-template-compiler" : "^2.6.10", "vuedraggable" : "^2.20.0", "webpack" : "^4.30.0", "webpack-cli" : "^3.3.1"}, "scripts" : {"dev" : "webpack --mode development", "watch" : "webpack --watch --mode development", "prod" : "webpack --mode production"}, "devDependencies" : {"cssnano" : "^4.1.10", "postcss-loader" : "^3.0.0", "postcss-preset-env" : "^6.6.0"}}
json_instruct
{"type": "object", "properties": {"dependencies": {"type": "object", "properties": {"axios": {"type": "string"}, "babel-core": {"type": "string"}, "babel-loader": {"type": "string"}, "babel-preset-env": {"type": "string"}, "codemirror": {"type": "string"}, "css-loader": {"type": "string"}, "extract-text-webpack-plugin": {"type": "string"}, "sass": {"type": "string"}, "sass-loader": {"type": "string"}, "style-loader": {"type": "string"}, "toastr": {"type": "string"}, "vue": {"type": "string"}, "vue-loader": {"type": "string"}, "vue-template-compiler": {"type": "string"}, "vuedraggable": {"type": "string"}, "webpack": {"type": "string"}, "webpack-cli": {"type": "string"}}, "required": ["axios", "babel-core", "babel-loader", "babel-preset-env", "codemirror", "css-loader", "extract-text-webpack-plugin", "sass", "sass-loader", "style-loader", "toastr", "vue", "vue-loader", "vue-template-compiler", "vuedraggable", "webpack", "webpack-cli"]}, "scripts": {"type": "object", "properties": {"dev": {"type": "string"}, "watch": {"type": "string"}, "prod": {"type": "string"}}, "required": ["dev", "watch", "prod"]}, "devDependencies": {"type": "object", "properties": {"cssnano": {"type": "string"}, "postcss-loader": {"type": "string"}, "postcss-preset-env": {"type": "string"}}, "required": ["cssnano", "postcss-loader", "postcss-preset-env"]}}, "required": ["dependencies", "scripts", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"name": {"type": "string"}, "private": {"type": "boolean"}, "scripts": {"type": "object", "properties": {"precommit-disabled": {"type": "string"}, "precommit": {"type": "string"}, "commitmsg": {"type": "string"}}, "required": ["precommit-disabled", "precommit", "commitmsg"]}, "devDependencies": {"type": "object", "properties": {"@types/node": {"type": "string"}, "all-contributors-cli": {"type": "string"}, "dtslint": {"type": "string"}, "husky": {"type": "string"}, "lerna": {"type": "string"}, "npm-run-all": {"type": "string"}, "tslint": {"type": "string"}, "tslint-config-acamica": {"type": "string"}, "typescript": {"type": "string"}, "validate-commit-msg": {"type": "string"}}, "required": ["@types/node", "all-contributors-cli", "dtslint", "husky", "lerna", "npm-run-all", "tslint", "tslint-config-acamica", "typescript", "validate-commit-msg"]}}, "required": ["name", "private", "scripts", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "oas-ts", "private" : true, "scripts" : {"precommit-disabled" : "lerna run build && lerna run lint", "precommit" : "lerna run build", "commitmsg" : "validate-commit-msg"}, "devDependencies" : {"@types/node" : "^10.12.15", "all-contributors-cli" : "5.4.0", "dtslint" : "^0.4.1", "husky" : "0.14.3", "lerna" : "^3.6.0", "npm-run-all" : "4.1.3", "tslint" : "5.11.0", "tslint-config-acamica" : "2.0.0", "typescript" : "^3.2.2", "validate-commit-msg" : "2.14.0"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "private": {"type": "boolean"}, "scripts": {"type": "object", "properties": {"precommit-disabled": {"type": "string"}, "precommit": {"type": "string"}, "commitmsg": {"type": "string"}}, "required": ["precommit-disabled", "precommit", "commitmsg"]}, "devDependencies": {"type": "object", "properties": {"@types/node": {"type": "string"}, "all-contributors-cli": {"type": "string"}, "dtslint": {"type": "string"}, "husky": {"type": "string"}, "lerna": {"type": "string"}, "npm-run-all": {"type": "string"}, "tslint": {"type": "string"}, "tslint-config-acamica": {"type": "string"}, "typescript": {"type": "string"}, "validate-commit-msg": {"type": "string"}}, "required": ["@types/node", "all-contributors-cli", "dtslint", "husky", "lerna", "npm-run-all", "tslint", "tslint-config-acamica", "typescript", "validate-commit-msg"]}}, "required": ["name", "private", "scripts", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"body": {"type": "string"}, "next": {"type": "string"}}, "required": ["body", "next"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"body" : "NEVER VENTURING TO EXAMINE THEM, BUT ACCUSTOMING HIMSELF TO BELIEVE THEM, BECAUSE THEY ARE TO BE BELIEVED, MAY TAKE UP FROM HIS EDUCATION,", "next" : "https://raw.githubusercontent.com/CAPSELOCKE/CAPSELOCKE/master/tweets/1175.json"}
json_instruct
{"type": "object", "properties": {"body": {"type": "string"}, "next": {"type": "string"}}, "required": ["body", "next"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "author": {"type": "string"}, "license": {"type": "string"}}, "required": ["name", "version", "author", "license"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "tanayshandilya.github.io", "version" : "2.0.1", "author" : "Tanay Shandilya", "license" : "Apache-2.0"}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "author": {"type": "string"}, "license": {"type": "string"}}, "required": ["name", "version", "author", "license"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"extends": {"type": "string"}, "compilerOptions": {"type": "object", "properties": {"composite": {"type": "boolean"}, "module": {"type": "string"}, "allowJs": {"type": "boolean"}, "strict": {"type": "boolean"}, "types": {"type": "array", "items": {"type": "string"}}}, "required": ["composite", "module", "allowJs", "strict", "types"]}, "exclude": {"type": "array", "items": {"type": "string"}}}, "required": ["extends", "compilerOptions", "exclude"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"extends" : "./tsconfig.json", "compilerOptions" : {"composite" : true, "module" : "ESNext", "allowJs" : true, "strict" : false, "types" : ["node", "jest"]}, "exclude" : ["**/*.spec.ts", "**/*.spec.tsx", "**/*.test.ts", "**/*.test.tsx", "**/*.bench.ts", "**/__tests__/**", "**/__integration__/**", "**/__fixtures__/**"]}
json_instruct
{"type": "object", "properties": {"extends": {"type": "string"}, "compilerOptions": {"type": "object", "properties": {"composite": {"type": "boolean"}, "module": {"type": "string"}, "allowJs": {"type": "boolean"}, "strict": {"type": "boolean"}, "types": {"type": "array", "items": {"type": "string"}}}, "required": ["composite", "module", "allowJs", "strict", "types"]}, "exclude": {"type": "array", "items": {"type": "string"}}}, "required": ["extends", "compilerOptions", "exclude"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"type": {"type": "string"}, "objects": {"type": "object", "properties": {"E01011279": {"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": ["E01011279"]}, "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" : {"E01011279" : {"type" : "GeometryCollection", "crs" : {"type" : "name", "properties" : {"name" : "urn:ogc:def:crs:OGC:1.3:CRS84"}}, "geometries" : [{"type" : "Polygon", "properties" : {"OA11CD" : "E00056763", "LAD11CD" : "E08000035"}, "arcs" : [[0, 1, 2, 3]]}, {"type" : "Polygon", "properties" : {"OA11CD" : "E00056776", "LAD11CD" : "E08000035"}, "arcs" : [[4, 5]]}, {"type" : "Polygon", "properties" : {"OA11CD" : "E00056777", "LAD11CD" : "E08000035"}, "arcs" : [[6, 7, 8, -1]]}, {"type" : "Polygon", "properties" : {"OA11CD" : "E00056778", "LAD11CD" : "E08000035"}, "arcs" : [[-4, 9, -7]]}, {"type" : "Polygon", "properties" : {"OA11CD" : "E00056781", "LAD11CD" : "E08000035"}, "arcs" : [[10, -2, -9, 11, -5]]}]}}, "arcs" : [[[5881, 2454], [14, 368], [-463, -196], [-44, 169], [-571, -239], [-24, -163], [-236, -133]], [[4557, 2260], [-161, 71], [-68, -191]], [[4328, 2140], [-137, 101], [59, 239], [-268, 789], [65, 328]], [[4047, 3597], [913, -188], [627, 571], [22, 580], [885, 362], [225, 294], [1354, -1296], [900, -1308], [-130, -106], [-1492, 42], [-899, -533], [-275, -25], [-296, 464]], [[4142, 1753], [2, -532], [455, 69], [88, -105]], [[4687, 1185], [133, -227], [-199, -373], [-724, -289], [-111, 520], [-125, -46], [-68, 363], [110, 723], [439, -103]], [[5881, 2454], [-425, -508]], [[5456, 1946], [-91, -13]], [[5365, 1933], [-110, 205], [-135, -208], [-198, 164], [-166, -210], [-199, 376]], [[4047, 3597], [-328, 541], [98, 816], [-297, 370], [-597, -127], [-202, 660], [-764, 41], [-570, -115], [-999, 68], [-388, 1083], [350, 535], [744, 1081], [502, 227], [815, -102], [-5, 648], [158, 676], [824, -279], [1926, -11], [721, 159], [1050, -17], [753, -14], [608, 162], [1553, -153], [-51, -729], [-377, -2741], [-489, -634], [-185, -464], [136, -987], [264, -374], [-14, -877], [-352, -777], [-26, -445], [-238, -895], [-1009, -826], [-340, -97], [124, 294], [465, 639], [-822, 91], [-1079, -108], [-232, 108], [78, 505], [-396, 417]], [[4142, 1753], [286, 45], [-100, 342]], [[5365, 1933], [-147, -40], [-234, -643], [-297, -65]]], "transform" : {"scale" : [4.111337507136729e-06, 1.9031710268736168e-06], "translate" : [-1.727181641188743, 53.87454064326525]}}
json_instruct
{"type": "object", "properties": {"type": {"type": "string"}, "objects": {"type": "object", "properties": {"E01011279": {"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": ["E01011279"]}, "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#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {"type": "integer"}}, "productReviews": {"type": "array", "items": {"type": "object", "properties": {"productId": {"type": "integer"}, "reviewText": {"type": "string"}, "reviewDate": {"type": "string"}}, "required": ["productId", "reviewText", "reviewDate"]}}}, "required": ["userId", "cartId", "preferredProducts", "productReviews"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"userId" : 87252, "cartId" : "b6f090f2-5085-4167-876c-a7b94c927fdc", "preferredProducts" : [3992, 3714], "productReviews" : [{"productId" : 2777, "reviewText" : "This Upgradable works considerably well. It recklessly improves my basketball by a lot.", "reviewDate" : "2018-11-09T17:43:51.3710245+02:00"}]}
json_instruct
{"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {"type": "integer"}}, "productReviews": {"type": "array", "items": {"type": "object", "properties": {"productId": {"type": "integer"}, "reviewText": {"type": "string"}, "reviewDate": {"type": "string"}}, "required": ["productId", "reviewText", "reviewDate"]}}}, "required": ["userId", "cartId", "preferredProducts", "productReviews"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"type": {"type": "string"}, "level": {"type": "string"}, "label": {"type": "string"}, "locale": {"type": "string"}, "country_id": {"type": "integer"}, "country_reference": {"type": "integer"}, "country_name": {"type": "string"}, "region_id": {"type": "string"}, "region_reference": {"type": "string"}, "region_name": {"type": "string"}, "province_id": {"type": "string"}, "province_reference": {"type": "string"}, "province_name": {"type": "string"}, "city_id": {"type": "string"}, "city_reference": {"type": "string"}, "city_name": {"type": "string"}, "barangay_id": {"type": "string"}, "barangay_reference": {"type": "string"}, "barangay_name": {"type": "string"}}, "required": ["type", "level", "label", "locale", "country_id", "country_reference", "country_name", "region_id", "region_reference", "region_name", "province_id", "province_reference", "province_name", "city_id", "city_reference", "city_name", "barangay_id", "barangay_reference", "barangay_name"]}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}}, "required": ["type", "coordinates"]}}, "required": ["type", "properties", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"type" : "Feature", "properties" : {"type" : "barangay", "level" : "4", "label" : "Calaocalao, Don Carlos, Bukidnon, Northern Mindanao (Region X), PH", "locale" : "ph.northern-mindanao-region-x.bukidnon.don-carlos.calaocalao", "country_id" : 177, "country_reference" : 177, "country_name" : "Philippines", "region_id" : "14", "region_reference" : "10", "region_name" : "Northern Mindanao (Region X)", "province_id" : "16", "province_reference" : "16", "province_name" : "Bukidnon", "city_id" : "431", "city_reference" : "262", "city_name" : "Don Carlos", "barangay_id" : "12163", "barangay_reference" : "5962", "barangay_name" : "Calaocalao"}, "geometry" : {"type" : "MultiPolygon", "coordinates" : [[[[124.943161, 7.68384], [124.938759, 7.66801], [124.937149, 7.66896], [124.935387, 7.67004], [124.934914, 7.67078], [124.932083, 7.67195], [124.931664, 7.67205], [124.930397, 7.67309], [124.929138, 7.67501], [124.927254, 7.67632], [124.926033, 7.67656], [124.925011, 7.67756], [124.924232, 7.67904], [124.923729, 7.68068], [124.922623, 7.68237], [124.922333, 7.68262], [124.920662, 7.68365], [124.926018, 7.71153], [124.935539, 7.70689], [124.936752, 7.70596], [124.938599, 7.70507], [124.939392, 7.70377], [124.939369, 7.70106], [124.939072, 7.69958], [124.93869, 7.69745], [124.938744, 7.69599], [124.939529, 7.6941], [124.940392, 7.69322], [124.941017, 7.69114], [124.94104, 7.69019], [124.941223, 7.68925], [124.9412, 7.68724], [124.941719, 7.686], [124.941788, 7.68503], [124.943161, 7.68384]]]]}}
json_instruct
{"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"type": {"type": "string"}, "level": {"type": "string"}, "label": {"type": "string"}, "locale": {"type": "string"}, "country_id": {"type": "integer"}, "country_reference": {"type": "integer"}, "country_name": {"type": "string"}, "region_id": {"type": "string"}, "region_reference": {"type": "string"}, "region_name": {"type": "string"}, "province_id": {"type": "string"}, "province_reference": {"type": "string"}, "province_name": {"type": "string"}, "city_id": {"type": "string"}, "city_reference": {"type": "string"}, "city_name": {"type": "string"}, "barangay_id": {"type": "string"}, "barangay_reference": {"type": "string"}, "barangay_name": {"type": "string"}}, "required": ["type", "level", "label", "locale", "country_id", "country_reference", "country_name", "region_id", "region_reference", "region_name", "province_id", "province_reference", "province_name", "city_id", "city_reference", "city_name", "barangay_id", "barangay_reference", "barangay_name"]}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}}, "required": ["type", "coordinates"]}}, "required": ["type", "properties", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"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" : 101895371, "type" : "Feature", "properties" : {"src:alt_label" : "quattroshapes_pg", "src:geom" : "quattroshapes_pg", "wof:geomhash" : "766c804401ee0a5e9355c88eb49df20a", "wof:id" : 101895371, "wof:repo" : "whosonfirst-data-admin-fr"}, "bbox" : [0.89761, 43.80535, 0.89761, 43.80535], "geometry" : {"coordinates" : [0.89761, 43.80535], "type" : "Point"}}
json_instruct
{"type": "object", "properties": {"id": {"type": "integer"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"src:alt_label": {"type": "string"}, "src:geom": {"type": "string"}, "wof:geomhash": {"type": "string"}, "wof:id": {"type": "integer"}, "wof:repo": {"type": "string"}}, "required": ["src:alt_label", "src:geom", "wof:geomhash", "wof:id", "wof:repo"]}, "bbox": {"type": "array", "items": {"type": "number"}}, "geometry": {"type": "object", "properties": {"coordinates": {"type": "array", "items": {"type": "number"}}, "type": {"type": "string"}}, "required": ["coordinates", "type"]}}, "required": ["id", "type", "properties", "bbox", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"groups": {"type": "object", "properties": {"default": {"type": "object", "properties": {"packages": {"type": "array", "items": {"type": "string"}}}, "required": ["packages"]}}, "required": ["default"]}}, "required": ["groups"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"groups" : {"default" : {"packages" : ["package.json", "packages/core/package.json", "packages/lerna/package.json", "packages/delegate/package.json", "packages/utils/package.json", "packages/external-deps/package.json", "packages/typescript/package.json"]}}}
json_instruct
{"type": "object", "properties": {"groups": {"type": "object", "properties": {"default": {"type": "object", "properties": {"packages": {"type": "array", "items": {"type": "string"}}}, "required": ["packages"]}}, "required": ["default"]}}, "required": ["groups"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"potTagNumber": {"type": "string"}, "family": {"type": "string"}, "commonName": {"type": "string"}, "locale": {"type": "string"}, "taxonName": {"type": "string"}, "numberOfLabels": {"type": "string"}, "printLabels": {"type": "string"}, "labelData": {"type": "string"}}, "required": ["potTagNumber", "family", "commonName", "locale", "taxonName", "numberOfLabels", "printLabels", "labelData"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"potTagNumber" : "123", "family" : "Domestic", "commonName" : "Hillarious", "locale" : "Mozzale", "taxonName" : "Tropez", "numberOfLabels" : "2", "printLabels" : "yes", "labelData" : "Liqourous"}
json_instruct
{"type": "object", "properties": {"potTagNumber": {"type": "string"}, "family": {"type": "string"}, "commonName": {"type": "string"}, "locale": {"type": "string"}, "taxonName": {"type": "string"}, "numberOfLabels": {"type": "string"}, "printLabels": {"type": "string"}, "labelData": {"type": "string"}}, "required": ["potTagNumber", "family", "commonName", "locale", "taxonName", "numberOfLabels", "printLabels", "labelData"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"type": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "number"}}}, "required": ["type", "coordinates"]}, "properties": {"type": "object", "properties": {"site-plan-url": {"type": "string"}, "minimum-net-dwellings": {"type": "string"}, "organisation": {"type": "string"}, "ownership-status": {"type": "string"}, "notes": {"type": "string"}, "site": {"type": "string"}, "planning-permission-status": {"type": "string"}, "point": {"type": "string"}, "start-date": {"type": "string"}, "site-address": {"type": "string"}, "maximum-net-dwellings": {"type": "string"}, "name": {"type": "string"}, "hectares": {"type": "string"}, "slug": {"type": "string"}, "entity": {"type": "integer"}, "entry-date": {"type": "string"}}, "required": ["site-plan-url", "minimum-net-dwellings", "organisation", "ownership-status", "notes", "site", "planning-permission-status", "point", "start-date", "site-address", "maximum-net-dwellings", "name", "hectares", "slug", "entity", "entry-date"]}}, "required": ["type", "geometry", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"type" : "Feature", "geometry" : {"type" : "Point", "coordinates" : [-1.679686, 52.61042]}, "properties" : {"site-plan-url" : "https://www.tamworth.gov.uk/sites/default/files/planning_docs/brownfield_register/BR002.pdf", "minimum-net-dwellings" : "48", "organisation" : "local-authority-eng:TAW", "ownership-status" : "not owned by a public authority", "notes" : "Site allocation in TBC LP 2006-2031", "site" : "BR002", "planning-permission-status" : "not permissioned", "point" : "POINT(-1.679686 52.61042)", "start-date" : "2017-12-08", "site-address" : "Land off Cottage Farm Road", "maximum-net-dwellings" : "48", "name" : "BR002", "hectares" : "1.5", "slug" : "/brownfield-land/local-authority-eng/TAW/BR002", "entity" : 496387, "entry-date" : "2018-12-18"}}
json_instruct
{"type": "object", "properties": {"type": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "number"}}}, "required": ["type", "coordinates"]}, "properties": {"type": "object", "properties": {"site-plan-url": {"type": "string"}, "minimum-net-dwellings": {"type": "string"}, "organisation": {"type": "string"}, "ownership-status": {"type": "string"}, "notes": {"type": "string"}, "site": {"type": "string"}, "planning-permission-status": {"type": "string"}, "point": {"type": "string"}, "start-date": {"type": "string"}, "site-address": {"type": "string"}, "maximum-net-dwellings": {"type": "string"}, "name": {"type": "string"}, "hectares": {"type": "string"}, "slug": {"type": "string"}, "entity": {"type": "integer"}, "entry-date": {"type": "string"}}, "required": ["site-plan-url", "minimum-net-dwellings", "organisation", "ownership-status", "notes", "site", "planning-permission-status", "point", "start-date", "site-address", "maximum-net-dwellings", "name", "hectares", "slug", "entity", "entry-date"]}}, "required": ["type", "geometry", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"}