input
stringlengths 159
2.05k
| output
stringlengths 5
10.3k
| task
stringclasses 1
value | schema
stringlengths 100
1.99k
|
---|---|---|---|
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "main": {"type": "string"}, "license": {"type": "string"}, "engines": {"type": "object", "properties": {"node": {"type": "string"}}, "required": ["node"]}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}}, "required": ["start"]}, "dependencies": {"type": "object", "properties": {"dotenv": {"type": "string"}, "ethers": {"type": "string"}, "node-fetch": {"type": "string"}, "node-telegram-bot-api": {"type": "string"}}, "required": ["dotenv", "ethers", "node-fetch", "node-telegram-bot-api"]}, "devDependencies": {"type": "object", "properties": {"@typescript-eslint/parser": {"type": "string"}, "eslint": {"type": "string"}, "eslint-config-prettier": {"type": "string"}, "eslint-config-standard": {"type": "string"}, "eslint-plugin-import": {"type": "string"}, "eslint-plugin-node": {"type": "string"}, "eslint-plugin-prettier": {"type": "string"}, "eslint-plugin-promise": {"type": "string"}, "prettier": {"type": "string"}}, "required": ["@typescript-eslint/parser", "eslint", "eslint-config-prettier", "eslint-config-standard", "eslint-plugin-import", "eslint-plugin-node", "eslint-plugin-prettier", "eslint-plugin-promise", "prettier"]}}, "required": ["name", "version", "main", "license", "engines", "scripts", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
|
{"name" : "xata-stats-bot", "version" : "1.0.0", "main" : "index.js", "license" : "MIT", "engines" : {"node" : "16.x"}, "scripts" : {"start" : "node index.js"}, "dependencies" : {"dotenv" : "^10.0.0", "ethers" : "^5.5.2", "node-fetch" : "^3.1.0", "node-telegram-bot-api" : "^0.55.0"}, "devDependencies" : {"@typescript-eslint/parser" : "^5.6.0", "eslint" : "^7.32.0", "eslint-config-prettier" : "^8.3.0", "eslint-config-standard" : "^16.0.3", "eslint-plugin-import" : "^2.25.3", "eslint-plugin-node" : "^11.1.0", "eslint-plugin-prettier" : "^4.0.0", "eslint-plugin-promise" : "^5.2.0", "prettier" : "^2.5.1"}}
|
json_instruct
|
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "main": {"type": "string"}, "license": {"type": "string"}, "engines": {"type": "object", "properties": {"node": {"type": "string"}}, "required": ["node"]}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}}, "required": ["start"]}, "dependencies": {"type": "object", "properties": {"dotenv": {"type": "string"}, "ethers": {"type": "string"}, "node-fetch": {"type": "string"}, "node-telegram-bot-api": {"type": "string"}}, "required": ["dotenv", "ethers", "node-fetch", "node-telegram-bot-api"]}, "devDependencies": {"type": "object", "properties": {"@typescript-eslint/parser": {"type": "string"}, "eslint": {"type": "string"}, "eslint-config-prettier": {"type": "string"}, "eslint-config-standard": {"type": "string"}, "eslint-plugin-import": {"type": "string"}, "eslint-plugin-node": {"type": "string"}, "eslint-plugin-prettier": {"type": "string"}, "eslint-plugin-promise": {"type": "string"}, "prettier": {"type": "string"}}, "required": ["@typescript-eslint/parser", "eslint", "eslint-config-prettier", "eslint-config-standard", "eslint-plugin-import", "eslint-plugin-node", "eslint-plugin-prettier", "eslint-plugin-promise", "prettier"]}}, "required": ["name", "version", "main", "license", "engines", "scripts", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
|
Based on the schema below, produce a valid JSON object:
{"type": "array", "items": {"type": "array", "items": {"type": "string"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
|
[["530629103001", "\u7f57\u5e03\u793e\u533a\u5c45\u6c11\u59d4\u5458\u4f1a", "121", "0"], ["530629103202", "\u9752\u9f99\u6751\u6c11\u59d4\u5458\u4f1a", "220", "0"], ["530629103203", "\u6843\u575d\u6751\u6c11\u59d4\u5458\u4f1a", "220", "0"], ["530629103204", "\u7c38\u706b\u6751\u6c11\u59d4\u5458\u4f1a", "220", "0"], ["530629103205", "\u7c38\u7b95\u6751\u6c11\u59d4\u5458\u4f1a", "220", "0"], ["530629103206", "\u65b0\u5e84\u6751\u6c11\u59d4\u5458\u4f1a", "220", "0"], ["530629103207", "\u9ed1\u9f99\u6751\u6c11\u59d4\u5458\u4f1a", "220", "0"], ["530629103208", "\u90ed\u5bb6\u6751\u6c11\u59d4\u5458\u4f1a", "220", "0"], ["530629103209", "\u65b0\u7530\u6751\u6c11\u59d4\u5458\u4f1a", "220", "0"], ["530629103210", "\u987a\u6cb3\u6751\u6c11\u59d4\u5458\u4f1a", "122", "0"], ["530629103211", "\u5e99\u576a\u6751\u6c11\u59d4\u5458\u4f1a", "220", "0"]]
|
json_instruct
|
{"type": "array", "items": {"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": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"}
|
{"word" : "rulable", "definition" : "That may be ruled; subject to rule; accordant or conformable to rule. Bacon."}
|
json_instruct
|
{"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"}
|
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "main": {"type": "string"}, "author": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "peerDependencies": {"type": "object", "properties": {"object-state-storage": {"type": "string"}, "history": {"type": "string"}}, "required": ["object-state-storage", "history"]}, "devDependencies": {"type": "object", "properties": {"babel-core": {"type": "string"}, "babel-eslint": {"type": "string"}, "babel-jest": {"type": "string"}, "babel-polyfill": {"type": "string"}, "babel-preset-env": {"type": "string"}, "babel-preset-react": {"type": "string"}, "babel-preset-stage-2": {"type": "string"}, "eslint": {"type": "string"}, "eslint-plugin-import": {"type": "string"}, "eslint-plugin-jsx-a11y": {"type": "string"}, "eslint-plugin-react": {"type": "string"}, "import-sort": {"type": "string"}, "import-sort-style-module": {"type": "string"}, "jest": {"type": "string"}}, "required": ["babel-core", "babel-eslint", "babel-jest", "babel-polyfill", "babel-preset-env", "babel-preset-react", "babel-preset-stage-2", "eslint", "eslint-plugin-import", "eslint-plugin-jsx-a11y", "eslint-plugin-react", "import-sort", "import-sort-style-module", "jest"]}, "importSort": {"type": "object", "properties": {".js, .jsx, .es6, .es": {"type": "object", "properties": {"parser": {"type": "string"}, "style": {"type": "string"}}, "required": ["parser", "style"]}}, "required": [".js, .jsx, .es6, .es"]}}, "required": ["name", "version", "main", "author", "scripts", "peerDependencies", "devDependencies", "importSort"], "$schema": "http://json-schema.org/draft-07/schema#"}
|
{"name" : "routing-service", "version" : "1.0.0", "main" : "index.js", "author" : "Vadim Kotov <[email protected]>", "scripts" : {"test" : "jest --config jest.config.js --verbose"}, "peerDependencies" : {"object-state-storage" : "*", "history" : "*"}, "devDependencies" : {"babel-core" : "^6.26.0", "babel-eslint" : "^8.0.1", "babel-jest" : "^21.2.0", "babel-polyfill" : "^6.26.0", "babel-preset-env" : "^1.6.1", "babel-preset-react" : "^6.24.1", "babel-preset-stage-2" : "^6.24.1", "eslint" : "^4.10.0", "eslint-plugin-import" : "^2.8.0", "eslint-plugin-jsx-a11y" : "^6.0.2", "eslint-plugin-react" : "^7.4.0", "import-sort" : "^3.3.0", "import-sort-style-module" : "^3.0.0", "jest" : "^21.2.1"}, "importSort" : {".js, .jsx, .es6, .es" : {"parser" : "babylon", "style" : "module"}}}
|
json_instruct
|
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "main": {"type": "string"}, "author": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "peerDependencies": {"type": "object", "properties": {"object-state-storage": {"type": "string"}, "history": {"type": "string"}}, "required": ["object-state-storage", "history"]}, "devDependencies": {"type": "object", "properties": {"babel-core": {"type": "string"}, "babel-eslint": {"type": "string"}, "babel-jest": {"type": "string"}, "babel-polyfill": {"type": "string"}, "babel-preset-env": {"type": "string"}, "babel-preset-react": {"type": "string"}, "babel-preset-stage-2": {"type": "string"}, "eslint": {"type": "string"}, "eslint-plugin-import": {"type": "string"}, "eslint-plugin-jsx-a11y": {"type": "string"}, "eslint-plugin-react": {"type": "string"}, "import-sort": {"type": "string"}, "import-sort-style-module": {"type": "string"}, "jest": {"type": "string"}}, "required": ["babel-core", "babel-eslint", "babel-jest", "babel-polyfill", "babel-preset-env", "babel-preset-react", "babel-preset-stage-2", "eslint", "eslint-plugin-import", "eslint-plugin-jsx-a11y", "eslint-plugin-react", "import-sort", "import-sort-style-module", "jest"]}, "importSort": {"type": "object", "properties": {".js, .jsx, .es6, .es": {"type": "object", "properties": {"parser": {"type": "string"}, "style": {"type": "string"}}, "required": ["parser", "style"]}}, "required": [".js, .jsx, .es6, .es"]}}, "required": ["name", "version", "main", "author", "scripts", "peerDependencies", "devDependencies", "importSort"], "$schema": "http://json-schema.org/draft-07/schema#"}
|
Following the schema specification below, generate a valid JSON instance:
{"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "frequency": {"type": "integer"}, "males": {"type": "string"}, "females": {"type": "string"}}, "required": ["name", "frequency", "males", "females"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
|
[{"name" : "BETAN\ufffd", "frequency" : 1, "males" : "0.0 %", "females" : "100.0 %"}]
|
json_instruct
|
{"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "frequency": {"type": "integer"}, "males": {"type": "string"}, "females": {"type": "string"}}, "required": ["name", "frequency", "males", "females"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
|
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "version": {"type": "string"}, "private": {"type": "boolean"}, "scripts": {"type": "object", "properties": {"dev": {"type": "string"}, "build": {"type": "string"}, "preview": {"type": "string"}, "test": {"type": "string"}}, "required": ["dev", "build", "preview", "test"]}, "author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"@yakit/grid": {"type": "string"}, "@yakit/svelte": {"type": "string"}, "@yakit/ui": {"type": "string"}, "debounce": {"type": "string"}, "deep-diff": {"type": "string"}}, "required": ["@yakit/grid", "@yakit/svelte", "@yakit/ui", "debounce", "deep-diff"]}, "browserslist": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "description", "version", "private", "scripts", "author", "license", "dependencies", "browserslist"], "$schema": "http://json-schema.org/draft-07/schema#"}
|
{"name" : "@yakit/demo", "description" : "Framework agnostic ui stuff", "version" : "1.0.0", "private" : true, "scripts" : {"dev" : "vite", "build" : "vite build", "preview" : "vite preview", "test" : "jest src"}, "author" : "Joshua B", "license" : "MIT", "dependencies" : {"@yakit/grid" : "workspace:1.0.0", "@yakit/svelte" : "workspace:1.0.0", "@yakit/ui" : "workspace:1.0.0", "debounce" : "^1.2.1", "deep-diff" : "^1.0.2"}, "browserslist" : ["defaults"]}
|
json_instruct
|
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "version": {"type": "string"}, "private": {"type": "boolean"}, "scripts": {"type": "object", "properties": {"dev": {"type": "string"}, "build": {"type": "string"}, "preview": {"type": "string"}, "test": {"type": "string"}}, "required": ["dev", "build", "preview", "test"]}, "author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"@yakit/grid": {"type": "string"}, "@yakit/svelte": {"type": "string"}, "@yakit/ui": {"type": "string"}, "debounce": {"type": "string"}, "deep-diff": {"type": "string"}}, "required": ["@yakit/grid", "@yakit/svelte", "@yakit/ui", "debounce", "deep-diff"]}, "browserslist": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "description", "version", "private", "scripts", "author", "license", "dependencies", "browserslist"], "$schema": "http://json-schema.org/draft-07/schema#"}
|
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"MRRm_new": {"type": "number"}, "MRm_new": {"type": "number"}, "HITS@1m_new": {"type": "number"}, "HITS@3m_new": {"type": "number"}, "HITS@10m_new": {"type": "number"}}, "required": ["MRRm_new", "MRm_new", "HITS@1m_new", "HITS@3m_new", "HITS@10m_new"], "$schema": "http://json-schema.org/draft-07/schema#"}
|
{"MRRm_new" : 0.4937101941569936, "MRm_new" : 265.58671199768037, "HITS@1m_new" : 0.43100947742671997, "HITS@3m_new" : 0.5183508114859869, "HITS@10m_new" : 0.6139584901274684}
|
json_instruct
|
{"type": "object", "properties": {"MRRm_new": {"type": "number"}, "MRm_new": {"type": "number"}, "HITS@1m_new": {"type": "number"}, "HITS@3m_new": {"type": "number"}, "HITS@10m_new": {"type": "number"}}, "required": ["MRRm_new", "MRm_new", "HITS@1m_new", "HITS@3m_new", "HITS@10m_new"], "$schema": "http://json-schema.org/draft-07/schema#"}
|
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"n_dim": {"type": "integer"}, "n_trials": {"type": "integer"}, "objective": {"type": "string"}, "white": {"type": "string"}, "black": {"type": "string"}, "traceback": {"type": "array", "items": {"type": "string"}}, "best_val": {"type": "array", "items": {"type": "number"}}, "best_x": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}, "feval_count": {"type": "array", "items": {"type": "integer"}}, "n_trials_instructed": {"type": "array", "items": {"type": "integer"}}, "passing": {"type": "array", "items": {"type": "boolean"}}, "completed": {"type": "boolean"}, "points": {"type": "number"}, "winner": {"type": "string"}, "loser": {"type": "string"}}, "required": ["n_dim", "n_trials", "objective", "white", "black", "traceback", "best_val", "best_x", "feval_count", "n_trials_instructed", "passing", "completed", "points", "winner", "loser"], "$schema": "http://json-schema.org/draft-07/schema#"}
|
{"n_dim" : 8, "n_trials" : 130, "objective" : "markowitz_return_on_cube", "white" : "ultraopt_random", "black" : "hebo_sequential", "traceback" : ["passing", "passing"], "best_val" : [5802.853917256561, 4159.110692182898], "best_x" : [[0.2064212717606032, 0.010995828658480478, 0.13688563006880727, 0.9000186418481051, 0.8738900775625152, 0.5974131021703083, 0.6005168604336534, 0.6650366745462555], [0.37982217147242453, 9.110995357275442e-06, 0.5874468994350471, 0.9997208099830046, 0.9757914471017995, 0.08185599214793034, 0.9450141260728403, 0.9977446277206367]], "feval_count" : [130, 130], "n_trials_instructed" : [130, 130], "passing" : [true, true], "completed" : true, "points" : 0.0, "winner" : "hebo_cube_sequential", "loser" : "ultraopt_random_cube"}
|
json_instruct
|
{"type": "object", "properties": {"n_dim": {"type": "integer"}, "n_trials": {"type": "integer"}, "objective": {"type": "string"}, "white": {"type": "string"}, "black": {"type": "string"}, "traceback": {"type": "array", "items": {"type": "string"}}, "best_val": {"type": "array", "items": {"type": "number"}}, "best_x": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}, "feval_count": {"type": "array", "items": {"type": "integer"}}, "n_trials_instructed": {"type": "array", "items": {"type": "integer"}}, "passing": {"type": "array", "items": {"type": "boolean"}}, "completed": {"type": "boolean"}, "points": {"type": "number"}, "winner": {"type": "string"}, "loser": {"type": "string"}}, "required": ["n_dim", "n_trials", "objective", "white", "black", "traceback", "best_val", "best_x", "feval_count", "n_trials_instructed", "passing", "completed", "points", "winner", "loser"], "$schema": "http://json-schema.org/draft-07/schema#"}
|
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"patthana8.16:1.1": {"type": "string"}, "patthana8.16:2.1": {"type": "string"}, "patthana8.16:3.1": {"type": "string"}, "patthana8.16:4.1": {"type": "string"}}, "required": ["patthana8.16:1.1", "patthana8.16:2.1", "patthana8.16:3.1", "patthana8.16:4.1"], "$schema": "http://json-schema.org/draft-07/schema#"}
|
{"patthana8.16:1.1" : "dr45.25, ms40P8_83, msdiv30, vri124.99", "patthana8.16:2.1" : "ms40P8_84", "patthana8.16:3.1" : "ms40P8_85, sya45.25", "patthana8.16:4.1" : "ms40P8_86"}
|
json_instruct
|
{"type": "object", "properties": {"patthana8.16:1.1": {"type": "string"}, "patthana8.16:2.1": {"type": "string"}, "patthana8.16:3.1": {"type": "string"}, "patthana8.16:4.1": {"type": "string"}}, "required": ["patthana8.16:1.1", "patthana8.16:2.1", "patthana8.16:3.1", "patthana8.16:4.1"], "$schema": "http://json-schema.org/draft-07/schema#"}
|
Create a JSON structure that matches this schema definition:
{"type": "array", "items": {"type": "object", "properties": {"fees": {"type": "integer"}, "ts": {"type": "string"}, "txid": {"type": "string"}, "block": {"type": "integer"}, "in": {"type": "array", "items": {"type": "object", "properties": {"coinbase": {"type": "string"}}, "required": ["coinbase"]}}, "sent": {"type": "integer"}, "out": {"type": "array", "items": {"type": "object", "properties": {"value": {"type": "integer"}}, "required": ["value"]}}}, "required": ["fees", "ts", "txid", "block", "in", "sent", "out"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
|
[{"fees" : -2500000000, "ts" : "1535319953", "txid" : "9190f898186e9fbc464dc669d713bcc228baced90396e82739ddd0526d817c23", "block" : 1422268, "in" : [{"coinbase" : "03bcb31504911f835b0827feee798e0100000d2f6e6f64655374726174756d2f"}], "sent" : 2500000000, "out" : [{"value" : 0}, {"addr" : "MBqPGPPuKVCLQSyGjNaSgQtAActjz37xFs", "value" : 2500000000, "spent" : "5946559175bd092139ad7847fa218c577dc3b024a8b7718cc92db40a5fab66a0"}]}]
|
json_instruct
|
{"type": "array", "items": {"type": "object", "properties": {"fees": {"type": "integer"}, "ts": {"type": "string"}, "txid": {"type": "string"}, "block": {"type": "integer"}, "in": {"type": "array", "items": {"type": "object", "properties": {"coinbase": {"type": "string"}}, "required": ["coinbase"]}}, "sent": {"type": "integer"}, "out": {"type": "array", "items": {"type": "object", "properties": {"value": {"type": "integer"}}, "required": ["value"]}}}, "required": ["fees", "ts", "txid", "block", "in", "sent", "out"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
|
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"excludes": {"type": "array", "items": {}}, "extensions": {"type": "array", "items": {"type": "string"}}, "eslint": {"type": "object", "properties": {"extensions": {"type": "array", "items": {"type": "string"}}}, "required": ["extensions"]}, "js": {"type": "object", "properties": {"extensions": {"type": "array", "items": {"type": "string"}}}, "required": ["extensions"]}, "css": {"type": "object", "properties": {"extensions": {"type": "array", "items": {"type": "string"}}}, "required": ["extensions"]}, "json": {"type": "object", "properties": {"extensions": {"type": "array", "items": {"type": "string"}}}, "required": ["extensions"]}, "babel": {"type": "object", "properties": {"extensions": {"type": "array", "items": {"type": "string"}}}, "required": ["extensions"]}, "httpresource": {"type": "object", "properties": {}, "required": []}, "builtins": {"type": "object", "properties": {}, "required": []}, "cache": {"type": "boolean"}, "shards": {"type": "object", "properties": {"dist/vendor.js": {"type": "string"}}, "required": ["dist/vendor.js"]}}, "required": ["excludes", "extensions", "eslint", "js", "css", "json", "babel", "httpresource", "builtins", "cache", "shards"], "$schema": "http://json-schema.org/draft-07/schema#"}
|
{"excludes" : [], "extensions" : ["js", "jsx", "css", "json"], "eslint" : {"extensions" : ["js", "jsx"]}, "js" : {"extensions" : ["js", "jsx"]}, "css" : {"extensions" : ["css"]}, "json" : {"extensions" : ["json"]}, "babel" : {"extensions" : ["js", "jsx"]}, "httpresource" : {}, "builtins" : {}, "cache" : false, "shards" : {"dist/vendor.js" : "/node_modules/"}}
|
json_instruct
|
{"type": "object", "properties": {"excludes": {"type": "array", "items": {}}, "extensions": {"type": "array", "items": {"type": "string"}}, "eslint": {"type": "object", "properties": {"extensions": {"type": "array", "items": {"type": "string"}}}, "required": ["extensions"]}, "js": {"type": "object", "properties": {"extensions": {"type": "array", "items": {"type": "string"}}}, "required": ["extensions"]}, "css": {"type": "object", "properties": {"extensions": {"type": "array", "items": {"type": "string"}}}, "required": ["extensions"]}, "json": {"type": "object", "properties": {"extensions": {"type": "array", "items": {"type": "string"}}}, "required": ["extensions"]}, "babel": {"type": "object", "properties": {"extensions": {"type": "array", "items": {"type": "string"}}}, "required": ["extensions"]}, "httpresource": {"type": "object", "properties": {}, "required": []}, "builtins": {"type": "object", "properties": {}, "required": []}, "cache": {"type": "boolean"}, "shards": {"type": "object", "properties": {"dist/vendor.js": {"type": "string"}}, "required": ["dist/vendor.js"]}}, "required": ["excludes", "extensions", "eslint", "js", "css", "json", "babel", "httpresource", "builtins", "cache", "shards"], "$schema": "http://json-schema.org/draft-07/schema#"}
|
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"artist_id": {"type": "string"}, "artist_latitude": {"type": "null"}, "artist_location": {"type": "string"}, "artist_longitude": {"type": "null"}, "artist_name": {"type": "string"}, "duration": {"type": "number"}, "num_songs": {"type": "integer"}, "song_id": {"type": "string"}, "title": {"type": "string"}, "year": {"type": "integer"}}, "required": ["artist_id", "artist_latitude", "artist_location", "artist_longitude", "artist_name", "duration", "num_songs", "song_id", "title", "year"], "$schema": "http://json-schema.org/draft-07/schema#"}
|
{"artist_id" : "AROGAPH1187B98CF9C", "artist_latitude" : null, "artist_location" : "", "artist_longitude" : null, "artist_name" : "Benabar", "duration" : 238.44526, "num_songs" : 1, "song_id" : "SOADDVU12A8AE47512", "title" : "Le Zoo De Vincennes", "year" : 2003}
|
json_instruct
|
{"type": "object", "properties": {"artist_id": {"type": "string"}, "artist_latitude": {"type": "null"}, "artist_location": {"type": "string"}, "artist_longitude": {"type": "null"}, "artist_name": {"type": "string"}, "duration": {"type": "number"}, "num_songs": {"type": "integer"}, "song_id": {"type": "string"}, "title": {"type": "string"}, "year": {"type": "integer"}}, "required": ["artist_id", "artist_latitude", "artist_location", "artist_longitude", "artist_name", "duration", "num_songs", "song_id", "title", "year"], "$schema": "http://json-schema.org/draft-07/schema#"}
|
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"domain": {"type": "string"}, "title": {"type": "string"}, "type": {"type": "string"}, "license": {"type": "string"}, "name": {"type": "string"}, "homepage": {"type": "string"}, "audit": {"type": "string"}, "director": {"type": "string"}, "pre-approval": {"type": "string"}, "updated": {"type": "integer"}}, "required": ["domain", "title", "type", "license", "name", "homepage", "audit", "director", "pre-approval", "updated"], "$schema": "http://json-schema.org/draft-07/schema#"}
|
{"domain" : "suzhou.gov.cn", "title" : "\u82cf\u5dde\u5e02\u4fe1\u606f\u4e2d\u5fc3", "type" : "\u4e8b\u4e1a\u5355\u4f4d", "license" : "\u82cfICP\u590710219514\u53f7-1", "name" : "\u4e2d\u56fd\u82cf\u5dde", "homepage" : "www.suzhou.gov.cn", "audit" : "2014-04-01", "director" : "", "pre-approval" : "", "updated" : 1477473763}
|
json_instruct
|
{"type": "object", "properties": {"domain": {"type": "string"}, "title": {"type": "string"}, "type": {"type": "string"}, "license": {"type": "string"}, "name": {"type": "string"}, "homepage": {"type": "string"}, "audit": {"type": "string"}, "director": {"type": "string"}, "pre-approval": {"type": "string"}, "updated": {"type": "integer"}}, "required": ["domain", "title", "type", "license", "name", "homepage", "audit", "director", "pre-approval", "updated"], "$schema": "http://json-schema.org/draft-07/schema#"}
|
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "object", "properties": {"error": {"type": "null"}, "issues": {"type": "array", "items": {}}, "success": {"type": "boolean"}}, "required": ["error", "issues", "success"]}}, "required": ["contract", "tool", "start", "end", "duration", "analysis"], "$schema": "http://json-schema.org/draft-07/schema#"}
|
{"contract" : "0xa3baa9cd4f5c0f75541e7c78462a6f36ed62049a", "tool" : "mythril", "start" : 1563578973.3422308, "end" : 1563578978.2767584, "duration" : 4.934527635574341, "analysis" : {"error" : null, "issues" : [], "success" : true}}
|
json_instruct
|
{"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "object", "properties": {"error": {"type": "null"}, "issues": {"type": "array", "items": {}}, "success": {"type": "boolean"}}, "required": ["error", "issues", "success"]}}, "required": ["contract", "tool", "start", "end", "duration", "analysis"], "$schema": "http://json-schema.org/draft-07/schema#"}
|
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"type": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["type", "coordinates"]}, "properties": {"type": "object", "properties": {"code": {"type": "integer"}, "url": {"type": "string"}, "view": {"type": "string"}}, "required": ["code", "url", "view"]}}, "required": ["type", "geometry", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"}
|
{"type" : "Feature", "geometry" : {"type" : "Polygon", "coordinates" : [[[139.375, 30.5], [139.375, 30.583333333333332], [139.5, 30.583333333333332], [139.5, 30.5], [139.375, 30.5]]]}, "properties" : {"code" : 453963, "url" : "http://madefor.github.io/0410/api/v1/453963.geojson", "view" : "https://github.com/madefor/0410/blob/gh-pages/api/v1/453963.geojson"}}
|
json_instruct
|
{"type": "object", "properties": {"type": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["type", "coordinates"]}, "properties": {"type": "object", "properties": {"code": {"type": "integer"}, "url": {"type": "string"}, "view": {"type": "string"}}, "required": ["code", "url", "view"]}}, "required": ["type", "geometry", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"}
|
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"3": {"type": "object", "properties": {"0": {"type": "string"}, "1": {"type": "string"}, "2": {"type": "string"}, "3": {"type": "string"}, "6": {"type": "integer"}, "9": {"type": "integer"}}, "required": ["0", "1", "2", "3", "6", "9"]}, "5750": {"type": "integer"}, "9001": {"type": "string"}, "9002": {"type": "integer"}, "9003": {"type": "integer"}, "9019": {"type": "integer"}, "9020": {"type": "integer"}, "9054": {"type": "integer"}, "15009": {"type": "array", "items": {"type": "object", "properties": {"9003": {"type": "integer"}}, "required": ["9003"]}}}, "required": ["3", "5750", "9001", "9002", "9003", "9019", "9020", "9054", "15009"], "$schema": "http://json-schema.org/draft-07/schema#"}
|
{"3" : {"0" : "IKEA of Sweden", "1" : "TRADFRI remote control", "2" : "", "3" : "1.2.214", "6" : 3, "9" : 34}, "5750" : 0, "9001" : "Remote AZ", "9002" : 1513380504, "9003" : 65536, "9019" : 1, "9020" : 1538262131, "9054" : 0, "15009" : [{"9003" : 0}]}
|
json_instruct
|
{"type": "object", "properties": {"3": {"type": "object", "properties": {"0": {"type": "string"}, "1": {"type": "string"}, "2": {"type": "string"}, "3": {"type": "string"}, "6": {"type": "integer"}, "9": {"type": "integer"}}, "required": ["0", "1", "2", "3", "6", "9"]}, "5750": {"type": "integer"}, "9001": {"type": "string"}, "9002": {"type": "integer"}, "9003": {"type": "integer"}, "9019": {"type": "integer"}, "9020": {"type": "integer"}, "9054": {"type": "integer"}, "15009": {"type": "array", "items": {"type": "object", "properties": {"9003": {"type": "integer"}}, "required": ["9003"]}}}, "required": ["3", "5750", "9001", "9002", "9003", "9019", "9020", "9054", "15009"], "$schema": "http://json-schema.org/draft-07/schema#"}
|
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"id": {"type": "string"}, "symbol": {"type": "string"}, "name": {"type": "string"}, "platforms": {"type": "object", "properties": {"fantom": {"type": "string"}}, "required": ["fantom"]}, "hashing_algorithm": {"type": "null"}, "categories": {"type": "array", "items": {"type": "string"}}, "description": {"type": "object", "properties": {"en": {"type": "string"}}, "required": ["en"]}, "country_origin": {"type": "string"}, "genesis_date": {"type": "null"}, "contract_address": {"type": "string"}, "url": {"type": "string"}, "explorers": {"type": "array", "items": {"type": "string"}}, "twitter": {"type": "string"}, "telegram": {"type": "string"}}, "required": ["id", "symbol", "name", "platforms", "hashing_algorithm", "categories", "description", "country_origin", "genesis_date", "contract_address", "url", "explorers", "twitter", "telegram"], "$schema": "http://json-schema.org/draft-07/schema#"}
|
{"id" : "timechain-swap-token", "symbol" : "tcs", "name" : "Timechain Swap Token", "platforms" : {"fantom" : "0xfbfae0dd49882e503982f8eb4b8b1e464eca0b91"}, "hashing_algorithm" : null, "categories" : ["Decentralized Exchange Token (DEX)", "Fantom Ecosystem", "Automated Market Maker (AMM)"], "description" : {"en" : "TimechainSwap (TCS) is a multi-chain Decentralized Exchange (DEX) aggregator. It is built as an Automated Market Maker (AMM) on Fantom (FTM) network and expanding to Binance Smart Chain and the Ethereum Network next. FTM and BSC are chosen as priority for their low fees and fast transaction speed to extract the best price through the available (DEX) liquidity pools."}, "country_origin" : "", "genesis_date" : null, "contract_address" : "0xfbfae0dd49882e503982f8eb4b8b1e464eca0b91", "url" : "https://timechain.com", "explorers" : ["https://ftmscan.com/token/0xfbfae0dd49882e503982f8eb4b8b1e464eca0b91"], "twitter" : "timechainapp", "telegram" : "TimechainOfficial"}
|
json_instruct
|
{"type": "object", "properties": {"id": {"type": "string"}, "symbol": {"type": "string"}, "name": {"type": "string"}, "platforms": {"type": "object", "properties": {"fantom": {"type": "string"}}, "required": ["fantom"]}, "hashing_algorithm": {"type": "null"}, "categories": {"type": "array", "items": {"type": "string"}}, "description": {"type": "object", "properties": {"en": {"type": "string"}}, "required": ["en"]}, "country_origin": {"type": "string"}, "genesis_date": {"type": "null"}, "contract_address": {"type": "string"}, "url": {"type": "string"}, "explorers": {"type": "array", "items": {"type": "string"}}, "twitter": {"type": "string"}, "telegram": {"type": "string"}}, "required": ["id", "symbol", "name", "platforms", "hashing_algorithm", "categories", "description", "country_origin", "genesis_date", "contract_address", "url", "explorers", "twitter", "telegram"], "$schema": "http://json-schema.org/draft-07/schema#"}
|
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"player_id": {"type": "integer"}, "name": {"type": "string"}, "position": {"type": "string"}, "height": {"type": "string"}, "weight": {"type": "string"}, "current_team": {"type": "null"}, "birth_date": {"type": "string"}, "birth_place": {"type": "string"}, "death_date": {"type": "string"}, "college": {"type": "string"}, "high_school": {"type": "string"}, "draft_team": {"type": "null"}, "draft_round": {"type": "null"}, "draft_position": {"type": "null"}, "draft_year": {"type": "null"}, "current_salary": {"type": "null"}, "hof_induction_year": {"type": "null"}}, "required": ["player_id", "name", "position", "height", "weight", "current_team", "birth_date", "birth_place", "death_date", "college", "high_school", "draft_team", "draft_round", "draft_position", "draft_year", "current_salary", "hof_induction_year"], "$schema": "http://json-schema.org/draft-07/schema#"}
|
{"player_id" : 2857, "name" : "Orlando Brown", "position" : "T", "height" : "6-7", "weight" : "360", "current_team" : null, "birth_date" : "1970-12-12", "birth_place" : "Washington, DC", "death_date" : "2011-09-23", "college" : "Central State (OH)", "high_school" : "Howard D. Woodson, DC", "draft_team" : null, "draft_round" : null, "draft_position" : null, "draft_year" : null, "current_salary" : null, "hof_induction_year" : null}
|
json_instruct
|
{"type": "object", "properties": {"player_id": {"type": "integer"}, "name": {"type": "string"}, "position": {"type": "string"}, "height": {"type": "string"}, "weight": {"type": "string"}, "current_team": {"type": "null"}, "birth_date": {"type": "string"}, "birth_place": {"type": "string"}, "death_date": {"type": "string"}, "college": {"type": "string"}, "high_school": {"type": "string"}, "draft_team": {"type": "null"}, "draft_round": {"type": "null"}, "draft_position": {"type": "null"}, "draft_year": {"type": "null"}, "current_salary": {"type": "null"}, "hof_induction_year": {"type": "null"}}, "required": ["player_id", "name", "position", "height", "weight", "current_team", "birth_date", "birth_place", "death_date", "college", "high_school", "draft_team", "draft_round", "draft_position", "draft_year", "current_salary", "hof_induction_year"], "$schema": "http://json-schema.org/draft-07/schema#"}
|
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"phone_number": {"type": "object", "properties": {"id": {"type": "integer"}, "number": {"type": "string"}}, "required": ["id", "number"]}}, "required": ["phone_number"], "$schema": "http://json-schema.org/draft-07/schema#"}
|
{"phone_number" : {"id" : 7, "number" : "+13525475960"}}
|
json_instruct
|
{"type": "object", "properties": {"phone_number": {"type": "object", "properties": {"id": {"type": "integer"}, "number": {"type": "string"}}, "required": ["id", "number"]}}, "required": ["phone_number"], "$schema": "http://json-schema.org/draft-07/schema#"}
|
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"interfaces": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"]}}}, "required": ["interfaces"], "$schema": "http://json-schema.org/draft-07/schema#"}
|
{"interfaces" : [{"name" : "interface test"}]}
|
json_instruct
|
{"type": "object", "properties": {"interfaces": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"]}}}, "required": ["interfaces"], "$schema": "http://json-schema.org/draft-07/schema#"}
|
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"name": {"type": "string"}, "position": {"type": "string"}, "linkedin": {"type": "string"}, "photo": {"type": "string"}}, "required": ["name", "position", "linkedin", "photo"], "$schema": "http://json-schema.org/draft-07/schema#"}
|
{"name" : "Connor Lindsey", "position" : "Co-President", "linkedin" : "https://www.linkedin.com/in/connor-lindsey-b7608914a/", "photo" : "/assets/connor_lindsey.jpeg"}
|
json_instruct
|
{"type": "object", "properties": {"name": {"type": "string"}, "position": {"type": "string"}, "linkedin": {"type": "string"}, "photo": {"type": "string"}}, "required": ["name", "position", "linkedin", "photo"], "$schema": "http://json-schema.org/draft-07/schema#"}
|
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "type": {"type": "string"}, "require": {"type": "object", "properties": {"php": {"type": "string"}, "yiisoft/yii2": {"type": "string"}, "rmrevin/yii2-fontawesome": {"type": "string"}, "bower-asset/bootstrap-social": {"type": "string"}}, "required": ["php", "yiisoft/yii2", "rmrevin/yii2-fontawesome", "bower-asset/bootstrap-social"]}, "license": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}}, "support": {"type": "object", "properties": {"issues": {"type": "string"}, "source": {"type": "string"}}, "required": ["issues", "source"]}, "minimum-stability": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "autoload": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"denostr\\BootstrapSocial\\": {"type": "string"}}, "required": ["denostr\\BootstrapSocial\\"]}}, "required": ["psr-4"]}}, "required": ["name", "description", "type", "require", "license", "authors", "support", "minimum-stability", "keywords", "autoload"], "$schema": "http://json-schema.org/draft-07/schema#"}
|
{"name" : "denostr/yii2-bootstrap-social", "description" : "Asset Bundle for Yii2 with bootstrap-social https://lipis.github.io/bootstrap-social/", "type" : "yii2-extension", "require" : {"php" : ">=5.4", "yiisoft/yii2" : "2.0.*", "rmrevin/yii2-fontawesome" : "~2.17", "bower-asset/bootstrap-social" : "~5.0.0"}, "license" : "MIT", "authors" : [{"name" : "Denis Ostrovsky", "email" : "[email protected]"}], "support" : {"issues" : "https://github.com/denostr/yii2-bootstrap-social/issues", "source" : "https://github.com/denostr/yii2-bootstrap-social"}, "minimum-stability" : "stable", "keywords" : ["yii", "yii2", "bootstrap", "social", "asset", "bundle"], "autoload" : {"psr-4" : {"denostr\\BootstrapSocial\\" : ""}}}
|
json_instruct
|
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "type": {"type": "string"}, "require": {"type": "object", "properties": {"php": {"type": "string"}, "yiisoft/yii2": {"type": "string"}, "rmrevin/yii2-fontawesome": {"type": "string"}, "bower-asset/bootstrap-social": {"type": "string"}}, "required": ["php", "yiisoft/yii2", "rmrevin/yii2-fontawesome", "bower-asset/bootstrap-social"]}, "license": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}}, "support": {"type": "object", "properties": {"issues": {"type": "string"}, "source": {"type": "string"}}, "required": ["issues", "source"]}, "minimum-stability": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "autoload": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"denostr\\BootstrapSocial\\": {"type": "string"}}, "required": ["denostr\\BootstrapSocial\\"]}}, "required": ["psr-4"]}}, "required": ["name", "description", "type", "require", "license", "authors", "support", "minimum-stability", "keywords", "autoload"], "$schema": "http://json-schema.org/draft-07/schema#"}
|
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"authors": {"type": "object", "properties": {"name": {"type": "string"}, "url": {"type": "string"}}, "required": ["name", "url"]}, "description": {"type": "string"}, "examples": {"type": "array", "items": {"type": "string"}}, "frameworks": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "name": {"type": "string"}, "platforms": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}}, "required": ["authors", "description", "examples", "frameworks", "keywords", "name", "platforms", "repository"], "$schema": "http://json-schema.org/draft-07/schema#"}
|
{"authors" : {"name" : "Anil Kandangath", "url" : "https://os.mbed.com/users/kandangath/"}, "description" : "Debounce InterruptIn", "examples" : ["https://os.mbed.com/teams/AIES/code/led_sigfox/", "https://os.mbed.com/teams/AIES/code/Allumag_lampe_sigfox/", "https://os.mbed.com/teams/Case-study-Embedded-System-Design/code/Case_study_02_Turnstile/", "https://os.mbed.com/users/PKnevermind/code/B18_MP3_PLAYER/", "https://os.mbed.com/teams/FRA221_2015/code/B18_MP3_PLAYER/", "https://os.mbed.com/users/casiotone401/code/OSCtoCVConverter/", "https://os.mbed.com/users/pun2712/code/B18_MP3_PLAYER/"], "frameworks" : "mbed", "keywords" : ["debounce", "interrupt"], "name" : "DebouncedInterrupt", "platforms" : "*", "repository" : {"type" : "hg", "url" : "https://os.mbed.com/users/kandangath/code/DebouncedInterrupt/"}}
|
json_instruct
|
{"type": "object", "properties": {"authors": {"type": "object", "properties": {"name": {"type": "string"}, "url": {"type": "string"}}, "required": ["name", "url"]}, "description": {"type": "string"}, "examples": {"type": "array", "items": {"type": "string"}}, "frameworks": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "name": {"type": "string"}, "platforms": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}}, "required": ["authors", "description", "examples", "frameworks", "keywords", "name", "platforms", "repository"], "$schema": "http://json-schema.org/draft-07/schema#"}
|
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"$comments": {"type": "string"}, "$schema": {"type": "string"}, "additionalProperties": {"type": "boolean"}, "description": {"type": "string"}, "properties": {"type": "object", "properties": {"end": {"type": "object", "properties": {"$ref": {"type": "string"}, "examples": {"type": "array", "items": {"type": "string"}}}, "required": ["$ref", "examples"]}, "start": {"type": "object", "properties": {"$ref": {"type": "string"}, "examples": {"type": "array", "items": {"type": "string"}}}, "required": ["$ref", "examples"]}}, "required": ["end", "start"]}, "required": {"type": "array", "items": {"type": "string"}}, "title": {"type": "string"}, "type": {"type": "string"}}, "required": ["$comments", "$schema", "additionalProperties", "description", "properties", "required", "title", "type"], "$schema": "http://json-schema.org/draft-07/schema#"}
|
{"$comments" : "From https://github.com/phenopackets/phenopacket-schema/blob/v2/docs/time-interval.rst", "$schema" : "https://json-schema.org/draft/2020-12/schema", "additionalProperties" : false, "description" : "Time interval with start and end defined as ISO8601 time stamps.", "properties" : {"end" : {"$ref" : "./commonDefinitions.json#/definitions/Timestamp", "examples" : ["2022-03-10T15:25:07Z"]}, "start" : {"$ref" : "./commonDefinitions.json#/definitions/Timestamp", "examples" : ["1999-08-05T17:21:00+01:00", "2002-09-21T02:37:00-08:00"]}}, "required" : ["start", "end"], "title" : "TimeInterval", "type" : "object"}
|
json_instruct
|
{"type": "object", "properties": {"$comments": {"type": "string"}, "$schema": {"type": "string"}, "additionalProperties": {"type": "boolean"}, "description": {"type": "string"}, "properties": {"type": "object", "properties": {"end": {"type": "object", "properties": {"$ref": {"type": "string"}, "examples": {"type": "array", "items": {"type": "string"}}}, "required": ["$ref", "examples"]}, "start": {"type": "object", "properties": {"$ref": {"type": "string"}, "examples": {"type": "array", "items": {"type": "string"}}}, "required": ["$ref", "examples"]}}, "required": ["end", "start"]}, "required": {"type": "array", "items": {"type": "string"}}, "title": {"type": "string"}, "type": {"type": "string"}}, "required": ["$comments", "$schema", "additionalProperties", "description", "properties", "required", "title", "type"], "$schema": "http://json-schema.org/draft-07/schema#"}
|
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"errorMessage": {"type": "string"}}, "required": ["errorMessage"], "$schema": "http://json-schema.org/draft-07/schema#"}
|
{"errorMessage" : "Invalid Serverless Application Specification document. Number of errors found: 1. Event with id [StateMachineCWEvent] is invalid. You can either define 'Arn' or 'Type' property of DeadLetterConfig"}
|
json_instruct
|
{"type": "object", "properties": {"errorMessage": {"type": "string"}}, "required": ["errorMessage"], "$schema": "http://json-schema.org/draft-07/schema#"}
|
The schema below describes a JSON structure. Generate a valid example:
{"type": "array", "items": {"type": "object", "properties": {"year": {"type": "integer"}, "sex": {"type": "string"}, "n": {"type": "integer"}, "prop": {"type": "number"}}, "required": ["year", "sex", "n", "prop"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
|
[{"year" : 1921, "sex" : "M", "n" : 5, "prop" : 4.39e-06}, {"year" : 1925, "sex" : "M", "n" : 6, "prop" : 5.21e-06}, {"year" : 1927, "sex" : "M", "n" : 5, "prop" : 4.3e-06}, {"year" : 1938, "sex" : "M", "n" : 8, "prop" : 7.04e-06}, {"year" : 1948, "sex" : "M", "n" : 5, "prop" : 2.8e-06}, {"year" : 1953, "sex" : "F", "n" : 5, "prop" : 2.59e-06}, {"year" : 1974, "sex" : "F", "n" : 5, "prop" : 3.19e-06}, {"year" : 1985, "sex" : "F", "n" : 5, "prop" : 2.71e-06}, {"year" : 2007, "sex" : "F", "n" : 5, "prop" : 2.36e-06}]
|
json_instruct
|
{"type": "array", "items": {"type": "object", "properties": {"year": {"type": "integer"}, "sex": {"type": "string"}, "n": {"type": "integer"}, "prop": {"type": "number"}}, "required": ["year", "sex", "n", "prop"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
|
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"\u5de5\u5ee0\u540d\u7a31": {"type": "string"}, "\u5de5\u5ee0\u767b\u8a18\u7de8\u865f": {"type": "string"}, "\u5de5\u5ee0\u8a2d\u7acb\u8a31\u53ef\u6848\u865f": {"type": "string"}, "\u5de5\u5ee0\u5730\u5740": {"type": "string"}, "\u5de5\u5ee0\u5e02\u93ae\u9109\u6751\u91cc": {"type": "string"}, "\u5de5\u5ee0\u8ca0\u8cac\u4eba\u59d3\u540d": {"type": "string"}, "\u71df\u5229\u4e8b\u696d\u7d71\u4e00\u7de8\u865f": {"type": "string"}, "\u5de5\u5ee0\u7d44\u7e54\u578b\u614b": {"type": "string"}, "\u5de5\u5ee0\u8a2d\u7acb\u6838\u51c6\u65e5\u671f": {"type": "string"}, "\u5de5\u5ee0\u767b\u8a18\u6838\u51c6\u65e5\u671f": {"type": "string"}, "\u5de5\u5ee0\u767b\u8a18\u72c0\u614b": {"type": "string"}, "\u7522\u696d\u985e\u5225": {"type": "array", "items": {"type": "string"}}, "\u4e3b\u8981\u7522\u54c1": {"type": "array", "items": {"type": "string"}}}, "required": ["\u5de5\u5ee0\u540d\u7a31", "\u5de5\u5ee0\u767b\u8a18\u7de8\u865f", "\u5de5\u5ee0\u8a2d\u7acb\u8a31\u53ef\u6848\u865f", "\u5de5\u5ee0\u5730\u5740", "\u5de5\u5ee0\u5e02\u93ae\u9109\u6751\u91cc", "\u5de5\u5ee0\u8ca0\u8cac\u4eba\u59d3\u540d", "\u71df\u5229\u4e8b\u696d\u7d71\u4e00\u7de8\u865f", "\u5de5\u5ee0\u7d44\u7e54\u578b\u614b", "\u5de5\u5ee0\u8a2d\u7acb\u6838\u51c6\u65e5\u671f", "\u5de5\u5ee0\u767b\u8a18\u6838\u51c6\u65e5\u671f", "\u5de5\u5ee0\u767b\u8a18\u72c0\u614b", "\u7522\u696d\u985e\u5225", "\u4e3b\u8981\u7522\u54c1"], "$schema": "http://json-schema.org/draft-07/schema#"}
|
{"\u5de5\u5ee0\u540d\u7a31" : "\u745e\u5f18\u7cbe\u5bc6\u5de5\u696d\u80a1\u4efd\u6709\u9650\u516c\u53f8", "\u5de5\u5ee0\u767b\u8a18\u7de8\u865f" : "04000450", "\u5de5\u5ee0\u8a2d\u7acb\u8a31\u53ef\u6848\u865f" : "", "\u5de5\u5ee0\u5730\u5740" : "\u65b0\u7af9\u7e23\u7af9\u5317\u5e02\u6cf0\u548c\u91cc\u74b0\u5317\u8def\u4e8c\u6bb5243\u5df716\u865f1\u6a13", "\u5de5\u5ee0\u5e02\u93ae\u9109\u6751\u91cc" : "\u65b0\u7af9\u7e23\u7af9\u5317\u5e02\u6cf0\u548c\u91cc", "\u5de5\u5ee0\u8ca0\u8cac\u4eba\u59d3\u540d" : "\u90b1\u54b8\u667a", "\u71df\u5229\u4e8b\u696d\u7d71\u4e00\u7de8\u865f" : "28512137", "\u5de5\u5ee0\u7d44\u7e54\u578b\u614b" : "\u80a1\u4efd\u6709\u9650\u516c\u53f8", "\u5de5\u5ee0\u8a2d\u7acb\u6838\u51c6\u65e5\u671f" : "", "\u5de5\u5ee0\u767b\u8a18\u6838\u51c6\u65e5\u671f" : "1040915", "\u5de5\u5ee0\u767b\u8a18\u72c0\u614b" : "\u751f\u7522\u4e2d", "\u7522\u696d\u985e\u5225" : ["22\u5851\u81a0\u88fd\u54c1\u88fd\u9020\u696d", "29\u6a5f\u68b0\u8a2d\u5099\u88fd\u9020\u696d"], "\u4e3b\u8981\u7522\u54c1" : ["220\u5851\u81a0\u88fd\u54c1", "292\u5176\u4ed6\u5c08\u7528\u6a5f\u68b0\u8a2d\u5099"]}
|
json_instruct
|
{"type": "object", "properties": {"\u5de5\u5ee0\u540d\u7a31": {"type": "string"}, "\u5de5\u5ee0\u767b\u8a18\u7de8\u865f": {"type": "string"}, "\u5de5\u5ee0\u8a2d\u7acb\u8a31\u53ef\u6848\u865f": {"type": "string"}, "\u5de5\u5ee0\u5730\u5740": {"type": "string"}, "\u5de5\u5ee0\u5e02\u93ae\u9109\u6751\u91cc": {"type": "string"}, "\u5de5\u5ee0\u8ca0\u8cac\u4eba\u59d3\u540d": {"type": "string"}, "\u71df\u5229\u4e8b\u696d\u7d71\u4e00\u7de8\u865f": {"type": "string"}, "\u5de5\u5ee0\u7d44\u7e54\u578b\u614b": {"type": "string"}, "\u5de5\u5ee0\u8a2d\u7acb\u6838\u51c6\u65e5\u671f": {"type": "string"}, "\u5de5\u5ee0\u767b\u8a18\u6838\u51c6\u65e5\u671f": {"type": "string"}, "\u5de5\u5ee0\u767b\u8a18\u72c0\u614b": {"type": "string"}, "\u7522\u696d\u985e\u5225": {"type": "array", "items": {"type": "string"}}, "\u4e3b\u8981\u7522\u54c1": {"type": "array", "items": {"type": "string"}}}, "required": ["\u5de5\u5ee0\u540d\u7a31", "\u5de5\u5ee0\u767b\u8a18\u7de8\u865f", "\u5de5\u5ee0\u8a2d\u7acb\u8a31\u53ef\u6848\u865f", "\u5de5\u5ee0\u5730\u5740", "\u5de5\u5ee0\u5e02\u93ae\u9109\u6751\u91cc", "\u5de5\u5ee0\u8ca0\u8cac\u4eba\u59d3\u540d", "\u71df\u5229\u4e8b\u696d\u7d71\u4e00\u7de8\u865f", "\u5de5\u5ee0\u7d44\u7e54\u578b\u614b", "\u5de5\u5ee0\u8a2d\u7acb\u6838\u51c6\u65e5\u671f", "\u5de5\u5ee0\u767b\u8a18\u6838\u51c6\u65e5\u671f", "\u5de5\u5ee0\u767b\u8a18\u72c0\u614b", "\u7522\u696d\u985e\u5225", "\u4e3b\u8981\u7522\u54c1"], "$schema": "http://json-schema.org/draft-07/schema#"}
|
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"latest_version": {"type": "array", "items": {"type": "string"}}, "meta": {"type": "object", "properties": {"description": {"type": "string"}, "homepage": {"type": "string"}, "license": {"type": "string"}}, "required": ["description", "homepage", "license"]}, "versions": {"type": "object", "properties": {"0.0.1": {"type": "object", "properties": {"sha256": {"type": "string"}, "url": {"type": "string"}}, "required": ["sha256", "url"]}, "0.0.2": {"type": "object", "properties": {"sha256": {"type": "string"}, "url": {"type": "string"}}, "required": ["sha256", "url"]}, "0.0.3": {"type": "object", "properties": {"sha256": {"type": "string"}, "url": {"type": "string"}}, "required": ["sha256", "url"]}, "0.0.4": {"type": "object", "properties": {"sha256": {"type": "string"}, "url": {"type": "string"}}, "required": ["sha256", "url"]}, "0.0.5": {"type": "object", "properties": {"sha256": {"type": "string"}, "url": {"type": "string"}}, "required": ["sha256", "url"]}, "0.0.6": {"type": "object", "properties": {"sha256": {"type": "string"}, "url": {"type": "string"}}, "required": ["sha256", "url"]}, "0.0.7": {"type": "object", "properties": {"sha256": {"type": "string"}, "url": {"type": "string"}}, "required": ["sha256", "url"]}}, "required": ["0.0.1", "0.0.2", "0.0.3", "0.0.4", "0.0.5", "0.0.6", "0.0.7"]}}, "required": ["latest_version", "meta", "versions"], "$schema": "http://json-schema.org/draft-07/schema#"}
|
{"latest_version" : ["0.0.7"], "meta" : {"description" : "A generic request and response interface for pyexcel web extensions", "homepage" : "UNKNOWN", "license" : "New BSD"}, "versions" : {"0.0.1" : {"sha256" : "96e4a55332ece20abb8d418a812e2a74127a953f9d852276bcb827507b6b7111", "url" : "https://files.pythonhosted.org/packages/95/a5/6b5ff1c5efbc2e34335541e62aced0479b4d5c37a260ecb8e1145b096351/pyexcel-webio-0.0.1.tar.gz"}, "0.0.2" : {"sha256" : "4af8e9c5e03d3018c5f16291f48bd88c37bdfbc5981d5974c718e1ce2e48cad8", "url" : "https://files.pythonhosted.org/packages/d0/32/43bbbbd20cea1b57184beaab88cd75a3b3c3a9725d158747d95460d80de1/pyexcel-webio-0.0.2.zip"}, "0.0.3" : {"sha256" : "5937393745e585eead7f47825ff7666ef4e6dc0807cf8d7927b6d47628b6065b", "url" : "https://files.pythonhosted.org/packages/ce/fd/214ba57e0d4a9c3d0574d53045a376e26d2f6a88269f030769f0919e8df7/pyexcel-webio-0.0.3.zip"}, "0.0.4" : {"sha256" : "01ec7acfd92c673ec70e8bc663cb40236f04160923f41832a25bc554f99dd649", "url" : "https://files.pythonhosted.org/packages/fa/3e/8e852355d02ae9298e98f46025aa0227058ecafdca32eddd13fdfbabac5e/pyexcel-webio-0.0.4.zip"}, "0.0.5" : {"sha256" : "9996e1f5209a518472bfc655ece0954e654e6bc910c20fb3f48f695ad003dd72", "url" : "https://files.pythonhosted.org/packages/17/be/3954f129fc38cdcd9aafe0dc577e2a97c6f168ed2b1a400d30b01f6297f1/pyexcel-webio-0.0.5.tar.gz"}, "0.0.6" : {"sha256" : "0bd915fecb10075c97a969bf34a56a13611c29ab11c2764b5ae9f99472735e3c", "url" : "https://files.pythonhosted.org/packages/54/d5/f7817f54983b71f43191ae14511a3ec898fbccabb2de6bb76f014d8db9b9/pyexcel-webio-0.0.6.zip"}, "0.0.7" : {"sha256" : "fdf021291ec7dfabcdbcd8129230d1b4990a1b5925153f1791a651328cad581a", "url" : "https://files.pythonhosted.org/packages/64/97/dcba7e03e202555bae9350118b51c786645ba0d7265976a390b79c28c462/pyexcel-webio-0.0.7.zip"}}}
|
json_instruct
|
{"type": "object", "properties": {"latest_version": {"type": "array", "items": {"type": "string"}}, "meta": {"type": "object", "properties": {"description": {"type": "string"}, "homepage": {"type": "string"}, "license": {"type": "string"}}, "required": ["description", "homepage", "license"]}, "versions": {"type": "object", "properties": {"0.0.1": {"type": "object", "properties": {"sha256": {"type": "string"}, "url": {"type": "string"}}, "required": ["sha256", "url"]}, "0.0.2": {"type": "object", "properties": {"sha256": {"type": "string"}, "url": {"type": "string"}}, "required": ["sha256", "url"]}, "0.0.3": {"type": "object", "properties": {"sha256": {"type": "string"}, "url": {"type": "string"}}, "required": ["sha256", "url"]}, "0.0.4": {"type": "object", "properties": {"sha256": {"type": "string"}, "url": {"type": "string"}}, "required": ["sha256", "url"]}, "0.0.5": {"type": "object", "properties": {"sha256": {"type": "string"}, "url": {"type": "string"}}, "required": ["sha256", "url"]}, "0.0.6": {"type": "object", "properties": {"sha256": {"type": "string"}, "url": {"type": "string"}}, "required": ["sha256", "url"]}, "0.0.7": {"type": "object", "properties": {"sha256": {"type": "string"}, "url": {"type": "string"}}, "required": ["sha256", "url"]}}, "required": ["0.0.1", "0.0.2", "0.0.3", "0.0.4", "0.0.5", "0.0.6", "0.0.7"]}}, "required": ["latest_version", "meta", "versions"], "$schema": "http://json-schema.org/draft-07/schema#"}
|
Based on the schema below, produce a valid JSON object:
{"type": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
|
[[2010, 14], [2011, 15], [2012, 30], [2013, 28], [2014, 32]]
|
json_instruct
|
{"type": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
|
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"architecture": {"type": "string"}, "category": {"type": "string"}, "changelog": {"type": "string"}, "contains": {"type": "array", "items": {"type": "string"}}, "dependency_list": {"type": "array", "items": {}}, "details": {"type": "string"}, "display_name": {"type": "string"}, "example_list": {"type": "array", "items": {"type": "object", "properties": {"project_path": {"type": "string"}}, "required": ["project_path"]}}, "help": {"type": "string"}, "icon": {"type": "string"}, "license": {"type": "object", "properties": {"file_path": {"type": "string"}, "id": {"type": "string"}}, "required": ["file_path", "id"]}, "name": {"type": "string"}, "product_link": {"type": "string"}, "short_description": {"type": "string"}, "supported_compiler": {"type": "string"}, "type": {"type": "string"}, "_type": {"type": "string"}, "related_projects": {"type": "array", "items": {"type": "integer"}}, "version": {"type": "string"}}, "required": ["architecture", "category", "changelog", "contains", "dependency_list", "details", "display_name", "example_list", "help", "icon", "license", "name", "product_link", "short_description", "supported_compiler", "type", "_type", "related_projects", "version"], "$schema": "http://json-schema.org/draft-07/schema#"}
|
{"architecture" : "ARM|PIC|PIC32", "category" : "MP3", "changelog" : "Resources/CHANGELOG.md", "contains" : ["libraries", "hex_files", "examples", "source_files"], "dependency_list" : [], "details" : "Resources/DETAILS.md", "display_name" : "MP3 2 click", "example_list" : [{"project_path" : "Examples/example"}], "help" : "Help/doc", "icon" : "Resources/click_icon.png", "license" : {"file_path" : "", "id" : "46"}, "name" : "mikroe.click.mp32", "product_link" : "https://www.mikroe.com/mp3-2-click", "short_description" : "MP3 2 Click is an audio decoder expansion board with on-board microSD card slot, that enables you to create your personal audio playback system. It holds the KT403A,a SOC chip solution with intergraded MCU, hardware audio MP3/WAV decoder and DSP, from Shenzhen Qianle Microelectronics Technology Co.", "supported_compiler" : "mikroC AI", "type" : "Library", "_type" : "mikroSDK Library", "related_projects" : [3749], "version" : "2.0.0.4"}
|
json_instruct
|
{"type": "object", "properties": {"architecture": {"type": "string"}, "category": {"type": "string"}, "changelog": {"type": "string"}, "contains": {"type": "array", "items": {"type": "string"}}, "dependency_list": {"type": "array", "items": {}}, "details": {"type": "string"}, "display_name": {"type": "string"}, "example_list": {"type": "array", "items": {"type": "object", "properties": {"project_path": {"type": "string"}}, "required": ["project_path"]}}, "help": {"type": "string"}, "icon": {"type": "string"}, "license": {"type": "object", "properties": {"file_path": {"type": "string"}, "id": {"type": "string"}}, "required": ["file_path", "id"]}, "name": {"type": "string"}, "product_link": {"type": "string"}, "short_description": {"type": "string"}, "supported_compiler": {"type": "string"}, "type": {"type": "string"}, "_type": {"type": "string"}, "related_projects": {"type": "array", "items": {"type": "integer"}}, "version": {"type": "string"}}, "required": ["architecture", "category", "changelog", "contains", "dependency_list", "details", "display_name", "example_list", "help", "icon", "license", "name", "product_link", "short_description", "supported_compiler", "type", "_type", "related_projects", "version"], "$schema": "http://json-schema.org/draft-07/schema#"}
|
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"tools": {"type": "object", "properties": {"dotnet": {"type": "string"}}, "required": ["dotnet"]}, "sdk": {"type": "object", "properties": {"version": {"type": "string"}, "rollForward": {"type": "string"}}, "required": ["version", "rollForward"]}, "msbuild-sdks": {"type": "object", "properties": {"Microsoft.DotNet.Arcade.Sdk": {"type": "string"}, "Microsoft.DotNet.Helix.Sdk": {"type": "string"}}, "required": ["Microsoft.DotNet.Arcade.Sdk", "Microsoft.DotNet.Helix.Sdk"]}}, "required": ["tools", "sdk", "msbuild-sdks"], "$schema": "http://json-schema.org/draft-07/schema#"}
|
{"tools" : {"dotnet" : "3.1.101"}, "sdk" : {"version" : "3.1.101", "rollForward" : "major"}, "msbuild-sdks" : {"Microsoft.DotNet.Arcade.Sdk" : "5.0.0-beta.20101.2", "Microsoft.DotNet.Helix.Sdk" : "5.0.0-beta.20101.2"}}
|
json_instruct
|
{"type": "object", "properties": {"tools": {"type": "object", "properties": {"dotnet": {"type": "string"}}, "required": ["dotnet"]}, "sdk": {"type": "object", "properties": {"version": {"type": "string"}, "rollForward": {"type": "string"}}, "required": ["version", "rollForward"]}, "msbuild-sdks": {"type": "object", "properties": {"Microsoft.DotNet.Arcade.Sdk": {"type": "string"}, "Microsoft.DotNet.Helix.Sdk": {"type": "string"}}, "required": ["Microsoft.DotNet.Arcade.Sdk", "Microsoft.DotNet.Helix.Sdk"]}}, "required": ["tools", "sdk", "msbuild-sdks"], "$schema": "http://json-schema.org/draft-07/schema#"}
|
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"stationId": {"type": "integer"}, "stationGroupId": {"type": "integer"}, "name": {"type": "string"}, "lineId": {"type": "integer"}, "zipCode": {"type": "string"}, "pref": {"type": "string"}, "city": {"type": "string"}, "town": {"type": "string"}, "longitude": {"type": "number"}, "latitude": {"type": "number"}, "status": {"type": "integer"}}, "required": ["stationId", "stationGroupId", "name", "lineId", "zipCode", "pref", "city", "town", "longitude", "latitude", "status"], "$schema": "http://json-schema.org/draft-07/schema#"}
|
{"stationId" : 2600417, "stationGroupId" : 2600309, "name" : "\u9ad8\u6d25", "lineId" : 26004, "zipCode" : "213-0002", "pref" : "\u795e\u5948\u5ddd\u770c", "city" : "\u5ddd\u5d0e\u5e02\u9ad8\u6d25\u533a", "town" : "\u4e8c\u5b50", "longitude" : 139.616934, "latitude" : 35.603248, "status" : 0}
|
json_instruct
|
{"type": "object", "properties": {"stationId": {"type": "integer"}, "stationGroupId": {"type": "integer"}, "name": {"type": "string"}, "lineId": {"type": "integer"}, "zipCode": {"type": "string"}, "pref": {"type": "string"}, "city": {"type": "string"}, "town": {"type": "string"}, "longitude": {"type": "number"}, "latitude": {"type": "number"}, "status": {"type": "integer"}}, "required": ["stationId", "stationGroupId", "name", "lineId", "zipCode", "pref", "city", "town", "longitude", "latitude", "status"], "$schema": "http://json-schema.org/draft-07/schema#"}
|
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"type": {"type": "string"}, "ingredient": {"type": "object", "properties": {"item": {"type": "string"}}, "required": ["item"]}, "result": {"type": "string"}, "count": {"type": "integer"}}, "required": ["type", "ingredient", "result", "count"], "$schema": "http://json-schema.org/draft-07/schema#"}
|
{"type" : "minecraft:stonecutting", "ingredient" : {"item" : "worldsalad:magic_chalk_block"}, "result" : "worldsalad:magic_chalk_slab", "count" : 2}
|
json_instruct
|
{"type": "object", "properties": {"type": {"type": "string"}, "ingredient": {"type": "object", "properties": {"item": {"type": "string"}}, "required": ["item"]}, "result": {"type": "string"}, "count": {"type": "integer"}}, "required": ["type", "ingredient", "result", "count"], "$schema": "http://json-schema.org/draft-07/schema#"}
|
Construct a JSON document that adheres to this schema specification:
{"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "frequency": {"type": "integer"}, "males": {"type": "string"}, "females": {"type": "string"}}, "required": ["name", "frequency", "males", "females"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
|
[{"name" : "SHAUN", "frequency" : 81829, "males" : "96.21038995954979 %", "females" : "3.7896100404502073 %"}]
|
json_instruct
|
{"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "frequency": {"type": "integer"}, "males": {"type": "string"}, "females": {"type": "string"}}, "required": ["name", "frequency", "males", "females"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
|
Generate a valid JSON object that conforms to the following 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.20447588, "rotation" : 3.04253, "xCenter" : 0.6666905, "yCenter" : 0.7592823, "height" : 0.25559485}
|
json_instruct
|
{"type": "object", "properties": {"width": {"type": "number"}, "rotation": {"type": "number"}, "xCenter": {"type": "number"}, "yCenter": {"type": "number"}, "height": {"type": "number"}}, "required": ["width", "rotation", "xCenter", "yCenter", "height"], "$schema": "http://json-schema.org/draft-07/schema#"}
|
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"bosh-centos-6_6-os-image.tgz": {"type": "string"}, "bosh-ubuntu-trusty-os-image.tgz": {"type": "string"}}, "required": ["bosh-centos-6_6-os-image.tgz", "bosh-ubuntu-trusty-os-image.tgz"], "$schema": "http://json-schema.org/draft-07/schema#"}
|
{"bosh-centos-6_6-os-image.tgz" : "3Yu.JSS0rB0oV6Gt3QnFfxaxvRju71bQ", "bosh-ubuntu-trusty-os-image.tgz" : "jU0u9AnG550hgtZhH4TS30eU0lOJZxWn"}
|
json_instruct
|
{"type": "object", "properties": {"bosh-centos-6_6-os-image.tgz": {"type": "string"}, "bosh-ubuntu-trusty-os-image.tgz": {"type": "string"}}, "required": ["bosh-centos-6_6-os-image.tgz", "bosh-ubuntu-trusty-os-image.tgz"], "$schema": "http://json-schema.org/draft-07/schema#"}
|
Create a JSON structure that matches this 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" : 12644, "cartId" : "85069f6e-87d7-4e97-9391-c89018db2fe1", "preferredProducts" : [3083, 2042, 2212, 3503, 1948, 4553, 1852, 1627, 1349], "productReviews" : [{"productId" : 1257, "reviewText" : "The box this comes in is 3 kilometer by 5 foot and weights 16 megaton!!!", "reviewDate" : "2018-07-12T10:38:19.0054899+03:00"}, {"productId" : 1750, "reviewText" : "My dog loves to play with it.", "reviewDate" : "2018-08-24T03:41:04.6797983+03:00"}, {"productId" : 3804, "reviewText" : "heard about this on folktronica radio, decided to give it a try.", "reviewDate" : "2016-10-14T01:42:49.0613552+03:00"}, {"productId" : 960, "reviewText" : "i use it occasionally when i'm in my outhouse.", "reviewDate" : "2016-11-29T20:25:50.825741+02:00"}, {"productId" : 1898, "reviewText" : "i use it every Tuesday when i'm in my pub.", "reviewDate" : "2016-05-22T01:03:23.8475634+03:00"}]}
|
json_instruct
|
{"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {"type": "integer"}}, "productReviews": {"type": "array", "items": {"type": "object", "properties": {"productId": {"type": "integer"}, "reviewText": {"type": "string"}, "reviewDate": {"type": "string"}}, "required": ["productId", "reviewText", "reviewDate"]}}}, "required": ["userId", "cartId", "preferredProducts", "productReviews"], "$schema": "http://json-schema.org/draft-07/schema#"}
|
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"$schema": {"type": "string"}, "name": {"type": "string"}, "summary": {"type": "string"}, "description": {"type": "string"}, "version": {"type": "string"}, "configuration": {"type": "object", "properties": {"title": {"type": "string"}, "description": {"type": "string"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"set_header": {"type": "object", "properties": {"type": {"type": "string"}, "items": {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"name": {"type": "object", "properties": {"type": {"type": "string"}, "description": {"type": "string"}}, "required": ["type", "description"]}, "value": {"type": "object", "properties": {"type": {"type": "string"}, "description": {"type": "string"}}, "required": ["type", "description"]}}, "required": ["name", "value"]}, "required": {"type": "array", "items": {"type": "string"}}}, "required": ["type", "properties", "required"]}}, "required": ["type", "items"]}, "set_body": {"type": "object", "properties": {"type": {"type": "string"}, "description": {"type": "string"}, "default": {"type": "string"}}, "required": ["type", "description", "default"]}}, "required": ["set_header", "set_body"]}}, "required": ["title", "description", "type", "properties"]}}, "required": ["$schema", "name", "summary", "description", "version", "configuration"], "$schema": "http://json-schema.org/draft-07/schema#"}
|
{"$schema" : "http://apicast.io/policy-v1.1/schema#manifest#", "name" : "APIcast Verbose Policy", "summary" : "This is just an example.", "description" : "This policy is just an example how to write your custom policy.", "version" : "0.1", "configuration" : {"title" : "APIcast Verbose Policy", "description" : "Version 0.1 verbose policy for logging payload", "type" : "object", "properties" : {"set_header" : {"type" : "array", "items" : {"type" : "object", "properties" : {"name" : {"type" : "string", "description" : "HTTP header name"}, "value" : {"type" : "string", "description" : "HTTP header value"}}, "required" : ["name", "value"]}}, "set_body" : {"type" : "string", "description" : "HTTP body content", "default" : "Default string"}}}}
|
json_instruct
|
{"type": "object", "properties": {"$schema": {"type": "string"}, "name": {"type": "string"}, "summary": {"type": "string"}, "description": {"type": "string"}, "version": {"type": "string"}, "configuration": {"type": "object", "properties": {"title": {"type": "string"}, "description": {"type": "string"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"set_header": {"type": "object", "properties": {"type": {"type": "string"}, "items": {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"name": {"type": "object", "properties": {"type": {"type": "string"}, "description": {"type": "string"}}, "required": ["type", "description"]}, "value": {"type": "object", "properties": {"type": {"type": "string"}, "description": {"type": "string"}}, "required": ["type", "description"]}}, "required": ["name", "value"]}, "required": {"type": "array", "items": {"type": "string"}}}, "required": ["type", "properties", "required"]}}, "required": ["type", "items"]}, "set_body": {"type": "object", "properties": {"type": {"type": "string"}, "description": {"type": "string"}, "default": {"type": "string"}}, "required": ["type", "description", "default"]}}, "required": ["set_header", "set_body"]}}, "required": ["title", "description", "type", "properties"]}}, "required": ["$schema", "name", "summary", "description", "version", "configuration"], "$schema": "http://json-schema.org/draft-07/schema#"}
|
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"parent": {"type": "string"}}, "required": ["parent"], "$schema": "http://json-schema.org/draft-07/schema#"}
|
{"parent" : "conquest:block/metal_plating_slab_quarter_4"}
|
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": {"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.035062, 40.931635], [-73.011082, 40.937921], [-73.009354, 40.935646], [-73.008941, 40.933189], [-72.997077, 40.92503], [-72.993087, 40.918953], [-72.987403, 40.914005], [-72.986373, 40.907654], [-73.027999, 40.920158], [-73.028664, 40.925461], [-73.033982, 40.928329], [-73.035062, 40.931635]]]}, "type" : "Feature", "properties" : {"cartodb_id" : 45378}}]}
|
json_instruct
|
{"type": "object", "properties": {"type": {"type": "string"}, "features": {"type": "array", "items": {"type": "object", "properties": {"geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["type", "coordinates"]}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"cartodb_id": {"type": "integer"}}, "required": ["cartodb_id"]}}, "required": ["geometry", "type", "properties"]}}}, "required": ["type", "features"], "$schema": "http://json-schema.org/draft-07/schema#"}
|
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"components/common/social-links": {"type": "string"}}, "required": ["components/common/social-links"], "$schema": "http://json-schema.org/draft-07/schema#"}
|
{"components/common/social-links" : "{{#if social_media}}\r\n <ul class=\"socialLinks socialLinks--alt\">\r\n {{#each social_media}}\r\n <li class=\"socialLinks-item\">\r\n {{#if display_name '===' 'google+'}}\r\n <a class=\"icon icon--google\" href=\"{{url}}\" target=\"_blank\">\r\n <svg><use xlink:href=\"#icon-google\" /></svg>\r\n </a>\r\n {{else}}\r\n <a class=\"icon icon--{{display_name}}\" href=\"{{url}}\" target=\"_blank\">\r\n <svg><use xlink:href=\"#icon-{{display_name}}\" /></svg>\r\n </a>\r\n {{/if}}\r\n </li>\r\n {{/each}}\r\n </ul>\r\n{{/if}}\r\n"}
|
json_instruct
|
{"type": "object", "properties": {"components/common/social-links": {"type": "string"}}, "required": ["components/common/social-links"], "$schema": "http://json-schema.org/draft-07/schema#"}
|
Construct a JSON document that adheres to this schema specification:
{"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "gempId": {"type": "string"}, "side": {"type": "string"}, "rarity": {"type": "string"}, "set": {"type": "string"}, "printings": {"type": "array", "items": {"type": "object", "properties": {"set": {"type": "string"}}, "required": ["set"]}}, "front": {"type": "object", "properties": {"title": {"type": "string"}, "imageUrl": {"type": "string"}, "type": {"type": "string"}, "destiny": {"type": "string"}, "gametext": {"type": "string"}, "lore": {"type": "string"}}, "required": ["title", "imageUrl", "type", "destiny", "gametext", "lore"]}, "pulledBy": {"type": "array", "items": {"type": "string"}}, "counterpart": {"type": "string"}, "legacy": {"type": "boolean"}}, "required": ["id", "gempId", "side", "rarity", "set", "printings", "front", "pulledBy", "counterpart", "legacy"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
|
[{"id" : 2029, "gempId" : "1_228", "side" : "Dark", "rarity" : "U2", "set" : "1", "printings" : [{"set" : "1"}], "front" : {"title" : "Reactor Terminal", "imageUrl" : "https://res.starwarsccg.org/cards/Premiere-Dark/large/reactorterminal.gif", "type" : "Effect", "destiny" : "3", "gametext" : "Use 1 Force to deploy on your side of table. During your control phase, you may return any cards from your hand to the top of your Used Pile.", "lore" : "The Death Star has many terminals coupled to the main reactor for power distribution throughout the immense space station."}, "pulledBy" : ["Twi'lek Advisor", "We Must Accelerate Our Plans"], "counterpart" : "Traffic Control", "legacy" : false}]
|
json_instruct
|
{"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "gempId": {"type": "string"}, "side": {"type": "string"}, "rarity": {"type": "string"}, "set": {"type": "string"}, "printings": {"type": "array", "items": {"type": "object", "properties": {"set": {"type": "string"}}, "required": ["set"]}}, "front": {"type": "object", "properties": {"title": {"type": "string"}, "imageUrl": {"type": "string"}, "type": {"type": "string"}, "destiny": {"type": "string"}, "gametext": {"type": "string"}, "lore": {"type": "string"}}, "required": ["title", "imageUrl", "type", "destiny", "gametext", "lore"]}, "pulledBy": {"type": "array", "items": {"type": "string"}}, "counterpart": {"type": "string"}, "legacy": {"type": "boolean"}}, "required": ["id", "gempId", "side", "rarity", "set", "printings", "front", "pulledBy", "counterpart", "legacy"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
|
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"outputDir": {"type": "string"}, "ffmpegPath": {"type": "string"}, "openOnLocalNetwork": {"type": "boolean"}, "port": {"type": "integer"}, "openInBrowserOnLoad": {"type": "boolean"}}, "required": ["outputDir", "ffmpegPath", "openOnLocalNetwork", "port", "openInBrowserOnLoad"], "$schema": "http://json-schema.org/draft-07/schema#"}
|
{"outputDir" : "~/Vid\u00e9os", "ffmpegPath" : "", "openOnLocalNetwork" : false, "port" : 8080, "openInBrowserOnLoad" : true}
|
json_instruct
|
{"type": "object", "properties": {"outputDir": {"type": "string"}, "ffmpegPath": {"type": "string"}, "openOnLocalNetwork": {"type": "boolean"}, "port": {"type": "integer"}, "openInBrowserOnLoad": {"type": "boolean"}}, "required": ["outputDir", "ffmpegPath", "openOnLocalNetwork", "port", "openInBrowserOnLoad"], "$schema": "http://json-schema.org/draft-07/schema#"}
|
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"type": {"type": "string"}, "crs": {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"]}}, "required": ["type", "properties"]}, "features": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"Name": {"type": "string"}, "Description": {"type": "string"}}, "required": ["Name", "Description"]}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}, "required": ["type", "coordinates"]}}, "required": ["type", "properties", "geometry"]}}}, "required": ["type", "crs", "features"], "$schema": "http://json-schema.org/draft-07/schema#"}
|
{"type" : "FeatureCollection", "crs" : {"type" : "name", "properties" : {"name" : "urn:ogc:def:crs:OGC:1.3:CRS84"}}, "features" : [{"type" : "Feature", "properties" : {"Name" : "IPOR\u00c3 DO OESTE", "Description" : "IPOR\u00c3 DO OESTE / SC"}, "geometry" : {"type" : "LineString", "coordinates" : [[-53.410988787502504, -26.951359610357713], [-53.37556505688184, -27.015565122332475], [-53.41429769278426, -27.01892358655425], [-53.44869099998959, -27.03758499924828], [-53.489910999692825, -27.08222799942257], [-53.51955099957893, -27.080301999637527], [-53.54201999972315, -27.08584899913194], [-53.54545900003279, -27.02686399947396], [-53.586410999967654, -27.009580999263676], [-53.55107199987287, -26.98013699942294], [-53.582362000306034, -26.95312099913474], [-53.535171999588044, -26.94474799882107], [-53.49924700034876, -26.936530999406045], [-53.410988787502504, -26.951359610357713]]}}]}
|
json_instruct
|
{"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"]}, "features": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"Name": {"type": "string"}, "Description": {"type": "string"}}, "required": ["Name", "Description"]}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}, "required": ["type", "coordinates"]}}, "required": ["type", "properties", "geometry"]}}}, "required": ["type", "crs", "features"], "$schema": "http://json-schema.org/draft-07/schema#"}
|
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"h": {"type": "array", "items": {"type": "object", "properties": {"d": {"type": "array", "items": {"type": "object", "properties": {"e": {"type": "array", "items": {"type": "string"}}, "f": {"type": "string"}}, "required": ["e", "f"]}}}, "required": ["d"]}}, "stem": {"type": "string"}, "t": {"type": "string"}}, "required": ["h", "stem", "t"], "$schema": "http://json-schema.org/draft-07/schema#"}
|
{"h" : [{"d" : [{"e" : ["\ufff9`Madimata'~ `iso~ `koni~ `a~ `kakaenen~ `han~?\ufffa\ufffb\u9019\u4e9b\u7ce7\u98df\u4f60\u80fd\u6311\u8d77\u4f86\uff1f"], "f" : "\u6311\u8d77\u4f86\uff0c\u64d4\u8d77\u4f86\u3002"}]}], "stem" : "dimata'", "t" : "madimata'"}
|
json_instruct
|
{"type": "object", "properties": {"h": {"type": "array", "items": {"type": "object", "properties": {"d": {"type": "array", "items": {"type": "object", "properties": {"e": {"type": "array", "items": {"type": "string"}}, "f": {"type": "string"}}, "required": ["e", "f"]}}}, "required": ["d"]}}, "stem": {"type": "string"}, "t": {"type": "string"}}, "required": ["h", "stem", "t"], "$schema": "http://json-schema.org/draft-07/schema#"}
|
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"neighbor": {"type": "string"}}, "required": ["neighbor"], "$schema": "http://json-schema.org/draft-07/schema#"}
|
{"neighbor" : "1.1.1.1"}
|
json_instruct
|
{"type": "object", "properties": {"neighbor": {"type": "string"}}, "required": ["neighbor"], "$schema": "http://json-schema.org/draft-07/schema#"}
|
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"EthEurPrice6": {"type": "object", "properties": {"bytecode": {"type": "string"}}, "required": ["bytecode"]}}, "required": ["EthEurPrice6"], "$schema": "http://json-schema.org/draft-07/schema#"}
|
{"EthEurPrice6" : {"bytecode" : "0x0aab04089683bf89061253123968747470733a2f2f6170692e62696e616e63652e636f6d2f6170692f76332f7469636b65722f70726963653f73796d626f6c3d4554484555521a168418778218646570726963658218571a000f4240185b1252122f68747470733a2f2f6170692e636f696e626173652e636f6d2f76322f7072696365732f4554482d4555522f73706f741a1f851877821866646461746182186466616d6f756e748218571a000f4240185b1261123268747470733a2f2f6170692e6b72616b656e2e636f6d2f302f7075626c69632f5469636b65723f706169723d4554484555521a2b87187782186666726573756c7482186668584554485a45555282186161618216008218571a000f4240185b1247122e68747470733a2f2f7777772e6269747374616d702e6e65742f6170692f76322f7469636b65722f6574686575722f1a15841877821864646c6173748218571a000f4240185b124b122c68747470733a2f2f6170692e62697466696e65782e636f6d2f76312f7075627469636b65722f6574686575721a1b8418778218646a6c6173745f70726963658218571a000f4240185b1263124068747470733a2f2f6170692e626974747265782e636f6d2f6170692f76312e312f7075626c69632f6765747469636b65723f6d61726b65743d4555522d4554481a1f85187782186666726573756c74821864644c6173748218571a000f4240185b1a0d0a0908051205fa3fc000001003220d0a0908051205fa3fc00000100310c0843d181920c0843d28333080c8afa025"}}
|
json_instruct
|
{"type": "object", "properties": {"EthEurPrice6": {"type": "object", "properties": {"bytecode": {"type": "string"}}, "required": ["bytecode"]}}, "required": ["EthEurPrice6"], "$schema": "http://json-schema.org/draft-07/schema#"}
|
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"type": {"type": "string"}, "id": {"type": "string"}, "properties": {"type": "object", "properties": {"addr:city": {"type": "string"}, "addr:country": {"type": "string"}, "addr:housenumber": {"type": "string"}, "addr:postcode": {"type": "string"}, "addr:street": {"type": "string"}, "contact:fax": {"type": "string"}, "contact:phone": {"type": "string"}, "description": {"type": "string"}, "name": {"type": "string"}, "operator": {"type": "string"}, "shop": {"type": "string"}, "id": {"type": "string"}}, "required": ["addr:city", "addr:country", "addr:housenumber", "addr:postcode", "addr:street", "contact:fax", "contact:phone", "description", "name", "operator", "shop", "id"]}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "number"}}}, "required": ["type", "coordinates"]}}, "required": ["type", "id", "properties", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"}
|
{"type" : "Feature", "id" : "node/7862796820", "properties" : {"addr:city" : "G\u00f6llnitz", "addr:country" : "DE", "addr:housenumber" : "3", "addr:postcode" : "04626", "addr:street" : "Wiesengrund", "contact:fax" : "+49 34495 81351", "contact:phone" : "+49 34495 70160", "description" : "Fleisch- u. Wurstvermarktungen", "name" : "Hof Heitsch", "operator" : "Hans-J\u00fcrgen Heitsch", "shop" : "farm", "id" : "node/7862796820"}, "geometry" : {"type" : "Point", "coordinates" : [12.3203776, 50.9478971]}}
|
json_instruct
|
{"type": "object", "properties": {"type": {"type": "string"}, "id": {"type": "string"}, "properties": {"type": "object", "properties": {"addr:city": {"type": "string"}, "addr:country": {"type": "string"}, "addr:housenumber": {"type": "string"}, "addr:postcode": {"type": "string"}, "addr:street": {"type": "string"}, "contact:fax": {"type": "string"}, "contact:phone": {"type": "string"}, "description": {"type": "string"}, "name": {"type": "string"}, "operator": {"type": "string"}, "shop": {"type": "string"}, "id": {"type": "string"}}, "required": ["addr:city", "addr:country", "addr:housenumber", "addr:postcode", "addr:street", "contact:fax", "contact:phone", "description", "name", "operator", "shop", "id"]}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "number"}}}, "required": ["type", "coordinates"]}}, "required": ["type", "id", "properties", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"}
|
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"name": {"type": "string"}, "symbol": {"type": "string"}, "id": {"type": "string"}, "decimals": {"type": "integer"}, "coingecko_url": {"type": "string"}, "market_cap_usd": {"type": "integer"}, "market_cap_rank": {"type": "integer"}, "24_hr_volume_usd": {"type": "integer"}, "logoURI": {"type": "string"}}, "required": ["name", "symbol", "id", "decimals", "coingecko_url", "market_cap_usd", "market_cap_rank", "24_hr_volume_usd", "logoURI"], "$schema": "http://json-schema.org/draft-07/schema#"}
|
{"name" : "HYVE", "symbol" : "HYVE", "id" : "0xd794DD1CAda4cf79C9EebaAb8327a1B0507ef7d4", "decimals" : 18, "coingecko_url" : "https://www.coingecko.com/en/coins/hyve", "market_cap_usd" : 9984316, "market_cap_rank" : 1269, "24_hr_volume_usd" : 183219, "logoURI" : "https://raw.githubusercontent.com/poolsharks-protocol/token-metadata/master/blockchains/ethereum/assets/0xd794DD1CAda4cf79C9EebaAb8327a1B0507ef7d4/logo.png"}
|
json_instruct
|
{"type": "object", "properties": {"name": {"type": "string"}, "symbol": {"type": "string"}, "id": {"type": "string"}, "decimals": {"type": "integer"}, "coingecko_url": {"type": "string"}, "market_cap_usd": {"type": "integer"}, "market_cap_rank": {"type": "integer"}, "24_hr_volume_usd": {"type": "integer"}, "logoURI": {"type": "string"}}, "required": ["name", "symbol", "id", "decimals", "coingecko_url", "market_cap_usd", "market_cap_rank", "24_hr_volume_usd", "logoURI"], "$schema": "http://json-schema.org/draft-07/schema#"}
|
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"short_name": {"type": "string"}, "name": {"type": "string"}, "start_url": {"type": "string"}, "background_color": {"type": "string"}, "orientation": {"type": "string"}, "icons": {"type": "array", "items": {"type": "object", "properties": {"src": {"type": "string"}, "sizes": {"type": "string"}, "type": {"type": "string"}}, "required": ["src", "sizes", "type"]}}, "display": {"type": "string"}}, "required": ["short_name", "name", "start_url", "background_color", "orientation", "icons", "display"], "$schema": "http://json-schema.org/draft-07/schema#"}
|
{"short_name" : "NICTC", "name" : "NICTC Site", "start_url" : "/index.php", "background_color" : "#2196F3", "orientation" : "portrait", "icons" : [{"src" : "images/48.png", "sizes" : "48x48", "type" : "image/png"}, {"src" : "images/290.png", "sizes" : "290x290", "type" : "image/png"}, {"src" : "images/382.png", "sizes" : "382x382", "type" : "image/png"}], "display" : "standalone"}
|
json_instruct
|
{"type": "object", "properties": {"short_name": {"type": "string"}, "name": {"type": "string"}, "start_url": {"type": "string"}, "background_color": {"type": "string"}, "orientation": {"type": "string"}, "icons": {"type": "array", "items": {"type": "object", "properties": {"src": {"type": "string"}, "sizes": {"type": "string"}, "type": {"type": "string"}}, "required": ["src", "sizes", "type"]}}, "display": {"type": "string"}}, "required": ["short_name", "name", "start_url", "background_color", "orientation", "icons", "display"], "$schema": "http://json-schema.org/draft-07/schema#"}
|
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"feedstocks": {"type": "array", "items": {"type": "string"}}}, "required": ["feedstocks"], "$schema": "http://json-schema.org/draft-07/schema#"}
|
{"feedstocks" : ["spyder-terminal"]}
|
json_instruct
|
{"type": "object", "properties": {"feedstocks": {"type": "array", "items": {"type": "string"}}}, "required": ["feedstocks"], "$schema": "http://json-schema.org/draft-07/schema#"}
|
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"index": {"type": "integer"}, "hash": {"type": "integer"}, "blacklisted": {"type": "boolean"}, "mappingIndex": {"type": "integer"}, "redacted": {"type": "boolean"}, "scope": {"type": "integer"}, "aggregationType": {"type": "integer"}}, "required": ["index", "hash", "blacklisted", "mappingIndex", "redacted", "scope", "aggregationType"], "$schema": "http://json-schema.org/draft-07/schema#"}
|
{"index" : 120, "hash" : 2641316461, "blacklisted" : false, "mappingIndex" : 0, "redacted" : false, "scope" : 0, "aggregationType" : 0}
|
json_instruct
|
{"type": "object", "properties": {"index": {"type": "integer"}, "hash": {"type": "integer"}, "blacklisted": {"type": "boolean"}, "mappingIndex": {"type": "integer"}, "redacted": {"type": "boolean"}, "scope": {"type": "integer"}, "aggregationType": {"type": "integer"}}, "required": ["index", "hash", "blacklisted", "mappingIndex", "redacted", "scope", "aggregationType"], "$schema": "http://json-schema.org/draft-07/schema#"}
|
Construct a JSON document that adheres to this schema specification:
{"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "size": {"type": "integer"}, "link": {"type": "string"}, "created_at": {"type": "string"}, "downloads": {"type": "integer"}, "linkid": {"type": "string"}, "convert": {"type": "string"}, "achorname": {"type": "string"}, "subscribe": {"type": "string"}, "avatar-img": {"type": "string"}, "folderName": {"type": "string"}, "thumbUrl": {"type": "string"}}, "required": ["name", "size", "link", "created_at", "downloads", "linkid", "convert", "achorname", "subscribe", "avatar-img", "folderName", "thumbUrl"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
|
[{"name" : "\u4e03\u5929\u9ad8\u7aef\u5916\u56f411-25\u6027\u611f\u5c0f\u5154\u5154", "size" : 245251336, "link" : "https://streamtape.com/e/bPjW7WGX8GiQ0k", "created_at" : "2022\u5e7403\u670814\u65e5 08:19:48", "downloads" : 0, "linkid" : "bPjW7WGX8GiQ0k", "convert" : "converted", "achorname" : "\u4e38\u5b50\u5466", "subscribe" : "0\u4f4d\u8ba2\u9605\u8005", "avatar-img" : "https://huyaimg.msstatic.com/avatar/1022/07/ec5fef7c7662720286fbbb12395390_180_135.jpg?1628178596?458648", "folderName" : "\u4e03\u5929\u9ad8\u7aef\u5916\u56f411-25\u6027\u611f\u5c0f\u5154\u5154", "thumbUrl" : "https://thumb.tapecontent.net/thumb/bPjW7WGX8GiQ0k/kgXQ8dALzaTYQy.jpg"}]
|
json_instruct
|
{"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "size": {"type": "integer"}, "link": {"type": "string"}, "created_at": {"type": "string"}, "downloads": {"type": "integer"}, "linkid": {"type": "string"}, "convert": {"type": "string"}, "achorname": {"type": "string"}, "subscribe": {"type": "string"}, "avatar-img": {"type": "string"}, "folderName": {"type": "string"}, "thumbUrl": {"type": "string"}}, "required": ["name", "size", "link", "created_at", "downloads", "linkid", "convert", "achorname", "subscribe", "avatar-img", "folderName", "thumbUrl"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
|
Based on the schema below, produce a valid JSON object:
{"type": "array", "items": {"type": "object", "properties": {"img": {"type": "string"}, "profileName": {"type": "string"}, "status": {"type": "string"}}, "required": ["img", "profileName", "status"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
|
[{"img" : "assets/img/avatar/amarkdalen.jpg", "profileName" : "James michael", "status" : "online"}, {"img" : "assets/img/avatar/bobbyjkane.jpg", "profileName" : "michael james", "status" : "online"}, {"img" : "assets/img/avatar/coreyweb.jpg", "profileName" : "albert bruce", "status" : "offline"}, {"img" : "assets/img/avatar/jaman_01.jpg", "profileName" : "christopher paul", "status" : "online"}, {"img" : "assets/img/avatar/robertoortiz.jpg", "profileName" : "donald jason", "status" : "offline"}, {"img" : "assets/img/avatar/Kevinthompson.jpg", "profileName" : "KENNETH RONALD", "status" : "offline"}, {"id" : "A2356464", "img" : "assets/img/avatar/mko.jpg", "profileName" : "EDWARD BRIAN ", "status" : "online"}]
|
json_instruct
|
{"type": "array", "items": {"type": "object", "properties": {"img": {"type": "string"}, "profileName": {"type": "string"}, "status": {"type": "string"}}, "required": ["img", "profileName", "status"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
|
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"version": {"type": "integer"}, "name": {"type": "string"}, "github": {"type": "object", "properties": {"silent": {"type": "boolean"}}, "required": ["silent"]}}, "required": ["version", "name", "github"], "$schema": "http://json-schema.org/draft-07/schema#"}
|
{"version" : 2, "name" : "notebook", "github" : {"silent" : true}}
|
json_instruct
|
{"type": "object", "properties": {"version": {"type": "integer"}, "name": {"type": "string"}, "github": {"type": "object", "properties": {"silent": {"type": "boolean"}}, "required": ["silent"]}}, "required": ["version", "name", "github"], "$schema": "http://json-schema.org/draft-07/schema#"}
|
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"artist_id": {"type": "string"}, "artist_latitude": {"type": "null"}, "artist_location": {"type": "string"}, "artist_longitude": {"type": "null"}, "artist_name": {"type": "string"}, "duration": {"type": "number"}, "num_songs": {"type": "integer"}, "song_id": {"type": "string"}, "title": {"type": "string"}, "year": {"type": "integer"}}, "required": ["artist_id", "artist_latitude", "artist_location", "artist_longitude", "artist_name", "duration", "num_songs", "song_id", "title", "year"], "$schema": "http://json-schema.org/draft-07/schema#"}
|
{"artist_id" : "ARR1C0N1187FB372DF", "artist_latitude" : null, "artist_location" : "Dublin, Ireland", "artist_longitude" : null, "artist_name" : "My Bloody Valentine", "duration" : 216.5024, "num_songs" : 1, "song_id" : "SOSBMRU12A8AE474FA", "title" : "Blown A Wish", "year" : 1991}
|
json_instruct
|
{"type": "object", "properties": {"artist_id": {"type": "string"}, "artist_latitude": {"type": "null"}, "artist_location": {"type": "string"}, "artist_longitude": {"type": "null"}, "artist_name": {"type": "string"}, "duration": {"type": "number"}, "num_songs": {"type": "integer"}, "song_id": {"type": "string"}, "title": {"type": "string"}, "year": {"type": "integer"}}, "required": ["artist_id", "artist_latitude", "artist_location", "artist_longitude", "artist_name", "duration", "num_songs", "song_id", "title", "year"], "$schema": "http://json-schema.org/draft-07/schema#"}
|
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}, "test": {"type": "string"}}, "required": ["start", "test"]}, "dependencies": {"type": "object", "properties": {"jquery": {"type": "string"}, "ripajs": {"type": "string"}, "kapuwrapper": {"type": "string"}, "request": {"type": "string"}, "winston": {"type": "string"}}, "required": ["jquery", "ripajs", "kapuwrapper", "request", "winston"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}}, "required": ["name", "version", "description", "main", "scripts", "dependencies", "repository", "keywords", "author", "license", "bugs", "homepage"], "$schema": "http://json-schema.org/draft-07/schema#"}
|
{"name" : "ripa-genesis-redistribution", "version" : "1.0.0", "description" : "Early forgers redistribution pool", "main" : "payments.js", "scripts" : {"start" : "node payments.js", "test" : "test"}, "dependencies" : {"jquery" : "^3.3.1", "ripajs" : "git://github.com/RipaEx/ripa-js.git#master", "kapuwrapper" : "^0.1.2", "request" : "^2.83.0", "winston" : "^2.4.0"}, "repository" : {"type" : "git", "url" : "git+https://github.com/RipaEx/ripa-genesis-redistribution.git"}, "keywords" : ["ripa", "genesis", "redistribution"], "author" : "Giovanni Silvestri <[email protected]>", "license" : "MIT", "bugs" : {"url" : "https://github.com/RipaEx/ripa-genesis-redistribution/issues"}, "homepage" : "https://github.com/RipaEx/ripa-genesis-redistribution#readme"}
|
json_instruct
|
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}, "test": {"type": "string"}}, "required": ["start", "test"]}, "dependencies": {"type": "object", "properties": {"jquery": {"type": "string"}, "ripajs": {"type": "string"}, "kapuwrapper": {"type": "string"}, "request": {"type": "string"}, "winston": {"type": "string"}}, "required": ["jquery", "ripajs", "kapuwrapper", "request", "winston"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}}, "required": ["name", "version", "description", "main", "scripts", "dependencies", "repository", "keywords", "author", "license", "bugs", "homepage"], "$schema": "http://json-schema.org/draft-07/schema#"}
|
Create an example JSON object that satisfies this schema:
{"type": "array", "items": {"type": "object", "properties": {"year": {"type": "integer"}, "sex": {"type": "string"}, "n": {"type": "integer"}, "prop": {"type": "number"}}, "required": ["year", "sex", "n", "prop"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
|
[{"year" : 1982, "sex" : "M", "n" : 5, "prop" : 2.65e-06}, {"year" : 1990, "sex" : "M", "n" : 8, "prop" : 3.72e-06}, {"year" : 1991, "sex" : "M", "n" : 12, "prop" : 5.66e-06}, {"year" : 1992, "sex" : "M", "n" : 21, "prop" : 0}, {"year" : 1993, "sex" : "F", "n" : 5, "prop" : 2.54e-06}, {"year" : 1993, "sex" : "M", "n" : 34, "prop" : 0}, {"year" : 1994, "sex" : "M", "n" : 17, "prop" : 8.34e-06}, {"year" : 1995, "sex" : "M", "n" : 8, "prop" : 3.98e-06}, {"year" : 1996, "sex" : "M", "n" : 6, "prop" : 2.99e-06}, {"year" : 1997, "sex" : "M", "n" : 11, "prop" : 5.51e-06}, {"year" : 1998, "sex" : "M", "n" : 7, "prop" : 3.45e-06}, {"year" : 1999, "sex" : "M", "n" : 6, "prop" : 2.94e-06}, {"year" : 2005, "sex" : "M", "n" : 9, "prop" : 4.23e-06}, {"year" : 2008, "sex" : "M", "n" : 7, "prop" : 3.21e-06}, {"year" : 2009, "sex" : "M", "n" : 6, "prop" : 2.83e-06}, {"year" : 2014, "sex" : "M", "n" : 10, "prop" : 4.89e-06}, {"year" : 2015, "sex" : "M", "n" : 5, "prop" : 2.45e-06}]
|
json_instruct
|
{"type": "array", "items": {"type": "object", "properties": {"year": {"type": "integer"}, "sex": {"type": "string"}, "n": {"type": "integer"}, "prop": {"type": "number"}}, "required": ["year", "sex", "n", "prop"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
|
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"code": {"type": "integer"}, "parent": {"type": "integer"}, "name": {"type": "string"}, "latitude": {"type": "null"}, "longitude": {"type": "null"}, "postal": {"type": "array", "items": {"type": "integer"}}, "children": {"type": "array", "items": {}}}, "required": ["code", "parent", "name", "latitude", "longitude", "postal", "children"], "$schema": "http://json-schema.org/draft-07/schema#"}
|
{"code" : 6101061007, "parent" : 6101061, "name" : "TRI KEMBANG", "latitude" : null, "longitude" : null, "postal" : [79468, 79453], "children" : []}
|
json_instruct
|
{"type": "object", "properties": {"code": {"type": "integer"}, "parent": {"type": "integer"}, "name": {"type": "string"}, "latitude": {"type": "null"}, "longitude": {"type": "null"}, "postal": {"type": "array", "items": {"type": "integer"}}, "children": {"type": "array", "items": {}}}, "required": ["code", "parent", "name", "latitude", "longitude", "postal", "children"], "$schema": "http://json-schema.org/draft-07/schema#"}
|
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"componentChunkName": {"type": "string"}, "path": {"type": "string"}, "result": {"type": "object", "properties": {"pageContext": {"type": "object", "properties": {"id": {"type": "string"}, "slug": {"type": "string"}, "params": {"type": "object", "properties": {"id": {"type": "string"}, "displayName": {"type": "string"}, "avatarUrl": {"type": "null"}, "slug": {"type": "string"}, "images": {"type": "null"}, "image": {"type": "null"}}, "required": ["id", "displayName", "avatarUrl", "slug", "images", "image"]}}, "required": ["id", "slug", "params"]}}, "required": ["pageContext"]}, "staticQueryHashes": {"type": "array", "items": {"type": "string"}}}, "required": ["componentChunkName", "path", "result", "staticQueryHashes"], "$schema": "http://json-schema.org/draft-07/schema#"}
|
{"componentChunkName" : "component---src-templates-category-index-js", "path" : "/category/cham-soc-da", "result" : {"pageContext" : {"id" : "7JFbNNNTkpnxSsmFxG4KkW", "slug" : "/category/cham-soc-da", "params" : {"id" : "7JFbNNNTkpnxSsmFxG4KkW", "displayName" : "Ch\u0103m S\u00f3c Da", "avatarUrl" : null, "slug" : "cham-soc-da", "images" : null, "image" : null}}}, "staticQueryHashes" : ["700411652", "850621625"]}
|
json_instruct
|
{"type": "object", "properties": {"componentChunkName": {"type": "string"}, "path": {"type": "string"}, "result": {"type": "object", "properties": {"pageContext": {"type": "object", "properties": {"id": {"type": "string"}, "slug": {"type": "string"}, "params": {"type": "object", "properties": {"id": {"type": "string"}, "displayName": {"type": "string"}, "avatarUrl": {"type": "null"}, "slug": {"type": "string"}, "images": {"type": "null"}, "image": {"type": "null"}}, "required": ["id", "displayName", "avatarUrl", "slug", "images", "image"]}}, "required": ["id", "slug", "params"]}}, "required": ["pageContext"]}, "staticQueryHashes": {"type": "array", "items": {"type": "string"}}}, "required": ["componentChunkName", "path", "result", "staticQueryHashes"], "$schema": "http://json-schema.org/draft-07/schema#"}
|
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"lovefield.es6.js": {"type": "string"}, "lovefield.externs.js": {"type": "string"}, "lovefield.js": {"type": "string"}, "lovefield.min.js": {"type": "string"}}, "required": ["lovefield.es6.js", "lovefield.externs.js", "lovefield.js", "lovefield.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
|
{"lovefield.es6.js" : "sha256-gwL1n2ovjy3ucAoqrJWyfZ+vudd6KhsxUcbvOmd9iV4=", "lovefield.externs.js" : "sha256-Fe9jvM9QBqnwBqAIVWA8R1CBE6xECOm7tUf4D1TLKFE=", "lovefield.js" : "sha256-m5e0r/jOmi/6JhHZFdaONZZY7Wp2LI1bIoUkQn7p7yA=", "lovefield.min.js" : "sha256-hSDDBaBOX2KNE/AWhl0EfkSyvGTlHwK1XXhDX8QcGNI="}
|
json_instruct
|
{"type": "object", "properties": {"lovefield.es6.js": {"type": "string"}, "lovefield.externs.js": {"type": "string"}, "lovefield.js": {"type": "string"}, "lovefield.min.js": {"type": "string"}}, "required": ["lovefield.es6.js", "lovefield.externs.js", "lovefield.js", "lovefield.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
|
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"homepage": {"type": "string"}, "description": {"type": "string"}, "license": {"type": "string"}, "version": {"type": "string"}, "url": {"type": "string"}, "hash": {"type": "string"}, "bin": {"type": "string"}, "checkver": {"type": "string"}, "autoupdate": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}}, "required": ["homepage", "description", "license", "version", "url", "hash", "bin", "checkver", "autoupdate"], "$schema": "http://json-schema.org/draft-07/schema#"}
|
{"homepage" : "https://github.com/Dr-Noob/cpufetch", "description" : "Simplistic yet fancy CPU architecture fetching tool", "license" : "MIT", "version" : "1.00", "url" : "https://github.com/Dr-Noob/cpufetch/releases/download/v1.00/cpufetch_x86_windows.exe#/cpufetch.exe", "hash" : "09d7b3f6d2a31021f15332236be448c014ed1237ed5442f594b390f2992f6b17", "bin" : "cpufetch.exe", "checkver" : "github", "autoupdate" : {"url" : "https://github.com/Dr-Noob/cpufetch/releases/download/v$version/cpufetch_x86_windows.exe#/cpufetch.exe"}}
|
json_instruct
|
{"type": "object", "properties": {"homepage": {"type": "string"}, "description": {"type": "string"}, "license": {"type": "string"}, "version": {"type": "string"}, "url": {"type": "string"}, "hash": {"type": "string"}, "bin": {"type": "string"}, "checkver": {"type": "string"}, "autoupdate": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}}, "required": ["homepage", "description", "license", "version", "url", "hash", "bin", "checkver", "autoupdate"], "$schema": "http://json-schema.org/draft-07/schema#"}
|
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"text": {"type": "string"}, "url": {"type": "string"}}, "required": ["text", "url"], "$schema": "http://json-schema.org/draft-07/schema#"}
|
{"text" : " Graph an absolute value inequality with multiple transformations\n\n[imath]y>-3|x+1|-2[/imath]\n\n\n", "url" : "https://www.youtube.com/watch?v=gVEgIPIsG28"}
|
json_instruct
|
{"type": "object", "properties": {"text": {"type": "string"}, "url": {"type": "string"}}, "required": ["text", "url"], "$schema": "http://json-schema.org/draft-07/schema#"}
|
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"Logging": {"type": "object", "properties": {"LogLevel": {"type": "object", "properties": {"Default": {"type": "string"}, "Microsoft.AspNetCore": {"type": "string"}}, "required": ["Default", "Microsoft.AspNetCore"]}}, "required": ["LogLevel"]}, "AllowedHosts": {"type": "string"}, "firebase": {"type": "object", "properties": {"projectId": {"type": "string"}, "json": {"type": "string"}}, "required": ["projectId", "json"]}}, "required": ["Logging", "AllowedHosts", "firebase"], "$schema": "http://json-schema.org/draft-07/schema#"}
|
{"Logging" : {"LogLevel" : {"Default" : "Information", "Microsoft.AspNetCore" : "Warning"}}, "AllowedHosts" : "*", "firebase" : {"projectId" : "muttop", "json" : "firebase.json"}}
|
json_instruct
|
{"type": "object", "properties": {"Logging": {"type": "object", "properties": {"LogLevel": {"type": "object", "properties": {"Default": {"type": "string"}, "Microsoft.AspNetCore": {"type": "string"}}, "required": ["Default", "Microsoft.AspNetCore"]}}, "required": ["LogLevel"]}, "AllowedHosts": {"type": "string"}, "firebase": {"type": "object", "properties": {"projectId": {"type": "string"}, "json": {"type": "string"}}, "required": ["projectId", "json"]}}, "required": ["Logging", "AllowedHosts", "firebase"], "$schema": "http://json-schema.org/draft-07/schema#"}
|
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"databaseChangeLog": {"type": "array", "items": {"type": "object", "properties": {}, "required": []}}}, "required": ["databaseChangeLog"], "$schema": "http://json-schema.org/draft-07/schema#"}
|
{"databaseChangeLog" : [{}, {"changeSet" : {"id" : "dropView-example", "author" : "liquibase-docs", "changes" : [{"dropView" : {"catalogName" : "cat", "schemaName" : "public", "viewName" : "v_person"}}]}}]}
|
json_instruct
|
{"type": "object", "properties": {"databaseChangeLog": {"type": "array", "items": {"type": "object", "properties": {}, "required": []}}}, "required": ["databaseChangeLog"], "$schema": "http://json-schema.org/draft-07/schema#"}
|
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"\uc758\uc548\uc811\uc218\uc815\ubcf4": {"type": "object", "properties": {"\uc758\uc548\ubc88\ud638": {"type": "array", "items": {"type": "string"}}, "\uc81c\uc548\uc77c\uc790": {"type": "array", "items": {"type": "string"}}, "\uc81c\uc548\uc790": {"type": "array", "items": {"type": "string"}}, "\ubb38\uc11c": {"type": "array", "items": {"type": "string"}}, "\uc81c\uc548\ud68c\uae30": {"type": "array", "items": {"type": "string"}}, "\uc81c\uc548\uc774\uc720 \ubc0f \uc8fc\uc694\ub0b4\uc6a9": {"type": "string"}}, "required": ["\uc758\uc548\ubc88\ud638", "\uc81c\uc548\uc77c\uc790", "\uc81c\uc548\uc790", "\ubb38\uc11c", "\uc81c\uc548\ud68c\uae30", "\uc81c\uc548\uc774\uc720 \ubc0f \uc8fc\uc694\ub0b4\uc6a9"]}, " \uc18c\uad00\uc704 \uc2ec\uc0ac\uc815\ubcf4": {"type": "object", "properties": {"\uc18c\uad00\uc704\uc6d0\ud68c": {"type": "array", "items": {"type": "string"}}, "\ud68c\ubd80\uc77c": {"type": "array", "items": {"type": "string"}}, "\uc0c1\uc815\uc77c": {"type": "array", "items": {"type": "string"}}, "\ucc98\ub9ac\uc77c": {"type": "array", "items": {"type": "string"}}, "\ucc98\ub9ac\uacb0\uacfc": {"type": "array", "items": {"type": "string"}}, "\ubb38\uc11c": {"type": "array", "items": {"type": "string"}}}, "required": ["\uc18c\uad00\uc704\uc6d0\ud68c", "\ud68c\ubd80\uc77c", "\uc0c1\uc815\uc77c", "\ucc98\ub9ac\uc77c", "\ucc98\ub9ac\uacb0\uacfc", "\ubb38\uc11c"]}}, "required": ["\uc758\uc548\uc811\uc218\uc815\ubcf4", " \uc18c\uad00\uc704 \uc2ec\uc0ac\uc815\ubcf4"], "$schema": "http://json-schema.org/draft-07/schema#"}
|
{"\uc758\uc548\uc811\uc218\uc815\ubcf4" : {"\uc758\uc548\ubc88\ud638" : ["2105059"], "\uc81c\uc548\uc77c\uc790" : ["2020-11-06"], "\uc81c\uc548\uc790" : ["\ubc15\uc644\uc218\uc758\uc6d0\ub4f110\uc778"], "\ubb38\uc11c" : ["\uc758\uc548\uc6d0\ubb38"], "\uc81c\uc548\ud68c\uae30" : ["\uc81c21\ub300(2020~2024)\uc81c382\ud68c"], "\uc81c\uc548\uc774\uc720 \ubc0f \uc8fc\uc694\ub0b4\uc6a9" : "\uc81c\uc548\uc774\uc720 \ubc0f \uc8fc\uc694\ub0b4\uc6a9\n\n \uc9c0\ub09c 2008\ub144\ubd80\ud130 2019\ub144\uae4c\uc9c0 \uac74\uc124\uacf5\uc0ac \ud604\uc7a5\uc5d0\uc11c \uc0ac\ub9dd\uc790\uac00 \ubc1c\uc0dd\ud55c \ud654\uc7ac\u00b7\ud3ed\ubc1c\uc0ac\uace0\ub294 109\uac74\uc774\uc5c8\uc73c\uba70, \uc774\ub85c \uc778\ud574 182\uba85\uc774 \uc0ac\ub9dd\ud558\uace0 1,730\uba85\uc758 \ubd80\uc0c1\uc790\uac00 \ubc1c\uc0dd\ud558\ub294 \ub4f1 \uacf5\uc0ac\ud604\uc7a5\uc5d0\uc11c \ud654\uc7ac\ub85c \uc778\ud55c \ub300\ud615 \uc778\uba85\ud53c\ud574\uac00 \uc9c0\uc18d\uc801\uc73c\ub85c \ubc1c\uc0dd\ud558\uace0 \uc788\ub294 \uc2e4\uc815\uc784.\n \uadf8\ub7ec\ub098 \ud604\ud589\ubc95\uc740 \uc77c\uc815 \uaddc\ubaa8 \uc774\uc0c1\uc758 \uac74\ucd95\ubb3c\uc774 \uc644\uacf5\ub41c \uc774\ud6c4 \uc18c\ubc29\uc548\uc804\uad00\ub9ac\uc790\ub97c \uc120\uc784\ud558\ub3c4\ub85d \ud558\uc5ec \uac74\ucd95\ubb3c\uc5d0 \ub300\ud55c \ud654\uc7ac\uc548\uc804\uad00\ub9ac \uc5c5\ubb34\ub97c \uccb4\uacc4\uc801\uc73c\ub85c \ub2f4\ub2f9\ud558\ub3c4\ub85d \uaddc\uc815\ud558\uace0 \uc788\ub294 \ubc18\uba74, \uac74\uc124\uacf5\uc0ac\ud604\uc7a5\uc758 \uacbd\uc6b0\uc5d0\ub294 \uc18c\ubc29\uc548\uc804\uad00\ub9ac\uc790\uc758 \uc120\uc784\uc758\ubb34\uac00 \uc5c6\uc5b4 \uccb4\uacc4\uc801\uc778 \ud654\uc7ac\uc548\uc804\uad00\ub9ac\uac00 \uc774\ub904\uc9c0\uc9c0 \uc54a\uace0 \uc788\ub2e4\ub294 \uc9c0\uc801\uc784.\n \uc774\uc5d0 \uc77c\uc815\uaddc\ubaa8 \uc774\uc0c1\uc758 \uac74\uc124 \uacf5\uc0ac\ud604\uc7a5\uc758 \uacbd\uc6b0\ub294 \uccb4\uacc4\uc801\uc778 \ud654\uc7ac\uc548\uc804\uad00\ub9ac\uac00 \uc774\ub904\uc9c8 \uc218 \uc788\ub3c4\ub85d \uc18c\ubc29\uc548\uc804\uad00\ub9ac\uc790\ub97c \uc120\uc784\ud1a0\ub85d \ud558\uace0 \uc774\ub97c \uc704\ubc18\ud55c \uacbd\uc6b0 300\ub9cc\uc6d0 \uc774\ud558\uc758 \ubc8c\uae08\uc5d0 \ucc98\ud558\ub3c4\ub85d \ud558\uc5ec \uac74\uc124 \uacf5\uc0ac\ud604\uc7a5\uc5d0\uc11c\uc758 \ub300\ud615\uc778\uba85\ud53c\ud574\ub97c \ubc29\uc9c0\ud558\ub824\ub294 \uac83\uc784(\uc548 \uc81c20\uc870\uc7583, \uc81c41\uc870\uc81c1\ud56d\uc81c4\ud638, \uc81c50\uc870\uc81c5\ud638 \ubc0f \uc81c53\uc870\uc81c2\ud56d\uc81c3\ud638)."}, " \uc18c\uad00\uc704 \uc2ec\uc0ac\uc815\ubcf4" : {"\uc18c\uad00\uc704\uc6d0\ud68c" : ["\ud589\uc815\uc548\uc804\uc704\uc6d0\ud68c"], "\ud68c\ubd80\uc77c" : ["2020-11-09"], "\uc0c1\uc815\uc77c" : [""], "\ucc98\ub9ac\uc77c" : [""], "\ucc98\ub9ac\uacb0\uacfc" : [""], "\ubb38\uc11c" : [""]}}
|
json_instruct
|
{"type": "object", "properties": {"\uc758\uc548\uc811\uc218\uc815\ubcf4": {"type": "object", "properties": {"\uc758\uc548\ubc88\ud638": {"type": "array", "items": {"type": "string"}}, "\uc81c\uc548\uc77c\uc790": {"type": "array", "items": {"type": "string"}}, "\uc81c\uc548\uc790": {"type": "array", "items": {"type": "string"}}, "\ubb38\uc11c": {"type": "array", "items": {"type": "string"}}, "\uc81c\uc548\ud68c\uae30": {"type": "array", "items": {"type": "string"}}, "\uc81c\uc548\uc774\uc720 \ubc0f \uc8fc\uc694\ub0b4\uc6a9": {"type": "string"}}, "required": ["\uc758\uc548\ubc88\ud638", "\uc81c\uc548\uc77c\uc790", "\uc81c\uc548\uc790", "\ubb38\uc11c", "\uc81c\uc548\ud68c\uae30", "\uc81c\uc548\uc774\uc720 \ubc0f \uc8fc\uc694\ub0b4\uc6a9"]}, " \uc18c\uad00\uc704 \uc2ec\uc0ac\uc815\ubcf4": {"type": "object", "properties": {"\uc18c\uad00\uc704\uc6d0\ud68c": {"type": "array", "items": {"type": "string"}}, "\ud68c\ubd80\uc77c": {"type": "array", "items": {"type": "string"}}, "\uc0c1\uc815\uc77c": {"type": "array", "items": {"type": "string"}}, "\ucc98\ub9ac\uc77c": {"type": "array", "items": {"type": "string"}}, "\ucc98\ub9ac\uacb0\uacfc": {"type": "array", "items": {"type": "string"}}, "\ubb38\uc11c": {"type": "array", "items": {"type": "string"}}}, "required": ["\uc18c\uad00\uc704\uc6d0\ud68c", "\ud68c\ubd80\uc77c", "\uc0c1\uc815\uc77c", "\ucc98\ub9ac\uc77c", "\ucc98\ub9ac\uacb0\uacfc", "\ubb38\uc11c"]}}, "required": ["\uc758\uc548\uc811\uc218\uc815\ubcf4", " \uc18c\uad00\uc704 \uc2ec\uc0ac\uc815\ubcf4"], "$schema": "http://json-schema.org/draft-07/schema#"}
|
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "dependencies": {"type": "object", "properties": {"body-parser": {"type": "string"}, "express": {"type": "string"}}, "required": ["body-parser", "express"]}, "devDependencies": {"type": "object", "properties": {"request": {"type": "string"}, "tap": {"type": "string"}}, "required": ["request", "tap"]}}, "required": ["scripts", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
|
{"scripts" : {"test" : "./run_tests.sh"}, "dependencies" : {"body-parser" : "^1.17.2", "express" : "^4.15.3"}, "devDependencies" : {"request" : "^2.81.0", "tap" : "^10.3.2"}}
|
json_instruct
|
{"type": "object", "properties": {"scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "dependencies": {"type": "object", "properties": {"body-parser": {"type": "string"}, "express": {"type": "string"}}, "required": ["body-parser", "express"]}, "devDependencies": {"type": "object", "properties": {"request": {"type": "string"}, "tap": {"type": "string"}}, "required": ["request", "tap"]}}, "required": ["scripts", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
|
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "unpkg": {"type": "string"}, "files": {"type": "array", "items": {"type": "string"}}, "scripts": {"type": "object", "properties": {"build": {"type": "string"}, "start": {"type": "string"}, "start-prod": {"type": "string"}, "test": {"type": "string"}}, "required": ["build", "start", "start-prod", "test"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "engines": {"type": "object", "properties": {"node": {"type": "string"}}, "required": ["node"]}, "dependencies": {"type": "object", "properties": {"express": {"type": "string"}, "@huluvu424242/honey-webcomponents": {"type": "string"}, "@huluvu424242/liona-feeds": {"type": "string"}, "@huluvu424242/honey-news": {"type": "string"}}, "required": ["express", "@huluvu424242/honey-webcomponents", "@huluvu424242/liona-feeds", "@huluvu424242/honey-news"]}, "devDependencies": {"type": "object", "properties": {"got": {"type": "string"}, "tape": {"type": "string"}}, "required": ["got", "tape"]}, "optionalDependencies": {"type": "object", "properties": {"@huluvu424242/honey-style-it": {"type": "string"}, "@huluvu424242/honey-papercss-style": {"type": "string"}}, "required": ["@huluvu424242/honey-style-it", "@huluvu424242/honey-papercss-style"]}}, "required": ["name", "version", "description", "main", "unpkg", "files", "scripts", "repository", "keywords", "author", "license", "bugs", "homepage", "engines", "dependencies", "devDependencies", "optionalDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
|
{"name" : "@huluvu424242/heroku-container", "version" : "0.0.20", "description" : "A sample Node.js app using Express 4", "main" : "app/index.js", "unpkg" : "app/index.js", "files" : ["app/"], "scripts" : {"build" : "echo ", "start" : "node app/index.js", "start-prod" : "set NODE_ENV=production && node app/index.js", "test" : "node app/app.spec.js"}, "repository" : {"type" : "git", "url" : "https://github.com/Huluvu424242/heroku-container"}, "keywords" : ["node", "heroku", "express"], "author" : "Huluvu424242 (Thomas Schubert)", "license" : "MIT", "bugs" : {"url" : "https://github.com/Huluvu424242/heroku-container/issues"}, "homepage" : "https://github.com/Huluvu424242/heroku-container#README.md", "engines" : {"node" : "14.x"}, "dependencies" : {"express" : "4.17.1", "@huluvu424242/honey-webcomponents" : "0.0.1", "@huluvu424242/liona-feeds" : "2.3.1", "@huluvu424242/honey-news" : "0.0.6"}, "devDependencies" : {"got" : "11.8.2", "tape" : "5.3.0"}, "optionalDependencies" : {"@huluvu424242/honey-style-it" : "0.0.4", "@huluvu424242/honey-papercss-style" : "0.0.2"}}
|
json_instruct
|
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "unpkg": {"type": "string"}, "files": {"type": "array", "items": {"type": "string"}}, "scripts": {"type": "object", "properties": {"build": {"type": "string"}, "start": {"type": "string"}, "start-prod": {"type": "string"}, "test": {"type": "string"}}, "required": ["build", "start", "start-prod", "test"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "engines": {"type": "object", "properties": {"node": {"type": "string"}}, "required": ["node"]}, "dependencies": {"type": "object", "properties": {"express": {"type": "string"}, "@huluvu424242/honey-webcomponents": {"type": "string"}, "@huluvu424242/liona-feeds": {"type": "string"}, "@huluvu424242/honey-news": {"type": "string"}}, "required": ["express", "@huluvu424242/honey-webcomponents", "@huluvu424242/liona-feeds", "@huluvu424242/honey-news"]}, "devDependencies": {"type": "object", "properties": {"got": {"type": "string"}, "tape": {"type": "string"}}, "required": ["got", "tape"]}, "optionalDependencies": {"type": "object", "properties": {"@huluvu424242/honey-style-it": {"type": "string"}, "@huluvu424242/honey-papercss-style": {"type": "string"}}, "required": ["@huluvu424242/honey-style-it", "@huluvu424242/honey-papercss-style"]}}, "required": ["name", "version", "description", "main", "unpkg", "files", "scripts", "repository", "keywords", "author", "license", "bugs", "homepage", "engines", "dependencies", "devDependencies", "optionalDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
|
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"plyr.css": {"type": "string"}, "plyr.js": {"type": "string"}, "plyr.min.js": {"type": "string"}, "plyr.polyfilled.js": {"type": "string"}, "plyr.polyfilled.min.js": {"type": "string"}}, "required": ["plyr.css", "plyr.js", "plyr.min.js", "plyr.polyfilled.js", "plyr.polyfilled.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
|
{"plyr.css" : "sha256-VwnbNXAzig/yn2FtT/N6kDGDT9MGRc0I6Co8a0yve1Q=", "plyr.js" : "sha256-Dgyq6nE+TMlsoK0qxd3aVeFzeF925FaC8X/fVdtHEIo=", "plyr.min.js" : "sha256-DGxbQRxkomKbiG4nbIdPpVz4BpgEHrquYg4S/8qiyek=", "plyr.polyfilled.js" : "sha256-wu6yLh9Y+BI2HRAxgIf4k/u1+FpiPygbxBJs4PWTXeg=", "plyr.polyfilled.min.js" : "sha256-piYmoopAHTh7BhBv8OGDANXm/Ct725tYRsQJxPDGPa4="}
|
json_instruct
|
{"type": "object", "properties": {"plyr.css": {"type": "string"}, "plyr.js": {"type": "string"}, "plyr.min.js": {"type": "string"}, "plyr.polyfilled.js": {"type": "string"}, "plyr.polyfilled.min.js": {"type": "string"}}, "required": ["plyr.css", "plyr.js", "plyr.min.js", "plyr.polyfilled.js", "plyr.polyfilled.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
|
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"cam/image_array": {"type": "string"}, "user/throttle": {"type": "number"}, "user/angle": {"type": "number"}, "user/mode": {"type": "string"}}, "required": ["cam/image_array", "user/throttle", "user/angle", "user/mode"], "$schema": "http://json-schema.org/draft-07/schema#"}
|
{"cam/image_array" : "7122_cam-image_array_.jpg", "user/throttle" : 0.0, "user/angle" : 0.3418056070804596, "user/mode" : "user"}
|
json_instruct
|
{"type": "object", "properties": {"cam/image_array": {"type": "string"}, "user/throttle": {"type": "number"}, "user/angle": {"type": "number"}, "user/mode": {"type": "string"}}, "required": ["cam/image_array", "user/throttle", "user/angle", "user/mode"], "$schema": "http://json-schema.org/draft-07/schema#"}
|
Create a JSON structure that matches this schema definition:
{"type": "array", "items": {"type": "object", "properties": {"package": {"type": "string"}, "downloads": {"type": "integer"}, "count": {"type": "integer"}}, "required": ["package", "downloads", "count"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
|
[{"package" : "ucsc-pslmappostchain", "downloads" : 9100, "count" : 5963}]
|
json_instruct
|
{"type": "array", "items": {"type": "object", "properties": {"package": {"type": "string"}, "downloads": {"type": "integer"}, "count": {"type": "integer"}}, "required": ["package", "downloads", "count"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
|
The schema below describes a JSON structure. Generate a valid example:
{"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "number"}}, "uncertainty": {"type": "object", "properties": {"pcvectors": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}, "stddevs": {"type": "array", "items": {"type": "number"}}}, "required": ["pcvectors", "stddevs"]}}, "required": ["id", "coordinates", "uncertainty"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
|
[{"id" : "finger.thumb.tip", "coordinates" : [-120.17522384632599, 73.54498178741733], "uncertainty" : {"pcvectors" : [[1.0, 0.0], [0.0, 1.0]], "stddevs" : [1.0, 1.0]}}, {"id" : "finger.thumb.valley", "coordinates" : [-66.90047807543793, 3.9561582038864582], "uncertainty" : {"pcvectors" : [[1.0, 0.0], [0.0, 1.0]], "stddevs" : [1.0, 1.0]}}, {"id" : "finger.index.tip", "coordinates" : [-38.019913634645235, 183.52308004613468], "uncertainty" : {"pcvectors" : [[1.0, 0.0], [0.0, 1.0]], "stddevs" : [1.0, 1.0]}}, {"id" : "finger.index.valley", "coordinates" : [-13.808485842272578, 73.90445829204984], "uncertainty" : {"pcvectors" : [[1.0, 0.0], [0.0, 1.0]], "stddevs" : [1.0, 1.0]}}, {"id" : "finger.long.tip", "coordinates" : [12.073720854705652, 192.2125056793522], "uncertainty" : {"pcvectors" : [[1.0, 0.0], [0.0, 1.0]], "stddevs" : [1.0, 1.0]}}, {"id" : "finger.long.valley", "coordinates" : [21.75355711867621, 65.99844397435925], "uncertainty" : {"pcvectors" : [[1.0, 0.0], [0.0, 1.0]], "stddevs" : [1.0, 1.0]}}, {"id" : "finger.ring.tip", "coordinates" : [47.828814786644244, 168.62074911294155], "uncertainty" : {"pcvectors" : [[1.0, 0.0], [0.0, 1.0]], "stddevs" : [1.0, 1.0]}}, {"id" : "figner.ring.valley", "coordinates" : [59.478074341758834, 39.47175792042349], "uncertainty" : {"pcvectors" : [[1.0, 0.0], [0.0, 1.0]], "stddevs" : [1.0, 1.0]}}, {"id" : "finger.small.tip", "coordinates" : [94.32594242517672, 120.31802549598197], "uncertainty" : {"pcvectors" : [[1.0, 0.0], [0.0, 1.0]], "stddevs" : [1.0, 1.0]}}, {"id" : "finger.ulnar.middle", "coordinates" : [-47.85431010351654, -87.29853913812843], "uncertainty" : {"pcvectors" : [[1.0, 0.0], [0.0, 1.0]], "stddevs" : [1.0, 1.0]}}, {"id" : "finger.radial.middle", "coordinates" : [58.911717431715346, -81.86500914850268], "uncertainty" : {"pcvectors" : [[1.0, 0.0], [0.0, 1.0]], "stddevs" : [1.0, 1.0]}}]
|
json_instruct
|
{"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "number"}}, "uncertainty": {"type": "object", "properties": {"pcvectors": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}, "stddevs": {"type": "array", "items": {"type": "number"}}}, "required": ["pcvectors", "stddevs"]}}, "required": ["id", "coordinates", "uncertainty"]}, "$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"}, "summary": {"type": "string"}, "description": {"type": "string"}, "homepage": {"type": "string"}, "license": {"type": "string"}, "authors": {"type": "object", "properties": {"zhengweishu": {"type": "string"}}, "required": ["zhengweishu"]}, "source": {"type": "object", "properties": {"git": {"type": "string"}, "tag": {"type": "string"}}, "required": ["git", "tag"]}, "platforms": {"type": "object", "properties": {"ios": {"type": "string"}}, "required": ["ios"]}, "source_files": {"type": "string"}}, "required": ["name", "version", "summary", "description", "homepage", "license", "authors", "source", "platforms", "source_files"], "$schema": "http://json-schema.org/draft-07/schema#"}
|
{"name" : "ZWSToAppStore", "version" : "1.0.0", "summary" : "\u7528\u6237\u8bc4\u4ef7\u7cfb\u7edf", "description" : "\u7528\u6237\u8bc4\u4ef7\u7cfb\u7edf.", "homepage" : "https://github.com/zhengweishu/ZWSToAppStore", "license" : "MIT", "authors" : {"zhengweishu" : "[email protected]"}, "source" : {"git" : "https://github.com/zhengweishu/ZWSToAppStore.git", "tag" : "1.0.0"}, "platforms" : {"ios" : "7.0"}, "source_files" : "ZWSToAppStore/Classes/**/*"}
|
json_instruct
|
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "summary": {"type": "string"}, "description": {"type": "string"}, "homepage": {"type": "string"}, "license": {"type": "string"}, "authors": {"type": "object", "properties": {"zhengweishu": {"type": "string"}}, "required": ["zhengweishu"]}, "source": {"type": "object", "properties": {"git": {"type": "string"}, "tag": {"type": "string"}}, "required": ["git", "tag"]}, "platforms": {"type": "object", "properties": {"ios": {"type": "string"}}, "required": ["ios"]}, "source_files": {"type": "string"}}, "required": ["name", "version", "summary", "description", "homepage", "license", "authors", "source", "platforms", "source_files"], "$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"}, "keywords": {"type": "array", "items": {"type": "string"}}, "main": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "scripts": {"type": "object", "properties": {"lint": {"type": "string"}, "test": {"type": "string"}, "build": {"type": "string"}, "prepublish": {"type": "string"}, "contributor": {"type": "string"}}, "required": ["lint", "test", "build", "prepublish", "contributor"]}, "dependencies": {"type": "object", "properties": {}, "required": []}, "precommit": {"type": "array", "items": {"type": "string"}}, "devDependencies": {"type": "object", "properties": {"babel": {"type": "string"}, "babel-core": {"type": "string"}, "babel-loader": {"type": "string"}, "eslint-plugin-react": {"type": "string"}, "git-contributor": {"type": "string"}, "istanbul-harmony": {"type": "string"}, "json-loader": {"type": "string"}, "jsx-loader": {"type": "string"}, "mocha": {"type": "string"}}, "required": ["babel", "babel-core", "babel-loader", "eslint-plugin-react", "git-contributor", "istanbul-harmony", "json-loader", "jsx-loader", "mocha"]}, "licenses": {"type": "string"}}, "required": ["name", "version", "description", "keywords", "main", "repository", "scripts", "dependencies", "precommit", "devDependencies", "licenses"], "$schema": "http://json-schema.org/draft-07/schema#"}
|
{"name" : "autoresponsive-core", "version" : "1.0.1", "description" : "auto responsive grid layout library", "keywords" : ["responsive", "layout", "layout component", "ui component", "ui", "component"], "main" : "dist/index.js", "repository" : {"type" : "git", "url" : "https://github.com/xudafeng/autoresponsive-common.git"}, "scripts" : {"lint" : "eslint lib", "test" : "mocha", "build" : "babel lib/ --out-dir dist/", "prepublish" : "npm run build", "contributor" : "git-contributor"}, "dependencies" : {}, "precommit" : ["lint"], "devDependencies" : {"babel" : "5.8.23", "babel-core" : "^6.17.0", "babel-loader" : "^5.x", "eslint-plugin-react" : "~2.5.2", "git-contributor" : "^1.0.5", "istanbul-harmony" : "~0.3.0", "json-loader" : "^0.5.2", "jsx-loader" : "^0.12.2", "mocha" : "*"}, "licenses" : "MIT"}
|
json_instruct
|
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "main": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "scripts": {"type": "object", "properties": {"lint": {"type": "string"}, "test": {"type": "string"}, "build": {"type": "string"}, "prepublish": {"type": "string"}, "contributor": {"type": "string"}}, "required": ["lint", "test", "build", "prepublish", "contributor"]}, "dependencies": {"type": "object", "properties": {}, "required": []}, "precommit": {"type": "array", "items": {"type": "string"}}, "devDependencies": {"type": "object", "properties": {"babel": {"type": "string"}, "babel-core": {"type": "string"}, "babel-loader": {"type": "string"}, "eslint-plugin-react": {"type": "string"}, "git-contributor": {"type": "string"}, "istanbul-harmony": {"type": "string"}, "json-loader": {"type": "string"}, "jsx-loader": {"type": "string"}, "mocha": {"type": "string"}}, "required": ["babel", "babel-core", "babel-loader", "eslint-plugin-react", "git-contributor", "istanbul-harmony", "json-loader", "jsx-loader", "mocha"]}, "licenses": {"type": "string"}}, "required": ["name", "version", "description", "keywords", "main", "repository", "scripts", "dependencies", "precommit", "devDependencies", "licenses"], "$schema": "http://json-schema.org/draft-07/schema#"}
|
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"Java": {"type": "integer"}}, "required": ["Java"], "$schema": "http://json-schema.org/draft-07/schema#"}
|
{"Java" : 124525}
|
json_instruct
|
{"type": "object", "properties": {"Java": {"type": "integer"}}, "required": ["Java"], "$schema": "http://json-schema.org/draft-07/schema#"}
|
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"}
|
{"word" : "niste", "definition" : "Wist not; knew not. [Obs.] Chaucer."}
|
json_instruct
|
{"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"}
|
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"Name": {"type": "string"}, "Id": {"type": "null"}, "IsCustom": {"type": "boolean"}, "Description": {"type": "string"}, "Actions": {"type": "array", "items": {"type": "string"}}, "NotActions": {"type": "array", "items": {}}, "AssignableScopes": {"type": "array", "items": {"type": "string"}}}, "required": ["Name", "Id", "IsCustom", "Description", "Actions", "NotActions", "AssignableScopes"], "$schema": "http://json-schema.org/draft-07/schema#"}
|
{"Name" : "ADAP NONPROD SQL Admin", "Id" : null, "IsCustom" : true, "Description" : "Lets you access SQL Assets in NONPROD.", "Actions" : ["Microsoft.Insights/alertRules/*", "Microsoft.ResourceHealth/availabilityStatuses/read", "Microsoft.Resources/deployments/*", "Microsoft.Resources/subscriptions/resourceGroups/read", "Microsoft.Sql/servers/databases/read", "Microsoft.Sql/servers/read", "Microsoft.Sql/locations/*/read", "Microsoft.Support/*", "Microsoft.Authorization/*/read", "Microsoft.Compute/availabilitySets/read", "Microsoft.Compute/virtualMachines/*/read", "Microsoft.Compute/virtualMachines/read", "Microsoft.Storage/storageAccounts/read", "Microsoft.Storage/storageAccounts/*", "Microsoft.Logic/*", "Microsoft.ServiceBus/*", "Microsoft.Web/connections/*"], "NotActions" : [], "AssignableScopes" : ["/subscriptions/_subscriptionId"]}
|
json_instruct
|
{"type": "object", "properties": {"Name": {"type": "string"}, "Id": {"type": "null"}, "IsCustom": {"type": "boolean"}, "Description": {"type": "string"}, "Actions": {"type": "array", "items": {"type": "string"}}, "NotActions": {"type": "array", "items": {}}, "AssignableScopes": {"type": "array", "items": {"type": "string"}}}, "required": ["Name", "Id", "IsCustom", "Description", "Actions", "NotActions", "AssignableScopes"], "$schema": "http://json-schema.org/draft-07/schema#"}
|
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"NRXX0001": {"type": "string"}, "NRXX0002": {"type": "string"}, "NRXX0003": {"type": "string"}, "NRXX0004": {"type": "string"}, "NRXX0005": {"type": "string"}, "NRXX0006": {"type": "string"}, "NRXX0007": {"type": "string"}, "NRXX0008": {"type": "string"}, "NRXX0009": {"type": "string"}, "NRXX0010": {"type": "string"}, "NRXX0011": {"type": "string"}}, "required": ["NRXX0001", "NRXX0002", "NRXX0003", "NRXX0004", "NRXX0005", "NRXX0006", "NRXX0007", "NRXX0008", "NRXX0009", "NRXX0010", "NRXX0011"], "$schema": "http://json-schema.org/draft-07/schema#"}
|
{"NRXX0001" : "Yaren", "NRXX0002" : "Anabar", "NRXX0003" : "Anibare", "NRXX0004" : "Arenibek", "NRXX0005" : "Arijejen", "NRXX0006" : "Arubo", "NRXX0007" : "Baiti", "NRXX0008" : "Ijuw", "NRXX0009" : "Ronave", "NRXX0010" : "Uaboe", "NRXX0011" : "Yangor"}
|
json_instruct
|
{"type": "object", "properties": {"NRXX0001": {"type": "string"}, "NRXX0002": {"type": "string"}, "NRXX0003": {"type": "string"}, "NRXX0004": {"type": "string"}, "NRXX0005": {"type": "string"}, "NRXX0006": {"type": "string"}, "NRXX0007": {"type": "string"}, "NRXX0008": {"type": "string"}, "NRXX0009": {"type": "string"}, "NRXX0010": {"type": "string"}, "NRXX0011": {"type": "string"}}, "required": ["NRXX0001", "NRXX0002", "NRXX0003", "NRXX0004", "NRXX0005", "NRXX0006", "NRXX0007", "NRXX0008", "NRXX0009", "NRXX0010", "NRXX0011"], "$schema": "http://json-schema.org/draft-07/schema#"}
|
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"model": {"type": "string"}, "dataset": {"type": "string"}, "rmse_train": {"type": "number"}, "rmse_test": {"type": "number"}, "log_score_train": {"type": "number"}, "log_score_test": {"type": "number"}, "crps_train": {"type": "number"}, "crps_test": {"type": "number"}, "picp_train": {"type": "number"}, "picp_test": {"type": "number"}, "mpiw_train": {"type": "number"}, "mpiw_test": {"type": "number"}}, "required": ["model", "dataset", "rmse_train", "rmse_test", "log_score_train", "log_score_test", "crps_train", "crps_test", "picp_train", "picp_test", "mpiw_train", "mpiw_test"], "$schema": "http://json-schema.org/draft-07/schema#"}
|
{"model" : "NLM-E", "dataset" : "wine", "rmse_train" : 0.5683206448980332, "rmse_test" : 0.5792485848289017, "log_score_train" : -0.7399518654327687, "log_score_test" : -0.9031064731716513, "crps_train" : 0.30866704340066103, "crps_test" : 0.3203872178390446, "picp_train" : 0.9638888888888889, "picp_test" : 0.9308176100628931, "mpiw_train" : 2.433713271621599, "mpiw_test" : 2.2446496576218062}
|
json_instruct
|
{"type": "object", "properties": {"model": {"type": "string"}, "dataset": {"type": "string"}, "rmse_train": {"type": "number"}, "rmse_test": {"type": "number"}, "log_score_train": {"type": "number"}, "log_score_test": {"type": "number"}, "crps_train": {"type": "number"}, "crps_test": {"type": "number"}, "picp_train": {"type": "number"}, "picp_test": {"type": "number"}, "mpiw_train": {"type": "number"}, "mpiw_test": {"type": "number"}}, "required": ["model", "dataset", "rmse_train", "rmse_test", "log_score_train", "log_score_test", "crps_train", "crps_test", "picp_train", "picp_test", "mpiw_train", "mpiw_test"], "$schema": "http://json-schema.org/draft-07/schema#"}
|
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"cam/image_array": {"type": "string"}, "user/angle": {"type": "number"}, "user/throttle": {"type": "number"}, "user/mode": {"type": "string"}, "pos/pos_x": {"type": "number"}, "pos/pos_y": {"type": "number"}, "pos/pos_z": {"type": "number"}, "pos/speed": {"type": "number"}, "pos/cte": {"type": "number"}, "milliseconds": {"type": "integer"}}, "required": ["cam/image_array", "user/angle", "user/throttle", "user/mode", "pos/pos_x", "pos/pos_y", "pos/pos_z", "pos/speed", "pos/cte", "milliseconds"], "$schema": "http://json-schema.org/draft-07/schema#"}
|
{"cam/image_array" : "4370_cam-image_array_.jpg", "user/angle" : 0.0, "user/throttle" : 0.54, "user/mode" : "user", "pos/pos_x" : 46.90133, "pos/pos_y" : 0.5558041, "pos/pos_z" : 14.79809, "pos/speed" : 10.0309, "pos/cte" : -2.907869, "milliseconds" : 234009}
|
json_instruct
|
{"type": "object", "properties": {"cam/image_array": {"type": "string"}, "user/angle": {"type": "number"}, "user/throttle": {"type": "number"}, "user/mode": {"type": "string"}, "pos/pos_x": {"type": "number"}, "pos/pos_y": {"type": "number"}, "pos/pos_z": {"type": "number"}, "pos/speed": {"type": "number"}, "pos/cte": {"type": "number"}, "milliseconds": {"type": "integer"}}, "required": ["cam/image_array", "user/angle", "user/throttle", "user/mode", "pos/pos_x", "pos/pos_y", "pos/pos_z", "pos/speed", "pos/cte", "milliseconds"], "$schema": "http://json-schema.org/draft-07/schema#"}
|
Generate sample JSON data that conforms to the following schema definition:
{"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" : "Cr\u00e9zancy-en-Sancerre", "dpt" : "Cher", "inscrits" : 396, "abs" : 76, "votants" : 320, "blancs" : 26, "nuls" : 17, "exp" : 277, "res" : [{"panneau" : "1", "voix" : 168}, {"panneau" : "2", "voix" : 109}]}
|
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#"}
|
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"minercraft": {"type": "string"}}, "required": ["minercraft"]}, "devDependencies": {"type": "object", "properties": {"node-fetch": {"type": "string"}}, "required": ["node-fetch"]}, "keywords": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "version", "description", "main", "scripts", "author", "license", "dependencies", "devDependencies", "keywords"], "$schema": "http://json-schema.org/draft-07/schema#"}
|
{"name" : "bsv-pay", "version" : "0.0.10", "description" : "Broadcast bitcoin transactions to miners", "main" : "./src/index.js", "scripts" : {"test" : "node ./tests/test.js"}, "author" : "Kevin Johnson (KevinEJohn)", "license" : "MIT", "dependencies" : {"minercraft" : "0.0.8"}, "devDependencies" : {"node-fetch" : "^2.6.1"}, "keywords" : ["bitcoin", "bsv", "broadcast", "transactions", "miners", "minercraft"]}
|
json_instruct
|
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"minercraft": {"type": "string"}}, "required": ["minercraft"]}, "devDependencies": {"type": "object", "properties": {"node-fetch": {"type": "string"}}, "required": ["node-fetch"]}, "keywords": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "version", "description", "main", "scripts", "author", "license", "dependencies", "devDependencies", "keywords"], "$schema": "http://json-schema.org/draft-07/schema#"}
|
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"sentences": {"type": "array", "items": {"type": "object", "properties": {"text": {"type": "object", "properties": {"content": {"type": "string"}, "beginOffset": {"type": "integer"}}, "required": ["content", "beginOffset"]}, "sentiment": {"type": "object", "properties": {"magnitude": {"type": "number"}, "score": {"type": "number"}}, "required": ["magnitude", "score"]}}, "required": ["text", "sentiment"]}}, "tokens": {"type": "array", "items": {}}, "entities": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "type": {"type": "string"}, "metadata": {"type": "object", "properties": {}, "required": []}, "salience": {"type": "number"}, "mentions": {"type": "array", "items": {"type": "object", "properties": {"text": {"type": "object", "properties": {"content": {"type": "string"}, "beginOffset": {"type": "integer"}}, "required": ["content", "beginOffset"]}, "type": {"type": "string"}}, "required": ["text", "type"]}}}, "required": ["name", "type", "metadata", "salience", "mentions"]}}, "documentSentiment": {"type": "object", "properties": {"magnitude": {"type": "number"}, "score": {"type": "number"}}, "required": ["magnitude", "score"]}, "language": {"type": "string"}, "categories": {"type": "array", "items": {}}}, "required": ["sentences", "tokens", "entities", "documentSentiment", "language", "categories"], "$schema": "http://json-schema.org/draft-07/schema#"}
|
{"sentences" : [{"text" : {"content" : "These siblings have just found a good loving home together with their mother.", "beginOffset" : -1}, "sentiment" : {"magnitude" : 0.9, "score" : 0.9}}, {"text" : {"content" : "Here's to a better life for them. :)", "beginOffset" : -1}, "sentiment" : {"magnitude" : 0.8, "score" : 0.8}}], "tokens" : [], "entities" : [{"name" : "siblings", "type" : "PERSON", "metadata" : {}, "salience" : 0.70844656, "mentions" : [{"text" : {"content" : "siblings", "beginOffset" : -1}, "type" : "COMMON"}]}, {"name" : "home", "type" : "LOCATION", "metadata" : {}, "salience" : 0.11525293, "mentions" : [{"text" : {"content" : "home", "beginOffset" : -1}, "type" : "COMMON"}]}, {"name" : "mother", "type" : "PERSON", "metadata" : {}, "salience" : 0.10752759, "mentions" : [{"text" : {"content" : "mother", "beginOffset" : -1}, "type" : "COMMON"}]}, {"name" : "life", "type" : "OTHER", "metadata" : {}, "salience" : 0.040352315, "mentions" : [{"text" : {"content" : "life", "beginOffset" : -1}, "type" : "COMMON"}]}, {"name" : "them.", "type" : "OTHER", "metadata" : {}, "salience" : 0.028420595, "mentions" : [{"text" : {"content" : "them.", "beginOffset" : -1}, "type" : "COMMON"}]}], "documentSentiment" : {"magnitude" : 1.7, "score" : 0.8}, "language" : "en", "categories" : []}
|
json_instruct
|
{"type": "object", "properties": {"sentences": {"type": "array", "items": {"type": "object", "properties": {"text": {"type": "object", "properties": {"content": {"type": "string"}, "beginOffset": {"type": "integer"}}, "required": ["content", "beginOffset"]}, "sentiment": {"type": "object", "properties": {"magnitude": {"type": "number"}, "score": {"type": "number"}}, "required": ["magnitude", "score"]}}, "required": ["text", "sentiment"]}}, "tokens": {"type": "array", "items": {}}, "entities": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "type": {"type": "string"}, "metadata": {"type": "object", "properties": {}, "required": []}, "salience": {"type": "number"}, "mentions": {"type": "array", "items": {"type": "object", "properties": {"text": {"type": "object", "properties": {"content": {"type": "string"}, "beginOffset": {"type": "integer"}}, "required": ["content", "beginOffset"]}, "type": {"type": "string"}}, "required": ["text", "type"]}}}, "required": ["name", "type", "metadata", "salience", "mentions"]}}, "documentSentiment": {"type": "object", "properties": {"magnitude": {"type": "number"}, "score": {"type": "number"}}, "required": ["magnitude", "score"]}, "language": {"type": "string"}, "categories": {"type": "array", "items": {}}}, "required": ["sentences", "tokens", "entities", "documentSentiment", "language", "categories"], "$schema": "http://json-schema.org/draft-07/schema#"}
|
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"packageId": {"type": "string"}}, "required": ["packageId"], "$schema": "http://json-schema.org/draft-07/schema#"}
|
{"packageId" : "com.google.MCASpec.dev"}
|
json_instruct
|
{"type": "object", "properties": {"packageId": {"type": "string"}}, "required": ["packageId"], "$schema": "http://json-schema.org/draft-07/schema#"}
|
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"id": {"type": "integer"}, "title": {"type": "array", "items": {"type": "string"}}, "description": {"type": "array", "items": {"type": "string"}}, "paths": {"type": "array", "items": {"type": "string"}}, "location": {"type": "boolean"}, "wayto": {"type": "object", "properties": {"28087": {"type": "string"}, "28090": {"type": "string"}}, "required": ["28087", "28090"]}, "timeto": {"type": "object", "properties": {"28087": {"type": "number"}, "28090": {"type": "number"}}, "required": ["28087", "28090"]}}, "required": ["id", "title", "description", "paths", "location", "wayto", "timeto"], "$schema": "http://json-schema.org/draft-07/schema#"}
|
{"id" : 28089, "title" : ["[Domed Enclosure, Commons]"], "description" : ["Thick woolen carpets woven in patterns of green and brown are layered on the floor, creating a soft covering. Some fluffy pillows covered with rabbit pelts are scattered about a rough hewn wooden table. Centered in the room is a hammered copper brazier, its beautiful surface shimmering with the smallest light. Tucked to one side of the enclosure is a small woven basket filled with sticks, while standing to another is a beautifully carved maple tree."], "paths" : ["Obvious exits: out"], "location" : false, "wayto" : {"28087" : "o", "28090" : "go curtain"}, "timeto" : {"28087" : 0.2, "28090" : 0.2}}
|
json_instruct
|
{"type": "object", "properties": {"id": {"type": "integer"}, "title": {"type": "array", "items": {"type": "string"}}, "description": {"type": "array", "items": {"type": "string"}}, "paths": {"type": "array", "items": {"type": "string"}}, "location": {"type": "boolean"}, "wayto": {"type": "object", "properties": {"28087": {"type": "string"}, "28090": {"type": "string"}}, "required": ["28087", "28090"]}, "timeto": {"type": "object", "properties": {"28087": {"type": "number"}, "28090": {"type": "number"}}, "required": ["28087", "28090"]}}, "required": ["id", "title", "description", "paths", "location", "wayto", "timeto"], "$schema": "http://json-schema.org/draft-07/schema#"}
|
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"an3.134:0.1": {"type": "string"}, "an3.134:0.2": {"type": "string"}, "an3.134:0.3": {"type": "string"}, "an3.134:1.1": {"type": "string"}, "an3.134:1.2": {"type": "string"}, "an3.134:1.3": {"type": "string"}, "an3.134:1.4": {"type": "string"}}, "required": ["an3.134:0.1", "an3.134:0.2", "an3.134:0.3", "an3.134:1.1", "an3.134:1.2", "an3.134:1.3", "an3.134:1.4"], "$schema": "http://json-schema.org/draft-07/schema#"}
|
{"an3.134:0.1" : "Numbered Discourses 3 ", "an3.134:0.2" : "14. A Warrior ", "an3.134:0.3" : "134. Assemblies ", "an3.134:1.1" : "\u201cMendicants, there are these three assemblies. ", "an3.134:1.2" : "What three? ", "an3.134:1.3" : "An assembly educated in fancy talk, an assembly educated in questioning, and an assembly educated to the fullest extent. ", "an3.134:1.4" : "These are the three assemblies.\u201d "}
|
json_instruct
|
{"type": "object", "properties": {"an3.134:0.1": {"type": "string"}, "an3.134:0.2": {"type": "string"}, "an3.134:0.3": {"type": "string"}, "an3.134:1.1": {"type": "string"}, "an3.134:1.2": {"type": "string"}, "an3.134:1.3": {"type": "string"}, "an3.134:1.4": {"type": "string"}}, "required": ["an3.134:0.1", "an3.134:0.2", "an3.134:0.3", "an3.134:1.1", "an3.134:1.2", "an3.134:1.3", "an3.134:1.4"], "$schema": "http://json-schema.org/draft-07/schema#"}
|
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "metal": {"type": "string"}, "denomination": {"type": "string"}, "date": {"type": "string"}, "weight": {"type": "number"}, "diameter": {"type": "integer"}, "thickness": {"type": "null"}, "quality": {"type": "string"}, "edge": {"type": "string"}, "mintage": {"type": "integer"}, "categoryId": {"type": "integer"}, "category": {"type": "string"}, "generalDescription": {"type": "string"}, "averseDescription": {"type": "string"}, "reverseDescription": {"type": "string"}, "averseImgUrl": {"type": "string"}, "reverseImgUrl": {"type": "string"}}, "required": ["id", "name", "metal", "denomination", "date", "weight", "diameter", "thickness", "quality", "edge", "mintage", "categoryId", "category", "generalDescription", "averseDescription", "reverseDescription", "averseImgUrl", "reverseImgUrl"], "$schema": "http://json-schema.org/draft-07/schema#"}
|
{"id" : 461, "name" : "Yevhen Paton", "metal" : "silver (Ag 925)", "denomination" : "5 hryvnias", "date" : "5 February 2010", "weight" : 15.55, "diameter" : 33, "thickness" : null, "quality" : "proof", "edge" : "smooth with in-depth legends", "mintage" : 5000, "categoryId" : 5914, "category" : "Outstanding Personalities of Ukraine", "generalDescription" : "The coin is dedicated to Yevhen Oskarovych PATON (1870-1953), a world-famous scientist, founder of Ukrainian schools of bridge engineering and electric welding, outstanding engineer and pedagogue. On his initiative established was the Electric Welding Laboratory under the Academy of Sciences of Ukraine which in 1934 was reorganized into the Electric Welding Institute whose director and research manager Yevhen Paton was continuously to the end of his life.", "averseDescription" : "On the coin obverse above there is the Small Coat of Arms of Ukraine with the semicircular legend \u041d\u0410\u0426\u0406\u041e\u041d\u0410\u041b\u042c\u041d\u0418\u0419 \u0411\u0410\u041d\u041a \u0423\u041a\u0420\u0410\u0407\u041d\u0418 (National Bank of Ukraine); below there is the composition symbolizing the scholar`s activity in the bridge engineering which represents the Paton Bridge, the first fully welded bridge in Europe, the footbridge over Petrovska Alley and conventionalized Whatman`s paper sheet (to the left); beneath there is the inscription 5 \u0413\u0420\u0418\u0412\u0415\u041d\u042c/2010 (5 hryvnias).", "reverseDescription" : "On the coin reverse there is a portrait of Yevhen Paton, to the right whereof there is the conventionalized image of electric arc scintillation that appears during the welding; below there are the inscriptions: \u0404\u0412\u0413\u0415\u041d/\u041f\u0410\u0422\u041e\u041d/1870-1953 (Yevhen/Paton).", "averseImgUrl" : "http://www.bank.gov.ua/control/en/currentmoney/image?g=2&s=0&id=461", "reverseImgUrl" : "http://www.bank.gov.ua/control/en/currentmoney/image?g=2&s=1&id=461"}
|
json_instruct
|
{"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "metal": {"type": "string"}, "denomination": {"type": "string"}, "date": {"type": "string"}, "weight": {"type": "number"}, "diameter": {"type": "integer"}, "thickness": {"type": "null"}, "quality": {"type": "string"}, "edge": {"type": "string"}, "mintage": {"type": "integer"}, "categoryId": {"type": "integer"}, "category": {"type": "string"}, "generalDescription": {"type": "string"}, "averseDescription": {"type": "string"}, "reverseDescription": {"type": "string"}, "averseImgUrl": {"type": "string"}, "reverseImgUrl": {"type": "string"}}, "required": ["id", "name", "metal", "denomination", "date", "weight", "diameter", "thickness", "quality", "edge", "mintage", "categoryId", "category", "generalDescription", "averseDescription", "reverseDescription", "averseImgUrl", "reverseImgUrl"], "$schema": "http://json-schema.org/draft-07/schema#"}
|
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"react-modal.js": {"type": "string"}, "react-modal.min.js": {"type": "string"}}, "required": ["react-modal.js", "react-modal.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
|
{"react-modal.js" : "sha256-26Xh2qjaNHZ2iOI60yTgysDs/zSVvs+7BSFf9nTzSQk=", "react-modal.min.js" : "sha256-5nO6DmaUggLjHVPiaMhNKRyB8z4xAeus63y7kYQWmZ4="}
|
json_instruct
|
{"type": "object", "properties": {"react-modal.js": {"type": "string"}, "react-modal.min.js": {"type": "string"}}, "required": ["react-modal.js", "react-modal.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
|
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"sap.app": {"type": "object", "properties": {"id": {"type": "string"}, "type": {"type": "string"}}, "required": ["id", "type"]}, "sap.ui5": {"type": "object", "properties": {"dependencies": {"type": "object", "properties": {"libs": {"type": "object", "properties": {"sap.ui.core": {"type": "object", "properties": {}, "required": []}, "sap.m": {"type": "object", "properties": {}, "required": []}, "openui5.validator": {"type": "object", "properties": {}, "required": []}}, "required": ["sap.ui.core", "sap.m", "openui5.validator"]}}, "required": ["libs"]}, "rootView": {"type": "object", "properties": {"viewName": {"type": "string"}, "type": {"type": "string"}, "id": {"type": "string"}}, "required": ["viewName", "type", "id"]}, "models": {"type": "object", "properties": {"i18n": {"type": "object", "properties": {"type": {"type": "string"}, "settings": {"type": "object", "properties": {"bundleName": {"type": "string"}}, "required": ["bundleName"]}}, "required": ["type", "settings"]}}, "required": ["i18n"]}, "handleValidation": {"type": "boolean"}}, "required": ["dependencies", "rootView", "models", "handleValidation"]}}, "required": ["sap.app", "sap.ui5"], "$schema": "http://json-schema.org/draft-07/schema#"}
|
{"sap.app" : {"id" : "mlauffer.demo.openui5.validator", "type" : "application"}, "sap.ui5" : {"dependencies" : {"libs" : {"sap.ui.core" : {}, "sap.m" : {}, "openui5.validator" : {}}}, "rootView" : {"viewName" : "mlauffer.demo.openui5.validator.view.App", "type" : "XML", "id" : "app"}, "models" : {"i18n" : {"type" : "sap.ui.model.resource.ResourceModel", "settings" : {"bundleName" : "mlauffer.demo.openui5.validator.i18n.i18n"}}}, "handleValidation" : true}}
|
json_instruct
|
{"type": "object", "properties": {"sap.app": {"type": "object", "properties": {"id": {"type": "string"}, "type": {"type": "string"}}, "required": ["id", "type"]}, "sap.ui5": {"type": "object", "properties": {"dependencies": {"type": "object", "properties": {"libs": {"type": "object", "properties": {"sap.ui.core": {"type": "object", "properties": {}, "required": []}, "sap.m": {"type": "object", "properties": {}, "required": []}, "openui5.validator": {"type": "object", "properties": {}, "required": []}}, "required": ["sap.ui.core", "sap.m", "openui5.validator"]}}, "required": ["libs"]}, "rootView": {"type": "object", "properties": {"viewName": {"type": "string"}, "type": {"type": "string"}, "id": {"type": "string"}}, "required": ["viewName", "type", "id"]}, "models": {"type": "object", "properties": {"i18n": {"type": "object", "properties": {"type": {"type": "string"}, "settings": {"type": "object", "properties": {"bundleName": {"type": "string"}}, "required": ["bundleName"]}}, "required": ["type", "settings"]}}, "required": ["i18n"]}, "handleValidation": {"type": "boolean"}}, "required": ["dependencies", "rootView", "models", "handleValidation"]}}, "required": ["sap.app", "sap.ui5"], "$schema": "http://json-schema.org/draft-07/schema#"}
|
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"xywh": {"type": "string"}}, "required": ["xywh"], "$schema": "http://json-schema.org/draft-07/schema#"}
|
{"xywh" : "932,1687,3904,499"}
|
json_instruct
|
{"type": "object", "properties": {"xywh": {"type": "string"}}, "required": ["xywh"], "$schema": "http://json-schema.org/draft-07/schema#"}
|
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"DTD_z0p025_bw500_1.25<mwd<1.32_3e-11<mdot<3e-10": {"type": "array", "items": {"type": "number"}}, "arrbool": {"type": "boolean"}}, "required": ["DTD_z0p025_bw500_1.25<mwd<1.32_3e-11<mdot<3e-10", "arrbool"], "$schema": "http://json-schema.org/draft-07/schema#"}
|
{"DTD_z0p025_bw500_1.25<mwd<1.32_3e-11<mdot<3e-10" : [0.00040856710617477257, 0.001031568606086173, 0.0019167587823402685, 0.0020919360947809044, 0.002297310388657052, 0.0023537175683420782, 0.002458944670224124, 0.0025740943471076177, 0.0025016657569892093, 0.002018156492323231, 0.0016357321174144818, 0.0010606148497977821, 0.0009018173474075498, 0.000704405877066664, 0.0005285424697141911, 0.000520617458312448, 0.000620136299511076, 0.0005424283358624084, 0.00042770046248588253, 0.00040074206495671963, 0.00027341080015536035, 0.00027758254076000813, 0.00032459985271400885, 0.00018389856495299242, 0.0001135277101413125, 0.00024922389902930567, 0.00010521577770659235, 0.00011202834218223406, 0.00011131956475196603, 9.26988469112898e-05], "arrbool" : true}
|
json_instruct
|
{"type": "object", "properties": {"DTD_z0p025_bw500_1.25<mwd<1.32_3e-11<mdot<3e-10": {"type": "array", "items": {"type": "number"}}, "arrbool": {"type": "boolean"}}, "required": ["DTD_z0p025_bw500_1.25<mwd<1.32_3e-11<mdot<3e-10", "arrbool"], "$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": {}}}, "required": ["userId", "cartId", "preferredProducts", "productReviews"], "$schema": "http://json-schema.org/draft-07/schema#"}
|
{"userId" : 23791, "cartId" : "7b58e5e6-1f72-464a-8918-bd8b36ab5243", "preferredProducts" : [4072, 1576], "productReviews" : []}
|
json_instruct
|
{"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {"type": "integer"}}, "productReviews": {"type": "array", "items": {}}}, "required": ["userId", "cartId", "preferredProducts", "productReviews"], "$schema": "http://json-schema.org/draft-07/schema#"}
|
The schema below describes a JSON structure. Generate a valid example:
{"type": "array", "items": {"type": "object", "properties": {"address_components": {"type": "array", "items": {"type": "object", "properties": {"long_name": {"type": "string"}, "short_name": {"type": "string"}, "types": {"type": "array", "items": {"type": "string"}}}, "required": ["long_name", "short_name", "types"]}}, "formatted_address": {"type": "string"}, "geometry": {"type": "object", "properties": {"bounds": {"type": "object", "properties": {"northeast": {"type": "object", "properties": {"lat": {"type": "number"}, "lng": {"type": "number"}}, "required": ["lat", "lng"]}, "southwest": {"type": "object", "properties": {"lat": {"type": "number"}, "lng": {"type": "number"}}, "required": ["lat", "lng"]}}, "required": ["northeast", "southwest"]}, "location": {"type": "object", "properties": {"lat": {"type": "number"}, "lng": {"type": "number"}}, "required": ["lat", "lng"]}, "location_type": {"type": "string"}, "viewport": {"type": "object", "properties": {"northeast": {"type": "object", "properties": {"lat": {"type": "number"}, "lng": {"type": "number"}}, "required": ["lat", "lng"]}, "southwest": {"type": "object", "properties": {"lat": {"type": "number"}, "lng": {"type": "number"}}, "required": ["lat", "lng"]}}, "required": ["northeast", "southwest"]}}, "required": ["bounds", "location", "location_type", "viewport"]}, "place_id": {"type": "string"}, "types": {"type": "array", "items": {"type": "string"}}}, "required": ["address_components", "formatted_address", "geometry", "place_id", "types"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
|
[{"address_components" : [{"long_name" : "G\u00fcd\u00fcl", "short_name" : "G\u00fcd\u00fcl", "types" : ["locality", "political"]}, {"long_name" : "G\u00fcd\u00fcl", "short_name" : "G\u00fcd\u00fcl", "types" : ["administrative_area_level_2", "political"]}, {"long_name" : "Ankara", "short_name" : "Ankara", "types" : ["administrative_area_level_1", "political"]}, {"long_name" : "Turkey", "short_name" : "TR", "types" : ["country", "political"]}], "formatted_address" : "G\u00fcd\u00fcl, Ankara, Turkey", "geometry" : {"bounds" : {"northeast" : {"lat" : 40.219718, "lng" : 32.2608351}, "southwest" : {"lat" : 40.204686, "lng" : 32.236546}}, "location" : {"lat" : 40.210512, "lng" : 32.24553}, "location_type" : "APPROXIMATE", "viewport" : {"northeast" : {"lat" : 40.219718, "lng" : 32.2608351}, "southwest" : {"lat" : 40.204686, "lng" : 32.236546}}}, "place_id" : "ChIJ2YLgKkHT0hQRHIP0uQi6Nkg", "types" : ["locality", "political"]}]
|
json_instruct
|
{"type": "array", "items": {"type": "object", "properties": {"address_components": {"type": "array", "items": {"type": "object", "properties": {"long_name": {"type": "string"}, "short_name": {"type": "string"}, "types": {"type": "array", "items": {"type": "string"}}}, "required": ["long_name", "short_name", "types"]}}, "formatted_address": {"type": "string"}, "geometry": {"type": "object", "properties": {"bounds": {"type": "object", "properties": {"northeast": {"type": "object", "properties": {"lat": {"type": "number"}, "lng": {"type": "number"}}, "required": ["lat", "lng"]}, "southwest": {"type": "object", "properties": {"lat": {"type": "number"}, "lng": {"type": "number"}}, "required": ["lat", "lng"]}}, "required": ["northeast", "southwest"]}, "location": {"type": "object", "properties": {"lat": {"type": "number"}, "lng": {"type": "number"}}, "required": ["lat", "lng"]}, "location_type": {"type": "string"}, "viewport": {"type": "object", "properties": {"northeast": {"type": "object", "properties": {"lat": {"type": "number"}, "lng": {"type": "number"}}, "required": ["lat", "lng"]}, "southwest": {"type": "object", "properties": {"lat": {"type": "number"}, "lng": {"type": "number"}}, "required": ["lat", "lng"]}}, "required": ["northeast", "southwest"]}}, "required": ["bounds", "location", "location_type", "viewport"]}, "place_id": {"type": "string"}, "types": {"type": "array", "items": {"type": "string"}}}, "required": ["address_components", "formatted_address", "geometry", "place_id", "types"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
|
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"cSpell.words": {"type": "array", "items": {"type": "string"}}}, "required": ["cSpell.words"], "$schema": "http://json-schema.org/draft-07/schema#"}
|
{"cSpell.words" : ["Dror", "Gluska", "Teja", "apos", "drorgl", "dryrun", "gmail", "prefinish", "saitejas", "typedoc", "xmltojs"]}
|
json_instruct
|
{"type": "object", "properties": {"cSpell.words": {"type": "array", "items": {"type": "string"}}}, "required": ["cSpell.words"], "$schema": "http://json-schema.org/draft-07/schema#"}
|
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"rustc": {"type": "integer"}, "features": {"type": "string"}, "target": {"type": "integer"}, "profile": {"type": "integer"}, "path": {"type": "integer"}, "deps": {"type": "array", "items": {}}, "local": {"type": "array", "items": {"type": "object", "properties": {"CheckDepInfo": {"type": "object", "properties": {"dep_info": {"type": "string"}}, "required": ["dep_info"]}}, "required": ["CheckDepInfo"]}}, "rustflags": {"type": "array", "items": {}}, "metadata": {"type": "integer"}, "config": {"type": "integer"}, "compile_kind": {"type": "integer"}}, "required": ["rustc", "features", "target", "profile", "path", "deps", "local", "rustflags", "metadata", "config", "compile_kind"], "$schema": "http://json-schema.org/draft-07/schema#"}
|
{"rustc" : 15441020830736626103, "features" : "[\"std\"]", "target" : 683421671917135955, "profile" : 3735503092003429423, "path" : 16407993984936039156, "deps" : [], "local" : [{"CheckDepInfo" : {"dep_info" : "debug\\.fingerprint\\rustc-hex-2142d736f8a49ef4\\dep-lib-rustc-hex"}}], "rustflags" : [], "metadata" : 11278451656052502128, "config" : 2202906307356721367, "compile_kind" : 0}
|
json_instruct
|
{"type": "object", "properties": {"rustc": {"type": "integer"}, "features": {"type": "string"}, "target": {"type": "integer"}, "profile": {"type": "integer"}, "path": {"type": "integer"}, "deps": {"type": "array", "items": {}}, "local": {"type": "array", "items": {"type": "object", "properties": {"CheckDepInfo": {"type": "object", "properties": {"dep_info": {"type": "string"}}, "required": ["dep_info"]}}, "required": ["CheckDepInfo"]}}, "rustflags": {"type": "array", "items": {}}, "metadata": {"type": "integer"}, "config": {"type": "integer"}, "compile_kind": {"type": "integer"}}, "required": ["rustc", "features", "target", "profile", "path", "deps", "local", "rustflags", "metadata", "config", "compile_kind"], "$schema": "http://json-schema.org/draft-07/schema#"}
|
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "license": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}}, "config": {"type": "object", "properties": {"vendor-dir": {"type": "string"}}, "required": ["vendor-dir"]}}, "required": ["name", "description", "license", "authors", "config"], "$schema": "http://json-schema.org/draft-07/schema#"}
|
{"name" : "stillat/php-package", "description" : "A starting point for basic PHP packages. Allows configuration of PHPUnit and TravisCI", "license" : "MIT", "authors" : [{"name" : "Johnathon Koster", "email" : "[email protected]"}], "config" : {"vendor-dir" : "_newup_vendor"}}
|
json_instruct
|
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "license": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}}, "config": {"type": "object", "properties": {"vendor-dir": {"type": "string"}}, "required": ["vendor-dir"]}}, "required": ["name", "description", "license", "authors", "config"], "$schema": "http://json-schema.org/draft-07/schema#"}
|
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"t": {"type": "string"}, "h": {"type": "array", "items": {"type": "object", "properties": {"d": {"type": "array", "items": {"type": "object", "properties": {"f": {"type": "string"}, "e": {"type": "array", "items": {"type": "string"}}}, "required": ["f", "e"]}}}, "required": ["d"]}}, "stem": {"type": "string"}}, "required": ["t", "h", "stem"], "$schema": "http://json-schema.org/draft-07/schema#"}
|
{"t" : "ma'ari", "h" : [{"d" : [{"f" : "\u88ab\u6253\u788e\uff0c\u7834\u788e\uff0c\u7834\u88c2\u3002", "e" : ["\ufff9`Ma~`'ari~ `to~ `ko~ `ko~`p~`p~`o~.\ufffa\ufffb\u676f\u5b50\u7834\u4e86\u3002"]}]}], "stem" : "'ari"}
|
json_instruct
|
{"type": "object", "properties": {"t": {"type": "string"}, "h": {"type": "array", "items": {"type": "object", "properties": {"d": {"type": "array", "items": {"type": "object", "properties": {"f": {"type": "string"}, "e": {"type": "array", "items": {"type": "string"}}}, "required": ["f", "e"]}}}, "required": ["d"]}}, "stem": {"type": "string"}}, "required": ["t", "h", "stem"], "$schema": "http://json-schema.org/draft-07/schema#"}
|
Please provide a valid JSON object following 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" : ["Preheat oven to 350 degrees F (175 degrees C). Spray 9 or 10 inch Bundt pan lightly with cooking spray and dust with flour.", "In a medium bowl, combine flour, baking soda, salt, cinnamon, and allspice.", "In a large mixing bowl, cream 1/2 cup butter, white sugar, and 3/4 cup brown sugar. Mix in eggs, 1/3 cup rum, and vanilla. Mix in flour mixture in three additions alternately with applesauce, ending with flour. Stir in dried cranberries. Spoon batter into prepared pan.", "Bake in preheated oven for 45 to 55 minutes, or until a toothpick inserted into the cake comes out clean. Cool cake in pan for 15 minutes, remove from pan, and cool completely on a wire rack.", "In a small saucepan, melt 3 tablespoons butter. Stir in 1/4 cup brown sugar, confectioners' sugar, and 2 tablespoons rum. Heat until smooth; if mixture is too thick, add water and maybe a little more rum. Drip glaze over cooled cake."], "ingredients" : ["2 1/4 cups all-purpose flour", "1 teaspoon baking soda", "1/2 teaspoon salt", "1 1/2 teaspoons ground cinnamon", "1/4 teaspoon ground allspice", "1/2 cup butter, softened", "1/4 cup white sugar", "3/4 cup packed brown sugar", "2 eggs", "1/3 cup dark rum", "1 teaspoon vanilla extract", "1 1/4 cups applesauce", "1 cup dried cranberries", "3 tablespoons butter, melted", "1/4 cup packed brown sugar", "1 cup confectioners' sugar", "2 tablespoons dark rum"], "language" : "en-US", "source" : "allrecipes.com", "tags" : [], "title" : "Rum Cranberry Applesauce Bundt Cake", "url" : "http://allrecipes.com/recipe/50417/rum-cranberry-applesauce-bundt-cake/"}
|
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": {"layout": {"type": "string"}, "title": {"type": "string"}, "tags": {"type": "string"}, "showDate": {"type": "boolean"}, "scripts": {"type": "array", "items": {}}, "coverImage": {"type": "array", "items": {"type": "string"}}}, "required": ["layout", "title", "tags", "showDate", "scripts", "coverImage"], "$schema": "http://json-schema.org/draft-07/schema#"}
|
{"layout" : "page.njk", "title" : "Lifestyle", "tags" : "lifestyle", "showDate" : true, "scripts" : [], "coverImage" : ["placeholder.png"]}
|
json_instruct
|
{"type": "object", "properties": {"layout": {"type": "string"}, "title": {"type": "string"}, "tags": {"type": "string"}, "showDate": {"type": "boolean"}, "scripts": {"type": "array", "items": {}}, "coverImage": {"type": "array", "items": {"type": "string"}}}, "required": ["layout", "title", "tags", "showDate", "scripts", "coverImage"], "$schema": "http://json-schema.org/draft-07/schema#"}
|
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"author": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "name"]}, "date": {"type": "object", "properties": {"day": {"type": "integer"}, "full": {"type": "integer"}, "month": {"type": "integer"}, "week": {"type": "integer"}}, "required": ["day", "full", "month", "week"]}, "id": {"type": "string"}, "picture": {"type": "object", "properties": {"filesize": {"type": "integer"}, "fullUrl": {"type": "string"}, "hash": {"type": "string"}, "height": {"type": "integer"}, "lqip": {"type": "string"}, "url": {"type": "string"}, "width": {"type": "integer"}}, "required": ["filesize", "fullUrl", "hash", "height", "lqip", "url", "width"]}, "score": {"type": "object", "properties": {"comments": {"type": "integer"}, "downs": {"type": "integer"}, "ratio": {"type": "integer"}, "ups": {"type": "integer"}, "value": {"type": "integer"}}, "required": ["comments", "downs", "ratio", "ups", "value"]}, "subreddit": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "name"]}, "tags": {"type": "array", "items": {}}, "title": {"type": "string"}, "url": {"type": "string"}}, "required": ["author", "date", "id", "picture", "score", "subreddit", "tags", "title", "url"], "$schema": "http://json-schema.org/draft-07/schema#"}
|
{"author" : {"id" : "t2_tppqs", "name" : "epicamytime"}, "date" : {"day" : 1628380800, "full" : 1628458800, "month" : 1627776000, "week" : 1628380800}, "id" : "t3_p0nlth", "picture" : {"filesize" : 113287, "fullUrl" : "https://preview.redd.it/5t57s37je7g71.jpg?width=3024&format=pjpg&auto=webp&s=57adc7ce40ace52a6c92bf93010475668c452ee4", "hash" : "c23400f51c", "height" : 853, "lqip" : "data:image/jpg;base64,/9j/2wBDAAYEBQYFBAYGBQYHBwYIChAKCgkJChQODwwQFxQYGBcUFhYaHSUfGhsjHBYWICwgIyYnKSopGR8tMC0oMCUoKSj/2wBDAQcHBwoIChMKChMoGhYaKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCj/wAARCAAQAAwDASIAAhEBAxEB/8QAFwAAAwEAAAAAAAAAAAAAAAAAAgMEBf/EACQQAAIBAwMDBQAAAAAAAAAAAAECAwQFEQAGIRJBcRMxUWGB/8QAFQEBAQAAAAAAAAAAAAAAAAAABQb/xAAeEQABAwQDAAAAAAAAAAAAAAABAAMhAgQREkFRcf/aAAwDAQACEQMRAD8AwLLYaismMRZECtGrvnPp9ftkd/zSd22So2/dFpGmjqeqJZQ6qVHOeMHxorJuM08080ka9E0scjqrc4QjABPjv86r3dueivdyiqI6SoiCQiIh2Uk4JOeD96Sode3AqEYn1Tb1pZBolsznnpf/2Q==", "url" : "https://preview.redd.it/5t57s37je7g71.jpg?width=640&crop=smart&auto=webp&s=52b98f0839c0fa9f258e35ce712078f3d2eaec6f", "width" : 640}, "score" : {"comments" : 5, "downs" : 0, "ratio" : 1, "ups" : 25, "value" : 25}, "subreddit" : {"id" : "t5_2xy5e", "name" : "TerrainBuilding"}, "tags" : [], "title" : "I made this jig for making corrugated metal with a comb, epoxy putty, and some popsicle sticks", "url" : "https://www.reddit.com/r/TerrainBuilding/comments/p0nlth/i_made_this_jig_for_making_corrugated_metal_with/"}
|
json_instruct
|
{"type": "object", "properties": {"author": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "name"]}, "date": {"type": "object", "properties": {"day": {"type": "integer"}, "full": {"type": "integer"}, "month": {"type": "integer"}, "week": {"type": "integer"}}, "required": ["day", "full", "month", "week"]}, "id": {"type": "string"}, "picture": {"type": "object", "properties": {"filesize": {"type": "integer"}, "fullUrl": {"type": "string"}, "hash": {"type": "string"}, "height": {"type": "integer"}, "lqip": {"type": "string"}, "url": {"type": "string"}, "width": {"type": "integer"}}, "required": ["filesize", "fullUrl", "hash", "height", "lqip", "url", "width"]}, "score": {"type": "object", "properties": {"comments": {"type": "integer"}, "downs": {"type": "integer"}, "ratio": {"type": "integer"}, "ups": {"type": "integer"}, "value": {"type": "integer"}}, "required": ["comments", "downs", "ratio", "ups", "value"]}, "subreddit": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "name"]}, "tags": {"type": "array", "items": {}}, "title": {"type": "string"}, "url": {"type": "string"}}, "required": ["author", "date", "id", "picture", "score", "subreddit", "tags", "title", "url"], "$schema": "http://json-schema.org/draft-07/schema#"}
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.