input
stringlengths
159
2.05k
output
stringlengths
5
10.3k
task
stringclasses
1 value
schema
stringlengths
100
1.99k
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"builders": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "image": {"type": "string"}, "commit": {"type": "boolean"}, "changes": {"type": "array", "items": {"type": "string"}}}, "required": ["type", "image", "commit", "changes"]}}, "provisioners": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "script": {"type": "string"}, "environment_vars": {"type": "array", "items": {"type": "string"}}}, "required": ["type", "script", "environment_vars"]}}}, "required": ["builders", "provisioners"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"builders" : [{"type" : "docker", "image" : "ubuntu:16.04", "commit" : true, "changes" : ["USER www-data", "WORKDIR /var/www/html", "EXPOSE 80 443"]}], "provisioners" : [{"type" : "shell", "script" : "../scripts/docker-install-ws.sh", "environment_vars" : ["DBPASS={{user `database-root-password`}}", "USERPASS={{user `database-user-password`}}", "ACCESSFROMIP={{user `database-access-from-ip`}}", "DATABASEIP={{user `database-ip`}}", "WEBSERVERIP={{user `webserver-ip`}}", "DATABASENAME={{user `database-name`}}", "DATABASEUSERNAME={{user `database-user-name`}}"]}]}
json_instruct
{"type": "object", "properties": {"builders": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "image": {"type": "string"}, "commit": {"type": "boolean"}, "changes": {"type": "array", "items": {"type": "string"}}}, "required": ["type", "image", "commit", "changes"]}}, "provisioners": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "script": {"type": "string"}, "environment_vars": {"type": "array", "items": {"type": "string"}}}, "required": ["type", "script", "environment_vars"]}}}, "required": ["builders", "provisioners"], "$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"}, "title": {"type": "string"}, "description": {"type": "string"}, "version": {"type": "string"}, "homepage": {"type": "string"}, "author": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}, "url": {"type": "string"}}, "required": ["name", "email", "url"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "licenses": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}}, "dependencies": {"type": "object", "properties": {"jquery": {"type": "string"}}, "required": ["jquery"]}, "keywords": {"type": "array", "items": {}}}, "required": ["name", "title", "description", "version", "homepage", "author", "repository", "bugs", "licenses", "dependencies", "keywords"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "jquery.preview", "title" : "jQuery Preview", "description" : "Create an input that lets users preview the URL.", "version" : "0.3.2", "homepage" : "https://github.com/embedly/jquery-preview", "author" : {"name" : "Sean Creeley", "email" : "sean@embed.ly", "url" : "http://embed.ly"}, "repository" : {"type" : "git", "url" : "git://github.com/embedly/jquery-preview"}, "bugs" : {"url" : "https://github.com/embedly/jquery-preview/issues"}, "licenses" : [{"type" : "BSD", "url" : "https://github.com/embedly/jquery-preview/blob/master/LICENSE"}], "dependencies" : {"jquery" : "*"}, "keywords" : []}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "title": {"type": "string"}, "description": {"type": "string"}, "version": {"type": "string"}, "homepage": {"type": "string"}, "author": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}, "url": {"type": "string"}}, "required": ["name", "email", "url"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "licenses": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}}, "dependencies": {"type": "object", "properties": {"jquery": {"type": "string"}}, "required": ["jquery"]}, "keywords": {"type": "array", "items": {}}}, "required": ["name", "title", "description", "version", "homepage", "author", "repository", "bugs", "licenses", "dependencies", "keywords"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"copyright": {"type": "string"}, "url": {"type": "string"}}, "required": ["copyright", "url"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"copyright" : "Louis-R\u00e9mi Bab\u00e9", "url" : "http://twitter.com/louis_remi"}
json_instruct
{"type": "object", "properties": {"copyright": {"type": "string"}, "url": {"type": "string"}}, "required": ["copyright", "url"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "repository": {"type": "string"}, "logo": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "description", "repository", "logo", "keywords"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "Survey Mailey", "description" : "Collect feedback directly from email with an yes or no questionaire.", "repository" : "https://github.com/Daatwood/survey-mailey", "logo" : "https://raw.githubusercontent.com/Daatwood/survey-mailey/master/client/public/favicon.ico", "keywords" : ["mongodb", "express", "react", "node"]}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "repository": {"type": "string"}, "logo": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "description", "repository", "logo", "keywords"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"id": {"type": "integer"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"src:alt_label": {"type": "string"}, "src:geom": {"type": "string"}, "wof:geomhash": {"type": "string"}, "wof:id": {"type": "integer"}, "wof:repo": {"type": "string"}}, "required": ["src:alt_label", "src:geom", "wof:geomhash", "wof:id", "wof:repo"]}, "bbox": {"type": "array", "items": {"type": "number"}}, "geometry": {"type": "object", "properties": {"coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}, "type": {"type": "string"}}, "required": ["coordinates", "type"]}}, "required": ["id", "type", "properties", "bbox", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : 101812611, "type" : "Feature", "properties" : {"src:alt_label" : "quattroshapes", "src:geom" : "quattroshapes", "wof:geomhash" : "282becefb55a9785f17c6e39b8f891bd", "wof:id" : 101812611, "wof:repo" : "whosonfirst-data-admin-fr"}, "bbox" : [3.0267441420055, 50.10739174000531, 3.04776462060187, 50.11765696978534], "geometry" : {"coordinates" : [[[3.03962264771093, 50.11765696978534], [3.04001562585978, 50.1149735963408], [3.04419399923103, 50.11522914093553], [3.04458668985274, 50.11254574689417], [3.04737214002563, 50.11271601396413], [3.04776462060187, 50.1100326048475], [3.04219404812653, 50.10969202477816], [3.04206312418626, 50.11058648758666], [3.03788516524492, 50.11033086860289], [3.03827815086731, 50.10764749536696], [3.0341004651462, 50.10739174000531], [3.03383832607415, 50.10918064491273], [3.02687534975615, 50.10875402775588], [3.0267441420055, 50.10964847032903], [3.02813675394327, 50.10973382958434], [3.02800556584327, 50.11062827354698], [3.03218350643903, 50.11088425488549], [3.03179013747621, 50.11356760063177], [3.03596835136665, 50.11382344559905], [3.03570622950412, 50.11561235154704], [3.03709902820469, 50.11569760289456], [3.0369679838675, 50.11659205703143], [3.0383608129381, 50.11667729322392], [3.03822978826929, 50.11757174874907], [3.03962264771093, 50.11765696978534]]], "type" : "Polygon"}}
json_instruct
{"type": "object", "properties": {"id": {"type": "integer"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"src:alt_label": {"type": "string"}, "src:geom": {"type": "string"}, "wof:geomhash": {"type": "string"}, "wof:id": {"type": "integer"}, "wof:repo": {"type": "string"}}, "required": ["src:alt_label", "src:geom", "wof:geomhash", "wof:id", "wof:repo"]}, "bbox": {"type": "array", "items": {"type": "number"}}, "geometry": {"type": "object", "properties": {"coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}, "type": {"type": "string"}}, "required": ["coordinates", "type"]}}, "required": ["id", "type", "properties", "bbox", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "array", "items": {"type": "number"}, "$schema": "http://json-schema.org/draft-07/schema#"}
[6.434750367915193, 6.542299495416644, 6.578706912965845, 6.576590007589381, 7.02556512993571, 6.740535157511748, 6.844947595637121, 6.850774422300279, 6.9359728296431635, 7.0305472735653485]
json_instruct
{"type": "array", "items": {"type": "number"}, "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"jquery.multiple.select.js": {"type": "string"}, "jquery.multiple.select.min.js": {"type": "string"}, "multiple-select.css": {"type": "string"}, "multiple-select.min.css": {"type": "string"}}, "required": ["jquery.multiple.select.js", "jquery.multiple.select.min.js", "multiple-select.css", "multiple-select.min.css"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"jquery.multiple.select.js" : "sha256-6XjnFsVIoFBV1WqbvAVgGWbmKm5GXqd0x/QKAvim5Mk=", "jquery.multiple.select.min.js" : "sha256-2ICw6McPywtNUXMbFtkaSJg8j/IV3q+Ln/uHli+RDsc=", "multiple-select.css" : "sha256-lxZJO4tyjE6sgodnuaQHxvEdViZw7U4Sml6pSAX/yYk=", "multiple-select.min.css" : "sha256-T+j17b5ije/8Ogw+mNYN4y9WB2ivJnzRGEF2JnIsQus="}
json_instruct
{"type": "object", "properties": {"jquery.multiple.select.js": {"type": "string"}, "jquery.multiple.select.min.js": {"type": "string"}, "multiple-select.css": {"type": "string"}, "multiple-select.min.css": {"type": "string"}}, "required": ["jquery.multiple.select.js", "jquery.multiple.select.min.js", "multiple-select.css", "multiple-select.min.css"], "$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"}, "number": {"type": "string"}, "is_illegal": {"type": "boolean"}, "text": {"type": "string"}, "type": {"type": "string"}, "is_monster": {"type": "boolean"}, "is_spell": {"type": "boolean"}, "is_trap": {"type": "boolean"}, "property": {"type": "string"}}, "required": ["name", "number", "is_illegal", "text", "type", "is_monster", "is_spell", "is_trap", "property"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "Gem-Enhancement", "number" : "41777", "is_illegal" : false, "text" : "Tribute 1 \"Gem-Knight\" monster, then target 1 \"Gem-Knight\" monster in your Graveyard; Special Summon that target from the Graveyard.", "type" : "Trap", "is_monster" : false, "is_spell" : false, "is_trap" : true, "property" : "Normal"}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "number": {"type": "string"}, "is_illegal": {"type": "boolean"}, "text": {"type": "string"}, "type": {"type": "string"}, "is_monster": {"type": "boolean"}, "is_spell": {"type": "boolean"}, "is_trap": {"type": "boolean"}, "property": {"type": "string"}}, "required": ["name", "number", "is_illegal", "text", "type", "is_monster", "is_spell", "is_trap", "property"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "pactTest": {"type": "string"}}, "required": ["test", "pactTest"]}, "author": {"type": "string"}, "license": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "dependencies": {"type": "object", "properties": {"body-parser": {"type": "string"}, "express": {"type": "string"}, "mongoose": {"type": "string"}}, "required": ["body-parser", "express", "mongoose"]}, "devDependencies": {"type": "object", "properties": {"@pact-foundation/pact": {"type": "string"}, "jest": {"type": "string"}, "weak": {"type": "string"}}, "required": ["@pact-foundation/pact", "jest", "weak"]}}, "required": ["name", "version", "description", "main", "scripts", "author", "license", "keywords", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "node-easy-notes-app", "version" : "1.0.0", "description" : "Never miss a thing in life. Take notes quickly. Organise and keep track of all your notes.", "main" : "index.js", "scripts" : {"test" : "tests", "pactTest" : "export NODE_ENV=pactTest && jest --testRegex \"/*(.test.spec.js)\" --runInBand --detectOpenHandles --forceExit"}, "author" : "Iris", "license" : "ISC", "keywords" : ["Express", "RestAPI", "MongoDB", "Mongoose", "Notes"], "dependencies" : {"body-parser" : "1.18.3", "express" : "4.16.3", "mongoose" : "5.2.6"}, "devDependencies" : {"@pact-foundation/pact" : "5.9.1", "jest" : "23.5.0", "weak" : "1.0.1"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "pactTest": {"type": "string"}}, "required": ["test", "pactTest"]}, "author": {"type": "string"}, "license": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "dependencies": {"type": "object", "properties": {"body-parser": {"type": "string"}, "express": {"type": "string"}, "mongoose": {"type": "string"}}, "required": ["body-parser", "express", "mongoose"]}, "devDependencies": {"type": "object", "properties": {"@pact-foundation/pact": {"type": "string"}, "jest": {"type": "string"}, "weak": {"type": "string"}}, "required": ["@pact-foundation/pact", "jest", "weak"]}}, "required": ["name", "version", "description", "main", "scripts", "author", "license", "keywords", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"fdtd_kernel30": {"type": "object", "properties": {"write": {"type": "object", "properties": {"device_start": {"type": "number"}, "host_queued_start": {"type": "number"}, "device_queued": {"type": "number"}, "device_end": {"type": "number"}, "host_queued_end": {"type": "number"}}, "required": ["device_start", "host_queued_start", "device_queued", "device_end", "host_queued_end"]}, "device": {"type": "string"}, "nd_range": {"type": "object", "properties": {"device_start": {"type": "number"}, "device_end": {"type": "number"}}, "required": ["device_start", "device_end"]}, "cmdq": {"type": "integer"}, "read": {"type": "object", "properties": {"device_start": {"type": "number"}, "device_end": {"type": "number"}}, "required": ["device_start", "device_end"]}}, "required": ["write", "device", "nd_range", "cmdq", "read"]}}, "required": ["fdtd_kernel30"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"fdtd_kernel30" : {"write" : {"device_start" : 1586198678.3815823, "host_queued_start" : 1586198761.388279, "device_queued" : 1586198678.381565, "device_end" : 1586198678.3816063, "host_queued_end" : 1586198761.388642}, "device" : "gpu", "nd_range" : {"device_start" : 1586198678.381612, "device_end" : 1586198678.3816257}, "cmdq" : 0, "read" : {"device_start" : 1586198678.381635, "device_end" : 1586198678.3816369}}}
json_instruct
{"type": "object", "properties": {"fdtd_kernel30": {"type": "object", "properties": {"write": {"type": "object", "properties": {"device_start": {"type": "number"}, "host_queued_start": {"type": "number"}, "device_queued": {"type": "number"}, "device_end": {"type": "number"}, "host_queued_end": {"type": "number"}}, "required": ["device_start", "host_queued_start", "device_queued", "device_end", "host_queued_end"]}, "device": {"type": "string"}, "nd_range": {"type": "object", "properties": {"device_start": {"type": "number"}, "device_end": {"type": "number"}}, "required": ["device_start", "device_end"]}, "cmdq": {"type": "integer"}, "read": {"type": "object", "properties": {"device_start": {"type": "number"}, "device_end": {"type": "number"}}, "required": ["device_start", "device_end"]}}, "required": ["write", "device", "nd_range", "cmdq", "read"]}}, "required": ["fdtd_kernel30"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"0": {"type": "string"}, "1": {"type": "string"}, "2": {"type": "string"}, "3": {"type": "string"}, "4": {"type": "string"}, "5": {"type": "string"}, "6": {"type": "string"}, "7": {"type": "string"}, "8": {"type": "string"}, "9": {"type": "string"}, "10": {"type": "string"}, "11": {"type": "string"}, "12": {"type": "string"}, "13": {"type": "string"}, "14": {"type": "string"}, "15": {"type": "string"}, "16": {"type": "string"}, "17": {"type": "string"}, "18": {"type": "string"}, "19": {"type": "string"}, "20": {"type": "string"}, "21": {"type": "string"}, "22": {"type": "string"}, "23": {"type": "string"}, "24": {"type": "string"}, "25": {"type": "string"}, "26": {"type": "string"}, "27": {"type": "string"}, "28": {"type": "string"}, "29": {"type": "string"}}, "required": ["0", "1", "2", "3", "4", "5", "6", "7", "8", "9", "10", "11", "12", "13", "14", "15", "16", "17", "18", "19", "20", "21", "22", "23", "24", "25", "26", "27", "28", "29"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"0" : "Text/Noisy Queries/0_0_0.5/012_query_noise.txt", "1" : "Text/Noisy Queries/0_0_0.5/076_query_noise.txt", "2" : "Text/Noisy Queries/0_0_0.5/122_query_noise.txt", "3" : "Text/Noisy Queries/0_0_0.5/129_query_noise.txt", "4" : "Text/Noisy Queries/0_0_0.5/149_query_noise.txt", "5" : "Text/Noisy Queries/0_0_0.5/208_query_noise.txt", "6" : "Text/Noisy Queries/0_0_0.5/211_query_noise.txt", "7" : "Text/Noisy Queries/0_0_0.5/245_query_noise.txt", "8" : "Text/Noisy Queries/0_0_0.5/262_query_noise.txt", "9" : "Text/Noisy Queries/0_0_0.5/355_query_noise.txt", "10" : "Text/Noisy Queries/0_0_0.5/377_query_noise.txt", "11" : "Text/Noisy Queries/0_0_0.5/405_query_noise.txt", "12" : "Text/Noisy Queries/0_0_0.5/431_query_noise.txt", "13" : "Text/Noisy Queries/0_0_0.5/432_query_noise.txt", "14" : "Text/Noisy Queries/0_0_0.5/433_query_noise.txt", "15" : "Text/Noisy Queries/0_0_0.5/466_query_noise.txt", "16" : "Text/Noisy Queries/0_0_0.5/496_query_noise.txt", "17" : "Text/Noisy Queries/0_0_0.5/572_query_noise.txt", "18" : "Text/Noisy Queries/0_0_0.5/586_query_noise.txt", "19" : "Text/Noisy Queries/0_0_0.5/607_query_noise.txt", "20" : "Text/Noisy Queries/0_0_0.5/614_query_noise.txt", "21" : "Text/Noisy Queries/0_0_0.5/642_query_noise.txt", "22" : "Text/Noisy Queries/0_0_0.5/650_query_noise.txt", "23" : "Text/Noisy Queries/0_0_0.5/658_query_noise.txt", "24" : "Text/Noisy Queries/0_0_0.5/708_query_noise.txt", "25" : "Text/Noisy Queries/0_0_0.5/711_query_noise.txt", "26" : "Text/Noisy Queries/0_0_0.5/770_query_noise.txt", "27" : "Text/Noisy Queries/0_0_0.5/791_query_noise.txt", "28" : "Text/Noisy Queries/0_0_0.5/872_query_noise.txt", "29" : "Text/Noisy Queries/0_0_0.5/875_query_noise.txt"}
json_instruct
{"type": "object", "properties": {"0": {"type": "string"}, "1": {"type": "string"}, "2": {"type": "string"}, "3": {"type": "string"}, "4": {"type": "string"}, "5": {"type": "string"}, "6": {"type": "string"}, "7": {"type": "string"}, "8": {"type": "string"}, "9": {"type": "string"}, "10": {"type": "string"}, "11": {"type": "string"}, "12": {"type": "string"}, "13": {"type": "string"}, "14": {"type": "string"}, "15": {"type": "string"}, "16": {"type": "string"}, "17": {"type": "string"}, "18": {"type": "string"}, "19": {"type": "string"}, "20": {"type": "string"}, "21": {"type": "string"}, "22": {"type": "string"}, "23": {"type": "string"}, "24": {"type": "string"}, "25": {"type": "string"}, "26": {"type": "string"}, "27": {"type": "string"}, "28": {"type": "string"}, "29": {"type": "string"}}, "required": ["0", "1", "2", "3", "4", "5", "6", "7", "8", "9", "10", "11", "12", "13", "14", "15", "16", "17", "18", "19", "20", "21", "22", "23", "24", "25", "26", "27", "28", "29"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"Draft.css": {"type": "string"}, "Draft.js": {"type": "string"}, "Draft.min.css": {"type": "string"}, "Draft.min.js": {"type": "string"}}, "required": ["Draft.css", "Draft.js", "Draft.min.css", "Draft.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"Draft.css" : "sha256-lNuvqsgg/vAPc96Nu1aXInXAkeKl1M0b3ANKif6BlhI=", "Draft.js" : "sha256-C18o+x4enaaYWrgjsY244nuFtDEIFpxEF0XMPisiE94=", "Draft.min.css" : "sha256-//zxYgHbIJgA6sgItkXampwWWue7agTI8ZFqhCxUFNA=", "Draft.min.js" : "sha256-2qN1y+JIHf4TvyQQG6MWJua2Nv/RJbqHA4Oc74mWTfw="}
json_instruct
{"type": "object", "properties": {"Draft.css": {"type": "string"}, "Draft.js": {"type": "string"}, "Draft.min.css": {"type": "string"}, "Draft.min.js": {"type": "string"}}, "required": ["Draft.css", "Draft.js", "Draft.min.css", "Draft.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"accessibility": {"type": "string"}, "cfp_end": {"type": "string"}, "code_of_conduct": {"type": "string"}, "diversitytickets": {"type": "string"}, "event_end": {"type": "string"}, "event_start": {"type": "string"}, "facebook": {"type": "string"}, "hashtag": {"type": "string"}, "languages": {"type": "array", "items": {"type": "string"}}, "location": {"type": "object", "properties": {"city": {"type": "string"}, "country": {"type": "string"}, "state": {"type": "string"}}, "required": ["city", "country", "state"]}, "name": {"type": "string"}, "tags": {"type": "array", "items": {"type": "string"}}, "twitter": {"type": "string"}, "website": {"type": "string"}, "youtube": {"type": "string"}}, "required": ["accessibility", "cfp_end", "code_of_conduct", "diversitytickets", "event_end", "event_start", "facebook", "hashtag", "languages", "location", "name", "tags", "twitter", "website", "youtube"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"accessibility" : "", "cfp_end" : "", "code_of_conduct" : "", "diversitytickets" : "", "event_end" : "2018-08-17", "event_start" : "2018-08-11", "facebook" : "", "hashtag" : "", "languages" : ["English"], "location" : {"city" : "Vienna", "country" : "Austria", "state" : ""}, "name" : "Akademy", "tags" : ["kde"], "twitter" : "akademy", "website" : "https://akademy.kde.org/20178", "youtube" : ""}
json_instruct
{"type": "object", "properties": {"accessibility": {"type": "string"}, "cfp_end": {"type": "string"}, "code_of_conduct": {"type": "string"}, "diversitytickets": {"type": "string"}, "event_end": {"type": "string"}, "event_start": {"type": "string"}, "facebook": {"type": "string"}, "hashtag": {"type": "string"}, "languages": {"type": "array", "items": {"type": "string"}}, "location": {"type": "object", "properties": {"city": {"type": "string"}, "country": {"type": "string"}, "state": {"type": "string"}}, "required": ["city", "country", "state"]}, "name": {"type": "string"}, "tags": {"type": "array", "items": {"type": "string"}}, "twitter": {"type": "string"}, "website": {"type": "string"}, "youtube": {"type": "string"}}, "required": ["accessibility", "cfp_end", "code_of_conduct", "diversitytickets", "event_end", "event_start", "facebook", "hashtag", "languages", "location", "name", "tags", "twitter", "website", "youtube"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"IsRecentlyVerified": {"type": "boolean"}, "ID": {"type": "integer"}, "UUID": {"type": "string"}, "DataProviderID": {"type": "integer"}, "OperatorID": {"type": "integer"}, "UsageTypeID": {"type": "integer"}, "AddressInfo": {"type": "object", "properties": {"ID": {"type": "integer"}, "Title": {"type": "string"}, "AddressLine1": {"type": "string"}, "Town": {"type": "string"}, "Postcode": {"type": "string"}, "CountryID": {"type": "integer"}, "Latitude": {"type": "number"}, "Longitude": {"type": "number"}, "RelatedURL": {"type": "string"}, "DistanceUnit": {"type": "integer"}}, "required": ["ID", "Title", "AddressLine1", "Town", "Postcode", "CountryID", "Latitude", "Longitude", "RelatedURL", "DistanceUnit"]}, "Connections": {"type": "array", "items": {"type": "object", "properties": {"ID": {"type": "integer"}, "ConnectionTypeID": {"type": "integer"}, "StatusTypeID": {"type": "integer"}, "LevelID": {"type": "integer"}, "PowerKW": {"type": "integer"}, "CurrentTypeID": {"type": "integer"}, "Quantity": {"type": "integer"}}, "required": ["ID", "ConnectionTypeID", "StatusTypeID", "LevelID", "PowerKW", "CurrentTypeID", "Quantity"]}}, "NumberOfPoints": {"type": "integer"}, "StatusTypeID": {"type": "integer"}, "DateLastStatusUpdate": {"type": "string"}, "DataQualityLevel": {"type": "integer"}, "DateCreated": {"type": "string"}, "SubmissionStatusTypeID": {"type": "integer"}}, "required": ["IsRecentlyVerified", "ID", "UUID", "DataProviderID", "OperatorID", "UsageTypeID", "AddressInfo", "Connections", "NumberOfPoints", "StatusTypeID", "DateLastStatusUpdate", "DataQualityLevel", "DateCreated", "SubmissionStatusTypeID"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"IsRecentlyVerified" : false, "ID" : 161309, "UUID" : "FE50F65B-BB9B-4B57-AA7A-4A3E17D6BAD6", "DataProviderID" : 1, "OperatorID" : 3396, "UsageTypeID" : 1, "AddressInfo" : {"ID" : 161666, "Title" : "PKN Orlen", "AddressLine1" : "Armii Krajowej 21A", "Town" : "Cracow", "Postcode" : "30-150", "CountryID" : 179, "Latitude" : 50.07119846726053, "Longitude" : 19.893460849138137, "RelatedURL" : "https://orlencharge.orlen.pl/", "DistanceUnit" : 0}, "Connections" : [{"ID" : 232147, "ConnectionTypeID" : 33, "StatusTypeID" : 50, "LevelID" : 3, "PowerKW" : 50, "CurrentTypeID" : 30, "Quantity" : 1}, {"ID" : 232148, "ConnectionTypeID" : 2, "StatusTypeID" : 50, "LevelID" : 3, "PowerKW" : 50, "CurrentTypeID" : 30, "Quantity" : 1}, {"ID" : 232149, "ConnectionTypeID" : 1036, "StatusTypeID" : 50, "LevelID" : 3, "PowerKW" : 44, "CurrentTypeID" : 20, "Quantity" : 1}], "NumberOfPoints" : 2, "StatusTypeID" : 50, "DateLastStatusUpdate" : "2020-07-10T15:49:00Z", "DataQualityLevel" : 1, "DateCreated" : "2020-07-08T12:48:00Z", "SubmissionStatusTypeID" : 200}
json_instruct
{"type": "object", "properties": {"IsRecentlyVerified": {"type": "boolean"}, "ID": {"type": "integer"}, "UUID": {"type": "string"}, "DataProviderID": {"type": "integer"}, "OperatorID": {"type": "integer"}, "UsageTypeID": {"type": "integer"}, "AddressInfo": {"type": "object", "properties": {"ID": {"type": "integer"}, "Title": {"type": "string"}, "AddressLine1": {"type": "string"}, "Town": {"type": "string"}, "Postcode": {"type": "string"}, "CountryID": {"type": "integer"}, "Latitude": {"type": "number"}, "Longitude": {"type": "number"}, "RelatedURL": {"type": "string"}, "DistanceUnit": {"type": "integer"}}, "required": ["ID", "Title", "AddressLine1", "Town", "Postcode", "CountryID", "Latitude", "Longitude", "RelatedURL", "DistanceUnit"]}, "Connections": {"type": "array", "items": {"type": "object", "properties": {"ID": {"type": "integer"}, "ConnectionTypeID": {"type": "integer"}, "StatusTypeID": {"type": "integer"}, "LevelID": {"type": "integer"}, "PowerKW": {"type": "integer"}, "CurrentTypeID": {"type": "integer"}, "Quantity": {"type": "integer"}}, "required": ["ID", "ConnectionTypeID", "StatusTypeID", "LevelID", "PowerKW", "CurrentTypeID", "Quantity"]}}, "NumberOfPoints": {"type": "integer"}, "StatusTypeID": {"type": "integer"}, "DateLastStatusUpdate": {"type": "string"}, "DataQualityLevel": {"type": "integer"}, "DateCreated": {"type": "string"}, "SubmissionStatusTypeID": {"type": "integer"}}, "required": ["IsRecentlyVerified", "ID", "UUID", "DataProviderID", "OperatorID", "UsageTypeID", "AddressInfo", "Connections", "NumberOfPoints", "StatusTypeID", "DateLastStatusUpdate", "DataQualityLevel", "DateCreated", "SubmissionStatusTypeID"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"template": {"type": "object", "properties": {"small": {"type": "string"}, "medium": {"type": "string"}, "large": {"type": "string"}}, "required": ["small", "medium", "large"]}, "channels": {"type": "object", "properties": {"kingian91": {"type": "object", "properties": {"title": {"type": "string"}, "channel_id": {"type": "integer"}, "link": {"type": "string"}, "desc": {"type": "null"}, "id": {"type": "string"}, "first_seen": {"type": "string"}, "badge": {"type": "string"}, "badge_starting": {"type": "string"}, "badge_3m": {"type": "string"}, "badge_6m": {"type": "string"}, "badge_12m": {"type": "string"}, "badge_24m": {"type": "string"}, "cheermote1": {"type": "null"}, "cheermote100": {"type": "null"}, "cheermote1000": {"type": "null"}, "cheermote5000": {"type": "null"}, "cheermote10000": {"type": "null"}, "set": {"type": "integer"}, "emotes": {"type": "array", "items": {"type": "object", "properties": {"code": {"type": "string"}, "image_id": {"type": "integer"}}, "required": ["code", "image_id"]}}}, "required": ["title", "channel_id", "link", "desc", "id", "first_seen", "badge", "badge_starting", "badge_3m", "badge_6m", "badge_12m", "badge_24m", "cheermote1", "cheermote100", "cheermote1000", "cheermote5000", "cheermote10000", "set", "emotes"]}}, "required": ["kingian91"]}}, "required": ["template", "channels"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"template" : {"small" : "https://static-cdn.jtvnw.net/emoticons/v1/{image_id}/1.0", "medium" : "https://static-cdn.jtvnw.net/emoticons/v1/{image_id}/2.0", "large" : "https://static-cdn.jtvnw.net/emoticons/v1/{image_id}/3.0"}, "channels" : {"kingian91" : {"title" : "kingIan91", "channel_id" : 109766322, "link" : "http://twitch.tv/kingian91", "desc" : null, "id" : "kingian91", "first_seen" : "2017-03-13 07:10:03", "badge" : "https://static-cdn.jtvnw.net/badges/v1/42289d8c-8223-43eb-8c36-6d85a197e84e/1", "badge_starting" : "https://static-cdn.jtvnw.net/badges/v1/42289d8c-8223-43eb-8c36-6d85a197e84e/3", "badge_3m" : "https://static-cdn.jtvnw.net/badges/v1/cd2608ae-6ff2-48b6-9527-09ccc721c7ba/3", "badge_6m" : "https://static-cdn.jtvnw.net/badges/v1/4001be66-e62f-4694-9490-7e5442203ce5/3", "badge_12m" : "https://static-cdn.jtvnw.net/badges/v1/cf0f1680-3d4c-4da0-a498-501b69580ac2/3", "badge_24m" : "https://static-cdn.jtvnw.net/badges/v1/aed0b7c8-f535-4523-bebd-0911a6368b02/3", "cheermote1" : null, "cheermote100" : null, "cheermote1000" : null, "cheermote5000" : null, "cheermote10000" : null, "set" : 21886, "emotes" : [{"code" : "kingianAmbulanza", "image_id" : 155588}, {"code" : "kingianUnlucky", "image_id" : 155587}]}}}
json_instruct
{"type": "object", "properties": {"template": {"type": "object", "properties": {"small": {"type": "string"}, "medium": {"type": "string"}, "large": {"type": "string"}}, "required": ["small", "medium", "large"]}, "channels": {"type": "object", "properties": {"kingian91": {"type": "object", "properties": {"title": {"type": "string"}, "channel_id": {"type": "integer"}, "link": {"type": "string"}, "desc": {"type": "null"}, "id": {"type": "string"}, "first_seen": {"type": "string"}, "badge": {"type": "string"}, "badge_starting": {"type": "string"}, "badge_3m": {"type": "string"}, "badge_6m": {"type": "string"}, "badge_12m": {"type": "string"}, "badge_24m": {"type": "string"}, "cheermote1": {"type": "null"}, "cheermote100": {"type": "null"}, "cheermote1000": {"type": "null"}, "cheermote5000": {"type": "null"}, "cheermote10000": {"type": "null"}, "set": {"type": "integer"}, "emotes": {"type": "array", "items": {"type": "object", "properties": {"code": {"type": "string"}, "image_id": {"type": "integer"}}, "required": ["code", "image_id"]}}}, "required": ["title", "channel_id", "link", "desc", "id", "first_seen", "badge", "badge_starting", "badge_3m", "badge_6m", "badge_12m", "badge_24m", "cheermote1", "cheermote100", "cheermote1000", "cheermote5000", "cheermote10000", "set", "emotes"]}}, "required": ["kingian91"]}}, "required": ["template", "channels"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"900032867": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900032868": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900032869": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900032870": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900032871": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900032872": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900032873": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}}, "required": ["900032867", "900032868", "900032869", "900032870", "900032871", "900032872", "900032873"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"900032867" : {"nama" : "TPS 1", "dapil" : [1203, 11210, 2120803]}, "900032868" : {"nama" : "TPS 2", "dapil" : [1203, 11210, 2120803]}, "900032869" : {"nama" : "TPS 3", "dapil" : [1203, 11210, 2120803]}, "900032870" : {"nama" : "TPS 4", "dapil" : [1203, 11210, 2120803]}, "900032871" : {"nama" : "TPS 5", "dapil" : [1203, 11210, 2120803]}, "900032872" : {"nama" : "TPS 6", "dapil" : [1203, 11210, 2120803]}, "900032873" : {"nama" : "TPS 7", "dapil" : [1203, 11210, 2120803]}}
json_instruct
{"type": "object", "properties": {"900032867": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900032868": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900032869": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900032870": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900032871": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900032872": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900032873": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}}, "required": ["900032867", "900032868", "900032869", "900032870", "900032871", "900032872", "900032873"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"identifier": {"type": "string"}, "name": {"type": "string"}, "grapthData": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}, "closePrice": {"type": "number"}}, "required": ["identifier", "name", "grapthData", "closePrice"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"identifier" : "OPTIDXBANKNIFTY10-02-2022PE31700.00", "name" : "BANKNIFTY", "grapthData" : [[1643361941000, 0], [1643364358000, 0], [1643368528000, 0], [1643368557000, 0]], "closePrice" : 317.4}
json_instruct
{"type": "object", "properties": {"identifier": {"type": "string"}, "name": {"type": "string"}, "grapthData": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}, "closePrice": {"type": "number"}}, "required": ["identifier", "name", "grapthData", "closePrice"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "array", "items": {"type": "object", "properties": {"year": {"type": "integer"}, "sex": {"type": "string"}, "n": {"type": "integer"}, "prop": {"type": "number"}}, "required": ["year", "sex", "n", "prop"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"year" : 1977, "sex" : "M", "n" : 6, "prop" : 3.51e-06}, {"year" : 1979, "sex" : "M", "n" : 5, "prop" : 2.79e-06}, {"year" : 1980, "sex" : "M", "n" : 5, "prop" : 2.7e-06}, {"year" : 1982, "sex" : "M", "n" : 5, "prop" : 2.65e-06}, {"year" : 1984, "sex" : "M", "n" : 5, "prop" : 2.66e-06}, {"year" : 1985, "sex" : "M", "n" : 7, "prop" : 3.64e-06}, {"year" : 1986, "sex" : "M", "n" : 6, "prop" : 3.12e-06}, {"year" : 1987, "sex" : "M", "n" : 5, "prop" : 2.56e-06}, {"year" : 1988, "sex" : "M", "n" : 8, "prop" : 4e-06}, {"year" : 1989, "sex" : "M", "n" : 8, "prop" : 3.82e-06}, {"year" : 1990, "sex" : "M", "n" : 6, "prop" : 2.79e-06}, {"year" : 1992, "sex" : "M", "n" : 9, "prop" : 4.29e-06}, {"year" : 1993, "sex" : "M", "n" : 6, "prop" : 2.91e-06}, {"year" : 1994, "sex" : "M", "n" : 12, "prop" : 5.89e-06}, {"year" : 1995, "sex" : "M", "n" : 6, "prop" : 2.98e-06}, {"year" : 1997, "sex" : "M", "n" : 10, "prop" : 5.01e-06}, {"year" : 1998, "sex" : "M", "n" : 8, "prop" : 3.95e-06}, {"year" : 1999, "sex" : "M", "n" : 8, "prop" : 3.92e-06}, {"year" : 2000, "sex" : "M", "n" : 8, "prop" : 3.83e-06}, {"year" : 2001, "sex" : "M", "n" : 10, "prop" : 4.84e-06}, {"year" : 2002, "sex" : "M", "n" : 9, "prop" : 4.36e-06}, {"year" : 2003, "sex" : "M", "n" : 8, "prop" : 3.81e-06}, {"year" : 2004, "sex" : "M", "n" : 13, "prop" : 6.15e-06}, {"year" : 2005, "sex" : "M", "n" : 6, "prop" : 2.82e-06}, {"year" : 2006, "sex" : "M", "n" : 7, "prop" : 3.2e-06}, {"year" : 2007, "sex" : "M", "n" : 8, "prop" : 3.61e-06}, {"year" : 2008, "sex" : "M", "n" : 10, "prop" : 4.59e-06}, {"year" : 2009, "sex" : "M", "n" : 8, "prop" : 3.78e-06}, {"year" : 2010, "sex" : "M", "n" : 6, "prop" : 2.92e-06}, {"year" : 2012, "sex" : "M", "n" : 6, "prop" : 2.96e-06}, {"year" : 2014, "sex" : "M", "n" : 6, "prop" : 2.93e-06}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"year": {"type": "integer"}, "sex": {"type": "string"}, "n": {"type": "integer"}, "prop": {"type": "number"}}, "required": ["year", "sex", "n", "prop"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "type": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "license": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}}, "autoload": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"Roksta\\Punctuator\\": {"type": "string"}}, "required": ["Roksta\\Punctuator\\"]}}, "required": ["psr-4"]}}, "required": ["name", "description", "type", "keywords", "license", "authors", "autoload"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "roksta/punctuator", "description" : "very simple punctuation for texts.", "type" : "library", "keywords" : ["punctuation", "spacing text", "format text"], "license" : "MIT", "authors" : [{"name" : "sam_roksta", "email" : "roksta21@gmail.com"}], "autoload" : {"psr-4" : {"Roksta\\Punctuator\\" : "src/"}}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "type": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "license": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}}, "autoload": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"Roksta\\Punctuator\\": {"type": "string"}}, "required": ["Roksta\\Punctuator\\"]}}, "required": ["psr-4"]}}, "required": ["name", "description", "type", "keywords", "license", "authors", "autoload"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"schema_version": {"type": "string"}, "id": {"type": "string"}, "modified": {"type": "string"}, "published": {"type": "string"}, "aliases": {"type": "array", "items": {"type": "string"}}, "details": {"type": "string"}, "severity": {"type": "array", "items": {}}, "affected": {"type": "array", "items": {}}, "references": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}}, "database_specific": {"type": "object", "properties": {"cwe_ids": {"type": "array", "items": {"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-fj3g-r3pf-r284", "modified" : "2021-12-28T00:01:24Z", "published" : "2021-12-21T00:00:36Z", "aliases" : ["CVE-2021-38409"], "details" : "Fuji Electric V-Server Lite and Tellus Lite V-Simulator prior to v4.0.12.0 is vulnerable to an access of uninitialized pointer, which may allow an attacker read from or write to unexpected memory locations, leading to a denial-of-service.", "severity" : [], "affected" : [], "references" : [{"type" : "ADVISORY", "url" : "https://nvd.nist.gov/vuln/detail/CVE-2021-38409"}, {"type" : "WEB", "url" : "https://www.cisa.gov/uscert/ics/advisories/icsa-21-299-01"}], "database_specific" : {"cwe_ids" : ["CWE-824"], "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": {"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#"}
Create a JSON structure that matches this schema definition: {"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": "string"}, "created_at": {"type": "string"}, "head": {"type": "object", "properties": {"ref": {"type": "string"}}, "required": ["ref"]}, "html_url": {"type": "string"}, "id": {"type": "integer"}, "labels": {"type": "array", "items": {}}, "mergeable": {"type": "null"}, "mergeable_state": {"type": "string"}, "merged": {"type": "boolean"}, "merged_at": {"type": "string"}, "number": {"type": "integer"}, "state": {"type": "string"}, "updated_at": {"type": "string"}}, "required": ["ETag", "Last-Modified", "base", "closed_at", "created_at", "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/\"2f15a1fb3994974d1e8cce23b1e9a687\"", "Last-Modified" : "Tue, 05 Nov 2019 20:42:29 GMT", "base" : {"repo" : {"name" : "wrighttools-feedstock"}}, "closed_at" : "2019-11-05T20:42:29Z", "created_at" : "2019-11-05T20:16:10Z", "head" : {"ref" : "3.2.5"}, "html_url" : "https://github.com/conda-forge/wrighttools-feedstock/pull/37", "id" : 336966807, "labels" : [], "mergeable" : null, "mergeable_state" : "unknown", "merged" : true, "merged_at" : "2019-11-05T20:42:28Z", "number" : 37, "state" : "closed", "updated_at" : "2019-11-05T20:42:29Z"}
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": "string"}, "created_at": {"type": "string"}, "head": {"type": "object", "properties": {"ref": {"type": "string"}}, "required": ["ref"]}, "html_url": {"type": "string"}, "id": {"type": "integer"}, "labels": {"type": "array", "items": {}}, "mergeable": {"type": "null"}, "mergeable_state": {"type": "string"}, "merged": {"type": "boolean"}, "merged_at": {"type": "string"}, "number": {"type": "integer"}, "state": {"type": "string"}, "updated_at": {"type": "string"}}, "required": ["ETag", "Last-Modified", "base", "closed_at", "created_at", "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": {"baseObjects": {"type": "array", "items": {"type": "string"}}, "returnObjects": {"type": "array", "items": {"type": "string"}}, "callbackArgs": {"type": "array", "items": {"type": "object", "properties": {"0": {"type": "string"}, "1": {"type": "integer"}, "2": {"type": "array", "items": {"type": "string"}}}, "required": ["0", "1", "2"]}}}, "required": ["baseObjects", "returnObjects", "callbackArgs"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"baseObjects" : ["[\"(\",\"KX\",\"(P!\",\"a{\"]", "[\"(\",\"KX\",\"(P!\",\"a{\"]", "[\"c\u00df\\u000ef\\u0017\u00ee\\u0013\u00e7#\",\"c\u00df\\u000ef\\u0017\u00ee\\u0013\u00e7#\",\"c\u00df\\u000ef\\u0017\u00ee\\u0013\u00e7#\",\"c\u00df\\u000ef\\u0017\u00ee\\u0013\u00e7#\"]", "[\"(\",\"KX\",\"(P!\",\"a{\"]"], "returnObjects" : ["[\"c\u00df\\u000ef\\u0017\u00ee\\u0013\u00e7#\",\"c\u00df\\u000ef\\u0017\u00ee\\u0013\u00e7#\",\"c\u00df\\u000ef\\u0017\u00ee\\u0013\u00e7#\",\"c\u00df\\u000ef\\u0017\u00ee\\u0013\u00e7#\"]", "[22.52310888628184,22.52310888628184,22.52310888628184,22.52310888628184]", "[null,null,null,null]", "[\"\\\"h\u0099\u00caM\u00b7\\r\\\\\u00aaS\",\"\\\"h\u0099\u00caM\u00b7\\r\\\\\u00aaS\",\"\\\"h\u0099\u00caM\u00b7\\r\\\\\u00aaS\",\"\\\"h\u0099\u00caM\u00b7\\r\\\\\u00aaS\"]"], "callbackArgs" : [{"0" : "(", "1" : 0, "2" : ["(", "KX", "(P!", "a{"]}, {"0" : "KX", "1" : 1, "2" : ["(", "KX", "(P!", "a{"]}, {"0" : "(P!", "1" : 2, "2" : ["(", "KX", "(P!", "a{"]}, {"0" : "a{", "1" : 3, "2" : ["(", "KX", "(P!", "a{"]}, {"0" : "(", "1" : 0, "2" : ["(", "KX", "(P!", "a{"]}, {"0" : "KX", "1" : 1, "2" : ["(", "KX", "(P!", "a{"]}, {"0" : "(P!", "1" : 2, "2" : ["(", "KX", "(P!", "a{"]}, {"0" : "a{", "1" : 3, "2" : ["(", "KX", "(P!", "a{"]}, {"0" : "c\u00df\u000ef\u0017\u00ee\u0013\u00e7#", "1" : 0, "2" : ["c\u00df\u000ef\u0017\u00ee\u0013\u00e7#", "c\u00df\u000ef\u0017\u00ee\u0013\u00e7#", "c\u00df\u000ef\u0017\u00ee\u0013\u00e7#", "c\u00df\u000ef\u0017\u00ee\u0013\u00e7#"]}, {"0" : "c\u00df\u000ef\u0017\u00ee\u0013\u00e7#", "1" : 1, "2" : ["c\u00df\u000ef\u0017\u00ee\u0013\u00e7#", "c\u00df\u000ef\u0017\u00ee\u0013\u00e7#", "c\u00df\u000ef\u0017\u00ee\u0013\u00e7#", "c\u00df\u000ef\u0017\u00ee\u0013\u00e7#"]}, {"0" : "c\u00df\u000ef\u0017\u00ee\u0013\u00e7#", "1" : 2, "2" : ["c\u00df\u000ef\u0017\u00ee\u0013\u00e7#", "c\u00df\u000ef\u0017\u00ee\u0013\u00e7#", "c\u00df\u000ef\u0017\u00ee\u0013\u00e7#", "c\u00df\u000ef\u0017\u00ee\u0013\u00e7#"]}, {"0" : "c\u00df\u000ef\u0017\u00ee\u0013\u00e7#", "1" : 3, "2" : ["c\u00df\u000ef\u0017\u00ee\u0013\u00e7#", "c\u00df\u000ef\u0017\u00ee\u0013\u00e7#", "c\u00df\u000ef\u0017\u00ee\u0013\u00e7#", "c\u00df\u000ef\u0017\u00ee\u0013\u00e7#"]}, {"0" : "(", "1" : 0, "2" : ["(", "KX", "(P!", "a{"]}, {"0" : "KX", "1" : 1, "2" : ["(", "KX", "(P!", "a{"]}, {"0" : "(P!", "1" : 2, "2" : ["(", "KX", "(P!", "a{"]}, {"0" : "a{", "1" : 3, "2" : ["(", "KX", "(P!", "a{"]}]}
json_instruct
{"type": "object", "properties": {"baseObjects": {"type": "array", "items": {"type": "string"}}, "returnObjects": {"type": "array", "items": {"type": "string"}}, "callbackArgs": {"type": "array", "items": {"type": "object", "properties": {"0": {"type": "string"}, "1": {"type": "integer"}, "2": {"type": "array", "items": {"type": "string"}}}, "required": ["0", "1", "2"]}}}, "required": ["baseObjects", "returnObjects", "callbackArgs"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"_comment": {"type": "string"}, "config.commoncapabilities": {"type": "string"}, "recipecomponent.minecraft.itemstack": {"type": "string"}, "recipecomponent.minecraft.fluidstack": {"type": "string"}, "recipecomponent.minecraft.energy": {"type": "string"}, "capability.commoncapabilities.inventoryState": {"type": "string"}, "capability.commoncapabilities.temperature": {"type": "string"}, "capability.commoncapabilities.worker": {"type": "string"}, "capability.commoncapabilities.worldNameable": {"type": "string"}, "capability.commoncapabilities.wrench": {"type": "string"}}, "required": ["_comment", "config.commoncapabilities", "recipecomponent.minecraft.itemstack", "recipecomponent.minecraft.fluidstack", "recipecomponent.minecraft.energy", "capability.commoncapabilities.inventoryState", "capability.commoncapabilities.temperature", "capability.commoncapabilities.worker", "capability.commoncapabilities.worldNameable", "capability.commoncapabilities.wrench"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"_comment" : "# Capability settings", "config.commoncapabilities" : "%s configuration", "recipecomponent.minecraft.itemstack" : "Item", "recipecomponent.minecraft.fluidstack" : "Fluid", "recipecomponent.minecraft.energy" : "Energy", "capability.commoncapabilities.inventoryState" : "Inventory state", "capability.commoncapabilities.temperature" : "Temperature", "capability.commoncapabilities.worker" : "Worker", "capability.commoncapabilities.worldNameable" : "Nameable world", "capability.commoncapabilities.wrench" : "Wrench"}
json_instruct
{"type": "object", "properties": {"_comment": {"type": "string"}, "config.commoncapabilities": {"type": "string"}, "recipecomponent.minecraft.itemstack": {"type": "string"}, "recipecomponent.minecraft.fluidstack": {"type": "string"}, "recipecomponent.minecraft.energy": {"type": "string"}, "capability.commoncapabilities.inventoryState": {"type": "string"}, "capability.commoncapabilities.temperature": {"type": "string"}, "capability.commoncapabilities.worker": {"type": "string"}, "capability.commoncapabilities.worldNameable": {"type": "string"}, "capability.commoncapabilities.wrench": {"type": "string"}}, "required": ["_comment", "config.commoncapabilities", "recipecomponent.minecraft.itemstack", "recipecomponent.minecraft.fluidstack", "recipecomponent.minecraft.energy", "capability.commoncapabilities.inventoryState", "capability.commoncapabilities.temperature", "capability.commoncapabilities.worker", "capability.commoncapabilities.worldNameable", "capability.commoncapabilities.wrench"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "version": {"type": "string"}, "license": {"type": "string"}, "private": {"type": "boolean"}, "main": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}}, "required": ["start"]}, "devDependencies": {"type": "object", "properties": {"electron-prebuilt": {"type": "string"}}, "required": ["electron-prebuilt"]}}, "required": ["name", "description", "version", "license", "private", "main", "repository", "scripts", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "electric-hum", "description" : "A colored noise generator, built with Electron.", "version" : "0.0.1", "license" : "MIT", "private" : true, "main" : "index.js", "repository" : {"type" : "git", "url" : "git@github.com:DiscoverElectron/electric-hum.git"}, "scripts" : {"start" : "electron ."}, "devDependencies" : {"electron-prebuilt" : "^0.35.1"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "version": {"type": "string"}, "license": {"type": "string"}, "private": {"type": "boolean"}, "main": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}}, "required": ["start"]}, "devDependencies": {"type": "object", "properties": {"electron-prebuilt": {"type": "string"}}, "required": ["electron-prebuilt"]}}, "required": ["name", "description", "version", "license", "private", "main", "repository", "scripts", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"resetrules_description": {"type": "string"}, "rules_description": {"type": "string"}, "rules_empty": {"type": "string"}, "rules_message": {"type": "string"}, "rules_set_success": {"type": "string"}, "setrules_description": {"type": "string"}}, "required": ["resetrules_description", "rules_description", "rules_empty", "rules_message", "rules_set_success", "setrules_description"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"resetrules_description" : "Chatregeln zur\u00fccksetzen.", "rules_description" : "Chatregeln anzeigen.", "rules_empty" : "Es wurden keine Regeln f\u00fcr diesen Chat festgelegt.", "rules_message" : "Die Regeln im Chat {chat_title} sind:\n\n{rules}", "rules_set_success" : "Die Regeln f\u00fcr {chat_title} wurden erfolgreich definiert.", "setrules_description" : "Regeln f\u00fcr den Chat festlegen."}
json_instruct
{"type": "object", "properties": {"resetrules_description": {"type": "string"}, "rules_description": {"type": "string"}, "rules_empty": {"type": "string"}, "rules_message": {"type": "string"}, "rules_set_success": {"type": "string"}, "setrules_description": {"type": "string"}}, "required": ["resetrules_description", "rules_description", "rules_empty", "rules_message", "rules_set_success", "setrules_description"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"kv4.2:1.1": {"type": "string"}, "kv4.2:2.1": {"type": "string"}, "kv4.2:3.1": {"type": "string"}, "kv4.2:4.1": {"type": "string"}, "kv4.2:5.1": {"type": "string"}, "kv4.2:6.1": {"type": "string"}, "kv4.2:7.1": {"type": "string"}, "kv4.2:8.1": {"type": "string"}, "kv4.2:9.1": {"type": "string"}, "kv4.2:10.1": {"type": "string"}, "kv4.2:11.1": {"type": "string"}, "kv4.2:12.1": {"type": "string"}, "kv4.2:13.1": {"type": "string"}, "kv4.2:14.1": {"type": "string"}, "kv4.2:15.1": {"type": "string"}, "kv4.2:15.9": {"type": "string"}}, "required": ["kv4.2:1.1", "kv4.2:2.1", "kv4.2:3.1", "kv4.2:4.1", "kv4.2:5.1", "kv4.2:6.1", "kv4.2:7.1", "kv4.2:8.1", "kv4.2:9.1", "kv4.2:10.1", "kv4.2:11.1", "kv4.2:12.1", "kv4.2:13.1", "kv4.2:14.1", "kv4.2:15.1", "kv4.2:15.9"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"kv4.2:1.1" : "bj45.106, ms32Kv_1299, msdiv388, sc1", "kv4.2:2.1" : "ms32Kv_1300, pts-vp-pli269, sc2, vri116.226", "kv4.2:3.1" : "ms32Kv_1301, sc3", "kv4.2:4.1" : "cck32.272, dr37.265, ms32Kv_1302, sc4", "kv4.2:5.1" : "ms32Kv_1303, ndp32.242, sc5", "kv4.2:6.1" : "bj45.108, ms32Kv_1304, sc6, sya37.294", "kv4.2:7.1" : "csp1ed32.204, csp2ed32.204, ms32Kv_1305, msdiv389, sc7", "kv4.2:8.1" : "ms32Kv_1306, sc8", "kv4.2:9.1" : "ms32Kv_1307, pts-vp-pli270, sc9", "kv4.2:10.1" : "cck32.273, dr37.266, ms32Kv_1308, msdiv390, sc10, sya37.295, vri116.227", "kv4.2:11.1" : "bj45.110, ms32Kv_1309, sc11", "kv4.2:12.1" : "ms32Kv_1310, ndp32.243, sc12", "kv4.2:13.1" : "ms32Kv_1311, sc13", "kv4.2:14.1" : "ms32Kv_1312, sc14", "kv4.2:15.1" : "csp1ed32.205, csp2ed32.205, ms32Kv_1313, pts-vp-pli271, sc15", "kv4.2:15.9" : "ms32Kv_1314"}
json_instruct
{"type": "object", "properties": {"kv4.2:1.1": {"type": "string"}, "kv4.2:2.1": {"type": "string"}, "kv4.2:3.1": {"type": "string"}, "kv4.2:4.1": {"type": "string"}, "kv4.2:5.1": {"type": "string"}, "kv4.2:6.1": {"type": "string"}, "kv4.2:7.1": {"type": "string"}, "kv4.2:8.1": {"type": "string"}, "kv4.2:9.1": {"type": "string"}, "kv4.2:10.1": {"type": "string"}, "kv4.2:11.1": {"type": "string"}, "kv4.2:12.1": {"type": "string"}, "kv4.2:13.1": {"type": "string"}, "kv4.2:14.1": {"type": "string"}, "kv4.2:15.1": {"type": "string"}, "kv4.2:15.9": {"type": "string"}}, "required": ["kv4.2:1.1", "kv4.2:2.1", "kv4.2:3.1", "kv4.2:4.1", "kv4.2:5.1", "kv4.2:6.1", "kv4.2:7.1", "kv4.2:8.1", "kv4.2:9.1", "kv4.2:10.1", "kv4.2:11.1", "kv4.2:12.1", "kv4.2:13.1", "kv4.2:14.1", "kv4.2:15.1", "kv4.2:15.9"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"etiqueta": {"type": "array", "items": {"type": "object", "properties": {"nombre": {"type": "string"}}, "required": ["nombre"]}}}, "required": ["etiqueta"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"etiqueta" : [{"nombre" : "Variables"}, {"nombre" : "Estructuras de control"}, {"nombre" : "Funciones"}, {"nombre" : "Strings"}, {"nombre" : "Modularizaci\u00f3n"}, {"nombre" : "Archivos"}, {"nombre" : "Numpy"}, {"nombre" : "Listas"}, {"nombre" : "Diccionarios"}]}
json_instruct
{"type": "object", "properties": {"etiqueta": {"type": "array", "items": {"type": "object", "properties": {"nombre": {"type": "string"}}, "required": ["nombre"]}}}, "required": ["etiqueta"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "array", "items": {"type": "object", "properties": {"bbox": {"type": "array", "items": {"type": "integer"}}, "class": {"type": "string"}}, "required": ["bbox", "class"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"bbox" : [19, 139, 574, 530], "class" : "bed"}, {"bbox" : [352, 254, 466, 306], "class" : "night_stand"}, {"bbox" : [1, 135, 61, 370], "class" : "dresser"}, {"bbox" : [581, 266, 730, 510], "class" : "dresser"}, {"bbox" : [483, 159, 545, 258], "class" : "lamp"}, {"bbox" : [454, 248, 550, 328], "class" : "night_stand"}, {"bbox" : [193, 208, 281, 277], "class" : "pillow"}, {"bbox" : [116, 200, 345, 268], "class" : "pillow"}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"bbox": {"type": "array", "items": {"type": "integer"}}, "class": {"type": "string"}}, "required": ["bbox", "class"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"resourceType": {"type": "string"}, "identifier": {"type": "array", "items": {"type": "object", "properties": {"label": {"type": "string"}, "system": {"type": "string"}, "value": {"type": "string"}}, "required": ["label", "system", "value"]}}, "name": {"type": "array", "items": {"type": "object", "properties": {"text": {"type": "string"}, "family": {"type": "array", "items": {"type": "string"}}, "given": {"type": "array", "items": {"type": "string"}}, "prefix": {"type": "array", "items": {"type": "string"}}}, "required": ["text", "family", "given", "prefix"]}}, "gender": {"type": "object", "properties": {"coding": {"type": "array", "items": {"type": "object", "properties": {"system": {"type": "string"}, "code": {"type": "string"}}, "required": ["system", "code"]}}}, "required": ["coding"]}, "birthDate": {"type": "string"}, "address": {"type": "array", "items": {"type": "object", "properties": {"text": {"type": "string"}, "line": {"type": "array", "items": {"type": "string"}}, "city": {"type": "string"}, "state": {"type": "string"}, "zip": {"type": "string"}}, "required": ["text", "line", "city", "state", "zip"]}}}, "required": ["resourceType", "identifier", "name", "gender", "birthDate", "address"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"resourceType" : "Patient", "identifier" : [{"label" : "NHS", "system" : "NHS", "value" : "6945857734"}], "name" : [{"text" : "Mr ", "family" : ["Jones"], "given" : ["Alfred"], "prefix" : ["Mr"]}], "gender" : {"coding" : [{"system" : "http://hl7.org/fhir/v3/vs/AdministrativeGender", "code" : "M"}]}, "birthDate" : "1950-07-24T00:00:00.000Z", "address" : [{"text" : "The Beeches, 20 Lakeshore Drive, Kettering, Northampton, NN15 6RT", "line" : ["The Beeches", "20 Lakeshore Drive"], "city" : "Kettering", "state" : "Northampton", "zip" : "NN15 6RT"}]}
json_instruct
{"type": "object", "properties": {"resourceType": {"type": "string"}, "identifier": {"type": "array", "items": {"type": "object", "properties": {"label": {"type": "string"}, "system": {"type": "string"}, "value": {"type": "string"}}, "required": ["label", "system", "value"]}}, "name": {"type": "array", "items": {"type": "object", "properties": {"text": {"type": "string"}, "family": {"type": "array", "items": {"type": "string"}}, "given": {"type": "array", "items": {"type": "string"}}, "prefix": {"type": "array", "items": {"type": "string"}}}, "required": ["text", "family", "given", "prefix"]}}, "gender": {"type": "object", "properties": {"coding": {"type": "array", "items": {"type": "object", "properties": {"system": {"type": "string"}, "code": {"type": "string"}}, "required": ["system", "code"]}}}, "required": ["coding"]}, "birthDate": {"type": "string"}, "address": {"type": "array", "items": {"type": "object", "properties": {"text": {"type": "string"}, "line": {"type": "array", "items": {"type": "string"}}, "city": {"type": "string"}, "state": {"type": "string"}, "zip": {"type": "string"}}, "required": ["text", "line", "city", "state", "zip"]}}}, "required": ["resourceType", "identifier", "name", "gender", "birthDate", "address"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"baseUrl": {"type": "string"}, "chromeWebSecurity": {"type": "boolean"}, "integrationFolder": {"type": "string"}, "pluginsFile": {"type": "string"}, "supportFile": {"type": "string"}}, "required": ["baseUrl", "chromeWebSecurity", "integrationFolder", "pluginsFile", "supportFile"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"baseUrl" : "https://stagingqandaapi.azurewebsites.net/", "chromeWebSecurity" : false, "integrationFolder" : "integration", "pluginsFile" : "plugins/index.js", "supportFile" : "support/index.js"}
json_instruct
{"type": "object", "properties": {"baseUrl": {"type": "string"}, "chromeWebSecurity": {"type": "boolean"}, "integrationFolder": {"type": "string"}, "pluginsFile": {"type": "string"}, "supportFile": {"type": "string"}}, "required": ["baseUrl", "chromeWebSecurity", "integrationFolder", "pluginsFile", "supportFile"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "author": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}, "url": {"type": "string"}}, "required": ["name", "email", "url"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "licenses": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}}, "keywords": {"type": "array", "items": {"type": "string"}}, "description": {"type": "string"}, "engine": {"type": "string"}, "main": {"type": "string"}}, "required": ["name", "version", "author", "repository", "licenses", "keywords", "description", "engine", "main"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "soundex", "version" : "0.2.1", "author" : {"name" : "Louis T.", "email" : "louist@ltdev.im", "url" : "http://github.com/LouisT/node-soundex"}, "repository" : {"type" : "git", "url" : "git://github.com/LouisT/node-soundex.git"}, "licenses" : [{"type" : "unlicensed", "url" : "http://unlicense.org/"}], "keywords" : ["soundex", "index", "text", "phonetic", "algorithm"], "description" : "Generate a soundex index for a word.", "engine" : "node => 0.6", "main" : "index.js"}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "author": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}, "url": {"type": "string"}}, "required": ["name", "email", "url"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "licenses": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}}, "keywords": {"type": "array", "items": {"type": "string"}}, "description": {"type": "string"}, "engine": {"type": "string"}, "main": {"type": "string"}}, "required": ["name", "version", "author", "repository", "licenses", "keywords", "description", "engine", "main"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "array", "items": {"type": "array", "items": {"type": "string"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
[["513230100001", "\u534e\u9f99\u793e\u533a\u5c45\u6c11\u59d4\u5458\u4f1a", "121", "0"], ["513230100002", "\u7965\u5858\u793e\u533a\u5c45\u6c11\u59d4\u5458\u4f1a", "121", "0"]]
json_instruct
{"type": "array", "items": {"type": "array", "items": {"type": "string"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "slug": {"type": "string"}, "powerstats": {"type": "object", "properties": {"intelligence": {"type": "integer"}, "strength": {"type": "integer"}, "speed": {"type": "integer"}, "durability": {"type": "integer"}, "power": {"type": "integer"}, "combat": {"type": "integer"}}, "required": ["intelligence", "strength", "speed", "durability", "power", "combat"]}, "appearance": {"type": "object", "properties": {"gender": {"type": "string"}, "race": {"type": "null"}, "height": {"type": "array", "items": {"type": "string"}}, "weight": {"type": "array", "items": {"type": "string"}}, "eyeColor": {"type": "string"}, "hairColor": {"type": "string"}}, "required": ["gender", "race", "height", "weight", "eyeColor", "hairColor"]}, "biography": {"type": "object", "properties": {"fullName": {"type": "string"}, "alterEgos": {"type": "string"}, "aliases": {"type": "array", "items": {"type": "string"}}, "placeOfBirth": {"type": "string"}, "firstAppearance": {"type": "string"}, "publisher": {"type": "string"}, "alignment": {"type": "string"}}, "required": ["fullName", "alterEgos", "aliases", "placeOfBirth", "firstAppearance", "publisher", "alignment"]}, "work": {"type": "object", "properties": {"occupation": {"type": "string"}, "base": {"type": "string"}}, "required": ["occupation", "base"]}, "connections": {"type": "object", "properties": {"groupAffiliation": {"type": "string"}, "relatives": {"type": "string"}}, "required": ["groupAffiliation", "relatives"]}, "images": {"type": "object", "properties": {"xs": {"type": "string"}, "sm": {"type": "string"}, "md": {"type": "string"}, "lg": {"type": "string"}}, "required": ["xs", "sm", "md", "lg"]}}, "required": ["id", "name", "slug", "powerstats", "appearance", "biography", "work", "connections", "images"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : 104, "name" : "Black Mamba", "slug" : "104-black-mamba", "powerstats" : {"intelligence" : 75, "strength" : 10, "speed" : 35, "durability" : 42, "power" : 88, "combat" : 65}, "appearance" : {"gender" : "Female", "race" : null, "height" : ["5'7", "170 cm"], "weight" : ["115 lb", "52 kg"], "eyeColor" : "Green", "hairColor" : "Black"}, "biography" : {"fullName" : "Tanya Sealy", "alterEgos" : "No alter egos found.", "aliases" : ["Tanya Sweet"], "placeOfBirth" : "Chicago, Illinois", "firstAppearance" : "Marvel Two-In-One #64", "publisher" : "Marvel Comics", "alignment" : "bad"}, "work" : {"occupation" : "Mercenary, professional criminal, former call girl", "base" : "Mobile, formerly Serpent Citadel"}, "connections" : {"groupAffiliation" : "Serpent Squad, Serpent Society, BAD Girls", "relatives" : "-"}, "images" : {"xs" : "https://raw.githubusercontent.com/Shaikh-Imran/superhero-api/master/api/images/xs/104-black-mamba.jpg", "sm" : "https://raw.githubusercontent.com/Shaikh-Imran/superhero-api/master/api/images/sm/104-black-mamba.jpg", "md" : "https://raw.githubusercontent.com/Shaikh-Imran/superhero-api/master/api/images/md/104-black-mamba.jpg", "lg" : "https://raw.githubusercontent.com/Shaikh-Imran/superhero-api/master/api/images/lg/104-black-mamba.jpg"}}
json_instruct
{"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "slug": {"type": "string"}, "powerstats": {"type": "object", "properties": {"intelligence": {"type": "integer"}, "strength": {"type": "integer"}, "speed": {"type": "integer"}, "durability": {"type": "integer"}, "power": {"type": "integer"}, "combat": {"type": "integer"}}, "required": ["intelligence", "strength", "speed", "durability", "power", "combat"]}, "appearance": {"type": "object", "properties": {"gender": {"type": "string"}, "race": {"type": "null"}, "height": {"type": "array", "items": {"type": "string"}}, "weight": {"type": "array", "items": {"type": "string"}}, "eyeColor": {"type": "string"}, "hairColor": {"type": "string"}}, "required": ["gender", "race", "height", "weight", "eyeColor", "hairColor"]}, "biography": {"type": "object", "properties": {"fullName": {"type": "string"}, "alterEgos": {"type": "string"}, "aliases": {"type": "array", "items": {"type": "string"}}, "placeOfBirth": {"type": "string"}, "firstAppearance": {"type": "string"}, "publisher": {"type": "string"}, "alignment": {"type": "string"}}, "required": ["fullName", "alterEgos", "aliases", "placeOfBirth", "firstAppearance", "publisher", "alignment"]}, "work": {"type": "object", "properties": {"occupation": {"type": "string"}, "base": {"type": "string"}}, "required": ["occupation", "base"]}, "connections": {"type": "object", "properties": {"groupAffiliation": {"type": "string"}, "relatives": {"type": "string"}}, "required": ["groupAffiliation", "relatives"]}, "images": {"type": "object", "properties": {"xs": {"type": "string"}, "sm": {"type": "string"}, "md": {"type": "string"}, "lg": {"type": "string"}}, "required": ["xs", "sm", "md", "lg"]}}, "required": ["id", "name", "slug", "powerstats", "appearance", "biography", "work", "connections", "images"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"description": {"type": "string"}, "number": {"type": "string"}, "class": {"type": "string"}}, "required": ["description", "number", "class"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"description" : "Beryllium nitrate", "number" : "2464", "class" : "5.1"}
json_instruct
{"type": "object", "properties": {"description": {"type": "string"}, "number": {"type": "string"}, "class": {"type": "string"}}, "required": ["description", "number", "class"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"generated_at": {"type": "string"}, "required_by": {"type": "array", "items": {"type": "string"}}, "requires": {"type": "array", "items": {"type": "string"}}, "package": {"type": "string"}}, "required": ["generated_at", "required_by", "requires", "package"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"generated_at" : "2017-01-27T09:37:33.873422", "required_by" : ["django-report-scaffold", "django-simple-helpdesk", "django-wbc", "django-direct", "django-apollo", "dartcms", "django-advanced-reports", "money-to-prisoners-common", "quickstartup", "django-twitterbootstrap-form", "ThorsonWiki", "webuildcity", "varify", "django_reform", "django-machina", "zbx-dashboard", "django-djmongo", "django-mootools-behavior"], "requires" : ["django"], "package" : "django-widget-tweaks"}
json_instruct
{"type": "object", "properties": {"generated_at": {"type": "string"}, "required_by": {"type": "array", "items": {"type": "string"}}, "requires": {"type": "array", "items": {"type": "string"}}, "package": {"type": "string"}}, "required": ["generated_at", "required_by", "requires", "package"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"main": {"type": "string"}}, "required": ["main"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"main" : "wh.google.analytics.js"}
json_instruct
{"type": "object", "properties": {"main": {"type": "string"}}, "required": ["main"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"title": {"type": "string"}, "genre": {"type": "string"}, "creators": {"type": "array", "items": {}}, "cast": {"type": "array", "items": {"type": "string"}}, "country_of_origin": {"type": "string"}, "seasons": {"type": "integer"}, "episodes": {"type": "integer"}, "start_date": {"type": "string"}, "end_date": {"type": "string"}}, "required": ["title", "genre", "creators", "cast", "country_of_origin", "seasons", "episodes", "start_date", "end_date"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"title" : "Four Star Playhouse", "genre" : "", "creators" : [], "cast" : ["David Niven", "Charles Boyer", "Dick Powell", "Ida Lupino"], "country_of_origin" : "USA", "seasons" : 0, "episodes" : 129, "start_date" : "", "end_date" : ""}
json_instruct
{"type": "object", "properties": {"title": {"type": "string"}, "genre": {"type": "string"}, "creators": {"type": "array", "items": {}}, "cast": {"type": "array", "items": {"type": "string"}}, "country_of_origin": {"type": "string"}, "seasons": {"type": "integer"}, "episodes": {"type": "integer"}, "start_date": {"type": "string"}, "end_date": {"type": "string"}}, "required": ["title", "genre", "creators", "cast", "country_of_origin", "seasons", "episodes", "start_date", "end_date"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"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" : "0x55aa079e2fb0c8b68a0a08efbff3f1aa5472f1a2", "tool" : "osiris", "start" : 1564620216.2479424, "end" : 1564620218.8580475, "duration" : 2.610105037689209, "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#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"item": {"type": "integer"}, "index": {"type": "integer"}}, "required": ["item", "index"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"item" : 243, "index" : 0}
json_instruct
{"type": "object", "properties": {"item": {"type": "integer"}, "index": {"type": "integer"}}, "required": ["item", "index"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"lights": {"type": "array", "items": {"type": "object", "properties": {"angle": {"type": "number"}, "color": {"type": "array", "items": {"type": "number"}}, "pos": {"type": "array", "items": {"type": "number"}}, "radius": {"type": "number"}, "rot": {"type": "array", "items": {"type": "number"}}, "size": {"type": "number"}, "type": {"type": "integer"}}, "required": ["angle", "color", "pos", "radius", "rot", "size", "type"]}}}, "required": ["lights"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"lights" : [{"angle" : 69.0, "color" : [0.0, 7.843137264251709, 11.764705657958984], "pos" : [0.5994455218315125, 1.0072081089019775, 0.7158395648002625, 0.0], "radius" : 200.0, "rot" : [-0.1899939924478531, 0.02998405694961548, 0.0, 0.0], "size" : 0.0872664600610733, "type" : 0}, {"angle" : 0.6981316804885864, "color" : [1.0, 0.9999899864196777, 0.9999899864196777], "pos" : [0.8884486556053162, 1.0663642883300781, 0.0, 0.0], "radius" : 0.0, "rot" : [0.0, 0.0, 0.0, 0.0], "size" : 0.0, "type" : 0}]}
json_instruct
{"type": "object", "properties": {"lights": {"type": "array", "items": {"type": "object", "properties": {"angle": {"type": "number"}, "color": {"type": "array", "items": {"type": "number"}}, "pos": {"type": "array", "items": {"type": "number"}}, "radius": {"type": "number"}, "rot": {"type": "array", "items": {"type": "number"}}, "size": {"type": "number"}, "type": {"type": "integer"}}, "required": ["angle", "color", "pos", "radius", "rot", "size", "type"]}}}, "required": ["lights"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"name": {"type": "string"}, "height": {"type": "string"}, "mass": {"type": "string"}, "hair_color": {"type": "string"}, "skin_color": {"type": "string"}, "eye_color": {"type": "string"}, "birth_year": {"type": "string"}, "gender": {"type": "string"}, "homeworld": {"type": "string"}, "films": {"type": "array", "items": {"type": "string"}}, "species": {"type": "array", "items": {"type": "string"}}, "vehicles": {"type": "array", "items": {}}, "starships": {"type": "array", "items": {}}, "created": {"type": "string"}, "edited": {"type": "string"}, "url": {"type": "string"}}, "required": ["name", "height", "mass", "hair_color", "skin_color", "eye_color", "birth_year", "gender", "homeworld", "films", "species", "vehicles", "starships", "created", "edited", "url"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "Finn", "height" : "unknown", "mass" : "unknown", "hair_color" : "black", "skin_color" : "dark", "eye_color" : "dark", "birth_year" : "unknown", "gender" : "male", "homeworld" : "https://swapi.co/api/planets/28/", "films" : ["https://swapi.co/api/films/7/"], "species" : ["https://swapi.co/api/species/1/"], "vehicles" : [], "starships" : [], "created" : "2015-04-17T06:52:40.793621Z", "edited" : "2015-04-17T06:52:40.793674Z", "url" : "https://swapi.co/api/people/84/"}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "height": {"type": "string"}, "mass": {"type": "string"}, "hair_color": {"type": "string"}, "skin_color": {"type": "string"}, "eye_color": {"type": "string"}, "birth_year": {"type": "string"}, "gender": {"type": "string"}, "homeworld": {"type": "string"}, "films": {"type": "array", "items": {"type": "string"}}, "species": {"type": "array", "items": {"type": "string"}}, "vehicles": {"type": "array", "items": {}}, "starships": {"type": "array", "items": {}}, "created": {"type": "string"}, "edited": {"type": "string"}, "url": {"type": "string"}}, "required": ["name", "height", "mass", "hair_color", "skin_color", "eye_color", "birth_year", "gender", "homeworld", "films", "species", "vehicles", "starships", "created", "edited", "url"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"text": {"type": "string"}, "created": {"type": "string"}, "type": {"type": "string"}, "urlvideo": {"type": "string"}}, "required": ["text", "created", "type", "urlvideo"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"text" : "This <a href=\"https://www.youtube.com/watch?v=ICW-dGD1M18\">campaign ad</a> for Valerie Plame made me LOL. ", "created" : "Mon, 09 Sep 2019 16:15:22 GMT", "type" : "outline", "urlvideo" : "https://www.youtube.com/watch?v=ICW-dGD1M18"}
json_instruct
{"type": "object", "properties": {"text": {"type": "string"}, "created": {"type": "string"}, "type": {"type": "string"}, "urlvideo": {"type": "string"}}, "required": ["text", "created", "type", "urlvideo"], "$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"}, "productName": {"type": "string"}, "identifier": {"type": "string"}, "description": {"type": "string"}, "version": {"type": "string"}, "author": {"type": "string"}, "main": {"type": "string"}, "config": {"type": "object", "properties": {"target": {"type": "string"}}, "required": ["target"]}, "dependencies": {"type": "object", "properties": {"fs-jetpack": {"type": "string"}}, "required": ["fs-jetpack"]}}, "required": ["name", "productName", "identifier", "description", "version", "author", "main", "config", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "rocketchat", "productName" : "Rocket.Chat", "identifier" : "com.example.rocketchat", "description" : "Rocket.Chat Native Cross-Platform Desktop Application via Electron.", "version" : "0.0.2", "author" : "Rocket.Chat Support <support@rocket.chat>", "main" : "main.js", "config" : {"target" : "development"}, "dependencies" : {"fs-jetpack" : "^0.6.5"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "productName": {"type": "string"}, "identifier": {"type": "string"}, "description": {"type": "string"}, "version": {"type": "string"}, "author": {"type": "string"}, "main": {"type": "string"}, "config": {"type": "object", "properties": {"target": {"type": "string"}}, "required": ["target"]}, "dependencies": {"type": "object", "properties": {"fs-jetpack": {"type": "string"}}, "required": ["fs-jetpack"]}}, "required": ["name", "productName", "identifier", "description", "version", "author", "main", "config", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"IsRecentlyVerified": {"type": "boolean"}, "ID": {"type": "integer"}, "UUID": {"type": "string"}, "DataProviderID": {"type": "integer"}, "DataProvidersReference": {"type": "string"}, "UsageTypeID": {"type": "integer"}, "AddressInfo": {"type": "object", "properties": {"ID": {"type": "integer"}, "Title": {"type": "string"}, "AddressLine1": {"type": "string"}, "Town": {"type": "string"}, "StateOrProvince": {"type": "string"}, "Postcode": {"type": "string"}, "CountryID": {"type": "integer"}, "Latitude": {"type": "number"}, "Longitude": {"type": "number"}, "ContactTelephone1": {"type": "string"}, "AccessComments": {"type": "string"}, "RelatedURL": {"type": "string"}, "DistanceUnit": {"type": "integer"}}, "required": ["ID", "Title", "AddressLine1", "Town", "StateOrProvince", "Postcode", "CountryID", "Latitude", "Longitude", "ContactTelephone1", "AccessComments", "RelatedURL", "DistanceUnit"]}, "Connections": {"type": "array", "items": {"type": "object", "properties": {"ID": {"type": "integer"}, "ConnectionTypeID": {"type": "integer"}, "LevelID": {"type": "integer"}, "Amps": {"type": "integer"}, "Voltage": {"type": "integer"}, "PowerKW": {"type": "integer"}, "CurrentTypeID": {"type": "integer"}, "Quantity": {"type": "integer"}}, "required": ["ID", "ConnectionTypeID", "LevelID", "Amps", "Voltage", "PowerKW", "CurrentTypeID", "Quantity"]}}, "DateLastStatusUpdate": {"type": "string"}, "DataQualityLevel": {"type": "integer"}, "DateCreated": {"type": "string"}, "SubmissionStatusTypeID": {"type": "integer"}}, "required": ["IsRecentlyVerified", "ID", "UUID", "DataProviderID", "DataProvidersReference", "UsageTypeID", "AddressInfo", "Connections", "DateLastStatusUpdate", "DataQualityLevel", "DateCreated", "SubmissionStatusTypeID"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"IsRecentlyVerified" : false, "ID" : 74467, "UUID" : "9C29CBD5-E318-4CEA-A3AB-5FAF44C5C6FE", "DataProviderID" : 2, "DataProvidersReference" : "79873", "UsageTypeID" : 7, "AddressInfo" : {"ID" : 74813, "Title" : "Duke Chevrolet", "AddressLine1" : "2016 N Main St", "Town" : "Suffolk", "StateOrProvince" : "VA", "Postcode" : "23434", "CountryID" : 2, "Latitude" : 36.75832, "Longitude" : -76.585905, "ContactTelephone1" : "757-337-4409", "AccessComments" : "24 hours daily", "RelatedURL" : "", "DistanceUnit" : 0}, "Connections" : [{"ID" : 107056, "ConnectionTypeID" : 1, "LevelID" : 2, "Amps" : 16, "Voltage" : 230, "PowerKW" : 3, "CurrentTypeID" : 10, "Quantity" : 1}], "DateLastStatusUpdate" : "2019-04-06T04:02:00Z", "DataQualityLevel" : 3, "DateCreated" : "2016-12-03T00:12:00Z", "SubmissionStatusTypeID" : 100}
json_instruct
{"type": "object", "properties": {"IsRecentlyVerified": {"type": "boolean"}, "ID": {"type": "integer"}, "UUID": {"type": "string"}, "DataProviderID": {"type": "integer"}, "DataProvidersReference": {"type": "string"}, "UsageTypeID": {"type": "integer"}, "AddressInfo": {"type": "object", "properties": {"ID": {"type": "integer"}, "Title": {"type": "string"}, "AddressLine1": {"type": "string"}, "Town": {"type": "string"}, "StateOrProvince": {"type": "string"}, "Postcode": {"type": "string"}, "CountryID": {"type": "integer"}, "Latitude": {"type": "number"}, "Longitude": {"type": "number"}, "ContactTelephone1": {"type": "string"}, "AccessComments": {"type": "string"}, "RelatedURL": {"type": "string"}, "DistanceUnit": {"type": "integer"}}, "required": ["ID", "Title", "AddressLine1", "Town", "StateOrProvince", "Postcode", "CountryID", "Latitude", "Longitude", "ContactTelephone1", "AccessComments", "RelatedURL", "DistanceUnit"]}, "Connections": {"type": "array", "items": {"type": "object", "properties": {"ID": {"type": "integer"}, "ConnectionTypeID": {"type": "integer"}, "LevelID": {"type": "integer"}, "Amps": {"type": "integer"}, "Voltage": {"type": "integer"}, "PowerKW": {"type": "integer"}, "CurrentTypeID": {"type": "integer"}, "Quantity": {"type": "integer"}}, "required": ["ID", "ConnectionTypeID", "LevelID", "Amps", "Voltage", "PowerKW", "CurrentTypeID", "Quantity"]}}, "DateLastStatusUpdate": {"type": "string"}, "DataQualityLevel": {"type": "integer"}, "DateCreated": {"type": "string"}, "SubmissionStatusTypeID": {"type": "integer"}}, "required": ["IsRecentlyVerified", "ID", "UUID", "DataProviderID", "DataProvidersReference", "UsageTypeID", "AddressInfo", "Connections", "DateLastStatusUpdate", "DataQualityLevel", "DateCreated", "SubmissionStatusTypeID"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"lastUpdated": {"type": "integer"}, "username": {"type": "string"}, "scores": {"type": "array", "items": {"type": "object", "properties": {"xp": {"type": "integer"}, "rank": {"type": "integer"}, "cardId": {"type": "integer"}}, "required": ["xp", "rank", "cardId"]}}}, "required": ["lastUpdated", "username", "scores"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"lastUpdated" : 1655019279666, "username" : "MohamedBt91", "scores" : [{"xp" : 2165, "rank" : 363, "cardId" : 619}]}
json_instruct
{"type": "object", "properties": {"lastUpdated": {"type": "integer"}, "username": {"type": "string"}, "scores": {"type": "array", "items": {"type": "object", "properties": {"xp": {"type": "integer"}, "rank": {"type": "integer"}, "cardId": {"type": "integer"}}, "required": ["xp", "rank", "cardId"]}}}, "required": ["lastUpdated", "username", "scores"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "type": {"type": "string"}, "minimum-stability": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "require": {"type": "object", "properties": {"php": {"type": "string"}, "drush/drush": {"type": "string"}, "symfony/console": {"type": "string"}}, "required": ["php", "drush/drush", "symfony/console"]}, "license": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}}, "bin": {"type": "array", "items": {"type": "string"}}, "autoload": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"DrupalInstallCli\\": {"type": "string"}}, "required": ["DrupalInstallCli\\"]}}, "required": ["psr-4"]}, "config": {"type": "object", "properties": {"optimize-autoloader": {"type": "boolean"}, "sort-packages": {"type": "boolean"}}, "required": ["optimize-autoloader", "sort-packages"]}}, "required": ["name", "description", "type", "minimum-stability", "keywords", "require", "license", "authors", "bin", "autoload", "config"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "awd-studio/drupal-install-cli", "description" : "Provide a command for installing drupal with Drush from the command line", "type" : "library", "minimum-stability" : "dev", "keywords" : ["drupal", "drupal-7", "drupal-8", "drupal-install", "drush", "symfony-console", "cli"], "require" : {"php" : "^7.1", "drush/drush" : "^8.0 || ^9.0", "symfony/console" : "^3.0 || ^4.0"}, "license" : "MIT", "authors" : [{"name" : "Anton Karpov", "email" : "awd.com.ua@gmail.com"}], "bin" : ["bin/drupal-install-cli"], "autoload" : {"psr-4" : {"DrupalInstallCli\\" : "src/DrupalInstallCli"}}, "config" : {"optimize-autoloader" : true, "sort-packages" : true}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "type": {"type": "string"}, "minimum-stability": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "require": {"type": "object", "properties": {"php": {"type": "string"}, "drush/drush": {"type": "string"}, "symfony/console": {"type": "string"}}, "required": ["php", "drush/drush", "symfony/console"]}, "license": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}}, "bin": {"type": "array", "items": {"type": "string"}}, "autoload": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"DrupalInstallCli\\": {"type": "string"}}, "required": ["DrupalInstallCli\\"]}}, "required": ["psr-4"]}, "config": {"type": "object", "properties": {"optimize-autoloader": {"type": "boolean"}, "sort-packages": {"type": "boolean"}}, "required": ["optimize-autoloader", "sort-packages"]}}, "required": ["name", "description", "type", "minimum-stability", "keywords", "require", "license", "authors", "bin", "autoload", "config"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"name": {"type": "string"}, "id": {"type": "string"}, "address": {"type": "string"}, "school_type": {"type": "string"}, "fax": {"type": "string"}, "phone": {"type": "string"}, "website": {"type": "null"}, "email": {"type": "string"}, "headmaster": {"type": "string"}, "state": {"type": "string"}, "programs": {"type": "object", "properties": {"programs": {"type": "array", "items": {}}}, "required": ["programs"]}, "full_time_school": {"type": "boolean"}, "lon": {"type": "number"}, "lat": {"type": "number"}}, "required": ["name", "id", "address", "school_type", "fax", "phone", "website", "email", "headmaster", "state", "programs", "full_time_school", "lon", "lat"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "Johann-Heinrich-von-Th\u00fcnen-Schule \nRegionale Schule mit Grundschule, J\u00f6rdenstorf", "id" : "MV-75435338", "address" : "Klenzer Weg 6, 17168 J\u00f6rdenstorf", "school_type" : "Regionale Schule mit Grundschule", "fax" : "039977/30314", "phone" : "039977/30224", "website" : null, "email" : "rs-joerdenstorf@t-online.de", "headmaster" : " Jens G\u00f6rke", "state" : "MV", "programs" : {"programs" : []}, "full_time_school" : false, "lon" : 12.619305, "lat" : 53.87674}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "id": {"type": "string"}, "address": {"type": "string"}, "school_type": {"type": "string"}, "fax": {"type": "string"}, "phone": {"type": "string"}, "website": {"type": "null"}, "email": {"type": "string"}, "headmaster": {"type": "string"}, "state": {"type": "string"}, "programs": {"type": "object", "properties": {"programs": {"type": "array", "items": {}}}, "required": ["programs"]}, "full_time_school": {"type": "boolean"}, "lon": {"type": "number"}, "lat": {"type": "number"}}, "required": ["name", "id", "address", "school_type", "fax", "phone", "website", "email", "headmaster", "state", "programs", "full_time_school", "lon", "lat"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"index": {"type": "integer"}, "hash": {"type": "integer"}, "blacklisted": {"type": "boolean"}, "mappingIndex": {"type": "integer"}, "redacted": {"type": "boolean"}, "mappingHash": {"type": "integer"}, "isGlobal": {"type": "boolean"}}, "required": ["index", "hash", "blacklisted", "mappingIndex", "redacted", "mappingHash", "isGlobal"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"index" : 2866, "hash" : 565095313, "blacklisted" : false, "mappingIndex" : 0, "redacted" : false, "mappingHash" : 0, "isGlobal" : false}
json_instruct
{"type": "object", "properties": {"index": {"type": "integer"}, "hash": {"type": "integer"}, "blacklisted": {"type": "boolean"}, "mappingIndex": {"type": "integer"}, "redacted": {"type": "boolean"}, "mappingHash": {"type": "integer"}, "isGlobal": {"type": "boolean"}}, "required": ["index", "hash", "blacklisted", "mappingIndex", "redacted", "mappingHash", "isGlobal"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "array", "items": {"type": "array", "items": {"type": "string"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
[["(", "Verse", "1", ":", "Tip", "and", "Phife", ")"], ["Drove", "around", "the", "block", ",", "drove", "a", "lot", ","], ["Lookin", "'", "all", "around", ",", "do", "n't", "see", "no", "cops", ","], ["Whispered", "in", "your", "ear", ",", "a", "ghetto", "star", ","], ["Sittin", "'", "on", "my", "lap", "inside", "of", "my", "car", ","], ["Lookin", "'", "at", "my", "lips", ",", "take", "a", "taste", ","], ["Taste", "yours", "too", ",", "rub", "your", "back", ","], ["Run", "your", "fingers", "on", "the", "logo", "of", "my", "baseball", "hat", ","], ["Moonlight", "dancin", "'", "inside", "of", "your", "eyes", ","], ["Close", "your", "legs", ",", "I", "start", "to", "sigh", ","], ["Now", "I", "reach", "down", "to", "unlace", "my", "Nikes", ","], ["Kick", "off", "your", "Adidas", "'cause", "that", "'s", "what", "you", "like", ","], ["Chris", "Tucker", "joke", "passed", "inside", "of", "my", "head", ","], ["Put", "the", "thought", "away", "think", "of", "you", "instead", ","], ["Hot", "outside", ",", "it", "'s", "hot", "in", "here", ","], ["Roll", "down", "the", "window", "the", "breeze", "in", "your", "hair", ","], ["Your", "earrings", "shake", ",", "you", "a", "baby", "doll", ","], ["You", "say", "you", "want", "me", "but", "did", "you", "want", "them", "all", "?"], ["Make", "me", "feel", "special", ",", "I", "know", "that", "you", "can", ","]]
json_instruct
{"type": "array", "items": {"type": "array", "items": {"type": "string"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
[[1926, 5], [1929, 5], [1959, 8], [1960, 7], [1967, 7], [1968, 5], [1969, 5], [1971, 7], [1972, 5], [1973, 7], [1976, 7], [1979, 9], [1980, 8], [1981, 10], [1982, 6], [1984, 6], [1986, 8], [1987, 5], [1988, 5], [1989, 11], [1990, 14], [1991, 16], [1992, 23], [1993, 19], [1994, 10], [1995, 13], [1996, 10], [1997, 8], [1998, 7], [1999, 14], [2001, 8], [2004, 6], [2005, 5], [2007, 5], [2011, 5]]
json_instruct
{"type": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"address": {"type": "string"}, "cert_auth_type": {"type": "string"}, "cert_sign": {"type": "string"}, "cert_user_id": {"type": "string"}, "files": {"type": "object", "properties": {"data.json": {"type": "object", "properties": {"sha512": {"type": "string"}, "size": {"type": "integer"}}, "required": ["sha512", "size"]}}, "required": ["data.json"]}, "inner_path": {"type": "string"}, "modified": {"type": "integer"}, "signs": {"type": "object", "properties": {"19516ePRXeccspB678wv6XyDhMpoTXfpSa": {"type": "string"}}, "required": ["19516ePRXeccspB678wv6XyDhMpoTXfpSa"]}}, "required": ["address", "cert_auth_type", "cert_sign", "cert_user_id", "files", "inner_path", "modified", "signs"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"address" : "1oranGeS2xsKZ4jVsu9SVttzgkYXu4k9v", "cert_auth_type" : "web", "cert_sign" : "G9+/KQ99ZQ3k4WehG/CzokFBeZ3J3fNLM4ghAjN43hSdv9xjJDn/dkWyElWZD3vtnrgxw15hv7hIR2PD4hk0Qrc=", "cert_user_id" : "dixoncox@zeroid.bit", "files" : {"data.json" : {"sha512" : "7451ae923750fc39b7bd00ede4005e4fa08281a76ba7e05f0a59df0b78eca617", "size" : 341}}, "inner_path" : "data/users/19516ePRXeccspB678wv6XyDhMpoTXfpSa/content.json", "modified" : 1484935808, "signs" : {"19516ePRXeccspB678wv6XyDhMpoTXfpSa" : "HCWLqQLSC+KJwFyGoYisBuhspmvJXHC447AzblB1GqY/XHx+xTFI0Gdu9x/xS9fIBNOUoMpzPAwleh4LDfX/N5Q="}}
json_instruct
{"type": "object", "properties": {"address": {"type": "string"}, "cert_auth_type": {"type": "string"}, "cert_sign": {"type": "string"}, "cert_user_id": {"type": "string"}, "files": {"type": "object", "properties": {"data.json": {"type": "object", "properties": {"sha512": {"type": "string"}, "size": {"type": "integer"}}, "required": ["sha512", "size"]}}, "required": ["data.json"]}, "inner_path": {"type": "string"}, "modified": {"type": "integer"}, "signs": {"type": "object", "properties": {"19516ePRXeccspB678wv6XyDhMpoTXfpSa": {"type": "string"}}, "required": ["19516ePRXeccspB678wv6XyDhMpoTXfpSa"]}}, "required": ["address", "cert_auth_type", "cert_sign", "cert_user_id", "files", "inner_path", "modified", "signs"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"471011": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}, "count": {"type": "integer"}, "47207X": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}, "999920": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}, "37201X": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}, "537051": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}, "493023": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}, "514041": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}, "472061": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}, "472140": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}, "N.A.//": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}, "472031": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}, "533030": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}, "3590XX": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}, "512090": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}}, "required": ["471011", "count", "47207X", "999920", "37201X", "537051", "493023", "514041", "472061", "472140", "N.A.//", "472031", "533030", "3590XX", "512090"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"471011" : {"count" : 1}, "count" : 55, "47207X" : {"count" : 1}, "999920" : {"count" : 1}, "37201X" : {"count" : 1}, "537051" : {"count" : 1}, "493023" : {"count" : 1}, "514041" : {"count" : 1}, "472061" : {"count" : 2}, "472140" : {"count" : 1}, "N.A.//" : {"count" : 38}, "472031" : {"count" : 1}, "533030" : {"count" : 3}, "3590XX" : {"count" : 2}, "512090" : {"count" : 1}}
json_instruct
{"type": "object", "properties": {"471011": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}, "count": {"type": "integer"}, "47207X": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}, "999920": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}, "37201X": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}, "537051": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}, "493023": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}, "514041": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}, "472061": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}, "472140": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}, "N.A.//": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}, "472031": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}, "533030": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}, "3590XX": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}, "512090": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}}, "required": ["471011", "count", "47207X", "999920", "37201X", "537051", "493023", "514041", "472061", "472140", "N.A.//", "472031", "533030", "3590XX", "512090"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"title": {"type": "string"}, "author": {"type": "string"}, "description": {"type": "string"}, "thumb": {"type": "string"}, "download": {"type": "string"}, "origin": {"type": "string"}}, "required": ["title", "author", "description", "thumb", "download", "origin"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"title" : "MikuMikuDance - Crime Knights Miku - Final Pole Dance (R-18) ? (HD 1080p)", "author" : "Aida_Mana", "description" : "ichundefinedhoffeundefinedesundefinedgef\u00e4lltundefinedeuch<br>Iundefinedhopeundefinedyouundefinedenjoyundefinedit<br>\u3042\u306a\u305f\u304c\u3053\u308c\u3092\u6c17\u306b\u5165\u3063\u3066\u304f\u308c\u308b\u3068\u3044\u3044\u3093\u3060\u3051\u3069", "thumb" : "//i.iwara.tv/sites/default/files/styles/thumbnail/public/videos/thumbnails/558007/thumbnail-558007_0004.jpg?itok=QlIkqkXJ", "download" : "https://www.iwara.tv/api/video/jrd8af7vpfebvyny", "origin" : "https://www.iwara.tv/videos/jrd8af7vpfebvyny"}
json_instruct
{"type": "object", "properties": {"title": {"type": "string"}, "author": {"type": "string"}, "description": {"type": "string"}, "thumb": {"type": "string"}, "download": {"type": "string"}, "origin": {"type": "string"}}, "required": ["title", "author", "description", "thumb", "download", "origin"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"by": {"type": "string"}, "descendants": {"type": "integer"}, "id": {"type": "integer"}, "kids": {"type": "array", "items": {"type": "integer"}}, "score": {"type": "integer"}, "time": {"type": "integer"}, "title": {"type": "string"}, "type": {"type": "string"}, "url": {"type": "string"}}, "required": ["by", "descendants", "id", "kids", "score", "time", "title", "type", "url"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"by" : "danielkdewar", "descendants" : 3, "id" : 18066213, "kids" : [18069196], "score" : 33, "time" : 1537882923, "title" : "Show HN: Vue.js applications that interact with Ethereum smart contracts", "type" : "story", "url" : "https://nuxt-box.paperchain.io/"}
json_instruct
{"type": "object", "properties": {"by": {"type": "string"}, "descendants": {"type": "integer"}, "id": {"type": "integer"}, "kids": {"type": "array", "items": {"type": "integer"}}, "score": {"type": "integer"}, "time": {"type": "integer"}, "title": {"type": "string"}, "type": {"type": "string"}, "url": {"type": "string"}}, "required": ["by", "descendants", "id", "kids", "score", "time", "title", "type", "url"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"jquery.twinkle.js": {"type": "string"}, "jquery.twinkle.min.js": {"type": "string"}}, "required": ["jquery.twinkle.js", "jquery.twinkle.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"jquery.twinkle.js" : "sha256-n5VrF3gxX2R1XnMDd5gO5mJ+xNF9G27GyNs1X59RWns=", "jquery.twinkle.min.js" : "sha256-HCD9SdQySZLueemK3PKRrYV53vAbb8p5rJBgXN4rb0k="}
json_instruct
{"type": "object", "properties": {"jquery.twinkle.js": {"type": "string"}, "jquery.twinkle.min.js": {"type": "string"}}, "required": ["jquery.twinkle.js", "jquery.twinkle.min.js"], "$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"}, "tel": {"type": "string"}, "fax": {"type": "string"}, "licensee": {"type": "string"}, "licensePeriod": {"type": "string"}, "licenseClass": {"type": "string"}, "hciCode": {"type": "string"}, "address": {"type": "string"}, "doctorInCharge": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "qualifications": {"type": "array", "items": {"type": "string"}}, "specialties": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "qualifications", "specialties"]}}, "detailedServices": {"type": "object", "properties": {"General Medical": {"type": "boolean"}}, "required": ["General Medical"]}, "programmes": {"type": "array", "items": {"type": "string"}}, "operatingHours": {"type": "object", "properties": {"Monday to Wednesday": {"type": "string"}, "Thursday": {"type": "string"}, "Friday": {"type": "string"}, "Saturday": {"type": "string"}, "Sunday and Public Holiday": {"type": "string"}}, "required": ["Monday to Wednesday", "Thursday", "Friday", "Saturday", "Sunday and Public Holiday"]}}, "required": ["name", "tel", "fax", "licensee", "licensePeriod", "licenseClass", "hciCode", "address", "doctorInCharge", "detailedServices", "programmes", "operatingHours"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "THE CHONG FAMILY CLINIC PTE LTD", "tel" : "62661998", "fax" : "67784886", "licensee" : "The Chong Family Clinic Pte Ltd", "licensePeriod" : "05/03/2017 to 04/03/2019", "licenseClass" : "[ 2 Years ( 2A ) ]", "hciCode" : "17M0052", "address" : "BLK 442 CLEMENTI AVENUE 3, #01-113 Singapore 120442", "doctorInCharge" : [{"name" : "Chong Wai Mun", "qualifications" : ["MBBS (National University of Singapore, Singapore) 2002"], "specialties" : ["Family Physician"]}], "detailedServices" : {"General Medical" : true}, "programmes" : ["Chronic Disease Management Programme (CDMP)", "Community Health Assistance Scheme (CHAS)", "Integrated Screening Programme (ISP) "], "operatingHours" : {"Monday to Wednesday" : "08:30 am to 03:00 pm, 06:00 pm to 09:30 pm", "Thursday" : "08:30 am to 03:00 pm", "Friday" : "08:30 am to 03:00 pm, 06:00 pm to 09:30 pm", "Saturday" : "08:30 am to 01:00 pm", "Sunday and Public Holiday" : "Closed"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "tel": {"type": "string"}, "fax": {"type": "string"}, "licensee": {"type": "string"}, "licensePeriod": {"type": "string"}, "licenseClass": {"type": "string"}, "hciCode": {"type": "string"}, "address": {"type": "string"}, "doctorInCharge": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "qualifications": {"type": "array", "items": {"type": "string"}}, "specialties": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "qualifications", "specialties"]}}, "detailedServices": {"type": "object", "properties": {"General Medical": {"type": "boolean"}}, "required": ["General Medical"]}, "programmes": {"type": "array", "items": {"type": "string"}}, "operatingHours": {"type": "object", "properties": {"Monday to Wednesday": {"type": "string"}, "Thursday": {"type": "string"}, "Friday": {"type": "string"}, "Saturday": {"type": "string"}, "Sunday and Public Holiday": {"type": "string"}}, "required": ["Monday to Wednesday", "Thursday", "Friday", "Saturday", "Sunday and Public Holiday"]}}, "required": ["name", "tel", "fax", "licensee", "licensePeriod", "licenseClass", "hciCode", "address", "doctorInCharge", "detailedServices", "programmes", "operatingHours"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"head_neck": {"type": "object", "properties": {"accuracy": {"type": "number"}, "roc_auc": {"type": "number"}, "recall": {"type": "number"}, "precision": {"type": "number"}, "f1_score": {"type": "number"}, "negative_recall": {"type": "number"}, "negative_precision": {"type": "number"}, "negative_f1_score": {"type": "number"}}, "required": ["accuracy", "roc_auc", "recall", "precision", "f1_score", "negative_recall", "negative_precision", "negative_f1_score"]}}, "required": ["head_neck"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"head_neck" : {"accuracy" : 0.6625, "roc_auc" : 0.741445707070707, "recall" : 0.6694444444444444, "precision" : 0.6147959183673469, "f1_score" : 0.6409574468085106, "negative_recall" : 0.6568181818181819, "negative_precision" : 0.7083333333333334, "negative_f1_score" : 0.6816037735849058}}
json_instruct
{"type": "object", "properties": {"head_neck": {"type": "object", "properties": {"accuracy": {"type": "number"}, "roc_auc": {"type": "number"}, "recall": {"type": "number"}, "precision": {"type": "number"}, "f1_score": {"type": "number"}, "negative_recall": {"type": "number"}, "negative_precision": {"type": "number"}, "negative_f1_score": {"type": "number"}}, "required": ["accuracy", "roc_auc", "recall", "precision", "f1_score", "negative_recall", "negative_precision", "negative_f1_score"]}}, "required": ["head_neck"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "dependencies": {"type": "array", "items": {"type": "string"}}, "js": {"type": "string"}, "css": {"type": "string"}, "html": {"type": "string"}}, "required": ["name", "description", "dependencies", "js", "css", "html"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "Network File loader", "description" : "a widget to load files to create a new network data set", "dependencies" : ["Biojs.FileLoader.js", "jquery.form.js"], "js" : "NetworkLoader.js", "css" : "NetworkLoader.css", "html" : "NetworkLoader.html"}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "dependencies": {"type": "array", "items": {"type": "string"}}, "js": {"type": "string"}, "css": {"type": "string"}, "html": {"type": "string"}}, "required": ["name", "description", "dependencies", "js", "css", "html"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"name": {"type": "string"}, "type": {"type": "string"}, "order": {"type": "integer"}, "devices": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "type", "order", "devices"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "iPad Air (3rd generation)", "type" : "Air", "order" : 2, "devices" : ["iPad11,3", "iPad11,4"]}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "type": {"type": "string"}, "order": {"type": "integer"}, "devices": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "type", "order", "devices"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"@context": {"type": "string"}, "@graph": {"type": "array", "items": {"type": "object", "properties": {"@id": {"type": "string"}, "@type": {"type": "string"}, "index": {"type": "object", "properties": {"@id": {"type": "string"}}, "required": ["@id"]}, "templateEngine": {"type": "object", "properties": {"comment": {"type": "string"}, "@type": {"type": "string"}, "renderedName": {"type": "string"}, "engines": {"type": "array", "items": {"type": "object", "properties": {"comment": {"type": "string"}, "@type": {"type": "string"}}, "required": ["comment", "@type"]}}}, "required": ["comment", "@type", "renderedName", "engines"]}, "templates": {"type": "array", "items": {"type": "object", "properties": {"HtmlViewHandler:_templates_key": {"type": "string"}, "HtmlViewHandler:_templates_value": {"type": "object", "properties": {"@id": {"type": "string"}}, "required": ["@id"]}}, "required": ["HtmlViewHandler:_templates_key", "HtmlViewHandler:_templates_value"]}}}, "required": ["@id", "@type", "index", "templateEngine", "templates"]}}}, "required": ["@context", "@graph"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"@context" : "https://linkedsoftwaredependencies.org/bundles/npm/@solid/community-server/^3.0.0/components/context.jsonld", "@graph" : [{"@id" : "urn:solid-server:auth:password:HtmlViewHandler", "@type" : "HtmlViewHandler", "index" : {"@id" : "urn:solid-server:auth:password:IndexRoute"}, "templateEngine" : {"comment" : "Renders the specific page and embeds it into the main HTML body.", "@type" : "ChainedTemplateEngine", "renderedName" : "htmlBody", "engines" : [{"comment" : "Will be called with specific templates to generate HTML snippets.", "@type" : "EjsTemplateEngine"}, {"comment" : "Will embed the result of the first engine into the main HTML template.", "@type" : "EjsTemplateEngine", "template" : "@css:templates/main.html.ejs"}]}, "templates" : [{"HtmlViewHandler:_templates_key" : "@css:templates/identity/email-password/login.html.ejs", "HtmlViewHandler:_templates_value" : {"@id" : "urn:solid-server:auth:password:LoginRoute"}}, {"HtmlViewHandler:_templates_key" : "@css:templates/identity/email-password/consent.html.ejs", "HtmlViewHandler:_templates_value" : {"@id" : "urn:solid-server:auth:password:ConsentRoute"}}, {"HtmlViewHandler:_templates_key" : "@css:templates/identity/email-password/forgot-password.html.ejs", "HtmlViewHandler:_templates_value" : {"@id" : "urn:solid-server:auth:password:ForgotPasswordRoute"}}, {"HtmlViewHandler:_templates_key" : "@css:templates/identity/email-password/reset-password.html.ejs", "HtmlViewHandler:_templates_value" : {"@id" : "urn:solid-server:auth:password:ResetPasswordRoute"}}]}]}
json_instruct
{"type": "object", "properties": {"@context": {"type": "string"}, "@graph": {"type": "array", "items": {"type": "object", "properties": {"@id": {"type": "string"}, "@type": {"type": "string"}, "index": {"type": "object", "properties": {"@id": {"type": "string"}}, "required": ["@id"]}, "templateEngine": {"type": "object", "properties": {"comment": {"type": "string"}, "@type": {"type": "string"}, "renderedName": {"type": "string"}, "engines": {"type": "array", "items": {"type": "object", "properties": {"comment": {"type": "string"}, "@type": {"type": "string"}}, "required": ["comment", "@type"]}}}, "required": ["comment", "@type", "renderedName", "engines"]}, "templates": {"type": "array", "items": {"type": "object", "properties": {"HtmlViewHandler:_templates_key": {"type": "string"}, "HtmlViewHandler:_templates_value": {"type": "object", "properties": {"@id": {"type": "string"}}, "required": ["@id"]}}, "required": ["HtmlViewHandler:_templates_key", "HtmlViewHandler:_templates_value"]}}}, "required": ["@id", "@type", "index", "templateEngine", "templates"]}}}, "required": ["@context", "@graph"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"nft": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "description": {"type": "string"}, "image": {"type": "string"}, "attributes": {"type": "array", "items": {"type": "object", "properties": {"trait_type": {"type": "string"}, "value": {"type": "string"}}, "required": ["trait_type", "value"]}}}, "required": ["id", "name", "description", "image", "attributes"]}, "attributeRarities": {"type": "array", "items": {"type": "object", "properties": {"trait_type": {"type": "string"}, "value": {"type": "string"}, "count": {"type": "integer"}, "ratio": {"type": "number"}, "ratioScore": {"type": "number"}}, "required": ["trait_type", "value", "count", "ratio", "ratioScore"]}}, "rarityScore": {"type": "number"}, "rank": {"type": "integer"}}, "required": ["nft", "attributeRarities", "rarityScore", "rank"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"nft" : {"id" : "7710", "name" : "PixelFreak #07710", "description" : "They call us ugly, and misfits, but we prefer to call ourselves freaks", "image" : "ipfs://QmcqQz6zKHKuaYVwNafwTCsg1Q1DQUDGAfFjJC3BgFENG6", "attributes" : [{"trait_type" : "pet", "value" : "Dori Batman"}, {"trait_type" : "body", "value" : "Overalls A"}, {"trait_type" : "eyes", "value" : "Confused"}, {"trait_type" : "head", "value" : "Mol"}, {"trait_type" : "nose", "value" : "Nosek"}, {"trait_type" : "extra", "value" : "Lipe"}, {"trait_type" : "mouth", "value" : "Talkie"}, {"trait_type" : "background", "value" : "RandomColor"}, {"trait_type" : "Trait Count", "value" : "8"}]}, "attributeRarities" : [{"trait_type" : "pet", "value" : "Dori Batman", "count" : 83, "ratio" : 0.0083, "ratioScore" : 120.48192771084337}, {"trait_type" : "body", "value" : "Overalls A", "count" : 219, "ratio" : 0.0219, "ratioScore" : 45.662100456621005}, {"trait_type" : "eyes", "value" : "Confused", "count" : 310, "ratio" : 0.031, "ratioScore" : 32.25806451612903}, {"trait_type" : "head", "value" : "Mol", "count" : 759, "ratio" : 0.0759, "ratioScore" : 13.175230566534916}, {"trait_type" : "nose", "value" : "Nosek", "count" : 1104, "ratio" : 0.1104, "ratioScore" : 9.057971014492754}, {"trait_type" : "extra", "value" : "Lipe", "count" : 82, "ratio" : 0.0082, "ratioScore" : 121.95121951219511}, {"trait_type" : "mouth", "value" : "Talkie", "count" : 459, "ratio" : 0.0459, "ratioScore" : 21.78649237472767}, {"trait_type" : "background", "value" : "RandomColor", "count" : 9595, "ratio" : 0.9595, "ratioScore" : 1.0422094841063054}, {"trait_type" : "Trait Count", "value" : "8", "count" : 10000, "ratio" : 1, "ratioScore" : 1}], "rarityScore" : 366.41521563565016, "rank" : 290}
json_instruct
{"type": "object", "properties": {"nft": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "description": {"type": "string"}, "image": {"type": "string"}, "attributes": {"type": "array", "items": {"type": "object", "properties": {"trait_type": {"type": "string"}, "value": {"type": "string"}}, "required": ["trait_type", "value"]}}}, "required": ["id", "name", "description", "image", "attributes"]}, "attributeRarities": {"type": "array", "items": {"type": "object", "properties": {"trait_type": {"type": "string"}, "value": {"type": "string"}, "count": {"type": "integer"}, "ratio": {"type": "number"}, "ratioScore": {"type": "number"}}, "required": ["trait_type", "value", "count", "ratio", "ratioScore"]}}, "rarityScore": {"type": "number"}, "rank": {"type": "integer"}}, "required": ["nft", "attributeRarities", "rarityScore", "rank"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"word" : "eyesight", "definition" : "Sight of the eye; the sense of seeing; view; observation. Josephus sets this down from his own eyesight. Bp. Wilkins."}
json_instruct
{"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"files.exclude": {"type": "object", "properties": {"**/*.js": {"type": "object", "properties": {"when": {"type": "string"}}, "required": ["when"]}, "**/*.d.ts": {"type": "object", "properties": {"when": {"type": "string"}}, "required": ["when"]}, "**/*.js.map": {"type": "boolean"}}, "required": ["**/*.js", "**/*.d.ts", "**/*.js.map"]}, "npm.enableScriptExplorer": {"type": "boolean"}, "eslint.alwaysShowStatus": {"type": "boolean"}, "eslint.format.enable": {"type": "boolean"}, "eslint.run": {"type": "string"}, "python.pythonPath": {"type": "string"}}, "required": ["files.exclude", "npm.enableScriptExplorer", "eslint.alwaysShowStatus", "eslint.format.enable", "eslint.run", "python.pythonPath"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"files.exclude" : {"**/*.js" : {"when" : "$(basename).ts"}, "**/*.d.ts" : {"when" : "$(basename).ts"}, "**/*.js.map" : true}, "npm.enableScriptExplorer" : true, "eslint.alwaysShowStatus" : true, "eslint.format.enable" : true, "eslint.run" : "onSave", "python.pythonPath" : "C:\\Users\\z00372up\\Miniconda3\\envs\\ds\\python.exe"}
json_instruct
{"type": "object", "properties": {"files.exclude": {"type": "object", "properties": {"**/*.js": {"type": "object", "properties": {"when": {"type": "string"}}, "required": ["when"]}, "**/*.d.ts": {"type": "object", "properties": {"when": {"type": "string"}}, "required": ["when"]}, "**/*.js.map": {"type": "boolean"}}, "required": ["**/*.js", "**/*.d.ts", "**/*.js.map"]}, "npm.enableScriptExplorer": {"type": "boolean"}, "eslint.alwaysShowStatus": {"type": "boolean"}, "eslint.format.enable": {"type": "boolean"}, "eslint.run": {"type": "string"}, "python.pythonPath": {"type": "string"}}, "required": ["files.exclude", "npm.enableScriptExplorer", "eslint.alwaysShowStatus", "eslint.format.enable", "eslint.run", "python.pythonPath"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"CONTACT": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "email": {"type": "string"}, "company_id": {"type": "integer"}}, "required": ["id", "name", "email", "company_id"]}}, "COMPANY": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}}, "required": ["id", "name"]}}}, "required": ["CONTACT", "COMPANY"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"CONTACT" : [{"id" : 1, "name" : "deltaspike", "email" : "users@deltaspike.apache.org", "company_id" : 1}, {"id" : 2, "name" : "querydsl", "email" : "info@mysema.com", "company_id" : 2}, {"id" : 3, "name" : "Spring", "email" : "spring@pivotal.io", "company_id" : 3}], "COMPANY" : [{"id" : 1, "name" : "Apache"}, {"id" : 2, "name" : "Mysema"}, {"id" : 3, "name" : "Pivotal"}, {"id" : 4, "name" : "Google"}]}
json_instruct
{"type": "object", "properties": {"CONTACT": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "email": {"type": "string"}, "company_id": {"type": "integer"}}, "required": ["id", "name", "email", "company_id"]}}, "COMPANY": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}}, "required": ["id", "name"]}}}, "required": ["CONTACT", "COMPANY"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "array", "items": {"type": "object", "properties": {"package": {"type": "string"}, "downloads": {"type": "integer"}, "count": {"type": "integer"}}, "required": ["package", "downloads", "count"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"package" : "bioconductor-msgfplus", "downloads" : 2700, "count" : 2588}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"package": {"type": "string"}, "downloads": {"type": "integer"}, "count": {"type": "integer"}}, "required": ["package", "downloads", "count"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"icons": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "pro": {"type": "boolean"}}, "required": ["name", "pro"]}}}, "required": ["icons"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"icons" : [{"name" : "special_red", "pro" : true}, {"name" : "special_pink", "pro" : true}, {"name" : "special_colorful", "pro" : false}, {"name" : "special_blue", "pro" : true}, {"name" : "sense", "pro" : false}, {"name" : "retro", "pro" : false}, {"name" : "poco", "pro" : false}, {"name" : "p_pixel", "pro" : false}, {"name" : "p_aosp", "pro" : false}, {"name" : "oxygen", "pro" : false}, {"name" : "neu_ios_light", "pro" : true}, {"name" : "neu_ios_dark", "pro" : true}, {"name" : "miui10", "pro" : false}, {"name" : "mclaren", "pro" : true}, {"name" : "materialsmclaren", "pro" : false}, {"name" : "Materials_2", "pro" : true}, {"name" : "materials", "pro" : false}, {"name" : "hydrogen", "pro" : true}, {"name" : "fluent_shapeless", "pro" : true}]}
json_instruct
{"type": "object", "properties": {"icons": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "pro": {"type": "boolean"}}, "required": ["name", "pro"]}}}, "required": ["icons"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"type": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["type", "coordinates"]}, "properties": {"type": "object", "properties": {"code": {"type": "integer"}, "url": {"type": "string"}, "view": {"type": "string"}}, "required": ["code", "url", "view"]}}, "required": ["type", "geometry", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"type" : "Feature", "geometry" : {"type" : "Polygon", "coordinates" : [[[138.875, 22.25], [138.875, 22.333333333333332], [139.0, 22.333333333333332], [139.0, 22.25], [138.875, 22.25]]]}, "properties" : {"code" : 333837, "url" : "http://madefor.github.io/0410/api/v1/333837.geojson", "view" : "https://github.com/madefor/0410/blob/gh-pages/api/v1/333837.geojson"}}
json_instruct
{"type": "object", "properties": {"type": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["type", "coordinates"]}, "properties": {"type": "object", "properties": {"code": {"type": "integer"}, "url": {"type": "string"}, "view": {"type": "string"}}, "required": ["code", "url", "view"]}}, "required": ["type", "geometry", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "manifest_version": {"type": "integer"}, "description": {"type": "string"}, "page_action": {"type": "object", "properties": {"default_icon": {"type": "string"}}, "required": ["default_icon"]}, "icons": {"type": "object", "properties": {"16": {"type": "string"}, "32": {"type": "string"}, "48": {"type": "string"}, "128": {"type": "string"}}, "required": ["16", "32", "48", "128"]}, "background": {"type": "object", "properties": {"scripts": {"type": "array", "items": {"type": "string"}}, "persistent": {"type": "boolean"}}, "required": ["scripts", "persistent"]}, "options_page": {"type": "string"}, "content_scripts": {"type": "array", "items": {"type": "object", "properties": {"matches": {"type": "array", "items": {"type": "string"}}, "js": {"type": "array", "items": {"type": "string"}}, "css": {"type": "array", "items": {"type": "string"}}}, "required": ["matches", "js", "css"]}}, "permissions": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "version", "manifest_version", "description", "page_action", "icons", "background", "options_page", "content_scripts", "permissions"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "TimeReporter", "version" : "1.1.2", "manifest_version" : 2, "description" : "Populates work time in MSVacation WTT.", "page_action" : {"default_icon" : "icons/timerecorder32x32.png"}, "icons" : {"16" : "icons/timerecorder16x16.png", "32" : "icons/timerecorder32x32.png", "48" : "icons/timerecorder48x48.png", "128" : "icons/timerecorder128x128.png"}, "background" : {"scripts" : ["js/moment.min.js", "js/constants.js", "background.js"], "persistent" : false}, "options_page" : "options.html", "content_scripts" : [{"matches" : ["https://msvacation/*", "https://timereporter.z6.web.core.windows.net/*"], "js" : ["js/jquery.min.js", "js/jquery.validate.min.js", "js/custom-validation-methods.js", "js/moment.min.js", "js/constants.js", "js/content.js"], "css" : ["css/style.css"]}], "permissions" : ["storage", "declarativeContent"]}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "manifest_version": {"type": "integer"}, "description": {"type": "string"}, "page_action": {"type": "object", "properties": {"default_icon": {"type": "string"}}, "required": ["default_icon"]}, "icons": {"type": "object", "properties": {"16": {"type": "string"}, "32": {"type": "string"}, "48": {"type": "string"}, "128": {"type": "string"}}, "required": ["16", "32", "48", "128"]}, "background": {"type": "object", "properties": {"scripts": {"type": "array", "items": {"type": "string"}}, "persistent": {"type": "boolean"}}, "required": ["scripts", "persistent"]}, "options_page": {"type": "string"}, "content_scripts": {"type": "array", "items": {"type": "object", "properties": {"matches": {"type": "array", "items": {"type": "string"}}, "js": {"type": "array", "items": {"type": "string"}}, "css": {"type": "array", "items": {"type": "string"}}}, "required": ["matches", "js", "css"]}}, "permissions": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "version", "manifest_version", "description", "page_action", "icons", "background", "options_page", "content_scripts", "permissions"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "array", "items": {"type": "object", "properties": {"namaKab": {"type": "string"}, "originalFilename": {"type": "string"}, "namaPartai": {"type": "string"}, "id": {"type": "integer"}, "noUrut": {"type": "integer"}, "nama": {"type": "string"}, "stringJenisKelamin": {"type": "string"}}, "required": ["namaKab", "originalFilename", "namaPartai", "id", "noUrut", "nama", "stringJenisKelamin"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"namaKab" : "KOTA GUNUNGSITOLI", "originalFilename" : "YUNIUS RELAWAN ZEBUA.jpg", "namaPartai" : "PARTAI DEMOKRASI INDONESIA PERJUANGAN", "id" : 42235, "noUrut" : 1, "nama" : "YUNIUS RELAWAN ZEBUA", "stringJenisKelamin" : "Laki-Laki"}, {"namaKab" : "KOTA GUNUNGSITOLI", "originalFilename" : "COPY.jpg", "namaPartai" : "PARTAI DEMOKRASI INDONESIA PERJUANGAN", "id" : 43510, "noUrut" : 2, "nama" : "SOKHIANI LASE, S.H", "stringJenisKelamin" : "Perempuan"}, {"namaKab" : "NIAS", "originalFilename" : "DSC_1702.jpg", "namaPartai" : "PARTAI DEMOKRASI INDONESIA PERJUANGAN", "id" : 60828, "noUrut" : 3, "nama" : "ALUIZARO TELAUMBANUA, A.Ma.Pd", "stringJenisKelamin" : "Laki-Laki"}, {"namaKab" : "NIAS", "originalFilename" : "DSC_1614.jpg", "namaPartai" : "PARTAI DEMOKRASI INDONESIA PERJUANGAN", "id" : 59457, "noUrut" : 4, "nama" : "ADRIANUS BAWAMENEWI, S.H., M.H", "stringJenisKelamin" : "Laki-Laki"}, {"namaKab" : "NIAS", "originalFilename" : "ARNIWATI LAIA.JPG", "namaPartai" : "PARTAI DEMOKRASI INDONESIA PERJUANGAN", "id" : 92905, "noUrut" : 5, "nama" : "ARNIWATI LAIA", "stringJenisKelamin" : "Perempuan"}, {"namaKab" : "KOTA GUNUNGSITOLI", "originalFilename" : "DSC_0300.jpg", "namaPartai" : "PARTAI DEMOKRASI INDONESIA PERJUANGAN", "id" : 68817, "noUrut" : 6, "nama" : "BAZISOKHI HURA, S.Pd", "stringJenisKelamin" : "Laki-Laki"}, {"namaKab" : "NIAS", "originalFilename" : "DSC_0042.JPG", "namaPartai" : "PARTAI DEMOKRASI INDONESIA PERJUANGAN", "id" : 61072, "noUrut" : 7, "nama" : "FILIMANI NDRURU", "stringJenisKelamin" : "Perempuan"}, {"namaKab" : "NIAS", "originalFilename" : "DSC_0372.jpg", "namaPartai" : "PARTAI DEMOKRASI INDONESIA PERJUANGAN", "id" : 60530, "noUrut" : 8, "nama" : "RAHMAT NDRURU", "stringJenisKelamin" : "Laki-Laki"}, {"namaKab" : "NIAS", "originalFilename" : "okkk.jpg", "namaPartai" : "PARTAI DEMOKRASI INDONESIA PERJUANGAN", "id" : 42810, "noUrut" : 9, "nama" : "PERINGATAN GEA", "stringJenisKelamin" : "Laki-Laki"}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"namaKab": {"type": "string"}, "originalFilename": {"type": "string"}, "namaPartai": {"type": "string"}, "id": {"type": "integer"}, "noUrut": {"type": "integer"}, "nama": {"type": "string"}, "stringJenisKelamin": {"type": "string"}}, "required": ["namaKab", "originalFilename", "namaPartai", "id", "noUrut", "nama", "stringJenisKelamin"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"main": {"type": "string"}, "private": {"type": "boolean"}, "dependencies": {"type": "object", "properties": {"@xstate/react": {"type": "string"}, "classnames": {"type": "string"}, "react": {"type": "string"}, "react-dom": {"type": "string"}, "todomvc-app-css": {"type": "string"}, "todomvc-common": {"type": "string"}, "uuid-v4": {"type": "string"}, "xstate": {"type": "string"}}, "required": ["@xstate/react", "classnames", "react", "react-dom", "todomvc-app-css", "todomvc-common", "uuid-v4", "xstate"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "name": {"type": "string"}, "description": {"type": "string"}}, "required": ["main", "private", "dependencies", "keywords", "name", "description"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"main" : "index.js", "private" : true, "dependencies" : {"@xstate/react" : "^0.1.0", "classnames" : "latest", "react" : "next", "react-dom" : "next", "todomvc-app-css" : "^2.0.0", "todomvc-common" : "^1.0.0", "uuid-v4" : "0.1.0", "xstate" : "latest"}, "keywords" : ["hooks", "statechart", "state machine", "xstate", "react"], "name" : "xstate-todomvc", "description" : "The TodoMVC app implemented with React (using hooks) and XState version 4."}
json_instruct
{"type": "object", "properties": {"main": {"type": "string"}, "private": {"type": "boolean"}, "dependencies": {"type": "object", "properties": {"@xstate/react": {"type": "string"}, "classnames": {"type": "string"}, "react": {"type": "string"}, "react-dom": {"type": "string"}, "todomvc-app-css": {"type": "string"}, "todomvc-common": {"type": "string"}, "uuid-v4": {"type": "string"}, "xstate": {"type": "string"}}, "required": ["@xstate/react", "classnames", "react", "react-dom", "todomvc-app-css", "todomvc-common", "uuid-v4", "xstate"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "name": {"type": "string"}, "description": {"type": "string"}}, "required": ["main", "private", "dependencies", "keywords", "name", "description"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"places.js": {"type": "string"}, "places.min.js": {"type": "string"}, "placesAutocompleteDataset.js": {"type": "string"}, "placesAutocompleteDataset.min.js": {"type": "string"}, "placesInstantsearchWidget.js": {"type": "string"}, "placesInstantsearchWidget.min.js": {"type": "string"}}, "required": ["places.js", "places.min.js", "placesAutocompleteDataset.js", "placesAutocompleteDataset.min.js", "placesInstantsearchWidget.js", "placesInstantsearchWidget.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"places.js" : "sha256-uABeMvGzFWp+WGY9GXpCw9ozcAK9BX7YiTGqRyan37U=", "places.min.js" : "sha256-HiQb36CYe4hjVsnrSorNVWNROrQcAjCXCZoRRx42lzQ=", "placesAutocompleteDataset.js" : "sha256-s2BOvKviAKWLF50aBa8eP6BvJ8tkDP2/ZroYEHACl0Y=", "placesAutocompleteDataset.min.js" : "sha256-adKcbd7qly+TCX6478ua2SaicBH+7X+DS9oELVL+hnU=", "placesInstantsearchWidget.js" : "sha256-D4TLKuRpsjCIEv0FfMtKtETV5hwBM8wDG+lIuT9gvII=", "placesInstantsearchWidget.min.js" : "sha256-HA9wtXm49wdtqAchMuVIS/EgWUYu+SOiDLOfBptH58o="}
json_instruct
{"type": "object", "properties": {"places.js": {"type": "string"}, "places.min.js": {"type": "string"}, "placesAutocompleteDataset.js": {"type": "string"}, "placesAutocompleteDataset.min.js": {"type": "string"}, "placesInstantsearchWidget.js": {"type": "string"}, "placesInstantsearchWidget.min.js": {"type": "string"}}, "required": ["places.js", "places.min.js", "placesAutocompleteDataset.js", "placesAutocompleteDataset.min.js", "placesInstantsearchWidget.js", "placesInstantsearchWidget.min.js"], "$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"}, "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" : "P\u00e9r\u00e9", "dpt" : "Charente-Maritime", "inscrits" : 288, "abs" : 45, "votants" : 243, "blancs" : 2, "nuls" : 1, "exp" : 240, "res" : [{"panneau" : "9", "voix" : 72}, {"panneau" : "3", "voix" : 55}, {"panneau" : "2", "voix" : 53}, {"panneau" : "11", "voix" : 31}, {"panneau" : "1", "voix" : 14}, {"panneau" : "4", "voix" : 7}, {"panneau" : "5", "voix" : 3}, {"panneau" : "6", "voix" : 3}, {"panneau" : "10", "voix" : 2}, {"panneau" : "7", "voix" : 0}, {"panneau" : "8", "voix" : 0}]}
json_instruct
{"type": "object", "properties": {"nom": {"type": "string"}, "dpt": {"type": "string"}, "inscrits": {"type": "integer"}, "abs": {"type": "integer"}, "votants": {"type": "integer"}, "blancs": {"type": "integer"}, "nuls": {"type": "integer"}, "exp": {"type": "integer"}, "res": {"type": "array", "items": {"type": "object", "properties": {"panneau": {"type": "string"}, "voix": {"type": "integer"}}, "required": ["panneau", "voix"]}}}, "required": ["nom", "dpt", "inscrits", "abs", "votants", "blancs", "nuls", "exp", "res"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"name": {"type": "string"}, "displayName": {"type": "string"}}, "required": ["name", "displayName"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "LostAndFoundry", "displayName" : "LostAndFoundry"}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "displayName": {"type": "string"}}, "required": ["name", "displayName"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"uuid": {"type": "string"}, "befores": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "status": {"type": "string"}, "start": {"type": "integer"}, "stop": {"type": "integer"}}, "required": ["name", "status", "start", "stop"]}}, "start": {"type": "integer"}, "stop": {"type": "integer"}}, "required": ["uuid", "befores", "start", "stop"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"uuid" : "9da09e75-f890-4fea-9de6-1789e0b37f74", "befores" : [{"name" : "hotel_tria", "status" : "passed", "start" : 1597806074422, "stop" : 1597806074422}], "start" : 1597806074422, "stop" : 1597806083343}
json_instruct
{"type": "object", "properties": {"uuid": {"type": "string"}, "befores": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "status": {"type": "string"}, "start": {"type": "integer"}, "stop": {"type": "integer"}}, "required": ["name", "status", "start", "stop"]}}, "start": {"type": "integer"}, "stop": {"type": "integer"}}, "required": ["uuid", "befores", "start", "stop"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "district_id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "district_id", "name"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"id" : "3309010001", "district_id" : "3309010", "name" : "TLOGOLELE"}, {"id" : "3309010002", "district_id" : "3309010", "name" : "KLAKAH"}, {"id" : "3309010003", "district_id" : "3309010", "name" : "JRAKAH"}, {"id" : "3309010004", "district_id" : "3309010", "name" : "LENCOH"}, {"id" : "3309010005", "district_id" : "3309010", "name" : "SUROTELENG"}, {"id" : "3309010006", "district_id" : "3309010", "name" : "SAMIRAN"}, {"id" : "3309010007", "district_id" : "3309010", "name" : "SELO"}, {"id" : "3309010008", "district_id" : "3309010", "name" : "TARUBATANG"}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "district_id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "district_id", "name"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "author": {"type": "string"}, "private": {"type": "boolean"}, "repository": {"type": "string"}, "license": {"type": "string"}, "version": {"type": "string"}, "dependencies": {"type": "object", "properties": {"@apollo/federation": {"type": "string"}, "@apollo/gateway": {"type": "string"}, "apollo-server": {"type": "string"}, "apollo-server-lambda": {"type": "string"}, "graphql": {"type": "string"}, "graphql-relay": {"type": "string"}}, "required": ["@apollo/federation", "@apollo/gateway", "apollo-server", "apollo-server-lambda", "graphql", "graphql-relay"]}}, "required": ["name", "description", "author", "private", "repository", "license", "version", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "apollo-federation-relay", "description" : "Combining Apollo Federation with Relay server specifications", "author" : "Victor Andr\u00e9e <hello@victorandree.se>", "private" : true, "repository" : "victorandree/apollo-federation-relay", "license" : "MIT", "version" : "0.1.0", "dependencies" : {"@apollo/federation" : "^0.19.1", "@apollo/gateway" : "^0.19.1", "apollo-server" : "^2.16.1", "apollo-server-lambda" : "^2.16.1", "graphql" : "^15.3.0", "graphql-relay" : "^0.6.0"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "author": {"type": "string"}, "private": {"type": "boolean"}, "repository": {"type": "string"}, "license": {"type": "string"}, "version": {"type": "string"}, "dependencies": {"type": "object", "properties": {"@apollo/federation": {"type": "string"}, "@apollo/gateway": {"type": "string"}, "apollo-server": {"type": "string"}, "apollo-server-lambda": {"type": "string"}, "graphql": {"type": "string"}, "graphql-relay": {"type": "string"}}, "required": ["@apollo/federation", "@apollo/gateway", "apollo-server", "apollo-server-lambda", "graphql", "graphql-relay"]}}, "required": ["name", "description", "author", "private", "repository", "license", "version", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "array", "items": {"type": "array", "items": {"type": "number"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
[[43.0, 86.0, 129.0, 172.0, 215.0, 258.0, 301.0, 344.0, 387.0, 430.0, 473.0, 516.0, 559.0, 602.0, 645.0, 688.0, 731.0, 774.0, 817.0, 860.0, 903.0, 946.0, 989.0, 1032.0, 1075.0, 1118.0, 1161.0, 1204.0, 1247.0, 1290.0, 1333.0, 1376.0, 1419.0, 1462.0, 1505.0, 1548.0, 1591.0, 1634.0, 1677.0, 1720.0, 1763.0, 1806.0, 1849.0, 1892.0, 1935.0, 1978.0, 2021.0, 2064.0, 2107.0, 2150.0, 2193.0, 2236.0, 2279.0, 2322.0, 2365.0, 2408.0, 2451.0, 2494.0, 2537.0, 2580.0, 2623.0, 2666.0, 2709.0, 2752.0, 2795.0, 2838.0, 2881.0, 2924.0, 2967.0, 3010.0, 3053.0, 3096.0, 3139.0, 3182.0, 3225.0, 3268.0, 3311.0, 3354.0, 3397.0, 3440.0, 3483.0, 3526.0, 3569.0, 3612.0, 3655.0, 3698.0, 3741.0, 3784.0, 3827.0, 3870.0, 3913.0, 3956.0, 3999.0, 4042.0, 4085.0, 4128.0, 4171.0, 4214.0, 4257.0, 4300.0], [1042993.0, 1989986.0, 2975979.0, 3979972.0, 5172964.0, 5931959.0, 7015951.0, 7985944.0, 9054936.0, 9961930.0, 11027922.0, 12088915.0, 12920909.0, 14074901.0, 14892896.0, 16203886.0, 17005880.0, 17996874.0, 19181866.0, 20032859.0, 20946853.0, 21925846.0, 23242837.0, 23893832.0, 25047824.0, 25934818.0, 26850811.0, 27824805.0, 28895797.0, 29878790.0, 30831783.0, 31941775.0, 32939769.0, 33870762.0, 34848755.0, 35791749.0, 36894740.0, 37919734.0, 39036726.0, 39768720.0, 40850713.0, 41736706.0, 42848699.0, 43794692.0, 44827685.0, 45809678.0, 46752671.0, 60005579.0, 49151655.0, 49756650.0, 50848643.0, 51725636.0, 52805629.0, 53695622.0, 54931614.0, 55660609.0, 56739602.0, 57713594.0, 58780587.0, 59752580.0, 60657573.0, 61869565.0, 62714560.0, 63725553.0, 65259541.0, 66103536.0, 66780531.0, 67705524.0, 68681517.0, 69634511.0, 70674503.0, 71637497.0, 72602489.0, 74828475.0, 75011473.0, 75667468.0, 76639462.0, 77607454.0, 78610448.0, 79918439.0, 80579434.0, 81651427.0, 82595419.0, 83629413.0, 84541406.0, 85599398.0, 86675391.0, 87461386.0, 88484379.0, 89925369.0, 90740363.0, 91707356.0, 92515351.0, 93455344.0, 94476336.0, 95559329.0, 96589321.0, 97813313.0, 98483308.0, 99486302.0]]
json_instruct
{"type": "array", "items": {"type": "array", "items": {"type": "number"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"gmail.js": {"type": "string"}, "gmail.min.js": {"type": "string"}}, "required": ["gmail.js", "gmail.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"gmail.js" : "sha512-c3rhKofmJRqoy9irJSEQoGty5YuKvEFWE9iU9tvSriKfpgKeX9//tJ46I55quZWu75XdjZJWDL1NI7iSksCIMw==", "gmail.min.js" : "sha512-vStRNkC/hCHgYyW8FDA2bCr42K3lbDAcULor2DtPvGtPA8w9ITBBDpQh/1jtfIIEpFhtwQLZGLasgtXIA22Uvg=="}
json_instruct
{"type": "object", "properties": {"gmail.js": {"type": "string"}, "gmail.min.js": {"type": "string"}}, "required": ["gmail.js", "gmail.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"aliases": {"type": "array", "items": {"type": "string"}}, "authors": {"type": "array", "items": {"type": "string"}}, "description": {"type": "string"}, "images": {"type": "object", "properties": {"background": {"type": "null"}, "thumbnail": {"type": "string"}}, "required": ["background", "thumbnail"]}, "mainColor": {"type": "null"}, "name": {"type": "string"}, "partners": {"type": "array", "items": {}}, "powers": {"type": "array", "items": {"type": "string"}}, "ranking": {"type": "object", "properties": {"comicCount": {"type": "integer"}, "eventCount": {"type": "integer"}, "pageviewCount": {"type": "integer"}, "serieCount": {"type": "integer"}, "storyCount": {"type": "integer"}}, "required": ["comicCount", "eventCount", "pageviewCount", "serieCount", "storyCount"]}, "secretIdentities": {"type": "array", "items": {"type": "string"}}, "species": {"type": "array", "items": {"type": "string"}}, "superName": {"type": "string"}, "teams": {"type": "array", "items": {}}, "urls": {"type": "object", "properties": {"marvel": {"type": "string"}, "wikipedia": {"type": "string"}}, "required": ["marvel", "wikipedia"]}}, "required": ["aliases", "authors", "description", "images", "mainColor", "name", "partners", "powers", "ranking", "secretIdentities", "species", "superName", "teams", "urls"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"aliases" : ["Mutant X", "Proteus"], "authors" : ["Chris Claremont", "John Byrne"], "description" : "Kevin MacTaggert, best known as Proteus and also called Mutant X, is a Marvel Comics character, associated with the X-Men.Kevin was the mutant son of Scottish genetic researcher Moira MacTaggert and politician Joseph MacTaggert.", "images" : {"background" : null, "thumbnail" : "http://i.annihil.us/u/prod/marvel/i/mg/a/10/535fedc85b486/standard_xlarge.jpg"}, "mainColor" : null, "name" : "Proteus", "partners" : [], "powers" : ["Body possession", "Reality warping"], "ranking" : {"comicCount" : 9, "eventCount" : 1, "pageviewCount" : 3328, "serieCount" : 7, "storyCount" : 6}, "secretIdentities" : ["Kevin MacTaggert"], "species" : ["Mutant"], "superName" : "Proteus", "teams" : [], "urls" : {"marvel" : "http://marvel.com/characters/1816/proteus", "wikipedia" : "https://en.wikipedia.org/wiki/Proteus_(Marvel_Comics)"}}
json_instruct
{"type": "object", "properties": {"aliases": {"type": "array", "items": {"type": "string"}}, "authors": {"type": "array", "items": {"type": "string"}}, "description": {"type": "string"}, "images": {"type": "object", "properties": {"background": {"type": "null"}, "thumbnail": {"type": "string"}}, "required": ["background", "thumbnail"]}, "mainColor": {"type": "null"}, "name": {"type": "string"}, "partners": {"type": "array", "items": {}}, "powers": {"type": "array", "items": {"type": "string"}}, "ranking": {"type": "object", "properties": {"comicCount": {"type": "integer"}, "eventCount": {"type": "integer"}, "pageviewCount": {"type": "integer"}, "serieCount": {"type": "integer"}, "storyCount": {"type": "integer"}}, "required": ["comicCount", "eventCount", "pageviewCount", "serieCount", "storyCount"]}, "secretIdentities": {"type": "array", "items": {"type": "string"}}, "species": {"type": "array", "items": {"type": "string"}}, "superName": {"type": "string"}, "teams": {"type": "array", "items": {}}, "urls": {"type": "object", "properties": {"marvel": {"type": "string"}, "wikipedia": {"type": "string"}}, "required": ["marvel", "wikipedia"]}}, "required": ["aliases", "authors", "description", "images", "mainColor", "name", "partners", "powers", "ranking", "secretIdentities", "species", "superName", "teams", "urls"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"stationGroupId": {"type": "integer"}, "stations": {"type": "array", "items": {"type": "string"}}}, "required": ["stationGroupId", "stations"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"stationGroupId" : 1163305, "stations" : ["1163305"]}
json_instruct
{"type": "object", "properties": {"stationGroupId": {"type": "integer"}, "stations": {"type": "array", "items": {"type": "string"}}}, "required": ["stationGroupId", "stations"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"brand": {"type": "string"}, "logo": {"type": "string"}, "links": {"type": "array", "items": {"type": "object", "properties": {"title": {"type": "string"}, "href": {"type": "string"}}, "required": ["title", "href"]}}}, "required": ["brand", "logo", "links"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"brand" : "Fiona Allan", "logo" : "logo_kreis.png", "links" : [{"title" : "Start", "href" : "/"}, {"title" : "Leistungen", "href" : "/#features"}, {"title" : "\u00dcber mich", "href" : "/me"}, {"title" : "Blog", "href" : "/blog"}, {"title" : "Kontakt", "href" : "/#contact"}]}
json_instruct
{"type": "object", "properties": {"brand": {"type": "string"}, "logo": {"type": "string"}, "links": {"type": "array", "items": {"type": "object", "properties": {"title": {"type": "string"}, "href": {"type": "string"}}, "required": ["title", "href"]}}}, "required": ["brand", "logo", "links"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"type": {"type": "string"}, "level": {"type": "string"}, "label": {"type": "string"}, "locale": {"type": "string"}, "country_id": {"type": "integer"}, "country_reference": {"type": "integer"}, "country_name": {"type": "string"}, "region_id": {"type": "string"}, "region_reference": {"type": "string"}, "region_name": {"type": "string"}, "province_id": {"type": "string"}, "province_reference": {"type": "string"}, "province_name": {"type": "string"}, "city_id": {"type": "string"}, "city_reference": {"type": "string"}, "city_name": {"type": "string"}, "barangay_id": {"type": "string"}, "barangay_reference": {"type": "string"}, "barangay_name": {"type": "string"}}, "required": ["type", "level", "label", "locale", "country_id", "country_reference", "country_name", "region_id", "region_reference", "region_name", "province_id", "province_reference", "province_name", "city_id", "city_reference", "city_name", "barangay_id", "barangay_reference", "barangay_name"]}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}}, "required": ["type", "coordinates"]}}, "required": ["type", "properties", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"type" : "Feature", "properties" : {"type" : "barangay", "level" : "4", "label" : "Binarsang, Reina Mercedes, Isabela, Cagayan Valley (Region II), PH", "locale" : "ph.cagayan-valley-region-ii.isabela.reina-mercedes.binarsang", "country_id" : 177, "country_reference" : 177, "country_name" : "Philippines", "region_id" : "3", "region_reference" : "2", "region_name" : "Cagayan Valley (Region II)", "province_id" : "37", "province_reference" : "37", "province_name" : "Isabela", "city_id" : "1082", "city_reference" : "715", "city_name" : "Reina Mercedes", "barangay_id" : "30962", "barangay_reference" : "18027", "barangay_name" : "Binarsang"}, "geometry" : {"type" : "MultiPolygon", "coordinates" : [[[[121.790314, 17.03187], [121.79866, 17.026979], [121.798767, 17.02598], [121.798401, 17.02389], [121.798172, 17.02313], [121.79763, 17.021709], [121.796837, 17.020241], [121.79557, 17.01856], [121.794632, 17.01659], [121.7939, 17.01565], [121.793243, 17.014959], [121.791862, 17.01421], [121.790588, 17.01376], [121.788757, 17.01354], [121.787827, 17.01362], [121.787804, 17.013491], [121.786049, 17.0149], [121.785271, 17.0156], [121.783073, 17.016649], [121.781723, 17.017099], [121.78231, 17.018181], [121.784889, 17.02318], [121.788277, 17.02887], [121.790314, 17.03187]]]]}}
json_instruct
{"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"type": {"type": "string"}, "level": {"type": "string"}, "label": {"type": "string"}, "locale": {"type": "string"}, "country_id": {"type": "integer"}, "country_reference": {"type": "integer"}, "country_name": {"type": "string"}, "region_id": {"type": "string"}, "region_reference": {"type": "string"}, "region_name": {"type": "string"}, "province_id": {"type": "string"}, "province_reference": {"type": "string"}, "province_name": {"type": "string"}, "city_id": {"type": "string"}, "city_reference": {"type": "string"}, "city_name": {"type": "string"}, "barangay_id": {"type": "string"}, "barangay_reference": {"type": "string"}, "barangay_name": {"type": "string"}}, "required": ["type", "level", "label", "locale", "country_id", "country_reference", "country_name", "region_id", "region_reference", "region_name", "province_id", "province_reference", "province_name", "city_id", "city_reference", "city_name", "barangay_id", "barangay_reference", "barangay_name"]}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}}, "required": ["type", "coordinates"]}}, "required": ["type", "properties", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"value0": {"type": "object", "properties": {"struct Gfx::RenderSettings": {"type": "object", "properties": {"Resolution": {"type": "object", "properties": {"Width": {"type": "integer"}, "Height": {"type": "integer"}, "MinWidth": {"type": "integer"}, "MinHeight": {"type": "integer"}}, "required": ["Width", "Height", "MinWidth", "MinHeight"]}, "VSync": {"type": "boolean"}, "FullScreen": {"type": "boolean"}, "Renderer": {"type": "string"}}, "required": ["Resolution", "VSync", "FullScreen", "Renderer"]}}, "required": ["struct Gfx::RenderSettings"]}}, "required": ["value0"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"value0" : {"struct Gfx::RenderSettings" : {"Resolution" : {"Width" : 1280, "Height" : 720, "MinWidth" : 640, "MinHeight" : 480}, "VSync" : false, "FullScreen" : false, "Renderer" : "Vulkan"}}}
json_instruct
{"type": "object", "properties": {"value0": {"type": "object", "properties": {"struct Gfx::RenderSettings": {"type": "object", "properties": {"Resolution": {"type": "object", "properties": {"Width": {"type": "integer"}, "Height": {"type": "integer"}, "MinWidth": {"type": "integer"}, "MinHeight": {"type": "integer"}}, "required": ["Width", "Height", "MinWidth", "MinHeight"]}, "VSync": {"type": "boolean"}, "FullScreen": {"type": "boolean"}, "Renderer": {"type": "string"}}, "required": ["Resolution", "VSync", "FullScreen", "Renderer"]}}, "required": ["struct Gfx::RenderSettings"]}}, "required": ["value0"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"NunsNRosaries": {"type": "array", "items": {"type": "string"}}}, "required": ["NunsNRosaries"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"NunsNRosaries" : ["ChristianityIsCatholic", "TheThemeParkVersion", "RippedFromTheHeadlines", "Anime", "CreepyCoolCrosses", "ChurchMilitant", "NunsAreMikos", "AnimeCatholicism", "HardRock", "HollywoodNuns", "ArtisticLicenseTraditionalChristianity", "UsefulNotes", "Anime", "Manga", "Film", "LiveActionTV", "WesternAnimation", "NewMedia", "ConfessInConfidence", "WidowsWeeds", "SchoolUniformsAreTheNewBlack", "OminousLatinChanting", "GoodGirlsAvoidAbortion", "RaisedCatholic", "GuiltComplex", "FreudWasRight", "TakingTheVeil", "CatholicSchoolgirlsRule", "DependingOnTheWriter", "RiteOfPassage", "CramSchool", "RealLife", "InformedPoverty", "PotteryBarnPoor", "HappilyMarried", "HappyMarriageCharade", "CloseKnitCommunity", "DivorceRequiresDeath", "TheTalk", "DoubleStandard", "NatureAdoresAVirgin", "DefiledForever", "CatholicSchoolgirlsRule", "SternNun", "OneGenderSchool", "GoodGirlsAvoidAbortion", "Gayngst", "QueerAsTropes", "HeteronormativeCrusader", "ShownTheirWork", "StudentCouncilPresident", "EvenEvilHasStandards"]}
json_instruct
{"type": "object", "properties": {"NunsNRosaries": {"type": "array", "items": {"type": "string"}}}, "required": ["NunsNRosaries"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "license": {"type": "string"}, "author": {"type": "string"}, "scripts": {"type": "object", "properties": {"package": {"type": "string"}, "deploy": {"type": "string"}}, "required": ["package", "deploy"]}, "dependencies": {"type": "object", "properties": {"dotenv": {"type": "string"}, "imagemin": {"type": "string"}, "imagemin-gifsicle": {"type": "string"}, "imagemin-jpegtran": {"type": "string"}, "imagemin-optipng": {"type": "string"}, "imagemin-pngquant": {"type": "string"}, "imagemin-svgo": {"type": "string"}}, "required": ["dotenv", "imagemin", "imagemin-gifsicle", "imagemin-jpegtran", "imagemin-optipng", "imagemin-pngquant", "imagemin-svgo"]}, "devDependencies": {"type": "object", "properties": {"@types/aws-lambda": {"type": "string"}, "@types/node": {"type": "string"}, "node-lambda": {"type": "string"}, "shx": {"type": "string"}, "typescript": {"type": "string"}}, "required": ["@types/aws-lambda", "@types/node", "node-lambda", "shx", "typescript"]}}, "required": ["name", "version", "description", "main", "repository", "license", "author", "scripts", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "s3-image-optimizer", "version" : "0.1.0", "description" : "Optimise images on S3", "main" : "index.js", "repository" : {"type" : "git", "url" : "git://github.com/sourcey/s3-image-optimizer.git"}, "license" : "MIT", "author" : "Kam Low <auscaster@gmail.com> (http://sourcey.com/)", "scripts" : {"package" : "shx rm -rf dist; tsc", "deploy" : "npm run package; node-lambda deploy -S ./event_sources.json"}, "dependencies" : {"dotenv" : "^4.0.0", "imagemin" : "^5.3.1", "imagemin-gifsicle" : "^5.2.0", "imagemin-jpegtran" : "^5.0.2", "imagemin-optipng" : "^5.2.1", "imagemin-pngquant" : "^5.0.1", "imagemin-svgo" : "^6.0.0"}, "devDependencies" : {"@types/aws-lambda" : "0.0.22", "@types/node" : "^8.5.1", "node-lambda" : "git+https://github.com/motdotla/node-lambda.git", "shx" : "^0.2.2", "typescript" : "^3.9.6"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "license": {"type": "string"}, "author": {"type": "string"}, "scripts": {"type": "object", "properties": {"package": {"type": "string"}, "deploy": {"type": "string"}}, "required": ["package", "deploy"]}, "dependencies": {"type": "object", "properties": {"dotenv": {"type": "string"}, "imagemin": {"type": "string"}, "imagemin-gifsicle": {"type": "string"}, "imagemin-jpegtran": {"type": "string"}, "imagemin-optipng": {"type": "string"}, "imagemin-pngquant": {"type": "string"}, "imagemin-svgo": {"type": "string"}}, "required": ["dotenv", "imagemin", "imagemin-gifsicle", "imagemin-jpegtran", "imagemin-optipng", "imagemin-pngquant", "imagemin-svgo"]}, "devDependencies": {"type": "object", "properties": {"@types/aws-lambda": {"type": "string"}, "@types/node": {"type": "string"}, "node-lambda": {"type": "string"}, "shx": {"type": "string"}, "typescript": {"type": "string"}}, "required": ["@types/aws-lambda", "@types/node", "node-lambda", "shx", "typescript"]}}, "required": ["name", "version", "description", "main", "repository", "license", "author", "scripts", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "summary": {"type": "string"}, "authors": {"type": "string"}, "license": {"type": "string"}, "requires_arc": {"type": "boolean"}, "homepage": {"type": "string"}, "source": {"type": "object", "properties": {"git": {"type": "string"}}, "required": ["git"]}, "platforms": {"type": "object", "properties": {"ios": {"type": "string"}}, "required": ["ios"]}, "source_files": {"type": "string"}, "dependencies": {"type": "object", "properties": {"React": {"type": "array", "items": {}}, "OpenSSL-Universal": {"type": "array", "items": {}}}, "required": ["React", "OpenSSL-Universal"]}}, "required": ["name", "version", "summary", "authors", "license", "requires_arc", "homepage", "source", "platforms", "source_files", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "react-native-simple-crypto", "version" : "0.3.1", "summary" : "A simpler React-Native crypto library", "authors" : "Gary Button <gary.button.public@gmail.com>", "license" : "MIT", "requires_arc" : true, "homepage" : "https://github.com/ghbutton/react-native-simple-crypto", "source" : {"git" : "git+https://github.com/ghbutton/react-native-simple-crypto.git"}, "platforms" : {"ios" : "8.0"}, "source_files" : "ios/**/*.{h,m,swift}", "dependencies" : {"React" : [], "OpenSSL-Universal" : []}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "summary": {"type": "string"}, "authors": {"type": "string"}, "license": {"type": "string"}, "requires_arc": {"type": "boolean"}, "homepage": {"type": "string"}, "source": {"type": "object", "properties": {"git": {"type": "string"}}, "required": ["git"]}, "platforms": {"type": "object", "properties": {"ios": {"type": "string"}}, "required": ["ios"]}, "source_files": {"type": "string"}, "dependencies": {"type": "object", "properties": {"React": {"type": "array", "items": {}}, "OpenSSL-Universal": {"type": "array", "items": {}}}, "required": ["React", "OpenSSL-Universal"]}}, "required": ["name", "version", "summary", "authors", "license", "requires_arc", "homepage", "source", "platforms", "source_files", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "dependencies": {"type": "object", "properties": {"express": {"type": "string"}, "socket.io": {"type": "string"}}, "required": ["express", "socket.io"]}}, "required": ["name", "version", "description", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "bitcoin-price-ticker", "version" : "0.0.1", "description" : "Application to get prices of bitcoin from indian bitcoin exchanges", "dependencies" : {"express" : "^4.15.3", "socket.io" : "^2.0.1"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "dependencies": {"type": "object", "properties": {"express": {"type": "string"}, "socket.io": {"type": "string"}}, "required": ["express", "socket.io"]}}, "required": ["name", "version", "description", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"limit": {"type": "integer"}, "name": {"type": "string"}, "value": {"type": "integer"}, "highalch": {"type": "integer"}, "id": {"type": "integer"}, "lowalch": {"type": "integer"}, "name_pt": {"type": "string"}, "price": {"type": "integer"}, "last": {"type": "integer"}}, "required": ["limit", "name", "value", "highalch", "id", "lowalch", "name_pt", "price", "last"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"limit" : 20000, "name" : "Chitin scraps", "value" : 100, "highalch" : 60, "id" : 26578, "lowalch" : 40, "name_pt" : "Fragmentos de quitina", "price" : 79, "last" : 79}
json_instruct
{"type": "object", "properties": {"limit": {"type": "integer"}, "name": {"type": "string"}, "value": {"type": "integer"}, "highalch": {"type": "integer"}, "id": {"type": "integer"}, "lowalch": {"type": "integer"}, "name_pt": {"type": "string"}, "price": {"type": "integer"}, "last": {"type": "integer"}}, "required": ["limit", "name", "value", "highalch", "id", "lowalch", "name_pt", "price", "last"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"probe_id": {"type": "integer"}, "resolvers": {"type": "array", "items": {"type": "object", "properties": {"ipv6_tcp": {"type": "boolean"}, "resolver_asn": {"type": "integer"}, "resolver_net": {"type": "string"}, "ipv4_tcp": {"type": "boolean"}, "internal": {"type": "string"}, "ipv6_cap": {"type": "boolean"}, "edns0_client_subnet": {"type": "string"}}, "required": ["ipv6_tcp", "resolver_asn", "resolver_net", "ipv4_tcp", "internal", "ipv6_cap", "edns0_client_subnet"]}}}, "required": ["probe_id", "resolvers"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"probe_id" : 11299, "resolvers" : [{"ipv6_tcp" : true, "resolver_asn" : 6830, "resolver_net" : "81.210.128.0/18", "ipv4_tcp" : true, "internal" : "10.42.80.3", "ipv6_cap" : true, "edns0_client_subnet" : "46.244.63.0/24"}, {"ipv6_tcp" : true, "resolver_asn" : 6830, "resolver_net" : "81.210.128.0/18", "ipv4_tcp" : true, "internal" : "10.42.80.4", "ipv6_cap" : true, "edns0_client_subnet" : "87.55.214.0/24"}]}
json_instruct
{"type": "object", "properties": {"probe_id": {"type": "integer"}, "resolvers": {"type": "array", "items": {"type": "object", "properties": {"ipv6_tcp": {"type": "boolean"}, "resolver_asn": {"type": "integer"}, "resolver_net": {"type": "string"}, "ipv4_tcp": {"type": "boolean"}, "internal": {"type": "string"}, "ipv6_cap": {"type": "boolean"}, "edns0_client_subnet": {"type": "string"}}, "required": ["ipv6_tcp", "resolver_asn", "resolver_net", "ipv4_tcp", "internal", "ipv6_cap", "edns0_client_subnet"]}}}, "required": ["probe_id", "resolvers"], "$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"}, "author": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}}, "required": ["name", "version", "description", "main", "author"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "NodeImap", "version" : "0.0.0", "description" : "NodeImap", "main" : "app.js", "author" : {"name" : "lwoltman", "email" : ""}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "author": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}}, "required": ["name", "version", "description", "main", "author"], "$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": "array", "items": {}}}, "required": ["contract", "tool", "start", "end", "duration", "analysis"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"contract" : "0xbcf319c45230477211a44ac51e4064ca697eef4b", "tool" : "slither", "start" : 1563620816.5761285, "end" : 1563620820.4724684, "duration" : 3.8963398933410645, "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#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"type": {"type": "string"}, "subClassOf": {"type": "string"}, "description": {"type": "object", "properties": {"sections": {"type": "array", "items": {"type": "object", "properties": {"title": {"type": "string"}, "paragraphs": {"type": "array", "items": {"type": "string"}}}, "required": ["title", "paragraphs"]}}}, "required": ["sections"]}, "fields": {"type": "object", "properties": {"type": {"type": "object", "properties": {"fieldName": {"type": "string"}, "requiredContent": {"type": "string"}, "requiredType": {"type": "string"}}, "required": ["fieldName", "requiredContent", "requiredType"]}, "name": {"type": "object", "properties": {"description": {"type": "array", "items": {"type": "string"}}, "example": {"type": "string"}, "defaultContent": {"type": "string"}, "fieldName": {"type": "string"}, "requiredType": {"type": "string"}, "sameAs": {"type": "string"}}, "required": ["description", "example", "defaultContent", "fieldName", "requiredType", "sameAs"]}, "statusCode": {"type": "object", "properties": {"fieldName": {"type": "string"}, "sameAs": {"type": "string"}, "requiredType": {"type": "string"}, "requiredContent": {"type": "integer"}, "defaultContent": {"type": "integer"}, "description": {"type": "array", "items": {"type": "string"}}}, "required": ["fieldName", "sameAs", "requiredType", "requiredContent", "defaultContent", "description"]}}, "required": ["type", "name", "statusCode"]}}, "required": ["type", "subClassOf", "description", "fields"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"type" : "OpportunityHasInsufficientCapacityError", "subClassOf" : "#OpenBookingError", "description" : {"sections" : [{"title" : "Error Use Case", "paragraphs" : ["There are not enough available spaces in the Opportunity contained in the `orderedItem` property of the `OrderItem` to fulfil the number of repeated `OrderItem`s. If the `OrderItem` is repeated (for multiple attendees) this error MUST only be included in the API response against the `OrderItem`s which are in excess of the capacity - for example in an Opportunity with a `remainingAttendeeCapacity` of 2 and with 5 `OrderItem`s related to it, this error would only be emitted against 3 of the `OrderItem`s."]}]}, "fields" : {"type" : {"fieldName" : "type", "requiredContent" : "OpportunityHasInsufficientCapacityError", "requiredType" : "https://schema.org/Text"}, "name" : {"description" : ["A short, human-readable summary of the problem type. It should not change from occurrence to occurrence of the problem, except for purposes of localization."], "example" : "There are not enough available spaces in the Opportunity contained in the 'orderedItem' property of the 'OrderItem' to fulfil the number of repeated 'OrderItem's.", "defaultContent" : "There are not enough available spaces in the Opportunity contained in the 'orderedItem' property of the 'OrderItem' to fulfil the number of repeated 'OrderItem's.", "fieldName" : "name", "requiredType" : "https://schema.org/Text", "sameAs" : "https://schema.org/name"}, "statusCode" : {"fieldName" : "statusCode", "sameAs" : "https://openactive.io/statusCode", "requiredType" : "https://schema.org/Integer", "requiredContent" : 409, "defaultContent" : 409, "description" : ["An integer representing the HTTP status code."]}}}
json_instruct
{"type": "object", "properties": {"type": {"type": "string"}, "subClassOf": {"type": "string"}, "description": {"type": "object", "properties": {"sections": {"type": "array", "items": {"type": "object", "properties": {"title": {"type": "string"}, "paragraphs": {"type": "array", "items": {"type": "string"}}}, "required": ["title", "paragraphs"]}}}, "required": ["sections"]}, "fields": {"type": "object", "properties": {"type": {"type": "object", "properties": {"fieldName": {"type": "string"}, "requiredContent": {"type": "string"}, "requiredType": {"type": "string"}}, "required": ["fieldName", "requiredContent", "requiredType"]}, "name": {"type": "object", "properties": {"description": {"type": "array", "items": {"type": "string"}}, "example": {"type": "string"}, "defaultContent": {"type": "string"}, "fieldName": {"type": "string"}, "requiredType": {"type": "string"}, "sameAs": {"type": "string"}}, "required": ["description", "example", "defaultContent", "fieldName", "requiredType", "sameAs"]}, "statusCode": {"type": "object", "properties": {"fieldName": {"type": "string"}, "sameAs": {"type": "string"}, "requiredType": {"type": "string"}, "requiredContent": {"type": "integer"}, "defaultContent": {"type": "integer"}, "description": {"type": "array", "items": {"type": "string"}}}, "required": ["fieldName", "sameAs", "requiredType", "requiredContent", "defaultContent", "description"]}}, "required": ["type", "name", "statusCode"]}}, "required": ["type", "subClassOf", "description", "fields"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"title": {"type": "string"}, "author": {"type": "string"}, "description": {"type": "string"}, "thumb": {"type": "string"}, "download": {"type": "string"}, "origin": {"type": "string"}}, "required": ["title", "author", "description", "thumb", "download", "origin"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"title" : "\u3010MMD\u8266\u3053\u308c\u3011\u5cf6\u98a8\u304c\u3042\u306e\u69cb\u56f3\u3067\u300cI\u2665\u300d\u3010\u7d33\u58eb\u5411\u3051\u3011", "author" : "norabito", "description" : "YouTube\u306b\u4e0a\u3052\u305f\u3084\u3064", "thumb" : "//i.iwara.tv/sites/default/files/styles/thumbnail/public/video_embed_field_thumbnails/youtube/Z7-UKbpR9t8.jpg?itok=EHwmxIvv", "download" : "https://www.iwara.tv/api/video/66aj4hr0q1uokezgj", "origin" : "https://www.iwara.tv/videos/66aj4hr0q1uokezgj"}
json_instruct
{"type": "object", "properties": {"title": {"type": "string"}, "author": {"type": "string"}, "description": {"type": "string"}, "thumb": {"type": "string"}, "download": {"type": "string"}, "origin": {"type": "string"}}, "required": ["title", "author", "description", "thumb", "download", "origin"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"id": {"type": "string"}, "playerTags": {"type": "array", "items": {}}, "teamTags": {"type": "array", "items": {"type": "string"}}, "gameTags": {"type": "array", "items": {"type": "string"}}, "metadata": {"type": "object", "properties": {"mod": {"type": "string"}, "play": {"type": "integer"}, "type": {"type": "integer"}, "parent": {"type": "string"}, "source": {"type": "string"}, "subPlay": {"type": "integer"}}, "required": ["mod", "play", "type", "parent", "source", "subPlay"]}, "created": {"type": "string"}, "season": {"type": "integer"}, "tournament": {"type": "integer"}, "type": {"type": "integer"}, "day": {"type": "integer"}, "phase": {"type": "integer"}, "category": {"type": "integer"}, "description": {"type": "string"}, "nuts": {"type": "integer"}}, "required": ["id", "playerTags", "teamTags", "gameTags", "metadata", "created", "season", "tournament", "type", "day", "phase", "category", "description", "nuts"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : "5f494ce6-2ee3-40ee-8d6b-d18e6ac20617", "playerTags" : [], "teamTags" : ["eb67ae5e-c4bf-46ca-bbbc-425cd34182ff"], "gameTags" : ["32eeedfc-11a6-43b4-9428-dd50a35b4a83"], "metadata" : {"mod" : "OVERPERFORMING", "play" : 283, "type" : 3, "parent" : "2b988516-c3a8-47a8-aa5b-8179194c5350", "source" : "HIGH_PRESSURE", "subPlay" : 0}, "created" : "2021-03-18T09:24:25.777Z", "season" : 13, "tournament" : -1, "type" : 146, "day" : 65, "phase" : 4, "category" : 1, "description" : "The pressure is on! The Moist Talkers are Overperforming.", "nuts" : 0}
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "playerTags": {"type": "array", "items": {}}, "teamTags": {"type": "array", "items": {"type": "string"}}, "gameTags": {"type": "array", "items": {"type": "string"}}, "metadata": {"type": "object", "properties": {"mod": {"type": "string"}, "play": {"type": "integer"}, "type": {"type": "integer"}, "parent": {"type": "string"}, "source": {"type": "string"}, "subPlay": {"type": "integer"}}, "required": ["mod", "play", "type", "parent", "source", "subPlay"]}, "created": {"type": "string"}, "season": {"type": "integer"}, "tournament": {"type": "integer"}, "type": {"type": "integer"}, "day": {"type": "integer"}, "phase": {"type": "integer"}, "category": {"type": "integer"}, "description": {"type": "string"}, "nuts": {"type": "integer"}}, "required": ["id", "playerTags", "teamTags", "gameTags", "metadata", "created", "season", "tournament", "type", "day", "phase", "category", "description", "nuts"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"id": {"type": "string"}, "code": {"type": "string"}, "name": {"type": "string"}, "description": {"type": "string"}, "division": {"type": "string"}, "department": {"type": "string"}, "prerequisites": {"type": "string"}, "exclusions": {"type": "string"}, "level": {"type": "integer"}, "campus": {"type": "string"}, "term": {"type": "string"}, "breadths": {"type": "array", "items": {"type": "integer"}}, "meeting_sections": {"type": "array", "items": {}}}, "required": ["id", "code", "name", "description", "division", "department", "prerequisites", "exclusions", "level", "campus", "term", "breadths", "meeting_sections"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : "CIN353H1S20201", "code" : "CIN353H1S", "name" : "Issues in Film Authorship II", "description" : "Advanced study of issues in film authorship through intensive examination of one or more major filmmakers.", "division" : "Faculty of Arts and Science", "department" : "Cinema Studies Institute", "prerequisites" : "CIN105Y1", "exclusions" : "INI375H1", "level" : 300, "campus" : "UTSG", "term" : "2020 Winter", "breadths" : [1], "meeting_sections" : []}
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "code": {"type": "string"}, "name": {"type": "string"}, "description": {"type": "string"}, "division": {"type": "string"}, "department": {"type": "string"}, "prerequisites": {"type": "string"}, "exclusions": {"type": "string"}, "level": {"type": "integer"}, "campus": {"type": "string"}, "term": {"type": "string"}, "breadths": {"type": "array", "items": {"type": "integer"}}, "meeting_sections": {"type": "array", "items": {}}}, "required": ["id", "code", "name", "description", "division", "department", "prerequisites", "exclusions", "level", "campus", "term", "breadths", "meeting_sections"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}}, "required": ["start"]}, "author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"bootstrap-v4-rtl": {"type": "string"}, "font-awesome": {"type": "string"}, "jquery": {"type": "string"}, "mdbootstrap": {"type": "string"}, "popper.js": {"type": "string"}}, "required": ["bootstrap-v4-rtl", "font-awesome", "jquery", "mdbootstrap", "popper.js"]}, "devDependencies": {"type": "object", "properties": {"browser-sync": {"type": "string"}, "gulp": {"type": "string"}, "gulp-imagemin": {"type": "string"}, "gulp-sass": {"type": "string"}}, "required": ["browser-sync", "gulp", "gulp-imagemin", "gulp-sass"]}}, "required": ["name", "version", "description", "main", "scripts", "author", "license", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "bs4starter-rtl", "version" : "1.0.0", "description" : "Bootstrap 4 RTL Workflow", "main" : "index.js", "scripts" : {"start" : "gulp"}, "author" : "Sajjad Hossein Pour", "license" : "MIT", "dependencies" : {"bootstrap-v4-rtl" : "^4.0.0-0", "font-awesome" : "^4.7.0", "jquery" : "^3.3.1", "mdbootstrap" : "^4.5.0", "popper.js" : "^1.12.9"}, "devDependencies" : {"browser-sync" : "^2.23.6", "gulp" : "^3.9.1", "gulp-imagemin" : "^4.1.0", "gulp-sass" : "^3.1.0"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}}, "required": ["start"]}, "author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"bootstrap-v4-rtl": {"type": "string"}, "font-awesome": {"type": "string"}, "jquery": {"type": "string"}, "mdbootstrap": {"type": "string"}, "popper.js": {"type": "string"}}, "required": ["bootstrap-v4-rtl", "font-awesome", "jquery", "mdbootstrap", "popper.js"]}, "devDependencies": {"type": "object", "properties": {"browser-sync": {"type": "string"}, "gulp": {"type": "string"}, "gulp-imagemin": {"type": "string"}, "gulp-sass": {"type": "string"}}, "required": ["browser-sync", "gulp", "gulp-imagemin", "gulp-sass"]}}, "required": ["name", "version", "description", "main", "scripts", "author", "license", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"additionalFiles": {"type": "string"}, "builtInLibrariesFolders": {"type": "string"}, "builtInToolsFolders": {"type": "string"}, "customBuildProperties": {"type": "string"}, "fqbn": {"type": "string"}, "hardwareFolders": {"type": "string"}, "otherLibrariesFolders": {"type": "string"}, "runtime.ide.version": {"type": "string"}, "sketchLocation": {"type": "string"}}, "required": ["additionalFiles", "builtInLibrariesFolders", "builtInToolsFolders", "customBuildProperties", "fqbn", "hardwareFolders", "otherLibrariesFolders", "runtime.ide.version", "sketchLocation"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"additionalFiles" : "", "builtInLibrariesFolders" : "", "builtInToolsFolders" : "C:\\Users\\Admin\\AppData\\Local/Arduino15/packages", "customBuildProperties" : "runtime.tools.esptool_py.path=C:\\Users\\Admin\\AppData\\Local\\Arduino15\\packages\\esp32\\tools\\esptool_py\\3.0.0,runtime.tools.xtensa-esp32-elf-gcc.path=C:\\Users\\Admin\\AppData\\Local\\Arduino15\\packages\\esp32\\tools\\xtensa-esp32-elf-gcc\\1.22.0-97-gc752ad5-5.2.0,runtime.tools.ctags.path=C:\\Users\\Admin\\AppData\\Local\\VisualGDB\\Arduino\\tools-builder\\ctags\\5.8-arduino11", "fqbn" : "esp32:esp32:esp32:PSRAM=disabled,PartitionScheme=default,CPUFreq=240,FlashMode=qio,FlashFreq=80,FlashSize=4M,UploadSpeed=921600,DebugLevel=none", "hardwareFolders" : "C:\\Users\\Admin\\AppData\\Local\\Arduino15\\packages", "otherLibrariesFolders" : "C:\\Users\\Admin\\Documents\\Arduino\\Libraries", "runtime.ide.version" : "10600", "sketchLocation" : "C:\\Users\\Admin\\Documents\\Arduino\\TTGO_GY-BNO055_Heading\\ttgo_t_display_IMU\\TTGO_IMU\\sketches\\TTGO_IMU.ino"}
json_instruct
{"type": "object", "properties": {"additionalFiles": {"type": "string"}, "builtInLibrariesFolders": {"type": "string"}, "builtInToolsFolders": {"type": "string"}, "customBuildProperties": {"type": "string"}, "fqbn": {"type": "string"}, "hardwareFolders": {"type": "string"}, "otherLibrariesFolders": {"type": "string"}, "runtime.ide.version": {"type": "string"}, "sketchLocation": {"type": "string"}}, "required": ["additionalFiles", "builtInLibrariesFolders", "builtInToolsFolders", "customBuildProperties", "fqbn", "hardwareFolders", "otherLibrariesFolders", "runtime.ide.version", "sketchLocation"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "object", "properties": {"en": {"type": "string"}}, "required": ["en"]}, "country": {"type": "string"}, "region": {"type": "string"}, "identifiers": {"type": "object", "properties": {"wmo": {"type": "string"}, "icao": {"type": "string"}, "iata": {"type": "string"}, "ghcn": {"type": "string"}, "usaf": {"type": "string"}, "mosmix": {"type": "string"}}, "required": ["wmo", "icao", "iata", "ghcn", "usaf", "mosmix"]}, "location": {"type": "object", "properties": {"latitude": {"type": "number"}, "longitude": {"type": "number"}, "elevation": {"type": "integer"}}, "required": ["latitude", "longitude", "elevation"]}, "timezone": {"type": "string"}}, "required": ["id", "name", "country", "region", "identifiers", "location", "timezone"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : "42867", "name" : {"en" : "Nagpur Sonegaon"}, "country" : "IN", "region" : "MM", "identifiers" : {"wmo" : "42867", "icao" : "VANP", "iata" : "NAG", "ghcn" : "IN012141800", "usaf" : "428670", "mosmix" : "42867"}, "location" : {"latitude" : 21.1, "longitude" : 79.05, "elevation" : 308}, "timezone" : "Asia/Kolkata"}
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "object", "properties": {"en": {"type": "string"}}, "required": ["en"]}, "country": {"type": "string"}, "region": {"type": "string"}, "identifiers": {"type": "object", "properties": {"wmo": {"type": "string"}, "icao": {"type": "string"}, "iata": {"type": "string"}, "ghcn": {"type": "string"}, "usaf": {"type": "string"}, "mosmix": {"type": "string"}}, "required": ["wmo", "icao", "iata", "ghcn", "usaf", "mosmix"]}, "location": {"type": "object", "properties": {"latitude": {"type": "number"}, "longitude": {"type": "number"}, "elevation": {"type": "integer"}}, "required": ["latitude", "longitude", "elevation"]}, "timezone": {"type": "string"}}, "required": ["id", "name", "country", "region", "identifiers", "location", "timezone"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this 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" : 14782, "source" : "parry", "verse_id" : 17826, "verse_count" : 1, "reference" : "8:18", "title" : "", "html" : " <i>I and the children&hellip;are for signs and for wonders.</i> Isaiah and his two sons were living symbols to the house of Israel (7:3; 8:2-4). Their names are prophetic; <i>Maher-shalal-hash-baz</i> speaks of the disaster which would come upon the Israelite people when the Assyrians would \"speedily\" conquer them and then \"plunder\" their possessions. <i>Shear-jashub,</i> \"a remnant shall return,\" refers to the restoration when \"a remnant of Israel will return\" to the lands of promise. The name <i>Isaiah,</i> \"Jehovah is Salvation,\" prophesies of Jesus Christ and of the salvation that comes through his atonement.</p> <p><i>Lord&hellip;dwelleth in mount Zion.</i> In Jerusalem the temple stood on Mount Moriah or Mount Zion. God dwells in his earthly temples that are dedicated and set apart for sacred ordinances.</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 an example JSON object that satisfies this schema: {"type": "object", "properties": {"version": {"type": "integer"}, "contents": {"type": "object", "properties": {"version": {"type": "integer"}, "type": {"type": "string"}, "encrypted": {"type": "object", "properties": {"cipher": {"type": "string"}, "nonce": {"type": "string"}}, "required": ["cipher", "nonce"]}}, "required": ["version", "type", "encrypted"]}, "metadata": {"type": "object", "properties": {"version": {"type": "integer"}, "kdf": {"type": "object", "properties": {"algorithm": {"type": "integer"}, "memlimit": {"type": "integer"}, "opslimit": {"type": "integer"}, "salt": {"type": "string"}}, "required": ["algorithm", "memlimit", "opslimit", "salt"]}}, "required": ["version", "kdf"]}}, "required": ["version", "contents", "metadata"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"version" : 1, "contents" : {"version" : 1, "type" : "encrypted", "encrypted" : {"cipher" : "vsxhVQUZIEXyO3RFpmpZ8wvPEHFxM6elCGqq0A8x9vQCVB8LppBXi6G9VZtukJZH2kqpWO2mmVZdQCeJK4k5UzEKpWLxSnxjdOfPmqwNG4NsMvCj2ui5/Bgj3B/w3ILT0LZMICsFRZm2d/+l/IS7EaALZvg4wMQVElGxUvMJ2KfAMvE4t6dZ2g/3ry2xfOC0jwZLRIZy", "nonce" : "JVFncmvkt6AhhxWCqaUgtEW6JNol9jMp"}}, "metadata" : {"version" : 1, "kdf" : {"algorithm" : 2, "memlimit" : 1073741824, "opslimit" : 4, "salt" : "Z23zIJCJCSapPZxdbo6anw=="}}}
json_instruct
{"type": "object", "properties": {"version": {"type": "integer"}, "contents": {"type": "object", "properties": {"version": {"type": "integer"}, "type": {"type": "string"}, "encrypted": {"type": "object", "properties": {"cipher": {"type": "string"}, "nonce": {"type": "string"}}, "required": ["cipher", "nonce"]}}, "required": ["version", "type", "encrypted"]}, "metadata": {"type": "object", "properties": {"version": {"type": "integer"}, "kdf": {"type": "object", "properties": {"algorithm": {"type": "integer"}, "memlimit": {"type": "integer"}, "opslimit": {"type": "integer"}, "salt": {"type": "string"}}, "required": ["algorithm", "memlimit", "opslimit", "salt"]}}, "required": ["version", "kdf"]}}, "required": ["version", "contents", "metadata"], "$schema": "http://json-schema.org/draft-07/schema#"}