input
stringlengths 159
2.05k
| output
stringlengths 5
10.3k
| task
stringclasses 1
value | schema
stringlengths 100
1.99k
|
---|---|---|---|
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "array", "items": {}}}, "required": ["contract", "tool", "start", "end", "duration", "analysis"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"contract" : "0x47eb39c6d48bca0883b89e2c089e0718a6fdb555", "tool" : "osiris", "start" : 1564617413.0776126, "end" : 1564617415.8116837, "duration" : 2.7340710163116455, "analysis" : []} | json_instruct | {"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "array", "items": {}}}, "required": ["contract", "tool", "start", "end", "duration", "analysis"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"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": {"type": "string"}}, "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-9w47-mpg6-v2mg", "modified" : "2022-05-01T23:47:47Z", "published" : "2022-05-01T23:47:47Z", "aliases" : ["CVE-2008-2210"], "details" : "Multiple cross-site scripting (XSS) vulnerabilities in Maian Support 1.3 allow remote attackers to inject arbitrary web script or HTML via the (1) msg_script, (2) msg_script2, and (3) msg_script3 parameters to admin/inc/footer.php; and the (4) msg_script2 parameter to admin/inc/header.php.", "severity" : [], "affected" : [], "references" : [{"type" : "ADVISORY", "url" : "https://nvd.nist.gov/vuln/detail/CVE-2008-2210"}, {"type" : "WEB", "url" : "https://exchange.xforce.ibmcloud.com/vulnerabilities/42205"}, {"type" : "WEB", "url" : "http://secunia.com/advisories/30068"}, {"type" : "WEB", "url" : "http://securityreason.com/securityalert/3888"}, {"type" : "WEB", "url" : "http://www.securityfocus.com/archive/1/491587/100/0/threaded"}, {"type" : "WEB", "url" : "http://www.securityfocus.com/bid/29032"}], "database_specific" : {"cwe_ids" : ["CWE-79"], "severity" : "MODERATE", "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": {"type": "string"}}, "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#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"AB": {"type": "array", "items": {"type": "string"}}, "AW": {"type": "array", "items": {"type": "string"}}, "SZ": {"type": "string"}, "C": {"type": "string"}, "SOL": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}}, "required": ["AB", "AW", "SZ", "C", "SOL"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"AB" : ["ec", "ed", "gb", "ce", "de", "df", "dg", "cg", "bg", "ah", "bi", "cc", "eb"], "AW" : ["ag", "af", "bf", "cf", "be", "bd", "cd", "dc", "db"], "SZ" : "19", "C" : "Black to play", "SOL" : [["B", "cb", "", ""]]} | json_instruct | {"type": "object", "properties": {"AB": {"type": "array", "items": {"type": "string"}}, "AW": {"type": "array", "items": {"type": "string"}}, "SZ": {"type": "string"}, "C": {"type": "string"}, "SOL": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}}, "required": ["AB", "AW", "SZ", "C", "SOL"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"title": {"type": "string"}, "fields": {"type": "array", "items": {"type": "string"}}, "abstract": {"type": "string"}, "citation": {"type": "string"}, "departments": {"type": "array", "items": {"type": "string"}}, "authors": {"type": "array", "items": {"type": "string"}}, "conf": {"type": "string"}, "year": {"type": "string"}, "pages": {"type": "integer"}}, "required": ["title", "fields", "abstract", "citation", "departments", "authors", "conf", "year", "pages"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"title" : "Event Digest: A Holistic View on Past Events.", "fields" : ["diversification", "redundancy", "inference", "linear programming", "rouge"], "abstract" : "For a general user, easy access to vast amounts of online information available on past events has made retrospection much harder. We propose a problem of automatic event digest generation to aid effective and efficient retrospection. For this, in addition to text, a digest should maximize the reportage of time, geolocations, and entities to present a holistic view on the past event of interest. We propose a novel divergence-based framework that selects excerpts from an initial set of pseudo-relevant documents, such that the overall relevance is maximized, while avoiding redundancy in text, time, geolocations, and named entities, by treating them as independent dimensions of an event. Our method formulates the problem as an Integer Linear Program (ILP) for global inference to diversify across the event dimensions. Relevance and redundancy measures are defined based on JS-divergence between independent query and excerpt models estimated for each event dimension. Elaborate experiments on three real-world datasets are conducted to compare our methods against the state-of-the-art from the literature. Using Wikipedia articles as gold standard summaries in our evaluation, we find that the most holistic digest of an event is generated with our method that integrates all event dimensions. We compare all methods using standard Rouge-1, -2, and -SU4 along with Rouge-NP, and a novel weighted variant of Rouge.", "citation" : "Citations (8)", "departments" : ["Max Planck Society", "Max Planck Society"], "authors" : ["Arunav Mishra.....http://dblp.org/pers/hd/m/Mishra:Arunav", "Klaus Berberich.....http://dblp.org/pers/hd/b/Berberich:Klaus"], "conf" : "sigir", "year" : "2016", "pages" : 10} | json_instruct | {"type": "object", "properties": {"title": {"type": "string"}, "fields": {"type": "array", "items": {"type": "string"}}, "abstract": {"type": "string"}, "citation": {"type": "string"}, "departments": {"type": "array", "items": {"type": "string"}}, "authors": {"type": "array", "items": {"type": "string"}}, "conf": {"type": "string"}, "year": {"type": "string"}, "pages": {"type": "integer"}}, "required": ["title", "fields", "abstract", "citation", "departments", "authors", "conf", "year", "pages"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"title": {"type": "string"}, "subtitle": {"type": "string"}}, "required": ["title", "subtitle"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"title" : "Basics", "subtitle" : "Basic Concepts for using Chef"} | json_instruct | {"type": "object", "properties": {"title": {"type": "string"}, "subtitle": {"type": "string"}}, "required": ["title", "subtitle"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "array", "items": {"type": "object", "properties": {"Similarity": {"type": "string"}, "Title": {"type": "string"}, "Year": {"type": "integer"}}, "required": ["Similarity", "Title", "Year"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"Similarity" : "0.972", "Title" : "Evaluating contingencies by a dual system of learning the structure and the parameters of the environment", "Year" : 2015}, {"Similarity" : "0.944", "Title" : "Causal Learning from Biased Sequences", "Year" : 2005}, {"Similarity" : "0.923", "Title" : "Upsetting the contingency table Causal induction over sequences of point events", "Year" : 2015}, {"Similarity" : "0.918", "Title" : "Learning Causal Laws", "Year" : 2003}, {"Similarity" : "0.916", "Title" : "Sequential Causal Learning in Humans and Rats", "Year" : 2008}, {"Similarity" : "0.911", "Title" : "Learning Deterministic Causal Networks from Observational Data", "Year" : 2012}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"Similarity": {"type": "string"}, "Title": {"type": "string"}, "Year": {"type": "integer"}}, "required": ["Similarity", "Title", "Year"]}, "$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"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "author": {"type": "string"}, "license": {"type": "string"}, "homepage": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"gulp": {"type": "string"}, "gulp-autoprefixer": {"type": "string"}, "gulp-copy": {"type": "string"}, "gulp-cssnano": {"type": "string"}, "gulp-filter": {"type": "string"}, "gulp-load-plugins": {"type": "string"}, "gulp-newer": {"type": "string"}, "gulp-plumber": {"type": "string"}, "gulp-prompt": {"type": "string"}, "gulp-sass": {"type": "string"}, "gulp-sourcemaps": {"type": "string"}, "gulp-util": {"type": "string"}, "minimist": {"type": "string"}}, "required": ["gulp", "gulp-autoprefixer", "gulp-copy", "gulp-cssnano", "gulp-filter", "gulp-load-plugins", "gulp-newer", "gulp-plumber", "gulp-prompt", "gulp-sass", "gulp-sourcemaps", "gulp-util", "minimist"]}, "scripts": {"type": "object", "properties": {"postinstall": {"type": "string"}, "build": {"type": "string"}, "styles": {"type": "string"}, "watch": {"type": "string"}}, "required": ["postinstall", "build", "styles", "watch"]}}, "required": ["name", "version", "description", "repository", "author", "license", "homepage", "devDependencies", "scripts"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "gameboy-customizer", "version" : "0.1.0", "description" : "Visual customizer for a Gameboy DMG.", "repository" : {"type" : "git", "url" : "[email protected]:sixteenbit/gameboy-customizer.git"}, "author" : "Sixteenbit", "license" : "GPL-2.0 AND MIT", "homepage" : "https://shop.sixteenbit.com", "devDependencies" : {"gulp" : "^4.0.0", "gulp-autoprefixer" : "^2.3.1", "gulp-copy" : "^1.1.0", "gulp-cssnano" : "^2.1.2", "gulp-filter" : "^5.1.0", "gulp-load-plugins" : "^1.5.0", "gulp-newer" : "^1.4.0", "gulp-plumber" : "^1.2.0", "gulp-prompt" : "^1.0.1", "gulp-sass" : "^2.3.2", "gulp-sourcemaps" : "^1.12.0", "gulp-util" : "^3.0.8", "minimist" : "^1.2.0"}, "scripts" : {"postinstall" : "npm run build", "build" : "gulp", "styles" : "gulp styles", "watch" : "gulp watch"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "author": {"type": "string"}, "license": {"type": "string"}, "homepage": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"gulp": {"type": "string"}, "gulp-autoprefixer": {"type": "string"}, "gulp-copy": {"type": "string"}, "gulp-cssnano": {"type": "string"}, "gulp-filter": {"type": "string"}, "gulp-load-plugins": {"type": "string"}, "gulp-newer": {"type": "string"}, "gulp-plumber": {"type": "string"}, "gulp-prompt": {"type": "string"}, "gulp-sass": {"type": "string"}, "gulp-sourcemaps": {"type": "string"}, "gulp-util": {"type": "string"}, "minimist": {"type": "string"}}, "required": ["gulp", "gulp-autoprefixer", "gulp-copy", "gulp-cssnano", "gulp-filter", "gulp-load-plugins", "gulp-newer", "gulp-plumber", "gulp-prompt", "gulp-sass", "gulp-sourcemaps", "gulp-util", "minimist"]}, "scripts": {"type": "object", "properties": {"postinstall": {"type": "string"}, "build": {"type": "string"}, "styles": {"type": "string"}, "watch": {"type": "string"}}, "required": ["postinstall", "build", "styles", "watch"]}}, "required": ["name", "version", "description", "repository", "author", "license", "homepage", "devDependencies", "scripts"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"ambientDependencies": {"type": "object", "properties": {"es6-promise": {"type": "string"}, "es6-shim": {"type": "string"}}, "required": ["es6-promise", "es6-shim"]}}, "required": ["ambientDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"ambientDependencies" : {"es6-promise" : "github:DefinitelyTyped/DefinitelyTyped/es6-promise/es6-promise.d.ts#830e8ebd9ef137d039d5c7ede24a421f08595f83", "es6-shim" : "github:DefinitelyTyped/DefinitelyTyped/es6-shim/es6-shim.d.ts#4de74cb527395c13ba20b438c3a7a419ad931f1c"}} | json_instruct | {"type": "object", "properties": {"ambientDependencies": {"type": "object", "properties": {"es6-promise": {"type": "string"}, "es6-shim": {"type": "string"}}, "required": ["es6-promise", "es6-shim"]}}, "required": ["ambientDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"profile": {"type": "string"}, "topMatchingProfiles": {"type": "object", "properties": {"0.84": {"type": "array", "items": {"type": "integer"}}, "0.72": {"type": "array", "items": {"type": "integer"}}, "0.67": {"type": "array", "items": {"type": "integer"}}, "0.65": {"type": "array", "items": {"type": "integer"}}, "0.62": {"type": "array", "items": {"type": "integer"}}, "0.60": {"type": "array", "items": {"type": "integer"}}, "0.59": {"type": "array", "items": {"type": "integer"}}, "0.57": {"type": "array", "items": {"type": "integer"}}, "0.56": {"type": "array", "items": {"type": "integer"}}, "0.53": {"type": "array", "items": {"type": "integer"}}}, "required": ["0.84", "0.72", "0.67", "0.65", "0.62", "0.60", "0.59", "0.57", "0.56", "0.53"]}}, "required": ["profile", "topMatchingProfiles"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"profile" : "27", "topMatchingProfiles" : {"0.84" : [54], "0.72" : [74], "0.67" : [59, 84], "0.65" : [90], "0.62" : [55, 88], "0.60" : [76, 72, 92], "0.59" : [71], "0.57" : [65], "0.56" : [69], "0.53" : [85]}} | json_instruct | {"type": "object", "properties": {"profile": {"type": "string"}, "topMatchingProfiles": {"type": "object", "properties": {"0.84": {"type": "array", "items": {"type": "integer"}}, "0.72": {"type": "array", "items": {"type": "integer"}}, "0.67": {"type": "array", "items": {"type": "integer"}}, "0.65": {"type": "array", "items": {"type": "integer"}}, "0.62": {"type": "array", "items": {"type": "integer"}}, "0.60": {"type": "array", "items": {"type": "integer"}}, "0.59": {"type": "array", "items": {"type": "integer"}}, "0.57": {"type": "array", "items": {"type": "integer"}}, "0.56": {"type": "array", "items": {"type": "integer"}}, "0.53": {"type": "array", "items": {"type": "integer"}}}, "required": ["0.84", "0.72", "0.67", "0.65", "0.62", "0.60", "0.59", "0.57", "0.56", "0.53"]}}, "required": ["profile", "topMatchingProfiles"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "directories": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "bin": {"type": "object", "properties": {"colors": {"type": "string"}}, "required": ["colors"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}}, "required": ["name", "version", "description", "main", "directories", "bin", "repository", "scripts", "keywords", "author", "license"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "colors-cli", "version" : "1.0.27", "description" : "Terminal string styling done right", "main" : "lib/index.js", "directories" : {"test" : "test"}, "bin" : {"colors" : "./bin/colors"}, "repository" : {"type" : "git", "url" : "https://github.com/jaywcjlove/colors-cli.git"}, "scripts" : {"test" : "node ./test/safe.test.js & node ./test/group.test.js && node ./test/toxic.test.js && node ./test/256.test.js"}, "keywords" : ["256color", "color", "colors", "colors-cli", "terminal", "ansi", "console", "colour", "cli", "string", "str", "style", "styles", "tty", "formatting", "rgb", "256", "shell", "xterm", "log", "logging", "command-line", "text"], "author" : "kenny wang <[email protected]>", "license" : "MIT"} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "directories": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "bin": {"type": "object", "properties": {"colors": {"type": "string"}}, "required": ["colors"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}}, "required": ["name", "version", "description", "main", "directories", "bin", "repository", "scripts", "keywords", "author", "license"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"userId": {"type": "string"}}, "required": ["userId"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"userId" : "563"} | json_instruct | {"type": "object", "properties": {"userId": {"type": "string"}}, "required": ["userId"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"more": {"type": "object", "properties": {"title": {"type": "string"}, "company": {"type": "string"}, "settings": {"type": "string"}, "blockedusers": {"type": "object", "properties": {"manage": {"type": "string"}, "no": {"type": "string"}}, "required": ["manage", "no"]}, "logout": {"type": "string"}, "language": {"type": "object", "properties": {"change": {"type": "string"}, "english": {"type": "string"}, "french": {"type": "string"}}, "required": ["change", "english", "french"]}}, "required": ["title", "company", "settings", "blockedusers", "logout", "language"]}}, "required": ["more"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"more" : {"title" : "More Options", "company" : "Company Timeline", "settings" : "Settings", "blockedusers" : {"manage" : "Manage your blocked users", "no" : "You don't have any blocked user"}, "logout" : "Logout", "language" : {"change" : "Language", "english" : "English", "french" : "French"}}} | json_instruct | {"type": "object", "properties": {"more": {"type": "object", "properties": {"title": {"type": "string"}, "company": {"type": "string"}, "settings": {"type": "string"}, "blockedusers": {"type": "object", "properties": {"manage": {"type": "string"}, "no": {"type": "string"}}, "required": ["manage", "no"]}, "logout": {"type": "string"}, "language": {"type": "object", "properties": {"change": {"type": "string"}, "english": {"type": "string"}, "french": {"type": "string"}}, "required": ["change", "english", "french"]}}, "required": ["title", "company", "settings", "blockedusers", "logout", "language"]}}, "required": ["more"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"noparticipants": {"type": "string"}, "participants": {"type": "string"}}, "required": ["noparticipants", "participants"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"noparticipants" : "T\u00e4lle kurssille ei l\u00f6ytynyt osallistujia", "participants" : "Osallistujat"} | json_instruct | {"type": "object", "properties": {"noparticipants": {"type": "string"}, "participants": {"type": "string"}}, "required": ["noparticipants", "participants"], "$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"}, "input": {"type": "object", "properties": {"item": {"type": "string"}}, "required": ["item"]}, "result": {"type": "object", "properties": {"item": {"type": "string"}, "count": {"type": "integer"}}, "required": ["item", "count"]}}, "required": ["type", "input", "result"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"type" : "victual:cutting_board_recipe", "input" : {"item" : "minecraft:porkchop"}, "result" : {"item" : "victual:ham_slice", "count" : 4}} | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "input": {"type": "object", "properties": {"item": {"type": "string"}}, "required": ["item"]}, "result": {"type": "object", "properties": {"item": {"type": "string"}, "count": {"type": "integer"}}, "required": ["item", "count"]}}, "required": ["type", "input", "result"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "parent": {"type": "string"}}, "required": ["name", "parent"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"name" : "Animal", "parent" : "root"}, {"name" : "Reptile", "parent" : "Animal"}, {"name" : "Mammal", "parent" : "Animal"}, {"name" : "Lizard", "parent" : "Reptile"}, {"name" : "Snake", "parent" : "Reptile"}, {"name" : "Bird", "parent" : "Reptile"}, {"name" : "Canary", "parent" : "Bird"}, {"name" : "Equine", "parent" : "Mammal"}, {"name" : "Bovine", "parent" : "Mammal"}, {"name" : "Canine", "parent" : "Mammal"}, {"name" : "Cow", "parent" : "Bovine"}, {"name" : "Horse", "parent" : "Equine"}, {"name" : "Zebra", "parent" : "Equine"}, {"name" : "Dog", "parent" : "Canine"}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "parent": {"type": "string"}}, "required": ["name", "parent"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"word" : "umbra", "definition" : "1. (Astron.) (a) The conical shadow projected from a planet or satellite, on the side opposite to the sun, within which a spectator could see no portion of the sun's disk; -- used in contradistinction from penumbra. See Penumbra. (b) The central dark portion, or nucleus, of a sun spot. (c) The fainter part of a sun spot; -- now more commonly called penumbra. 2. (Zo\u00f6l.) Any one of several species of sci\u00e6noid food fishes of the genus Umbrina, especially the Mediterranean species (U. cirrhosa), which is highly esteemed as a market fish; -- called also ombre, and umbrine. Umbra tree (Bot.), a tree (Phytolacca diocia) of the same genus as pokeweed. It is native of South America, but is now grown in southern Europe. It has large dark leaves, and a somber aspect. The juice of its berries is used for coloring wine. J. Smith (Dict. Econ. Plants)."} | json_instruct | {"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"synaptic.js": {"type": "string"}, "synaptic.min.js": {"type": "string"}}, "required": ["synaptic.js", "synaptic.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"synaptic.js" : "sha512-3c6AyTHbub8sDjYp4tu749uJwKehJoN9bjgoqpIi2FshRgDnx+xhXeBsydPTlAOpzEQHhAgwTUQS2PBd/52vgA==", "synaptic.min.js" : "sha512-5DRcfJLCumhxXv/309x2O1Id2QitPLfYPNHP1pYKHn1ZB8IsArms4bdlcEt0apEhi6GVvTllFhKY/YYoA3vGTw=="} | json_instruct | {"type": "object", "properties": {"synaptic.js": {"type": "string"}, "synaptic.min.js": {"type": "string"}}, "required": ["synaptic.js", "synaptic.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "cordova": {"type": "object", "properties": {"id": {"type": "string"}, "platforms": {"type": "array", "items": {"type": "string"}}}, "required": ["id", "platforms"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}, "private": {"type": "boolean"}}, "required": ["name", "version", "description", "cordova", "keywords", "author", "license", "private"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "cordova-plugin-pywebui", "version" : "0.1.0", "description" : "Cordova PyWebUI Plugin", "cordova" : {"id" : "cordova-plugin-pywebui", "platforms" : ["android"]}, "keywords" : ["cordova", "python", "pywebui", "ecosystem:cordova", "cordova-android"], "author" : "Kevin Howell", "license" : "MIT", "private" : true} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "cordova": {"type": "object", "properties": {"id": {"type": "string"}, "platforms": {"type": "array", "items": {"type": "string"}}}, "required": ["id", "platforms"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}, "private": {"type": "boolean"}}, "required": ["name", "version", "description", "cordova", "keywords", "author", "license", "private"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "license": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}}, "require": {"type": "object", "properties": {"illuminate/database": {"type": "string"}}, "required": ["illuminate/database"]}, "autoload": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"Xabou\\Query\\": {"type": "string"}}, "required": ["Xabou\\Query\\"]}}, "required": ["psr-4"]}}, "required": ["name", "description", "license", "keywords", "authors", "require", "autoload"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "xabou/query", "description" : "Laravel 5 Query Object", "license" : "MIT", "keywords" : ["laravel", "query"], "authors" : [{"name" : "Harris Bouzopoulos", "email" : "[email protected]"}], "require" : {"illuminate/database" : "^5.0"}, "autoload" : {"psr-4" : {"Xabou\\Query\\" : "src/"}}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "license": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}}, "require": {"type": "object", "properties": {"illuminate/database": {"type": "string"}}, "required": ["illuminate/database"]}, "autoload": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"Xabou\\Query\\": {"type": "string"}}, "required": ["Xabou\\Query\\"]}}, "required": ["psr-4"]}}, "required": ["name", "description", "license", "keywords", "authors", "require", "autoload"], "$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"}, "type": {"type": "string"}, "start": {"type": "string"}, "end": {"type": "string"}}, "required": ["id", "type", "start", "end"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "lethal-unafulge__DROPS__steel-unafulge-cell", "type" : "DROPS", "start" : "lethal-unafulge", "end" : "steel-unafulge-cell"} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "type": {"type": "string"}, "start": {"type": "string"}, "end": {"type": "string"}}, "required": ["id", "type", "start", "end"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {"type": "integer"}}, "productReviews": {"type": "array", "items": {}}}, "required": ["userId", "cartId", "preferredProducts", "productReviews"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"userId" : 10237, "cartId" : "06fe28cf-04d2-4326-9082-190411d8dde1", "preferredProducts" : [1381, 2461, 4905, 4559, 234], "productReviews" : []} | json_instruct | {"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {"type": "integer"}}, "productReviews": {"type": "array", "items": {}}}, "required": ["userId", "cartId", "preferredProducts", "productReviews"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"elapsed": {"type": "string"}, "endpoint-url": {"type": "string"}, "entry-date": {"type": "string"}, "exception": {"type": "string"}}, "required": ["elapsed", "endpoint-url", "entry-date", "exception"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"elapsed" : "0.482", "endpoint-url" : "https://www.chelmsford.gov.uk/EasySiteWeb/GatewayLink.aspx?alId=1095043", "entry-date" : "2020-05-19T00:12:52.906345", "exception" : "SSLError"} | json_instruct | {"type": "object", "properties": {"elapsed": {"type": "string"}, "endpoint-url": {"type": "string"}, "entry-date": {"type": "string"}, "exception": {"type": "string"}}, "required": ["elapsed", "endpoint-url", "entry-date", "exception"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "nama": {"type": "string"}}, "required": ["id", "nama"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"id" : "7322010", "nama" : "SABBANG"}, {"id" : "7322020", "nama" : "BAEBUNTA"}, {"id" : "7322030", "nama" : "MALANGKE"}, {"id" : "7322031", "nama" : "MALANGKE BARAT"}, {"id" : "7322040", "nama" : "SUKAMAJU"}, {"id" : "7322050", "nama" : "BONE-BONE"}, {"id" : "7322051", "nama" : "TANA LILI"}, {"id" : "7322120", "nama" : "MASAMBA"}, {"id" : "7322121", "nama" : "MAPPEDECENG"}, {"id" : "7322122", "nama" : "RAMPI"}, {"id" : "7322130", "nama" : "LIMBONG"}, {"id" : "7322131", "nama" : "SEKO"}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "nama": {"type": "string"}}, "required": ["id", "nama"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"Routes": {"type": "array", "items": {"type": "object", "properties": {"DownstreamPathTemplate": {"type": "string"}, "DownstreamScheme": {"type": "string"}, "DownstreamHostAndPorts": {"type": "array", "items": {"type": "object", "properties": {"Host": {"type": "string"}, "Port": {"type": "integer"}}, "required": ["Host", "Port"]}}, "UpstreamPathTemplate": {"type": "string"}, "UpstreamHttpMethod": {"type": "array", "items": {"type": "string"}}}, "required": ["DownstreamPathTemplate", "DownstreamScheme", "DownstreamHostAndPorts", "UpstreamPathTemplate", "UpstreamHttpMethod"]}}, "GlobalConfiguration": {"type": "object", "properties": {}, "required": []}}, "required": ["Routes", "GlobalConfiguration"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"Routes" : [{"DownstreamPathTemplate" : "/{everything}", "DownstreamScheme" : "http", "DownstreamHostAndPorts" : [{"Host" : "servicea.openapi", "Port" : 80}], "UpstreamPathTemplate" : "/servicea/{everything}", "UpstreamHttpMethod" : ["GET", "OPTIONS"]}, {"DownstreamPathTemplate" : "/{everything}", "DownstreamScheme" : "http", "DownstreamHostAndPorts" : [{"Host" : "serviceb.openapi", "Port" : 80}], "UpstreamPathTemplate" : "/serviceb/{everything}", "UpstreamHttpMethod" : ["GET", "OPTIONS"]}, {"DownstreamPathTemplate" : "/{everything}", "DownstreamScheme" : "http", "DownstreamHostAndPorts" : [{"Host" : "servicec.openapi", "Port" : 80}], "UpstreamPathTemplate" : "/servicec/{everything}", "UpstreamHttpMethod" : ["GET", "OPTIONS"]}], "GlobalConfiguration" : {}} | json_instruct | {"type": "object", "properties": {"Routes": {"type": "array", "items": {"type": "object", "properties": {"DownstreamPathTemplate": {"type": "string"}, "DownstreamScheme": {"type": "string"}, "DownstreamHostAndPorts": {"type": "array", "items": {"type": "object", "properties": {"Host": {"type": "string"}, "Port": {"type": "integer"}}, "required": ["Host", "Port"]}}, "UpstreamPathTemplate": {"type": "string"}, "UpstreamHttpMethod": {"type": "array", "items": {"type": "string"}}}, "required": ["DownstreamPathTemplate", "DownstreamScheme", "DownstreamHostAndPorts", "UpstreamPathTemplate", "UpstreamHttpMethod"]}}, "GlobalConfiguration": {"type": "object", "properties": {}, "required": []}}, "required": ["Routes", "GlobalConfiguration"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"version": {"type": "number"}, "generator": {"type": "string"}, "osm3s": {"type": "object", "properties": {"timestamp_osm_base": {"type": "string"}, "copyright": {"type": "string"}}, "required": ["timestamp_osm_base", "copyright"]}, "elements": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "id": {"type": "integer"}, "lat": {"type": "number"}, "lon": {"type": "number"}, "tags": {"type": "object", "properties": {"amenity": {"type": "string"}, "name": {"type": "string"}, "police": {"type": "string"}}, "required": ["amenity", "name", "police"]}}, "required": ["type", "id", "lat", "lon", "tags"]}}}, "required": ["version", "generator", "osm3s", "elements"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"version" : 0.6, "generator" : "Overpass API 0.7.56.9 76e5016d", "osm3s" : {"timestamp_osm_base" : "2021-06-03T21:11:18Z", "copyright" : "The data included in this document is from www.openstreetmap.org. The data is made available under ODbL."}, "elements" : [{"type" : "node", "id" : 2329328981, "lat" : -5.8674886, "lon" : -35.3703588, "tags" : {"amenity" : "police", "name" : "Posto da PRF", "police" : "traffic_police"}}]} | json_instruct | {"type": "object", "properties": {"version": {"type": "number"}, "generator": {"type": "string"}, "osm3s": {"type": "object", "properties": {"timestamp_osm_base": {"type": "string"}, "copyright": {"type": "string"}}, "required": ["timestamp_osm_base", "copyright"]}, "elements": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "id": {"type": "integer"}, "lat": {"type": "number"}, "lon": {"type": "number"}, "tags": {"type": "object", "properties": {"amenity": {"type": "string"}, "name": {"type": "string"}, "police": {"type": "string"}}, "required": ["amenity", "name", "police"]}}, "required": ["type", "id", "lat", "lon", "tags"]}}}, "required": ["version", "generator", "osm3s", "elements"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"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" : "Wearing", "definitions" : ["Mentally or physically tiring."], "parts-of-speech" : "Adjective"} | json_instruct | {"type": "object", "properties": {"word": {"type": "string"}, "definitions": {"type": "array", "items": {"type": "string"}}, "parts-of-speech": {"type": "string"}}, "required": ["word", "definitions", "parts-of-speech"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"solution": {"type": "array", "items": {"type": "string"}}, "objective_func": {"type": "number"}, "elapsed_time": {"type": "number"}, "best_find_time": {"type": "number"}, "problem_name": {"type": "string"}}, "required": ["solution", "objective_func", "elapsed_time", "best_find_time", "problem_name"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"solution" : ["#<Structs::Item:0x153cb763>", "#<Structs::Item:0x2c3158e0>", "#<Structs::Item:0x412ebe64>", "#<Structs::Item:0x6f731759>", "#<Structs::Item:0x1f84327b>", "#<Structs::Item:0x39549f33>", "#<Structs::Item:0xdbddbe3>", "#<Structs::Item:0x7a83ccd2>", "#<Structs::Item:0x44aa2e13>", "#<Structs::Item:0x599a9cb2>", "#<Structs::Item:0x3a1b36a1>", "#<Structs::Item:0x5e1a986c>", "#<Structs::Item:0x4b55ff0a>", "#<Structs::Item:0x46a795de>", "#<Structs::Item:0x256a0d95>", "#<Structs::Item:0x2f3928ac>", "#<Structs::Item:0x4bf03fee>", "#<Structs::Item:0x31834a2b>", "#<Structs::Item:0x44f0ff2b>", "#<Structs::Item:0x22ead351>"], "objective_func" : 0.592614917156829, "elapsed_time" : 6.312, "best_find_time" : 0.109, "problem_name" : "SB_5"} | json_instruct | {"type": "object", "properties": {"solution": {"type": "array", "items": {"type": "string"}}, "objective_func": {"type": "number"}, "elapsed_time": {"type": "number"}, "best_find_time": {"type": "number"}, "problem_name": {"type": "string"}}, "required": ["solution", "objective_func", "elapsed_time", "best_find_time", "problem_name"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"image": {"type": "string"}, "name": {"type": "string"}, "description": {"type": "string"}}, "required": ["image", "name", "description"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"image" : "QIk1gGh+o3tqSdzxHY1i+Yry17qoYPaK00JquHHmYKcQm8GGZ6u/MWYhrw+Z5j/M0n0=", "name" : "Moon Dust", "description" : "This pony is Amazon Orange, with bright Blue eyes. When they are not being rented by Unicorn Rentals users, they love flying kites"} | json_instruct | {"type": "object", "properties": {"image": {"type": "string"}, "name": {"type": "string"}, "description": {"type": "string"}}, "required": ["image", "name", "description"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"choix": {"type": "array", "items": {"type": "string"}}, "qoe": {"type": "array", "items": {"type": "string"}}, "user_id": {"type": "integer"}, "ordre": {"type": "object", "properties": {"interface": {"type": "array", "items": {"type": "integer"}}, "video_IA_order": {"type": "array", "items": {"type": "string"}}, "video_IB_order": {"type": "array", "items": {"type": "string"}}}, "required": ["interface", "video_IA_order", "video_IB_order"]}, "birth": {"type": "string"}, "genre": {"type": "string"}, "connaissances_video": {"type": "string"}, "numerique_environnement": {"type": "string"}, "ins": {"type": "string"}}, "required": ["choix", "qoe", "user_id", "ordre", "birth", "genre", "connaissances_video", "numerique_environnement", "ins"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"choix" : ["1080_pur", "1080_pur", "1080_pur", "1080_pur", "720_ecolo", "720_ecolo", "720_ecolo", "1080_ecolo", "720_ecolo"], "qoe" : ["4", "4", "3", "3", "3", "3", "3", "4", "3"], "user_id" : 10, "ordre" : {"interface" : [1, 2], "video_IA_order" : ["V3Q3", "V3Q1", "V1Q1", "V1Q2"], "video_IB_order" : ["V2Q2", "V3Q2", "V2Q3", "V2Q1", "V1Q3"]}, "birth" : "2005", "genre" : "homme", "connaissances_video" : "3", "numerique_environnement" : "2", "ins" : "E"} | json_instruct | {"type": "object", "properties": {"choix": {"type": "array", "items": {"type": "string"}}, "qoe": {"type": "array", "items": {"type": "string"}}, "user_id": {"type": "integer"}, "ordre": {"type": "object", "properties": {"interface": {"type": "array", "items": {"type": "integer"}}, "video_IA_order": {"type": "array", "items": {"type": "string"}}, "video_IB_order": {"type": "array", "items": {"type": "string"}}}, "required": ["interface", "video_IA_order", "video_IB_order"]}, "birth": {"type": "string"}, "genre": {"type": "string"}, "connaissances_video": {"type": "string"}, "numerique_environnement": {"type": "string"}, "ins": {"type": "string"}}, "required": ["choix", "qoe", "user_id", "ordre", "birth", "genre", "connaissances_video", "numerique_environnement", "ins"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"html_attributions": {"type": "array", "items": {}}, "results": {"type": "array", "items": {"type": "object", "properties": {"business_status": {"type": "string"}, "geometry": {"type": "object", "properties": {"location": {"type": "object", "properties": {"lat": {"type": "number"}, "lng": {"type": "number"}}, "required": ["lat", "lng"]}, "viewport": {"type": "object", "properties": {"northeast": {"type": "object", "properties": {"lat": {"type": "number"}, "lng": {"type": "number"}}, "required": ["lat", "lng"]}, "southwest": {"type": "object", "properties": {"lat": {"type": "number"}, "lng": {"type": "number"}}, "required": ["lat", "lng"]}}, "required": ["northeast", "southwest"]}}, "required": ["location", "viewport"]}, "icon": {"type": "string"}, "icon_background_color": {"type": "string"}, "icon_mask_base_uri": {"type": "string"}, "name": {"type": "string"}, "opening_hours": {"type": "object", "properties": {"open_now": {"type": "boolean"}}, "required": ["open_now"]}, "place_id": {"type": "string"}, "reference": {"type": "string"}, "scope": {"type": "string"}, "types": {"type": "array", "items": {"type": "string"}}, "vicinity": {"type": "string"}}, "required": ["business_status", "geometry", "icon", "icon_background_color", "icon_mask_base_uri", "name", "opening_hours", "place_id", "reference", "scope", "types", "vicinity"]}}, "status": {"type": "string"}}, "required": ["html_attributions", "results", "status"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"html_attributions" : [], "results" : [{"business_status" : "OPERATIONAL", "geometry" : {"location" : {"lat" : 25.8530149, "lng" : 89.71527309999999}, "viewport" : {"northeast" : {"lat" : 25.85433123029151, "lng" : 89.7165126802915}, "southwest" : {"lat" : 25.8516332697085, "lng" : 89.7138147197085}}}, "icon" : "https://maps.gstatic.com/mapfiles/place_api/icons/v1/png_71/hospital-71.png", "icon_background_color" : "#F88181", "icon_mask_base_uri" : "https://maps.gstatic.com/mapfiles/place_api/icons/v2/hospital-H_pinlet", "name" : "\u09ae\u09b0\u09be\u099f\u09be\u09b0\u09c0 \u0995\u09ae\u09bf\u0989\u09a8\u09bf\u099f\u09bf \u0995\u09cd\u09b2\u09bf\u09a8\u09bf\u0995", "opening_hours" : {"open_now" : true}, "place_id" : "ChIJdebEixC54jkRHrtzpaGJwgs", "reference" : "ChIJdebEixC54jkRHrtzpaGJwgs", "scope" : "GOOGLE", "types" : ["hospital", "health", "point_of_interest", "establishment"], "vicinity" : "VP38+642"}], "status" : "OK"} | json_instruct | {"type": "object", "properties": {"html_attributions": {"type": "array", "items": {}}, "results": {"type": "array", "items": {"type": "object", "properties": {"business_status": {"type": "string"}, "geometry": {"type": "object", "properties": {"location": {"type": "object", "properties": {"lat": {"type": "number"}, "lng": {"type": "number"}}, "required": ["lat", "lng"]}, "viewport": {"type": "object", "properties": {"northeast": {"type": "object", "properties": {"lat": {"type": "number"}, "lng": {"type": "number"}}, "required": ["lat", "lng"]}, "southwest": {"type": "object", "properties": {"lat": {"type": "number"}, "lng": {"type": "number"}}, "required": ["lat", "lng"]}}, "required": ["northeast", "southwest"]}}, "required": ["location", "viewport"]}, "icon": {"type": "string"}, "icon_background_color": {"type": "string"}, "icon_mask_base_uri": {"type": "string"}, "name": {"type": "string"}, "opening_hours": {"type": "object", "properties": {"open_now": {"type": "boolean"}}, "required": ["open_now"]}, "place_id": {"type": "string"}, "reference": {"type": "string"}, "scope": {"type": "string"}, "types": {"type": "array", "items": {"type": "string"}}, "vicinity": {"type": "string"}}, "required": ["business_status", "geometry", "icon", "icon_background_color", "icon_mask_base_uri", "name", "opening_hours", "place_id", "reference", "scope", "types", "vicinity"]}}, "status": {"type": "string"}}, "required": ["html_attributions", "results", "status"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"Revision": {"type": "integer"}, "Id": {"type": "string"}, "Name": {"type": "string"}, "BeverageId": {"type": "string"}, "Type": {"type": "string"}, "BrandId": {"type": "string"}, "FlavorIds": {"type": "array", "items": {"type": "string"}}, "WaterSkus": {"type": "array", "items": {"type": "string"}}, "SyrupSkus": {"type": "array", "items": {"type": "object", "properties": {"Sku": {"type": "string"}, "Name": {"type": "string"}}, "required": ["Sku", "Name"]}}, "FlavorSkus": {"type": "array", "items": {"type": "object", "properties": {"Sku": {"type": "string"}, "Name": {"type": "string"}}, "required": ["Sku", "Name"]}}, "UnAllowedFlavors": {"type": "array", "items": {}}, "TopOffDelay": {"type": "integer"}}, "required": ["Revision", "Id", "Name", "BeverageId", "Type", "BrandId", "FlavorIds", "WaterSkus", "SyrupSkus", "FlavorSkus", "UnAllowedFlavors", "TopOffDelay"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"Revision" : 1, "Id" : "89bed8e8-651f-418a-9105-2551290cc7e5", "Name" : "Orchard Blush", "BeverageId" : "mix-orchard-blush", "Type" : "Mix", "BrandId" : "manzanita-sol", "FlavorIds" : ["vanilla", "strawberry"], "WaterSkus" : ["0111", "0333"], "SyrupSkus" : [{"Sku" : "012000030772", "Name" : "Manzanita Sol"}, {"Sku" : "012000023194", "Name" : "Manzanita Sol"}], "FlavorSkus" : [{"Sku" : "888888000010", "Name" : "FW Vanilla (CA)"}, {"Sku" : "012000043215", "Name" : "Flavor Works Vanilla"}, {"Sku" : "012000043239", "Name" : "Flavor Works Strawberry"}, {"Sku" : "888888000012", "Name" : "FW Strawberry (CA)"}], "UnAllowedFlavors" : [], "TopOffDelay" : 5} | json_instruct | {"type": "object", "properties": {"Revision": {"type": "integer"}, "Id": {"type": "string"}, "Name": {"type": "string"}, "BeverageId": {"type": "string"}, "Type": {"type": "string"}, "BrandId": {"type": "string"}, "FlavorIds": {"type": "array", "items": {"type": "string"}}, "WaterSkus": {"type": "array", "items": {"type": "string"}}, "SyrupSkus": {"type": "array", "items": {"type": "object", "properties": {"Sku": {"type": "string"}, "Name": {"type": "string"}}, "required": ["Sku", "Name"]}}, "FlavorSkus": {"type": "array", "items": {"type": "object", "properties": {"Sku": {"type": "string"}, "Name": {"type": "string"}}, "required": ["Sku", "Name"]}}, "UnAllowedFlavors": {"type": "array", "items": {}}, "TopOffDelay": {"type": "integer"}}, "required": ["Revision", "Id", "Name", "BeverageId", "Type", "BrandId", "FlavorIds", "WaterSkus", "SyrupSkus", "FlavorSkus", "UnAllowedFlavors", "TopOffDelay"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"value": {"type": "array", "items": {"type": "integer"}}}, "required": ["value"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"value" : [-973456422212346343, -971565321644217437, -951366267723865121, -945477536654354577, -917553553582765376, -967763743666855752, -945565772626782647]} | json_instruct | {"type": "object", "properties": {"value": {"type": "array", "items": {"type": "integer"}}}, "required": ["value"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"app.css": {"type": "string"}}, "required": ["app.css"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"app.css" : "app-a9ac4b62bd.css"} | json_instruct | {"type": "object", "properties": {"app.css": {"type": "string"}}, "required": ["app.css"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "obj_type": {"type": "string"}, "s3_key": {"type": "string"}, "screenshot_url": {"type": "string"}}, "required": ["name", "obj_type", "s3_key", "screenshot_url"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"name" : "Armchair", "obj_type" : "object", "s3_key" : "assets/752258ee7ff140e98a6f73fcca4e7efd.glb", "screenshot_url" : ""}, {"name" : "Classroom", "obj_type" : "background", "s3_key" : "assets/ac38abdce987432980ddcbdbba4190f9.glb", "screenshot_url" : ""}, {"name" : "Sanitizer", "obj_type" : "object", "s3_key" : "assets/4607df2be02e4dd1bb1e3c677a9da0b1.gltf", "screenshot_url" : ""}, {"name" : "Seashell", "obj_type" : "object", "s3_key" : "aws_s3_route", "screenshot_url" : ""}, {"name" : "Living Room", "obj_type" : "background", "s3_key" : "assets/f783f92e1d4840c784701af30d9dc313.glb", "screenshot_url" : ""}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "obj_type": {"type": "string"}, "s3_key": {"type": "string"}, "screenshot_url": {"type": "string"}}, "required": ["name", "obj_type", "s3_key", "screenshot_url"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"nom": {"type": "string"}, "dpt": {"type": "string"}, "inscrits": {"type": "integer"}, "abs": {"type": "integer"}, "votants": {"type": "integer"}, "blancs": {"type": "integer"}, "nuls": {"type": "integer"}, "exp": {"type": "integer"}, "res": {"type": "array", "items": {"type": "object", "properties": {"panneau": {"type": "string"}, "voix": {"type": "integer"}}, "required": ["panneau", "voix"]}}}, "required": ["nom", "dpt", "inscrits", "abs", "votants", "blancs", "nuls", "exp", "res"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"nom" : "Pontgouin", "dpt" : "Eure-et-Loir", "inscrits" : 683, "abs" : 136, "votants" : 547, "blancs" : 46, "nuls" : 12, "exp" : 489, "res" : [{"panneau" : "1", "voix" : 255}, {"panneau" : "2", "voix" : 234}]} | json_instruct | {"type": "object", "properties": {"nom": {"type": "string"}, "dpt": {"type": "string"}, "inscrits": {"type": "integer"}, "abs": {"type": "integer"}, "votants": {"type": "integer"}, "blancs": {"type": "integer"}, "nuls": {"type": "integer"}, "exp": {"type": "integer"}, "res": {"type": "array", "items": {"type": "object", "properties": {"panneau": {"type": "string"}, "voix": {"type": "integer"}}, "required": ["panneau", "voix"]}}}, "required": ["nom", "dpt", "inscrits", "abs", "votants", "blancs", "nuls", "exp", "res"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "license": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"temp": {"type": "string"}, "build": {"type": "string"}, "start": {"type": "string"}, "test": {"type": "string"}, "dev": {"type": "string"}}, "required": ["temp", "build", "start", "test", "dev"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "dependencies": {"type": "object", "properties": {"cors": {"type": "string"}, "crypto-js": {"type": "string"}, "dayjs": {"type": "string"}, "dotenv": {"type": "string"}, "express": {"type": "string"}, "helmet": {"type": "string"}, "jsonwebtoken": {"type": "string"}, "mongoose": {"type": "string"}, "morgan": {"type": "string"}, "nodemon": {"type": "string"}, "ts-node": {"type": "string"}, "winston": {"type": "string"}}, "required": ["cors", "crypto-js", "dayjs", "dotenv", "express", "helmet", "jsonwebtoken", "mongoose", "morgan", "nodemon", "ts-node", "winston"]}, "devDependencies": {"type": "object", "properties": {"@types/compression": {"type": "string"}, "@types/crypto-js": {"type": "string"}, "@types/express": {"type": "string"}, "@types/helmet": {"type": "string"}, "@types/jsonwebtoken": {"type": "string"}, "@types/morgan": {"type": "string"}, "@types/node": {"type": "string"}, "@types/winston": {"type": "string"}, "typescript": {"type": "string"}}, "required": ["@types/compression", "@types/crypto-js", "@types/express", "@types/helmet", "@types/jsonwebtoken", "@types/morgan", "@types/node", "@types/winston", "typescript"]}}, "required": ["name", "version", "license", "description", "main", "scripts", "keywords", "author", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "auth-micro", "version" : "1.0.0", "license" : "MIT", "description" : "Auth microservice of api-manager", "main" : "index.js", "scripts" : {"temp" : "npm run build && node build/index.js", "build" : "tsc -p .", "start" : "NODE_PATH=./build node build/index.js", "test" : "echo \"Error: no test specified\" && exit 1", "dev" : "nodemon src/index.ts"}, "keywords" : ["auth"], "author" : "ruggero95,derogab", "dependencies" : {"cors" : "^2.8.5", "crypto-js" : "^4.1.1", "dayjs" : "^1.10.7", "dotenv" : "^10.0.0", "express" : "^4.17.1", "helmet" : "^4.6.0", "jsonwebtoken" : "^8.5.1", "mongoose" : "^6.1.4", "morgan" : "^1.10.0", "nodemon" : "^2.0.15", "ts-node" : "^10.4.0", "winston" : "^3.3.3"}, "devDependencies" : {"@types/compression" : "^1.7.2", "@types/crypto-js" : "^4.1.0", "@types/express" : "^4.17.13", "@types/helmet" : "^4.0.0", "@types/jsonwebtoken" : "^8.5.6", "@types/morgan" : "^1.9.3", "@types/node" : "^16.11.10", "@types/winston" : "^2.4.4", "typescript" : "^4.5.2"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "license": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"temp": {"type": "string"}, "build": {"type": "string"}, "start": {"type": "string"}, "test": {"type": "string"}, "dev": {"type": "string"}}, "required": ["temp", "build", "start", "test", "dev"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "dependencies": {"type": "object", "properties": {"cors": {"type": "string"}, "crypto-js": {"type": "string"}, "dayjs": {"type": "string"}, "dotenv": {"type": "string"}, "express": {"type": "string"}, "helmet": {"type": "string"}, "jsonwebtoken": {"type": "string"}, "mongoose": {"type": "string"}, "morgan": {"type": "string"}, "nodemon": {"type": "string"}, "ts-node": {"type": "string"}, "winston": {"type": "string"}}, "required": ["cors", "crypto-js", "dayjs", "dotenv", "express", "helmet", "jsonwebtoken", "mongoose", "morgan", "nodemon", "ts-node", "winston"]}, "devDependencies": {"type": "object", "properties": {"@types/compression": {"type": "string"}, "@types/crypto-js": {"type": "string"}, "@types/express": {"type": "string"}, "@types/helmet": {"type": "string"}, "@types/jsonwebtoken": {"type": "string"}, "@types/morgan": {"type": "string"}, "@types/node": {"type": "string"}, "@types/winston": {"type": "string"}, "typescript": {"type": "string"}}, "required": ["@types/compression", "@types/crypto-js", "@types/express", "@types/helmet", "@types/jsonwebtoken", "@types/morgan", "@types/node", "@types/winston", "typescript"]}}, "required": ["name", "version", "license", "description", "main", "scripts", "keywords", "author", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"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" : ["pokecube_legends:ultra_iron_ore"]} | 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#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"authors": {"type": "array", "items": {"type": "object", "properties": {"author": {"type": "string"}}, "required": ["author"]}}, "doi": {"type": "string"}, "publication_date": {"type": "string"}, "id": {"type": "string"}, "url": {"type": "string"}, "source": {"type": "string"}, "source_url": {"type": "string"}, "licence": {"type": "string"}, "language": {"type": "string"}, "type": {"type": "string"}, "description": {"type": "string"}, "text": {"type": "string"}}, "required": ["authors", "doi", "publication_date", "id", "url", "source", "source_url", "licence", "language", "type", "description", "text"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"authors" : [{"author" : "Shahrooz Bemanian"}, {"author" : "Mazda Motallebi"}, {"author" : "Saeid M Nosrati"}], "doi" : "10.1186/1471-2369-6-10", "publication_date" : "2005-09-24", "id" : "EN119688", "url" : "https://pubmed.ncbi.nlm.nih.gov/16176587", "source" : "BMC nephrology", "source_url" : "", "licence" : "CC BY", "language" : "en", "type" : "pubmed", "description" : "", "text" : "A 48 year-old male presented with a four-day history of severe right flank pain following cocaine use. On presentation, he was tachycardic, febrile and had severe right costovertebral angle tenderness. He had significant proteinuria, leukocytosis and elevated serum creatinine and lactate dehydrogenase. Radiographic imaging studies as well as other screening tests for thromboembolic events, hypercoagulability states, collagen vascular diseases and lipid disorders were suggestive of Cocaine-Induced Renal Infarction (CIRI) by exclusion."} | json_instruct | {"type": "object", "properties": {"authors": {"type": "array", "items": {"type": "object", "properties": {"author": {"type": "string"}}, "required": ["author"]}}, "doi": {"type": "string"}, "publication_date": {"type": "string"}, "id": {"type": "string"}, "url": {"type": "string"}, "source": {"type": "string"}, "source_url": {"type": "string"}, "licence": {"type": "string"}, "language": {"type": "string"}, "type": {"type": "string"}, "description": {"type": "string"}, "text": {"type": "string"}}, "required": ["authors", "doi", "publication_date", "id", "url", "source", "source_url", "licence", "language", "type", "description", "text"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"t": {"type": "string"}, "h": {"type": "array", "items": {"type": "object", "properties": {"d": {"type": "array", "items": {"type": "object", "properties": {"f": {"type": "string"}, "e": {"type": "array", "items": {"type": "string"}}}, "required": ["f", "e"]}}}, "required": ["d"]}}, "stem": {"type": "string"}}, "required": ["t", "h", "stem"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"t" : "misalalongay", "h" : [{"d" : [{"f" : "\u6b63\u5728\u642d\u5efa\u7530\u5bee\u3001\u5de5\u68da\u4e86\u3002", "e" : ["\ufff9`Misalalong~`ay~ `ca~`nira~.\ufffa\ufffb\u4ed6\u5011\u5728\u5efa\u7530\u5bee\u4e86\u3002"]}, {"f" : "\u6307\u642d\u5efa\u7530\u5bee\u3001\u5de5\u68da\u7684\u4eba\u3002", "e" : ["\ufff9`Misalalong~`ay~ `a~ `kapah~.\ufffa\ufffb\u5efa\u7530\u5bee\u7684\u5c0f\u5925\u5b50\u3002"]}]}], "stem" : "lalong"} | json_instruct | {"type": "object", "properties": {"t": {"type": "string"}, "h": {"type": "array", "items": {"type": "object", "properties": {"d": {"type": "array", "items": {"type": "object", "properties": {"f": {"type": "string"}, "e": {"type": "array", "items": {"type": "string"}}}, "required": ["f", "e"]}}}, "required": ["d"]}}, "stem": {"type": "string"}}, "required": ["t", "h", "stem"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"subreddit": {"type": "string"}, "author": {"type": "string"}, "count": {"type": "integer"}}, "required": ["subreddit", "author", "count"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"subreddit" : "virgin", "author" : "BumbleSeeksAdvice", "count" : 3} | json_instruct | {"type": "object", "properties": {"subreddit": {"type": "string"}, "author": {"type": "string"}, "count": {"type": "integer"}}, "required": ["subreddit", "author", "count"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"title": {"type": "string"}, "fields": {"type": "array", "items": {"type": "string"}}, "abstract": {"type": "string"}, "citation": {"type": "string"}, "departments": {"type": "array", "items": {"type": "string"}}, "authors": {"type": "array", "items": {"type": "string"}}, "conf": {"type": "string"}, "year": {"type": "string"}, "pages": {"type": "integer"}}, "required": ["title", "fields", "abstract", "citation", "departments", "authors", "conf", "year", "pages"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"title" : "Verifying distributed systems: the operational approach.", "fields" : ["hol", "linearizability", "correctness", "operational semantics", "functional verification"], "abstract" : "This work develops an integrated approach to the verification of behaviourally rich programs, founded directly on operational semantics. The power of the approach is demonstrated with a state-of-the-art verification of a core piece of distributed infrastructure, involving networking, a filesystem, and concurrent OCaml code. The formalization is in higher-order logic and proof support is provided by the HOL4 theorem prover. Difficult verification problems demand a wide range of techniques. Here these include ground and symbolic evaluation, local reasoning, separation, invariants, Hoare-style assertional reasoning, rely/guarantee, inductive reasoning about protocol correctness, multiple refinement, and linearizability. While each of these techniques is useful in isolation, they are even more so in combination. The first contribution of this paper is to present the operational approach and describe how existing techniques, including all those mentioned above, may be cleanly and precisely integrated in this setting. The second contribution is to show how to combine verifications of individual library functions with arbitrary and unknown user code in a compositional manner, focusing on the problems of private state and encapsulation. The third contribution is the example verification itself. The infrastructure must behave correctly under arbitrary patterns of host and network failure, whilst for performance reasons the code also includes data races on shared state. Both features make the verification particularly challenging.", "citation" : "Citations (12)", "departments" : ["University of Cambridge"], "authors" : ["Tom Ridge.....http://dblp.org/pers/hd/r/Ridge:Tom"], "conf" : "popl", "year" : "2009", "pages" : 12} | json_instruct | {"type": "object", "properties": {"title": {"type": "string"}, "fields": {"type": "array", "items": {"type": "string"}}, "abstract": {"type": "string"}, "citation": {"type": "string"}, "departments": {"type": "array", "items": {"type": "string"}}, "authors": {"type": "array", "items": {"type": "string"}}, "conf": {"type": "string"}, "year": {"type": "string"}, "pages": {"type": "integer"}}, "required": ["title", "fields", "abstract", "citation", "departments", "authors", "conf", "year", "pages"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"Email address": {"type": "string"}, "Enter your MELCloud email address": {"type": "string"}, "Enter your MELCloud password": {"type": "string"}, "Enter your desired polling interval (in minutes) here to query data from MELCloud": {"type": "string"}, "Password": {"type": "string"}, "Polling interval": {"type": "string"}, "Select language": {"type": "string"}}, "required": ["Email address", "Enter your MELCloud email address", "Enter your MELCloud password", "Enter your desired polling interval (in minutes) here to query data from MELCloud", "Password", "Polling interval", "Select language"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"Email address" : "Adres e-mail", "Enter your MELCloud email address" : "Wpisz sw\u00f3j adres e-mail MELCloud", "Enter your MELCloud password" : "Wpisz swoje has\u0142o do MELCloud", "Enter your desired polling interval (in minutes) here to query data from MELCloud" : "Wprowad\u017a \u017c\u0105dany interwa\u0142 sondowania (w minutach) tutaj, aby wyszuka\u0107 dane z MELCloud", "Password" : "Has\u0142o", "Polling interval" : "Interwa\u0142 odpytywania", "Select language" : "Wybierz j\u0119zyk"} | json_instruct | {"type": "object", "properties": {"Email address": {"type": "string"}, "Enter your MELCloud email address": {"type": "string"}, "Enter your MELCloud password": {"type": "string"}, "Enter your desired polling interval (in minutes) here to query data from MELCloud": {"type": "string"}, "Password": {"type": "string"}, "Polling interval": {"type": "string"}, "Select language": {"type": "string"}}, "required": ["Email address", "Enter your MELCloud email address", "Enter your MELCloud password", "Enter your desired polling interval (in minutes) here to query data from MELCloud", "Password", "Polling interval", "Select language"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"kind": {"type": "string"}, "id": {"type": "string"}, "query": {"type": "object", "properties": {"start-date": {"type": "string"}, "end-date": {"type": "string"}, "ids": {"type": "string"}, "dimensions": {"type": "string"}, "metrics": {"type": "array", "items": {"type": "string"}}, "sort": {"type": "array", "items": {"type": "string"}}, "filters": {"type": "string"}, "start-index": {"type": "integer"}, "max-results": {"type": "integer"}}, "required": ["start-date", "end-date", "ids", "dimensions", "metrics", "sort", "filters", "start-index", "max-results"]}, "itemsPerPage": {"type": "integer"}, "totalResults": {"type": "integer"}, "selfLink": {"type": "string"}, "nextLink": {"type": "string"}, "profileInfo": {"type": "object", "properties": {"profileId": {"type": "string"}, "accountId": {"type": "string"}, "webPropertyId": {"type": "string"}, "internalWebPropertyId": {"type": "string"}, "profileName": {"type": "string"}, "tableId": {"type": "string"}}, "required": ["profileId", "accountId", "webPropertyId", "internalWebPropertyId", "profileName", "tableId"]}, "containsSampledData": {"type": "boolean"}, "sampleSize": {"type": "string"}, "sampleSpace": {"type": "string"}, "columnHeaders": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "columnType": {"type": "string"}, "dataType": {"type": "string"}}, "required": ["name", "columnType", "dataType"]}}, "totalsForAllResults": {"type": "object", "properties": {"ga:pageViews": {"type": "string"}}, "required": ["ga:pageViews"]}}, "required": ["kind", "id", "query", "itemsPerPage", "totalResults", "selfLink", "nextLink", "profileInfo", "containsSampledData", "sampleSize", "sampleSpace", "columnHeaders", "totalsForAllResults"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"kind" : "analytics#gaData", "id" : "https://www.googleapis.com/analytics/v3/data/ga?ids=ga:83400134&dimensions=ga:pagePath,ga:pageTitle&metrics=ga:pageViews&sort=-ga:pageViews&filters=ga:pagePath%3D@/cars/honda/jazz/&start-date=30daysAgo&end-date=today&max-results=10", "query" : {"start-date" : "30daysAgo", "end-date" : "today", "ids" : "ga:83400134", "dimensions" : "ga:pagePath,ga:pageTitle", "metrics" : ["ga:pageViews"], "sort" : ["-ga:pageViews"], "filters" : "ga:pagePath=@/cars/honda/jazz/", "start-index" : 1, "max-results" : 10}, "itemsPerPage" : 10, "totalResults" : 0, "selfLink" : "https://www.googleapis.com/analytics/v3/data/ga?ids=ga:83400134&dimensions=ga:pagePath,ga:pageTitle&metrics=ga:pageViews&sort=-ga:pageViews&filters=ga:pagePath%3D@/cars/honda/jazz/&start-date=30daysAgo&end-date=today&max-results=10", "nextLink" : "https://www.googleapis.com/analytics/v3/data/ga?ids=ga:83400134&dimensions=ga:pagePath,ga:pageTitle&metrics=ga:pageViews&sort=-ga:pageViews&filters=ga:pagePath%3D@advice/Tires&start-date=30daysAgo&end-date=today&start-index=11&max-results=10", "profileInfo" : {"profileId" : "83400134", "accountId" : "48959041", "webPropertyId" : "UA-48959041-5", "internalWebPropertyId" : "80602202", "profileName" : "All Web Site Data ID", "tableId" : "ga:83400134"}, "containsSampledData" : true, "sampleSize" : "831583", "sampleSpace" : "1985537", "columnHeaders" : [{"name" : "ga:pagePath", "columnType" : "DIMENSION", "dataType" : "STRING"}, {"name" : "ga:pageTitle", "columnType" : "DIMENSION", "dataType" : "STRING"}, {"name" : "ga:pageViews", "columnType" : "METRIC", "dataType" : "INTEGER"}], "totalsForAllResults" : {"ga:pageViews" : "0"}} | json_instruct | {"type": "object", "properties": {"kind": {"type": "string"}, "id": {"type": "string"}, "query": {"type": "object", "properties": {"start-date": {"type": "string"}, "end-date": {"type": "string"}, "ids": {"type": "string"}, "dimensions": {"type": "string"}, "metrics": {"type": "array", "items": {"type": "string"}}, "sort": {"type": "array", "items": {"type": "string"}}, "filters": {"type": "string"}, "start-index": {"type": "integer"}, "max-results": {"type": "integer"}}, "required": ["start-date", "end-date", "ids", "dimensions", "metrics", "sort", "filters", "start-index", "max-results"]}, "itemsPerPage": {"type": "integer"}, "totalResults": {"type": "integer"}, "selfLink": {"type": "string"}, "nextLink": {"type": "string"}, "profileInfo": {"type": "object", "properties": {"profileId": {"type": "string"}, "accountId": {"type": "string"}, "webPropertyId": {"type": "string"}, "internalWebPropertyId": {"type": "string"}, "profileName": {"type": "string"}, "tableId": {"type": "string"}}, "required": ["profileId", "accountId", "webPropertyId", "internalWebPropertyId", "profileName", "tableId"]}, "containsSampledData": {"type": "boolean"}, "sampleSize": {"type": "string"}, "sampleSpace": {"type": "string"}, "columnHeaders": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "columnType": {"type": "string"}, "dataType": {"type": "string"}}, "required": ["name", "columnType", "dataType"]}}, "totalsForAllResults": {"type": "object", "properties": {"ga:pageViews": {"type": "string"}}, "required": ["ga:pageViews"]}}, "required": ["kind", "id", "query", "itemsPerPage", "totalResults", "selfLink", "nextLink", "profileInfo", "containsSampledData", "sampleSize", "sampleSpace", "columnHeaders", "totalsForAllResults"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"url": {"type": "string"}, "archived_snapshots": {"type": "object", "properties": {}, "required": []}, "timestamp": {"type": "string"}}, "required": ["url", "archived_snapshots", "timestamp"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"url" : "http://web.archive.org/web/20010221010141/http://www.doubleh.com.tw/dh-2000sc.htm", "archived_snapshots" : {}, "timestamp" : "20210316"} | json_instruct | {"type": "object", "properties": {"url": {"type": "string"}, "archived_snapshots": {"type": "object", "properties": {}, "required": []}, "timestamp": {"type": "string"}}, "required": ["url", "archived_snapshots", "timestamp"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"C++": {"type": "integer"}, "C": {"type": "integer"}, "Assembly": {"type": "integer"}, "Objective-C": {"type": "integer"}, "Shell": {"type": "integer"}}, "required": ["C++", "C", "Assembly", "Objective-C", "Shell"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"C++" : 15444409, "C" : 12798514, "Assembly" : 5325011, "Objective-C" : 655686, "Shell" : 7468} | json_instruct | {"type": "object", "properties": {"C++": {"type": "integer"}, "C": {"type": "integer"}, "Assembly": {"type": "integer"}, "Objective-C": {"type": "integer"}, "Shell": {"type": "integer"}}, "required": ["C++", "C", "Assembly", "Objective-C", "Shell"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"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" : 101857853, "type" : "Feature", "properties" : {"src:alt_label" : "quattroshapes_pg", "src:geom" : "quattroshapes_pg", "wof:geomhash" : "a2ab344003768db323ecf73802d5fa5f", "wof:id" : 101857853, "wof:repo" : "whosonfirst-data-admin-hr"}, "bbox" : [15.66667, 45.76667, 15.66667, 45.76667], "geometry" : {"coordinates" : [15.66667, 45.76667], "type" : "Point"}} | json_instruct | {"type": "object", "properties": {"id": {"type": "integer"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"src:alt_label": {"type": "string"}, "src:geom": {"type": "string"}, "wof:geomhash": {"type": "string"}, "wof:id": {"type": "integer"}, "wof:repo": {"type": "string"}}, "required": ["src:alt_label", "src:geom", "wof:geomhash", "wof:id", "wof:repo"]}, "bbox": {"type": "array", "items": {"type": "number"}}, "geometry": {"type": "object", "properties": {"coordinates": {"type": "array", "items": {"type": "number"}}, "type": {"type": "string"}}, "required": ["coordinates", "type"]}}, "required": ["id", "type", "properties", "bbox", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"name": {"type": "string"}, "private": {"type": "boolean"}, "description": {"type": "string"}, "version": {"type": "string"}, "author": {"type": "string"}, "dependencies": {"type": "object", "properties": {"gatsby": {"type": "string"}, "gatsby-plugin-manifest": {"type": "string"}, "gatsby-plugin-sentry": {"type": "string"}, "gatsby-source-filesystem": {"type": "string"}, "gatsby-theme-nodeschool": {"type": "string"}, "gh-pages": {"type": "string"}}, "required": ["gatsby", "gatsby-plugin-manifest", "gatsby-plugin-sentry", "gatsby-source-filesystem", "gatsby-theme-nodeschool", "gh-pages"]}, "license": {"type": "string"}, "scripts": {"type": "object", "properties": {"build": {"type": "string"}, "build:pp": {"type": "string"}, "build:gh": {"type": "string"}, "clean": {"type": "string"}, "develop": {"type": "string"}, "deploy:github": {"type": "string"}, "dev": {"type": "string"}, "format": {"type": "string"}, "start": {"type": "string"}, "serve": {"type": "string"}, "test": {"type": "string"}}, "required": ["build", "build:pp", "build:gh", "clean", "develop", "deploy:github", "dev", "format", "start", "serve", "test"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}}, "required": ["name", "private", "description", "version", "author", "dependencies", "license", "scripts", "repository", "bugs"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "gatsby-theme-nodeschool-example", "private" : true, "description" : "A simple starter to get up and developing quickly with Gatsby", "version" : "0.1.2", "author" : "Kyle Mathews <[email protected]>", "dependencies" : {"gatsby" : "^2.17.7", "gatsby-plugin-manifest" : "^2.2.26", "gatsby-plugin-sentry" : "^1.0.1", "gatsby-source-filesystem" : "^2.1.33", "gatsby-theme-nodeschool" : "^0.1.2", "gh-pages" : "^2.1.1"}, "license" : "MIT", "scripts" : {"build" : "TZ=UTC gatsby build", "build:pp" : "TZ=UTC gatsby build --prefix-paths", "build:gh" : "run-s clean build:pp deploy:github", "clean" : "rm -rf public", "develop" : "gatsby develop -p 3000 -H 0.0.0.0", "deploy:github" : "gh-pages -d public", "dev" : "npm run develop", "format" : "prettier --write \"**/*.{js,jsx,json,md}\"", "start" : "npm run develop", "serve" : "gatsby serve", "test" : "echo \"Write tests! -> https://gatsby.dev/unit-testing\" && exit 1"}, "repository" : {"type" : "git", "url" : "https://github.com/gatsbyjs/gatsby-starter-default"}, "bugs" : {"url" : "https://github.com/gatsbyjs/gatsby/issues"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "private": {"type": "boolean"}, "description": {"type": "string"}, "version": {"type": "string"}, "author": {"type": "string"}, "dependencies": {"type": "object", "properties": {"gatsby": {"type": "string"}, "gatsby-plugin-manifest": {"type": "string"}, "gatsby-plugin-sentry": {"type": "string"}, "gatsby-source-filesystem": {"type": "string"}, "gatsby-theme-nodeschool": {"type": "string"}, "gh-pages": {"type": "string"}}, "required": ["gatsby", "gatsby-plugin-manifest", "gatsby-plugin-sentry", "gatsby-source-filesystem", "gatsby-theme-nodeschool", "gh-pages"]}, "license": {"type": "string"}, "scripts": {"type": "object", "properties": {"build": {"type": "string"}, "build:pp": {"type": "string"}, "build:gh": {"type": "string"}, "clean": {"type": "string"}, "develop": {"type": "string"}, "deploy:github": {"type": "string"}, "dev": {"type": "string"}, "format": {"type": "string"}, "start": {"type": "string"}, "serve": {"type": "string"}, "test": {"type": "string"}}, "required": ["build", "build:pp", "build:gh", "clean", "develop", "deploy:github", "dev", "format", "start", "serve", "test"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}}, "required": ["name", "private", "description", "version", "author", "dependencies", "license", "scripts", "repository", "bugs"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "license": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}}, "minimum-stability": {"type": "string"}, "require": {"type": "object", "properties": {}, "required": []}, "autoload": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"Tools\\": {"type": "string"}}, "required": ["Tools\\"]}}, "required": ["psr-4"]}}, "required": ["name", "description", "license", "authors", "minimum-stability", "require", "autoload"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "kris7i/bingo-ts", "description" : "bingo-ts ", "license" : "Apache-2.0", "authors" : [{"name" : "kris", "email" : "[email protected]"}], "minimum-stability" : "dev", "require" : {}, "autoload" : {"psr-4" : {"Tools\\" : "src/"}}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "license": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}}, "minimum-stability": {"type": "string"}, "require": {"type": "object", "properties": {}, "required": []}, "autoload": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"Tools\\": {"type": "string"}}, "required": ["Tools\\"]}}, "required": ["psr-4"]}}, "required": ["name", "description", "license", "authors", "minimum-stability", "require", "autoload"], "$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"}, "repo": {"type": "string"}, "description": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "src": {"type": "array", "items": {"type": "string"}}, "dependencies": {"type": "object", "properties": {"strdup": {"type": "string"}}, "required": ["strdup"]}, "development": {"type": "object", "properties": {"jwerle/fs.c": {"type": "string"}}, "required": ["jwerle/fs.c"]}}, "required": ["name", "version", "repo", "description", "keywords", "src", "dependencies", "development"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "tempdir", "version" : "0.0.2", "repo" : "stephenmathieson/tempdir.c", "description" : "implementation of Python's tempfile.tempdir", "keywords" : ["temp", "tempdir"], "src" : ["tempdir.h", "tempdir.c"], "dependencies" : {"strdup" : "0.0.0"}, "development" : {"jwerle/fs.c" : "*"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "repo": {"type": "string"}, "description": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "src": {"type": "array", "items": {"type": "string"}}, "dependencies": {"type": "object", "properties": {"strdup": {"type": "string"}}, "required": ["strdup"]}, "development": {"type": "object", "properties": {"jwerle/fs.c": {"type": "string"}}, "required": ["jwerle/fs.c"]}}, "required": ["name", "version", "repo", "description", "keywords", "src", "dependencies", "development"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "title": {"type": "string"}, "year": {"type": "integer"}, "type": {"type": "string"}, "imageName": {"type": "string"}, "nominations": {"type": "integer"}, "wins": {"type": "integer"}}, "required": ["id", "title", "year", "type", "imageName", "nominations", "wins"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"id" : 21493, "title" : "The Man Who Lived Forever / The Mars Monopoly", "year" : 1956, "type" : "novel", "imageName" : "ad_themanwh_themarsm.gif", "nominations" : 0, "wins" : -1}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "title": {"type": "string"}, "year": {"type": "integer"}, "type": {"type": "string"}, "imageName": {"type": "string"}, "nominations": {"type": "integer"}, "wins": {"type": "integer"}}, "required": ["id", "title", "year", "type", "imageName", "nominations", "wins"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"title": {"type": "string"}, "fields": {"type": "array", "items": {"type": "string"}}, "abstract": {"type": "string"}, "citation": {"type": "string"}, "departments": {"type": "array", "items": {"type": "string"}}, "authors": {"type": "array", "items": {"type": "string"}}, "conf": {"type": "string"}, "year": {"type": "string"}, "pages": {"type": "integer"}}, "required": ["title", "fields", "abstract", "citation", "departments", "authors", "conf", "year", "pages"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"title" : "Using visualizations to increase compliance in experience sampling.", "fields" : ["exploratory research", "ubiquitous computing", "data collection", "experience sampling method", "empirical research"], "abstract" : "Experience sampling method (or ESM) is a common data collection method to understand user behavior and to evaluate ubiquitous computing technologies. However, ESM studies often demand too much time and commitment from participants, which leads to attrition and low compliance among participants. We introduce a new approach called experience sampling with feedback or ES+feedback that improves compliance by giving feedback to participants through various visualizations. Providing feedback to users makes the information personally relevant and increases the value of the study to participants, which increases their compliance. Our exploratory study shows that ES+feedback increases the compliance rate by 23%.", "citation" : "Citations (36)", "departments" : ["Carnegie Mellon University", "Carnegie Mellon University", "Carnegie Mellon University", "Carnegie Mellon University", "Carnegie Mellon University"], "authors" : ["Gary Hsieh.....http://dblp.org/pers/hd/h/Hsieh:Gary", "Ian Li.....http://dblp.org/pers/hd/l/Li:Ian", "Anind K. Dey.....http://dblp.org/pers/hd/d/Dey:Anind_K=", "Jodi Forlizzi.....http://dblp.org/pers/hd/f/Forlizzi:Jodi", "Scott E. Hudson.....http://dblp.org/pers/hd/h/Hudson:Scott_E="], "conf" : "huc", "year" : "2008", "pages" : 4} | json_instruct | {"type": "object", "properties": {"title": {"type": "string"}, "fields": {"type": "array", "items": {"type": "string"}}, "abstract": {"type": "string"}, "citation": {"type": "string"}, "departments": {"type": "array", "items": {"type": "string"}}, "authors": {"type": "array", "items": {"type": "string"}}, "conf": {"type": "string"}, "year": {"type": "string"}, "pages": {"type": "integer"}}, "required": ["title", "fields", "abstract", "citation", "departments", "authors", "conf", "year", "pages"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "license": {"type": "null"}, "starNum": {"type": "integer"}, "folkNum": {"type": "integer"}, "watchNum": {"type": "integer"}, "topic": {"type": "array", "items": {}}}, "required": ["name", "description", "license", "starNum", "folkNum", "watchNum", "topic"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "mytweets", "description" : "Script for saving a JSON archive of your tweets.", "license" : null, "starNum" : 79, "folkNum" : 17, "watchNum" : 79, "topic" : []} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "license": {"type": "null"}, "starNum": {"type": "integer"}, "folkNum": {"type": "integer"}, "watchNum": {"type": "integer"}, "topic": {"type": "array", "items": {}}}, "required": ["name", "description", "license", "starNum", "folkNum", "watchNum", "topic"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"ETag": {"type": "string"}, "Last-Modified": {"type": "string"}, "base": {"type": "object", "properties": {"repo": {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"]}}, "required": ["repo"]}, "closed_at": {"type": "null"}, "created_at": {"type": "string"}, "draft": {"type": "boolean"}, "head": {"type": "object", "properties": {"ref": {"type": "string"}}, "required": ["ref"]}, "html_url": {"type": "string"}, "id": {"type": "integer"}, "labels": {"type": "array", "items": {}}, "mergeable": {"type": "boolean"}, "mergeable_state": {"type": "string"}, "merged": {"type": "boolean"}, "merged_at": {"type": "null"}, "number": {"type": "integer"}, "state": {"type": "string"}, "updated_at": {"type": "string"}}, "required": ["ETag", "Last-Modified", "base", "closed_at", "created_at", "draft", "head", "html_url", "id", "labels", "mergeable", "mergeable_state", "merged", "merged_at", "number", "state", "updated_at"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"ETag" : "W/\"851e9b8a126a1346f539dc29fe48fdb68eff47292541e4108f8478bf36c084fd\"", "Last-Modified" : "Tue, 12 Jan 2021 19:21:23 GMT", "base" : {"repo" : {"name" : "faunus-feedstock"}}, "closed_at" : null, "created_at" : "2021-01-12T19:21:18Z", "draft" : false, "head" : {"ref" : "rebuild-pypy37-0-1_hb16292"}, "html_url" : "https://github.com/conda-forge/faunus-feedstock/pull/20", "id" : 553701450, "labels" : [], "mergeable" : true, "mergeable_state" : "unstable", "merged" : false, "merged_at" : null, "number" : 20, "state" : "open", "updated_at" : "2021-01-12T19:21:23Z"} | json_instruct | {"type": "object", "properties": {"ETag": {"type": "string"}, "Last-Modified": {"type": "string"}, "base": {"type": "object", "properties": {"repo": {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"]}}, "required": ["repo"]}, "closed_at": {"type": "null"}, "created_at": {"type": "string"}, "draft": {"type": "boolean"}, "head": {"type": "object", "properties": {"ref": {"type": "string"}}, "required": ["ref"]}, "html_url": {"type": "string"}, "id": {"type": "integer"}, "labels": {"type": "array", "items": {}}, "mergeable": {"type": "boolean"}, "mergeable_state": {"type": "string"}, "merged": {"type": "boolean"}, "merged_at": {"type": "null"}, "number": {"type": "integer"}, "state": {"type": "string"}, "updated_at": {"type": "string"}}, "required": ["ETag", "Last-Modified", "base", "closed_at", "created_at", "draft", "head", "html_url", "id", "labels", "mergeable", "mergeable_state", "merged", "merged_at", "number", "state", "updated_at"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"hash": {"type": "string"}, "parentHash": {"type": "string"}, "number": {"type": "integer"}, "timestamp": {"type": "integer"}, "nonce": {"type": "string"}, "difficulty": {"type": "integer"}, "gasLimit": {"type": "object", "properties": {"_hex": {"type": "string"}}, "required": ["_hex"]}, "gasUsed": {"type": "object", "properties": {"_hex": {"type": "string"}}, "required": ["_hex"]}, "miner": {"type": "string"}, "extraData": {"type": "string"}, "transactions": {"type": "array", "items": {}}}, "required": ["hash", "parentHash", "number", "timestamp", "nonce", "difficulty", "gasLimit", "gasUsed", "miner", "extraData", "transactions"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"hash" : "0xb797851dfa367d043de96d434f343debdf8b1cfb8832037db4d89e1727b940c7", "parentHash" : "0xfccaebdbed1334e2f9a3e380c0f3a9191d43f031f41b73394eda094359e8393f", "number" : 9728, "timestamp" : 1438331120, "nonce" : "0x91db545ab0b973bc", "difficulty" : 584012628786, "gasLimit" : {"_hex" : "0x1388"}, "gasUsed" : {"_hex" : "0x0"}, "miner" : "0x870af3EE05F8EF950A4188bfC34AEE93010B2658", "extraData" : "0x476574682f76312e302e302f6c696e75782f676f312e342e32", "transactions" : []} | json_instruct | {"type": "object", "properties": {"hash": {"type": "string"}, "parentHash": {"type": "string"}, "number": {"type": "integer"}, "timestamp": {"type": "integer"}, "nonce": {"type": "string"}, "difficulty": {"type": "integer"}, "gasLimit": {"type": "object", "properties": {"_hex": {"type": "string"}}, "required": ["_hex"]}, "gasUsed": {"type": "object", "properties": {"_hex": {"type": "string"}}, "required": ["_hex"]}, "miner": {"type": "string"}, "extraData": {"type": "string"}, "transactions": {"type": "array", "items": {}}}, "required": ["hash", "parentHash", "number", "timestamp", "nonce", "difficulty", "gasLimit", "gasUsed", "miner", "extraData", "transactions"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"HN": {"type": "string"}, "REDDIT": {"type": "string"}}, "required": ["HN", "REDDIT"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"HN" : "/hn", "REDDIT" : "/reddit"} | json_instruct | {"type": "object", "properties": {"HN": {"type": "string"}, "REDDIT": {"type": "string"}}, "required": ["HN", "REDDIT"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"status": {"type": "string"}, "tp": {"type": "integer"}, "msg": {"type": "string"}, "result": {"type": "object", "properties": {"\"91984\"": {"type": "string"}, "\"91971\"": {"type": "string"}, "\"91959\"": {"type": "string"}, "\"91957\"": {"type": "string"}, "\"91938\"": {"type": "string"}, "\"91937\"": {"type": "string"}, "\"91934\"": {"type": "string"}, "\"91931\"": {"type": "string"}, "\"91926\"": {"type": "string"}, "\"91915\"": {"type": "string"}}, "required": ["\"91984\"", "\"91971\"", "\"91959\"", "\"91957\"", "\"91938\"", "\"91937\"", "\"91934\"", "\"91931\"", "\"91926\"", "\"91915\""]}, "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" : {"\"91984\"" : "Bog Walk", "\"91971\"" : "Ewarton", "\"91959\"" : "Linstead", "\"91957\"" : "Lluidas Vale", "\"91938\"" : "Old Harbour", "\"91937\"" : "Old Harbour Bay", "\"91934\"" : "Point Hill", "\"91931\"" : "Portmore", "\"91926\"" : "Riversdale", "\"91915\"" : "Spanish Town"}, "hits" : "3226"} | json_instruct | {"type": "object", "properties": {"status": {"type": "string"}, "tp": {"type": "integer"}, "msg": {"type": "string"}, "result": {"type": "object", "properties": {"\"91984\"": {"type": "string"}, "\"91971\"": {"type": "string"}, "\"91959\"": {"type": "string"}, "\"91957\"": {"type": "string"}, "\"91938\"": {"type": "string"}, "\"91937\"": {"type": "string"}, "\"91934\"": {"type": "string"}, "\"91931\"": {"type": "string"}, "\"91926\"": {"type": "string"}, "\"91915\"": {"type": "string"}}, "required": ["\"91984\"", "\"91971\"", "\"91959\"", "\"91957\"", "\"91938\"", "\"91937\"", "\"91934\"", "\"91931\"", "\"91926\"", "\"91915\""]}, "hits": {"type": "string"}}, "required": ["status", "tp", "msg", "result", "hits"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"wall_shifts": {"type": "array", "items": {"type": "object", "properties": {"feed": {"type": "string"}, "sell_price": {"type": "number"}, "price": {"type": "number"}, "currency": {"type": "string"}, "buy_price": {"type": "number"}, "backup_feed": {"type": "array", "items": {"type": "object", "properties": {"feed": {"type": "string"}, "price": {"type": "number"}}, "required": ["feed", "price"]}}, "timestamp": {"type": "integer"}, "crypto": {"type": "string"}}, "required": ["feed", "sell_price", "price", "currency", "buy_price", "backup_feed", "timestamp", "crypto"]}}}, "required": ["wall_shifts"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"wall_shifts" : [{"feed" : "blockchain", "sell_price" : 0.00349795, "price" : 287.74, "currency" : "USD", "buy_price" : 0.00345277, "backup_feed" : [{"feed" : "bitstamp", "price" : 286.55}], "timestamp" : 1425937697416, "crypto" : "BTC"}, {"feed" : "blockchain", "sell_price" : 0.00349856, "price" : 287.69, "currency" : "USD", "buy_price" : 0.00345337, "backup_feed" : [{"feed" : "bitstamp", "price" : 286.94}], "timestamp" : 1425937876874, "crypto" : "BTC"}, {"feed" : "blockchain", "sell_price" : 0.00351003, "price" : 286.75, "currency" : "USD", "buy_price" : 0.00346469, "backup_feed" : [{"feed" : "bitstamp", "price" : 287.83}], "timestamp" : 1425938061517, "crypto" : "BTC"}, {"feed" : "blockchain", "sell_price" : 0.00349686, "price" : 287.83, "currency" : "USD", "buy_price" : 0.00345169, "backup_feed" : [{"feed" : "bitstamp", "price" : 287.7}], "timestamp" : 1425938240573, "crypto" : "BTC"}]} | json_instruct | {"type": "object", "properties": {"wall_shifts": {"type": "array", "items": {"type": "object", "properties": {"feed": {"type": "string"}, "sell_price": {"type": "number"}, "price": {"type": "number"}, "currency": {"type": "string"}, "buy_price": {"type": "number"}, "backup_feed": {"type": "array", "items": {"type": "object", "properties": {"feed": {"type": "string"}, "price": {"type": "number"}}, "required": ["feed", "price"]}}, "timestamp": {"type": "integer"}, "crypto": {"type": "string"}}, "required": ["feed", "sell_price", "price", "currency", "buy_price", "backup_feed", "timestamp", "crypto"]}}}, "required": ["wall_shifts"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"window.titleBarStyle": {"type": "string"}, "files.trimTrailingWhitespace": {"type": "boolean"}, "files.insertFinalNewline": {"type": "boolean"}, "files.trimFinalNewlines": {"type": "boolean"}, "telemetry.telemetryLevel": {"type": "string"}, "markdown.preview.scrollPreviewWithEditor": {"type": "boolean"}, "markdown.preview.scrollEditorWithPreview": {"type": "boolean"}, "explorer.confirmDelete": {"type": "boolean"}, "explorer.confirmDragAndDrop": {"type": "boolean"}, "explorer.autoReveal": {"type": "boolean"}, "asciidoc.preview.scrollPreviewWithEditor": {"type": "boolean"}, "asciidoc.preview.scrollEditorWithPreview": {"type": "boolean"}, "window.restoreWindows": {"type": "string"}}, "required": ["window.titleBarStyle", "files.trimTrailingWhitespace", "files.insertFinalNewline", "files.trimFinalNewlines", "telemetry.telemetryLevel", "markdown.preview.scrollPreviewWithEditor", "markdown.preview.scrollEditorWithPreview", "explorer.confirmDelete", "explorer.confirmDragAndDrop", "explorer.autoReveal", "asciidoc.preview.scrollPreviewWithEditor", "asciidoc.preview.scrollEditorWithPreview", "window.restoreWindows"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"window.titleBarStyle" : "custom", "files.trimTrailingWhitespace" : true, "files.insertFinalNewline" : true, "files.trimFinalNewlines" : true, "telemetry.telemetryLevel" : "crash", "markdown.preview.scrollPreviewWithEditor" : false, "markdown.preview.scrollEditorWithPreview" : false, "explorer.confirmDelete" : false, "explorer.confirmDragAndDrop" : false, "explorer.autoReveal" : false, "asciidoc.preview.scrollPreviewWithEditor" : false, "asciidoc.preview.scrollEditorWithPreview" : false, "window.restoreWindows" : "none"} | json_instruct | {"type": "object", "properties": {"window.titleBarStyle": {"type": "string"}, "files.trimTrailingWhitespace": {"type": "boolean"}, "files.insertFinalNewline": {"type": "boolean"}, "files.trimFinalNewlines": {"type": "boolean"}, "telemetry.telemetryLevel": {"type": "string"}, "markdown.preview.scrollPreviewWithEditor": {"type": "boolean"}, "markdown.preview.scrollEditorWithPreview": {"type": "boolean"}, "explorer.confirmDelete": {"type": "boolean"}, "explorer.confirmDragAndDrop": {"type": "boolean"}, "explorer.autoReveal": {"type": "boolean"}, "asciidoc.preview.scrollPreviewWithEditor": {"type": "boolean"}, "asciidoc.preview.scrollEditorWithPreview": {"type": "boolean"}, "window.restoreWindows": {"type": "string"}}, "required": ["window.titleBarStyle", "files.trimTrailingWhitespace", "files.insertFinalNewline", "files.trimFinalNewlines", "telemetry.telemetryLevel", "markdown.preview.scrollPreviewWithEditor", "markdown.preview.scrollEditorWithPreview", "explorer.confirmDelete", "explorer.confirmDragAndDrop", "explorer.autoReveal", "asciidoc.preview.scrollPreviewWithEditor", "asciidoc.preview.scrollEditorWithPreview", "window.restoreWindows"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"MRRm_new": {"type": "number"}, "MRm_new": {"type": "number"}, "HITS@1m_new": {"type": "number"}, "HITS@3m_new": {"type": "number"}, "HITS@10m_new": {"type": "number"}}, "required": ["MRRm_new", "MRm_new", "HITS@1m_new", "HITS@3m_new", "HITS@10m_new"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"MRRm_new" : 0.10604954927283507, "MRm_new" : 2064.1498267968445, "HITS@1m_new" : 0.06876623693211513, "HITS@3m_new" : 0.110967968009365, "HITS@10m_new" : 0.17909143112041057} | json_instruct | {"type": "object", "properties": {"MRRm_new": {"type": "number"}, "MRm_new": {"type": "number"}, "HITS@1m_new": {"type": "number"}, "HITS@3m_new": {"type": "number"}, "HITS@10m_new": {"type": "number"}}, "required": ["MRRm_new", "MRm_new", "HITS@1m_new", "HITS@3m_new", "HITS@10m_new"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"id": {"type": "string"}, "provinceId": {"type": "string"}, "regencyId": {"type": "string"}, "districtId": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "provinceId", "regencyId", "districtId", "name"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "2006", "provinceId" : "17", "regencyId" : "03", "districtId" : "24", "name" : "Bumi Harjo"} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "provinceId": {"type": "string"}, "regencyId": {"type": "string"}, "districtId": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "provinceId", "regencyId", "districtId", "name"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"body": {"type": "string"}, "attachments": {"type": "array", "items": {}}, "created_by_name": {"type": "string"}, "created_at": {"type": "string"}, "created_by": {"type": "string"}, "parent_id": {"type": "string"}, "id": {"type": "string"}}, "required": ["body", "attachments", "created_by_name", "created_at", "created_by", "parent_id", "id"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"body" : "One final question (learning to program in C++ here!): Should I compile\nraycalls.c as a Library?\n\n\nBest,\n\n\n2017-09-14 8:16 GMT-03:00 Germ\u00e1n Molina Larrain <germolinal at gmail.com>:\n___\n<sup>Automatically generated content from [radiance mailing-list](https://radiance-online.org/pipermail/radiance-dev/2017-September/001716.html).</sup>", "attachments" : [], "created_by_name" : "Germ\u00e1n Molina Larrain", "created_at" : "September 14, 2017 at 07:22AM", "created_by" : "Germ\u00e1n_Molina_Larrain", "parent_id" : "radiance-dev_001713", "id" : "radiance-dev_001716"} | json_instruct | {"type": "object", "properties": {"body": {"type": "string"}, "attachments": {"type": "array", "items": {}}, "created_by_name": {"type": "string"}, "created_at": {"type": "string"}, "created_by": {"type": "string"}, "parent_id": {"type": "string"}, "id": {"type": "string"}}, "required": ["body", "attachments", "created_by_name", "created_at", "created_by", "parent_id", "id"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "array", "items": {"type": "object", "properties": {"postal_code": {"type": "string"}, "place_name": {"type": "string"}, "place_type": {"type": "string"}, "county": {"type": "string"}, "state": {"type": "string"}, "city": {"type": "string"}}, "required": ["postal_code", "place_name", "place_type", "county", "state", "city"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"postal_code" : "66037", "place_name" : "Santa Mar\u00eda", "place_type" : "Fraccionamiento", "county" : "Garc\u00eda", "state" : "Nuevo Le\u00f3n", "city" : ""}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"postal_code": {"type": "string"}, "place_name": {"type": "string"}, "place_type": {"type": "string"}, "county": {"type": "string"}, "state": {"type": "string"}, "city": {"type": "string"}}, "required": ["postal_code", "place_name", "place_type", "county", "state", "city"]}, "$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"}, "description": {"type": "string"}, "license": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}}, "minimum-stability": {"type": "string"}, "require": {"type": "object", "properties": {"php": {"type": "string"}}, "required": ["php"]}, "require-dev": {"type": "object", "properties": {"phpunit/phpunit": {"type": "string"}}, "required": ["phpunit/phpunit"]}, "autoload": {"type": "object", "properties": {"psr-0": {"type": "object", "properties": {"": {"type": "string"}}, "required": [""]}}, "required": ["psr-0"]}}, "required": ["name", "description", "license", "authors", "minimum-stability", "require", "require-dev", "autoload"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "mpgarate/php-arraylist", "description" : "A Java-like dynamically-resizing array-based list implementation", "license" : "MIT", "authors" : [{"name" : "Michael Garate", "email" : "[email protected]"}], "minimum-stability" : "dev", "require" : {"php" : ">=5.6.5"}, "require-dev" : {"phpunit/phpunit" : "4.5.*"}, "autoload" : {"psr-0" : {"" : "src/"}}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "license": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}}, "minimum-stability": {"type": "string"}, "require": {"type": "object", "properties": {"php": {"type": "string"}}, "required": ["php"]}, "require-dev": {"type": "object", "properties": {"phpunit/phpunit": {"type": "string"}}, "required": ["phpunit/phpunit"]}, "autoload": {"type": "object", "properties": {"psr-0": {"type": "object", "properties": {"": {"type": "string"}}, "required": [""]}}, "required": ["psr-0"]}}, "required": ["name", "description", "license", "authors", "minimum-stability", "require", "require-dev", "autoload"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "array", "items": {"type": "number"}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [-0.6255462169647217, 1.3388882875442505, 0.13169392943382263, -0.2304643839597702, 0.43897977471351624, 0.2414388805627823, -0.40605631470680237, 0.08779595792293549, 1.0316025018692017, -0.6035972237586975, 0.9877045154571533, -0.592622697353363, -0.02194898948073387, 0.03292348235845566, -0.17559191584587097, 0.4609287679195404, 1.5583782196044922, 0.4828777611255646, -1.2401179075241089, 0.7791891098022461, 1.5254547595977783, 0.5596992373466492, 0.010974494740366936, -0.3731328248977661, 0.27436235547065735, -0.41703078150749207, 0.010974494740366936, 0.537750244140625, 0.14266842603683472, 0.20851539075374603, -0.49385225772857666, 0.17559191584587097] | json_instruct | {"type": "array", "items": {"type": "number"}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"version": {"type": "string"}, "homepage": {"type": "string"}, "description": {"type": "string"}, "license": {"type": "string"}, "bin": {"type": "string"}, "url": {"type": "string"}, "hash": {"type": "string"}, "depends": {"type": "array", "items": {"type": "string"}}}, "required": ["version", "homepage", "description", "license", "bin", "url", "hash", "depends"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"version" : "0.1.0", "homepage" : "https://github.com/marcosbozzani/shinobi", "description" : "Opinionated Ninja and Make files generator for C projects", "license" : "MIT", "bin" : "shinobi.ps1", "url" : "https://github.com/marcosbozzani/shinobi/releases/download/v0.1.0/shinobi.ps1", "hash" : "7E291891D31A9C2443C475730BAF9185F3896D7E934EA422954188C040624705", "depends" : ["headsup", "gcc", "ninja"]} | json_instruct | {"type": "object", "properties": {"version": {"type": "string"}, "homepage": {"type": "string"}, "description": {"type": "string"}, "license": {"type": "string"}, "bin": {"type": "string"}, "url": {"type": "string"}, "hash": {"type": "string"}, "depends": {"type": "array", "items": {"type": "string"}}}, "required": ["version", "homepage", "description", "license", "bin", "url", "hash", "depends"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "url": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "url", "name"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"id" : 0, "url" : "http://www.espncricinfo.comundefined", "name" : ""}, {"id" : 1, "url" : "http://www.espncricinfo.com/ci/content/player/321933.html", "name" : "Dai, K (Kohu Dai, 1982- )"}, {"id" : 2, "url" : "http://www.espncricinfo.com/ci/content/player/25051.html", "name" : "Dai, MD (Mahuru Dai, 1984- )"}, {"id" : 3, "url" : "http://www.espncricinfo.com/ci/content/player/25083.html", "name" : "Dai, T (1978- )"}, {"id" : 4, "url" : "http://www.espncricinfo.com/ci/content/player/928091.html", "name" : "Dairi, J (Jack Dairi, 1997- )"}, {"id" : 5, "url" : "http://www.espncricinfo.com/ci/content/player/25066.html", "name" : "Davai, L (1985- )"}, {"id" : 6, "url" : "http://www.espncricinfo.com/ci/content/player/333933.html", "name" : "David, B (Boni David, 1978- )"}, {"id" : 7, "url" : "http://www.espncricinfo.com/ci/content/player/1181389.html", "name" : "Dawes, J (Joesph Dawes)"}, {"id" : 8, "url" : "http://www.espncricinfo.com/ci/content/player/332977.html", "name" : "Diho, J (Jonathan Diho, 1990- )"}, {"id" : 9, "url" : "http://www.espncricinfo.com/ci/content/player/302652.html", "name" : "Dikana, AV (Arua Dikana, 1989- )"}, {"id" : 10, "url" : "http://www.espncricinfo.com/ci/content/player/25050.html", "name" : "Dikana, R (Rarva Dikana, 1978- )"}, {"id" : 11, "url" : "http://www.espncricinfo.com/ci/content/player/646173.html", "name" : "Doriga, K (Kiplin Doriga, 1995- )"}, {"id" : 12, "url" : "http://www.espncricinfo.com/ci/content/player/296368.html", "name" : "Doura, FP (Frank Doura, 1981- )"}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "url": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "url", "name"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"en": {"type": "object", "properties": {"title": {"type": "string"}, "description": {"type": "string"}, "learnMoreLink": {"type": "string"}}, "required": ["title", "description", "learnMoreLink"]}}, "required": ["en"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"en" : {"title" : "Peer to peer video\nstreaming platform", "description" : "TiNG is a decentralized peer to peer borderless video streaming platform that allows viewers and content creators to reach audiences globally without the need for strong internet connectivity.The platform allows viewers to stream videos to one another, creating an open network with no limitations.\nThe more viewers using the platform, the faster the network and video streaming becomes without the need of large costly infrastructure and bottlenecks.", "learnMoreLink" : "https://foreveryting.com/"}} | json_instruct | {"type": "object", "properties": {"en": {"type": "object", "properties": {"title": {"type": "string"}, "description": {"type": "string"}, "learnMoreLink": {"type": "string"}}, "required": ["title", "description", "learnMoreLink"]}}, "required": ["en"], "$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"}, "author": {"type": "string"}, "dependencies": {"type": "object", "properties": {}, "required": []}, "keywords": {"type": "array", "items": {"type": "string"}}, "main": {"type": "string"}, "license": {"type": "string"}, "description": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}}, "required": ["name", "version", "author", "dependencies", "keywords", "main", "license", "description", "repository"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "importjs", "version" : "3.0.2", "author" : "Greg McLeod <[email protected]>", "dependencies" : {}, "keywords" : ["mcleodgaming", "import", "package", "preload", "scripts", "class", "OOP", "package", "module"], "main" : "./index", "license" : "MIT", "description" : "A port of ImportJS for node. Enables a packaging system for JavaScript classes, similar to that of Java or ActionScript 3.", "repository" : {"type" : "git", "url" : "https://github.com/cleod9/node-importjs"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "author": {"type": "string"}, "dependencies": {"type": "object", "properties": {}, "required": []}, "keywords": {"type": "array", "items": {"type": "string"}}, "main": {"type": "string"}, "license": {"type": "string"}, "description": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}}, "required": ["name", "version", "author", "dependencies", "keywords", "main", "license", "description", "repository"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"name": {"type": "string"}, "title": {"type": "string"}, "type": {"type": "string"}, "bc": {"type": "string"}, "showCondition": {"type": "array", "items": {}}, "fields": {"type": "array", "items": {"type": "object", "properties": {"title": {"type": "string"}, "key": {"type": "string"}, "type": {"type": "string"}}, "required": ["title", "key", "type"]}}, "axisFields": {"type": "array", "items": {}}, "chart": {"type": "array", "items": {}}}, "required": ["name", "title", "type", "bc", "showCondition", "fields", "axisFields", "chart"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "bcExampleList2", "title" : "\u041d\u0430 \u0442\u0430\u0431\u043b\u0438\u0446\u0435", "type" : "List", "bc" : "bcExample", "showCondition" : [], "fields" : [{"title" : "\u0422\u0435\u043a\u0441\u0442", "key" : "testInput", "type" : "input"}, {"title" : "\u041d\u0435\u0441\u043e\u0445\u0440\u0430\u043d\u044f\u0435\u043c\u044b\u0439 \u0442\u0435\u043a\u0441\u0442", "key" : "ephemeral", "type" : "input"}, {"title" : "\u0421\u043a\u0440\u044b\u0442\u043e\u0435 \u043f\u043e\u043b\u0435", "key" : "hidden", "type" : "input"}, {"title" : "\u041c\u043d\u043e\u0433\u043e\u0441\u0442\u0440\u043e\u0447\u043d\u044b\u0439 \u0442\u0435\u043a\u0441\u0442", "key" : "testText", "type" : "text"}], "axisFields" : [], "chart" : []} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "title": {"type": "string"}, "type": {"type": "string"}, "bc": {"type": "string"}, "showCondition": {"type": "array", "items": {}}, "fields": {"type": "array", "items": {"type": "object", "properties": {"title": {"type": "string"}, "key": {"type": "string"}, "type": {"type": "string"}}, "required": ["title", "key", "type"]}}, "axisFields": {"type": "array", "items": {}}, "chart": {"type": "array", "items": {}}}, "required": ["name", "title", "type", "bc", "showCondition", "fields", "axisFields", "chart"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "parameters": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "type": {"type": "string"}, "description": {"type": "string"}, "required": {"type": "boolean"}}, "required": ["name", "type", "description", "required"]}}, "accessToken": {"type": "boolean"}}, "required": ["name", "description", "parameters", "accessToken"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "modifyAppointmentStatus", "description" : "This API call is used to update the available appointment status that can be assigned to an appointment. This API call will only Update <strong>System Status & Custom Status</strong>. Use <strong>getAppointmentStatus</strong> to get all the available appointment status.", "parameters" : [{"name" : "statusId", "type" : "Integer", "description" : "The Appointment status id. Use <strong>getAppointmentStatus</strong> to get the appointment status id. This API call only accepts either <strong>System or Custom Status ID</strong>. If this parameter is empty than API will add a new appointment status with the provided parameters else the provided id will be updated with provided parameters ", "required" : false}, {"name" : "statusType", "type" : "Integer", "description" : "1 => System Status [ Can only be enabled or disabled only ]<br> 2 => Custom Status [ Can be Modifeid or enabled/disabled ]", "required" : false}, {"name" : "statusNm", "type" : "String", "description" : "Unique Name for Appointment Status.", "required" : false}, {"name" : "enableType", "type" : "Integer", "description" : "1 => Enable , 2 => Disable. Default value 1 => Enable", "required" : false}, {"name" : "statusAlias", "type" : "String", "description" : "Alias for the status.", "required" : false}], "accessToken" : true} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "parameters": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "type": {"type": "string"}, "description": {"type": "string"}, "required": {"type": "boolean"}}, "required": ["name", "type", "description", "required"]}}, "accessToken": {"type": "boolean"}}, "required": ["name", "description", "parameters", "accessToken"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "array", "items": {"type": "object", "properties": {"LogicalResourceId": {"type": "string"}, "ResourceType": {"type": "string"}}, "required": ["LogicalResourceId", "ResourceType"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"LogicalResourceId" : "MyUnsignedLambdaFunction", "ResourceType" : "AWS::Lambda::Function"}, {"LogicalResourceId" : "MyUnsignedLambdaFunctionRole", "ResourceType" : "AWS::IAM::Role"}, {"LogicalResourceId" : "MySigningProfile", "ResourceType" : "AWS::Signer::SigningProfile"}, {"LogicalResourceId" : "MySignedFunctionCodeSigningConfig", "ResourceType" : "AWS::Lambda::CodeSigningConfig"}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"LogicalResourceId": {"type": "string"}, "ResourceType": {"type": "string"}}, "required": ["LogicalResourceId", "ResourceType"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"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" : "Webcam", "definitions" : ["A video camera connected to a computer, allowing its images to be seen by Internet users."], "parts-of-speech" : "Noun"} | 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#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"nom": {"type": "string"}, "circ": {"type": "string"}, "dpt": {"type": "string"}, "inscrits": {"type": "integer"}, "abs": {"type": "integer"}, "votants": {"type": "integer"}, "blancs": {"type": "integer"}, "nuls": {"type": "integer"}, "exp": {"type": "integer"}, "res": {"type": "array", "items": {"type": "object", "properties": {"nuance": {"type": "string"}, "nom": {"type": "string"}, "voix": {"type": "integer"}}, "required": ["nuance", "nom", "voix"]}}}, "required": ["nom", "circ", "dpt", "inscrits", "abs", "votants", "blancs", "nuls", "exp", "res"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"nom" : "Bruxelles", "circ" : "4\u00e8me circonscription", "dpt" : "Fran\u00e7ais \u00e9tablis hors de France", "inscrits" : 82523, "abs" : 63303, "votants" : 19220, "blancs" : 52, "nuls" : 70, "exp" : 19098, "res" : [{"nuance" : "REM", "nom" : "M. Pieyre-Alexandre ANGLADE", "voix" : 9410}, {"nuance" : "FI", "nom" : "Mme Sophie RAUSZER", "voix" : 2485}, {"nuance" : "ECO", "nom" : "Mme Perrine LEDAN", "voix" : 2046}, {"nuance" : "LR", "nom" : "Mme Val\u00e9rie BROS", "voix" : 1685}, {"nuance" : "SOC", "nom" : "M. Philip CORDERY", "voix" : 1151}, {"nuance" : "FN", "nom" : "Mme Soraya LEMAIRE", "voix" : 654}, {"nuance" : "UDI", "nom" : "Mme Caroline LAPORTE", "voix" : 566}, {"nuance" : "DVD", "nom" : "M. Denys DHIVER", "voix" : 256}, {"nuance" : "DVD", "nom" : "Mme Muriel R\u00c9US", "voix" : 255}, {"nuance" : "DIV", "nom" : "M. Olivier RASSON", "voix" : 118}, {"nuance" : "DIV", "nom" : "M. Yves GERNIGON", "voix" : 105}, {"nuance" : "DIV", "nom" : "Mme Juliette SAUMIER", "voix" : 101}, {"nuance" : "DIV", "nom" : "Mme Claire DES MESNARDS", "voix" : 100}, {"nuance" : "DIV", "nom" : "M. Yann PEREIRA", "voix" : 55}, {"nuance" : "EXD", "nom" : "M. Philippe LANNEY", "voix" : 54}, {"nuance" : "DVG", "nom" : "M. Bertrand DE CORDIER", "voix" : 33}, {"nuance" : "RDG", "nom" : "Mme Fr\u00e9d\u00e9rique PLAISANT", "voix" : 17}, {"nuance" : "DIV", "nom" : "M. Sylvain BLEUBAR", "voix" : 7}]} | json_instruct | {"type": "object", "properties": {"nom": {"type": "string"}, "circ": {"type": "string"}, "dpt": {"type": "string"}, "inscrits": {"type": "integer"}, "abs": {"type": "integer"}, "votants": {"type": "integer"}, "blancs": {"type": "integer"}, "nuls": {"type": "integer"}, "exp": {"type": "integer"}, "res": {"type": "array", "items": {"type": "object", "properties": {"nuance": {"type": "string"}, "nom": {"type": "string"}, "voix": {"type": "integer"}}, "required": ["nuance", "nom", "voix"]}}}, "required": ["nom", "circ", "dpt", "inscrits", "abs", "votants", "blancs", "nuls", "exp", "res"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"}
| ["calculus", "ember-build", "ember-mocha", "ember-qunit", "ember-simple-auth", "ember-source", "es6-promise", "htmlbars", "quadrotor", "rsvp"] | json_instruct | {"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "object", "properties": {"is_lock_vulnerable": {"type": "boolean"}, "is_prodigal_vulnerable": {"type": "boolean"}, "is_suicidal_vulnerable": {"type": "boolean"}}, "required": ["is_lock_vulnerable", "is_prodigal_vulnerable", "is_suicidal_vulnerable"]}}, "required": ["contract", "tool", "start", "end", "duration", "analysis"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"contract" : "0x35d01fc1ee086586aedeab42160219eb20c07d0b", "tool" : "maian", "start" : 1565315500.5418432, "end" : 1565315949.9604406, "duration" : 449.4185974597931, "analysis" : {"is_lock_vulnerable" : false, "is_prodigal_vulnerable" : false, "is_suicidal_vulnerable" : false}} | json_instruct | {"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "object", "properties": {"is_lock_vulnerable": {"type": "boolean"}, "is_prodigal_vulnerable": {"type": "boolean"}, "is_suicidal_vulnerable": {"type": "boolean"}}, "required": ["is_lock_vulnerable", "is_prodigal_vulnerable", "is_suicidal_vulnerable"]}}, "required": ["contract", "tool", "start", "end", "duration", "analysis"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"key": {"type": "string"}, "type": {"type": "string"}, "icon": {"type": "string"}, "universal": {"type": "boolean"}, "label": {"type": "string"}}, "required": ["key", "type", "icon", "universal", "label"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"key" : "phone", "type" : "tel", "icon" : "telephone", "universal" : true, "label" : "Phone"} | json_instruct | {"type": "object", "properties": {"key": {"type": "string"}, "type": {"type": "string"}, "icon": {"type": "string"}, "universal": {"type": "boolean"}, "label": {"type": "string"}}, "required": ["key", "type", "icon", "universal", "label"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"title": {"type": "string"}, "author": {"type": "string"}, "musicType": {"type": "string"}, "musicNo": {"type": "string"}}, "required": ["title", "author", "musicType", "musicNo"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"title" : "The Portrait-\u6cf0\u5766\u5c3c\u514b\u53f7\u7eaf\u94a2\u7434\u66f2", "author" : "James Horner", "musicType" : "\u7ecf\u5178", "musicNo" : "0001827"} | json_instruct | {"type": "object", "properties": {"title": {"type": "string"}, "author": {"type": "string"}, "musicType": {"type": "string"}, "musicNo": {"type": "string"}}, "required": ["title", "author", "musicType", "musicNo"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"id": {"type": "string"}, "symbol": {"type": "string"}, "name": {"type": "string"}, "platforms": {"type": "object", "properties": {"ethereum": {"type": "string"}}, "required": ["ethereum"]}, "hashing_algorithm": {"type": "null"}, "categories": {"type": "array", "items": {}}, "description": {"type": "object", "properties": {"en": {"type": "string"}}, "required": ["en"]}, "country_origin": {"type": "string"}, "genesis_date": {"type": "null"}, "contract_address": {"type": "string"}, "url": {"type": "string"}, "explorers": {"type": "array", "items": {"type": "string"}}, "twitter": {"type": "string"}}, "required": ["id", "symbol", "name", "platforms", "hashing_algorithm", "categories", "description", "country_origin", "genesis_date", "contract_address", "url", "explorers", "twitter"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "green-flow", "symbol" : "grc", "name" : "Green Flow", "platforms" : {"ethereum" : "0x46d886887b6908183032c75dee1b731b26d653c6"}, "hashing_algorithm" : null, "categories" : [], "description" : {"en" : "Green Flow utilizes a blockchain network to generate cryptocurrency fueled by eco-friendly kinetic energy of caloric expenditure. This revolutionary technology allows users to earn \u201cGreencoin\u201d while exercising. Green flow procures a mutual symbiosis between health and wealth. The electricity generated by Green Flow enabled devices and fitness data is harvested to power the Green Flow Blockchain which directly creates a source of crypto-income."}, "country_origin" : "", "genesis_date" : null, "contract_address" : "0x46d886887b6908183032c75dee1b731b26d653c6", "url" : "https://greenflows.com/", "explorers" : ["https://etherscan.io/token/0x46d886887b6908183032c75dee1b731b26d653c6", "https://ethplorer.io/address/0x46d886887b6908183032c75dee1b731b26d653c6"], "twitter" : "greenflowstech"} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "symbol": {"type": "string"}, "name": {"type": "string"}, "platforms": {"type": "object", "properties": {"ethereum": {"type": "string"}}, "required": ["ethereum"]}, "hashing_algorithm": {"type": "null"}, "categories": {"type": "array", "items": {}}, "description": {"type": "object", "properties": {"en": {"type": "string"}}, "required": ["en"]}, "country_origin": {"type": "string"}, "genesis_date": {"type": "null"}, "contract_address": {"type": "string"}, "url": {"type": "string"}, "explorers": {"type": "array", "items": {"type": "string"}}, "twitter": {"type": "string"}}, "required": ["id", "symbol", "name", "platforms", "hashing_algorithm", "categories", "description", "country_origin", "genesis_date", "contract_address", "url", "explorers", "twitter"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"name": {"type": "string"}, "symbol": {"type": "string"}, "address": {"type": "string"}, "decimals": {"type": "integer"}, "dharmaVerificationStatus": {"type": "string"}}, "required": ["name", "symbol", "address", "decimals", "dharmaVerificationStatus"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "Crazy Game Token", "symbol" : "CRGT", "address" : "0x134c51F2889851493dFf5A86Cb4D192Ee0389F73", "decimals" : 18, "dharmaVerificationStatus" : "UNVERIFIED"} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "symbol": {"type": "string"}, "address": {"type": "string"}, "decimals": {"type": "integer"}, "dharmaVerificationStatus": {"type": "string"}}, "required": ["name", "symbol", "address", "decimals", "dharmaVerificationStatus"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"order": {"type": "array", "items": {"type": "string"}}}, "required": ["order"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"order" : ["https://vc.example.com/?queryID=7306f1f744a781480c521902a1a1dbf5f1d01e7ea21daf483e7668817e58597a", "https://vc.example.com/?queryID=AB06f1f744a781480c521902a1a1dbf5f1d01e7ea21daf483e7668817e58597a"]} | json_instruct | {"type": "object", "properties": {"order": {"type": "array", "items": {"type": "string"}}}, "required": ["order"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"@metadata": {"type": "object", "properties": {"authors": {"type": "array", "items": {"type": "string"}}}, "required": ["authors"]}, "wikieditor-toolbar-dialogs-preference": {"type": "string"}, "wikieditor-toolbar-tool-reference-example": {"type": "string"}, "wikieditor-toolbar-tool-big": {"type": "string"}, "wikieditor-toolbar-tool-big-example": {"type": "string"}, "wikieditor-toolbar-tool-newline": {"type": "string"}, "wikieditor-toolbar-tool-replace-case": {"type": "string"}, "wikieditor-toolbar-tool-replace-close": {"type": "string"}}, "required": ["@metadata", "wikieditor-toolbar-dialogs-preference", "wikieditor-toolbar-tool-reference-example", "wikieditor-toolbar-tool-big", "wikieditor-toolbar-tool-big-example", "wikieditor-toolbar-tool-newline", "wikieditor-toolbar-tool-replace-case", "wikieditor-toolbar-tool-replace-close"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"@metadata" : {"authors" : ["Filzstift", "Geitost"]}, "wikieditor-toolbar-dialogs-preference" : "Assistenten zum Einf\u00fcgen von Links und Tabellen sowie die Funktion \u00abSuchen und Ersetzen\u00bb aktivieren", "wikieditor-toolbar-tool-reference-example" : "Fussnotentext hier einf\u00fcgen", "wikieditor-toolbar-tool-big" : "Gross", "wikieditor-toolbar-tool-big-example" : "Grosser Text", "wikieditor-toolbar-tool-newline" : "Zeilenumbruch erzwingen (nicht im Fliesstext verwenden)", "wikieditor-toolbar-tool-replace-case" : "Gross- und Kleinschreibung beachten", "wikieditor-toolbar-tool-replace-close" : "Schliessen"} | json_instruct | {"type": "object", "properties": {"@metadata": {"type": "object", "properties": {"authors": {"type": "array", "items": {"type": "string"}}}, "required": ["authors"]}, "wikieditor-toolbar-dialogs-preference": {"type": "string"}, "wikieditor-toolbar-tool-reference-example": {"type": "string"}, "wikieditor-toolbar-tool-big": {"type": "string"}, "wikieditor-toolbar-tool-big-example": {"type": "string"}, "wikieditor-toolbar-tool-newline": {"type": "string"}, "wikieditor-toolbar-tool-replace-case": {"type": "string"}, "wikieditor-toolbar-tool-replace-close": {"type": "string"}}, "required": ["@metadata", "wikieditor-toolbar-dialogs-preference", "wikieditor-toolbar-tool-reference-example", "wikieditor-toolbar-tool-big", "wikieditor-toolbar-tool-big-example", "wikieditor-toolbar-tool-newline", "wikieditor-toolbar-tool-replace-case", "wikieditor-toolbar-tool-replace-close"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"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/flat_clock", "textures" : {"layer0" : "item/clock/clock_244"}} | 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#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"build": {"type": "object", "properties": {"arduino": {"type": "object", "properties": {"ldscript": {"type": "string"}}, "required": ["ldscript"]}, "core": {"type": "string"}, "extra_flags": {"type": "string"}, "f_cpu": {"type": "string"}, "mcu": {"type": "string"}, "variant": {"type": "string"}}, "required": ["arduino", "core", "extra_flags", "f_cpu", "mcu", "variant"]}, "frameworks": {"type": "array", "items": {"type": "string"}}, "name": {"type": "string"}, "upload": {"type": "object", "properties": {"maximum_ram_size": {"type": "integer"}, "maximum_size": {"type": "integer"}, "protocol": {"type": "string"}, "require_upload_port": {"type": "boolean"}, "speed": {"type": "integer"}}, "required": ["maximum_ram_size", "maximum_size", "protocol", "require_upload_port", "speed"]}, "url": {"type": "string"}, "vendor": {"type": "string"}}, "required": ["build", "frameworks", "name", "upload", "url", "vendor"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"build" : {"arduino" : {"ldscript" : "MZ-application-32MZ2048ECX.ld"}, "core" : "pic32", "extra_flags" : "-D_BOARD_PIC32MZ_FLIP_N_CLICK_ -DPIO_ARDUINO_ENABLE_USB_SERIAL", "f_cpu" : "252000000L", "mcu" : "32MZ2048EFH100", "variant" : "FlipNClick_MZ"}, "frameworks" : ["arduino"], "name" : "MikroElektronika Flip N Click MZ", "upload" : {"maximum_ram_size" : 524288, "maximum_size" : 2080768, "protocol" : "stk500v2", "require_upload_port" : true, "speed" : 115200}, "url" : "https://shop.mikroe.com/flipclick-pic32mz", "vendor" : "MikroElektronika"} | json_instruct | {"type": "object", "properties": {"build": {"type": "object", "properties": {"arduino": {"type": "object", "properties": {"ldscript": {"type": "string"}}, "required": ["ldscript"]}, "core": {"type": "string"}, "extra_flags": {"type": "string"}, "f_cpu": {"type": "string"}, "mcu": {"type": "string"}, "variant": {"type": "string"}}, "required": ["arduino", "core", "extra_flags", "f_cpu", "mcu", "variant"]}, "frameworks": {"type": "array", "items": {"type": "string"}}, "name": {"type": "string"}, "upload": {"type": "object", "properties": {"maximum_ram_size": {"type": "integer"}, "maximum_size": {"type": "integer"}, "protocol": {"type": "string"}, "require_upload_port": {"type": "boolean"}, "speed": {"type": "integer"}}, "required": ["maximum_ram_size", "maximum_size", "protocol", "require_upload_port", "speed"]}, "url": {"type": "string"}, "vendor": {"type": "string"}}, "required": ["build", "frameworks", "name", "upload", "url", "vendor"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"changes": {"type": "array", "items": {"type": "object", "properties": {"packageName": {"type": "string"}, "comment": {"type": "string"}, "type": {"type": "string"}}, "required": ["packageName", "comment", "type"]}}, "packageName": {"type": "string"}, "email": {"type": "string"}}, "required": ["changes", "packageName", "email"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"changes" : [{"packageName" : "@robotlegsjs/pixi", "comment" : "Update [prettier](https://www.npmjs.com/package/prettier) to version **2.3.2** (see [25](https://github.com/RobotlegsJS/RobotlegsJS-Framework/pull/25))", "type" : "patch"}], "packageName" : "@robotlegsjs/pixi", "email" : "[email protected]"} | json_instruct | {"type": "object", "properties": {"changes": {"type": "array", "items": {"type": "object", "properties": {"packageName": {"type": "string"}, "comment": {"type": "string"}, "type": {"type": "string"}}, "required": ["packageName", "comment", "type"]}}, "packageName": {"type": "string"}, "email": {"type": "string"}}, "required": ["changes", "packageName", "email"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"Name": {"type": "string"}, "Description": {"type": "string"}, "Author": {"type": "string"}, "Version": {"type": "string"}}, "required": ["Name", "Description", "Author", "Version"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"Name" : "Crafter (JA)", "Description" : "Anan", "Author" : "zazizu", "Version" : "0.0.1"} | json_instruct | {"type": "object", "properties": {"Name": {"type": "string"}, "Description": {"type": "string"}, "Author": {"type": "string"}, "Version": {"type": "string"}}, "required": ["Name", "Description", "Author", "Version"], "$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"}, "url": {"type": "string"}}, "required": ["name", "description", "url"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "Final Fantasy XI", "description" : "An MMO game.", "url" : "https://en.wikipedia.org/wiki/Final_Fantasy_XI"} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "url": {"type": "string"}}, "required": ["name", "description", "url"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "array", "items": {"type": "object", "properties": {"DeniedAlternatives": {"type": "array", "items": {}}, "Files": {"type": "object", "properties": {"quests/tech/jump/longjump4.questtemplate": {"type": "array", "items": {"type": "string"}}}, "required": ["quests/tech/jump/longjump4.questtemplate"]}, "Texts": {"type": "object", "properties": {"Chs": {"type": "string"}, "Eng": {"type": "string"}}, "required": ["Chs", "Eng"]}}, "required": ["DeniedAlternatives", "Files", "Texts"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"DeniedAlternatives" : [], "Files" : {"quests/tech/jump/longjump4.questtemplate" : ["/completionText"]}, "Texts" : {"Chs" : "\u4f3c\u4e4e\u9ad8\u5f97\u8fde\u6708\u4eae\u90fd\u53ef\u4ee5\u78b0\u5230\uff01", "Eng" : "As jumpy as it gets!"}}, {"DeniedAlternatives" : [], "Files" : {"quests/tech/jump/longjump4.questtemplate" : ["/text"]}, "Texts" : {"Chs" : "\u8fd9\u5c31\u662f\u6d6e\u7a7a\u8df3\u7684\u6781\u81f4\uff01", "Eng" : "The ultimate Flutter Jump!"}}, {"DeniedAlternatives" : [], "Files" : {"quests/tech/jump/longjump4.questtemplate" : ["/title"]}, "Texts" : {"Chs" : "\u7ec8\u6781\u6d6e\u7a7a\uff01", "Eng" : "Ultra Flutter!"}}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"DeniedAlternatives": {"type": "array", "items": {}}, "Files": {"type": "object", "properties": {"quests/tech/jump/longjump4.questtemplate": {"type": "array", "items": {"type": "string"}}}, "required": ["quests/tech/jump/longjump4.questtemplate"]}, "Texts": {"type": "object", "properties": {"Chs": {"type": "string"}, "Eng": {"type": "string"}}, "required": ["Chs", "Eng"]}}, "required": ["DeniedAlternatives", "Files", "Texts"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"id": {"type": "string"}, "symbol": {"type": "string"}, "name": {"type": "string"}, "platforms": {"type": "object", "properties": {"binance-smart-chain": {"type": "string"}}, "required": ["binance-smart-chain"]}, "hashing_algorithm": {"type": "null"}, "categories": {"type": "array", "items": {}}, "description": {"type": "object", "properties": {"en": {"type": "string"}}, "required": ["en"]}, "country_origin": {"type": "string"}, "genesis_date": {"type": "null"}, "contract_address": {"type": "string"}, "url": {"type": "string"}, "explorers": {"type": "array", "items": {"type": "string"}}, "twitter": {"type": "string"}, "telegram": {"type": "string"}, "reddit": {"type": "string"}}, "required": ["id", "symbol", "name", "platforms", "hashing_algorithm", "categories", "description", "country_origin", "genesis_date", "contract_address", "url", "explorers", "twitter", "telegram", "reddit"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "vention", "symbol" : "vention", "name" : "Vention", "platforms" : {"binance-smart-chain" : "0x2f053e33bd590830858161d42c67e9e8a9390019"}, "hashing_algorithm" : null, "categories" : [], "description" : {"en" : "Vention is an ERC20 token on the Binance Smart Chain that would fuel the Vention Ecosystem. Vention NFT is all about valuable and collectible, gaining value and fame as well as protection of undervalued talents and skills."}, "country_origin" : "PH", "genesis_date" : null, "contract_address" : "0x2f053e33bd590830858161d42c67e9e8a9390019", "url" : "https://vention.app/", "explorers" : ["https://bscscan.com/token/0x2f053e33bd590830858161d42c67e9e8a9390019"], "twitter" : "ventionapp", "telegram" : "ventionapp", "reddit" : "Vention/"} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "symbol": {"type": "string"}, "name": {"type": "string"}, "platforms": {"type": "object", "properties": {"binance-smart-chain": {"type": "string"}}, "required": ["binance-smart-chain"]}, "hashing_algorithm": {"type": "null"}, "categories": {"type": "array", "items": {}}, "description": {"type": "object", "properties": {"en": {"type": "string"}}, "required": ["en"]}, "country_origin": {"type": "string"}, "genesis_date": {"type": "null"}, "contract_address": {"type": "string"}, "url": {"type": "string"}, "explorers": {"type": "array", "items": {"type": "string"}}, "twitter": {"type": "string"}, "telegram": {"type": "string"}, "reddit": {"type": "string"}}, "required": ["id", "symbol", "name", "platforms", "hashing_algorithm", "categories", "description", "country_origin", "genesis_date", "contract_address", "url", "explorers", "twitter", "telegram", "reddit"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "dependencies": {"type": "object", "properties": {"@types/angular": {"type": "string"}, "@types/jquery": {"type": "string"}, "@types/jqueryui": {"type": "string"}, "@types/react": {"type": "string"}, "@types/react-dom": {"type": "string"}, "angular": {"type": "string"}, "jquery": {"type": "string"}, "jqueryui": {"type": "string"}, "react": {"type": "string"}, "react-dom": {"type": "string"}, "ts-loader": {"type": "string"}}, "required": ["@types/angular", "@types/jquery", "@types/jqueryui", "@types/react", "@types/react-dom", "angular", "jquery", "jqueryui", "react", "react-dom", "ts-loader"]}, "devDependencies": {"type": "object", "properties": {"awesome-typescript-loader": {"type": "string"}, "source-map-loader": {"type": "string"}, "typescript": {"type": "string"}}, "required": ["awesome-typescript-loader", "source-map-loader", "typescript"]}}, "required": ["name", "version", "description", "main", "scripts", "repository", "author", "license", "bugs", "homepage", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "src", "version" : "1.0.0", "description" : "", "main" : "index.js", "scripts" : {"test" : "echo \"Error: no test specified\" && exit 1"}, "repository" : {"type" : "git", "url" : "git+https://github.com/LiquidLemon/ctf-info.git"}, "author" : "", "license" : "ISC", "bugs" : {"url" : "https://github.com/LiquidLemon/ctf-info/issues"}, "homepage" : "https://github.com/LiquidLemon/ctf-info#readme", "dependencies" : {"@types/angular" : "^1.6.39", "@types/jquery" : "^2.0.47", "@types/jqueryui" : "^1.11.37", "@types/react" : "^16.0.31", "@types/react-dom" : "^16.0.3", "angular" : "^1.6.6", "jquery" : "^2.2.4", "jqueryui" : "^1.11.1", "react" : "^16.2.0", "react-dom" : "^16.2.0", "ts-loader" : "^3.1.1"}, "devDependencies" : {"awesome-typescript-loader" : "^3.4.1", "source-map-loader" : "^0.2.3", "typescript" : "^2.6.2"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "dependencies": {"type": "object", "properties": {"@types/angular": {"type": "string"}, "@types/jquery": {"type": "string"}, "@types/jqueryui": {"type": "string"}, "@types/react": {"type": "string"}, "@types/react-dom": {"type": "string"}, "angular": {"type": "string"}, "jquery": {"type": "string"}, "jqueryui": {"type": "string"}, "react": {"type": "string"}, "react-dom": {"type": "string"}, "ts-loader": {"type": "string"}}, "required": ["@types/angular", "@types/jquery", "@types/jqueryui", "@types/react", "@types/react-dom", "angular", "jquery", "jqueryui", "react", "react-dom", "ts-loader"]}, "devDependencies": {"type": "object", "properties": {"awesome-typescript-loader": {"type": "string"}, "source-map-loader": {"type": "string"}, "typescript": {"type": "string"}}, "required": ["awesome-typescript-loader", "source-map-loader", "typescript"]}}, "required": ["name", "version", "description", "main", "scripts", "repository", "author", "license", "bugs", "homepage", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"author": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "name"]}, "date": {"type": "object", "properties": {"day": {"type": "integer"}, "full": {"type": "integer"}, "month": {"type": "integer"}, "week": {"type": "integer"}}, "required": ["day", "full", "month", "week"]}, "id": {"type": "string"}, "misc": {"type": "object", "properties": {"postHint": {"type": "string"}}, "required": ["postHint"]}, "picture": {"type": "object", "properties": {"filesize": {"type": "integer"}, "fullUrl": {"type": "string"}, "hash": {"type": "string"}, "height": {"type": "integer"}, "lqip": {"type": "string"}, "thumbnailUrl": {"type": "string"}, "url": {"type": "string"}, "width": {"type": "integer"}}, "required": ["filesize", "fullUrl", "hash", "height", "lqip", "thumbnailUrl", "url", "width"]}, "score": {"type": "object", "properties": {"comments": {"type": "integer"}, "downs": {"type": "integer"}, "isCurated": {"type": "boolean"}, "ratio": {"type": "number"}, "ups": {"type": "integer"}, "value": {"type": "integer"}}, "required": ["comments", "downs", "isCurated", "ratio", "ups", "value"]}, "subreddit": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "name"]}, "tags": {"type": "array", "items": {"type": "string"}}, "title": {"type": "string"}, "url": {"type": "string"}}, "required": ["author", "date", "id", "misc", "picture", "score", "subreddit", "tags", "title", "url"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"author" : {"id" : "t2_7v9vbiax", "name" : "MagicalGeographic"}, "date" : {"day" : 1610236800, "full" : 1610301717, "month" : 1609459200, "week" : 1610236800}, "id" : "t3_kujc6i", "misc" : {"postHint" : "hosted:video"}, "picture" : {"filesize" : 65912, "fullUrl" : "https://external-preview.redd.it/6y9uf1QTol2PnXSBRRquRu7AyblY8COX6hdxj_CGE7Q.png?format=pjpg&auto=webp&s=dac01cae1e8f549a1d60c87397d69cd165095019", "hash" : "ddbb82692d", "height" : 360, "lqip" : "data:image/png;base64,/9j/2wBDAAYEBQYFBAYGBQYHBwYIChAKCgkJChQODwwQFxQYGBcUFhYaHSUfGhsjHBYWICwgIyYnKSopGR8tMC0oMCUoKSj/2wBDAQcHBwoIChMKChMoGhYaKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCj/wAARCAAJABADASIAAhEBAxEB/8QAFgABAQEAAAAAAAAAAAAAAAAABgIH/8QAKBAAAQIEAQ0AAAAAAAAAAAAAAgEDAAQFEXIGEhMhIjE0NUFRcbGy/8QAFQEBAQAAAAAAAAAAAAAAAAAAAwT/xAAXEQEBAQEAAAAAAAAAAAAAAAABACEi/9oADAMBAAIRAxEAPwDF6YEsoOiy0cyBWEs5m6JbdrTxE1IWtCQObMsrZKVu/SE+SHBOYk+YIT3IZjEntIjTqccv/9k=", "thumbnailUrl" : "https://b.thumbs.redditmedia.com/yxiaHkY7yRWtAGt6sDCjjMgxqylfwXSUSXnV6uhniUw.jpg", "url" : "https://external-preview.redd.it/6y9uf1QTol2PnXSBRRquRu7AyblY8COX6hdxj_CGE7Q.png?width=640&crop=smart&format=pjpg&auto=webp&s=a26ab2bc19bcfa88a0d7d3b36028d5d1d30c519d", "width" : 640}, "score" : {"comments" : 1, "downs" : 0, "isCurated" : false, "ratio" : 0.75, "ups" : 2, "value" : 2}, "subreddit" : {"id" : "t5_3isai", "name" : "dndmaps"}, "tags" : ["Building"], "title" : "I hope you guys like Hidden Temples and Goats! FREE 4K Animated Map download in the comments!", "url" : "https://www.reddit.com/r/dndmaps/comments/kujc6i/oc_i_hope_you_guys_like_hidden_temples_and_goats/"} | json_instruct | {"type": "object", "properties": {"author": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "name"]}, "date": {"type": "object", "properties": {"day": {"type": "integer"}, "full": {"type": "integer"}, "month": {"type": "integer"}, "week": {"type": "integer"}}, "required": ["day", "full", "month", "week"]}, "id": {"type": "string"}, "misc": {"type": "object", "properties": {"postHint": {"type": "string"}}, "required": ["postHint"]}, "picture": {"type": "object", "properties": {"filesize": {"type": "integer"}, "fullUrl": {"type": "string"}, "hash": {"type": "string"}, "height": {"type": "integer"}, "lqip": {"type": "string"}, "thumbnailUrl": {"type": "string"}, "url": {"type": "string"}, "width": {"type": "integer"}}, "required": ["filesize", "fullUrl", "hash", "height", "lqip", "thumbnailUrl", "url", "width"]}, "score": {"type": "object", "properties": {"comments": {"type": "integer"}, "downs": {"type": "integer"}, "isCurated": {"type": "boolean"}, "ratio": {"type": "number"}, "ups": {"type": "integer"}, "value": {"type": "integer"}}, "required": ["comments", "downs", "isCurated", "ratio", "ups", "value"]}, "subreddit": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "name"]}, "tags": {"type": "array", "items": {"type": "string"}}, "title": {"type": "string"}, "url": {"type": "string"}}, "required": ["author", "date", "id", "misc", "picture", "score", "subreddit", "tags", "title", "url"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"manufacturer": {"type": "string"}, "devices": {"type": "array", "items": {"type": "object", "properties": {"manufacturer": {"type": "string"}, "market_name": {"type": "string"}, "codename": {"type": "string"}, "model": {"type": "string"}}, "required": ["manufacturer", "market_name", "codename", "model"]}}}, "required": ["manufacturer", "devices"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"manufacturer" : "Logic Mobility", "devices" : [{"manufacturer" : "", "market_name" : "LOGIC_L5D", "codename" : "LOGIC_L5D", "model" : "LOGIC_L5D"}, {"manufacturer" : "", "market_name" : "T7_plus", "codename" : "T7_plus", "model" : "T7_plus"}, {"manufacturer" : "", "market_name" : "X4 Plus", "codename" : "X4", "model" : "Logic X4 Plus"}, {"manufacturer" : "", "market_name" : "X5A", "codename" : "LOGIC_X5A", "model" : "LOGIC X5A"}]} | json_instruct | {"type": "object", "properties": {"manufacturer": {"type": "string"}, "devices": {"type": "array", "items": {"type": "object", "properties": {"manufacturer": {"type": "string"}, "market_name": {"type": "string"}, "codename": {"type": "string"}, "model": {"type": "string"}}, "required": ["manufacturer", "market_name", "codename", "model"]}}}, "required": ["manufacturer", "devices"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"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-p522-q7r6-w9c7", "modified" : "2022-05-01T02:21:04Z", "published" : "2022-05-01T02:21:04Z", "aliases" : ["CVE-2005-3780"], "details" : "Multiple buffer overflows in IPUpdate 1.1 might allow attackers to execute arbitrary code via (1) memmcat in the memm module or (2) certain TSIG format records.", "severity" : [], "affected" : [], "references" : [{"type" : "ADVISORY", "url" : "https://nvd.nist.gov/vuln/detail/CVE-2005-3780"}, {"type" : "WEB", "url" : "http://secunia.com/advisories/17681"}, {"type" : "WEB", "url" : "http://sourceforge.net/project/shownotes.php?release_id=372666"}, {"type" : "WEB", "url" : "http://www.osvdb.org/21036"}, {"type" : "WEB", "url" : "http://www.osvdb.org/21037"}, {"type" : "WEB", "url" : "http://www.securityfocus.com/bid/15534"}, {"type" : "WEB", "url" : "http://www.vupen.com/english/advisories/2005/2523"}], "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#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"id": {"type": "integer"}, "source": {"type": "string"}, "verse_id": {"type": "integer"}, "verse_count": {"type": "integer"}, "reference": {"type": "string"}, "title": {"type": "string"}, "html": {"type": "string"}, "audit": {"type": "null"}}, "required": ["id", "source", "verse_id", "verse_count", "reference", "title", "html", "audit"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : 15216, "source" : "parry", "verse_id" : 18200, "verse_count" : 1, "reference" : "29:6", "title" : "", "html" : " <i>visited of the Lord of Hosts. </i>The Lord controls the nations of the earth, and his judgments come upon them for their role in destroying Jerusalem and her inhabitants.</p> <p><i>thunder/earthquake/great noise/storm/tempest/devouring fire. </i>The<i> </i>judgments of God were sent when the Nephite nation was destroyed (<a class=\"ref\">2 Ne. 26:4-6</a>). They will occur again \"in the last days, or in the days of the Gentiles,\" when \"all the nations of the Gentiles and also the Jews…will be drunken with iniquity and all manner of abominations\u2014and when that day shall come they shall be visited of the Lord of Hosts, with thunder and with earthquake, and with a great noise, and with storm, and with tempest, and with the flame of devouring fire\" (<a class=\"ref\">2 Ne. 27:1-2</a>). These judgments will come upon the wicked after they have rejected the testimonies of the Church's prophets and missionaries (<a class=\"ref\">D&C 43:24-25; 88:88</a>). </p> ", "audit" : null} | json_instruct | {"type": "object", "properties": {"id": {"type": "integer"}, "source": {"type": "string"}, "verse_id": {"type": "integer"}, "verse_count": {"type": "integer"}, "reference": {"type": "string"}, "title": {"type": "string"}, "html": {"type": "string"}, "audit": {"type": "null"}}, "required": ["id", "source", "verse_id", "verse_count", "reference", "title", "html", "audit"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"$schema": {"type": "string"}, "type": {"type": "string"}, "description": {"type": "string"}, "items": {"type": "object", "properties": {"$ref": {"type": "string"}}, "required": ["$ref"]}}, "required": ["$schema", "type", "description", "items"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"$schema" : "http://json-schema.org/draft-04/schema", "type" : "array", "description" : "Bulk adding of triples", "items" : {"$ref" : "triple.schema.json"}} | json_instruct | {"type": "object", "properties": {"$schema": {"type": "string"}, "type": {"type": "string"}, "description": {"type": "string"}, "items": {"type": "object", "properties": {"$ref": {"type": "string"}}, "required": ["$ref"]}}, "required": ["$schema", "type", "description", "items"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"name": {"type": "string"}, "symbol": {"type": "string"}, "logoURI": {"type": "string"}, "decimals": {"type": "integer"}, "address": {"type": "string"}, "chainId": {"type": "integer"}, "extensions": {"type": "object", "properties": {"website": {"type": "string"}, "twitter": {"type": "string"}}, "required": ["website", "twitter"]}}, "required": ["name", "symbol", "logoURI", "decimals", "address", "chainId", "extensions"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "Bongheads White List Token", "symbol" : "BHWL", "logoURI" : "https://raw.githubusercontent.com/Kumia115/nft-landing-page/main/images/x-icon/android-chrome-512x512.png", "decimals" : 0, "address" : "T3Z3238ujJZsaJE3jh31Df5YPnd6wJbHzQ7XdfoMVnt", "chainId" : 101, "extensions" : {"website" : "https://bongheads.io/", "twitter" : "https://twitter.com/BongHeadsNFT"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "symbol": {"type": "string"}, "logoURI": {"type": "string"}, "decimals": {"type": "integer"}, "address": {"type": "string"}, "chainId": {"type": "integer"}, "extensions": {"type": "object", "properties": {"website": {"type": "string"}, "twitter": {"type": "string"}}, "required": ["website", "twitter"]}}, "required": ["name", "symbol", "logoURI", "decimals", "address", "chainId", "extensions"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"nom": {"type": "string"}, "dpt": {"type": "string"}, "inscrits": {"type": "integer"}, "abs": {"type": "integer"}, "votants": {"type": "integer"}, "blancs": {"type": "integer"}, "nuls": {"type": "integer"}, "exp": {"type": "integer"}, "res": {"type": "array", "items": {"type": "object", "properties": {"panneau": {"type": "string"}, "voix": {"type": "integer"}}, "required": ["panneau", "voix"]}}}, "required": ["nom", "dpt", "inscrits", "abs", "votants", "blancs", "nuls", "exp", "res"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"nom" : "Saint-Bris-le-Vineux", "dpt" : "Yonne", "inscrits" : 833, "abs" : 167, "votants" : 666, "blancs" : 72, "nuls" : 16, "exp" : 578, "res" : [{"panneau" : "1", "voix" : 296}, {"panneau" : "2", "voix" : 282}]} | json_instruct | {"type": "object", "properties": {"nom": {"type": "string"}, "dpt": {"type": "string"}, "inscrits": {"type": "integer"}, "abs": {"type": "integer"}, "votants": {"type": "integer"}, "blancs": {"type": "integer"}, "nuls": {"type": "integer"}, "exp": {"type": "integer"}, "res": {"type": "array", "items": {"type": "object", "properties": {"panneau": {"type": "string"}, "voix": {"type": "integer"}}, "required": ["panneau", "voix"]}}}, "required": ["nom", "dpt", "inscrits", "abs", "votants", "blancs", "nuls", "exp", "res"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"stockExchanges": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "aboutSE": {"type": "string"}, "address": {"type": "string"}}, "required": ["id", "name", "aboutSE", "address"]}}}, "required": ["stockExchanges"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"stockExchanges" : [{"id" : 100, "name" : "BSE", "aboutSE" : "asdfgh", "address" : "asdfgh"}, {"id" : 101, "name" : "NSE", "aboutSE" : "asdfgh", "address" : "asdfgh"}, {"id" : 102, "name" : "NYSE", "aboutSE" : "asdfgh", "address" : "asdfgh"}, {"id" : 103, "name" : "NASDAQ", "aboutSE" : "asdfgh", "address" : "asdfgh"}]} | json_instruct | {"type": "object", "properties": {"stockExchanges": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "aboutSE": {"type": "string"}, "address": {"type": "string"}}, "required": ["id", "name", "aboutSE", "address"]}}}, "required": ["stockExchanges"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"nom": {"type": "string"}, "dpt": {"type": "string"}, "inscrits": {"type": "integer"}, "abs": {"type": "integer"}, "votants": {"type": "integer"}, "blancs": {"type": "integer"}, "nuls": {"type": "integer"}, "exp": {"type": "integer"}, "res": {"type": "array", "items": {"type": "object", "properties": {"panneau": {"type": "string"}, "voix": {"type": "integer"}}, "required": ["panneau", "voix"]}}}, "required": ["nom", "dpt", "inscrits", "abs", "votants", "blancs", "nuls", "exp", "res"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"nom" : "Servance-Miellin", "dpt" : "Haute-Sa\u00f4ne", "inscrits" : 772, "abs" : 159, "votants" : 613, "blancs" : 34, "nuls" : 40, "exp" : 539, "res" : [{"panneau" : "2", "voix" : 272}, {"panneau" : "1", "voix" : 267}]} | json_instruct | {"type": "object", "properties": {"nom": {"type": "string"}, "dpt": {"type": "string"}, "inscrits": {"type": "integer"}, "abs": {"type": "integer"}, "votants": {"type": "integer"}, "blancs": {"type": "integer"}, "nuls": {"type": "integer"}, "exp": {"type": "integer"}, "res": {"type": "array", "items": {"type": "object", "properties": {"panneau": {"type": "string"}, "voix": {"type": "integer"}}, "required": ["panneau", "voix"]}}}, "required": ["nom", "dpt", "inscrits", "abs", "votants", "blancs", "nuls", "exp", "res"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"resolution": {"type": "string"}, "frameRate": {"type": "string"}, "codec": {"type": "string"}, "bitrate": {"type": "string"}}, "required": ["resolution", "frameRate", "codec", "bitrate"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"resolution" : "1920X1080", "frameRate" : "30", "codec" : "H264", "bitrate" : "4000"} | json_instruct | {"type": "object", "properties": {"resolution": {"type": "string"}, "frameRate": {"type": "string"}, "codec": {"type": "string"}, "bitrate": {"type": "string"}}, "required": ["resolution", "frameRate", "codec", "bitrate"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {"type": "integer"}}, "productReviews": {"type": "array", "items": {}}}, "required": ["userId", "cartId", "preferredProducts", "productReviews"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"userId" : 99483, "cartId" : "eda436e7-b4d0-4dc6-95dd-1cfd114b6355", "preferredProducts" : [163, 4559, 3113, 4405, 2558, 1145, 2464], "productReviews" : []} | json_instruct | {"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {"type": "integer"}}, "productReviews": {"type": "array", "items": {}}}, "required": ["userId", "cartId", "preferredProducts", "productReviews"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.