input stringlengths 159 2.05k | output stringlengths 5 10.3k | task stringclasses 1
value | schema stringlengths 100 1.99k |
|---|---|---|---|
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"id": {"type": "string"}}, "required": ["id"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "4fa96872f6053b40d77ba74606288e99997d1ad4"} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}}, "required": ["id"], "$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"}, "type": {"type": "string"}, "exports": {"type": "string"}, "scripts": {"type": "object", "properties": {"prepublishOnly": {"type": "string"}, "test": {"type": "string"}, "coverage": {"type": "string"}}, "required": ["prepublishOnly", "test", "coverage"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "files": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "dependencies": {"type": "object", "properties": {"@myunisoft/httpie": {"type": "string"}, "tar-fs": {"type": "string"}}, "required": ["@myunisoft/httpie", "tar-fs"]}, "devDependencies": {"type": "object", "properties": {"@nodesecure/eslint-config": {"type": "string"}, "@slimio/is": {"type": "string"}, "@small-tech/esm-tape-runner": {"type": "string"}, "@small-tech/tap-monkey": {"type": "string"}, "c8": {"type": "string"}, "cross-env": {"type": "string"}, "dotenv": {"type": "string"}, "eslint": {"type": "string"}, "pkg-ok": {"type": "string"}, "tape": {"type": "string"}}, "required": ["@nodesecure/eslint-config", "@slimio/is", "@small-tech/esm-tape-runner", "@small-tech/tap-monkey", "c8", "cross-env", "dotenv", "eslint", "pkg-ok", "tape"]}, "engines": {"type": "object", "properties": {"node": {"type": "string"}}, "required": ["node"]}}, "required": ["name", "version", "description", "type", "exports", "scripts", "repository", "keywords", "files", "author", "license", "bugs", "homepage", "dependencies", "devDependencies", "engines"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "@nodesecure/github", "version" : "1.0.1", "description" : "Download repository from github", "type" : "module", "exports" : "./index.js", "scripts" : {"prepublishOnly" : "pkg-ok", "test" : "cross-env esm-tape-runner 'test/**/*.js' | tap-monkey", "coverage" : "c8 -r html npm test"}, "repository" : {"type" : "git", "url" : "git+https://github.com/NodeSecure/github.git"}, "keywords" : ["NodeSecure", "github", "download", "archive"], "files" : ["index.js", "index.d.ts"], "author" : "GENTILHOMME Thomas <gentilhomme.thomas@gmail.com>", "license" : "MIT", "bugs" : {"url" : "https://github.com/NodeSecure/github/issues"}, "homepage" : "https://github.com/NodeSecure/github#readme", "dependencies" : {"@myunisoft/httpie" : "^1.7.0", "tar-fs" : "^2.1.1"}, "devDependencies" : {"@nodesecure/eslint-config" : "^1.4.1", "@slimio/is" : "^1.5.1", "@small-tech/esm-tape-runner" : "^2.0.0", "@small-tech/tap-monkey" : "^1.4.0", "c8" : "^7.11.3", "cross-env" : "^7.0.3", "dotenv" : "^16.0.1", "eslint" : "^8.17.0", "pkg-ok" : "^3.0.0", "tape" : "^5.5.3"}, "engines" : {"node" : ">=16"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "type": {"type": "string"}, "exports": {"type": "string"}, "scripts": {"type": "object", "properties": {"prepublishOnly": {"type": "string"}, "test": {"type": "string"}, "coverage": {"type": "string"}}, "required": ["prepublishOnly", "test", "coverage"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "files": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "dependencies": {"type": "object", "properties": {"@myunisoft/httpie": {"type": "string"}, "tar-fs": {"type": "string"}}, "required": ["@myunisoft/httpie", "tar-fs"]}, "devDependencies": {"type": "object", "properties": {"@nodesecure/eslint-config": {"type": "string"}, "@slimio/is": {"type": "string"}, "@small-tech/esm-tape-runner": {"type": "string"}, "@small-tech/tap-monkey": {"type": "string"}, "c8": {"type": "string"}, "cross-env": {"type": "string"}, "dotenv": {"type": "string"}, "eslint": {"type": "string"}, "pkg-ok": {"type": "string"}, "tape": {"type": "string"}}, "required": ["@nodesecure/eslint-config", "@slimio/is", "@small-tech/esm-tape-runner", "@small-tech/tap-monkey", "c8", "cross-env", "dotenv", "eslint", "pkg-ok", "tape"]}, "engines": {"type": "object", "properties": {"node": {"type": "string"}}, "required": ["node"]}}, "required": ["name", "version", "description", "type", "exports", "scripts", "repository", "keywords", "files", "author", "license", "bugs", "homepage", "dependencies", "devDependencies", "engines"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"word" : "sultany", "definition" : "Sultanry. [Obs.] Fuller."} | json_instruct | {"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"900143509": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900143510": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900143511": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900143512": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900143513": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900143514": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900143515": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900143516": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}}, "required": ["900143509", "900143510", "900143511", "900143512", "900143513", "900143514", "900143515", "900143516"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"900143509" : {"nama" : "TPS 1", "dapil" : [1802, 11808, 2180706]}, "900143510" : {"nama" : "TPS 2", "dapil" : [1802, 11808, 2180706]}, "900143511" : {"nama" : "TPS 3", "dapil" : [1802, 11808, 2180706]}, "900143512" : {"nama" : "TPS 4", "dapil" : [1802, 11808, 2180706]}, "900143513" : {"nama" : "TPS 5", "dapil" : [1802, 11808, 2180706]}, "900143514" : {"nama" : "TPS 6", "dapil" : [1802, 11808, 2180706]}, "900143515" : {"nama" : "TPS 7", "dapil" : [1802, 11808, 2180706]}, "900143516" : {"nama" : "TPS 8", "dapil" : [1802, 11808, 2180706]}} | json_instruct | {"type": "object", "properties": {"900143509": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900143510": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900143511": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900143512": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900143513": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900143514": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900143515": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900143516": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}}, "required": ["900143509", "900143510", "900143511", "900143512", "900143513", "900143514", "900143515", "900143516"], "$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": {"title": {"type": "string"}, "description": {"type": "string"}, "price": {"type": "integer"}, "available": {"type": "integer"}, "image": {"type": "string"}, "id": {"type": "string"}}, "required": ["title", "description", "price", "available", "image", "id"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"title" : "Kona Operator", "description" : "dh bike", "price" : 6849, "available" : 2, "image" : "https://images.konaworld.com/2021/med/operator_cr.jpg", "id" : "6ecd6c6a-e77c-4f05-8af9-89ae9524cf76"}, {"title" : "Kona Remote 160", "description" : "electro bike", "price" : 9849, "available" : 2, "image" : "https://images.konaworld.com/2021/med/remote_160.jpg", "id" : "506d4ad8-84ed-49d8-be3a-e2654b02e580"}, {"title" : "Kona Hei Hei", "description" : "bike bike", "price" : 4449, "available" : 2, "image" : "https://images.konaworld.com/2021/med/hei_hei.jpg", "id" : "4c26cc5b-18a4-4155-8ae0-508b43e09076"}, {"title" : "Kona Hei Hei CR", "description" : "bike bike", "price" : 4449, "available" : 2, "image" : "https://images.konaworld.com/2021/med/hei_hei_cr_dl.jpg", "id" : "fc2fae6f-745e-43da-b9d3-aaac8b584a6d"}, {"title" : "Kona Shonky", "description" : "dirt bike", "price" : 3179, "available" : 7, "image" : "https://images.konaworld.com/2021/med/shonky.jpg", "id" : "db73f340-eedf-40c5-80ec-0db6e78e15ea"}, {"title" : "Kona Honzo", "description" : "kid bike", "price" : 899, "available" : 11, "image" : "https://images.konaworld.com/2021/med/honzo_24.jpg", "id" : "a641368d-0fff-4e8b-a903-08584ab7d548"}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"title": {"type": "string"}, "description": {"type": "string"}, "price": {"type": "integer"}, "available": {"type": "integer"}, "image": {"type": "string"}, "id": {"type": "string"}}, "required": ["title", "description", "price", "available", "image", "id"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"translations": {"type": "object", "properties": {"This file is too big to be opened. Please download the file instead.": {"type": "string"}, "Cannot read the file.": {"type": "string"}, "Invalid file path supplied.": {"type": "string"}, "The file is locked.": {"type": "string"}, "An internal server error occurred.": {"type": "string"}, "Cannot save file as it has been modified since opening": {"type": "string"}, "Insufficient permissions": {"type": "string"}, "File path not supplied": {"type": "string"}, "File mtime not supplied": {"type": "string"}, "saving...": {"type": "string"}, "saved!": {"type": "string"}, "failed!": {"type": "string"}, "Saved": {"type": "string"}, "There was a problem saving your changes. Click to resume editing.": {"type": "string"}, "Open in Text Editor": {"type": "string"}, "An error occurred!": {"type": "string"}, "Text file": {"type": "string"}, "New text file.txt": {"type": "string"}}, "required": ["This file is too big to be opened. Please download the file instead.", "Cannot read the file.", "Invalid file path supplied.", "The file is locked.", "An internal server error occurred.", "Cannot save file as it has been modified since opening", "Insufficient permissions", "File path not supplied", "File mtime not supplied", "saving...", "saved!", "failed!", "Saved", "There was a problem saving your changes. Click to resume editing.", "Open in Text Editor", "An error occurred!", "Text file", "New text file.txt"]}, "pluralForm": {"type": "string"}}, "required": ["translations", "pluralForm"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"translations" : {"This file is too big to be opened. Please download the file instead." : "\u0627\u0644\u0645\u0644\u0641 \u0643\u0628\u064a\u0631 \u0644\u0644\u063a\u0627\u064a\u0629 \u0648\u0644\u0627 \u064a\u0645\u0643\u0646 \u0641\u062a\u062d\u0647. \u064a\u064f\u0631\u062c\u0649 \u062a\u0646\u0632\u064a\u0644 \u0627\u0644\u0645\u0644\u0641 \u0628\u062f\u0644\u064b\u0627 \u0645\u0646 \u0630\u0644\u0643.", "Cannot read the file." : "\u062a\u0639\u0630\u0651\u0631\u062a \u0642\u0631\u0627\u0621\u0629 \u0627\u0644\u0645\u0644\u0641.", "Invalid file path supplied." : "\u062a\u0645 \u062a\u0642\u062f\u064a\u0645 \u0645\u0633\u0627\u0631 \u0645\u0644\u0641 \u063a\u064a\u0631 \u0635\u0627\u0644\u062d.", "The file is locked." : "\u0627\u0644\u0645\u0644\u0641 \u0645\u0642\u0641\u0644.", "An internal server error occurred." : "\u062d\u062f\u062b \u062e\u0637\u0623 \u062f\u0627\u062e\u0644\u064a \u0641\u064a \u0627\u0644\u062e\u0627\u062f\u0645.", "Cannot save file as it has been modified since opening" : "\u062a\u0639\u0630\u0651\u0631 \u062d\u0641\u0638 \u0627\u0644\u0645\u0644\u0641 \u0628\u0633\u0628\u0628 \u062a\u0639\u062f\u064a\u0644\u0647 \u0645\u0646\u0630 \u0641\u062a\u062d\u0647", "Insufficient permissions" : "\u0623\u0630\u0648\u0646\u0627\u062a \u063a\u064a\u0631 \u0643\u0627\u0641\u064a\u0629", "File path not supplied" : "\u0645\u0633\u0627\u0631 \u0627\u0644\u0645\u0644\u0641 \u063a\u064a\u0631 \u0645\u0648\u062c\u0648\u062f", "File mtime not supplied" : "\u0648\u0642\u062a \u0627\u0644\u062a\u0639\u062f\u064a\u0644 \u0627\u0644\u0623\u062e\u064a\u0631 \u0644\u0644\u0645\u0644\u0641 \u063a\u064a\u0631 \u0645\u0648\u062c\u0648\u062f", "saving..." : "\u062c\u0627\u0631\u064d \u0627\u0644\u062d\u0641\u0638...", "saved!" : "\u062a\u0645 \u0627\u0644\u062d\u0641\u0638!", "failed!" : "\u0641\u0634\u0644\u062a \u0627\u0644\u0645\u0647\u0645\u0629!", "Saved" : "\u062a\u0645 \u0627\u0644\u062d\u0641\u0638", "There was a problem saving your changes. Click to resume editing." : "\u062d\u062f\u062b\u062a \u0645\u0634\u0643\u0644\u0629 \u0641\u064a \u062d\u0641\u0638 \u062a\u063a\u064a\u064a\u0631\u0627\u062a\u0643. \u0627\u0646\u0642\u0631 \u0644\u0627\u0633\u062a\u0626\u0646\u0627\u0641 \u0627\u0644\u062a\u062d\u0631\u064a\u0631.", "Open in Text Editor" : "\u0641\u062a\u062d \u0641\u064a \u0645\u062d\u0631\u0631 \u0627\u0644\u0646\u0635\u0648\u0635", "An error occurred!" : "\u062d\u062f\u062b \u062e\u0637\u0623!", "Text file" : "\u0645\u0644\u0641 \u0646\u0635\u064a", "New text file.txt" : "\u0645\u0644\u0641 \u0646\u0635\u064a \u062c\u062f\u064a\u062f fille.txt"}, "pluralForm" : "nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;"} | json_instruct | {"type": "object", "properties": {"translations": {"type": "object", "properties": {"This file is too big to be opened. Please download the file instead.": {"type": "string"}, "Cannot read the file.": {"type": "string"}, "Invalid file path supplied.": {"type": "string"}, "The file is locked.": {"type": "string"}, "An internal server error occurred.": {"type": "string"}, "Cannot save file as it has been modified since opening": {"type": "string"}, "Insufficient permissions": {"type": "string"}, "File path not supplied": {"type": "string"}, "File mtime not supplied": {"type": "string"}, "saving...": {"type": "string"}, "saved!": {"type": "string"}, "failed!": {"type": "string"}, "Saved": {"type": "string"}, "There was a problem saving your changes. Click to resume editing.": {"type": "string"}, "Open in Text Editor": {"type": "string"}, "An error occurred!": {"type": "string"}, "Text file": {"type": "string"}, "New text file.txt": {"type": "string"}}, "required": ["This file is too big to be opened. Please download the file instead.", "Cannot read the file.", "Invalid file path supplied.", "The file is locked.", "An internal server error occurred.", "Cannot save file as it has been modified since opening", "Insufficient permissions", "File path not supplied", "File mtime not supplied", "saving...", "saved!", "failed!", "Saved", "There was a problem saving your changes. Click to resume editing.", "Open in Text Editor", "An error occurred!", "Text file", "New text file.txt"]}, "pluralForm": {"type": "string"}}, "required": ["translations", "pluralForm"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"name": {"type": "string"}, "bundleId": {"type": "string"}, "uri": {"type": "string"}, "icon": {"type": "string"}, "bypasses": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"]}}}, "required": ["name", "bundleId", "uri", "icon", "bypasses"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "McDonald's (Global)", "bundleId" : "com.mcdonalds.mobileapp", "uri" : "https://apps.apple.com/gb/app/mcdonalds/id1217507712", "icon" : "https://is1-ssl.mzstatic.com/image/thumb/Purple126/v4/d5/18/e2/d518e20b-3434-0a18-a89f-c03563d97f92/source/512x512bb.jpg", "bypasses" : [{"name" : "Liberty Lite (Beta)"}, {"name" : "Hestia"}]} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "bundleId": {"type": "string"}, "uri": {"type": "string"}, "icon": {"type": "string"}, "bypasses": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"]}}}, "required": ["name", "bundleId", "uri", "icon", "bypasses"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"parent": {"type": "string"}, "textures": {"type": "object", "properties": {"layer0": {"type": "string"}}, "required": ["layer0"]}}, "required": ["parent", "textures"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"parent" : "item/handheld", "textures" : {"layer0" : "amethysttoolsmod:items/iron_pickaxe_amethyst"}} | json_instruct | {"type": "object", "properties": {"parent": {"type": "string"}, "textures": {"type": "object", "properties": {"layer0": {"type": "string"}}, "required": ["layer0"]}}, "required": ["parent", "textures"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"id": {"type": "integer"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"src:alt_label": {"type": "string"}, "src:geom": {"type": "string"}, "wof:geomhash": {"type": "string"}, "wof:id": {"type": "integer"}, "wof:repo": {"type": "string"}}, "required": ["src:alt_label", "src:geom", "wof:geomhash", "wof:id", "wof:repo"]}, "bbox": {"type": "array", "items": {"type": "number"}}, "geometry": {"type": "object", "properties": {"coordinates": {"type": "array", "items": {"type": "number"}}, "type": {"type": "string"}}, "required": ["coordinates", "type"]}}, "required": ["id", "type", "properties", "bbox", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : 101938217, "type" : "Feature", "properties" : {"src:alt_label" : "quattroshapes_pg", "src:geom" : "quattroshapes_pg", "wof:geomhash" : "c50f8b019ad41a174b45bc32be00195b", "wof:id" : 101938217, "wof:repo" : "whosonfirst-data-admin-au"}, "bbox" : [147.1713, -41.57151, 147.1713, -41.57151], "geometry" : {"coordinates" : [147.1713, -41.57151], "type" : "Point"}} | json_instruct | {"type": "object", "properties": {"id": {"type": "integer"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"src:alt_label": {"type": "string"}, "src:geom": {"type": "string"}, "wof:geomhash": {"type": "string"}, "wof:id": {"type": "integer"}, "wof:repo": {"type": "string"}}, "required": ["src:alt_label", "src:geom", "wof:geomhash", "wof:id", "wof:repo"]}, "bbox": {"type": "array", "items": {"type": "number"}}, "geometry": {"type": "object", "properties": {"coordinates": {"type": "array", "items": {"type": "number"}}, "type": {"type": "string"}}, "required": ["coordinates", "type"]}}, "required": ["id", "type", "properties", "bbox", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"kind": {"type": "string"}, "name": {"type": "string"}, "href": {"type": "string"}, "description": {"type": "string"}, "refs": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "href": {"type": "string"}, "description": {"type": "string"}}, "required": ["name", "href", "description"]}}}, "required": ["kind", "name", "href", "description", "refs"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"kind" : "Method", "name" : "String.repeat", "href" : "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/repeat", "description" : "The repeat() method constructs and returns a new string which contains the specified number of copies of the string on which it was called, concatenated together.", "refs" : [{"name" : "ECMAScript Language Specification", "href" : "https://tc39.es/ecma262/multipage/text-processing.html#sec-string.prototype.repeat", "description" : "(ECMAScript) # sec-string.prototype.repeat"}]} | json_instruct | {"type": "object", "properties": {"kind": {"type": "string"}, "name": {"type": "string"}, "href": {"type": "string"}, "description": {"type": "string"}, "refs": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "href": {"type": "string"}, "description": {"type": "string"}}, "required": ["name", "href", "description"]}}}, "required": ["kind", "name", "href", "description", "refs"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"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" : [[[-79.155229, 37.4039], [-79.140119, 37.412413], [-79.136662, 37.408534], [-79.140344, 37.406448], [-79.141098, 37.402118], [-79.142943, 37.400717], [-79.153062, 37.398874], [-79.155229, 37.4039]]]}, "type" : "Feature", "properties" : {"cartodb_id" : 77897}}]} | 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": {"@metadata": {"type": "object", "properties": {"authors": {"type": "array", "items": {"type": "string"}}}, "required": ["authors"]}, "nuke-submit-user": {"type": "string"}, "nuke-select": {"type": "string"}}, "required": ["@metadata", "nuke-submit-user", "nuke-select"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"@metadata" : {"authors" : ["Imre", "\u05e4\u05d5\u05d9\u05dc\u05d9\u05e9\u05e2\u05e8"]}, "nuke-submit-user" : "\u05e6\u05d9\u05d9\u05d2\u05df", "nuke-select" : "\u05d0\u05d5\u05d9\u05e1\u05d5\u05d5\u05d9\u05d9\u05dc\u05df: $1"} | json_instruct | {"type": "object", "properties": {"@metadata": {"type": "object", "properties": {"authors": {"type": "array", "items": {"type": "string"}}}, "required": ["authors"]}, "nuke-submit-user": {"type": "string"}, "nuke-select": {"type": "string"}}, "required": ["@metadata", "nuke-submit-user", "nuke-select"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"citations": {"type": "array", "items": {"type": "object", "properties": {"textCitation": {"type": "string"}}, "required": ["textCitation"]}}, "names": {"type": "array", "items": {"type": "string"}}, "language": {"type": "string"}, "lookupTerms": {"type": "array", "items": {"type": "string"}}, "metaLanguage": {"type": "string"}, "remarks": {"type": "string"}, "statement": {"type": "string"}}, "required": ["citations", "names", "language", "lookupTerms", "metaLanguage", "remarks", "statement"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"citations" : [{"textCitation" : "[See frsucmpt2 on Metamath](http://us.metamath.org/mpegif/frsucmpt2.html)"}], "names" : ["frsucmpt2"], "language" : "METAMATH_SET_MM", "lookupTerms" : ["#T_cF", "#T_wceq", "#T_crdg--1", "#T_vx", "#T_cmpt--1", "#T_cvv", "#T_cmpt--2", "#T_cC", "#T_crdg--2", "#T_cA", "#T_cres", "#T_com", "#T_vy", "#T_wceq", "#T_vx", "#T_wi", "#T_cE", "#T_wceq", "#T_cC", "#T_vy", "#T_wceq", "#T_cF", "#T_cfv", "#T_cB", "#T_wi", "#T_cE", "#T_wceq", "#T_cD", "#T_cB", "#T_wcel", "#T_com", "#T_wa", "#T_cD", "#T_wcel", "#T_cV", "#T_wi", "#T_cF", "#T_cfv", "#T_csuc", "#T_cB", "#T_wceq", "#T_cD", "#T_cA", "#T_vy", "#T_cB", "#T_vy", "#T_cC", "#T_vy", "#T_cD", "#T_vy", "#T_cE", "#T_vx"], "metaLanguage" : "METAMATH", "remarks" : " The successor value resulting from finite recursive definition generation (special case where the generation function is expressed in maps-to notation), using double-substitution instead of a bound variable condition. (Contributed by Mario Carneiro, 11-Sep-2015.) ", "statement" : "frsucmpt2.1 $e |- F = ( rec ( ( x e. _V |-> C ) , A ) |` _om ) $.\nfrsucmpt2.2 $e |- ( y = x -> E = C ) $.\nfrsucmpt2.3 $e |- ( y = ( F ` B ) -> E = D ) $.\nfrsucmpt2 $p |- ( ( B e. _om /\\ D e. V ) -> ( F ` suc B ) = D ) $.\n$d A y $.\n$d B y $.\n$d C y $.\n$d D y $.\n$d E x $."} | json_instruct | {"type": "object", "properties": {"citations": {"type": "array", "items": {"type": "object", "properties": {"textCitation": {"type": "string"}}, "required": ["textCitation"]}}, "names": {"type": "array", "items": {"type": "string"}}, "language": {"type": "string"}, "lookupTerms": {"type": "array", "items": {"type": "string"}}, "metaLanguage": {"type": "string"}, "remarks": {"type": "string"}, "statement": {"type": "string"}}, "required": ["citations", "names", "language", "lookupTerms", "metaLanguage", "remarks", "statement"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"currentVersion": {"type": "string"}}, "required": ["currentVersion"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"currentVersion" : "git-Paper-1618 (MC: 1.12.2)"} | json_instruct | {"type": "object", "properties": {"currentVersion": {"type": "string"}}, "required": ["currentVersion"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"version": {"type": "number"}, "people": {"type": "array", "items": {"type": "object", "properties": {"pose_keypoints_2d": {"type": "array", "items": {"type": "number"}}, "face_keypoints_2d": {"type": "array", "items": {}}, "hand_left_keypoints_2d": {"type": "array", "items": {}}, "hand_right_keypoints_2d": {"type": "array", "items": {}}, "pose_keypoints_3d": {"type": "array", "items": {}}, "face_keypoints_3d": {"type": "array", "items": {}}, "hand_left_keypoints_3d": {"type": "array", "items": {}}, "hand_right_keypoints_3d": {"type": "array", "items": {}}}, "required": ["pose_keypoints_2d", "face_keypoints_2d", "hand_left_keypoints_2d", "hand_right_keypoints_2d", "pose_keypoints_3d", "face_keypoints_3d", "hand_left_keypoints_3d", "hand_right_keypoints_3d"]}}}, "required": ["version", "people"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"version" : 1.2, "people" : [{"pose_keypoints_2d" : [433.09, 97.3862, 1, 435.178, 125.278, 1, 419.416, 126.053, 1, 417.774, 93.5327, 1, 427.966, 73.3605, 1, 442.882, 138.674, 1, 457.509, 103.288, 1, 450.803, 71.3195, 1, 426.634, 188.524, 1, 429.045, 244.966, 1, 425.544, 284.522, 1, 445.745, 186.908, 1, 446.527, 243.926, 1, 437.422, 286.528, 1, 427.441, 95.2283, 1, 433.851, 94.7539, 1, 433.303, 106.661, 1, 440.515, 108.78, 1], "face_keypoints_2d" : [], "hand_left_keypoints_2d" : [], "hand_right_keypoints_2d" : [], "pose_keypoints_3d" : [], "face_keypoints_3d" : [], "hand_left_keypoints_3d" : [], "hand_right_keypoints_3d" : []}]} | json_instruct | {"type": "object", "properties": {"version": {"type": "number"}, "people": {"type": "array", "items": {"type": "object", "properties": {"pose_keypoints_2d": {"type": "array", "items": {"type": "number"}}, "face_keypoints_2d": {"type": "array", "items": {}}, "hand_left_keypoints_2d": {"type": "array", "items": {}}, "hand_right_keypoints_2d": {"type": "array", "items": {}}, "pose_keypoints_3d": {"type": "array", "items": {}}, "face_keypoints_3d": {"type": "array", "items": {}}, "hand_left_keypoints_3d": {"type": "array", "items": {}}, "hand_right_keypoints_3d": {"type": "array", "items": {}}}, "required": ["pose_keypoints_2d", "face_keypoints_2d", "hand_left_keypoints_2d", "hand_right_keypoints_2d", "pose_keypoints_3d", "face_keypoints_3d", "hand_left_keypoints_3d", "hand_right_keypoints_3d"]}}}, "required": ["version", "people"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"extends": {"type": "array", "items": {"type": "string"}}}, "required": ["extends"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"extends" : ["@negebauer/eslint-config-base"]} | json_instruct | {"type": "object", "properties": {"extends": {"type": "array", "items": {"type": "string"}}}, "required": ["extends"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"success": {"type": "boolean"}, "code": {"type": "string"}, "data": {"type": "object", "properties": {"states": {"type": "null"}, "districts": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "registeredUsers": {"type": "integer"}}, "required": ["name", "registeredUsers"]}}, "pincodes": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "registeredUsers": {"type": "integer"}}, "required": ["name", "registeredUsers"]}}}, "required": ["states", "districts", "pincodes"]}, "responseTimestamp": {"type": "integer"}}, "required": ["success", "code", "data", "responseTimestamp"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"success" : true, "code" : "SUCCESS", "data" : {"states" : null, "districts" : [{"name" : "kamrup metropolitan", "registeredUsers" : 630676}, {"name" : "nagaon", "registeredUsers" : 215750}, {"name" : "barpeta", "registeredUsers" : 191700}, {"name" : "cachar", "registeredUsers" : 185350}, {"name" : "dibrugarh", "registeredUsers" : 170604}, {"name" : "sonitpur", "registeredUsers" : 170519}, {"name" : "kamrup", "registeredUsers" : 159018}, {"name" : "tinsukia", "registeredUsers" : 144571}, {"name" : "jorhat", "registeredUsers" : 125247}, {"name" : "dhubri", "registeredUsers" : 109873}], "pincodes" : [{"name" : "781032", "registeredUsers" : 49999}, {"name" : "781022", "registeredUsers" : 40254}, {"name" : "781001", "registeredUsers" : 36847}, {"name" : "781038", "registeredUsers" : 32353}, {"name" : "783380", "registeredUsers" : 31551}, {"name" : "781011", "registeredUsers" : 30045}, {"name" : "785001", "registeredUsers" : 29194}, {"name" : "786001", "registeredUsers" : 28664}, {"name" : "781028", "registeredUsers" : 26557}, {"name" : "782435", "registeredUsers" : 26455}]}, "responseTimestamp" : 1630501500251} | json_instruct | {"type": "object", "properties": {"success": {"type": "boolean"}, "code": {"type": "string"}, "data": {"type": "object", "properties": {"states": {"type": "null"}, "districts": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "registeredUsers": {"type": "integer"}}, "required": ["name", "registeredUsers"]}}, "pincodes": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "registeredUsers": {"type": "integer"}}, "required": ["name", "registeredUsers"]}}}, "required": ["states", "districts", "pincodes"]}, "responseTimestamp": {"type": "integer"}}, "required": ["success", "code", "data", "responseTimestamp"], "$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/corrugated_metal_slab_bottom_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": {"replace": {"type": "boolean"}, "values": {"type": "array", "items": {"type": "string"}}}, "required": ["replace", "values"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"replace" : false, "values" : ["minecraft:pink_concrete", "chipped:pink_concrete_1", "chipped:pink_concrete_2", "chipped:pink_concrete_3", "chipped:pink_concrete_4", "chipped:pink_concrete_5", "chipped:pink_concrete_6", "chipped:pink_concrete_7", "chipped:pink_concrete_8", "chipped:pink_concrete_9", "chipped:pink_concrete_10", "chipped:pink_concrete_11", "chipped:pink_concrete_12", "chipped:pink_concrete_13", "chipped:pink_concrete_14", "chipped:pink_concrete_15", "chipped:pink_concrete_16", "chipped:pink_concrete_17", "chipped:pink_concrete_18"]} | json_instruct | {"type": "object", "properties": {"replace": {"type": "boolean"}, "values": {"type": "array", "items": {"type": "string"}}}, "required": ["replace", "values"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"accountLinkingWhitelistedDomains": {"type": "null"}, "asin": {"type": "string"}, "averageRating": {"type": "integer"}, "canDisable": {"type": "boolean"}, "capabilities": {"type": "null"}, "category": {"type": "null"}, "description": {"type": "string"}, "enablement": {"type": "null"}, "exampleInteractions": {"type": "array", "items": {"type": "string"}}, "firstReleaseDate": {"type": "number"}, "homepageLinkText": {"type": "null"}, "homepageLinkUrl": {"type": "null"}, "id": {"type": "string"}, "imageAltText": {"type": "string"}, "imageUrl": {"type": "string"}, "inAppPurchasingSupported": {"type": "boolean"}, "launchPhrase": {"type": "string"}, "name": {"type": "string"}, "numberOfReviews": {"type": "integer"}, "pamsPartnerId": {"type": "string"}, "permissions": {"type": "null"}, "privacyPolicyUrl": {"type": "string"}, "shortDescription": {"type": "string"}, "skillTypes": {"type": "null"}, "stage": {"type": "string"}, "termsOfUseUrl": {"type": "null"}, "vendorId": {"type": "string"}, "vendorName": {"type": "string"}}, "required": ["accountLinkingWhitelistedDomains", "asin", "averageRating", "canDisable", "capabilities", "category", "description", "enablement", "exampleInteractions", "firstReleaseDate", "homepageLinkText", "homepageLinkUrl", "id", "imageAltText", "imageUrl", "inAppPurchasingSupported", "launchPhrase", "name", "numberOfReviews", "pamsPartnerId", "permissions", "privacyPolicyUrl", "shortDescription", "skillTypes", "stage", "termsOfUseUrl", "vendorId", "vendorName"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"accountLinkingWhitelistedDomains" : null, "asin" : "B01MXQOEUC", "averageRating" : 4, "canDisable" : true, "capabilities" : null, "category" : null, "description" : "When asked, Alexa will tell you how many days until your next visit to Disney World. Alexa can also tell you the operating hours for each of the four major parks at Disney World.\n\nA valid My Disney Visit account is required. Go to MyDisneyVisit.com or download the My Disney Visit app to sign up for free today!\n\nMy Disney Visit is in no way affiliated with The Walt Disney Company, Disney World, Disneyland, or any of its subsidiaries.", "enablement" : null, "exampleInteractions" : ["Alexa, ask My Disney Visit how long until we go to Disney World", "Alexa, ask My Disney Visit what time the Magic Kingdom opens tomorrow", "Alexa, ask My Disney Visit to give me the schedule for Epcot on February third"], "firstReleaseDate" : 1482590962.384, "homepageLinkText" : null, "homepageLinkUrl" : null, "id" : "amzn1.ask.skill.05922eb0-73df-448d-a29c-1fa6863f372d", "imageAltText" : "My Disney Visit icon", "imageUrl" : "https://github.com/dale3h/alexa-skills-list/raw/master/skills/B01MXQOEUC/skill_icon", "inAppPurchasingSupported" : false, "launchPhrase" : "my disney visit", "name" : "My Disney Visit", "numberOfReviews" : 1, "pamsPartnerId" : "cnQ7lZObhjtpRRSfPiYzHuoqd", "permissions" : null, "privacyPolicyUrl" : "https://www.mydisneyvisit.com/Home/PrivacyPolicy", "shortDescription" : "My Disney Visit", "skillTypes" : null, "stage" : "live", "termsOfUseUrl" : null, "vendorId" : "M1XBN45WYJGMUO", "vendorName" : "My Disney Visit"} | json_instruct | {"type": "object", "properties": {"accountLinkingWhitelistedDomains": {"type": "null"}, "asin": {"type": "string"}, "averageRating": {"type": "integer"}, "canDisable": {"type": "boolean"}, "capabilities": {"type": "null"}, "category": {"type": "null"}, "description": {"type": "string"}, "enablement": {"type": "null"}, "exampleInteractions": {"type": "array", "items": {"type": "string"}}, "firstReleaseDate": {"type": "number"}, "homepageLinkText": {"type": "null"}, "homepageLinkUrl": {"type": "null"}, "id": {"type": "string"}, "imageAltText": {"type": "string"}, "imageUrl": {"type": "string"}, "inAppPurchasingSupported": {"type": "boolean"}, "launchPhrase": {"type": "string"}, "name": {"type": "string"}, "numberOfReviews": {"type": "integer"}, "pamsPartnerId": {"type": "string"}, "permissions": {"type": "null"}, "privacyPolicyUrl": {"type": "string"}, "shortDescription": {"type": "string"}, "skillTypes": {"type": "null"}, "stage": {"type": "string"}, "termsOfUseUrl": {"type": "null"}, "vendorId": {"type": "string"}, "vendorName": {"type": "string"}}, "required": ["accountLinkingWhitelistedDomains", "asin", "averageRating", "canDisable", "capabilities", "category", "description", "enablement", "exampleInteractions", "firstReleaseDate", "homepageLinkText", "homepageLinkUrl", "id", "imageAltText", "imageUrl", "inAppPurchasingSupported", "launchPhrase", "name", "numberOfReviews", "pamsPartnerId", "permissions", "privacyPolicyUrl", "shortDescription", "skillTypes", "stage", "termsOfUseUrl", "vendorId", "vendorName"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"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" : "1535630864", "txid" : "456339c1b6ffead840a8d1b32128aef1e69b3b22b0c81c1c875f6b1a3eac6c26", "block" : 1425554, "in" : [{"coinbase" : "0392c0150410de875b082001075801000000052f6d70682f"}], "sent" : 2500000000, "out" : [{"value" : 0}, {"addr" : "MJpTHvn5TSgzr6mNsdEu28zMnQX232jr9q", "value" : 2500000000}]}] | 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#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"genres": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "title": {"type": "string"}}, "required": ["id", "name", "title"]}}}, "required": ["genres"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"genres" : [{"id" : 1, "name" : "action", "title" : "A\u00e7\u00e3o"}, {"id" : 2, "name" : "comedy", "title" : "Com\u00e9dia"}, {"id" : 3, "name" : "documentary", "title" : "Document\u00e1rio"}, {"id" : 4, "name" : "drama", "title" : "Drama"}, {"id" : 5, "name" : "horror", "title" : "Terror"}, {"id" : 6, "name" : "family", "title" : "Fam\u00edlia"}]} | json_instruct | {"type": "object", "properties": {"genres": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "title": {"type": "string"}}, "required": ["id", "name", "title"]}}}, "required": ["genres"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"name": {"type": "string"}, "namespace": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "author": {"type": "string"}, "match": {"type": "array", "items": {"type": "string"}}, "icon": {"type": "string"}}, "required": ["name", "namespace", "version", "description", "author", "match", "icon"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "npmjs-copy-name-only", "namespace" : "https://github.com/rxliuli/userjs", "version" : "0.1.0", "description" : "npm.js \u4ec5\u590d\u5236\u540d\u5b57", "author" : "rxliuli", "match" : ["https://www.npmjs.com/package/*"], "icon" : "https://www.google.com/s2/favicons?domain=npmjs.com"} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "namespace": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "author": {"type": "string"}, "match": {"type": "array", "items": {"type": "string"}}, "icon": {"type": "string"}}, "required": ["name", "namespace", "version", "description", "author", "match", "icon"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"word": {"type": "string"}, "definitions": {"type": "array", "items": {"type": "string"}}, "parts-of-speech": {"type": "string"}}, "required": ["word", "definitions", "parts-of-speech"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"word" : "Entertain", "definitions" : ["Provide (someone) with amusement or enjoyment.", "Receive (someone) as a guest and provide them with food and drink.", "Give attention or consideration to (an idea or feeling)"], "parts-of-speech" : "Verb"} | json_instruct | {"type": "object", "properties": {"word": {"type": "string"}, "definitions": {"type": "array", "items": {"type": "string"}}, "parts-of-speech": {"type": "string"}}, "required": ["word", "definitions", "parts-of-speech"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"scripts": {"type": "object", "properties": {"fmt": {"type": "string"}, "lint": {"type": "string"}, "serve": {"type": "string"}}, "required": ["fmt", "lint", "serve"]}, "devDependencies": {"type": "object", "properties": {"@types/node": {"type": "string"}, "@typescript-eslint/eslint-plugin": {"type": "string"}, "@typescript-eslint/parser": {"type": "string"}, "eslint": {"type": "string"}, "eslint-config-prettier": {"type": "string"}, "eslint-plugin-prettier": {"type": "string"}, "file-loader": {"type": "string"}, "prettier": {"type": "string"}, "ts-loader": {"type": "string"}, "ts-node": {"type": "string"}, "typescript": {"type": "string"}, "webpack": {"type": "string"}, "webpack-cli": {"type": "string"}, "webpack-dev-server": {"type": "string"}}, "required": ["@types/node", "@typescript-eslint/eslint-plugin", "@typescript-eslint/parser", "eslint", "eslint-config-prettier", "eslint-plugin-prettier", "file-loader", "prettier", "ts-loader", "ts-node", "typescript", "webpack", "webpack-cli", "webpack-dev-server"]}, "dependencies": {"type": "object", "properties": {"axios": {"type": "string"}, "fetch-jsonp": {"type": "string"}}, "required": ["axios", "fetch-jsonp"]}}, "required": ["scripts", "devDependencies", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"scripts" : {"fmt" : "npx prettier --write package.json \"**/*.{js,ts}\"", "lint" : "npx eslint \"src/*.{js,ts}\"", "serve" : "npx webpack serve"}, "devDependencies" : {"@types/node" : "^17.0.23", "@typescript-eslint/eslint-plugin" : "^5.16.0", "@typescript-eslint/parser" : "^5.16.0", "eslint" : "^8.12.0", "eslint-config-prettier" : "^8.5.0", "eslint-plugin-prettier" : "^4.0.0", "file-loader" : "^6.2.0", "prettier" : "^2.6.1", "ts-loader" : "^9.2.8", "ts-node" : "^10.7.0", "typescript" : "^4.6.3", "webpack" : "^5.70.0", "webpack-cli" : "^4.9.2", "webpack-dev-server" : "^4.7.4"}, "dependencies" : {"axios" : "^0.26.1", "fetch-jsonp" : "^1.2.1"}} | json_instruct | {"type": "object", "properties": {"scripts": {"type": "object", "properties": {"fmt": {"type": "string"}, "lint": {"type": "string"}, "serve": {"type": "string"}}, "required": ["fmt", "lint", "serve"]}, "devDependencies": {"type": "object", "properties": {"@types/node": {"type": "string"}, "@typescript-eslint/eslint-plugin": {"type": "string"}, "@typescript-eslint/parser": {"type": "string"}, "eslint": {"type": "string"}, "eslint-config-prettier": {"type": "string"}, "eslint-plugin-prettier": {"type": "string"}, "file-loader": {"type": "string"}, "prettier": {"type": "string"}, "ts-loader": {"type": "string"}, "ts-node": {"type": "string"}, "typescript": {"type": "string"}, "webpack": {"type": "string"}, "webpack-cli": {"type": "string"}, "webpack-dev-server": {"type": "string"}}, "required": ["@types/node", "@typescript-eslint/eslint-plugin", "@typescript-eslint/parser", "eslint", "eslint-config-prettier", "eslint-plugin-prettier", "file-loader", "prettier", "ts-loader", "ts-node", "typescript", "webpack", "webpack-cli", "webpack-dev-server"]}, "dependencies": {"type": "object", "properties": {"axios": {"type": "string"}, "fetch-jsonp": {"type": "string"}}, "required": ["axios", "fetch-jsonp"]}}, "required": ["scripts", "devDependencies", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "array", "items": {"type": "integer"}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [91, 13, 193, 211, 189, 57, 69, 188, 211, 212, 129, 67, 191, 9, 97, 40, 206, 138, 13, 213, 158, 221, 55, 22, 218, 96, 25, 191, 196, 96, 33, 113, 183, 129, 241, 251, 209, 228, 189, 121, 215, 27, 155, 105, 88, 11, 243, 23, 10, 38, 64, 239, 5, 171, 120, 147, 75, 38, 77, 130, 196, 189, 16, 214] | json_instruct | {"type": "array", "items": {"type": "integer"}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "author": {"type": "string"}, "description": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "license": {"type": "string"}, "homepage": {"type": "string"}, "private": {"type": "boolean"}, "ignore": {"type": "array", "items": {"type": "string"}}, "devDependencies": {"type": "object", "properties": {}, "required": []}, "dependencies": {"type": "object", "properties": {"angular": {"type": "string"}, "angular-ui-router": {"type": "string"}, "bootstrap": {"type": "string"}, "jquery": {"type": "string"}, "jquery-easing": {"type": "string"}, "font-awesome": {"type": "string"}, "angular-input-masks": {"type": "string"}, "angular-scroll": {"type": "string"}, "angular-animate": {"type": "string"}, "ngmap": {"type": "string"}}, "required": ["angular", "angular-ui-router", "bootstrap", "jquery", "jquery-easing", "font-awesome", "angular-input-masks", "angular-scroll", "angular-animate", "ngmap"]}}, "required": ["name", "version", "author", "description", "keywords", "license", "homepage", "private", "ignore", "devDependencies", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "sharpn", "version" : "1.0.0", "author" : "Nolan Corcoran", "description" : "Sharpn", "keywords" : ["AngularJS"], "license" : "ISC", "homepage" : "http://dmg-app.com", "private" : false, "ignore" : ["**/.*", "node_modules", "bower_components", "test", "tests"], "devDependencies" : {}, "dependencies" : {"angular" : "^1.6.4", "angular-ui-router" : "^1.0.4", "bootstrap" : "^3.3.7", "jquery" : "^3.2.1", "jquery-easing" : "*", "font-awesome" : "^4.7.0", "angular-input-masks" : "^2.6.0", "angular-scroll" : "^1.0.2", "angular-animate" : "^1.6.4", "ngmap" : "^1.18.4"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "author": {"type": "string"}, "description": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "license": {"type": "string"}, "homepage": {"type": "string"}, "private": {"type": "boolean"}, "ignore": {"type": "array", "items": {"type": "string"}}, "devDependencies": {"type": "object", "properties": {}, "required": []}, "dependencies": {"type": "object", "properties": {"angular": {"type": "string"}, "angular-ui-router": {"type": "string"}, "bootstrap": {"type": "string"}, "jquery": {"type": "string"}, "jquery-easing": {"type": "string"}, "font-awesome": {"type": "string"}, "angular-input-masks": {"type": "string"}, "angular-scroll": {"type": "string"}, "angular-animate": {"type": "string"}, "ngmap": {"type": "string"}}, "required": ["angular", "angular-ui-router", "bootstrap", "jquery", "jquery-easing", "font-awesome", "angular-input-masks", "angular-scroll", "angular-animate", "ngmap"]}}, "required": ["name", "version", "author", "description", "keywords", "license", "homepage", "private", "ignore", "devDependencies", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "array", "items": {"type": "array", "items": {"type": "string"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [["520103402001", "\u6c11\u751f\u8def\u5c45\u59d4\u4f1a", "111", "0"], ["520103402002", "\u7535\u53f0\u8857\u5c45\u59d4\u4f1a", "111", "0"], ["520103402003", "\u4e1c\u65b0\u8def\u5c45\u59d4\u4f1a", "111", "0"], ["520103402004", "\u83b2\u82b1\u5761\u5c45\u59d4\u4f1a", "111", "0"], ["520103402005", "\u5b9d\u5c71\u8def\u5c45\u59d4\u4f1a", "111", "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": {"type": {"type": "string"}, "group": {"type": "string"}, "pattern": {"type": "array", "items": {"type": "string"}}, "key": {"type": "object", "properties": {"w": {"type": "object", "properties": {"item": {"type": "string"}}, "required": ["item"]}}, "required": ["w"]}, "result": {"type": "object", "properties": {"item": {"type": "string"}, "count": {"type": "integer"}}, "required": ["item", "count"]}}, "required": ["type", "group", "pattern", "key", "result"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"type" : "minecraft:crafting_shaped", "group" : "carpet", "pattern" : ["ww"], "key" : {"w" : {"item" : "rubymod:ruby_wool"}}, "result" : {"item" : "rubymod:ruby_carpet", "count" : 3}} | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "group": {"type": "string"}, "pattern": {"type": "array", "items": {"type": "string"}}, "key": {"type": "object", "properties": {"w": {"type": "object", "properties": {"item": {"type": "string"}}, "required": ["item"]}}, "required": ["w"]}, "result": {"type": "object", "properties": {"item": {"type": "string"}, "count": {"type": "integer"}}, "required": ["item", "count"]}}, "required": ["type", "group", "pattern", "key", "result"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "style": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["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"}}, "required": ["name", "version", "description", "main", "style", "scripts", "repository", "keywords", "author", "license", "bugs", "homepage"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "leaflet-iconmaterial", "version" : "1.1.0", "description" : "Just another shameless copy of Awesome-Markers, but this time SVG-based with Material Icons: customizable fill and outline.", "main" : "dist/leaflet.icon-material.js", "style" : "dist/leaflet.icon-material.css", "scripts" : {"test" : "echo \"Error: no test specified\" && exit 1"}, "repository" : {"type" : "git", "url" : "git+https://github.com/ilyankou/Leaflet.IconMaterial.git"}, "keywords" : ["leaflet", "marker", "icon", "material"], "author" : "Ilya Ilyankou", "license" : "MIT", "bugs" : {"url" : "https://github.com/ilyankou/Leaflet.IconMaterial/issues"}, "homepage" : "https://github.com/ilyankou/Leaflet.IconMaterial#readme"} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "style": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["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"}}, "required": ["name", "version", "description", "main", "style", "scripts", "repository", "keywords", "author", "license", "bugs", "homepage"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"id": {"type": "integer"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"src:alt_label": {"type": "string"}, "src:geom": {"type": "string"}, "wof:geomhash": {"type": "string"}, "wof:id": {"type": "integer"}, "wof:repo": {"type": "string"}}, "required": ["src:alt_label", "src:geom", "wof:geomhash", "wof:id", "wof:repo"]}, "bbox": {"type": "array", "items": {"type": "number"}}, "geometry": {"type": "object", "properties": {"coordinates": {"type": "array", "items": {"type": "number"}}, "type": {"type": "string"}}, "required": ["coordinates", "type"]}}, "required": ["id", "type", "properties", "bbox", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : 404337109, "type" : "Feature", "properties" : {"src:alt_label" : "quattroshapes_pg", "src:geom" : "quattroshapes_pg", "wof:geomhash" : "9c6b02d5e4a0e7307e8e856754e78faa", "wof:id" : 404337109, "wof:repo" : "whosonfirst-data-admin-es"}, "bbox" : [-3.47746, 38.22776, -3.47746, 38.22776], "geometry" : {"coordinates" : [-3.47746, 38.22776], "type" : "Point"}} | json_instruct | {"type": "object", "properties": {"id": {"type": "integer"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"src:alt_label": {"type": "string"}, "src:geom": {"type": "string"}, "wof:geomhash": {"type": "string"}, "wof:id": {"type": "integer"}, "wof:repo": {"type": "string"}}, "required": ["src:alt_label", "src:geom", "wof:geomhash", "wof:id", "wof:repo"]}, "bbox": {"type": "array", "items": {"type": "number"}}, "geometry": {"type": "object", "properties": {"coordinates": {"type": "array", "items": {"type": "number"}}, "type": {"type": "string"}}, "required": ["coordinates", "type"]}}, "required": ["id", "type", "properties", "bbox", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "author": {"type": "string"}, "license": {"type": "string"}, "private": {"type": "boolean"}, "workspaces": {"type": "array", "items": {"type": "string"}}, "keywords": {"type": "array", "items": {"type": "string"}}, "scripts": {"type": "object", "properties": {"develop:debug": {"type": "string"}, "develop": {"type": "string"}, "lint": {"type": "string"}, "lint:fix": {"type": "string"}, "lint-staged": {"type": "string"}}, "required": ["develop:debug", "develop", "lint", "lint:fix", "lint-staged"]}, "devDependencies": {"type": "object", "properties": {"@commitlint/cli": {"type": "string"}, "@commitlint/config-conventional": {"type": "string"}, "cz-conventional-changelog": {"type": "string"}, "husky": {"type": "string"}, "lint-staged": {"type": "string"}}, "required": ["@commitlint/cli", "@commitlint/config-conventional", "cz-conventional-changelog", "husky", "lint-staged"]}, "config": {"type": "object", "properties": {"commitizen": {"type": "object", "properties": {"path": {"type": "string"}}, "required": ["path"]}}, "required": ["commitizen"]}, "husky": {"type": "object", "properties": {"hooks": {"type": "object", "properties": {"pre-commit": {"type": "string"}, "commit-msg": {"type": "string"}}, "required": ["pre-commit", "commit-msg"]}}, "required": ["hooks"]}, "lint-staged": {"type": "object", "properties": {"**/*.{ts,tsx,js,jsx}": {"type": "string"}, "**/*.{ts,tsx,js,jsx,css,scss,md}": {"type": "string"}}, "required": ["**/*.{ts,tsx,js,jsx}", "**/*.{ts,tsx,js,jsx,css,scss,md}"]}}, "required": ["name", "version", "description", "main", "author", "license", "private", "workspaces", "keywords", "scripts", "devDependencies", "config", "husky", "lint-staged"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "itcrowd-challenge-fullstack", "version" : "1.0.0", "description" : "", "main" : "indexjs", "author" : "Diego Lameira <diegolameira@me.com>", "license" : "MIT", "private" : true, "workspaces" : ["apps/*"], "keywords" : ["challenges", "diegolameira"], "scripts" : {"develop:debug" : "yarn workspace @project/api start --debug 0.0.0.0:9229 --watch", "develop" : "yarn workspace @project/api start:dev", "lint" : "eslint . --ext .js,.jsx,.ts,.tsx", "lint:fix" : "eslint . --ext .js,.jsx,.ts,.tsx --fix", "lint-staged" : "lint-staged"}, "devDependencies" : {"@commitlint/cli" : "^11.0.0", "@commitlint/config-conventional" : "^11.0.0", "cz-conventional-changelog" : "^3.3.0", "husky" : "^4.3.0", "lint-staged" : "^10.4.2"}, "config" : {"commitizen" : {"path" : "./node_modules/cz-conventional-changelog"}}, "husky" : {"hooks" : {"pre-commit" : "lint-staged", "commit-msg" : "commitlint -E HUSKY_GIT_PARAMS"}}, "lint-staged" : {"**/*.{ts,tsx,js,jsx}" : "eslint --cache --fix", "**/*.{ts,tsx,js,jsx,css,scss,md}" : "prettier --write"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "author": {"type": "string"}, "license": {"type": "string"}, "private": {"type": "boolean"}, "workspaces": {"type": "array", "items": {"type": "string"}}, "keywords": {"type": "array", "items": {"type": "string"}}, "scripts": {"type": "object", "properties": {"develop:debug": {"type": "string"}, "develop": {"type": "string"}, "lint": {"type": "string"}, "lint:fix": {"type": "string"}, "lint-staged": {"type": "string"}}, "required": ["develop:debug", "develop", "lint", "lint:fix", "lint-staged"]}, "devDependencies": {"type": "object", "properties": {"@commitlint/cli": {"type": "string"}, "@commitlint/config-conventional": {"type": "string"}, "cz-conventional-changelog": {"type": "string"}, "husky": {"type": "string"}, "lint-staged": {"type": "string"}}, "required": ["@commitlint/cli", "@commitlint/config-conventional", "cz-conventional-changelog", "husky", "lint-staged"]}, "config": {"type": "object", "properties": {"commitizen": {"type": "object", "properties": {"path": {"type": "string"}}, "required": ["path"]}}, "required": ["commitizen"]}, "husky": {"type": "object", "properties": {"hooks": {"type": "object", "properties": {"pre-commit": {"type": "string"}, "commit-msg": {"type": "string"}}, "required": ["pre-commit", "commit-msg"]}}, "required": ["hooks"]}, "lint-staged": {"type": "object", "properties": {"**/*.{ts,tsx,js,jsx}": {"type": "string"}, "**/*.{ts,tsx,js,jsx,css,scss,md}": {"type": "string"}}, "required": ["**/*.{ts,tsx,js,jsx}", "**/*.{ts,tsx,js,jsx,css,scss,md}"]}}, "required": ["name", "version", "description", "main", "author", "license", "private", "workspaces", "keywords", "scripts", "devDependencies", "config", "husky", "lint-staged"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "dependencies": {"type": "object", "properties": {}, "required": []}, "jest": {"type": "object", "properties": {"transform": {"type": "object", "properties": {"\\.(ts|tsx)$": {"type": "string"}}, "required": ["\\.(ts|tsx)$"]}, "testRegex": {"type": "string"}, "coverageReporters": {"type": "array", "items": {"type": "string"}}, "coverageDirectory": {"type": "string"}, "collectCoverageFrom": {"type": "array", "items": {"type": "string"}}, "moduleFileExtensions": {"type": "array", "items": {"type": "string"}}}, "required": ["transform", "testRegex", "coverageReporters", "coverageDirectory", "collectCoverageFrom", "moduleFileExtensions"]}, "devDependencies": {"type": "object", "properties": {"@types/chai": {"type": "string"}, "@types/jest": {"type": "string"}, "chai": {"type": "string"}, "jest": {"type": "string"}, "ts-jest": {"type": "string"}, "typescript": {"type": "string"}}, "required": ["@types/chai", "@types/jest", "chai", "jest", "ts-jest", "typescript"]}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "keywords": {"type": "array", "items": {}}, "author": {"type": "string"}, "license": {"type": "string"}}, "required": ["name", "version", "description", "main", "dependencies", "jest", "devDependencies", "scripts", "keywords", "author", "license"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "testing", "version" : "1.0.0", "description" : "", "main" : "index.js", "dependencies" : {}, "jest" : {"transform" : {"\\.(ts|tsx)$" : "<rootDir>/node_modules/ts-jest/preprocessor.js"}, "testRegex" : "/test/.*\\.(ts|js)$", "coverageReporters" : ["html"], "coverageDirectory" : "coverage", "collectCoverageFrom" : ["src/**/*.ts"], "moduleFileExtensions" : ["ts", "js", "json"]}, "devDependencies" : {"@types/chai" : "^4.0.4", "@types/jest" : "^20.0.8", "chai" : "^4.1.2", "jest" : "^21.0.1", "ts-jest" : "^21.0.0", "typescript" : "^2.5.2"}, "scripts" : {"test" : "node node_modules/.bin/jest test --watch --coverage"}, "keywords" : [], "author" : "", "license" : "ISC"} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "dependencies": {"type": "object", "properties": {}, "required": []}, "jest": {"type": "object", "properties": {"transform": {"type": "object", "properties": {"\\.(ts|tsx)$": {"type": "string"}}, "required": ["\\.(ts|tsx)$"]}, "testRegex": {"type": "string"}, "coverageReporters": {"type": "array", "items": {"type": "string"}}, "coverageDirectory": {"type": "string"}, "collectCoverageFrom": {"type": "array", "items": {"type": "string"}}, "moduleFileExtensions": {"type": "array", "items": {"type": "string"}}}, "required": ["transform", "testRegex", "coverageReporters", "coverageDirectory", "collectCoverageFrom", "moduleFileExtensions"]}, "devDependencies": {"type": "object", "properties": {"@types/chai": {"type": "string"}, "@types/jest": {"type": "string"}, "chai": {"type": "string"}, "jest": {"type": "string"}, "ts-jest": {"type": "string"}, "typescript": {"type": "string"}}, "required": ["@types/chai", "@types/jest", "chai", "jest", "ts-jest", "typescript"]}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "keywords": {"type": "array", "items": {}}, "author": {"type": "string"}, "license": {"type": "string"}}, "required": ["name", "version", "description", "main", "dependencies", "jest", "devDependencies", "scripts", "keywords", "author", "license"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "version": {"type": "string"}, "main": {"type": "string"}, "files": {"type": "array", "items": {"type": "string"}}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "homepage": {"type": "string"}, "repository": {"type": "string"}, "bugs": {"type": "string"}, "license": {"type": "string"}, "engines": {"type": "object", "properties": {"node": {"type": "string"}}, "required": ["node"]}, "dependencies": {"type": "object", "properties": {"babel-polyfill": {"type": "string"}, "fasp-client": {"type": "string"}, "global": {"type": "string"}, "snabbdom": {"type": "string"}}, "required": ["babel-polyfill", "fasp-client", "global", "snabbdom"]}, "devDependencies": {"type": "object", "properties": {"@babel/core": {"type": "string"}, "@babel/preset-env": {"type": "string"}, "babelify": {"type": "string"}, "browserify": {"type": "string"}, "envify": {"type": "string"}, "uglify-es": {"type": "string"}, "uglifyify": {"type": "string"}, "wzrd": {"type": "string"}}, "required": ["@babel/core", "@babel/preset-env", "babelify", "browserify", "envify", "uglify-es", "uglifyify", "wzrd"]}, "scripts": {"type": "object", "properties": {"build": {"type": "string"}, "build:dev": {"type": "string"}, "start": {"type": "string"}, "prepublishOnly": {"type": "string"}}, "required": ["build", "build:dev", "start", "prepublishOnly"]}}, "required": ["name", "description", "version", "main", "files", "keywords", "author", "homepage", "repository", "bugs", "license", "engines", "dependencies", "devDependencies", "scripts"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "fasp-web-client", "description" : "A web app to control Friendly Audio Streaming Protocol receivers.", "version" : "1.2.4", "main" : "index.js", "files" : ["index.js", "src", "dist"], "keywords" : ["audio", "streaming", "friendly audio streaming protocol", "fasp"], "author" : "Jannis R <mail@jannisr.de>", "homepage" : "https://github.com/derhuerst/fasp-web-client", "repository" : "derhuerst/fasp-web-client", "bugs" : "https://github.com/derhuerst/fasp-web-client/issues", "license" : "ISC", "engines" : {"node" : ">=6"}, "dependencies" : {"babel-polyfill" : "^6.26.0", "fasp-client" : "^0.3.3", "global" : "^4.3.2", "snabbdom" : "^0.7.1"}, "devDependencies" : {"@babel/core" : "^7.4.4", "@babel/preset-env" : "^7.4.4", "babelify" : "^10.0.0", "browserify" : "^16.2.0", "envify" : "^4.1.0", "uglify-es" : "^3.3.9", "uglifyify" : "^5.0.1", "wzrd" : "^1.5.0"}, "scripts" : {"build" : "env NODE_ENV=production browserify src/index.js -g [babelify --presets [@babel/preset-env] ] -g envify -g uglifyify | uglifyjs -mc >dist/bundle.js", "build:dev" : "env NODE_ENV=dev browserify src/index.js >dist/bundle.js", "start" : "cd dist; wzrd ../src/index.js:bundle.js", "prepublishOnly" : "npm run build"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "version": {"type": "string"}, "main": {"type": "string"}, "files": {"type": "array", "items": {"type": "string"}}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "homepage": {"type": "string"}, "repository": {"type": "string"}, "bugs": {"type": "string"}, "license": {"type": "string"}, "engines": {"type": "object", "properties": {"node": {"type": "string"}}, "required": ["node"]}, "dependencies": {"type": "object", "properties": {"babel-polyfill": {"type": "string"}, "fasp-client": {"type": "string"}, "global": {"type": "string"}, "snabbdom": {"type": "string"}}, "required": ["babel-polyfill", "fasp-client", "global", "snabbdom"]}, "devDependencies": {"type": "object", "properties": {"@babel/core": {"type": "string"}, "@babel/preset-env": {"type": "string"}, "babelify": {"type": "string"}, "browserify": {"type": "string"}, "envify": {"type": "string"}, "uglify-es": {"type": "string"}, "uglifyify": {"type": "string"}, "wzrd": {"type": "string"}}, "required": ["@babel/core", "@babel/preset-env", "babelify", "browserify", "envify", "uglify-es", "uglifyify", "wzrd"]}, "scripts": {"type": "object", "properties": {"build": {"type": "string"}, "build:dev": {"type": "string"}, "start": {"type": "string"}, "prepublishOnly": {"type": "string"}}, "required": ["build", "build:dev", "start", "prepublishOnly"]}}, "required": ["name", "description", "version", "main", "files", "keywords", "author", "homepage", "repository", "bugs", "license", "engines", "dependencies", "devDependencies", "scripts"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"likely-commonjs.js": {"type": "string"}, "likely.css": {"type": "string"}, "likely.js": {"type": "string"}}, "required": ["likely-commonjs.js", "likely.css", "likely.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"likely-commonjs.js" : "sha512-SZf/oP/8igzgpeiNVQd7hW/wd1PJV8Zrb/olECQ4Sa5gq/ufUXB/RmR8pjCSfgAFpb7kxJT5i+G5RmSDqyMFpw==", "likely.css" : "sha512-SkLiTf9E/IU5OXjGVZHvjmFOhpyFLA53B6WCxlTLt0IU9OVKmmIqTyx0aPKfnNT/7KwxSrts+233ulHBBjEALg==", "likely.js" : "sha512-0dMnQXt/Uqrp8AuLvB96K7UF+TUh7h4YB0IAUvq822rYJhDvVNjZLscnutOPmXCrPIRYgwYj5JJCEvuLgfnmrg=="} | json_instruct | {"type": "object", "properties": {"likely-commonjs.js": {"type": "string"}, "likely.css": {"type": "string"}, "likely.js": {"type": "string"}}, "required": ["likely-commonjs.js", "likely.css", "likely.js"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"id": {"type": "string"}, "text": {"type": "string"}}, "required": ["id", "text"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "d462-108", "text" : "2\n. I, \u201e2\u00b0^TheJ.rat5er8\u00b0\u00b0 Pro:,eo<i \" David Berkman. Xerox developed\n*? 1 f^eationai package and several skills packages, Including\nmotion pictures for example, which was successfully tried out In\nPaterson with drop-outs and equivalent from ghetto conditions.1\nundertefcH S^f**?!* ar0 available to any group whloh wishes to\nundertake a similar project In their own city. Contact Berkman\nat Xerox - 600 \u2019tadlson Ave. HTC\n3.fggC - Wew York Seymour Siegel. For 5 years WNYC has\ncollaborated with the George Westlnghouse High School (Technical)\nto provide Instruction and practlouum for 25 students each year\nrradua\u00ab\u201eS \u00bbe$8*\u201e<na?E ?CC I\u201910*\"88\u2019 Requirement Is high\nfJjfS'**;1\u201c the ethnic mix las turned out to be about even\nIs the n.b6M?nw\u00bb tS ruert0 R.lc8ns'> WNYC\u20198 TOP station\nalthnfwh ?h?r f the Instruction, and guarantees a Job\naVMed8^^ has been no problems 1th some students going Into\nallied fields such as computers.\ns*S\u00abl \u201cIso provided a tip on accomplishing\nl8 invni\u2122rtSawv1\u00abLhiflng4.mlnorlty grouP8 whon olvil service\nto avnfrt dlreot recruitment Is unspeolflc - Intentionally\n\"In f^vor\"1^ n tCres 2lffloult t0 discriminate 7\ne.ai wlnoritlaso But transfer from other departments\nis easier and then you know the person you are trying to transfero\n-ss-r.-effi iusvjffaiys\nS.\u201d8\u2122 J45SSU?\nKasSsfr s-t-k sjxrjss.'ts\u00bb\nwe should make all kinds of suggestions to our s tatlons as t o\n\u00ab~*jsSi2t,-sss s,.iis*^j*S2J?;1rnt mi?\nRadio. 0Be specific In WTC and perhaps elsewhere^ StlonS\nof\u201cuSrpmopU8(BerLan).Wh0 *U1 PU* \u201cP * 3\u20196\u00b0\u00b0 f0r fc ho *\u2022*\u25a0*\"\u00ab\nTtai\u2122\u21227?f\u00abrt2?T prograra sponsored by Allen and Benedict\nuniverslties\u00ab The program serves the dual purposes of hAininrr\nto^Se fllwfemf8eduo^?U\u201c fchff ^ucatlonPwhile IntroduclSfthem\no the fields of education and televlalon as potential careers.\nKSsS--'&&S*"} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "text": {"type": "string"}}, "required": ["id", "text"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"cSpell.words": {"type": "array", "items": {"type": "string"}}}, "required": ["cSpell.words"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"cSpell.words" : ["bing"]} | json_instruct | {"type": "object", "properties": {"cSpell.words": {"type": "array", "items": {"type": "string"}}}, "required": ["cSpell.words"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"extends": {"type": "array", "items": {"type": "string"}}, "rules": {"type": "object", "properties": {"quotemark": {"type": "boolean"}, "no-console": {"type": "boolean"}, "linebreak-style": {"type": "boolean"}, "no-use-before-declare": {"type": "boolean"}}, "required": ["quotemark", "no-console", "linebreak-style", "no-use-before-declare"]}, "linterOptions": {"type": "object", "properties": {"exclude": {"type": "array", "items": {"type": "string"}}}, "required": ["exclude"]}}, "required": ["extends", "rules", "linterOptions"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"extends" : ["strict-tslint-config"], "rules" : {"quotemark" : false, "no-console" : false, "linebreak-style" : false, "no-use-before-declare" : false}, "linterOptions" : {"exclude" : ["**/node_modules/**", "**/dist/**"]}} | json_instruct | {"type": "object", "properties": {"extends": {"type": "array", "items": {"type": "string"}}, "rules": {"type": "object", "properties": {"quotemark": {"type": "boolean"}, "no-console": {"type": "boolean"}, "linebreak-style": {"type": "boolean"}, "no-use-before-declare": {"type": "boolean"}}, "required": ["quotemark", "no-console", "linebreak-style", "no-use-before-declare"]}, "linterOptions": {"type": "object", "properties": {"exclude": {"type": "array", "items": {"type": "string"}}}, "required": ["exclude"]}}, "required": ["extends", "rules", "linterOptions"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"id": {"type": "integer"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"src:alt_label": {"type": "string"}, "src:geom": {"type": "string"}, "wof:geomhash": {"type": "string"}, "wof:id": {"type": "integer"}, "wof:repo": {"type": "string"}}, "required": ["src:alt_label", "src:geom", "wof:geomhash", "wof:id", "wof:repo"]}, "bbox": {"type": "array", "items": {"type": "number"}}, "geometry": {"type": "object", "properties": {"coordinates": {"type": "array", "items": {"type": "number"}}, "type": {"type": "string"}}, "required": ["coordinates", "type"]}}, "required": ["id", "type", "properties", "bbox", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : 421169151, "type" : "Feature", "properties" : {"src:alt_label" : "quattroshapes_pg", "src:geom" : "quattroshapes_pg", "wof:geomhash" : "4b304180e545f1ad5314efa944e1499a", "wof:id" : 421169151, "wof:repo" : "whosonfirst-data-admin-pa"}, "bbox" : [-82.43085, 8.42729, -82.43085, 8.42729], "geometry" : {"coordinates" : [-82.43085, 8.42729], "type" : "Point"}} | json_instruct | {"type": "object", "properties": {"id": {"type": "integer"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"src:alt_label": {"type": "string"}, "src:geom": {"type": "string"}, "wof:geomhash": {"type": "string"}, "wof:id": {"type": "integer"}, "wof:repo": {"type": "string"}}, "required": ["src:alt_label", "src:geom", "wof:geomhash", "wof:id", "wof:repo"]}, "bbox": {"type": "array", "items": {"type": "number"}}, "geometry": {"type": "object", "properties": {"coordinates": {"type": "array", "items": {"type": "number"}}, "type": {"type": "string"}}, "required": ["coordinates", "type"]}}, "required": ["id", "type", "properties", "bbox", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"kind": {"type": "string"}, "name": {"type": "string"}, "href": {"type": "string"}, "description": {"type": "string"}, "refs": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "href": {"type": "string"}, "description": {"type": "string"}}, "required": ["name", "href", "description"]}}}, "required": ["kind", "name", "href", "description", "refs"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"kind" : "Constructor", "name" : "XRSessionEvent.XRSessionEvent", "href" : "https://developer.mozilla.org/en-US/docs/Web/API/XRSessionEvent/XRSessionEvent", "description" : "The WebXR Device API's XRSessionEvent() constructor creates and returns a new XRSessionEvent object.", "refs" : [{"name" : "WebXR Device API", "href" : "https://immersive-web.github.io/webxr/#dom-xrsessionevent-xrsessionevent", "description" : "XRSessionEvent() constructor - WebXR Device API"}]} | json_instruct | {"type": "object", "properties": {"kind": {"type": "string"}, "name": {"type": "string"}, "href": {"type": "string"}, "description": {"type": "string"}, "refs": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "href": {"type": "string"}, "description": {"type": "string"}}, "required": ["name", "href", "description"]}}}, "required": ["kind", "name", "href", "description", "refs"], "$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"}, "properties": {"type": "object", "properties": {"type": {"type": "string"}, "level": {"type": "string"}, "label": {"type": "string"}, "locale": {"type": "string"}, "country_id": {"type": "integer"}, "country_reference": {"type": "integer"}, "country_name": {"type": "string"}, "region_id": {"type": "string"}, "region_reference": {"type": "string"}, "region_name": {"type": "string"}, "province_id": {"type": "string"}, "province_reference": {"type": "string"}, "province_name": {"type": "string"}, "city_id": {"type": "string"}, "city_reference": {"type": "string"}, "city_name": {"type": "string"}, "barangay_id": {"type": "string"}, "barangay_reference": {"type": "string"}, "barangay_name": {"type": "string"}}, "required": ["type", "level", "label", "locale", "country_id", "country_reference", "country_name", "region_id", "region_reference", "region_name", "province_id", "province_reference", "province_name", "city_id", "city_reference", "city_name", "barangay_id", "barangay_reference", "barangay_name"]}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}}, "required": ["type", "coordinates"]}}, "required": ["type", "properties", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"type" : "Feature", "properties" : {"type" : "barangay", "level" : "4", "label" : "Pangle, Aroroy, Masbate, Bicol Region (Region V), PH", "locale" : "ph.bicol-region-region-v.masbate.aroroy.pangle", "country_id" : 177, "country_reference" : 177, "country_name" : "Philippines", "region_id" : "2", "region_reference" : "5", "region_name" : "Bicol Region (Region V)", "province_id" : "46", "province_reference" : "46", "province_name" : "Masbate", "city_id" : "72", "city_reference" : "929", "city_name" : "Aroroy", "barangay_id" : "1666", "barangay_reference" : "23619", "barangay_name" : "Pangle"}, "geometry" : {"type" : "MultiPolygon", "coordinates" : [[[[123.411079, 12.38951], [123.412239, 12.37432], [123.411713, 12.37452], [123.411148, 12.37567], [123.411598, 12.37739], [123.411743, 12.37854], [123.411613, 12.37912], [123.4104, 12.37914], [123.408951, 12.37811], [123.40657, 12.37801], [123.405899, 12.37946], [123.404922, 12.38284], [123.40316, 12.38364], [123.401939, 12.3848], [123.401367, 12.38673], [123.401581, 12.38737], [123.402481, 12.38773], [123.403572, 12.38838], [123.411079, 12.38951]]]]}} | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"type": {"type": "string"}, "level": {"type": "string"}, "label": {"type": "string"}, "locale": {"type": "string"}, "country_id": {"type": "integer"}, "country_reference": {"type": "integer"}, "country_name": {"type": "string"}, "region_id": {"type": "string"}, "region_reference": {"type": "string"}, "region_name": {"type": "string"}, "province_id": {"type": "string"}, "province_reference": {"type": "string"}, "province_name": {"type": "string"}, "city_id": {"type": "string"}, "city_reference": {"type": "string"}, "city_name": {"type": "string"}, "barangay_id": {"type": "string"}, "barangay_reference": {"type": "string"}, "barangay_name": {"type": "string"}}, "required": ["type", "level", "label", "locale", "country_id", "country_reference", "country_name", "region_id", "region_reference", "region_name", "province_id", "province_reference", "province_name", "city_id", "city_reference", "city_name", "barangay_id", "barangay_reference", "barangay_name"]}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}}, "required": ["type", "coordinates"]}}, "required": ["type", "properties", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"restructuredtext.confPath": {"type": "string"}}, "required": ["restructuredtext.confPath"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"restructuredtext.confPath" : "${workspaceFolder}/documents/source"} | json_instruct | {"type": "object", "properties": {"restructuredtext.confPath": {"type": "string"}}, "required": ["restructuredtext.confPath"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"workbench.colorCustomizations": {"type": "object", "properties": {"titleBar.activeBackground": {"type": "string"}, "titleBar.inactiveBackground": {"type": "string"}}, "required": ["titleBar.activeBackground", "titleBar.inactiveBackground"]}, "cSpell.words": {"type": "array", "items": {"type": "string"}}}, "required": ["workbench.colorCustomizations", "cSpell.words"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"workbench.colorCustomizations" : {"titleBar.activeBackground" : "#D8A127", "titleBar.inactiveBackground" : "#D8A127"}, "cSpell.words" : ["halbert", "leaderboards", "seedrandom", "signin", "signout"]} | json_instruct | {"type": "object", "properties": {"workbench.colorCustomizations": {"type": "object", "properties": {"titleBar.activeBackground": {"type": "string"}, "titleBar.inactiveBackground": {"type": "string"}}, "required": ["titleBar.activeBackground", "titleBar.inactiveBackground"]}, "cSpell.words": {"type": "array", "items": {"type": "string"}}}, "required": ["workbench.colorCustomizations", "cSpell.words"], "$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"}, "homepage": {"type": "string"}, "author": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "main": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"array-uniq": {"type": "string"}, "chalk": {"type": "string"}, "glob": {"type": "string"}, "minimatch": {"type": "string"}, "minimist": {"type": "string"}, "prettysize": {"type": "string"}, "request": {"type": "string"}}, "required": ["array-uniq", "chalk", "glob", "minimatch", "minimist", "prettysize", "request"]}, "preferGlobal": {"type": "string"}, "bin": {"type": "object", "properties": {"tinypng": {"type": "string"}}, "required": ["tinypng"]}, "devDependencies": {"type": "object", "properties": {"eslint": {"type": "string"}, "jshint": {"type": "string"}}, "required": ["eslint", "jshint"]}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}}, "required": ["name", "version", "description", "homepage", "author", "repository", "keywords", "bugs", "main", "license", "dependencies", "preferGlobal", "bin", "devDependencies", "scripts"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "tinypng-cli", "version" : "0.0.7", "description" : "Handy command line tool for shrinking PNG images using the TinyPNG API", "homepage" : "https://github.com/ifWater/tinypng-cli", "author" : "websperts <hello@websperts.com>", "repository" : {"type" : "git", "url" : "git@github.com:ifWater/tinypng-cli.git"}, "keywords" : ["tinypng", "shrinking", "compression", "cli"], "bugs" : {"url" : "https://github.com/ifWater/tinypng-cli/issues"}, "main" : "tinypng-cli.js", "license" : "MIT", "dependencies" : {"array-uniq" : "^1.0.2", "chalk" : "^1.1.3", "glob" : "^7.0.3", "minimatch" : "^3.0.0", "minimist" : "^1.2.0", "prettysize" : "0.0.3", "request" : "^2.70.0"}, "preferGlobal" : "true", "bin" : {"tinypng" : "tinypng-cli.js"}, "devDependencies" : {"eslint" : "^2.7.0", "jshint" : "^2.9.1"}, "scripts" : {"test" : "jshint tinypng-cli.js && eslint tinypng-cli.js"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "homepage": {"type": "string"}, "author": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "main": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"array-uniq": {"type": "string"}, "chalk": {"type": "string"}, "glob": {"type": "string"}, "minimatch": {"type": "string"}, "minimist": {"type": "string"}, "prettysize": {"type": "string"}, "request": {"type": "string"}}, "required": ["array-uniq", "chalk", "glob", "minimatch", "minimist", "prettysize", "request"]}, "preferGlobal": {"type": "string"}, "bin": {"type": "object", "properties": {"tinypng": {"type": "string"}}, "required": ["tinypng"]}, "devDependencies": {"type": "object", "properties": {"eslint": {"type": "string"}, "jshint": {"type": "string"}}, "required": ["eslint", "jshint"]}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}}, "required": ["name", "version", "description", "homepage", "author", "repository", "keywords", "bugs", "main", "license", "dependencies", "preferGlobal", "bin", "devDependencies", "scripts"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"shell_port": {"type": "integer"}, "iopub_port": {"type": "integer"}, "stdin_port": {"type": "integer"}, "control_port": {"type": "integer"}, "hb_port": {"type": "integer"}, "ip": {"type": "string"}, "key": {"type": "string"}, "transport": {"type": "string"}, "signature_scheme": {"type": "string"}, "kernel_name": {"type": "string"}}, "required": ["shell_port", "iopub_port", "stdin_port", "control_port", "hb_port", "ip", "key", "transport", "signature_scheme", "kernel_name"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"shell_port" : 50028, "iopub_port" : 50029, "stdin_port" : 50030, "control_port" : 50032, "hb_port" : 50031, "ip" : "127.0.0.1", "key" : "6e548492-3a69e0a4d11385fcb2dedfad", "transport" : "tcp", "signature_scheme" : "hmac-sha256", "kernel_name" : ""} | json_instruct | {"type": "object", "properties": {"shell_port": {"type": "integer"}, "iopub_port": {"type": "integer"}, "stdin_port": {"type": "integer"}, "control_port": {"type": "integer"}, "hb_port": {"type": "integer"}, "ip": {"type": "string"}, "key": {"type": "string"}, "transport": {"type": "string"}, "signature_scheme": {"type": "string"}, "kernel_name": {"type": "string"}}, "required": ["shell_port", "iopub_port", "stdin_port", "control_port", "hb_port", "ip", "key", "transport", "signature_scheme", "kernel_name"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"acadYear": {"type": "string"}, "description": {"type": "string"}, "title": {"type": "string"}, "department": {"type": "string"}, "faculty": {"type": "string"}, "prerequisite": {"type": "string"}, "moduleCredit": {"type": "string"}, "moduleCode": {"type": "string"}, "attributes": {"type": "object", "properties": {"urop": {"type": "boolean"}}, "required": ["urop"]}, "semesterData": {"type": "array", "items": {"type": "object", "properties": {"semester": {"type": "integer"}, "timetable": {"type": "array", "items": {}}}, "required": ["semester", "timetable"]}}, "prereqTree": {"type": "string"}}, "required": ["acadYear", "description", "title", "department", "faculty", "prerequisite", "moduleCredit", "moduleCode", "attributes", "semesterData", "prereqTree"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"acadYear" : "2019/2020", "description" : "This module is designed to give level 2 students an introduction to research. The student will undertake a laboratory based investigation on a topic proposed by the supervisor. Students work independently but under the close supervision of the supervisor.", "title" : "Basic UROPS in Food Science & Technology I", "department" : "Chemistry", "faculty" : "Science", "prerequisite" : "FST1101 and Departmental Approval", "moduleCredit" : "4", "moduleCode" : "FST2288", "attributes" : {"urop" : true}, "semesterData" : [{"semester" : 1, "timetable" : []}, {"semester" : 2, "timetable" : []}, {"semester" : 3, "timetable" : []}, {"semester" : 4, "timetable" : []}], "prereqTree" : "FST1101"} | json_instruct | {"type": "object", "properties": {"acadYear": {"type": "string"}, "description": {"type": "string"}, "title": {"type": "string"}, "department": {"type": "string"}, "faculty": {"type": "string"}, "prerequisite": {"type": "string"}, "moduleCredit": {"type": "string"}, "moduleCode": {"type": "string"}, "attributes": {"type": "object", "properties": {"urop": {"type": "boolean"}}, "required": ["urop"]}, "semesterData": {"type": "array", "items": {"type": "object", "properties": {"semester": {"type": "integer"}, "timetable": {"type": "array", "items": {}}}, "required": ["semester", "timetable"]}}, "prereqTree": {"type": "string"}}, "required": ["acadYear", "description", "title", "department", "faculty", "prerequisite", "moduleCredit", "moduleCode", "attributes", "semesterData", "prereqTree"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"type": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "number"}}}, "required": ["type", "coordinates"]}, "properties": {"type": "object", "properties": {"site-plan-url": {"type": "string"}, "planning-permission-date": {"type": "string"}, "planning-permission-type": {"type": "string"}, "site-address": {"type": "string"}, "minimum-net-dwellings": {"type": "string"}, "planning-permission-history": {"type": "string"}, "start-date": {"type": "string"}, "site": {"type": "string"}, "name": {"type": "string"}, "hectares": {"type": "string"}, "organisation": {"type": "string"}, "maximum-net-dwellings": {"type": "string"}, "planning-permission-status": {"type": "string"}, "point": {"type": "string"}, "deliverable": {"type": "string"}, "slug": {"type": "string"}, "entity": {"type": "integer"}, "entry-date": {"type": "string"}}, "required": ["site-plan-url", "planning-permission-date", "planning-permission-type", "site-address", "minimum-net-dwellings", "planning-permission-history", "start-date", "site", "name", "hectares", "organisation", "maximum-net-dwellings", "planning-permission-status", "point", "deliverable", "slug", "entity", "entry-date"]}}, "required": ["type", "geometry", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"type" : "Feature", "geometry" : {"type" : "Point", "coordinates" : [-0.244806, 52.571618]}, "properties" : {"site-plan-url" : "https://planpa.peterborough.gov.uk/online-applications/applicationDetails.do?activeTab=map&keyVal=O8CMX5ML0CW00", "planning-permission-date" : "2015-07-09", "planning-permission-type" : "full planning permission", "site-address" : "28 - 30 Priestgate Peterborough PE1 1JA", "minimum-net-dwellings" : "8", "planning-permission-history" : "https://planpa.peterborough.gov.uk/online-applications/applicationDetails.do?activeTab=relatedCases&keyVal=O8CMX5ML0CW00", "start-date" : "2017-12-19", "site" : "PDL/0021/17", "name" : "PDL/0021/17", "hectares" : "1.2", "organisation" : "local-authority-eng:PTE", "maximum-net-dwellings" : "8", "planning-permission-status" : "permissioned", "point" : "POINT(-0.244806 52.571618)", "deliverable" : "yes", "slug" : "/brownfield-land/local-authority-eng/PTE/PDL-0021-17", "entity" : 490731, "entry-date" : "2017-12-19"}} | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "number"}}}, "required": ["type", "coordinates"]}, "properties": {"type": "object", "properties": {"site-plan-url": {"type": "string"}, "planning-permission-date": {"type": "string"}, "planning-permission-type": {"type": "string"}, "site-address": {"type": "string"}, "minimum-net-dwellings": {"type": "string"}, "planning-permission-history": {"type": "string"}, "start-date": {"type": "string"}, "site": {"type": "string"}, "name": {"type": "string"}, "hectares": {"type": "string"}, "organisation": {"type": "string"}, "maximum-net-dwellings": {"type": "string"}, "planning-permission-status": {"type": "string"}, "point": {"type": "string"}, "deliverable": {"type": "string"}, "slug": {"type": "string"}, "entity": {"type": "integer"}, "entry-date": {"type": "string"}}, "required": ["site-plan-url", "planning-permission-date", "planning-permission-type", "site-address", "minimum-net-dwellings", "planning-permission-history", "start-date", "site", "name", "hectares", "organisation", "maximum-net-dwellings", "planning-permission-status", "point", "deliverable", "slug", "entity", "entry-date"]}}, "required": ["type", "geometry", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"body": {"type": "string"}, "user": {"type": "string"}, "url": {"type": "string"}, "updated_at": {"type": "string"}, "created_at": {"type": "string"}, "closed_at": {"type": "string"}, "state": {"type": "string"}, "title": {"type": "string"}, "number": {"type": "integer"}, "milestone": {"type": "null"}, "labels": {"type": "array", "items": {"type": "string"}}, "id": {"type": "integer"}, "html_url": {"type": "string"}, "assignees": {"type": "array", "items": {}}, "comments": {"type": "integer"}}, "required": ["body", "user", "url", "updated_at", "created_at", "closed_at", "state", "title", "number", "milestone", "labels", "id", "html_url", "assignees", "comments"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"body" : "Fabtests provides runtime analysis tools and examples of libfabric.\r\n\r\nAs with other projects that are [tightly version-bound](https://github.com/ofiwg/libfabric/blob/33ea19fd66119b8218dc50678f240d44084c2690/.travis.yml#L110-L118), e.g. `py-adios` and `adios`, the fact that releases stem from the same repo does not imply they should be the same package.\r\n\r\nRemove resources, which [complicate the libfabric build](https://github.com/spack/spack/issues/15244), and update the fabtests package accordingly.\r\n\r\nSee https://github.com/spack/spack/pull/15405#issuecomment-600362176\r\nSee https://github.com/spack/spack/pull/15405#issuecomment-600501395\r\nRe.: #15244 #15405 #15440\r\n\r\nCC: @LDAmorim @sethrj @carns @soumagne @ChristianTackeGSI please confirm this works for you. Be aware that `fabtests` are probably still failing on OSX, which is an upstream issue, but libfabric should now install fine again on OSX.\r\n\r\nCCing also @baberlevi as he previously edited these files, too.", "user" : "ax3l", "url" : "https://api.github.com/repos/spack/spack/issues/15557", "updated_at" : "2020-03-23 10:18:02", "created_at" : "2020-03-18 23:04:58", "closed_at" : "2020-03-19 01:04:02", "state" : "closed", "title" : "Split: Fabtest/libfabric", "number" : 15557, "milestone" : null, "labels" : ["build-error"], "id" : 584054066, "html_url" : "https://github.com/spack/spack/pull/15557", "assignees" : [], "comments" : 0} | json_instruct | {"type": "object", "properties": {"body": {"type": "string"}, "user": {"type": "string"}, "url": {"type": "string"}, "updated_at": {"type": "string"}, "created_at": {"type": "string"}, "closed_at": {"type": "string"}, "state": {"type": "string"}, "title": {"type": "string"}, "number": {"type": "integer"}, "milestone": {"type": "null"}, "labels": {"type": "array", "items": {"type": "string"}}, "id": {"type": "integer"}, "html_url": {"type": "string"}, "assignees": {"type": "array", "items": {}}, "comments": {"type": "integer"}}, "required": ["body", "user", "url", "updated_at", "created_at", "closed_at", "state", "title", "number", "milestone", "labels", "id", "html_url", "assignees", "comments"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"id": {"type": "integer"}, "node": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "nameCN": {"type": "string"}, "image": {"type": "string"}, "date": {"type": "string"}}, "required": ["id", "name", "nameCN", "image", "date"]}}, "relate": {"type": "array", "items": {"type": "object", "properties": {"relate": {"type": "string"}, "src": {"type": "integer"}, "dst": {"type": "integer"}}, "required": ["relate", "src", "dst"]}}}, "required": ["id", "node", "relate"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : 363309, "node" : [{"id" : 247182, "name" : "\u5730\u7403\u5916\u5c11\u5e74\u5c11\u5973 \u524d\u7de8", "nameCN" : "\u5730\u7403\u5916\u5c11\u5e74\u5c11\u5973 \u524d\u7bc7", "image" : "//lain.bgm.tv/pic/cover/m/3f/e4/247182_0g1ui.jpg", "date" : "2022-01-28"}, {"id" : 363309, "name" : "\u5730\u7403\u5916\u5c11\u5e74\u5c11\u5973 \u5f8c\u7de8", "nameCN" : "\u5730\u7403\u5916\u5c11\u5e74\u5c11\u5973 \u540e\u7bc7", "image" : "//lain.bgm.tv/pic/cover/m/27/63/363309_w55Ii.jpg", "date" : "2022-02-11"}], "relate" : [{"relate" : "\u7eed\u96c6", "src" : 247182, "dst" : 363309}, {"relate" : "\u524d\u4f20", "src" : 363309, "dst" : 247182}]} | json_instruct | {"type": "object", "properties": {"id": {"type": "integer"}, "node": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "nameCN": {"type": "string"}, "image": {"type": "string"}, "date": {"type": "string"}}, "required": ["id", "name", "nameCN", "image", "date"]}}, "relate": {"type": "array", "items": {"type": "object", "properties": {"relate": {"type": "string"}, "src": {"type": "integer"}, "dst": {"type": "integer"}}, "required": ["relate", "src", "dst"]}}}, "required": ["id", "node", "relate"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"word" : "hosen", "definition" : "See Hose. [Archaic]"} | 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": {"expireTime": {"type": "integer"}, "key": {"type": "string"}, "val": {"type": "string"}}, "required": ["expireTime", "key", "val"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"expireTime" : 9007200871107726000, "key" : "/static/f9cd53abc2a2a52fd2d7a1fae14ff112/9a128/matcht.jpg", "val" : "224271cf2b900e5d85c504d7228a3f67"} | json_instruct | {"type": "object", "properties": {"expireTime": {"type": "integer"}, "key": {"type": "string"}, "val": {"type": "string"}}, "required": ["expireTime", "key", "val"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"id": {"type": "string"}, "district_id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "district_id", "name"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "1609031030", "district_id" : "1609031", "name" : "GUMUK REJO"} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "district_id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "district_id", "name"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"AppConfigurations": {"type": "object", "properties": {"email": {"type": "string"}, "password": {"type": "string"}, "recipients": {"type": "string"}, "folderName": {"type": "string"}, "interval": {"type": "string"}}, "required": ["email", "password", "recipients", "folderName", "interval"]}}, "required": ["AppConfigurations"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"AppConfigurations" : {"email" : "youexchangeemail@email.com", "password" : "yourpassword", "recipients" : "afiniti.psautomation@ps-afiniti.com", "folderName" : "yourfolder", "interval" : "2"}} | json_instruct | {"type": "object", "properties": {"AppConfigurations": {"type": "object", "properties": {"email": {"type": "string"}, "password": {"type": "string"}, "recipients": {"type": "string"}, "folderName": {"type": "string"}, "interval": {"type": "string"}}, "required": ["email", "password", "recipients", "folderName", "interval"]}}, "required": ["AppConfigurations"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"user": {"type": "string"}, "consumerGroup": {"type": "string"}, "consumerId": {"type": "string"}, "environmentName": {"type": "string"}, "sdcAddress": {"type": "string"}, "password": {"type": "string"}, "pollingInterval": {"type": "integer"}, "pollingTimeout": {"type": "integer"}, "activateServerTLSAuth": {"type": "boolean"}, "keyStorePassword": {"type": "string"}, "keyStorePath": {"type": "string"}, "messageBusAddresses": {"type": "array", "items": {"type": "string"}}}, "required": ["user", "consumerGroup", "consumerId", "environmentName", "sdcAddress", "password", "pollingInterval", "pollingTimeout", "activateServerTLSAuth", "keyStorePassword", "keyStorePath", "messageBusAddresses"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"user" : "User", "consumerGroup" : "consumerGroup", "consumerId" : "consumerId", "environmentName" : "environmentName", "sdcAddress" : "hostname:8080", "password" : "QpF2TcrdRSFADqDxH1HwDYdYUIbMxOj-TrGd6Vqvwzd", "pollingInterval" : 10, "pollingTimeout" : 30, "activateServerTLSAuth" : true, "keyStorePassword" : "QpF2TcrdRSFADqDxH1HwDYdYUIbMxOj-TrGd6Vqvwzd", "keyStorePath" : "/test", "messageBusAddresses" : ["localhost"]} | json_instruct | {"type": "object", "properties": {"user": {"type": "string"}, "consumerGroup": {"type": "string"}, "consumerId": {"type": "string"}, "environmentName": {"type": "string"}, "sdcAddress": {"type": "string"}, "password": {"type": "string"}, "pollingInterval": {"type": "integer"}, "pollingTimeout": {"type": "integer"}, "activateServerTLSAuth": {"type": "boolean"}, "keyStorePassword": {"type": "string"}, "keyStorePath": {"type": "string"}, "messageBusAddresses": {"type": "array", "items": {"type": "string"}}}, "required": ["user", "consumerGroup", "consumerId", "environmentName", "sdcAddress", "password", "pollingInterval", "pollingTimeout", "activateServerTLSAuth", "keyStorePassword", "keyStorePath", "messageBusAddresses"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "district_id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "district_id", "name"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"id" : "3604080001", "district_id" : "3604080", "name" : "PANYABRANGAN"}, {"id" : "3604080002", "district_id" : "3604080", "name" : "DAHU"}, {"id" : "3604080003", "district_id" : "3604080", "name" : "BANTAR PANJANG"}, {"id" : "3604080004", "district_id" : "3604080", "name" : "KATULISAN"}, {"id" : "3604080005", "district_id" : "3604080", "name" : "PANOSOGAN"}, {"id" : "3604080006", "district_id" : "3604080", "name" : "CIKEUSAL"}, {"id" : "3604080007", "district_id" : "3604080", "name" : "SUKAMAJU"}, {"id" : "3604080008", "district_id" : "3604080", "name" : "HARUNDANG"}, {"id" : "3604080009", "district_id" : "3604080", "name" : "GANDAYASA"}, {"id" : "3604080010", "district_id" : "3604080", "name" : "MONGPOK"}, {"id" : "3604080011", "district_id" : "3604080", "name" : "SUKARAME"}, {"id" : "3604080012", "district_id" : "3604080", "name" : "CILAYANG"}, {"id" : "3604080013", "district_id" : "3604080", "name" : "SUKARATU"}, {"id" : "3604080014", "district_id" : "3604080", "name" : "SUKAMENAK"}, {"id" : "3604080015", "district_id" : "3604080", "name" : "CIMAUNG"}, {"id" : "3604080016", "district_id" : "3604080", "name" : "SUKARAJA"}, {"id" : "3604080017", "district_id" : "3604080", "name" : "CILAYANG GUHA"}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "district_id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "district_id", "name"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"accession_number": {"type": "string"}, "actors": {"type": "array", "items": {"type": "object", "properties": {"ULAN": {"type": "object", "properties": {"Name": {"type": "null"}, "UlanIdNo": {"type": "null"}}, "required": ["Name", "UlanIdNo"]}, "after_follower": {"type": "null"}, "birth_date": {"type": "string"}, "collaboration": {"type": "null"}, "death_date": {"type": "string"}, "display_name": {"type": "string"}, "first": {"type": "string"}, "fullname": {"type": "string"}, "irn": {"type": "integer"}, "last": {"type": "string"}, "middle": {"type": "string"}, "nationality": {"type": "null"}, "organization": {"type": "null"}, "party_type": {"type": "string"}, "role": {"type": "string"}}, "required": ["ULAN", "after_follower", "birth_date", "collaboration", "death_date", "display_name", "first", "fullname", "irn", "last", "middle", "nationality", "organization", "party_type", "role"]}}, "creation_date": {"type": "null"}, "credit_line": {"type": "string"}, "cultures": {"type": "array", "items": {}}, "dimensions": {"type": "string"}, "dynasty": {"type": "null"}, "images": {"type": "array", "items": {}}, "irn": {"type": "integer"}, "materials": {"type": "null"}, "on_view": {"type": "boolean"}, "period": {"type": "null"}, "printers": {"type": "array", "items": {}}, "publishers": {"type": "array", "items": {}}, "rights": {"type": "null"}, "title": {"type": "string"}}, "required": ["accession_number", "actors", "creation_date", "credit_line", "cultures", "dimensions", "dynasty", "images", "irn", "materials", "on_view", "period", "printers", "publishers", "rights", "title"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"accession_number" : "45.185", "actors" : [{"ULAN" : {"Name" : null, "UlanIdNo" : null}, "after_follower" : null, "birth_date" : "1888", "collaboration" : null, "death_date" : "1975", "display_name" : "Gleb W. Derujinsky", "first" : "Gleb", "fullname" : "Gleb W. Derujinsky", "irn" : 5396, "last" : "Derujinsky", "middle" : "W.", "nationality" : null, "organization" : null, "party_type" : "Registration-Verified", "role" : "Artist"}], "creation_date" : null, "credit_line" : "Bequest of Mrs. Lafayette Page", "cultures" : [], "dimensions" : "H: 13 1/2 in.", "dynasty" : null, "images" : [], "irn" : 5839, "materials" : null, "on_view" : false, "period" : null, "printers" : [], "publishers" : [], "rights" : null, "title" : "Ruth Page"} | json_instruct | {"type": "object", "properties": {"accession_number": {"type": "string"}, "actors": {"type": "array", "items": {"type": "object", "properties": {"ULAN": {"type": "object", "properties": {"Name": {"type": "null"}, "UlanIdNo": {"type": "null"}}, "required": ["Name", "UlanIdNo"]}, "after_follower": {"type": "null"}, "birth_date": {"type": "string"}, "collaboration": {"type": "null"}, "death_date": {"type": "string"}, "display_name": {"type": "string"}, "first": {"type": "string"}, "fullname": {"type": "string"}, "irn": {"type": "integer"}, "last": {"type": "string"}, "middle": {"type": "string"}, "nationality": {"type": "null"}, "organization": {"type": "null"}, "party_type": {"type": "string"}, "role": {"type": "string"}}, "required": ["ULAN", "after_follower", "birth_date", "collaboration", "death_date", "display_name", "first", "fullname", "irn", "last", "middle", "nationality", "organization", "party_type", "role"]}}, "creation_date": {"type": "null"}, "credit_line": {"type": "string"}, "cultures": {"type": "array", "items": {}}, "dimensions": {"type": "string"}, "dynasty": {"type": "null"}, "images": {"type": "array", "items": {}}, "irn": {"type": "integer"}, "materials": {"type": "null"}, "on_view": {"type": "boolean"}, "period": {"type": "null"}, "printers": {"type": "array", "items": {}}, "publishers": {"type": "array", "items": {}}, "rights": {"type": "null"}, "title": {"type": "string"}}, "required": ["accession_number", "actors", "creation_date", "credit_line", "cultures", "dimensions", "dynasty", "images", "irn", "materials", "on_view", "period", "printers", "publishers", "rights", "title"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"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" : "bioconductor-sracipe", "downloads" : 8300, "count" : 5766}] | 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#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"subreddit": {"type": "string"}, "author": {"type": "string"}, "count": {"type": "integer"}}, "required": ["subreddit", "author", "count"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"subreddit" : "Audi", "author" : "DaKingOfLions", "count" : 13} | json_instruct | {"type": "object", "properties": {"subreddit": {"type": "string"}, "author": {"type": "string"}, "count": {"type": "integer"}}, "required": ["subreddit", "author", "count"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"web_module_name": {"type": "string"}, "web_module_path": {"type": "string"}, "sockJs_routes": {"type": "array", "items": {}}, "url_routes": {"type": "array", "items": {"type": "object", "properties": {"url": {"type": "string"}, "action": {"type": "string"}, "action_path": {"type": "string"}}, "required": ["url", "action", "action_path"]}}}, "required": ["web_module_name", "web_module_path", "sockJs_routes", "url_routes"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"web_module_name" : "dostrap", "web_module_path" : "dostrap", "sockJs_routes" : [], "url_routes" : [{"url" : "*", "action" : "sendFile", "action_path" : "WebContent/dostrap"}]} | json_instruct | {"type": "object", "properties": {"web_module_name": {"type": "string"}, "web_module_path": {"type": "string"}, "sockJs_routes": {"type": "array", "items": {}}, "url_routes": {"type": "array", "items": {"type": "object", "properties": {"url": {"type": "string"}, "action": {"type": "string"}, "action_path": {"type": "string"}}, "required": ["url", "action", "action_path"]}}}, "required": ["web_module_name", "web_module_path", "sockJs_routes", "url_routes"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"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"}}, "required": ["rustc", "features", "target", "profile", "path", "deps", "local", "rustflags", "metadata"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"rustc" : 13734670590633463302, "features" : "[]", "target" : 10088282520713642473, "profile" : 9935990280773120926, "path" : 15564202616831203752, "deps" : [], "local" : [{"CheckDepInfo" : {"dep_info" : "debug/.fingerprint/ryu-20316cb97807e5e4/dep-build-script-build_script_build-20316cb97807e5e4"}}], "rustflags" : [], "metadata" : 10387617312689919117} | 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"}}, "required": ["rustc", "features", "target", "profile", "path", "deps", "local", "rustflags", "metadata"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"invocationId": {"type": "string"}, "applicationArn": {"type": "string"}, "records": {"type": "array", "items": {"type": "object", "properties": {"recordId": {"type": "string"}, "data": {"type": "string"}}, "required": ["recordId", "data"]}}}, "required": ["invocationId", "applicationArn", "records"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"invocationId" : "invocationIdExample", "applicationArn" : "arn:{partition}:kinesisanalytics:exampleApplication", "records" : [{"recordId" : "123456", "data" : "VGhpcyBpcyBhIHRlc3QgZnJvbSBraW5lc2lzIGFuYWx5dGljcw=="}, {"recordId" : "142857", "data" : "VGhpcyBpcyBhIHRlc3QgZnJvbSBraW5lc2lzIGFuYWx5dGljcw=="}]} | json_instruct | {"type": "object", "properties": {"invocationId": {"type": "string"}, "applicationArn": {"type": "string"}, "records": {"type": "array", "items": {"type": "object", "properties": {"recordId": {"type": "string"}, "data": {"type": "string"}}, "required": ["recordId", "data"]}}}, "required": ["invocationId", "applicationArn", "records"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"build": {"type": "string"}, "test": {"type": "string"}, "precommit": {"type": "string"}}, "required": ["build", "test", "precommit"]}, "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"}, "config": {"type": "object", "properties": {"engine-strict": {"type": "boolean"}}, "required": ["engine-strict"]}, "engines": {"type": "object", "properties": {"node": {"type": "string"}}, "required": ["node"]}, "devDependencies": {"type": "object", "properties": {"chai": {"type": "string"}, "chai-as-promised": {"type": "string"}, "chai-things": {"type": "string"}, "cheerio-httpcli": {"type": "string"}, "eslint": {"type": "string"}, "eslint-config-airbnb-base": {"type": "string"}, "eslint-config-prettier": {"type": "string"}, "eslint-plugin-import": {"type": "string"}, "eslint-plugin-prettier": {"type": "string"}, "husky": {"type": "string"}, "lodash": {"type": "string"}, "mocha": {"type": "string"}, "prettier": {"type": "string"}, "q": {"type": "string"}}, "required": ["chai", "chai-as-promised", "chai-things", "cheerio-httpcli", "eslint", "eslint-config-airbnb-base", "eslint-config-prettier", "eslint-plugin-import", "eslint-plugin-prettier", "husky", "lodash", "mocha", "prettier", "q"]}, "dependencies": {"type": "object", "properties": {}, "required": []}}, "required": ["name", "version", "description", "main", "scripts", "repository", "keywords", "author", "license", "config", "engines", "devDependencies", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "eslint-config-imart", "version" : "2.2.4", "description" : "Definition of ESLint rules and intra-mart JavaScript API", "main" : "index.js", "scripts" : {"build" : "node ./lib/build-globals.js", "test" : "eslint --fix . && mocha", "precommit" : "npm test"}, "repository" : {"type" : "git", "url" : "https://github.com/nekonok/eslint-config-imart"}, "keywords" : ["eslintconfig"], "author" : "nekonok", "license" : "MIT", "config" : {"engine-strict" : true}, "engines" : {"node" : ">= 4.0.0"}, "devDependencies" : {"chai" : "^4.2.0", "chai-as-promised" : "^7.1.1", "chai-things" : "^0.2.0", "cheerio-httpcli" : "^0.8.1", "eslint" : "^6.8.0", "eslint-config-airbnb-base" : "^14.2.0", "eslint-config-prettier" : "^6.11.0", "eslint-plugin-import" : "^2.22.0", "eslint-plugin-prettier" : "^3.1.4", "husky" : "^3.1.0", "lodash" : "^4.17.15", "mocha" : "^6.2.3", "prettier" : "^1.19.1", "q" : "^1.5.1"}, "dependencies" : {}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"build": {"type": "string"}, "test": {"type": "string"}, "precommit": {"type": "string"}}, "required": ["build", "test", "precommit"]}, "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"}, "config": {"type": "object", "properties": {"engine-strict": {"type": "boolean"}}, "required": ["engine-strict"]}, "engines": {"type": "object", "properties": {"node": {"type": "string"}}, "required": ["node"]}, "devDependencies": {"type": "object", "properties": {"chai": {"type": "string"}, "chai-as-promised": {"type": "string"}, "chai-things": {"type": "string"}, "cheerio-httpcli": {"type": "string"}, "eslint": {"type": "string"}, "eslint-config-airbnb-base": {"type": "string"}, "eslint-config-prettier": {"type": "string"}, "eslint-plugin-import": {"type": "string"}, "eslint-plugin-prettier": {"type": "string"}, "husky": {"type": "string"}, "lodash": {"type": "string"}, "mocha": {"type": "string"}, "prettier": {"type": "string"}, "q": {"type": "string"}}, "required": ["chai", "chai-as-promised", "chai-things", "cheerio-httpcli", "eslint", "eslint-config-airbnb-base", "eslint-config-prettier", "eslint-plugin-import", "eslint-plugin-prettier", "husky", "lodash", "mocha", "prettier", "q"]}, "dependencies": {"type": "object", "properties": {}, "required": []}}, "required": ["name", "version", "description", "main", "scripts", "repository", "keywords", "author", "license", "config", "engines", "devDependencies", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"parent": {"type": "string"}}, "required": ["parent"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"parent" : "unvotedandshelved:block/copper_pillar"} | json_instruct | {"type": "object", "properties": {"parent": {"type": "string"}}, "required": ["parent"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"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" : 20468, "cartId" : "c5c6510c-70ff-43d4-8397-da527ef11650", "preferredProducts" : [1253, 3834, 2366], "productReviews" : [{"productId" : 3913, "reviewText" : "This is a really good Incredible Steel Bacon.", "reviewDate" : "2016-10-27T17:59:57.1879804+03:00"}, {"productId" : 28, "reviewText" : "this generate is brown.", "reviewDate" : "2020-02-19T12:49:18.8279707+02:00"}, {"productId" : 1600, "reviewText" : "this Bedfordshire is ratty.", "reviewDate" : "2018-04-27T12:36:31.9313662+03:00"}, {"productId" : 4418, "reviewText" : "talk about optimism!!!", "reviewDate" : "2017-09-14T12:59:32.9744395+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#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"fdtd_kernel20": {"type": "object", "properties": {"write": {"type": "object", "properties": {"device_start": {"type": "number"}, "host_queued_start": {"type": "number"}, "device_queued": {"type": "number"}, "device_end": {"type": "number"}, "host_queued_end": {"type": "number"}}, "required": ["device_start", "host_queued_start", "device_queued", "device_end", "host_queued_end"]}, "device": {"type": "string"}, "nd_range": {"type": "object", "properties": {"device_start": {"type": "number"}, "device_end": {"type": "number"}}, "required": ["device_start", "device_end"]}, "cmdq": {"type": "integer"}, "read": {"type": "object", "properties": {"device_start": {"type": "number"}, "device_end": {"type": "number"}}, "required": ["device_start", "device_end"]}}, "required": ["write", "device", "nd_range", "cmdq", "read"]}}, "required": ["fdtd_kernel20"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"fdtd_kernel20" : {"write" : {"device_start" : 1586198480.4630811, "host_queued_start" : 1586198563.464286, "device_queued" : 1586198480.4630666, "device_end" : 1586198480.4632025, "host_queued_end" : 1586198563.464644}, "device" : "gpu", "nd_range" : {"device_start" : 1586198480.4632084, "device_end" : 1586198480.4632218}, "cmdq" : 0, "read" : {"device_start" : 1586198480.4632304, "device_end" : 1586198480.4632335}}} | json_instruct | {"type": "object", "properties": {"fdtd_kernel20": {"type": "object", "properties": {"write": {"type": "object", "properties": {"device_start": {"type": "number"}, "host_queued_start": {"type": "number"}, "device_queued": {"type": "number"}, "device_end": {"type": "number"}, "host_queued_end": {"type": "number"}}, "required": ["device_start", "host_queued_start", "device_queued", "device_end", "host_queued_end"]}, "device": {"type": "string"}, "nd_range": {"type": "object", "properties": {"device_start": {"type": "number"}, "device_end": {"type": "number"}}, "required": ["device_start", "device_end"]}, "cmdq": {"type": "integer"}, "read": {"type": "object", "properties": {"device_start": {"type": "number"}, "device_end": {"type": "number"}}, "required": ["device_start", "device_end"]}}, "required": ["write", "device", "nd_range", "cmdq", "read"]}}, "required": ["fdtd_kernel20"], "$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"}, "author": {"type": "string"}, "keywords": {"type": "array", "items": {}}, "license": {"type": "string"}, "private": {"type": "boolean"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}, "now-build": {"type": "string"}, "export:pdf": {"type": "string"}}, "required": ["start", "now-build", "export:pdf"]}, "dependencies": {"type": "object", "properties": {"dayjs": {"type": "string"}, "mdx-deck": {"type": "string"}, "mdx-deck-code-surfer": {"type": "string"}, "mdx-deck-live-code": {"type": "string"}, "prism-react-renderer": {"type": "string"}, "raw-loader": {"type": "string"}}, "required": ["dayjs", "mdx-deck", "mdx-deck-code-surfer", "mdx-deck-live-code", "prism-react-renderer", "raw-loader"]}}, "required": ["name", "description", "version", "author", "keywords", "license", "private", "scripts", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "strategy-and-knowledge-for-moderately-good-npm-publish", "description" : "strategy-and-knowledge-for-moderately-good-npm-publish", "version" : "1.0.0", "author" : "1natsu", "keywords" : [], "license" : "MIT", "private" : true, "scripts" : {"start" : "mdx-deck ./deck.mdx", "now-build" : "mdx-deck build --no-html ./deck.mdx && cp -r ./images dist", "export:pdf" : "mdx-deck pdf ./deck.mdx --out-dir ./export"}, "dependencies" : {"dayjs" : "^1.8.12", "mdx-deck" : "1.10.2", "mdx-deck-code-surfer" : "^0.5.5", "mdx-deck-live-code" : "^1.0.1", "prism-react-renderer" : "^0.1.6", "raw-loader" : "0.5.1"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "version": {"type": "string"}, "author": {"type": "string"}, "keywords": {"type": "array", "items": {}}, "license": {"type": "string"}, "private": {"type": "boolean"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}, "now-build": {"type": "string"}, "export:pdf": {"type": "string"}}, "required": ["start", "now-build", "export:pdf"]}, "dependencies": {"type": "object", "properties": {"dayjs": {"type": "string"}, "mdx-deck": {"type": "string"}, "mdx-deck-code-surfer": {"type": "string"}, "mdx-deck-live-code": {"type": "string"}, "prism-react-renderer": {"type": "string"}, "raw-loader": {"type": "string"}}, "required": ["dayjs", "mdx-deck", "mdx-deck-code-surfer", "mdx-deck-live-code", "prism-react-renderer", "raw-loader"]}}, "required": ["name", "description", "version", "author", "keywords", "license", "private", "scripts", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"type": {"type": "string"}, "features": {"type": "array", "items": {"type": "object", "properties": {"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" : [[[-72.656426, 41.269909], [-72.654266, 41.271252], [-72.654861, 41.272675], [-72.65436, 41.273988], [-72.652155, 41.274792], [-72.649689, 41.27441], [-72.647987, 41.275902], [-72.649277, 41.279556], [-72.646847, 41.281122], [-72.646141, 41.280453], [-72.644432, 41.280933], [-72.644412, 41.28163], [-72.625867, 41.283936], [-72.593703, 41.283659], [-72.569412, 41.289441], [-72.564857, 41.289552], [-72.561132, 41.2875], [-72.559139, 41.284731], [-72.557434, 41.283695], [-72.557236, 41.281992], [-72.555435, 41.280788], [-72.551128, 41.280583], [-72.548873, 41.281892], [-72.545986, 41.280335], [-72.548046, 41.277415], [-72.545143, 41.275476], [-72.544339, 41.273697], [-72.547035, 41.2716], [-72.54636, 41.267398], [-72.547655, 41.264323], [-72.547235, 41.262499], [-72.545837, 41.260304], [-72.532709, 41.252791], [-72.533995, 41.25242], [-72.534009, 41.250412], [-72.544567, 41.246206], [-72.57164, 41.26615], [-72.581476, 41.269949], [-72.593488, 41.268047], [-72.596679, 41.266799], [-72.599232, 41.263634], [-72.603764, 41.264641], [-72.607848, 41.267567], [-72.612188, 41.26915], [-72.61889, 41.270406], [-72.624669, 41.269861], [-72.629552, 41.266433], [-72.645812, 41.264134], [-72.65375, 41.264218], [-72.656426, 41.269909]]]}, "type" : "Feature", "properties" : {"cartodb_id" : 13523}}]} | 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#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"name": {"type": "string"}, "type": {"type": "string"}, "description": {"type": "string"}, "license": {"type": "string"}, "minimum-stability": {"type": "string"}, "prefer-stable": {"type": "boolean"}, "require": {"type": "object", "properties": {"php": {"type": "string"}, "ext-json": {"type": "string"}, "guzzlehttp/guzzle": {"type": "string"}}, "required": ["php", "ext-json", "guzzlehttp/guzzle"]}, "require-dev": {"type": "object", "properties": {"phpunit/phpunit": {"type": "string"}}, "required": ["phpunit/phpunit"]}, "autoload": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"Digiwallet\\Packages\\Transaction\\Client\\": {"type": "string"}}, "required": ["Digiwallet\\Packages\\Transaction\\Client\\"]}}, "required": ["psr-4"]}, "autoload-dev": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"Digiwallet\\Packages\\Transaction\\Tests\\": {"type": "string"}}, "required": ["Digiwallet\\Packages\\Transaction\\Tests\\"]}}, "required": ["psr-4"]}}, "required": ["name", "type", "description", "license", "minimum-stability", "prefer-stable", "require", "require-dev", "autoload", "autoload-dev"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "digiwallet/transaction-client", "type" : "library", "description" : "DigiWallet Transaction Client", "license" : "proprietary", "minimum-stability" : "stable", "prefer-stable" : true, "require" : {"php" : ">7.1", "ext-json" : "*", "guzzlehttp/guzzle" : "^6.3"}, "require-dev" : {"phpunit/phpunit" : "^8"}, "autoload" : {"psr-4" : {"Digiwallet\\Packages\\Transaction\\Client\\" : "src/"}}, "autoload-dev" : {"psr-4" : {"Digiwallet\\Packages\\Transaction\\Tests\\" : "tests/"}}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "type": {"type": "string"}, "description": {"type": "string"}, "license": {"type": "string"}, "minimum-stability": {"type": "string"}, "prefer-stable": {"type": "boolean"}, "require": {"type": "object", "properties": {"php": {"type": "string"}, "ext-json": {"type": "string"}, "guzzlehttp/guzzle": {"type": "string"}}, "required": ["php", "ext-json", "guzzlehttp/guzzle"]}, "require-dev": {"type": "object", "properties": {"phpunit/phpunit": {"type": "string"}}, "required": ["phpunit/phpunit"]}, "autoload": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"Digiwallet\\Packages\\Transaction\\Client\\": {"type": "string"}}, "required": ["Digiwallet\\Packages\\Transaction\\Client\\"]}}, "required": ["psr-4"]}, "autoload-dev": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"Digiwallet\\Packages\\Transaction\\Tests\\": {"type": "string"}}, "required": ["Digiwallet\\Packages\\Transaction\\Tests\\"]}}, "required": ["psr-4"]}}, "required": ["name", "type", "description", "license", "minimum-stability", "prefer-stable", "require", "require-dev", "autoload", "autoload-dev"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"location": {"type": "object", "properties": {"id": {"type": "integer"}, "country": {"type": "string"}, "country_code": {"type": "string"}, "country_population": {"type": "integer"}, "province": {"type": "string"}, "county": {"type": "string"}, "last_updated": {"type": "string"}, "coordinates": {"type": "object", "properties": {"latitude": {"type": "string"}, "longitude": {"type": "string"}}, "required": ["latitude", "longitude"]}, "latest": {"type": "object", "properties": {"confirmed": {"type": "integer"}, "deaths": {"type": "integer"}, "recovered": {"type": "integer"}}, "required": ["confirmed", "deaths", "recovered"]}, "timelines": {"type": "object", "properties": {}, "required": []}}, "required": ["id", "country", "country_code", "country_population", "province", "county", "last_updated", "coordinates", "latest", "timelines"]}}, "required": ["location"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"location" : {"id" : 123, "country" : "Guatemala", "country_code" : "GT", "country_population" : 13550440, "province" : "", "county" : "", "last_updated" : "2020-03-31T09:29:47.751905Z", "coordinates" : {"latitude" : "15.7835", "longitude" : "-90.2308"}, "latest" : {"confirmed" : 36, "deaths" : 1, "recovered" : 0}, "timelines" : {}}} | json_instruct | {"type": "object", "properties": {"location": {"type": "object", "properties": {"id": {"type": "integer"}, "country": {"type": "string"}, "country_code": {"type": "string"}, "country_population": {"type": "integer"}, "province": {"type": "string"}, "county": {"type": "string"}, "last_updated": {"type": "string"}, "coordinates": {"type": "object", "properties": {"latitude": {"type": "string"}, "longitude": {"type": "string"}}, "required": ["latitude", "longitude"]}, "latest": {"type": "object", "properties": {"confirmed": {"type": "integer"}, "deaths": {"type": "integer"}, "recovered": {"type": "integer"}}, "required": ["confirmed", "deaths", "recovered"]}, "timelines": {"type": "object", "properties": {}, "required": []}}, "required": ["id", "country", "country_code", "country_population", "province", "county", "last_updated", "coordinates", "latest", "timelines"]}}, "required": ["location"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"schema_version": {"type": "string"}, "id": {"type": "string"}, "modified": {"type": "string"}, "published": {"type": "string"}, "aliases": {"type": "array", "items": {"type": "string"}}, "details": {"type": "string"}, "severity": {"type": "array", "items": {}}, "affected": {"type": "array", "items": {}}, "references": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}}, "database_specific": {"type": "object", "properties": {"cwe_ids": {"type": "array", "items": {}}, "severity": {"type": "string"}, "github_reviewed": {"type": "boolean"}}, "required": ["cwe_ids", "severity", "github_reviewed"]}}, "required": ["schema_version", "id", "modified", "published", "aliases", "details", "severity", "affected", "references", "database_specific"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"schema_version" : "1.2.0", "id" : "GHSA-4wp5-gx3f-rhgh", "modified" : "2022-05-02T03:47:43Z", "published" : "2022-05-02T03:47:43Z", "aliases" : ["CVE-2009-3691"], "details" : "Multiple integer overflows in setnet32.exe 3.50.0.13752 in IBM Informix Client SDK 3.0 and 3.50 and Informix Connect Runtime 3.x allow remote attackers to execute arbitrary code via a .nfx file with a crafted (1) HostSize, and possibly (2) ProtoSize and (3) ServerSize, field that triggers a stack-based buffer overflow involving a crafted HostList field. NOTE: some of these details are obtained from third party information.", "severity" : [], "affected" : [], "references" : [{"type" : "ADVISORY", "url" : "https://nvd.nist.gov/vuln/detail/CVE-2009-3691"}, {"type" : "WEB", "url" : "https://exchange.xforce.ibmcloud.com/vulnerabilities/53644"}, {"type" : "WEB", "url" : "http://retrogod.altervista.org/9sg_ibm_setnet32.html"}, {"type" : "WEB", "url" : "http://secunia.com/advisories/36949"}, {"type" : "WEB", "url" : "http://securitytracker.com/id?1022985"}, {"type" : "WEB", "url" : "http://www.osvdb.org/58530"}, {"type" : "WEB", "url" : "http://www.securityfocus.com/bid/36588"}, {"type" : "WEB", "url" : "http://www.vupen.com/english/advisories/2009/2834"}], "database_specific" : {"cwe_ids" : [], "severity" : "HIGH", "github_reviewed" : false}} | json_instruct | {"type": "object", "properties": {"schema_version": {"type": "string"}, "id": {"type": "string"}, "modified": {"type": "string"}, "published": {"type": "string"}, "aliases": {"type": "array", "items": {"type": "string"}}, "details": {"type": "string"}, "severity": {"type": "array", "items": {}}, "affected": {"type": "array", "items": {}}, "references": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}}, "database_specific": {"type": "object", "properties": {"cwe_ids": {"type": "array", "items": {}}, "severity": {"type": "string"}, "github_reviewed": {"type": "boolean"}}, "required": ["cwe_ids", "severity", "github_reviewed"]}}, "required": ["schema_version", "id", "modified", "published", "aliases", "details", "severity", "affected", "references", "database_specific"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"printThis.js": {"type": "string"}, "printThis.min.js": {"type": "string"}}, "required": ["printThis.js", "printThis.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"printThis.js" : "sha512-dvY9NhQ/MZlqaOrLzJb/li30/F0ORspaNuTPikTOVpVINApgFCN96lzHVXcTjCN9DB1BUUaR328R+EnRQeT9xQ==", "printThis.min.js" : "sha512-q4kY6PLCmuZdhcDXWvOIsRAFQOFfuBe88amMCC9XED+ZbJfk0vxcpzUFD4TjO5fGfKI7e8CPbSrhlxsyFBckMg=="} | json_instruct | {"type": "object", "properties": {"printThis.js": {"type": "string"}, "printThis.min.js": {"type": "string"}}, "required": ["printThis.js", "printThis.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"validateTags": {"type": "boolean"}, "validTags": {"type": "array", "items": {"type": "string"}}}, "required": ["validateTags", "validTags"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"validateTags" : false, "validTags" : ["Aero", "Skin"]} | json_instruct | {"type": "object", "properties": {"validateTags": {"type": "boolean"}, "validTags": {"type": "array", "items": {"type": "string"}}}, "required": ["validateTags", "validTags"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"block.soulify.soul_magma_block": {"type": "string"}}, "required": ["block.soulify.soul_magma_block"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"block.soulify.soul_magma_block" : "Soul Magma Block"} | json_instruct | {"type": "object", "properties": {"block.soulify.soul_magma_block": {"type": "string"}}, "required": ["block.soulify.soul_magma_block"], "$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"}, "type": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "license": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}}, "require": {"type": "object", "properties": {"yiisoft/yii2": {"type": "string"}, "yiisoft/yii2-bootstrap": {"type": "string"}, "fortawesome/font-awesome": {"type": "string"}, "bower-asset/fontawesome-iconpicker": {"type": "string"}}, "required": ["yiisoft/yii2", "yiisoft/yii2-bootstrap", "fortawesome/font-awesome", "bower-asset/fontawesome-iconpicker"]}, "require-dev": {"type": "object", "properties": {"phpunit/phpunit": {"type": "string"}}, "required": ["phpunit/phpunit"]}, "repositories": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}}, "autoload": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"dominus77\\iconpicker\\": {"type": "string"}}, "required": ["dominus77\\iconpicker\\"]}}, "required": ["psr-4"]}}, "required": ["name", "description", "type", "keywords", "license", "authors", "require", "require-dev", "repositories", "autoload"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "dominus77/yii2-fontawesome-iconpicker", "description" : "Font Awesome Icon Picker plugin for Twitter Bootstrap widget for Yii2.", "type" : "yii2-extension", "keywords" : ["dominus77", "yii2", "extension", "widget", "bootstrap", "popover", "iconpicker", "fontawesome"], "license" : "BSD-3-Clause", "authors" : [{"name" : "Alexey Schevchenko", "email" : "ivanovosity@gmail.com"}], "require" : {"yiisoft/yii2" : "~2.0", "yiisoft/yii2-bootstrap" : "~2.0.0", "fortawesome/font-awesome" : "^4.6", "bower-asset/fontawesome-iconpicker" : "~1.3.1"}, "require-dev" : {"phpunit/phpunit" : "6.*"}, "repositories" : [{"type" : "composer", "url" : "https://asset-packagist.org"}], "autoload" : {"psr-4" : {"dominus77\\iconpicker\\" : ""}}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "type": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "license": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}}, "require": {"type": "object", "properties": {"yiisoft/yii2": {"type": "string"}, "yiisoft/yii2-bootstrap": {"type": "string"}, "fortawesome/font-awesome": {"type": "string"}, "bower-asset/fontawesome-iconpicker": {"type": "string"}}, "required": ["yiisoft/yii2", "yiisoft/yii2-bootstrap", "fortawesome/font-awesome", "bower-asset/fontawesome-iconpicker"]}, "require-dev": {"type": "object", "properties": {"phpunit/phpunit": {"type": "string"}}, "required": ["phpunit/phpunit"]}, "repositories": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}}, "autoload": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"dominus77\\iconpicker\\": {"type": "string"}}, "required": ["dominus77\\iconpicker\\"]}}, "required": ["psr-4"]}}, "required": ["name", "description", "type", "keywords", "license", "authors", "require", "require-dev", "repositories", "autoload"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"prefecture": {"type": "string"}, "city": {"type": "string"}, "prefecture_kana": {"type": "string"}, "city_kana": {"type": "string"}, "code": {"type": "string"}, "code5": {"type": "string"}}, "required": ["prefecture", "city", "prefecture_kana", "city_kana", "code", "code5"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"prefecture" : "\u9759\u5ca1\u770c", "city" : "\u9759\u5ca1\u5e02", "prefecture_kana" : "\u30b7\u30ba\u30aa\u30ab\u30b1\u30f3", "city_kana" : "\u30b7\u30ba\u30aa\u30ab\u30b7", "code" : "221007", "code5" : "22100"} | json_instruct | {"type": "object", "properties": {"prefecture": {"type": "string"}, "city": {"type": "string"}, "prefecture_kana": {"type": "string"}, "city_kana": {"type": "string"}, "code": {"type": "string"}, "code5": {"type": "string"}}, "required": ["prefecture", "city", "prefecture_kana", "city_kana", "code", "code5"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"ast": {"type": "null"}, "code": {"type": "string"}, "map": {"type": "null"}, "metadata": {"type": "object", "properties": {}, "required": []}, "sourceType": {"type": "string"}}, "required": ["ast", "code", "map", "metadata", "sourceType"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"ast" : null, "code" : "var trimmedEndIndex = require('./_trimmedEndIndex');\n/** Used to match leading whitespace. */\n\n\nvar reTrimStart = /^\\s+/;\n/**\n * The base implementation of `_.trim`.\n *\n * @private\n * @param {string} string The string to trim.\n * @returns {string} Returns the trimmed string.\n */\n\nfunction baseTrim(string) {\n return string ? string.slice(0, trimmedEndIndex(string) + 1).replace(reTrimStart, '') : string;\n}\n\nmodule.exports = baseTrim;", "map" : null, "metadata" : {}, "sourceType" : "script"} | json_instruct | {"type": "object", "properties": {"ast": {"type": "null"}, "code": {"type": "string"}, "map": {"type": "null"}, "metadata": {"type": "object", "properties": {}, "required": []}, "sourceType": {"type": "string"}}, "required": ["ast", "code", "map", "metadata", "sourceType"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"@timestamp": {"type": "string"}, "beat": {"type": "object", "properties": {"hostname": {"type": "string"}, "name": {"type": "string"}}, "required": ["hostname", "name"]}, "metricset": {"type": "object", "properties": {"module": {"type": "string"}, "name": {"type": "string"}, "rtt": {"type": "integer"}}, "required": ["module", "name", "rtt"]}, "system": {"type": "object", "properties": {"process": {"type": "object", "properties": {"cmdline": {"type": "string"}, "cpu": {"type": "object", "properties": {"start_time": {"type": "string"}, "total": {"type": "object", "properties": {"norm": {"type": "object", "properties": {"pct": {"type": "number"}}, "required": ["pct"]}, "pct": {"type": "number"}}, "required": ["norm", "pct"]}}, "required": ["start_time", "total"]}, "memory": {"type": "object", "properties": {"rss": {"type": "object", "properties": {"bytes": {"type": "integer"}, "pct": {"type": "number"}}, "required": ["bytes", "pct"]}, "share": {"type": "integer"}, "size": {"type": "integer"}}, "required": ["rss", "share", "size"]}, "name": {"type": "string"}, "pgid": {"type": "integer"}, "pid": {"type": "integer"}, "ppid": {"type": "integer"}, "state": {"type": "string"}, "username": {"type": "string"}}, "required": ["cmdline", "cpu", "memory", "name", "pgid", "pid", "ppid", "state", "username"]}}, "required": ["process"]}}, "required": ["@timestamp", "beat", "metricset", "system"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"@timestamp" : "2016-05-23T08:05:34.853Z", "beat" : {"hostname" : "host.example.com", "name" : "host.example.com"}, "metricset" : {"module" : "system", "name" : "process", "rtt" : 115}, "system" : {"process" : {"cmdline" : "/var/folders/8x/rnyk6yxn6w97lddn3bs02gf00000gn/T/go-build935695167/github.com/elastic/beats/metricbeat/module/system/process/_test/process.test -test.v=true -data", "cpu" : {"start_time" : "2017-06-23T19:57:04.691Z", "total" : {"norm" : {"pct" : 0.0117}, "pct" : 0.0938}}, "memory" : {"rss" : {"bytes" : 13565952, "pct" : 0.0008}, "share" : 0, "size" : 570052358144}, "name" : "process.test", "pgid" : 61828, "pid" : 61938, "ppid" : 61828, "state" : "running", "username" : "akroh"}}} | json_instruct | {"type": "object", "properties": {"@timestamp": {"type": "string"}, "beat": {"type": "object", "properties": {"hostname": {"type": "string"}, "name": {"type": "string"}}, "required": ["hostname", "name"]}, "metricset": {"type": "object", "properties": {"module": {"type": "string"}, "name": {"type": "string"}, "rtt": {"type": "integer"}}, "required": ["module", "name", "rtt"]}, "system": {"type": "object", "properties": {"process": {"type": "object", "properties": {"cmdline": {"type": "string"}, "cpu": {"type": "object", "properties": {"start_time": {"type": "string"}, "total": {"type": "object", "properties": {"norm": {"type": "object", "properties": {"pct": {"type": "number"}}, "required": ["pct"]}, "pct": {"type": "number"}}, "required": ["norm", "pct"]}}, "required": ["start_time", "total"]}, "memory": {"type": "object", "properties": {"rss": {"type": "object", "properties": {"bytes": {"type": "integer"}, "pct": {"type": "number"}}, "required": ["bytes", "pct"]}, "share": {"type": "integer"}, "size": {"type": "integer"}}, "required": ["rss", "share", "size"]}, "name": {"type": "string"}, "pgid": {"type": "integer"}, "pid": {"type": "integer"}, "ppid": {"type": "integer"}, "state": {"type": "string"}, "username": {"type": "string"}}, "required": ["cmdline", "cpu", "memory", "name", "pgid", "pid", "ppid", "state", "username"]}}, "required": ["process"]}}, "required": ["@timestamp", "beat", "metricset", "system"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "array", "items": {"type": "object", "properties": {"DeniedAlternatives": {"type": "array", "items": {}}, "Files": {"type": "object", "properties": {"items/generic/mechparts/body/mechbodyglitch.item": {"type": "array", "items": {"type": "string"}}}, "required": ["items/generic/mechparts/body/mechbodyglitch.item"]}, "Texts": {"type": "object", "properties": {"Eng": {"type": "string"}, "Rus": {"type": "string"}}, "required": ["Eng", "Rus"]}}, "required": ["DeniedAlternatives", "Files", "Texts"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"DeniedAlternatives" : [], "Files" : {"items/generic/mechparts/body/mechbodyglitch.item" : ["/description"]}, "Texts" : {"Eng" : "A mighty Glitch-styled mech body, made from thick layers of plated violium.", "Rus" : "\u041c\u043e\u0433\u0443\u0447\u0438\u0439 \u043c\u0435\u0445 \u0432 \u0441\u0442\u0438\u043b\u0435 \u0413\u043b\u0438\u0442\u0447\u0435\u0439, \u0441\u0434\u0435\u043b\u0430\u043d\u043d\u044b\u0439 \u0438\u0437 \u043f\u043b\u043e\u0442\u043d\u044b\u0445 \u0441\u043b\u043e\u0451\u0432 \u0432\u0438\u043e\u043b\u0438\u0443\u043c\u0430."}}, {"DeniedAlternatives" : [], "Files" : {"items/generic/mechparts/body/mechbodyglitch.item" : ["/shortdescription"]}, "Texts" : {"Eng" : "Arthuria Mech Body", "Rus" : "\u041a\u043e\u0440\u043f\u0443\u0441 \u043c\u0435\u0445\u0430 \"\u0410\u0440\u0442\u0443\u0440\u0438\u044f\""}}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"DeniedAlternatives": {"type": "array", "items": {}}, "Files": {"type": "object", "properties": {"items/generic/mechparts/body/mechbodyglitch.item": {"type": "array", "items": {"type": "string"}}}, "required": ["items/generic/mechparts/body/mechbodyglitch.item"]}, "Texts": {"type": "object", "properties": {"Eng": {"type": "string"}, "Rus": {"type": "string"}}, "required": ["Eng", "Rus"]}}, "required": ["DeniedAlternatives", "Files", "Texts"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"app_name": {"type": "string"}, "app_version": {"type": "string"}, "go_version": {"type": "string"}, "chain_app_version": {"type": "integer"}, "chain_block_version": {"type": "integer"}, "chain_id": {"type": "string"}, "chain_name": {"type": "string"}, "genesis_height": {"type": "integer"}, "genesis_time": {"type": "string"}, "last_index_version": {"type": "integer"}, "last_indexed_height": {"type": "integer"}, "last_indexed_time": {"type": "string"}, "last_indexed_at": {"type": "string"}, "indexing_lag": {"type": "integer"}}, "required": ["app_name", "app_version", "go_version", "chain_app_version", "chain_block_version", "chain_id", "chain_name", "genesis_height", "genesis_time", "last_index_version", "last_indexed_height", "last_indexed_time", "last_indexed_at", "indexing_lag"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"app_name" : "oasishub-indexer", "app_version" : "0.5.2", "go_version" : "1.14", "chain_app_version" : 1703936, "chain_block_version" : 11, "chain_id" : "c014bda208f670539e8f03016b0dcfe16e0c2ad9a060419d1a", "chain_name" : "amber-2020-08-06-1596754800", "genesis_height" : 717600, "genesis_time" : "2020-08-06T16:00:00Z", "last_index_version" : 3, "last_indexed_height" : 406392, "last_indexed_time" : "2020-09-02T14:52:53Z", "last_indexed_at" : "2020-09-02T14:53:07.661015Z", "indexing_lag" : 2} | json_instruct | {"type": "object", "properties": {"app_name": {"type": "string"}, "app_version": {"type": "string"}, "go_version": {"type": "string"}, "chain_app_version": {"type": "integer"}, "chain_block_version": {"type": "integer"}, "chain_id": {"type": "string"}, "chain_name": {"type": "string"}, "genesis_height": {"type": "integer"}, "genesis_time": {"type": "string"}, "last_index_version": {"type": "integer"}, "last_indexed_height": {"type": "integer"}, "last_indexed_time": {"type": "string"}, "last_indexed_at": {"type": "string"}, "indexing_lag": {"type": "integer"}}, "required": ["app_name", "app_version", "go_version", "chain_app_version", "chain_block_version", "chain_id", "chain_name", "genesis_height", "genesis_time", "last_index_version", "last_indexed_height", "last_indexed_time", "last_indexed_at", "indexing_lag"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"resourceType": {"type": "string"}, "id": {"type": "string"}, "text": {"type": "object", "properties": {"status": {"type": "string"}, "div": {"type": "string"}}, "required": ["status", "div"]}, "active": {"type": "boolean"}, "type": {"type": "array", "items": {"type": "object", "properties": {"coding": {"type": "array", "items": {"type": "object", "properties": {"system": {"type": "string"}, "code": {"type": "string"}, "display": {"type": "string"}}, "required": ["system", "code", "display"]}}}, "required": ["coding"]}}, "name": {"type": "string"}}, "required": ["resourceType", "id", "text", "active", "type", "name"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"resourceType" : "Organization", "id" : "lab-org-example", "text" : {"status" : "generated", "div" : "<div xmlns=\"http://www.w3.org/1999/xhtml\"><p><b>Generated Narrative</b></p><p><b>active</b>: true</p><p><b>type</b>: <span title=\"Codes: {http://snomed.info/sct 73588009}\">Hospital-based laboratory facility</span></p><p><b>name</b>: Best Hospital Laboratory</p></div>"}, "active" : true, "type" : [{"coding" : [{"system" : "http://snomed.info/sct", "code" : "73588009", "display" : "Hospital-based laboratory facility"}]}], "name" : "Best Hospital Laboratory"} | json_instruct | {"type": "object", "properties": {"resourceType": {"type": "string"}, "id": {"type": "string"}, "text": {"type": "object", "properties": {"status": {"type": "string"}, "div": {"type": "string"}}, "required": ["status", "div"]}, "active": {"type": "boolean"}, "type": {"type": "array", "items": {"type": "object", "properties": {"coding": {"type": "array", "items": {"type": "object", "properties": {"system": {"type": "string"}, "code": {"type": "string"}, "display": {"type": "string"}}, "required": ["system", "code", "display"]}}}, "required": ["coding"]}}, "name": {"type": "string"}}, "required": ["resourceType", "id", "text", "active", "type", "name"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"errors": {"type": "array", "items": {}}, "warnings": {"type": "array", "items": {}}, "namedChunkGroups": {"type": "object", "properties": {"app": {"type": "object", "properties": {"chunks": {"type": "array", "items": {"type": "integer"}}, "assets": {"type": "array", "items": {"type": "string"}}, "children": {"type": "object", "properties": {}, "required": []}, "childAssets": {"type": "object", "properties": {}, "required": []}}, "required": ["chunks", "assets", "children", "childAssets"]}, "component---src-pages-index-js": {"type": "object", "properties": {"chunks": {"type": "array", "items": {"type": "integer"}}, "assets": {"type": "array", "items": {"type": "string"}}, "children": {"type": "object", "properties": {}, "required": []}, "childAssets": {"type": "object", "properties": {}, "required": []}}, "required": ["chunks", "assets", "children", "childAssets"]}}, "required": ["app", "component---src-pages-index-js"]}, "assetsByChunkName": {"type": "object", "properties": {"app": {"type": "array", "items": {"type": "string"}}, "component---src-pages-index-js": {"type": "array", "items": {"type": "string"}}}, "required": ["app", "component---src-pages-index-js"]}}, "required": ["errors", "warnings", "namedChunkGroups", "assetsByChunkName"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"errors" : [], "warnings" : [], "namedChunkGroups" : {"app" : {"chunks" : [4, 1, 3, 0], "assets" : ["webpack-runtime-66dc22fb72534d8d39c4.js", "webpack-runtime-66dc22fb72534d8d39c4.js.map", "commons-7a992189d1b9ee3aedbd.js", "commons-7a992189d1b9ee3aedbd.js.map", "styles.1c206beab876bb942633.css", "styles-bfdecd63128051af3a97.js", "styles-bfdecd63128051af3a97.js.map", "app-f34c446b8b9e43db4daa.js", "app-f34c446b8b9e43db4daa.js.map"], "children" : {}, "childAssets" : {}}, "component---src-pages-index-js" : {"chunks" : [2], "assets" : ["component---src-pages-index-js-fffdd59710320da5c9fe.js", "component---src-pages-index-js-fffdd59710320da5c9fe.js.map"], "children" : {}, "childAssets" : {}}}, "assetsByChunkName" : {"app" : ["webpack-runtime-66dc22fb72534d8d39c4.js", "commons-7a992189d1b9ee3aedbd.js", "styles.1c206beab876bb942633.css", "styles-bfdecd63128051af3a97.js", "app-f34c446b8b9e43db4daa.js"], "component---src-pages-index-js" : ["component---src-pages-index-js-fffdd59710320da5c9fe.js"]}} | json_instruct | {"type": "object", "properties": {"errors": {"type": "array", "items": {}}, "warnings": {"type": "array", "items": {}}, "namedChunkGroups": {"type": "object", "properties": {"app": {"type": "object", "properties": {"chunks": {"type": "array", "items": {"type": "integer"}}, "assets": {"type": "array", "items": {"type": "string"}}, "children": {"type": "object", "properties": {}, "required": []}, "childAssets": {"type": "object", "properties": {}, "required": []}}, "required": ["chunks", "assets", "children", "childAssets"]}, "component---src-pages-index-js": {"type": "object", "properties": {"chunks": {"type": "array", "items": {"type": "integer"}}, "assets": {"type": "array", "items": {"type": "string"}}, "children": {"type": "object", "properties": {}, "required": []}, "childAssets": {"type": "object", "properties": {}, "required": []}}, "required": ["chunks", "assets", "children", "childAssets"]}}, "required": ["app", "component---src-pages-index-js"]}, "assetsByChunkName": {"type": "object", "properties": {"app": {"type": "array", "items": {"type": "string"}}, "component---src-pages-index-js": {"type": "array", "items": {"type": "string"}}}, "required": ["app", "component---src-pages-index-js"]}}, "required": ["errors", "warnings", "namedChunkGroups", "assetsByChunkName"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"jquery.contextMenu.css": {"type": "string"}, "jquery.contextMenu.js": {"type": "string"}, "jquery.contextMenu.min.css": {"type": "string"}, "jquery.contextMenu.min.js": {"type": "string"}}, "required": ["jquery.contextMenu.css", "jquery.contextMenu.js", "jquery.contextMenu.min.css", "jquery.contextMenu.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"jquery.contextMenu.css" : "sha256-WWvcy+MRVZPqaf7y9vIC74uZpIBCOykeahoMhL52wNg=", "jquery.contextMenu.js" : "sha256-HziCvNgc0cQUJdama1Cz1/y0DYDLj4Tw6wlRHnqoKT8=", "jquery.contextMenu.min.css" : "sha256-KCgQbTorZi7tbt4Q+MNl/DpWyfqnrGCBblT9qTZDYd0=", "jquery.contextMenu.min.js" : "sha256-Jklioiyg8D+RR9o4eW/zNOg0E+Obb0AlNKO0KcWgVdI="} | json_instruct | {"type": "object", "properties": {"jquery.contextMenu.css": {"type": "string"}, "jquery.contextMenu.js": {"type": "string"}, "jquery.contextMenu.min.css": {"type": "string"}, "jquery.contextMenu.min.js": {"type": "string"}}, "required": ["jquery.contextMenu.css", "jquery.contextMenu.js", "jquery.contextMenu.min.css", "jquery.contextMenu.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"title": {"type": "string"}, "author": {"type": "string"}, "description": {"type": "string"}, "thumb": {"type": "string"}, "download": {"type": "string"}, "origin": {"type": "string"}}, "required": ["title", "author", "description", "thumb", "download", "origin"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"title" : "\u65e9\u82d7\u3055\u3093\u3068\u970a\u5922\u3061\u3083\u3093\u3067Lamb.\uff11\uff18\u6b73\u4ee5\u4e0a\uff01", "author" : "homeALTO", "description" : "\u30cb\u30b3\u52d5\u3067UP\u3063\u305f\u5206\u306e\u5dee\u5206\u3067\u3059\u3002<br><aundefinedhref='https://www.nicovideo.jp/watch/sm39766983'>https://www.nicovideo.jp/watch/sm39766983</a><br>\u4f7f\u3063\u305f\u30e2\u30c7\u30eb\u306e\u8a73\u7d30\u306f\u30cb\u30b3\u52d5\u3067\u78ba\u8a8d\u3067\u304d\u307e\u3059", "thumb" : "//i.iwara.tv/sites/default/files/styles/thumbnail/public/videos/thumbnails/2257543/thumbnail-2257543_0013.jpg?itok=Crrn1NRN", "download" : "https://ecchi.iwara.tv/api/video/lyvb9u3mb6c8o9ana", "origin" : "https://ecchi.iwara.tv/videos/lyvb9u3mb6c8o9ana"} | json_instruct | {"type": "object", "properties": {"title": {"type": "string"}, "author": {"type": "string"}, "description": {"type": "string"}, "thumb": {"type": "string"}, "download": {"type": "string"}, "origin": {"type": "string"}}, "required": ["title", "author", "description", "thumb", "download", "origin"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"source": {"type": "string"}, "trackCount": {"type": "integer"}, "tracks": {"type": "array", "items": {"type": "object", "properties": {"_id": {"type": "string"}, "names": {"type": "array", "items": {"type": "string"}}, "releases": {"type": "array", "items": {"type": "object", "properties": {"_id": {"type": "string"}, "names": {"type": "array", "items": {"type": "string"}}}, "required": ["_id", "names"]}}, "artists": {"type": "array", "items": {"type": "object", "properties": {"_id": {"type": "string"}, "names": {"type": "array", "items": {"type": "string"}}}, "required": ["_id", "names"]}}}, "required": ["_id", "names", "releases", "artists"]}}, "targets": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "targetId": {"type": "string"}, "trackCount": {"type": "integer"}, "tracks": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "targetId", "trackCount", "tracks"]}}}, "required": ["source", "trackCount", "tracks", "targets"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"source" : "J. Long", "trackCount" : 1, "tracks" : [{"_id" : "2360", "names" : ["I'm A Fool For You, Girl"], "releases" : [{"_id" : "593", "names" : ["Dandy In The Underworld"]}], "artists" : [{"_id" : "256", "names" : ["T. Rex"]}]}], "targets" : [{"name" : "Paul Humphrey", "targetId" : "820", "trackCount" : 1, "tracks" : ["2360"]}, {"name" : "Marc Bolan", "targetId" : "1825", "trackCount" : 1, "tracks" : ["2360"]}, {"name" : "Scott Edwards", "targetId" : "2906", "trackCount" : 1, "tracks" : ["2360"]}, {"name" : "Steve Gregory", "targetId" : "2911", "trackCount" : 1, "tracks" : ["2360"]}, {"name" : "Gloria Jones", "targetId" : "2918", "trackCount" : 1, "tracks" : ["2360"]}]} | json_instruct | {"type": "object", "properties": {"source": {"type": "string"}, "trackCount": {"type": "integer"}, "tracks": {"type": "array", "items": {"type": "object", "properties": {"_id": {"type": "string"}, "names": {"type": "array", "items": {"type": "string"}}, "releases": {"type": "array", "items": {"type": "object", "properties": {"_id": {"type": "string"}, "names": {"type": "array", "items": {"type": "string"}}}, "required": ["_id", "names"]}}, "artists": {"type": "array", "items": {"type": "object", "properties": {"_id": {"type": "string"}, "names": {"type": "array", "items": {"type": "string"}}}, "required": ["_id", "names"]}}}, "required": ["_id", "names", "releases", "artists"]}}, "targets": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "targetId": {"type": "string"}, "trackCount": {"type": "integer"}, "tracks": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "targetId", "trackCount", "tracks"]}}}, "required": ["source", "trackCount", "tracks", "targets"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "array", "items": {"type": "object", "properties": {"continent": {"type": "string"}}, "required": ["continent"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"continent" : "Africa"}, {"continent" : "Antarctica"}, {"continent" : "Asia"}, {"continent" : "Europe"}, {"continent" : "Oceania"}, {"continent" : "North America"}, {"continent" : "South America"}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"continent": {"type": "string"}}, "required": ["continent"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"status": {"type": "string"}, "tp": {"type": "integer"}, "msg": {"type": "string"}, "result": {"type": "object", "properties": {"\"27678\"": {"type": "string"}, "\"27668\"": {"type": "string"}, "\"27666\"": {"type": "string"}, "\"27654\"": {"type": "string"}, "\"27653\"": {"type": "string"}, "\"27650\"": {"type": "string"}, "\"27652\"": {"type": "string"}, "\"27629\"": {"type": "string"}, "\"27615\"": {"type": "string"}, "\"27614\"": {"type": "string"}, "\"27607\"": {"type": "string"}, "\"27591\"": {"type": "string"}, "\"27586\"": {"type": "string"}, "\"27581\"": {"type": "string"}}, "required": ["\"27678\"", "\"27668\"", "\"27666\"", "\"27654\"", "\"27653\"", "\"27650\"", "\"27652\"", "\"27629\"", "\"27615\"", "\"27614\"", "\"27607\"", "\"27591\"", "\"27586\"", "\"27581\""]}, "hits": {"type": "string"}}, "required": ["status", "tp", "msg", "result", "hits"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"status" : "success", "tp" : 1, "msg" : "Cities fetched successfully.", "result" : {"\"27678\"" : "Arrah", "\"27668\"" : "Bocanda", "\"27666\"" : "Bongouanou", "\"27654\"" : "Daoukro", "\"27653\"" : "Didievi", "\"27650\"" : "Dimbokro", "\"27652\"" : "Djekanou", "\"27629\"" : "Kouassi-Kouassikro", "\"27615\"" : "M'Bahiakro", "\"27614\"" : "M'Batto", "\"27607\"" : "Prikro", "\"27591\"" : "Tiebissou", "\"27586\"" : "Toumodi", "\"27581\"" : "Yamoussoukro"}, "hits" : "3201"} | json_instruct | {"type": "object", "properties": {"status": {"type": "string"}, "tp": {"type": "integer"}, "msg": {"type": "string"}, "result": {"type": "object", "properties": {"\"27678\"": {"type": "string"}, "\"27668\"": {"type": "string"}, "\"27666\"": {"type": "string"}, "\"27654\"": {"type": "string"}, "\"27653\"": {"type": "string"}, "\"27650\"": {"type": "string"}, "\"27652\"": {"type": "string"}, "\"27629\"": {"type": "string"}, "\"27615\"": {"type": "string"}, "\"27614\"": {"type": "string"}, "\"27607\"": {"type": "string"}, "\"27591\"": {"type": "string"}, "\"27586\"": {"type": "string"}, "\"27581\"": {"type": "string"}}, "required": ["\"27678\"", "\"27668\"", "\"27666\"", "\"27654\"", "\"27653\"", "\"27650\"", "\"27652\"", "\"27629\"", "\"27615\"", "\"27614\"", "\"27607\"", "\"27591\"", "\"27586\"", "\"27581\""]}, "hits": {"type": "string"}}, "required": ["status", "tp", "msg", "result", "hits"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "array", "items": {"type": "object", "properties": {"comment": {"type": "string"}, "definition": {"type": "string"}, "orthologs": {"type": "object", "properties": {"K00846": {"type": "string"}}, "required": ["K00846"]}, "name": {"type": "string"}, "product_stoichiometries": {"type": "array", "items": {"type": "string"}}, "enzymes": {"type": "array", "items": {"type": "string"}}, "equation": {"type": "string"}, "glycans": {"type": "boolean"}, "substrate_stoichiometries": {"type": "array", "items": {"type": "string"}}, "rpairs": {"type": "object", "properties": {}, "required": []}, "entry_id": {"type": "string"}, "pathways": {"type": "object", "properties": {}, "required": []}, "products": {"type": "array", "items": {"type": "string"}}, "substrates": {"type": "array", "items": {"type": "string"}}}, "required": ["comment", "definition", "orthologs", "name", "product_stoichiometries", "enzymes", "equation", "glycans", "substrate_stoichiometries", "rpairs", "entry_id", "pathways", "products", "substrates"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"comment" : "", "definition" : "ATP + Sedoheptulose <=> ADP + Sedoheptulose 1-phosphate", "orthologs" : {"K00846" : "ketohexokinase [EC:2.7.1.3]"}, "name" : "ATP:sedoheptulose 1-phosphotransferase", "product_stoichiometries" : ["1", "1"], "enzymes" : ["2.7.1.3"], "equation" : "C00002 + C02076 <=> C00008 + C06222", "glycans" : false, "substrate_stoichiometries" : ["1", "1"], "rpairs" : {}, "entry_id" : "R03819", "pathways" : {}, "products" : ["C00008", "C06222"], "substrates" : ["C00002", "C02076"]}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"comment": {"type": "string"}, "definition": {"type": "string"}, "orthologs": {"type": "object", "properties": {"K00846": {"type": "string"}}, "required": ["K00846"]}, "name": {"type": "string"}, "product_stoichiometries": {"type": "array", "items": {"type": "string"}}, "enzymes": {"type": "array", "items": {"type": "string"}}, "equation": {"type": "string"}, "glycans": {"type": "boolean"}, "substrate_stoichiometries": {"type": "array", "items": {"type": "string"}}, "rpairs": {"type": "object", "properties": {}, "required": []}, "entry_id": {"type": "string"}, "pathways": {"type": "object", "properties": {}, "required": []}, "products": {"type": "array", "items": {"type": "string"}}, "substrates": {"type": "array", "items": {"type": "string"}}}, "required": ["comment", "definition", "orthologs", "name", "product_stoichiometries", "enzymes", "equation", "glycans", "substrate_stoichiometries", "rpairs", "entry_id", "pathways", "products", "substrates"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"web": {"type": "array", "items": {"type": "object", "properties": {"value": {"type": "array", "items": {"type": "string"}}, "key": {"type": "string"}}, "required": ["value", "key"]}}, "query": {"type": "string"}, "translation": {"type": "array", "items": {"type": "string"}}, "errorCode": {"type": "string"}, "dict": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "webdict": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "basic": {"type": "object", "properties": {"us-phonetic": {"type": "string"}, "phonetic": {"type": "string"}, "uk-phonetic": {"type": "string"}, "explains": {"type": "array", "items": {"type": "string"}}}, "required": ["us-phonetic", "phonetic", "uk-phonetic", "explains"]}, "l": {"type": "string"}}, "required": ["web", "query", "translation", "errorCode", "dict", "webdict", "basic", "l"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"web" : [{"value" : ["\u5730\u9707", "\u5730\u9707", "\u5730\u9707 (\u6469\u767b\u5bb6\u5ead)"], "key" : "Earthquake"}, {"value" : ["\u5730\u9707\u5de5\u7a0b", "\u5730\u9707\u5de5\u7a0b", "\u5730\u9707\u5de5\u7a0b\u5b66"], "key" : "Earthquake engineering"}, {"value" : ["\u7fa4\u9707", "\u7fa4\u9707", "\u5730\u9707\u7fa4"], "key" : "Earthquake swarm"}], "query" : "earthquake", "translation" : ["\u5730\u9707"], "errorCode" : "0", "dict" : {"url" : "yddict://m.youdao.com/dict?le=eng&q=earthquake"}, "webdict" : {"url" : "http://m.youdao.com/dict?le=eng&q=earthquake"}, "basic" : {"us-phonetic" : "'\u025d\u03b8'kwek", "phonetic" : "'\u025c\u02d0\u03b8kwe\u026ak", "uk-phonetic" : "'\u025c\u02d0\u03b8kwe\u026ak", "explains" : ["n. \u5730\u9707\uff1b\u5927\u52a8\u8361"]}, "l" : "EN2zh-CHS"} | json_instruct | {"type": "object", "properties": {"web": {"type": "array", "items": {"type": "object", "properties": {"value": {"type": "array", "items": {"type": "string"}}, "key": {"type": "string"}}, "required": ["value", "key"]}}, "query": {"type": "string"}, "translation": {"type": "array", "items": {"type": "string"}}, "errorCode": {"type": "string"}, "dict": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "webdict": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "basic": {"type": "object", "properties": {"us-phonetic": {"type": "string"}, "phonetic": {"type": "string"}, "uk-phonetic": {"type": "string"}, "explains": {"type": "array", "items": {"type": "string"}}}, "required": ["us-phonetic", "phonetic", "uk-phonetic", "explains"]}, "l": {"type": "string"}}, "required": ["web", "query", "translation", "errorCode", "dict", "webdict", "basic", "l"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "object", "properties": {"en": {"type": "string"}}, "required": ["en"]}, "country": {"type": "string"}, "region": {"type": "string"}, "identifiers": {"type": "object", "properties": {"wmo": {"type": "string"}, "icao": {"type": "string"}, "iata": {"type": "string"}, "ghcn": {"type": "string"}, "usaf": {"type": "string"}, "mosmix": {"type": "string"}}, "required": ["wmo", "icao", "iata", "ghcn", "usaf", "mosmix"]}, "location": {"type": "object", "properties": {"latitude": {"type": "number"}, "longitude": {"type": "number"}, "elevation": {"type": "integer"}}, "required": ["latitude", "longitude", "elevation"]}, "timezone": {"type": "string"}}, "required": ["id", "name", "country", "region", "identifiers", "location", "timezone"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "62053", "name" : {"en" : "Benina"}, "country" : "LY", "region" : "BA", "identifiers" : {"wmo" : "62053", "icao" : "HLLB", "iata" : "BEN", "ghcn" : "LYE00147747", "usaf" : "620530", "mosmix" : "62053"}, "location" : {"latitude" : 32.1, "longitude" : 20.2667, "elevation" : 131}, "timezone" : "Africa/Tripoli"} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "object", "properties": {"en": {"type": "string"}}, "required": ["en"]}, "country": {"type": "string"}, "region": {"type": "string"}, "identifiers": {"type": "object", "properties": {"wmo": {"type": "string"}, "icao": {"type": "string"}, "iata": {"type": "string"}, "ghcn": {"type": "string"}, "usaf": {"type": "string"}, "mosmix": {"type": "string"}}, "required": ["wmo", "icao", "iata", "ghcn", "usaf", "mosmix"]}, "location": {"type": "object", "properties": {"latitude": {"type": "number"}, "longitude": {"type": "number"}, "elevation": {"type": "integer"}}, "required": ["latitude", "longitude", "elevation"]}, "timezone": {"type": "string"}}, "required": ["id", "name", "country", "region", "identifiers", "location", "timezone"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"code": {"type": "string"}, "name": {"type": "string"}, "name_kana": {"type": "string"}}, "required": ["code", "name", "name_kana"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"code" : "7025", "name" : "\u5317\u5927\u962a\u8fb2\u5354", "name_kana" : "\uff77\uff80\uff75\uff75\uff7b\uff76\uff89\uff73\uff77\uff96\uff73"} | json_instruct | {"type": "object", "properties": {"code": {"type": "string"}, "name": {"type": "string"}, "name_kana": {"type": "string"}}, "required": ["code", "name", "name_kana"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"id": {"type": "integer"}, "info": {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "additionalInfo": {"type": "string"}, "format": {"type": "string"}, "category": {"type": "string"}, "createdAt": {"type": "string"}, "updatedAt": {"type": "string"}, "license": {"type": "string"}, "author": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}}, "required": ["id", "name"]}}, "required": ["name", "description", "additionalInfo", "format", "category", "createdAt", "updatedAt", "license", "author"]}, "stats": {"type": "object", "properties": {"installs": {"type": "object", "properties": {"total": {"type": "integer"}, "weekly": {"type": "integer"}}, "required": ["total", "weekly"]}}, "required": ["installs"]}, "screenshots": {"type": "object", "properties": {"main": {"type": "object", "properties": {"name": {"type": "string"}, "archived": {"type": "boolean"}}, "required": ["name", "archived"]}}, "required": ["main"]}, "discussions": {"type": "object", "properties": {"stats": {"type": "object", "properties": {"discussionsCount": {"type": "integer"}, "commentsCount": {"type": "integer"}}, "required": ["discussionsCount", "commentsCount"]}, "data": {"type": "array", "items": {}}}, "required": ["stats", "data"]}, "style": {"type": "object", "properties": {"css": {"type": "string"}}, "required": ["css"]}}, "required": ["id", "info", "stats", "screenshots", "discussions", "style"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : 168880, "info" : {"name" : "Multi-Column Mastodon Streams", "description" : "Browse Mastodon faster with Multi-column streams! The 2nd and 4th columns are expanded very wide, so the page ends up about twice as wide as the browser.\r\n\r\nYou \"flip\" between the left and right halves of the page to browse your Home stream or a selected Stream/user/search", "additionalInfo" : "You'll have to replace \"mastodon.social\" with whatever pod you're using.\r\n\r\nAlso, the px numbers in the CSS code are fiddly. You may have to adjust to your tastes and window sizes.\r\n\r\n2019-02-14: fixed gifv-thumbnail vertical position problems\r\n\r\n2020-04-19: added columns so now it's 4 column for wide screens and 3 column for narrower screens", "format" : "uso", "category" : "mastodon", "createdAt" : "2019-02-12T11:26:14.000Z", "updatedAt" : "2020-04-19T20:27:54.000Z", "license" : "CC0-1.0", "author" : {"id" : 773238, "name" : "Isaac Ji Kuo"}}, "stats" : {"installs" : {"total" : 54, "weekly" : 0}}, "screenshots" : {"main" : {"name" : "168880_after.jpeg", "archived" : true}}, "discussions" : {"stats" : {"discussionsCount" : 0, "commentsCount" : 0}, "data" : []}, "style" : {"css" : "@-moz-document domain(\"mastodon.social\") {\r\n@media only screen and (min-width: 1800px) { .column { width: 1850px; }}\r\n@media only screen and (max-width: 1799px) { .column { width: 1400px; }}\r\n\r\n.column[aria-label=\"Notifications\"] {\r\n width: 450px;\r\n}\r\narticle {\r\n width: 450px;\r\n display: inline-block;\r\n vertical-align: top;\r\n}\r\n\r\n.media-gallery {\r\n height: auto!important;\r\n max-height: 1000px;\r\n}\r\n.media-gallery__item-thumbnail img {\r\n max-height: 1000px;\r\n width: auto;\r\n height: auto;\r\n}\r\n.media-gallery__item-gifv-thumbnail {\r\n transform: none;\r\n}\r\n\r\n}"}} | json_instruct | {"type": "object", "properties": {"id": {"type": "integer"}, "info": {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "additionalInfo": {"type": "string"}, "format": {"type": "string"}, "category": {"type": "string"}, "createdAt": {"type": "string"}, "updatedAt": {"type": "string"}, "license": {"type": "string"}, "author": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}}, "required": ["id", "name"]}}, "required": ["name", "description", "additionalInfo", "format", "category", "createdAt", "updatedAt", "license", "author"]}, "stats": {"type": "object", "properties": {"installs": {"type": "object", "properties": {"total": {"type": "integer"}, "weekly": {"type": "integer"}}, "required": ["total", "weekly"]}}, "required": ["installs"]}, "screenshots": {"type": "object", "properties": {"main": {"type": "object", "properties": {"name": {"type": "string"}, "archived": {"type": "boolean"}}, "required": ["name", "archived"]}}, "required": ["main"]}, "discussions": {"type": "object", "properties": {"stats": {"type": "object", "properties": {"discussionsCount": {"type": "integer"}, "commentsCount": {"type": "integer"}}, "required": ["discussionsCount", "commentsCount"]}, "data": {"type": "array", "items": {}}}, "required": ["stats", "data"]}, "style": {"type": "object", "properties": {"css": {"type": "string"}}, "required": ["css"]}}, "required": ["id", "info", "stats", "screenshots", "discussions", "style"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"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": "number"}, "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_dhslspn", "name" : "TribalwishHobbies"}, "date" : {"day" : 1557446400, "full" : 1557495195, "month" : 1556668800, "week" : 1557014400}, "id" : "t3_bmycn1", "picture" : {"filesize" : 48110, "fullUrl" : "https://external-preview.redd.it/GGx31Wxm8FlJuFSKBpXQzQx1esyLaSI43ub8x08Sfzg.jpg?auto=webp&s=264ed6e6d8b2bd4717084f048de8a861394ca903", "hash" : "e6c384887d", "height" : 542, "lqip" : "data:image/jpg;base64,/9j/2wBDAAYEBQYFBAYGBQYHBwYIChAKCgkJChQODwwQFxQYGBcUFhYaHSUfGhsjHBYWICwgIyYnKSopGR8tMC0oMCUoKSj/2wBDAQcHBwoIChMKChMoGhYaKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCj/wAARCAAOABADASIAAhEBAxEB/8QAFwAAAwEAAAAAAAAAAAAAAAAAAwQFB//EACMQAAEDBAEFAQEAAAAAAAAAAAECAxEEBQYSABMhMUFRFGH/xAAUAQEAAAAAAAAAAAAAAAAAAAAC/8QAGxEAAgIDAQAAAAAAAAAAAAAAAQIAEgMhURP/2gAMAwEAAhEDEQA/ANUzXPTZslbstK2euGBUOKVpBBnUDZQ+Ge3zj2EZSu+1dZTE9QU8pKtNYIj37Hfz/Dyxd8Po7jcP3OpbNQWwhSiIMDwJ+d+HtGM01E+X2wA5rCTJMDgON/S4bXIg6UqV32f/2Q==", "url" : "https://external-preview.redd.it/GGx31Wxm8FlJuFSKBpXQzQx1esyLaSI43ub8x08Sfzg.jpg?width=640&crop=smart&auto=webp&s=c6c3ff00448f1545052bf8d406497bf519d8116f", "width" : 640}, "score" : {"comments" : 2, "downs" : 0, "ratio" : 0.74, "ups" : 9, "value" : 9}, "subreddit" : {"id" : "t5_2xy5e", "name" : "TerrainBuilding"}, "tags" : [], "title" : "Star Wars Legions Building 2. That has now been added to my Etsy Shop.", "url" : "https://www.reddit.com/r/TerrainBuilding/comments/bmycn1/star_wars_legions_building_2_that_has_now_been/"} | 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": "number"}, "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#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"ParanormalRomance": {"type": "array", "items": {"type": "string"}}}, "required": ["ParanormalRomance"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"ParanormalRomance" : ["Fantasy", "ScienceFiction", "EvilOverlord", "HighClassGlass", "StandardFantasySetting", "TheVerse", "HauntedHouse", "BoyMeetsGhoul", "Telepathy", "YouSexyBeast", "DidYouJustRomanceCthulhu", "BoldlyComing", "MarsNeedsWomen", "FantasticRomance", "ReincarnationRomance", "LesbianVampire", "Comedy", "BlackComedy", "VillainousCrush", "TropeCodifier", "MuggleAndMagicalLoveTriangle", "Cyborg", "MadScientist", "TheHost", "TwoPersonLoveTriangle", "PuppeteerParasite", "RomanticPlotTumor", "LoveTriangle", "FollowTheLeader", "TropeCodifier", "DidYouJustRomanceCthulhu", "ThePowerOfLove", "LoveTriangle", "MuggleBestFriend", "StealthParody", "ZombieApocalypse", "BrainFood", "ReincarnationRomance"]} | json_instruct | {"type": "object", "properties": {"ParanormalRomance": {"type": "array", "items": {"type": "string"}}}, "required": ["ParanormalRomance"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"cSpell.ignoreWords": {"type": "array", "items": {"type": "string"}}}, "required": ["cSpell.ignoreWords"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"cSpell.ignoreWords" : ["app", "deps", "dpkg", "emint", "emintcli", "emintd", "gcloud", "gentx", "gentxs", "hostkey", "iproute", "kubectl", "laddr", "noninteractive", "openshift", "openssl", "preemptible", "proto", "rebar", "serviceaccount", "tzdata"]} | json_instruct | {"type": "object", "properties": {"cSpell.ignoreWords": {"type": "array", "items": {"type": "string"}}}, "required": ["cSpell.ignoreWords"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"id": {"type": "string"}, "model": {"type": "string"}, "physics": {"type": "string"}, "physics-offset": {"type": "array", "items": {"type": "integer"}}}, "required": ["id", "model", "physics", "physics-offset"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "cylinder", "model" : "model.dae", "physics" : "physics.json", "physics-offset" : [0, 1, 0]} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "model": {"type": "string"}, "physics": {"type": "string"}, "physics-offset": {"type": "array", "items": {"type": "integer"}}}, "required": ["id", "model", "physics", "physics-offset"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"category": {"type": "string"}, "region": {"type": "string"}, "monthlySales": {"type": "array", "items": {"type": "object", "properties": {"month": {"type": "integer"}, "sales": {"type": "integer"}}, "required": ["month", "sales"]}}}, "required": ["category", "region", "monthlySales"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"category" : "Furniture", "region" : "West", "monthlySales" : [{"month" : 20130101, "sales" : 38}, {"month" : 20130201, "sales" : 35}, {"month" : 20130301, "sales" : 41}, {"month" : 20130401, "sales" : 55}, {"month" : 20130501, "sales" : 58}, {"month" : 20130601, "sales" : 66}, {"month" : 20130701, "sales" : 74}, {"month" : 20130801, "sales" : 78}, {"month" : 20130901, "sales" : 38}, {"month" : 20131001, "sales" : 30}, {"month" : 20131101, "sales" : 26}, {"month" : 20131201, "sales" : 29}]} | json_instruct | {"type": "object", "properties": {"category": {"type": "string"}, "region": {"type": "string"}, "monthlySales": {"type": "array", "items": {"type": "object", "properties": {"month": {"type": "integer"}, "sales": {"type": "integer"}}, "required": ["month", "sales"]}}}, "required": ["category", "region", "monthlySales"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"id": {"type": "string"}, "district_id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "district_id", "name"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "9411040010", "district_id" : "9411040", "name" : "KAHO"} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "district_id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "district_id", "name"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "null"}}, "required": ["contract", "tool", "start", "end", "duration", "analysis"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"contract" : "0x38de0a4aeb83b84240d709e48d0cacf0e64ca1a2", "tool" : "securify", "start" : 1563549692.3745875, "end" : 1563549695.3699038, "duration" : 2.99531626701355, "analysis" : null} | json_instruct | {"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "null"}}, "required": ["contract", "tool", "start", "end", "duration", "analysis"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"country": {"type": "string"}, "home": {"type": "string"}, "name": {"type": "string"}, "twitter": {"type": "string"}}, "required": ["country", "home", "name", "twitter"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"country" : "Darmstadt, Germany", "home" : "https://andreakrajewski.com/", "name" : "Andrea Krajewski", "twitter" : "krajewski"} | json_instruct | {"type": "object", "properties": {"country": {"type": "string"}, "home": {"type": "string"}, "name": {"type": "string"}, "twitter": {"type": "string"}}, "required": ["country", "home", "name", "twitter"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"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": "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" : "CatPot 2015-2016", "url" : "https://os.mbed.com/teams/2014/"}, "description" : "DigitalIn\uff0cTimer \u3092\u4f7f\u7528\u3057\u305f \u30dc\u30fc\u30eb\u691c\u77e5\u7528\u30e9\u30a4\u30d6\u30e9\u30ea", "examples" : ["https://os.mbed.com/teams/2014/code/CatPot_SensorRight_F/", "https://os.mbed.com/teams/2014/code/CatPot_SensorRight_T/"], "frameworks" : "mbed", "keywords" : "IRM2121_2", "name" : "IRM2121_2", "platforms" : "*", "repository" : {"type" : "hg", "url" : "https://os.mbed.com/teams/2014/code/IRM2121_2/"}} | 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": "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#"} |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.