input
stringlengths
159
2.05k
output
stringlengths
5
10.3k
task
stringclasses
1 value
schema
stringlengths
100
1.99k
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"Option": {"type": "object", "properties": {"0": {"type": "string"}, "1": {"type": "string"}, "2": {"type": "string"}}, "required": ["0", "1", "2"]}, "Value": {"type": "object", "properties": {"0": {"type": "string"}, "1": {"type": "integer"}, "2": {"type": "string"}}, "required": ["0", "1", "2"]}}, "required": ["Option", "Value"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"Option" : {"0" : "Level", "1" : "Nr_Of_Rounds", "2" : "Storage_Path"}, "Value" : {"0" : "Medium", "1" : 1, "2" : "storageM.csv"}}
json_instruct
{"type": "object", "properties": {"Option": {"type": "object", "properties": {"0": {"type": "string"}, "1": {"type": "string"}, "2": {"type": "string"}}, "required": ["0", "1", "2"]}, "Value": {"type": "object", "properties": {"0": {"type": "string"}, "1": {"type": "integer"}, "2": {"type": "string"}}, "required": ["0", "1", "2"]}}, "required": ["Option", "Value"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"db": {"type": "object", "properties": {"connectionString": {"type": "string"}}, "required": ["connectionString"]}, "port": {"type": "integer"}}, "required": ["db", "port"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"db" : {"connectionString" : "postgres://postgres:dev@db:5432/api"}, "port" : 3000}
json_instruct
{"type": "object", "properties": {"db": {"type": "object", "properties": {"connectionString": {"type": "string"}}, "required": ["connectionString"]}, "port": {"type": "integer"}}, "required": ["db", "port"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"nom": {"type": "string"}, "dpt": {"type": "string"}, "inscrits": {"type": "integer"}, "abs": {"type": "integer"}, "votants": {"type": "integer"}, "blancs": {"type": "integer"}, "nuls": {"type": "integer"}, "exp": {"type": "integer"}, "res": {"type": "array", "items": {"type": "object", "properties": {"panneau": {"type": "string"}, "voix": {"type": "integer"}}, "required": ["panneau", "voix"]}}}, "required": ["nom", "dpt", "inscrits", "abs", "votants", "blancs", "nuls", "exp", "res"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"nom" : "Chamoux-sur-Gelon", "dpt" : "Savoie", "inscrits" : 691, "abs" : 143, "votants" : 548, "blancs" : 15, "nuls" : 6, "exp" : 527, "res" : [{"panneau" : "2", "voix" : 161}, {"panneau" : "9", "voix" : 111}, {"panneau" : "3", "voix" : 103}, {"panneau" : "11", "voix" : 77}, {"panneau" : "1", "voix" : 35}, {"panneau" : "4", "voix" : 22}, {"panneau" : "10", "voix" : 6}, {"panneau" : "8", "voix" : 5}, {"panneau" : "5", "voix" : 3}, {"panneau" : "6", "voix" : 2}, {"panneau" : "7", "voix" : 2}]}
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#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"id": {"type": "string"}, "provinceId": {"type": "string"}, "regencyId": {"type": "string"}, "districtId": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "provinceId", "regencyId", "districtId", "name"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : "2009", "provinceId" : "12", "regencyId" : "78", "districtId" : "06", "name" : "Ononamolo II Lot"}
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "provinceId": {"type": "string"}, "regencyId": {"type": "string"}, "districtId": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "provinceId", "regencyId", "districtId", "name"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"id": {"type": "string"}}, "required": ["id"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : "6893ec635498df057e8d5e725e9a7ec3f49eb10a"}
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}}, "required": ["id"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"author": {"type": "string"}, "name": {"type": "string"}, "description": {"type": "string"}, "version": {"type": "string"}, "homepage": {"type": "string"}, "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"]}}, "main": {"type": "string"}, "bin": {"type": "object", "properties": {"up": {"type": "string"}}, "required": ["up"]}, "preferGlobal": {"type": "boolean"}, "directories": {"type": "object", "properties": {"lib": {"type": "string"}, "man": {"type": "string"}}, "required": ["lib", "man"]}, "engines": {"type": "object", "properties": {"node": {"type": "string"}}, "required": ["node"]}, "devDependencies": {"type": "object", "properties": {"ronn": {"type": "string"}}, "required": ["ronn"]}}, "required": ["author", "name", "description", "version", "homepage", "repository", "licenses", "main", "bin", "preferGlobal", "directories", "engines", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"author" : "execjosh (http://execjosh.blogspot.com/)", "name" : "up", "description" : "A simple static file HTTP server for node.js useful for quickly serving files", "version" : "0.1.0", "homepage" : "http://execjosh.github.com/up.js/", "repository" : {"type" : "git", "url" : "git://github.com/execjosh/up.js.git"}, "licenses" : [{"type" : "MIT", "url" : "http://opensource.org/licenses/mit-license.php"}], "main" : "./lib/up.js", "bin" : {"up" : "./bin/up"}, "preferGlobal" : true, "directories" : {"lib" : "./lib", "man" : "./man"}, "engines" : {"node" : ">=0.4.0"}, "devDependencies" : {"ronn" : "~0.3.8"}}
json_instruct
{"type": "object", "properties": {"author": {"type": "string"}, "name": {"type": "string"}, "description": {"type": "string"}, "version": {"type": "string"}, "homepage": {"type": "string"}, "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"]}}, "main": {"type": "string"}, "bin": {"type": "object", "properties": {"up": {"type": "string"}}, "required": ["up"]}, "preferGlobal": {"type": "boolean"}, "directories": {"type": "object", "properties": {"lib": {"type": "string"}, "man": {"type": "string"}}, "required": ["lib", "man"]}, "engines": {"type": "object", "properties": {"node": {"type": "string"}}, "required": ["node"]}, "devDependencies": {"type": "object", "properties": {"ronn": {"type": "string"}}, "required": ["ronn"]}}, "required": ["author", "name", "description", "version", "homepage", "repository", "licenses", "main", "bin", "preferGlobal", "directories", "engines", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"params": {"type": "object", "properties": {"token": {"type": "string"}, "team_id": {"type": "string"}, "team_domain": {"type": "string"}, "enterprise_id": {"type": "string"}, "enterprise_name": {"type": "string"}, "channel_id": {"type": "string"}, "channel_name": {"type": "string"}, "user_id": {"type": "string"}, "user_name": {"type": "string"}, "command": {"type": "string"}, "text": {"type": "string"}, "response_url": {"type": "string"}, "trigger_id": {"type": "string"}}, "required": ["token", "team_id", "team_domain", "enterprise_id", "enterprise_name", "channel_id", "channel_name", "user_id", "user_name", "command", "text", "response_url", "trigger_id"]}}, "required": ["params"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"params" : {"token" : "gIkuvaNzQIHg97ATvDxqgjtO", "team_id" : "T0001", "team_domain" : "example", "enterprise_id" : "E0001", "enterprise_name" : "Globular%20Construct%20Inc", "channel_id" : "C2147483705", "channel_name" : "test", "user_id" : "U2147483697", "user_name" : "You", "command" : "/slashcommand", "text" : "hello", "response_url" : "https://hooks.slack.com/commands/1234/5678", "trigger_id" : "13345224609.738474920.8088930838d88f008e0"}}
json_instruct
{"type": "object", "properties": {"params": {"type": "object", "properties": {"token": {"type": "string"}, "team_id": {"type": "string"}, "team_domain": {"type": "string"}, "enterprise_id": {"type": "string"}, "enterprise_name": {"type": "string"}, "channel_id": {"type": "string"}, "channel_name": {"type": "string"}, "user_id": {"type": "string"}, "user_name": {"type": "string"}, "command": {"type": "string"}, "text": {"type": "string"}, "response_url": {"type": "string"}, "trigger_id": {"type": "string"}}, "required": ["token", "team_id", "team_domain", "enterprise_id", "enterprise_name", "channel_id", "channel_name", "user_id", "user_name", "command", "text", "response_url", "trigger_id"]}}, "required": ["params"], "$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"}, "assets": {"type": "array", "items": {"type": "object", "properties": {"files": {"type": "array", "items": {"type": "string"}}, "version": {"type": "string"}, "mainfile": {"type": "string"}}, "required": ["files", "version", "mainfile"]}}, "versions": {"type": "array", "items": {"type": "string"}}, "zip": {"type": "string"}, "mainfile": {"type": "string"}, "author": {"type": "string"}, "lastversion": {"type": "string"}, "homepage": {"type": "null"}, "description": {"type": "string"}, "github": {"type": "string"}}, "required": ["name", "assets", "versions", "zip", "mainfile", "author", "lastversion", "homepage", "description", "github"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "clank", "assets" : [{"files" : ["clank.js", "clank.min.css", "clank.min.js"], "version" : "0.3.1", "mainfile" : "clank.min.js"}, {"files" : ["clank.js", "clank.min.css", "clank.min.js"], "version" : "0.3.2", "mainfile" : "clank.min.js"}, {"files" : ["clank.js", "clank.min.css", "clank.min.js"], "version" : "0.3.3", "mainfile" : "clank.min.js"}, {"files" : ["clank.js", "clank.min.css", "clank.min.js"], "version" : "0.3.4", "mainfile" : "clank.min.js"}, {"files" : ["clank.js", "clank.min.css", "clank.min.js"], "version" : "0.3.5", "mainfile" : "clank.min.js"}, {"files" : ["clank.js", "clank.min.css", "clank.min.js"], "version" : "0.3.6", "mainfile" : "clank.min.js"}], "versions" : ["0.3.6", "0.3.5", "0.3.4", "0.3.3", "0.3.2", "0.3.1"], "zip" : "clank.zip", "mainfile" : "clank.min.js", "author" : "Johan Ronsse", "lastversion" : "0.3.6", "homepage" : null, "description" : "Clank: open source prototyping framework for mobile apps", "github" : "git://github.com/Wolfr/clank.git"}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "assets": {"type": "array", "items": {"type": "object", "properties": {"files": {"type": "array", "items": {"type": "string"}}, "version": {"type": "string"}, "mainfile": {"type": "string"}}, "required": ["files", "version", "mainfile"]}}, "versions": {"type": "array", "items": {"type": "string"}}, "zip": {"type": "string"}, "mainfile": {"type": "string"}, "author": {"type": "string"}, "lastversion": {"type": "string"}, "homepage": {"type": "null"}, "description": {"type": "string"}, "github": {"type": "string"}}, "required": ["name", "assets", "versions", "zip", "mainfile", "author", "lastversion", "homepage", "description", "github"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"generator-nm": {"type": "object", "properties": {"promptValues": {"type": "object", "properties": {"githubUsername": {"type": "string"}, "website": {"type": "string"}}, "required": ["githubUsername", "website"]}}, "required": ["promptValues"]}}, "required": ["generator-nm"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"generator-nm" : {"promptValues" : {"githubUsername" : "manishrc", "website" : "https://manishrc.com"}}}
json_instruct
{"type": "object", "properties": {"generator-nm": {"type": "object", "properties": {"promptValues": {"type": "object", "properties": {"githubUsername": {"type": "string"}, "website": {"type": "string"}}, "required": ["githubUsername", "website"]}}, "required": ["promptValues"]}}, "required": ["generator-nm"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "private": {"type": "boolean"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"yargs": {"type": "string"}}, "required": ["yargs"]}}, "required": ["name", "version", "description", "main", "private", "repository", "author", "license", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "@hnw/yargs-customized", "version" : "1.0.7", "description" : "A customized version of yargs", "main" : "yargs-customized.js", "private" : false, "repository" : {"type" : "git", "url" : "https://github.com/hnw/yargs-customized.git"}, "author" : "hnw", "license" : "MIT", "dependencies" : {"yargs" : ">=13.0.0"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "private": {"type": "boolean"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"yargs": {"type": "string"}}, "required": ["yargs"]}}, "required": ["name", "version", "description", "main", "private", "repository", "author", "license", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"code": {"type": "integer"}, "parent": {"type": "integer"}, "name": {"type": "string"}, "latitude": {"type": "null"}, "longitude": {"type": "null"}, "postal": {"type": "array", "items": {"type": "integer"}}, "children": {"type": "array", "items": {}}}, "required": ["code", "parent", "name", "latitude", "longitude", "postal", "children"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"code" : 1115050002, "parent" : 1115050, "name" : "TUWI MEULEUSONG", "latitude" : null, "longitude" : null, "postal" : [23673, 23670], "children" : []}
json_instruct
{"type": "object", "properties": {"code": {"type": "integer"}, "parent": {"type": "integer"}, "name": {"type": "string"}, "latitude": {"type": "null"}, "longitude": {"type": "null"}, "postal": {"type": "array", "items": {"type": "integer"}}, "children": {"type": "array", "items": {}}}, "required": ["code", "parent", "name", "latitude", "longitude", "postal", "children"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"@metadata": {"type": "object", "properties": {"authors": {"type": "array", "items": {"type": "string"}}}, "required": ["authors"]}, "pad.settings.ep_author_follow.enableFollow": {"type": "string"}, "pad.settings.ep_author_follow.followAll": {"type": "string"}}, "required": ["@metadata", "pad.settings.ep_author_follow.enableFollow", "pad.settings.ep_author_follow.followAll"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"@metadata" : {"authors" : ["Yardom78"]}, "pad.settings.ep_author_follow.enableFollow" : "Sledova\u0165 autorov", "pad.settings.ep_author_follow.followAll" : "Sledova\u0165 v\u0161etk\u00fdch autorov"}
json_instruct
{"type": "object", "properties": {"@metadata": {"type": "object", "properties": {"authors": {"type": "array", "items": {"type": "string"}}}, "required": ["authors"]}, "pad.settings.ep_author_follow.enableFollow": {"type": "string"}, "pad.settings.ep_author_follow.followAll": {"type": "string"}}, "required": ["@metadata", "pad.settings.ep_author_follow.enableFollow", "pad.settings.ep_author_follow.followAll"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"material-components-web.css": {"type": "string"}, "material-components-web.js": {"type": "string"}, "material-components-web.min.css": {"type": "string"}, "material-components-web.min.js": {"type": "string"}}, "required": ["material-components-web.css", "material-components-web.js", "material-components-web.min.css", "material-components-web.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"material-components-web.css" : "sha256-Nydkn97Xz2I8Uz0RLds2VTr+dCJzeQGJlglKYVnXGD0=", "material-components-web.js" : "sha256-W4hJVMbGk/S6oSjaV7AsGG3JQA+yhKnJx9ETLAjaPUk=", "material-components-web.min.css" : "sha256-Jh2zBqNtZ/Ax/d7T/VFHzCXU/EW2P4gWT7SVzttWl7Q=", "material-components-web.min.js" : "sha256-W7FFeLwyAEi4JLHQflvX7UVvDu5j8CS537XTmVxVx/I="}
json_instruct
{"type": "object", "properties": {"material-components-web.css": {"type": "string"}, "material-components-web.js": {"type": "string"}, "material-components-web.min.css": {"type": "string"}, "material-components-web.min.js": {"type": "string"}}, "required": ["material-components-web.css", "material-components-web.js", "material-components-web.min.css", "material-components-web.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"text": {"type": "string"}, "user_id": {"type": "integer"}, "screen_name": {"type": "string"}, "id": {"type": "integer"}, "bid": {"type": "string"}, "article_url": {"type": "string"}, "pics": {"type": "string"}, "video_url": {"type": "string"}, "location": {"type": "string"}, "created_at": {"type": "string"}, "source": {"type": "string"}, "attitudes_count": {"type": "integer"}, "comments_count": {"type": "integer"}, "reposts_count": {"type": "integer"}, "topics": {"type": "string"}, "at_users": {"type": "string"}, "history_date": {"type": "string"}, "type": {"type": "integer"}}, "required": ["text", "user_id", "screen_name", "id", "bid", "article_url", "pics", "video_url", "location", "created_at", "source", "attitudes_count", "comments_count", "reposts_count", "topics", "at_users", "history_date", "type"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"text" : "#\u6297\u6218\u88c5\u5907#\u897f\u73ed\u7259\u7687\u5bb6\u724c\u624b|\u67aa\uff08\u4e94\uff09\uff1aBH\u516c\u53f8\u4e8e1934\u5e74\u63a8\u51fa\u53ef\u8c03\u5c04\u901f\u7684MM34\u578b\u5168\u81ea\u52a8\u624b|\u67aa\uff0c\u67aa\u7ba1\u5e26\u6709\u6563\u70ed\u7247\uff0c\u670920\u53d1\u56fa\u5b9a\u5f39\u4ed3\u548c\u4f7f\u752820\u53d1\u53ef\u62c6\u5378\u5f39\u53232\u79cd\u7248\u672c\uff0c\u9664\u8c03\u8282\u5168\u81ea\u52a8\u548c\u534a\u81ea\u52a8\u5c04\u51fb\u65b9\u5f0f\u8c03\u8282\u94ae\uff0c\u63e1\u628a\u4e0a\u8fd8\u6709\u5c04\u901f\u8c03\u8282\u7247\uff0c\u4ee5\u63e1\u628a\u5185\u7684\u6c14\u538b\u6765\u964d\u4f4e\u5c04\u901f\uff0c\u63d0\u9ad8\u5c04\u51fb\u7cbe\u5ea6\uff0c\u6700\u4f4e\u5c04\u901f\u53ef\u8c03\u5230350\u53d1/\u5206\uff0c\u8be5\u578b\u53f7\u4ea7\u91cf\u8f83\u5c11\u3002 ", "user_id" : 2896390104, "screen_name" : "\u6297\u6218\u76f4\u64ad", "id" : 3994543563360176, "bid" : "DDFvCe68o", "article_url" : "", "pics" : "https://ww2.sinaimg.cn/large/aca367d8jw1f5l43pn3scj20b40npady.jpg", "video_url" : "", "location" : "", "created_at" : "2016-07-07", "source" : "\u76ae\u76ae\u65f6\u5149\u673a", "attitudes_count" : 15, "comments_count" : 3, "reposts_count" : 5, "topics" : "\u6297\u6218\u88c5\u5907", "at_users" : "", "history_date" : "1941\u5e7407\u670807\u65e5", "type" : 0}
json_instruct
{"type": "object", "properties": {"text": {"type": "string"}, "user_id": {"type": "integer"}, "screen_name": {"type": "string"}, "id": {"type": "integer"}, "bid": {"type": "string"}, "article_url": {"type": "string"}, "pics": {"type": "string"}, "video_url": {"type": "string"}, "location": {"type": "string"}, "created_at": {"type": "string"}, "source": {"type": "string"}, "attitudes_count": {"type": "integer"}, "comments_count": {"type": "integer"}, "reposts_count": {"type": "integer"}, "topics": {"type": "string"}, "at_users": {"type": "string"}, "history_date": {"type": "string"}, "type": {"type": "integer"}}, "required": ["text", "user_id", "screen_name", "id", "bid", "article_url", "pics", "video_url", "location", "created_at", "source", "attitudes_count", "comments_count", "reposts_count", "topics", "at_users", "history_date", "type"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "array", "items": {"type": "object", "properties": {"branch": {"type": "string"}, "commit": {"type": "string"}, "commitHash": {"type": "string"}, "diff": {"type": "string"}, "path": {"type": "string"}, "printDiff": {"type": "string"}, "reason": {"type": "string"}, "stringsFound": {"type": "array", "items": {"type": "string"}}}, "required": ["branch", "commit", "commitHash", "diff", "path", "printDiff", "reason", "stringsFound"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"branch" : "origin/master", "commit" : "45904413b651800bd4b3a70ed77fcf7f6f6530389e8eab0ed11dba25b233b068", "commitHash" : "714ab7b38c13fcd67cc168bbc758a22257065c35", "diff" : "570e33e529a86add166c48532dbc9a9440813bd2230488e42f1e2723e7a86a3f", "path" : "tests/test_client.py", "printDiff" : "49d6e17f889a67f5c387e281a7b1ac3f57b7199f6135eb2058b2604ef61d14c3", "reason" : "High Entropy", "stringsFound" : ["8b9942cf415384b27cadf1f4d2d981f5", "8b9942cf415384b27cadf1f4d2d981f5", "8b9942cf415384b27cadf1f4d2d981f5", "1b9942cf415384b27cadf1f4d2d981f5", "1b9942cf415384b27cadf1f4d2d981f5"]}, {"branch" : "origin/master", "commit" : "f78b42232d18a88d2bab584fd1fb187aeeed322d2766deb09ae3c61fa08de6eb", "commitHash" : "2b20959132c0625c07029733796ba4197df63755", "diff" : "bb1db534e3870622382567ee9aab4a5e787083a681f870e2523b40d2d5de041f", "path" : "tests/test_client.py", "printDiff" : "7736204bdde091af8c0d39a9715725d4c61fc2c13d9babc38e3cf5819f8171ec", "reason" : "High Entropy", "stringsFound" : ["8b9942cf415384b27cadf1f4d2d682e5", "8b9942cf415384b27cadf1f4d2d682e5"]}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"branch": {"type": "string"}, "commit": {"type": "string"}, "commitHash": {"type": "string"}, "diff": {"type": "string"}, "path": {"type": "string"}, "printDiff": {"type": "string"}, "reason": {"type": "string"}, "stringsFound": {"type": "array", "items": {"type": "string"}}}, "required": ["branch", "commit", "commitHash", "diff", "path", "printDiff", "reason", "stringsFound"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"token": {"type": "string"}, "prefix": {"type": "array", "items": {"type": "string"}}, "guildID": {"type": "string"}, "botPrefix": {"type": "string"}, "inviteChannelID": {"type": "string"}, "botOwner": {"type": "string"}, "mongoUrl": {"type": "string"}, "owners": {"type": "array", "items": {"type": "string"}}, "botSes": {"type": "string"}, "botDurum": {"type": "string"}}, "required": ["token", "prefix", "guildID", "botPrefix", "inviteChannelID", "botOwner", "mongoUrl", "owners", "botSes", "botDurum"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"token" : "token", "prefix" : ["prefixin"], "guildID" : "sunucuid", "botPrefix" : ".", "inviteChannelID" : "invitelogkanal\u0131", "botOwner" : "kendiidnigirdeegokas", "mongoUrl" : "MONGO URL MOD BOTLA AYNIN YAPIN YAKINDA MOD BOTU PAYLA\u015eICAM^^", "owners" : ["kendiegonukasmaki\u00e7in", "burayadayalakan\u0131gir"], "botSes" : "botungirece\u011fiseskanali", "botDurum" : "Riarny \u2764\ufe0f Riarny"}
json_instruct
{"type": "object", "properties": {"token": {"type": "string"}, "prefix": {"type": "array", "items": {"type": "string"}}, "guildID": {"type": "string"}, "botPrefix": {"type": "string"}, "inviteChannelID": {"type": "string"}, "botOwner": {"type": "string"}, "mongoUrl": {"type": "string"}, "owners": {"type": "array", "items": {"type": "string"}}, "botSes": {"type": "string"}, "botDurum": {"type": "string"}}, "required": ["token", "prefix", "guildID", "botPrefix", "inviteChannelID", "botOwner", "mongoUrl", "owners", "botSes", "botDurum"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "array", "items": {"type": "array", "items": {"type": "string"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
[["513431241200", "\u7518\u591a\u6d3c\u83ab\u6751\u6c11\u59d4\u5458\u4f1a", "220", "0"], ["513431241201", "\u6d3c\u53d6\u529b\u4e4c\u6751\u6c11\u59d4\u5458\u4f1a", "220", "0"], ["513431241202", "\u65e5\u53d6\u4ee5\u6253\u6751\u6c11\u59d4\u5458\u4f1a", "210", "0"], ["513431241203", "\u679c\u963f\u4e01\u6751\u6c11\u59d4\u5458\u4f1a", "220", "0"]]
json_instruct
{"type": "array", "items": {"type": "array", "items": {"type": "string"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {"type": "integer"}}, "productReviews": {"type": "array", "items": {"type": "object", "properties": {"productId": {"type": "integer"}, "reviewText": {"type": "string"}, "reviewDate": {"type": "string"}}, "required": ["productId", "reviewText", "reviewDate"]}}}, "required": ["userId", "cartId", "preferredProducts", "productReviews"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"userId" : 90730, "cartId" : "9b998992-2888-46a8-ab16-8226cf674414", "preferredProducts" : [433, 4514], "productReviews" : [{"productId" : 3045, "reviewText" : "this Soft is vertical.", "reviewDate" : "2016-07-22T02:08:35.0894561+03:00"}, {"productId" : 3412, "reviewText" : "My jaguar loves to play with it.", "reviewDate" : "2017-03-28T22:51:09.9099897+03:00"}, {"productId" : 4451, "reviewText" : "The box this comes in is 5 kilometer by 6 yard and weights 18 gram.", "reviewDate" : "2017-08-09T18:15:18.5200218+03:00"}]}
json_instruct
{"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {"type": "integer"}}, "productReviews": {"type": "array", "items": {"type": "object", "properties": {"productId": {"type": "integer"}, "reviewText": {"type": "string"}, "reviewDate": {"type": "string"}}, "required": ["productId", "reviewText", "reviewDate"]}}}, "required": ["userId", "cartId", "preferredProducts", "productReviews"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"className": {"type": "string"}, "methods": {"type": "object", "properties": {"add": {"type": "string"}, "contains": {"type": "string"}, "isEmpty": {"type": "string"}, "iterator": {"type": "string"}, "remove": {"type": "string"}, "size": {"type": "string"}}, "required": ["add", "contains", "isEmpty", "iterator", "remove", "size"]}, "path": {"type": "string"}, "text": {"type": "string"}, "typeName": {"type": "string"}}, "required": ["className", "methods", "path", "text", "typeName"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"className" : "io.deephaven.web.shared.fu.IdentityHashSet", "methods" : {"add" : ":param t: IdentityHashSet.T\n:return: boolean", "contains" : ":param o: java.lang.Object\n:return: boolean", "isEmpty" : ":return: boolean", "iterator" : ":return: java.util.Iterator<IdentityHashSet.T>", "remove" : ":param o: java.lang.Object\n:return: boolean", "size" : ":return: int"}, "path" : "io.deephaven.web.shared.fu.IdentityHashSet", "text" : "A set that internally wraps an IdentityHashMap.\n\n Should be very fast for pooled objects, and completely wrong for different instances of Object which .equal() each\n other.\n\n Use only if you can guarantee type parameter T is a pooled object (TableHandle, JsTable, ClientTableState, etc.)", "typeName" : "class"}
json_instruct
{"type": "object", "properties": {"className": {"type": "string"}, "methods": {"type": "object", "properties": {"add": {"type": "string"}, "contains": {"type": "string"}, "isEmpty": {"type": "string"}, "iterator": {"type": "string"}, "remove": {"type": "string"}, "size": {"type": "string"}}, "required": ["add", "contains", "isEmpty", "iterator", "remove", "size"]}, "path": {"type": "string"}, "text": {"type": "string"}, "typeName": {"type": "string"}}, "required": ["className", "methods", "path", "text", "typeName"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"/js/app.js": {"type": "string"}, "/css/app.css": {"type": "string"}}, "required": ["/js/app.js", "/css/app.css"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"/js/app.js" : "/js/app.js?id=bd6d3d6e505f7f123051", "/css/app.css" : "/css/app.css?id=aea9253ff7858769725b"}
json_instruct
{"type": "object", "properties": {"/js/app.js": {"type": "string"}, "/css/app.css": {"type": "string"}}, "required": ["/js/app.js", "/css/app.css"], "$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": "string"}, "description": {"type": "string"}, "diagram": {"type": "object", "properties": {"xml_raw": {"type": "string"}, "xml_deployed": {"type": "string"}, "svg": {"type": "string"}}, "required": ["xml_raw", "xml_deployed", "svg"]}, "elements": {"type": "array", "items": {"type": "object", "properties": {"bpmn_id": {"type": "string"}, "group": {"type": "null"}, "name": {"type": "string"}, "order": {"type": "integer"}, "time_event": {"type": "null"}, "notification": {"type": "null"}, "message_event": {"type": "null"}, "task": {"type": "object", "properties": {"retries": {"type": "integer"}, "parameter": {"type": "object", "properties": {}, "required": []}, "configurables": {"type": "null"}, "selection": {"type": "object", "properties": {"filter_criteria": {"type": "object", "properties": {"characteristic_id": {"type": "string"}, "function_id": {"type": "string"}, "device_class_id": {"type": "null"}, "aspect_id": {"type": "string"}}, "required": ["characteristic_id", "function_id", "device_class_id", "aspect_id"]}, "selection_options": {"type": "null"}, "selected_device_id": {"type": "null"}, "selected_service_id": {"type": "null"}}, "required": ["filter_criteria", "selection_options", "selected_device_id", "selected_service_id"]}}, "required": ["retries", "parameter", "configurables", "selection"]}}, "required": ["bpmn_id", "group", "name", "order", "time_event", "notification", "message_event", "task"]}}, "executable": {"type": "boolean"}}, "required": ["id", "name", "description", "diagram", "elements", "executable"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : "", "name" : "test_deployment_device_filter", "description" : "", "diagram" : {"xml_raw" : "", "xml_deployed" : "", "svg" : ""}, "elements" : [{"bpmn_id" : "Task_11qei58", "group" : null, "name" : "Device getEnergyConsumptionFunction", "order" : 0, "time_event" : null, "notification" : null, "message_event" : null, "task" : {"retries" : 0, "parameter" : {}, "configurables" : null, "selection" : {"filter_criteria" : {"characteristic_id" : "urn:infai:ses:characteristic:3febed55-ba9b-43dc-8709-9c73bae3716e", "function_id" : "urn:infai:ses:measuring-function:57dfd369-92db-462c-aca4-a767b52c972e", "device_class_id" : null, "aspect_id" : "urn:infai:ses:aspect:861227f6-1523-46a7-b8ab-a4e76f0bdd32"}, "selection_options" : null, "selected_device_id" : null, "selected_service_id" : null}}}], "executable" : false}
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "description": {"type": "string"}, "diagram": {"type": "object", "properties": {"xml_raw": {"type": "string"}, "xml_deployed": {"type": "string"}, "svg": {"type": "string"}}, "required": ["xml_raw", "xml_deployed", "svg"]}, "elements": {"type": "array", "items": {"type": "object", "properties": {"bpmn_id": {"type": "string"}, "group": {"type": "null"}, "name": {"type": "string"}, "order": {"type": "integer"}, "time_event": {"type": "null"}, "notification": {"type": "null"}, "message_event": {"type": "null"}, "task": {"type": "object", "properties": {"retries": {"type": "integer"}, "parameter": {"type": "object", "properties": {}, "required": []}, "configurables": {"type": "null"}, "selection": {"type": "object", "properties": {"filter_criteria": {"type": "object", "properties": {"characteristic_id": {"type": "string"}, "function_id": {"type": "string"}, "device_class_id": {"type": "null"}, "aspect_id": {"type": "string"}}, "required": ["characteristic_id", "function_id", "device_class_id", "aspect_id"]}, "selection_options": {"type": "null"}, "selected_device_id": {"type": "null"}, "selected_service_id": {"type": "null"}}, "required": ["filter_criteria", "selection_options", "selected_device_id", "selected_service_id"]}}, "required": ["retries", "parameter", "configurables", "selection"]}}, "required": ["bpmn_id", "group", "name", "order", "time_event", "notification", "message_event", "task"]}}, "executable": {"type": "boolean"}}, "required": ["id", "name", "description", "diagram", "elements", "executable"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"title": {"type": "string"}, "description": {"type": "string"}}, "required": ["title", "description"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"title" : "Trump poised to tax an additional $200B in Chinese imports", "description" : "The Trump administration may be about to slap tariffs of up to 25 percent on an additional $200 billion in Chinese goods, escalating a confrontation between the world's two biggest economies and likely squeezing U.S. companies that import everything from handbags to bicycle tires."}
json_instruct
{"type": "object", "properties": {"title": {"type": "string"}, "description": {"type": "string"}}, "required": ["title", "description"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"swagger": {"type": "string"}, "info": {"type": "object", "properties": {"title": {"type": "string"}, "version": {"type": "string"}}, "required": ["title", "version"]}, "basePath": {"type": "string"}, "paths": {"type": "object", "properties": {"/hello": {"type": "object", "properties": {"get": {"type": "object", "properties": {"operationId": {"type": "string"}, "responses": {"type": "object", "properties": {"200": {"type": "object", "properties": {"description": {"type": "string"}}, "required": ["description"]}}, "required": ["200"]}}, "required": ["operationId", "responses"]}}, "required": ["get"]}}, "required": ["/hello"]}}, "required": ["swagger", "info", "basePath", "paths"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"swagger" : "2.0", "info" : {"title" : "Crazy API", "version" : "1.0.0"}, "basePath" : "/api", "paths" : {"/hello" : {"get" : {"operationId" : "greet", "responses" : {"200" : {"description" : "Say hello to the world."}}}}}}
json_instruct
{"type": "object", "properties": {"swagger": {"type": "string"}, "info": {"type": "object", "properties": {"title": {"type": "string"}, "version": {"type": "string"}}, "required": ["title", "version"]}, "basePath": {"type": "string"}, "paths": {"type": "object", "properties": {"/hello": {"type": "object", "properties": {"get": {"type": "object", "properties": {"operationId": {"type": "string"}, "responses": {"type": "object", "properties": {"200": {"type": "object", "properties": {"description": {"type": "string"}}, "required": ["description"]}}, "required": ["200"]}}, "required": ["operationId", "responses"]}}, "required": ["get"]}}, "required": ["/hello"]}}, "required": ["swagger", "info", "basePath", "paths"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "author": {"type": "string"}, "main": {"type": "string"}, "readmeFilename": {"type": "string"}, "licenses": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "dependencies": {"type": "object", "properties": {"stalker": {"type": "string"}}, "required": ["stalker"]}, "devDependencies": {"type": "object", "properties": {}, "required": []}, "engines": {"type": "object", "properties": {"node": {"type": "string"}, "Photoshop": {"type": "string"}}, "required": ["node", "Photoshop"]}}, "required": ["name", "version", "description", "author", "main", "readmeFilename", "licenses", "repository", "dependencies", "devDependencies", "engines"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "ps-scripting", "version" : "1.0.0", "description" : "Automating Photoshop via JavaScript", "author" : "Oliver Hellebusch <mail@olihel.com>", "main" : "js/watch.js", "readmeFilename" : "README.md", "licenses" : [{"type" : "MIT", "url" : "https://raw.github.com/olihel/ps-scripting/master/LICENSE"}], "repository" : {"type" : "git", "url" : "git@github.com:olihel/ps-scripting.git"}, "dependencies" : {"stalker" : "~0.0.20"}, "devDependencies" : {}, "engines" : {"node" : ">=0.10.0", "Photoshop" : ">=12.0.0"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "author": {"type": "string"}, "main": {"type": "string"}, "readmeFilename": {"type": "string"}, "licenses": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "dependencies": {"type": "object", "properties": {"stalker": {"type": "string"}}, "required": ["stalker"]}, "devDependencies": {"type": "object", "properties": {}, "required": []}, "engines": {"type": "object", "properties": {"node": {"type": "string"}, "Photoshop": {"type": "string"}}, "required": ["node", "Photoshop"]}}, "required": ["name", "version", "description", "author", "main", "readmeFilename", "licenses", "repository", "dependencies", "devDependencies", "engines"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"from": {"type": "string"}, "name": {"type": "string"}, "num": {"type": "integer"}, "comps": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "place": {"type": "string"}, "date": {"type": "string"}, "highest": {"type": "integer"}, "QP": {"type": "integer"}, "RP": {"type": "integer"}, "matches": {"type": "integer"}}, "required": ["name", "place", "date", "highest", "QP", "RP", "matches"]}}}, "required": ["from", "name", "num", "comps"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"from" : " , ", "name" : " Deadringer", "num" : 4769, "comps" : [{"name" : "TX FTC Qualifying Tournament", "place" : "Tesla", "date" : "", "highest" : 90, "QP" : 5, "RP" : 177, "matches" : 5}]}
json_instruct
{"type": "object", "properties": {"from": {"type": "string"}, "name": {"type": "string"}, "num": {"type": "integer"}, "comps": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "place": {"type": "string"}, "date": {"type": "string"}, "highest": {"type": "integer"}, "QP": {"type": "integer"}, "RP": {"type": "integer"}, "matches": {"type": "integer"}}, "required": ["name", "place", "date", "highest", "QP", "RP", "matches"]}}}, "required": ["from", "name", "num", "comps"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"anyio": {"type": "string"}, "httpcore": {"type": "string"}, "typing-extensions": {"type": "string"}}, "required": ["anyio", "httpcore", "typing-extensions"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"anyio" : "3.3.0", "httpcore" : "0.13.6", "typing-extensions" : "3.10.0.1"}
json_instruct
{"type": "object", "properties": {"anyio": {"type": "string"}, "httpcore": {"type": "string"}, "typing-extensions": {"type": "string"}}, "required": ["anyio", "httpcore", "typing-extensions"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"d3-legend.js": {"type": "string"}, "d3-legend.min.js": {"type": "string"}}, "required": ["d3-legend.js", "d3-legend.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"d3-legend.js" : "sha256-Bqx+cVyAaN6F9kifcM9SvELDywqVoUiiVwoz5wBLxFY=", "d3-legend.min.js" : "sha256-79bePa5dGgZbfeDfNIRY5DPzLH7WsqrzKibvfJWYcu8="}
json_instruct
{"type": "object", "properties": {"d3-legend.js": {"type": "string"}, "d3-legend.min.js": {"type": "string"}}, "required": ["d3-legend.js", "d3-legend.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "array", "items": {}}}, "required": ["contract", "tool", "start", "end", "duration", "analysis"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"contract" : "0xfaa850eef2eeb70c64dcf60c332e0d9efda0d238", "tool" : "oyente", "start" : 1563701207.9174623, "end" : 1563701212.631131, "duration" : 4.713668584823608, "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#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"js/drop.js": {"type": "string"}, "js/drop.min.js": {"type": "string"}}, "required": ["js/drop.js", "js/drop.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"js/drop.js" : "sha512-RtmuKNJSF6tCFLPU/qpUcu3CplwhnCExr/7aSmrKLCBBMteDaGrUQYklWky37gtIHEFB5VQKeTyeNpJOZYroBw==", "js/drop.min.js" : "sha512-eN1AfEy2Q4OCepieFDl9lIv3C3pnT6xvgxx9eARVhSpaIXPBQ5wzMTF6ylEba685SCrLSKcc396rGYr0mOFQKA=="}
json_instruct
{"type": "object", "properties": {"js/drop.js": {"type": "string"}, "js/drop.min.js": {"type": "string"}}, "required": ["js/drop.js", "js/drop.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"ast": {"type": "null"}, "code": {"type": "string"}, "map": {"type": "object", "properties": {"version": {"type": "integer"}, "sources": {"type": "array", "items": {"type": "string"}}, "names": {"type": "array", "items": {"type": "string"}}, "mappings": {"type": "string"}, "sourcesContent": {"type": "array", "items": {"type": "string"}}}, "required": ["version", "sources", "names", "mappings", "sourcesContent"]}, "metadata": {"type": "object", "properties": {}, "required": []}, "sourceType": {"type": "string"}}, "required": ["ast", "code", "map", "metadata", "sourceType"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"ast" : null, "code" : "var _jsxFileName = \"/home/kaique/Documents/Rocketseat/react_project/modulos/modulo09/src/pages/_layout/default/index.js\";\nimport React from 'react';\nimport PropTypes from 'prop-types';\nimport Header from \"../../../components/Header\";\nimport { Wrapper } from './styles';\nexport default function DefaultLayout({\n children\n}) {\n return /*#__PURE__*/React.createElement(Wrapper, {\n __self: this,\n __source: {\n fileName: _jsxFileName,\n lineNumber: 10,\n columnNumber: 5\n }\n }, /*#__PURE__*/React.createElement(Header, {\n __self: this,\n __source: {\n fileName: _jsxFileName,\n lineNumber: 11,\n columnNumber: 7\n }\n }), children);\n}\nDefaultLayout.propTypes = {\n children: PropTypes.element.isRequired\n};", "map" : {"version" : 3, "sources" : ["/home/kaique/Documents/Rocketseat/react_project/modulos/modulo09/src/pages/_layout/default/index.js"], "names" : ["React", "PropTypes", "Header", "Wrapper", "DefaultLayout", "children", "propTypes", "element", "isRequired"], "mappings" : ";AAAA,OAAOA,KAAP,MAAkB,OAAlB;AACA,OAAOC,SAAP,MAAsB,YAAtB;AAEA,OAAOC,MAAP,MAAmB,4BAAnB;AAEA,SAASC,OAAT,QAAwB,UAAxB;AAEA,eAAe,SAASC,aAAT,CAAuB;AAAEC,EAAAA;AAAF,CAAvB,EAAqC;AAClD,sBACE,oBAAC,OAAD;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,kBACE,oBAAC,MAAD;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,IADF,EAEGA,QAFH,CADF;AAMD;AAEDD,aAAa,CAACE,SAAd,GAA0B;AACxBD,EAAAA,QAAQ,EAAEJ,SAAS,CAACM,OAAV,CAAkBC;AADJ,CAA1B", "sourcesContent" : ["import React from 'react';\nimport PropTypes from 'prop-types';\n\nimport Header from '~/components/Header';\n\nimport { Wrapper } from './styles';\n\nexport default function DefaultLayout({ children }) {\n return (\n <Wrapper>\n <Header />\n {children}\n </Wrapper>\n );\n}\n\nDefaultLayout.propTypes = {\n children: PropTypes.element.isRequired,\n};\n"]}, "metadata" : {}, "sourceType" : "module"}
json_instruct
{"type": "object", "properties": {"ast": {"type": "null"}, "code": {"type": "string"}, "map": {"type": "object", "properties": {"version": {"type": "integer"}, "sources": {"type": "array", "items": {"type": "string"}}, "names": {"type": "array", "items": {"type": "string"}}, "mappings": {"type": "string"}, "sourcesContent": {"type": "array", "items": {"type": "string"}}}, "required": ["version", "sources", "names", "mappings", "sourcesContent"]}, "metadata": {"type": "object", "properties": {}, "required": []}, "sourceType": {"type": "string"}}, "required": ["ast", "code", "map", "metadata", "sourceType"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"content-url json en": {"type": "string"}, "name": {"type": "string"}, "@type": {"type": "string"}, "title en": {"type": "string"}, "description en": {"type": "string"}, "author-url html en": {"type": "string"}, "author en": {"type": "string"}, "copyright-year": {"type": "string"}, "license en": {"type": "string"}, "license-url html en": {"type": "string"}, "attribution-name en": {"type": "string"}, "homepage-url markdown en:": {"type": "string"}, "brush": {"type": "string"}, "brush-ratio": {"type": "string"}, "brush-coordinate-system": {"type": "string"}}, "required": ["content-url json en", "name", "@type", "title en", "description en", "author-url html en", "author en", "copyright-year", "license en", "license-url html en", "attribution-name en", "homepage-url markdown en:", "brush", "brush-ratio", "brush-coordinate-system"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"content-url json en" : "https://olih.github.io/brush/brush-k51Gg3Yag38VBQa.json", "name" : "brush-k51Gg3Yag38VBQa", "@type" : "ImageObject", "title en" : "Brush brush-k51Gg3Yag38VBQa", "description en" : "Brush based on a stake of 6 points, a weight of 1/3 and the following rules I->SKI, J->JIS, K->SJI starting with SKJ resulting in frequency M:1, L:0, C:0, S:9, Q:0, T:0, Z:0, E:0, Total:10", "author-url html en" : "https://olih.github.io/brush/profile.html", "author en" : "Olivier Huin", "copyright-year" : "2020", "license en" : "Attribution 4.0 International", "license-url html en" : "https://creativecommons.org/licenses/by/4.0/legalcode", "attribution-name en" : "Olivier Huin", "homepage-url markdown en:" : "https://github.com/olih/brush/blob/master/README.md", "brush" : "[ M 37/180 -1/14,S 309877/1224000 94739/4536000 1727/12000 1951/12000,S 1181/22320 2483/24000 -47237/372000 53/3000,S -7389119/32364000 1417/14784 -66383/348000 1891/84000,S -1623/149872 -335207/5236000 9871/76000 -12167/204000,S 840671/7752000 -314593/11832000 13/68 2/29,S 729300717/6369560000 -563186023/19108680000 24794593/125715000 52613403/796195000,S -287207567/29506050000 -38782137139/649133100000 266525029/2034900000 -466760357/8430300000,S -452309119/1982295000 2163501/22151360 -169292/888125 1837609/75516000,S 4238819/89280000 1690621/14880000 -3940687/29760000 414041/14880000 ]", "brush-ratio" : "1/1", "brush-coordinate-system" : "system cartesian right-dir + up-dir - origin-x 1/2 origin-y 1/2"}
json_instruct
{"type": "object", "properties": {"content-url json en": {"type": "string"}, "name": {"type": "string"}, "@type": {"type": "string"}, "title en": {"type": "string"}, "description en": {"type": "string"}, "author-url html en": {"type": "string"}, "author en": {"type": "string"}, "copyright-year": {"type": "string"}, "license en": {"type": "string"}, "license-url html en": {"type": "string"}, "attribution-name en": {"type": "string"}, "homepage-url markdown en:": {"type": "string"}, "brush": {"type": "string"}, "brush-ratio": {"type": "string"}, "brush-coordinate-system": {"type": "string"}}, "required": ["content-url json en", "name", "@type", "title en", "description en", "author-url html en", "author en", "copyright-year", "license en", "license-url html en", "attribution-name en", "homepage-url markdown en:", "brush", "brush-ratio", "brush-coordinate-system"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "nameEnglish": {"type": "string"}, "city": {"type": "string"}, "city2": {"type": "string"}, "city3": {"type": "string"}, "country": {"type": "string"}, "description": {"type": "string"}, "imageCredit": {"type": "string"}, "imageCreditLink": {"type": "string"}}, "required": ["id", "name", "nameEnglish", "city", "city2", "city3", "country", "description", "imageCredit", "imageCreditLink"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : "sdq", "name" : "Aeropuerto Internacional Las Am\u00e9ricas", "nameEnglish" : "Las Am\u00e9ricas International Airport", "city" : "Santo Domingo", "city2" : "Punta Caucedo", "city3" : "Boca Chica", "country" : "Dominican Republic", "description" : "Opened in 1959, Las Am\u00e9ricas International is located in Punta Caucedo. Its airport code comes from the capital city of *S*anto *D*omingo, plus a helpful \u2018*Q*\u2019 as a filler letter.", "imageCredit" : "Karen", "imageCreditLink" : "https://www.flickr.com/photos/karenblixen/"}
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "nameEnglish": {"type": "string"}, "city": {"type": "string"}, "city2": {"type": "string"}, "city3": {"type": "string"}, "country": {"type": "string"}, "description": {"type": "string"}, "imageCredit": {"type": "string"}, "imageCreditLink": {"type": "string"}}, "required": ["id", "name", "nameEnglish", "city", "city2", "city3", "country", "description", "imageCredit", "imageCreditLink"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"votes": {"type": "object", "properties": {"diff": {"type": "integer"}, "dem": {"type": "integer"}, "tot": {"type": "integer"}, "gop": {"type": "integer"}}, "required": ["diff", "dem", "tot", "gop"]}, "for": {"type": "string"}, "pct": {"type": "object", "properties": {"dem": {"type": "number"}, "per_point_diff": {"type": "number"}, "gop": {"type": "number"}}, "required": ["dem", "per_point_diff", "gop"]}}, "required": ["votes", "for", "pct"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"votes" : {"diff" : 17243, "dem" : 3412, "tot" : 24661, "gop" : 20655}, "for" : "TX/Wise County/48497", "pct" : {"dem" : 13.84, "per_point_diff" : 69.92, "gop" : 83.76}}
json_instruct
{"type": "object", "properties": {"votes": {"type": "object", "properties": {"diff": {"type": "integer"}, "dem": {"type": "integer"}, "tot": {"type": "integer"}, "gop": {"type": "integer"}}, "required": ["diff", "dem", "tot", "gop"]}, "for": {"type": "string"}, "pct": {"type": "object", "properties": {"dem": {"type": "number"}, "per_point_diff": {"type": "number"}, "gop": {"type": "number"}}, "required": ["dem", "per_point_diff", "gop"]}}, "required": ["votes", "for", "pct"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"openapi": {"type": "string"}, "info": {"type": "object", "properties": {"title": {"type": "string"}, "version": {"type": "string"}}, "required": ["title", "version"]}, "paths": {"type": "object", "properties": {"/tambahDataAbsensi": {"type": "object", "properties": {"post": {"type": "object", "properties": {"responses": {"type": "object", "properties": {"200": {"type": "object", "properties": {"description": {"type": "string"}}, "required": ["description"]}}, "required": ["200"]}}, "required": ["responses"]}}, "required": ["post"]}}, "required": ["/tambahDataAbsensi"]}}, "required": ["openapi", "info", "paths"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"openapi" : "3.0.0", "info" : {"title" : "Test API komodo", "version" : "1.0.0"}, "paths" : {"/tambahDataAbsensi" : {"post" : {"responses" : {"200" : {"description" : "An example resource"}}}}}}
json_instruct
{"type": "object", "properties": {"openapi": {"type": "string"}, "info": {"type": "object", "properties": {"title": {"type": "string"}, "version": {"type": "string"}}, "required": ["title", "version"]}, "paths": {"type": "object", "properties": {"/tambahDataAbsensi": {"type": "object", "properties": {"post": {"type": "object", "properties": {"responses": {"type": "object", "properties": {"200": {"type": "object", "properties": {"description": {"type": "string"}}, "required": ["description"]}}, "required": ["200"]}}, "required": ["responses"]}}, "required": ["post"]}}, "required": ["/tambahDataAbsensi"]}}, "required": ["openapi", "info", "paths"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"id": {"type": "string"}, "title": {"type": "string"}, "body": {"type": "string"}, "choices": {"type": "array", "items": {"type": "string"}}, "start": {"type": "integer"}, "end": {"type": "integer"}, "snapshot": {"type": "string"}, "state": {"type": "string"}, "author": {"type": "string"}, "space": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "name"]}, "votes": {"type": "integer"}, "votes_data": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "voter": {"type": "string"}, "created": {"type": "integer"}, "choice": {"type": "integer"}, "space": {"type": "object", "properties": {"id": {"type": "string"}}, "required": ["id"]}}, "required": ["id", "voter", "created", "choice", "space"]}}}, "required": ["id", "title", "body", "choices", "start", "end", "snapshot", "state", "author", "space", "votes", "votes_data"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : "QmVXeXqQaj3zPDKXNasHvPNbWE2DZCBPyqpgaYtoEMiswz", "title" : "Test", "body" : "Test", "choices" : ["Yes", "No", "Abstain"], "start" : 1615690320, "end" : 1615773120, "snapshot" : "256800", "state" : "closed", "author" : "0xd84E11beE5D555CCd905817Cb8CBBd5b6e6C4f0D", "space" : {"id" : "edao.eth", "name" : "ElasticDAO Testnet"}, "votes" : 9, "votes_data" : [{"id" : "QmNvpiYrvJuMXSHnKTAx1QAJmeb24LwGDrgLEAK5ZLg3Z1", "voter" : "0xE02682E197e575a0Cea68670f398e4a00e0C8aa8", "created" : 1615739318, "choice" : 1, "space" : {"id" : "edao.eth"}}, {"id" : "QmTGob5UH7f9K263KrsqQWZzMpRDV67SCM6nveV7hYQUUv", "voter" : "0x513a390CA8d1cF2d3bFE2eE01bbf04915C6A4B5b", "created" : 1615739013, "choice" : 1, "space" : {"id" : "edao.eth"}}, {"id" : "QmXeT6zxyYwenuguMqLu44nyEiBHDBnDmz9F3ycGpmhpov", "voter" : "0xAec766f9c33bedc1166461da3C92679c3d454c75", "created" : 1615738664, "choice" : 2, "space" : {"id" : "edao.eth"}}, {"id" : "QmeBG6CiLgded6UTM4y9Xa7yajL88txstymwki5nmN9YZE", "voter" : "0xF082E894D99E73304dF9E95F74523A2e296Af765", "created" : 1615732787, "choice" : 1, "space" : {"id" : "edao.eth"}}, {"id" : "QmRgddx5e4cL72i7QaDwZzsQ9okNV46RK2j4zQRRuBxa8T", "voter" : "0x0fF646AC1352A17A1792Cc72EbB478F812f4650f", "created" : 1615719297, "choice" : 1, "space" : {"id" : "edao.eth"}}, {"id" : "QmfCjjnZHjzr7SL9m7JvtrNas8dUranMuFPugGyobffJak", "voter" : "0x5C03541B538e65D501132101377574a176cEe582", "created" : 1615719257, "choice" : 3, "space" : {"id" : "edao.eth"}}, {"id" : "QmPdSWGUN9QzmCw3m62K1aLqh2G5i99dczn3rqRgwE7hjv", "voter" : "0x47547895218274e121E4219A3fD23235377A9903", "created" : 1615696670, "choice" : 2, "space" : {"id" : "edao.eth"}}, {"id" : "QmTizXiXbd8FCa3nmcS8WQF3vuVEm23naAVsK3VZDwu5X1", "voter" : "0x356Ad8E7824c7B16b5E1903E6edF02E89138dc5c", "created" : 1615696492, "choice" : 2, "space" : {"id" : "edao.eth"}}, {"id" : "QmNdPXHmXvSwXL2ntJY72ym7sWAM5NutEP53YRT66yZCFq", "voter" : "0x52BF2a180658B517FDa54C75A852f680fBaC2DfE", "created" : 1615695097, "choice" : 1, "space" : {"id" : "edao.eth"}}]}
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "title": {"type": "string"}, "body": {"type": "string"}, "choices": {"type": "array", "items": {"type": "string"}}, "start": {"type": "integer"}, "end": {"type": "integer"}, "snapshot": {"type": "string"}, "state": {"type": "string"}, "author": {"type": "string"}, "space": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "name"]}, "votes": {"type": "integer"}, "votes_data": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "voter": {"type": "string"}, "created": {"type": "integer"}, "choice": {"type": "integer"}, "space": {"type": "object", "properties": {"id": {"type": "string"}}, "required": ["id"]}}, "required": ["id", "voter", "created", "choice", "space"]}}}, "required": ["id", "title", "body", "choices", "start", "end", "snapshot", "state", "author", "space", "votes", "votes_data"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"em": {"type": "array", "items": {}}, "bites": {"type": "array", "items": {"type": "object", "properties": {"location": {"type": "object", "properties": {"latitude": {"type": "number"}, "longitude": {"type": "number"}}, "required": ["latitude", "longitude"]}}, "required": ["location"]}}, "other": {"type": "array", "items": {}}, "fever": {"type": "array", "items": {}}}, "required": ["em", "bites", "other", "fever"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"em" : [], "bites" : [{"location" : {"latitude" : 51.95, "longitude" : 6.42}}, {"location" : {"latitude" : 52.38, "longitude" : 4.59}}, {"location" : {"latitude" : 51.51, "longitude" : 5.01}}, {"location" : {"latitude" : 52.22, "longitude" : 5.92}}, {"location" : {"latitude" : 53.25, "longitude" : 6.6}}, {"location" : {"latitude" : 52.31, "longitude" : 5.04}}, {"location" : {"latitude" : 51.97, "longitude" : 5.82}}, {"location" : {"latitude" : 52.28, "longitude" : 6.5}}, {"location" : {"latitude" : 53.2, "longitude" : 5.9}}, {"location" : {"latitude" : 52.03, "longitude" : 6}}, {"location" : {"latitude" : 52.3, "longitude" : 5.71}}, {"location" : {"latitude" : 52.52, "longitude" : 6.4}}, {"location" : {"latitude" : 52.34, "longitude" : 4.57}}, {"location" : {"latitude" : 52.15, "longitude" : 5.32}}, {"location" : {"latitude" : 52.55, "longitude" : 4.69}}, {"location" : {"latitude" : 49.98, "longitude" : 4.95}}, {"location" : {"latitude" : 53.36, "longitude" : 6.88}}, {"location" : {"latitude" : 52.21, "longitude" : 5.92}}, {"location" : {"latitude" : 53.26, "longitude" : 6.11}}, {"location" : {"latitude" : 51.5, "longitude" : 3.48}}, {"location" : {"latitude" : 52.42, "longitude" : 4.63}}, {"location" : {"latitude" : 52.87, "longitude" : 7.08}}, {"location" : {"latitude" : 52.06, "longitude" : 5.36}}, {"location" : {"latitude" : 52.66, "longitude" : 4.75}}], "other" : [], "fever" : []}
json_instruct
{"type": "object", "properties": {"em": {"type": "array", "items": {}}, "bites": {"type": "array", "items": {"type": "object", "properties": {"location": {"type": "object", "properties": {"latitude": {"type": "number"}, "longitude": {"type": "number"}}, "required": ["latitude", "longitude"]}}, "required": ["location"]}}, "other": {"type": "array", "items": {}}, "fever": {"type": "array", "items": {}}}, "required": ["em", "bites", "other", "fever"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"id": {"type": "string"}, "variable1": {"type": "number"}, "variable2": {"type": "number"}, "variable3": {"type": "string"}}, "required": ["id", "variable1", "variable2", "variable3"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : "010500040606", "variable1" : 0.061, "variable2" : -0.2809, "variable3" : "A"}
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "variable1": {"type": "number"}, "variable2": {"type": "number"}, "variable3": {"type": "string"}}, "required": ["id", "variable1", "variable2", "variable3"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"id": {"type": "integer"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"src:alt_label": {"type": "string"}, "src:geom": {"type": "string"}, "wof:geomhash": {"type": "string"}, "wof:id": {"type": "integer"}, "wof:repo": {"type": "string"}}, "required": ["src:alt_label", "src:geom", "wof:geomhash", "wof:id", "wof:repo"]}, "bbox": {"type": "array", "items": {"type": "number"}}, "geometry": {"type": "object", "properties": {"coordinates": {"type": "array", "items": {"type": "number"}}, "type": {"type": "string"}}, "required": ["coordinates", "type"]}}, "required": ["id", "type", "properties", "bbox", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : 1125767217, "type" : "Feature", "properties" : {"src:alt_label" : "qs_pg", "src:geom" : "qs_pg", "wof:geomhash" : "6885de9da6684c52bf0b0db3dda96f92", "wof:id" : 1125767217, "wof:repo" : "whosonfirst-data-admin-ch"}, "bbox" : [10.36935, 46.62302, 10.36935, 46.62302], "geometry" : {"coordinates" : [10.36935, 46.62302], "type" : "Point"}}
json_instruct
{"type": "object", "properties": {"id": {"type": "integer"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"src:alt_label": {"type": "string"}, "src:geom": {"type": "string"}, "wof:geomhash": {"type": "string"}, "wof:id": {"type": "integer"}, "wof:repo": {"type": "string"}}, "required": ["src:alt_label", "src:geom", "wof:geomhash", "wof:id", "wof:repo"]}, "bbox": {"type": "array", "items": {"type": "number"}}, "geometry": {"type": "object", "properties": {"coordinates": {"type": "array", "items": {"type": "number"}}, "type": {"type": "string"}}, "required": ["coordinates", "type"]}}, "required": ["id", "type", "properties", "bbox", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"description": {"type": "string"}, "code": {"type": "string"}, "ldc": {"type": "array", "items": {}}, "constructores": {"type": "array", "items": {"type": "object", "properties": {"nombre": {"type": "string"}, "description": {"type": "string"}, "parametros": {"type": "array", "items": {"type": "object", "properties": {"nombre": {"type": "string"}, "description": {"type": "string"}}, "required": ["nombre", "description"]}}}, "required": ["nombre", "description", "parametros"]}}, "campos": {"type": "array", "items": {"type": "object", "properties": {"nombre": {"type": "string"}, "description": {"type": "string"}}, "required": ["nombre", "description"]}}}, "required": ["description", "code", "ldc", "constructores", "campos"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"description" : "", "code" : "", "ldc" : [], "constructores" : [{"nombre" : "ForwardRequest", "description" : "", "parametros" : [{"nombre" : "String $reason", "description" : ""}, {"nombre" : "Object _forward", "description" : ""}]}], "campos" : [{"nombre" : "forward", "description" : ""}]}
json_instruct
{"type": "object", "properties": {"description": {"type": "string"}, "code": {"type": "string"}, "ldc": {"type": "array", "items": {}}, "constructores": {"type": "array", "items": {"type": "object", "properties": {"nombre": {"type": "string"}, "description": {"type": "string"}, "parametros": {"type": "array", "items": {"type": "object", "properties": {"nombre": {"type": "string"}, "description": {"type": "string"}}, "required": ["nombre", "description"]}}}, "required": ["nombre", "description", "parametros"]}}, "campos": {"type": "array", "items": {"type": "object", "properties": {"nombre": {"type": "string"}, "description": {"type": "string"}}, "required": ["nombre", "description"]}}}, "required": ["description", "code", "ldc", "constructores", "campos"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"id": {"type": "string"}, "title": {"type": "string"}, "selftext": {"type": "string"}}, "required": ["id", "title", "selftext"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : "nsio41", "title" : "any good popping community servers with active admins?", "selftext" : "eu/uk preferably thanks!"}
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "title": {"type": "string"}, "selftext": {"type": "string"}}, "required": ["id", "title", "selftext"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"deep-extend": {"type": "string"}, "gulplog": {"type": "string"}, "merge-stream": {"type": "string"}, "minimist": {"type": "string"}, "rc": {"type": "string"}, "readable-stream": {"type": "string"}, "stack-trace": {"type": "string"}, "stream-series": {"type": "string"}, "through2": {"type": "string"}, "vinyl-fs": {"type": "string"}}, "required": ["deep-extend", "gulplog", "merge-stream", "minimist", "rc", "readable-stream", "stack-trace", "stream-series", "through2", "vinyl-fs"]}, "devDependencies": {"type": "object", "properties": {"gulp-concat": {"type": "string"}, "tape": {"type": "string"}}, "required": ["gulp-concat", "tape"]}}, "required": ["name", "version", "description", "main", "scripts", "author", "license", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "sippy-cup", "version" : "1.0.0", "description" : "Package gulp tasks as node command line scripts.", "main" : "index.js", "scripts" : {"test" : "tape test/*-test.js"}, "author" : "", "license" : "MIT", "dependencies" : {"deep-extend" : "^0.4.1", "gulplog" : "^1.0.0", "merge-stream" : "^1.0.0", "minimist" : "^1.2.0", "rc" : "^1.1.6", "readable-stream" : "^2.0.6", "stack-trace" : "0.0.9", "stream-series" : "^0.1.1", "through2" : "^2.0.1", "vinyl-fs" : "^2.4.2"}, "devDependencies" : {"gulp-concat" : "^2.6.0", "tape" : "^4.5.0"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"deep-extend": {"type": "string"}, "gulplog": {"type": "string"}, "merge-stream": {"type": "string"}, "minimist": {"type": "string"}, "rc": {"type": "string"}, "readable-stream": {"type": "string"}, "stack-trace": {"type": "string"}, "stream-series": {"type": "string"}, "through2": {"type": "string"}, "vinyl-fs": {"type": "string"}}, "required": ["deep-extend", "gulplog", "merge-stream", "minimist", "rc", "readable-stream", "stack-trace", "stream-series", "through2", "vinyl-fs"]}, "devDependencies": {"type": "object", "properties": {"gulp-concat": {"type": "string"}, "tape": {"type": "string"}}, "required": ["gulp-concat", "tape"]}}, "required": ["name", "version", "description", "main", "scripts", "author", "license", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"author": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "name"]}, "date": {"type": "object", "properties": {"day": {"type": "integer"}, "full": {"type": "integer"}, "month": {"type": "integer"}, "week": {"type": "integer"}}, "required": ["day", "full", "month", "week"]}, "id": {"type": "string"}, "misc": {"type": "object", "properties": {"postHint": {"type": "string"}}, "required": ["postHint"]}, "picture": {"type": "object", "properties": {"filesize": {"type": "integer"}, "fullUrl": {"type": "string"}, "hash": {"type": "string"}, "height": {"type": "integer"}, "lqip": {"type": "string"}, "thumbnailUrl": {"type": "string"}, "url": {"type": "string"}, "width": {"type": "integer"}}, "required": ["filesize", "fullUrl", "hash", "height", "lqip", "thumbnailUrl", "url", "width"]}, "score": {"type": "object", "properties": {"comments": {"type": "integer"}, "downs": {"type": "integer"}, "isCurated": {"type": "boolean"}, "ratio": {"type": "integer"}, "ups": {"type": "integer"}, "value": {"type": "integer"}}, "required": ["comments", "downs", "isCurated", "ratio", "ups", "value"]}, "subreddit": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "name"]}, "tags": {"type": "array", "items": {"type": "string"}}, "title": {"type": "string"}, "url": {"type": "string"}}, "required": ["author", "date", "id", "misc", "picture", "score", "subreddit", "tags", "title", "url"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"author" : {"id" : "t2_4qih1w0r", "name" : "SmoothDM"}, "date" : {"day" : 1597449600, "full" : 1597486392, "month" : 1596240000, "week" : 1596931200}, "id" : "t3_ia4vu2", "misc" : {"postHint" : "image"}, "picture" : {"filesize" : 62546, "fullUrl" : "https://preview.redd.it/2nkqjedc55h51.jpg?auto=webp&s=a319ea88ad58a5330f611c2194354b55b6d7e71d", "hash" : "18d5d716fa", "height" : 436, "lqip" : "data:image/jpg;base64,/9j/2wBDAAYEBQYFBAYGBQYHBwYIChAKCgkJChQODwwQFxQYGBcUFhYaHSUfGhsjHBYWICwgIyYnKSopGR8tMC0oMCUoKSj/2wBDAQcHBwoIChMKChMoGhYaKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCj/wAARCAALABADASIAAhEBAxEB/8QAFwAAAwEAAAAAAAAAAAAAAAAAAQQGB//EACQQAAIBAwMDBQAAAAAAAAAAAAECAwQFEQASMQYhUTJhgZGh/8QAFQEBAQAAAAAAAAAAAAAAAAAAAAH/xAAUEQEAAAAAAAAAAAAAAAAAAAAA/9oADAMBAAIRAxEAPwDa7xcrlbr9VrBKWZmBCbd+5CBtVVzz6vA99OdP9Q1UlfHDdGjAqCQg3AFG5C/R4Jz+6p7hSw1dJNFURhkdcHvg+eR3GjHRUsZjZKeINGMIdoyvzqj/2Q==", "thumbnailUrl" : "https://b.thumbs.redditmedia.com/Ku6OfUFTbeMn3c5-7cIzLhc9MP8nPy_d75TRklKaKgI.jpg", "url" : "https://preview.redd.it/2nkqjedc55h51.jpg?width=640&crop=smart&auto=webp&s=03e27b7fd652bfe9a66794e12d28b98c24e64303", "width" : 640}, "score" : {"comments" : 10, "downs" : 0, "isCurated" : false, "ratio" : 1, "ups" : 556, "value" : 556}, "subreddit" : {"id" : "t5_3isai", "name" : "dndmaps"}, "tags" : ["Dungeon"], "title" : "Dungeon Map\u2013 \u201cThe Temple\"", "url" : "https://www.reddit.com/r/dndmaps/comments/ia4vu2/oc_dungeon_map_the_temple/"}
json_instruct
{"type": "object", "properties": {"author": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "name"]}, "date": {"type": "object", "properties": {"day": {"type": "integer"}, "full": {"type": "integer"}, "month": {"type": "integer"}, "week": {"type": "integer"}}, "required": ["day", "full", "month", "week"]}, "id": {"type": "string"}, "misc": {"type": "object", "properties": {"postHint": {"type": "string"}}, "required": ["postHint"]}, "picture": {"type": "object", "properties": {"filesize": {"type": "integer"}, "fullUrl": {"type": "string"}, "hash": {"type": "string"}, "height": {"type": "integer"}, "lqip": {"type": "string"}, "thumbnailUrl": {"type": "string"}, "url": {"type": "string"}, "width": {"type": "integer"}}, "required": ["filesize", "fullUrl", "hash", "height", "lqip", "thumbnailUrl", "url", "width"]}, "score": {"type": "object", "properties": {"comments": {"type": "integer"}, "downs": {"type": "integer"}, "isCurated": {"type": "boolean"}, "ratio": {"type": "integer"}, "ups": {"type": "integer"}, "value": {"type": "integer"}}, "required": ["comments", "downs", "isCurated", "ratio", "ups", "value"]}, "subreddit": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "name"]}, "tags": {"type": "array", "items": {"type": "string"}}, "title": {"type": "string"}, "url": {"type": "string"}}, "required": ["author", "date", "id", "misc", "picture", "score", "subreddit", "tags", "title", "url"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"name": {"type": "string"}, "symbol": {"type": "string"}, "address": {"type": "string"}, "decimals": {"type": "integer"}, "dharmaVerificationStatus": {"type": "string"}}, "required": ["name", "symbol", "address", "decimals", "dharmaVerificationStatus"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "YEZICOIN", "symbol" : "YZC", "address" : "0x975983d2d001a0D0EAdFC5e62AC46D66aAAaded3", "decimals" : 18, "dharmaVerificationStatus" : "UNVERIFIED"}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "symbol": {"type": "string"}, "address": {"type": "string"}, "decimals": {"type": "integer"}, "dharmaVerificationStatus": {"type": "string"}}, "required": ["name", "symbol", "address", "decimals", "dharmaVerificationStatus"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"id": {"type": "integer"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"src:alt_label": {"type": "string"}, "src:geom": {"type": "string"}, "wof:geomhash": {"type": "string"}, "wof:id": {"type": "integer"}, "wof:repo": {"type": "string"}}, "required": ["src:alt_label", "src:geom", "wof:geomhash", "wof:id", "wof:repo"]}, "bbox": {"type": "array", "items": {"type": "number"}}, "geometry": {"type": "object", "properties": {"coordinates": {"type": "array", "items": {"type": "number"}}, "type": {"type": "string"}}, "required": ["coordinates", "type"]}}, "required": ["id", "type", "properties", "bbox", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : 1125797441, "type" : "Feature", "properties" : {"src:alt_label" : "qs_pg", "src:geom" : "qs_pg", "wof:geomhash" : "480b34ddcb5aea5bd714318011706199", "wof:id" : 1125797441, "wof:repo" : "whosonfirst-data-admin-gb"}, "bbox" : [-0.5476, 50.93734, -0.5476, 50.93734], "geometry" : {"coordinates" : [-0.5476, 50.93734], "type" : "Point"}}
json_instruct
{"type": "object", "properties": {"id": {"type": "integer"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"src:alt_label": {"type": "string"}, "src:geom": {"type": "string"}, "wof:geomhash": {"type": "string"}, "wof:id": {"type": "integer"}, "wof:repo": {"type": "string"}}, "required": ["src:alt_label", "src:geom", "wof:geomhash", "wof:id", "wof:repo"]}, "bbox": {"type": "array", "items": {"type": "number"}}, "geometry": {"type": "object", "properties": {"coordinates": {"type": "array", "items": {"type": "number"}}, "type": {"type": "string"}}, "required": ["coordinates", "type"]}}, "required": ["id", "type", "properties", "bbox", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"return": {"type": "array", "items": {"type": "object", "properties": {"key": {"type": "string"}, "value": {"type": "object", "properties": {"map": {"type": "string"}}, "required": ["map"]}}, "required": ["key", "value"]}}, "meta": {"type": "object", "properties": {"datasource": {"type": "string"}}, "required": ["datasource"]}}, "required": ["return", "meta"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"return" : [{"key" : "setfoo", "value" : {"map" : "value"}}], "meta" : {"datasource" : "postgres"}}
json_instruct
{"type": "object", "properties": {"return": {"type": "array", "items": {"type": "object", "properties": {"key": {"type": "string"}, "value": {"type": "object", "properties": {"map": {"type": "string"}}, "required": ["map"]}}, "required": ["key", "value"]}}, "meta": {"type": "object", "properties": {"datasource": {"type": "string"}}, "required": ["datasource"]}}, "required": ["return", "meta"], "$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 MEDAN", "originalFilename" : "fhoto.jpg", "namaPartai" : "PARTAI DEMOKRAT", "id" : 214174, "noUrut" : 1, "nama" : "IRWAN SIHOMBING, SE", "stringJenisKelamin" : "Laki-Laki"}, {"namaKab" : "KOTA MEDAN", "originalFilename" : "fhoto.jpg", "namaPartai" : "PARTAI DEMOKRAT", "id" : 218029, "noUrut" : 2, "nama" : "WELVIN HUTAJULU", "stringJenisKelamin" : "Laki-Laki"}, {"namaKab" : "KOTA MEDAN", "originalFilename" : "FHOTO.jpg", "namaPartai" : "PARTAI DEMOKRAT", "id" : 214940, "noUrut" : 3, "nama" : "ANITA PUTRI", "stringJenisKelamin" : "Perempuan"}, {"namaKab" : "KOTA MEDAN", "originalFilename" : "img20180711_12035873.jpg", "namaPartai" : "PARTAI DEMOKRAT", "id" : 213598, "noUrut" : 4, "nama" : "ANANDA ABDINESIA SITEPU, SH", "stringJenisKelamin" : "Laki-Laki"}, {"namaKab" : "KOTA MEDAN", "originalFilename" : "FHOTO1.jpg", "namaPartai" : "PARTAI DEMOKRAT", "id" : 216942, "noUrut" : 5, "nama" : "M. AKHIRUDDIN NASUTION", "stringJenisKelamin" : "Laki-Laki"}, {"namaKab" : "KOTA MEDAN", "originalFilename" : "FHOTO.jpg", "namaPartai" : "PARTAI DEMOKRAT", "id" : 216654, "noUrut" : 6, "nama" : "WIRANDA SARI", "stringJenisKelamin" : "Perempuan"}, {"namaKab" : "KOTA MEDAN", "originalFilename" : "FHOTO.jpg", "namaPartai" : "PARTAI DEMOKRAT", "id" : 217654, "noUrut" : 7, "nama" : "MAHFUZA NASUTION", "stringJenisKelamin" : "Perempuan"}, {"namaKab" : "KOTA MEDAN", "originalFilename" : "FHOTO.jpg", "namaPartai" : "PARTAI DEMOKRAT", "id" : 215803, "noUrut" : 8, "nama" : "ANTONIUS SIMAMORA, ST", "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#"}
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"}, "typings": {"type": "string"}, "scripts": {"type": "object", "properties": {"build": {"type": "string"}}, "required": ["build"]}, "keywords": {"type": "array", "items": {}}, "author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"@utils/logger": {"type": "string"}, "kafka-node": {"type": "string"}, "uuid": {"type": "string"}}, "required": ["@utils/logger", "kafka-node", "uuid"]}, "devDependencies": {"type": "object", "properties": {"@types/node": {"type": "string"}, "rimraf": {"type": "string"}, "typescript": {"type": "string"}}, "required": ["@types/node", "rimraf", "typescript"]}}, "required": ["name", "version", "description", "main", "typings", "scripts", "keywords", "author", "license", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "@utils/event", "version" : "1.0.2", "description" : "", "main" : "libs/index.js", "typings" : "libs/index.d.ts", "scripts" : {"build" : "rimraf libs && tsc -p tsconfig.json"}, "keywords" : [], "author" : "", "license" : "ISC", "dependencies" : {"@utils/logger" : "file:../logger", "kafka-node" : "^4.1.3", "uuid" : "^3.3.2"}, "devDependencies" : {"@types/node" : "^12.0.4", "rimraf" : "^2.6.3", "typescript" : "^3.5.1"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "typings": {"type": "string"}, "scripts": {"type": "object", "properties": {"build": {"type": "string"}}, "required": ["build"]}, "keywords": {"type": "array", "items": {}}, "author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"@utils/logger": {"type": "string"}, "kafka-node": {"type": "string"}, "uuid": {"type": "string"}}, "required": ["@utils/logger", "kafka-node", "uuid"]}, "devDependencies": {"type": "object", "properties": {"@types/node": {"type": "string"}, "rimraf": {"type": "string"}, "typescript": {"type": "string"}}, "required": ["@types/node", "rimraf", "typescript"]}}, "required": ["name", "version", "description", "main", "typings", "scripts", "keywords", "author", "license", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "dependencies": {"type": "object", "properties": {"bcrypt": {"type": "string"}, "cors": {"type": "string"}, "cross-env": {"type": "string"}, "dotenv": {"type": "string"}, "express": {"type": "string"}, "helmet": {"type": "string"}, "joi": {"type": "string"}, "jsonwebtoken": {"type": "string"}, "mongodb": {"type": "string"}, "passport": {"type": "string"}, "passport-http": {"type": "string"}, "passport-jwt": {"type": "string"}, "pug": {"type": "string"}}, "required": ["bcrypt", "cors", "cross-env", "dotenv", "express", "helmet", "joi", "jsonwebtoken", "mongodb", "passport", "passport-http", "passport-jwt", "pug"]}, "devDependencies": {"type": "object", "properties": {"clean-css-cli": {"type": "string"}, "mocha": {"type": "string"}, "nyc": {"type": "string"}, "proxyquire": {"type": "string"}, "sinon": {"type": "string"}, "supertest": {"type": "string"}}, "required": ["clean-css-cli", "mocha", "nyc", "proxyquire", "sinon", "supertest"]}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "test:coverage": {"type": "string"}, "build": {"type": "string"}, "start": {"type": "string"}}, "required": ["test", "test:coverage", "build", "start"]}, "keywords": {"type": "array", "items": {}}, "author": {"type": "string"}, "license": {"type": "string"}, "nyc": {"type": "object", "properties": {"all": {"type": "boolean"}, "include": {"type": "array", "items": {"type": "string"}}}, "required": ["all", "include"]}}, "required": ["name", "version", "description", "main", "dependencies", "devDependencies", "scripts", "keywords", "author", "license", "nyc"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "e-commerce", "version" : "1.0.0", "description" : "", "main" : "index.js", "dependencies" : {"bcrypt" : "^5.0.1", "cors" : "^2.8.5", "cross-env" : "^7.0.3", "dotenv" : "^10.0.0", "express" : "^4.17.1", "helmet" : "^4.6.0", "joi" : "^17.4.0", "jsonwebtoken" : "^8.5.1", "mongodb" : "^3.6.10", "passport" : "^0.4.1", "passport-http" : "^0.3.0", "passport-jwt" : "^4.0.0", "pug" : "^3.0.2"}, "devDependencies" : {"clean-css-cli" : "^5.3.0", "mocha" : "^9.0.2", "nyc" : "^15.1.0", "proxyquire" : "^2.1.3", "sinon" : "^11.1.1", "supertest" : "^6.1.3"}, "scripts" : {"test" : "mocha --exit", "test:coverage" : "nyc npm run test", "build" : "cd public/assets && cleancss -o main.min.css main.css", "start" : "cross-env NODE_ENV=production node index.js -p $PORT"}, "keywords" : [], "author" : "Sebastian Galindo <sebastian.galindo143@gmail.com>", "license" : "MIT", "nyc" : {"all" : true, "include" : ["routes", "services", "lib", "utils"]}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "dependencies": {"type": "object", "properties": {"bcrypt": {"type": "string"}, "cors": {"type": "string"}, "cross-env": {"type": "string"}, "dotenv": {"type": "string"}, "express": {"type": "string"}, "helmet": {"type": "string"}, "joi": {"type": "string"}, "jsonwebtoken": {"type": "string"}, "mongodb": {"type": "string"}, "passport": {"type": "string"}, "passport-http": {"type": "string"}, "passport-jwt": {"type": "string"}, "pug": {"type": "string"}}, "required": ["bcrypt", "cors", "cross-env", "dotenv", "express", "helmet", "joi", "jsonwebtoken", "mongodb", "passport", "passport-http", "passport-jwt", "pug"]}, "devDependencies": {"type": "object", "properties": {"clean-css-cli": {"type": "string"}, "mocha": {"type": "string"}, "nyc": {"type": "string"}, "proxyquire": {"type": "string"}, "sinon": {"type": "string"}, "supertest": {"type": "string"}}, "required": ["clean-css-cli", "mocha", "nyc", "proxyquire", "sinon", "supertest"]}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "test:coverage": {"type": "string"}, "build": {"type": "string"}, "start": {"type": "string"}}, "required": ["test", "test:coverage", "build", "start"]}, "keywords": {"type": "array", "items": {}}, "author": {"type": "string"}, "license": {"type": "string"}, "nyc": {"type": "object", "properties": {"all": {"type": "boolean"}, "include": {"type": "array", "items": {"type": "string"}}}, "required": ["all", "include"]}}, "required": ["name", "version", "description", "main", "dependencies", "devDependencies", "scripts", "keywords", "author", "license", "nyc"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"name": {"type": "string"}, "symbol": {"type": "string"}, "logoURI": {"type": "string"}, "decimals": {"type": "integer"}, "address": {"type": "string"}, "chainId": {"type": "integer"}, "tags": {"type": "array", "items": {"type": "string"}}, "extensions": {"type": "object", "properties": {"website": {"type": "string"}}, "required": ["website"]}}, "required": ["name", "symbol", "logoURI", "decimals", "address", "chainId", "tags", "extensions"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "CoC public sale token", "symbol" : "PB", "logoURI" : "https://raw.githubusercontent.com/solana-labs/token-list/main/assets/mainnet/9oM4Bg2E8y8LkGbaJhd27tcbto4KpjvXHubG2LEoRbQL/logo.png", "decimals" : 0, "address" : "9oM4Bg2E8y8LkGbaJhd27tcbto4KpjvXHubG2LEoRbQL", "chainId" : 101, "tags" : ["utility-token"], "extensions" : {"website" : "https://catsoncrack.xyz"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "symbol": {"type": "string"}, "logoURI": {"type": "string"}, "decimals": {"type": "integer"}, "address": {"type": "string"}, "chainId": {"type": "integer"}, "tags": {"type": "array", "items": {"type": "string"}}, "extensions": {"type": "object", "properties": {"website": {"type": "string"}}, "required": ["website"]}}, "required": ["name", "symbol", "logoURI", "decimals", "address", "chainId", "tags", "extensions"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"genclient": {"type": "string"}, "compile": {"type": "string"}, "build": {"type": "string"}}, "required": ["genclient", "compile", "build"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"@types/request": {"type": "string"}, "typescript": {"type": "string"}}, "required": ["@types/request", "typescript"]}, "dependencies": {"type": "object", "properties": {"request": {"type": "string"}, "url-parse": {"type": "string"}}, "required": ["request", "url-parse"]}}, "required": ["name", "version", "description", "main", "scripts", "repository", "keywords", "author", "license", "bugs", "homepage", "devDependencies", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "netsparker-cloud", "version" : "0.1.0", "description" : "JavaScript client for consuming the Netsparker Cloud API.", "main" : "dist/api.js", "scripts" : {"genclient" : "scripts/genclient.sh", "compile" : "tsc", "build" : "npm ci && npm run genclient && npm run compile"}, "repository" : {"type" : "git", "url" : "git+ssh://git@github.com/niaid/netsparker-cloud-js.git"}, "keywords" : ["netsparker", "security", "web", "application", "scanning", "api", "client", "sdk"], "author" : "christopher.campanale@nih.gov", "license" : "MIT", "bugs" : {"url" : "https://github.com/niaid/netsparker-cloud-js/issues"}, "homepage" : "https://github.com/niaid/netsparker-cloud-js#readme", "devDependencies" : {"@types/request" : "^2.48.5", "typescript" : "^4.3.2"}, "dependencies" : {"request" : "^2.88.2", "url-parse" : "^1.5.1"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"genclient": {"type": "string"}, "compile": {"type": "string"}, "build": {"type": "string"}}, "required": ["genclient", "compile", "build"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"@types/request": {"type": "string"}, "typescript": {"type": "string"}}, "required": ["@types/request", "typescript"]}, "dependencies": {"type": "object", "properties": {"request": {"type": "string"}, "url-parse": {"type": "string"}}, "required": ["request", "url-parse"]}}, "required": ["name", "version", "description", "main", "scripts", "repository", "keywords", "author", "license", "bugs", "homepage", "devDependencies", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"pluginname": {"type": "string"}}, "required": ["pluginname"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"pluginname" : "Env\u00edos de archivo"}
json_instruct
{"type": "object", "properties": {"pluginname": {"type": "string"}}, "required": ["pluginname"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"variants": {"type": "object", "properties": {"": {"type": "object", "properties": {"model": {"type": "string"}}, "required": ["model"]}}, "required": [""]}}, "required": ["variants"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"variants" : {"" : {"model" : "thommas:block/gloamblossom_leaves"}}}
json_instruct
{"type": "object", "properties": {"variants": {"type": "object", "properties": {"": {"type": "object", "properties": {"model": {"type": "string"}}, "required": ["model"]}}, "required": [""]}}, "required": ["variants"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"cwlVersion": {"type": "string"}, "class": {"type": "string"}, "inputs": {"type": "object", "properties": {"r": {"type": "object", "properties": {"type": {"type": "string"}, "inputBinding": {"type": "object", "properties": {"prefix": {"type": "string"}, "separate": {"type": "boolean"}, "itemSeparator": {"type": "string"}}, "required": ["prefix", "separate", "itemSeparator"]}, "doc": {"type": "string"}}, "required": ["type", "inputBinding", "doc"]}}, "required": ["r"]}, "outputs": {"type": "object", "properties": {"4jkYMaXJ6O": {"type": "object", "properties": {"type": {"type": "string"}}, "required": ["type"]}}, "required": ["4jkYMaXJ6O"]}, "baseCommand": {"type": "null"}, "stdout": {"type": "string"}, "stderr": {"type": "string"}}, "required": ["cwlVersion", "class", "inputs", "outputs", "baseCommand", "stdout", "stderr"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"cwlVersion" : "v1.0", "class" : "CommandLineTool", "inputs" : {"r" : {"type" : "boolean", "inputBinding" : {"prefix" : "ea dolor cillum", "separate" : true, "itemSeparator" : "eiusmod est nulla"}, "doc" : "volupta"}}, "outputs" : {"4jkYMaXJ6O" : {"type" : "stderr"}}, "baseCommand" : null, "stdout" : "consectetur sunt", "stderr" : "enim"}
json_instruct
{"type": "object", "properties": {"cwlVersion": {"type": "string"}, "class": {"type": "string"}, "inputs": {"type": "object", "properties": {"r": {"type": "object", "properties": {"type": {"type": "string"}, "inputBinding": {"type": "object", "properties": {"prefix": {"type": "string"}, "separate": {"type": "boolean"}, "itemSeparator": {"type": "string"}}, "required": ["prefix", "separate", "itemSeparator"]}, "doc": {"type": "string"}}, "required": ["type", "inputBinding", "doc"]}}, "required": ["r"]}, "outputs": {"type": "object", "properties": {"4jkYMaXJ6O": {"type": "object", "properties": {"type": {"type": "string"}}, "required": ["type"]}}, "required": ["4jkYMaXJ6O"]}, "baseCommand": {"type": "null"}, "stdout": {"type": "string"}, "stderr": {"type": "string"}}, "required": ["cwlVersion", "class", "inputs", "outputs", "baseCommand", "stdout", "stderr"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"variants": {"type": "object", "properties": {"normal": {"type": "array", "items": {"type": "object", "properties": {"model": {"type": "string"}}, "required": ["model"]}}}, "required": ["normal"]}}, "required": ["variants"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"variants" : {"normal" : [{"model" : "glass_black_00"}, {"model" : "glass_black_01"}, {"model" : "glass_black_02"}, {"model" : "glass_black_03"}]}}
json_instruct
{"type": "object", "properties": {"variants": {"type": "object", "properties": {"normal": {"type": "array", "items": {"type": "object", "properties": {"model": {"type": "string"}}, "required": ["model"]}}}, "required": ["normal"]}}, "required": ["variants"], "$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"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}, "peerDependencies": {"type": "object", "properties": {"react": {"type": "string"}}, "required": ["react"]}, "devDependencies": {"type": "object", "properties": {"react": {"type": "string"}}, "required": ["react"]}}, "required": ["name", "version", "description", "repository", "bugs", "homepage", "keywords", "author", "license", "peerDependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "use-update", "version" : "2.2.0", "description" : "Component Did Update lifecycle method as a hook", "repository" : {"type" : "git", "url" : "git+https://github.com/ihavebadfantasy/use-update"}, "bugs" : {"url" : "https://github.com/ihavebadfantasy/use-update/issues"}, "homepage" : "https://github.com/ihavebadfantasy/use-update", "keywords" : ["react", "hooks", "componentDidUpdate", "side-effects", "useEffect"], "author" : "ihavebadfantasy", "license" : "MIT", "peerDependencies" : {"react" : "^16.8.0 || ^17.0.0"}, "devDependencies" : {"react" : "^16.9.0"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}, "peerDependencies": {"type": "object", "properties": {"react": {"type": "string"}}, "required": ["react"]}, "devDependencies": {"type": "object", "properties": {"react": {"type": "string"}}, "required": ["react"]}}, "required": ["name", "version", "description", "repository", "bugs", "homepage", "keywords", "author", "license", "peerDependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"type": {"type": "string"}, "id": {"type": "string"}, "spec_version": {"type": "string"}, "objects": {"type": "array", "items": {"type": "object", "properties": {"created_by_ref": {"type": "string"}, "object_marking_refs": {"type": "array", "items": {"type": "string"}}, "source_ref": {"type": "string"}, "target_ref": {"type": "string"}, "external_references": {"type": "array", "items": {"type": "object", "properties": {"source_name": {"type": "string"}, "url": {"type": "string"}, "description": {"type": "string"}}, "required": ["source_name", "url", "description"]}}, "description": {"type": "string"}, "relationship_type": {"type": "string"}, "id": {"type": "string"}, "type": {"type": "string"}, "modified": {"type": "string"}, "created": {"type": "string"}}, "required": ["created_by_ref", "object_marking_refs", "source_ref", "target_ref", "external_references", "description", "relationship_type", "id", "type", "modified", "created"]}}}, "required": ["type", "id", "spec_version", "objects"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"type" : "bundle", "id" : "bundle--b62bcbd8-6c07-40ca-8991-d598ae7d7369", "spec_version" : "2.0", "objects" : [{"created_by_ref" : "identity--c78cb6e5-0c4b-4611-8297-d1b8b55e40b5", "object_marking_refs" : ["marking-definition--fa42a846-8d90-4e51-bc29-71d5b4802168"], "source_ref" : "malware--a4f57468-fbd5-49e4-8476-52088220b92d", "target_ref" : "attack-pattern--005a06c6-14bf-4118-afa0-ebcd8aebb0c9", "external_references" : [{"source_name" : "CISA Zebrocy Oct 2020", "url" : "https://us-cert.cisa.gov/ncas/analysis-reports/ar20-303b", "description" : "CISA. (2020, October 29). Malware Analysis Report (AR20-303B). Retrieved December 9, 2020."}], "description" : "[Zebrocy](https://attack.mitre.org/software/S0251) has a command to create a scheduled task for persistence.(Citation: CISA Zebrocy Oct 2020)", "relationship_type" : "uses", "id" : "relationship--f957f429-c0d1-4b02-aef8-1d8500421225", "type" : "relationship", "modified" : "2020-12-09T21:53:58.664Z", "created" : "2020-12-09T21:53:58.664Z"}]}
json_instruct
{"type": "object", "properties": {"type": {"type": "string"}, "id": {"type": "string"}, "spec_version": {"type": "string"}, "objects": {"type": "array", "items": {"type": "object", "properties": {"created_by_ref": {"type": "string"}, "object_marking_refs": {"type": "array", "items": {"type": "string"}}, "source_ref": {"type": "string"}, "target_ref": {"type": "string"}, "external_references": {"type": "array", "items": {"type": "object", "properties": {"source_name": {"type": "string"}, "url": {"type": "string"}, "description": {"type": "string"}}, "required": ["source_name", "url", "description"]}}, "description": {"type": "string"}, "relationship_type": {"type": "string"}, "id": {"type": "string"}, "type": {"type": "string"}, "modified": {"type": "string"}, "created": {"type": "string"}}, "required": ["created_by_ref", "object_marking_refs", "source_ref", "target_ref", "external_references", "description", "relationship_type", "id", "type", "modified", "created"]}}}, "required": ["type", "id", "spec_version", "objects"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "dt": {"type": "integer"}, "ar": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}}, "required": ["id", "name"]}, "al": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "picUrl": {"type": "string"}}, "required": ["id", "name", "picUrl"]}}, "required": ["id", "name", "dt", "ar", "al"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"id" : 1446772583, "name" : "\u5bc2\u5bde\u7684\u602a\u517d (\u4e00\u5bf9\u602a\u517d\u7248)", "dt" : 256470, "ar" : {"id" : 31545391, "name" : "ONE PROMISE"}, "al" : {"id" : 89209643, "name" : "\u5bc2\u5bde\u7684\u602a\u517d (\u4e00\u5bf9\u602a\u517d\u7248)", "picUrl" : "https://p1.music.126.net/8RFpZcmMl4dCOzbZPhTtQQ==/109951164972798432.jpg"}}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "dt": {"type": "integer"}, "ar": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}}, "required": ["id", "name"]}, "al": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "picUrl": {"type": "string"}}, "required": ["id", "name", "picUrl"]}}, "required": ["id", "name", "dt", "ar", "al"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "displayName": {"type": "string"}, "description": {"type": "string"}, "unity": {"type": "string"}, "dependencies": {"type": "object", "properties": {"com.unity.burst": {"type": "string"}, "com.unity.mathematics": {"type": "string"}}, "required": ["com.unity.burst", "com.unity.mathematics"]}, "keywords": {"type": "array", "items": {}}, "author": {"type": "object", "properties": {"name": {"type": "string"}, "url": {"type": "string"}}, "required": ["name", "url"]}}, "required": ["name", "version", "displayName", "description", "unity", "dependencies", "keywords", "author"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "com.pastasfuture.kdtree", "version" : "1.0.0", "displayName" : "KD Tree", "description" : "A system for building and querying KD Trees. All burst compatible.", "unity" : "2019.3", "dependencies" : {"com.unity.burst" : "1.2.3", "com.unity.mathematics" : "1.1.0"}, "keywords" : [], "author" : {"name" : "pastasfuture", "url" : "https://twitter.com/pastasfuture"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "displayName": {"type": "string"}, "description": {"type": "string"}, "unity": {"type": "string"}, "dependencies": {"type": "object", "properties": {"com.unity.burst": {"type": "string"}, "com.unity.mathematics": {"type": "string"}}, "required": ["com.unity.burst", "com.unity.mathematics"]}, "keywords": {"type": "array", "items": {}}, "author": {"type": "object", "properties": {"name": {"type": "string"}, "url": {"type": "string"}}, "required": ["name", "url"]}}, "required": ["name", "version", "displayName", "description", "unity", "dependencies", "keywords", "author"], "$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"}}, "required": ["test"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}}, "required": ["name", "version", "description", "main", "scripts", "repository", "keywords", "author", "license", "bugs", "homepage"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "react-preload-images", "version" : "0.0.1", "description" : "Sequential preloading of images for ReactJS", "main" : "./lib/ReactPreloadImages.react.js", "scripts" : {"test" : "test"}, "repository" : {"type" : "git", "url" : "https://github.com/marizikmund/react-preload-images.git"}, "keywords" : ["react", "image", "preload"], "author" : "Mari Zikmund <marizikmund@gmail.com>", "license" : "MIT", "bugs" : {"url" : "https://github.com/marizikmund/react-preload-images/issues"}, "homepage" : "https://github.com/marizikmund/react-preload-images"}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}}, "required": ["name", "version", "description", "main", "scripts", "repository", "keywords", "author", "license", "bugs", "homepage"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"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" : "1207050014", "district_id" : "1207050", "name" : "N DUA AEK NABARA"}
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "district_id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "district_id", "name"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"type": {"type": "string"}, "features": {"type": "array", "items": {"type": "object", "properties": {"geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["type", "coordinates"]}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"cartodb_id": {"type": "integer"}}, "required": ["cartodb_id"]}}, "required": ["geometry", "type", "properties"]}}}, "required": ["type", "features"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"type" : "FeatureCollection", "features" : [{"geometry" : {"type" : "Polygon", "coordinates" : [[[-89.768702, 35.264271], [-89.768327, 35.271267], [-89.76608, 35.28106], [-89.729266, 35.282705], [-89.712588, 35.288794], [-89.709047, 35.277121], [-89.685301, 35.251873], [-89.637703, 35.276631], [-89.638679, 35.256886], [-89.637679, 35.256786], [-89.638381, 35.216188], [-89.637878, 35.20984], [-89.658837, 35.209838], [-89.676585, 35.211268], [-89.69629, 35.206482], [-89.719173, 35.205009], [-89.732775, 35.205659], [-89.732881, 35.210599], [-89.7357, 35.220293], [-89.738509, 35.226858], [-89.741719, 35.230931], [-89.744523, 35.236699], [-89.744655, 35.242091], [-89.743615, 35.244554], [-89.74649, 35.24765], [-89.746919, 35.250537], [-89.748812, 35.25183], [-89.748797, 35.255071], [-89.760393, 35.250507], [-89.762651, 35.253082], [-89.76355, 35.256929], [-89.762935, 35.260777], [-89.76495, 35.264083], [-89.768727, 35.263611], [-89.768702, 35.264271]]]}, "type" : "Feature", "properties" : {"cartodb_id" : 58734}}]}
json_instruct
{"type": "object", "properties": {"type": {"type": "string"}, "features": {"type": "array", "items": {"type": "object", "properties": {"geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["type", "coordinates"]}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"cartodb_id": {"type": "integer"}}, "required": ["cartodb_id"]}}, "required": ["geometry", "type", "properties"]}}}, "required": ["type", "features"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"Id": {"type": "string"}, "Name": {"type": "string"}, "MoveId": {"type": "integer"}, "Description": {"type": "string"}, "Category": {"type": "integer"}, "BasePower": {"type": "integer"}, "Type": {"type": "integer"}, "BasePP": {"type": "integer"}, "Accuracy": {"type": "integer"}}, "required": ["Id", "Name", "MoveId", "Description", "Category", "BasePower", "Type", "BasePP", "Accuracy"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"Id" : "dark-pulse", "Name" : "Dark Pulse", "MoveId" : 436, "Description" : "Inflicts damage on enemies within a 1-tile range. It may also afflict enemies with a Cringe status condition, which makes its actions fail.\nRange: Enemies within 1-tile range", "Category" : 1, "BasePower" : 16, "Type" : 16, "BasePP" : 10, "Accuracy" : 84}
json_instruct
{"type": "object", "properties": {"Id": {"type": "string"}, "Name": {"type": "string"}, "MoveId": {"type": "integer"}, "Description": {"type": "string"}, "Category": {"type": "integer"}, "BasePower": {"type": "integer"}, "Type": {"type": "integer"}, "BasePP": {"type": "integer"}, "Accuracy": {"type": "integer"}}, "required": ["Id", "Name", "MoveId", "Description", "Category", "BasePower", "Type", "BasePP", "Accuracy"], "$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"}, "logo": {"type": "string"}, "repository": {"type": "string"}, "website": {"type": "string"}, "success_url": {"type": "string"}, "env": {"type": "object", "properties": {"TITLE": {"type": "object", "properties": {"description": {"type": "string"}, "value": {"type": "string"}, "required": {"type": "boolean"}}, "required": ["description", "value", "required"]}}, "required": ["TITLE"]}, "buildpacks": {"type": "array", "items": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}}, "formation": {"type": "object", "properties": {"web": {"type": "object", "properties": {"quantity": {"type": "integer"}, "size": {"type": "string"}}, "required": ["quantity", "size"]}}, "required": ["web"]}}, "required": ["name", "description", "logo", "repository", "website", "success_url", "env", "buildpacks", "formation"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "blacky-rent-WEB", "description" : "A simple-torrent service ported for heroku by blacky", "logo" : "https://raw.githubusercontent.com/iTzBlack007/blacky-rent-WEB/main/logo.png", "repository" : "https://github.com/iTzBlack007/blacky-rent-WEB", "website" : "https://github.com/iTzBlack007/blacky-rent-WEB", "success_url" : "https://t.me/iTz_Black007", "env" : {"TITLE" : {"description" : "Application header.", "value" : "blacky-rent-WEB", "required" : false}}, "buildpacks" : [{"url" : "https://github.com/heroku/heroku-buildpack-apt.git"}], "formation" : {"web" : {"quantity" : 1, "size" : "free"}}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "logo": {"type": "string"}, "repository": {"type": "string"}, "website": {"type": "string"}, "success_url": {"type": "string"}, "env": {"type": "object", "properties": {"TITLE": {"type": "object", "properties": {"description": {"type": "string"}, "value": {"type": "string"}, "required": {"type": "boolean"}}, "required": ["description", "value", "required"]}}, "required": ["TITLE"]}, "buildpacks": {"type": "array", "items": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}}, "formation": {"type": "object", "properties": {"web": {"type": "object", "properties": {"quantity": {"type": "integer"}, "size": {"type": "string"}}, "required": ["quantity", "size"]}}, "required": ["web"]}}, "required": ["name", "description", "logo", "repository", "website", "success_url", "env", "buildpacks", "formation"], "$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"}, "summary": {"type": "string"}, "description": {"type": "string"}, "homepage": {"type": "string"}, "license": {"type": "object", "properties": {"type": {"type": "string"}, "file": {"type": "string"}}, "required": ["type", "file"]}, "authors": {"type": "object", "properties": {"schelterstudios": {"type": "string"}}, "required": ["schelterstudios"]}, "platforms": {"type": "object", "properties": {"ios": {"type": "string"}}, "required": ["ios"]}, "swift_versions": {"type": "string"}, "source": {"type": "object", "properties": {"git": {"type": "string"}, "tag": {"type": "string"}}, "required": ["git", "tag"]}, "source_files": {"type": "string"}, "swift_version": {"type": "string"}}, "required": ["name", "version", "summary", "description", "homepage", "license", "authors", "platforms", "swift_versions", "source", "source_files", "swift_version"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "GoCoordinator", "version" : "0.0.5", "summary" : "A framework that offers robust and extensible interactions between Coordinators and ViewControllers.", "description" : "GoCoordinator provides the tools to create your own Coordinators and link them to ViewControllers. Coordinators are compatible with both Nibs and Storyboards, and can instantiate and inject controllers into complex view hierarchies. ViewControllers can talk to their Coordinators via the \"go\" extension.", "homepage" : "https://github.com/schelterstudios/GoCoordinator", "license" : {"type" : "MIT", "file" : "LICENSE"}, "authors" : {"schelterstudios" : "steve@schelterstudios.com"}, "platforms" : {"ios" : "13.0"}, "swift_versions" : "5", "source" : {"git" : "https://github.com/schelterstudios/GoCoordinator.git", "tag" : "0.0.5"}, "source_files" : "GoCoordinator/**/*.{h,m,swift}", "swift_version" : "5"}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "summary": {"type": "string"}, "description": {"type": "string"}, "homepage": {"type": "string"}, "license": {"type": "object", "properties": {"type": {"type": "string"}, "file": {"type": "string"}}, "required": ["type", "file"]}, "authors": {"type": "object", "properties": {"schelterstudios": {"type": "string"}}, "required": ["schelterstudios"]}, "platforms": {"type": "object", "properties": {"ios": {"type": "string"}}, "required": ["ios"]}, "swift_versions": {"type": "string"}, "source": {"type": "object", "properties": {"git": {"type": "string"}, "tag": {"type": "string"}}, "required": ["git", "tag"]}, "source_files": {"type": "string"}, "swift_version": {"type": "string"}}, "required": ["name", "version", "summary", "description", "homepage", "license", "authors", "platforms", "swift_versions", "source", "source_files", "swift_version"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "dependencies": {"type": "object", "properties": {"grunt-bumpup": {"type": "string"}, "grunt-karma": {"type": "string"}}, "required": ["grunt-bumpup", "grunt-karma"]}, "devDependencies": {"type": "object", "properties": {"grunt": {"type": "string"}, "grunt-cli": {"type": "string"}, "grunt-contrib-jshint": {"type": "string"}, "grunt-contrib-watch": {"type": "string"}, "grunt-contrib-connect": {"type": "string"}, "connect-livereload": {"type": "string"}, "grunt-open": {"type": "string"}, "grunt-ngmin": {"type": "string"}, "grunt-contrib-clean": {"type": "string"}, "grunt-contrib-uglify": {"type": "string"}, "grunt-contrib-concat": {"type": "string"}, "grunt-html2js": {"type": "string"}, "grunt-contrib-copy": {"type": "string"}}, "required": ["grunt", "grunt-cli", "grunt-contrib-jshint", "grunt-contrib-watch", "grunt-contrib-connect", "connect-livereload", "grunt-open", "grunt-ngmin", "grunt-contrib-clean", "grunt-contrib-uglify", "grunt-contrib-concat", "grunt-html2js", "grunt-contrib-copy"]}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}}, "required": ["name", "version", "dependencies", "devDependencies", "scripts", "repository"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "canon-angular", "version" : "0.3.1", "dependencies" : {"grunt-bumpup" : "0.5.2", "grunt-karma" : "0.4.6"}, "devDependencies" : {"grunt" : "~0.4.2", "grunt-cli" : "0.1.9", "grunt-contrib-jshint" : "0.6.4", "grunt-contrib-watch" : "~0.5.3", "grunt-contrib-connect" : "0.5.0", "connect-livereload" : "~0.3.1", "grunt-open" : "~0.2.0", "grunt-ngmin" : "~0.0.3", "grunt-contrib-clean" : "~0.5.0", "grunt-contrib-uglify" : "~0.2.0", "grunt-contrib-concat" : "*", "grunt-html2js" : "0.2.4", "grunt-contrib-copy" : "~0.4.1"}, "scripts" : {"test" : "grunt --verbose"}, "repository" : {"type" : "git", "url" : "https://github.com/rackerlabs/canon-angular/"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "dependencies": {"type": "object", "properties": {"grunt-bumpup": {"type": "string"}, "grunt-karma": {"type": "string"}}, "required": ["grunt-bumpup", "grunt-karma"]}, "devDependencies": {"type": "object", "properties": {"grunt": {"type": "string"}, "grunt-cli": {"type": "string"}, "grunt-contrib-jshint": {"type": "string"}, "grunt-contrib-watch": {"type": "string"}, "grunt-contrib-connect": {"type": "string"}, "connect-livereload": {"type": "string"}, "grunt-open": {"type": "string"}, "grunt-ngmin": {"type": "string"}, "grunt-contrib-clean": {"type": "string"}, "grunt-contrib-uglify": {"type": "string"}, "grunt-contrib-concat": {"type": "string"}, "grunt-html2js": {"type": "string"}, "grunt-contrib-copy": {"type": "string"}}, "required": ["grunt", "grunt-cli", "grunt-contrib-jshint", "grunt-contrib-watch", "grunt-contrib-connect", "connect-livereload", "grunt-open", "grunt-ngmin", "grunt-contrib-clean", "grunt-contrib-uglify", "grunt-contrib-concat", "grunt-html2js", "grunt-contrib-copy"]}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}}, "required": ["name", "version", "dependencies", "devDependencies", "scripts", "repository"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"fail": {"type": "object", "properties": {"textColor": {"type": "string"}, "backgroundColor": {"type": "string"}}, "required": ["textColor", "backgroundColor"]}, "pending": {"type": "object", "properties": {"textColor": {"type": "string"}, "backgroundColor": {"type": "string"}}, "required": ["textColor", "backgroundColor"]}, "success": {"type": "object", "properties": {"textColor": {"type": "string"}, "backgroundColor": {"type": "string"}}, "required": ["textColor", "backgroundColor"]}, "interview": {"type": "object", "properties": {"textColor": {"type": "string"}, "backgroundColor": {"type": "string"}}, "required": ["textColor", "backgroundColor"]}}, "required": ["fail", "pending", "success", "interview"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"fail" : {"textColor" : "#8a1c0a", "backgroundColor" : "#f2b2a8"}, "pending" : {"textColor" : "#ffffff", "backgroundColor" : "#c2c2c2"}, "success" : {"textColor" : "#0b4f30", "backgroundColor" : "#b3efd3"}, "interview" : {"textColor" : "#7a4706", "backgroundColor" : "#ffdeb5"}}
json_instruct
{"type": "object", "properties": {"fail": {"type": "object", "properties": {"textColor": {"type": "string"}, "backgroundColor": {"type": "string"}}, "required": ["textColor", "backgroundColor"]}, "pending": {"type": "object", "properties": {"textColor": {"type": "string"}, "backgroundColor": {"type": "string"}}, "required": ["textColor", "backgroundColor"]}, "success": {"type": "object", "properties": {"textColor": {"type": "string"}, "backgroundColor": {"type": "string"}}, "required": ["textColor", "backgroundColor"]}, "interview": {"type": "object", "properties": {"textColor": {"type": "string"}, "backgroundColor": {"type": "string"}}, "required": ["textColor", "backgroundColor"]}}, "required": ["fail", "pending", "success", "interview"], "$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"}, "text": {"type": "string"}}, "required": ["id", "text"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"id" : "360203006001", "text" : "\u5317\u8def\u793e\u533a\u5c45\u59d4\u4f1a"}, {"id" : "360203006002", "text" : "\u897f\u8def\u793e\u533a\u5c45\u59d4\u4f1a"}, {"id" : "360203006003", "text" : "\u6d2a\u5bb6\u5c71\u793e\u533a\u5c45\u59d4\u4f1a"}, {"id" : "360203006004", "text" : "\u591c\u53c9\u575e\u793e\u533a\u5c45\u59d4\u4f1a"}, {"id" : "360203006005", "text" : "\u660c\u8679\u793e\u533a\u5c45\u59d4\u4f1a"}, {"id" : "360203006006", "text" : "\u4e2d\u8def\u793e\u533a\u5c45\u59d4\u4f1a"}, {"id" : "360203006007", "text" : "\u6885\u5bb6\u5cad\u793e\u533a\u5c45\u59d4\u4f1a"}, {"id" : "360203006008", "text" : "\u68a8\u6811\u56ed\u793e\u533a\u5c45\u59d4\u4f1a"}, {"id" : "360203006009", "text" : "\u767e\u773c\u4e95\u793e\u533a\u5c45\u59d4\u4f1a"}, {"id" : "360203006010", "text" : "\u4f55\u5bb6\u575e\u793e\u533a\u5c45\u59d4\u4f1a"}, {"id" : "360203006011", "text" : "\u5411\u9633\u5cad\u793e\u533a\u5c45\u59d4\u4f1a"}, {"id" : "360203006012", "text" : "\u8336\u53f6\u575e\u793e\u533a\u5c45\u59d4\u4f1a"}, {"id" : "360203006013", "text" : "\u7b72\u7b95\u575e\u793e\u533a\u5c45\u59d4\u4f1a"}, {"id" : "360203006014", "text" : "\u83b2\u82b1\u5c71\u793e\u533a\u5c45\u59d4\u4f1a"}, {"id" : "360203006015", "text" : "\u5965\u6797\u793e\u533a\u5c45\u59d4\u4f1a"}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "text": {"type": "string"}}, "required": ["id", "text"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"info": {"type": "object", "properties": {"map_name": {"type": "string"}, "width": {"type": "integer"}, "height": {"type": "integer"}, "pvp_zone": {"type": "boolean"}, "spawn": {"type": "object", "properties": {"x": {"type": "integer"}, "y": {"type": "integer"}}, "required": ["x", "y"]}}, "required": ["map_name", "width", "height", "pvp_zone", "spawn"]}, "items": {"type": "array", "items": {}}, "portals": {"type": "array", "items": {}}, "triggers": {"type": "array", "items": {}}, "graphics": {"type": "array", "items": {"type": "integer"}}}, "required": ["info", "items", "portals", "triggers", "graphics"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"info" : {"map_name" : "Old col", "width" : 23, "height" : 26, "pvp_zone" : false, "spawn" : {"x" : 0, "y" : 0}}, "items" : [], "portals" : [], "triggers" : [], "graphics" : [100130, 100143, 100144]}
json_instruct
{"type": "object", "properties": {"info": {"type": "object", "properties": {"map_name": {"type": "string"}, "width": {"type": "integer"}, "height": {"type": "integer"}, "pvp_zone": {"type": "boolean"}, "spawn": {"type": "object", "properties": {"x": {"type": "integer"}, "y": {"type": "integer"}}, "required": ["x", "y"]}}, "required": ["map_name", "width", "height", "pvp_zone", "spawn"]}, "items": {"type": "array", "items": {}}, "portals": {"type": "array", "items": {}}, "triggers": {"type": "array", "items": {}}, "graphics": {"type": "array", "items": {"type": "integer"}}}, "required": ["info", "items", "portals", "triggers", "graphics"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"digest": {"type": "string"}, "css": {"type": "string"}, "imports": {"type": "array", "items": {"type": "object", "properties": {"path": {"type": "string"}, "digest": {"type": "string"}}, "required": ["path", "digest"]}}, "version": {"type": "integer"}}, "required": ["digest", "css", "imports", "version"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"digest" : "5800870b9971d1950128059ffe6ccd5f9f6c9270", "css" : ".nuclide-ui-code-snippet {\n display: flex;\n}\n.nuclide-ui-code-snippet atom-text-editor[mini] {\n border-top-left-radius: 0;\n border-bottom-left-radius: 0;\n flex: 1;\n font-size: 12px;\n line-height: 25px;\n max-height: none;\n}\n.nuclide-ui-code-snippet atom-text-editor .highlight.code-snippet-highlight .region {\n background-color: #31363f;\n}\n.nuclide-ui-code-snippet-line-number-column {\n background: #181a1f;\n border-top-left-radius: 3px;\n border-bottom-left-radius: 3px;\n font-family: Menlo, Monaco, Consolas, monospace;\n padding: 0 0.5em;\n}\n.nuclide-ui-code-snippet-line-number {\n color: white;\n line-height: 25px;\n}\n", "imports" : [{"path" : "node_modules/one-dark-ui/styles/ui-variables.less", "digest" : "f0cd54bb3195577225c676e2ba1a5f91fdd4a1ab"}, {"path" : "node_modules/one-dark-ui/styles/ui-variables-custom.less", "digest" : "912cd9b31c4db8b551f47b4d0ced938a6b62dc95"}, {"path" : "node_modules/one-dark-syntax/styles/syntax-variables.less", "digest" : "4737e2c84347b1a399426a81fc903dd3ce1abb52"}, {"path" : "node_modules/one-dark-syntax/styles/colors.less", "digest" : "66bba03e9aabff000a84c2839a9d3e9a9fa08e0e"}], "version" : 1}
json_instruct
{"type": "object", "properties": {"digest": {"type": "string"}, "css": {"type": "string"}, "imports": {"type": "array", "items": {"type": "object", "properties": {"path": {"type": "string"}, "digest": {"type": "string"}}, "required": ["path", "digest"]}}, "version": {"type": "integer"}}, "required": ["digest", "css", "imports", "version"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"_guid_": {"type": "string"}, "_extends_": {"type": "string"}, "request": {"type": "object", "properties": {"body": {"type": "object", "properties": {"event_token": {"type": "string"}}, "required": ["event_token"]}}, "required": ["body"]}}, "required": ["_guid_", "_extends_", "request"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"_guid_" : "F-133_CreateCase", "_extends_" : "F-131_CreateCase", "request" : {"body" : {"event_token" : "${[scenarioContext][parentContext][childContexts][F-133_CreateCase_Token_Creation][testData][actualResponse][body][token]}"}}}
json_instruct
{"type": "object", "properties": {"_guid_": {"type": "string"}, "_extends_": {"type": "string"}, "request": {"type": "object", "properties": {"body": {"type": "object", "properties": {"event_token": {"type": "string"}}, "required": ["event_token"]}}, "required": ["body"]}}, "required": ["_guid_", "_extends_", "request"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"h": {"type": "array", "items": {"type": "object", "properties": {"d": {"type": "array", "items": {"type": "object", "properties": {"s": {"type": "array", "items": {"type": "string"}}, "f": {"type": "string"}}, "required": ["s", "f"]}}}, "required": ["d"]}}, "t": {"type": "string"}}, "required": ["h", "t"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"h" : [{"d" : [{"s" : ["`lahod~"], "f" : "\ufff9\ufffasomething that has steam * vapor\ufffb\u6709\u84b8\u6c7d\u7684"}]}], "t" : "cilahoday"}
json_instruct
{"type": "object", "properties": {"h": {"type": "array", "items": {"type": "object", "properties": {"d": {"type": "array", "items": {"type": "object", "properties": {"s": {"type": "array", "items": {"type": "string"}}, "f": {"type": "string"}}, "required": ["s", "f"]}}}, "required": ["d"]}}, "t": {"type": "string"}}, "required": ["h", "t"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "object", "properties": {"error": {"type": "null"}, "issues": {"type": "array", "items": {}}, "success": {"type": "boolean"}}, "required": ["error", "issues", "success"]}}, "required": ["contract", "tool", "start", "end", "duration", "analysis"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"contract" : "0x715a3a95cf9431cb9141040ee280b3d38cf3346d", "tool" : "mythril", "start" : 1563510595.1087337, "end" : 1563510599.4267032, "duration" : 4.317969560623169, "analysis" : {"error" : null, "issues" : [], "success" : true}}
json_instruct
{"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "object", "properties": {"error": {"type": "null"}, "issues": {"type": "array", "items": {}}, "success": {"type": "boolean"}}, "required": ["error", "issues", "success"]}}, "required": ["contract", "tool", "start", "end", "duration", "analysis"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"hash": {"type": "string"}, "parentHash": {"type": "string"}, "number": {"type": "integer"}, "timestamp": {"type": "integer"}, "nonce": {"type": "string"}, "difficulty": {"type": "integer"}, "gasLimit": {"type": "object", "properties": {"_hex": {"type": "string"}}, "required": ["_hex"]}, "gasUsed": {"type": "object", "properties": {"_hex": {"type": "string"}}, "required": ["_hex"]}, "miner": {"type": "string"}, "extraData": {"type": "string"}, "transactions": {"type": "array", "items": {}}}, "required": ["hash", "parentHash", "number", "timestamp", "nonce", "difficulty", "gasLimit", "gasUsed", "miner", "extraData", "transactions"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"hash" : "0x053896048aa367c4bcc498e067f39cda7ba70b9ee59fa67d2bdcbd1b7d4a3aca", "parentHash" : "0x99988a9167e1f9bb6c3ec73e749b886ee68e54fea34e899348ab14bc79cba4af", "number" : 54669, "timestamp" : 1439058021, "nonce" : "0xc897c263e068c506", "difficulty" : 1622008980118, "gasLimit" : {"_hex" : "0x2fefd5"}, "gasUsed" : {"_hex" : "0x0"}, "miner" : "0xF2d2AfF1320476cb8C6b607199D23175cc595693", "extraData" : "0x476574682f76312e302e312f77696e646f77732f676f312e342e32", "transactions" : []}
json_instruct
{"type": "object", "properties": {"hash": {"type": "string"}, "parentHash": {"type": "string"}, "number": {"type": "integer"}, "timestamp": {"type": "integer"}, "nonce": {"type": "string"}, "difficulty": {"type": "integer"}, "gasLimit": {"type": "object", "properties": {"_hex": {"type": "string"}}, "required": ["_hex"]}, "gasUsed": {"type": "object", "properties": {"_hex": {"type": "string"}}, "required": ["_hex"]}, "miner": {"type": "string"}, "extraData": {"type": "string"}, "transactions": {"type": "array", "items": {}}}, "required": ["hash", "parentHash", "number", "timestamp", "nonce", "difficulty", "gasLimit", "gasUsed", "miner", "extraData", "transactions"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "id": {"type": "integer"}, "image_url": {"type": "string"}, "updated_at": {"type": "string"}, "deleted_at": {"type": "null"}, "recipe_type": {"type": "integer"}, "recipe_flavors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "flavor_id": {"type": "string"}, "millipercent": {"type": "integer"}, "vendor": {"type": "string"}}, "required": ["name", "flavor_id", "millipercent", "vendor"]}}, "author": {"type": "string"}, "views": {"type": "string"}, "created_at": {"type": "string"}, "slug": {"type": "string"}, "archive_image_url": {"type": "string"}, "total_flavoring": {"type": "string"}, "steep_days": {"type": "string"}, "best_vg": {"type": "string"}, "temperature": {"type": "string"}, "total_reviews": {"type": "integer"}, "recipe_score": {"type": "integer"}, "reviews": {"type": "array", "items": {"type": "object", "properties": {"user": {"type": "string"}, "score": {"type": "integer"}, "text": {"type": "string"}}, "required": ["user", "score", "text"]}}}, "required": ["name", "description", "id", "image_url", "updated_at", "deleted_at", "recipe_type", "recipe_flavors", "author", "views", "created_at", "slug", "archive_image_url", "total_flavoring", "steep_days", "best_vg", "temperature", "total_reviews", "recipe_score", "reviews"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "Antoine", "description" : "Bright green apple with smooth tropical notes.", "id" : 4282, "image_url" : "https://storage.googleapis.com/dev-images.alltheflavors.com/uploads/recipe/imageUrl/4282/apple-and-lime-in-dish--close-up-92844.jpg", "updated_at" : "2020-12-12T03:44:13.000-05:00", "deleted_at" : null, "recipe_type" : 1, "recipe_flavors" : [{"name" : "Anton Apple (yc)", "flavor_id" : "737", "millipercent" : 3000, "vendor" : "INW"}, {"name" : "Dragon Fruit - Pitaya", "flavor_id" : "652", "millipercent" : 500, "vendor" : "INW"}, {"name" : "Lime", "flavor_id" : "662", "millipercent" : 250, "vendor" : "INW"}, {"name" : "Cactus", "flavor_id" : "647", "millipercent" : 250, "vendor" : "INW"}], "author" : "NotCharlesManson", "views" : "4815", "created_at" : "2016-05-31", "slug" : "antoine", "archive_image_url" : "https://allthearchives.com/images/4282.jpg", "total_flavoring" : "4.0%", "steep_days" : "0", "best_vg" : "0%", "temperature" : "0", "total_reviews" : 1, "recipe_score" : 0, "reviews" : [{"user" : "triangulatethisdick", "score" : 0, "text" : "This looks right up my ally! (Will update with a review when I get a chance to mix)"}]}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "id": {"type": "integer"}, "image_url": {"type": "string"}, "updated_at": {"type": "string"}, "deleted_at": {"type": "null"}, "recipe_type": {"type": "integer"}, "recipe_flavors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "flavor_id": {"type": "string"}, "millipercent": {"type": "integer"}, "vendor": {"type": "string"}}, "required": ["name", "flavor_id", "millipercent", "vendor"]}}, "author": {"type": "string"}, "views": {"type": "string"}, "created_at": {"type": "string"}, "slug": {"type": "string"}, "archive_image_url": {"type": "string"}, "total_flavoring": {"type": "string"}, "steep_days": {"type": "string"}, "best_vg": {"type": "string"}, "temperature": {"type": "string"}, "total_reviews": {"type": "integer"}, "recipe_score": {"type": "integer"}, "reviews": {"type": "array", "items": {"type": "object", "properties": {"user": {"type": "string"}, "score": {"type": "integer"}, "text": {"type": "string"}}, "required": ["user", "score", "text"]}}}, "required": ["name", "description", "id", "image_url", "updated_at", "deleted_at", "recipe_type", "recipe_flavors", "author", "views", "created_at", "slug", "archive_image_url", "total_flavoring", "steep_days", "best_vg", "temperature", "total_reviews", "recipe_score", "reviews"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"}
["fade-maker", "waveform-playlist"]
json_instruct
{"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"values": {"type": "array", "items": {"type": "string"}}}, "required": ["values"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"values" : ["#minecraft:tool_tiers/speed/swords/3", "minecraft:iron_sword"]}
json_instruct
{"type": "object", "properties": {"values": {"type": "array", "items": {"type": "string"}}}, "required": ["values"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "patternId": {"type": "string"}, "severity": {"type": "integer"}, "line": {"type": "integer"}, "column": {"type": "integer"}, "content": {"type": "string"}}, "required": ["name", "patternId", "severity", "line", "column", "content"]}}}, "required": ["contract", "tool", "start", "end", "duration", "analysis"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"contract" : "0x757320b8ff0b250a830bcd51d95ce6426dbe0b16", "tool" : "smartcheck", "start" : 1563510190.0364947, "end" : 1563510198.0012217, "duration" : 7.96472692489624, "analysis" : [{"name" : "SOLIDITY_PRAGMAS_VERSION", "patternId" : "23fc32", "severity" : 1, "line" : 1, "column" : 16, "content" : "^"}, {"name" : "SOLIDITY_SAFEMATH", "patternId" : "837cac", "severity" : 1, "line" : 97, "column" : 2, "content" : "usingSafeMathforuint256;"}, {"name" : "SOLIDITY_SAFEMATH", "patternId" : "837cac", "severity" : 1, "line" : 233, "column" : 2, "content" : "usingSafeMathforuint256;"}, {"name" : "SOLIDITY_VISIBILITY", "patternId" : "b51ce0", "severity" : 1, "line" : 99, "column" : 2, "content" : "ERC20Tokentoken;"}, {"name" : "SOLIDITY_VISIBILITY", "patternId" : "b51ce0", "severity" : 1, "line" : 106, "column" : 2, "content" : "addresswallet;"}, {"name" : "SOLIDITY_VISIBILITY", "patternId" : "b51ce0", "severity" : 1, "line" : 116, "column" : 2, "content" : "boolpaused;"}]}
json_instruct
{"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "patternId": {"type": "string"}, "severity": {"type": "integer"}, "line": {"type": "integer"}, "column": {"type": "integer"}, "content": {"type": "string"}}, "required": ["name", "patternId", "severity", "line", "column", "content"]}}}, "required": ["contract", "tool", "start", "end", "duration", "analysis"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"type": {"type": "string"}, "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" : [[[123.125, 30.833333333333332], [123.125, 30.916666666666668], [123.25, 30.916666666666668], [123.25, 30.833333333333332], [123.125, 30.833333333333332]]]}, "properties" : {"code" : 462321, "url" : "http://madefor.github.io/0410/api/v1/462321.geojson", "view" : "https://github.com/madefor/0410/blob/gh-pages/api/v1/462321.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#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"entityId": {"type": "integer"}, "objectUUID": {"type": "string"}, "type": {"type": "integer"}, "x": {"type": "number"}, "y": {"type": "number"}, "z": {"type": "number"}, "pitch": {"type": "integer"}, "yaw": {"type": "integer"}, "objectData": {"type": "integer"}, "velocityX": {"type": "integer"}, "velocityY": {"type": "integer"}, "velocityZ": {"type": "integer"}}, "required": ["entityId", "objectUUID", "type", "x", "y", "z", "pitch", "yaw", "objectData", "velocityX", "velocityY", "velocityZ"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"entityId" : 70, "objectUUID" : "97657510-a4ef-4eca-bed4-da0cc54e4f89", "type" : 46, "x" : -335.5, "y" : 21.0625, "z" : 249.5, "pitch" : 0, "yaw" : 0, "objectData" : 0, "velocityX" : 0, "velocityY" : 0, "velocityZ" : 0}
json_instruct
{"type": "object", "properties": {"entityId": {"type": "integer"}, "objectUUID": {"type": "string"}, "type": {"type": "integer"}, "x": {"type": "number"}, "y": {"type": "number"}, "z": {"type": "number"}, "pitch": {"type": "integer"}, "yaw": {"type": "integer"}, "objectData": {"type": "integer"}, "velocityX": {"type": "integer"}, "velocityY": {"type": "integer"}, "velocityZ": {"type": "integer"}}, "required": ["entityId", "objectUUID", "type", "x", "y", "z", "pitch", "yaw", "objectData", "velocityX", "velocityY", "velocityZ"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"xbox": {"type": "number"}, "ps": {"type": "number"}}, "required": ["xbox", "ps"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"xbox" : 681833.0, "ps" : 723758.0}
json_instruct
{"type": "object", "properties": {"xbox": {"type": "number"}, "ps": {"type": "number"}}, "required": ["xbox", "ps"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "href": {"type": "string"}, "url": {"type": "string"}, "description": {"type": "string"}, "isoPatterns": {"type": "null"}, "count": {"type": "integer"}, "qualityRules": {"type": "null"}, "qualityTemplates": {"type": "null"}}, "required": ["id", "name", "href", "url", "description", "isoPatterns", "count", "qualityRules", "qualityTemplates"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : "CWE-198", "name" : "Use of Incorrect Byte Ordering", "href" : "AIP/quality-standards/CWE/items/CWE-198", "url" : "https://cwe.mitre.org/data/definitions/198.html", "description" : "The software receives input from an upstream component, but it does not account for byte ordering (e.g. big-endian and little-endian) when processing the input, causing an incorrect number or value to be used.", "isoPatterns" : null, "count" : 0, "qualityRules" : null, "qualityTemplates" : null}
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "href": {"type": "string"}, "url": {"type": "string"}, "description": {"type": "string"}, "isoPatterns": {"type": "null"}, "count": {"type": "integer"}, "qualityRules": {"type": "null"}, "qualityTemplates": {"type": "null"}}, "required": ["id", "name", "href", "url", "description", "isoPatterns", "count", "qualityRules", "qualityTemplates"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"id": {"type": "string"}, "playerTags": {"type": "array", "items": {"type": "string"}}, "teamTags": {"type": "array", "items": {"type": "string"}}, "gameTags": {"type": "array", "items": {"type": "string"}}, "metadata": {"type": "object", "properties": {"play": {"type": "integer"}, "subPlay": {"type": "integer"}}, "required": ["play", "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" : "96a61c5d-b3b8-4ab2-a324-bf51c7261efa", "playerTags" : ["c675fcdf-6117-49a6-ac32-99a89a3a88aa"], "teamTags" : ["979aee4a-6d80-4863-bf1c-ee1a78e06024", "23e4cbc1-e9cd-47fa-a35b-bfa06f726cb7"], "gameTags" : ["a482ed56-2b4f-4ae3-8bc0-9108ac5b7421"], "metadata" : {"play" : 196, "subPlay" : -1}, "created" : "2021-04-14T17:16:44.784Z", "season" : 15, "tournament" : -1, "type" : 9, "day" : 47, "phase" : 4, "category" : 0, "description" : "Valentine Games hits a 2-run home run!", "nuts" : 0}
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "playerTags": {"type": "array", "items": {"type": "string"}}, "teamTags": {"type": "array", "items": {"type": "string"}}, "gameTags": {"type": "array", "items": {"type": "string"}}, "metadata": {"type": "object", "properties": {"play": {"type": "integer"}, "subPlay": {"type": "integer"}}, "required": ["play", "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#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"checklist-model.js": {"type": "string"}, "checklist-model.min.js": {"type": "string"}}, "required": ["checklist-model.js", "checklist-model.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"checklist-model.js" : "sha256-wVG2kaAqkHdtlRDHHOGEkyAYg7owqgiIDSlKc0Vwboc=", "checklist-model.min.js" : "sha256-LzUiOZnmV1w0/IO1Glww2lKY8XP8eDB+ODXbfGJnubA="}
json_instruct
{"type": "object", "properties": {"checklist-model.js": {"type": "string"}, "checklist-model.min.js": {"type": "string"}}, "required": ["checklist-model.js", "checklist-model.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "nodes": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "id": {"type": "integer"}, "lat": {"type": "number"}, "lon": {"type": "number"}}, "required": ["type", "id", "lat", "lon"]}}, "volunteer_postcode": {"type": "string"}, "closest_distance": {"type": "integer"}}, "required": ["id", "name", "nodes", "volunteer_postcode", "closest_distance"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : "8587303", "name" : "Eyrescroft", "nodes" : [{"type" : "node", "id" : 57720404, "lat" : 52.5954404, "lon" : -0.2865313}, {"type" : "node", "id" : 57720511, "lat" : 52.5957355, "lon" : -0.2873508}, {"type" : "node", "id" : 57720517, "lat" : 52.5956262, "lon" : -0.2874699}, {"type" : "node", "id" : 57720519, "lat" : 52.5955936, "lon" : -0.2875773}, {"type" : "node", "id" : 57720523, "lat" : 52.5956078, "lon" : -0.2876567}], "volunteer_postcode" : "PE8 6QF", "closest_distance" : 16248}
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "nodes": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "id": {"type": "integer"}, "lat": {"type": "number"}, "lon": {"type": "number"}}, "required": ["type", "id", "lat", "lon"]}}, "volunteer_postcode": {"type": "string"}, "closest_distance": {"type": "integer"}}, "required": ["id", "name", "nodes", "volunteer_postcode", "closest_distance"], "$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"}, "license": {"type": "string"}, "keyworkds": {"type": "array", "items": {}}, "homepage": {"type": "string"}, "type": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}}, "require": {"type": "object", "properties": {"php": {"type": "string"}, "friendsofsymfony/user-bundle": {"type": "string"}, "simple-bus/symfony-bridge": {"type": "string"}}, "required": ["php", "friendsofsymfony/user-bundle", "simple-bus/symfony-bridge"]}, "autoload": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"AppquariumBundle\\": {"type": "string"}}, "required": ["AppquariumBundle\\"]}}, "required": ["psr-4"]}}, "required": ["name", "description", "license", "keyworkds", "homepage", "type", "authors", "require", "autoload"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "AppquariumTeam/Appquarium", "description" : "MPWAR TFM 2015", "license" : "MIT", "keyworkds" : [], "homepage" : "https://github.com/rjsanchez23/Appquarium-bundle", "type" : "project", "authors" : [{"name" : "Appquarium Team", "email" : "appquarium.supp@gmail.com"}], "require" : {"php" : ">=5.6", "friendsofsymfony/user-bundle" : "~2.0@dev", "simple-bus/symfony-bridge" : "~3.0"}, "autoload" : {"psr-4" : {"AppquariumBundle\\" : ""}}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "license": {"type": "string"}, "keyworkds": {"type": "array", "items": {}}, "homepage": {"type": "string"}, "type": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}}, "require": {"type": "object", "properties": {"php": {"type": "string"}, "friendsofsymfony/user-bundle": {"type": "string"}, "simple-bus/symfony-bridge": {"type": "string"}}, "required": ["php", "friendsofsymfony/user-bundle", "simple-bus/symfony-bridge"]}, "autoload": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"AppquariumBundle\\": {"type": "string"}}, "required": ["AppquariumBundle\\"]}}, "required": ["psr-4"]}}, "required": ["name", "description", "license", "keyworkds", "homepage", "type", "authors", "require", "autoload"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "bin": {"type": "object", "properties": {"website-screenshots": {"type": "string"}}, "required": ["website-screenshots"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"commander": {"type": "string"}, "puppeteer": {"type": "string"}}, "required": ["commander", "puppeteer"]}, "keywords": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "version", "description", "main", "scripts", "bin", "repository", "author", "license", "dependencies", "keywords"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "website-screenshots-cli", "version" : "1.0.0", "description" : "Take a screenshot of a website and saves it as a file.", "main" : "index.js", "scripts" : {"test" : "echo \"Error: no test specified\" && exit 1"}, "bin" : {"website-screenshots" : "./index.js"}, "repository" : {"type" : "git", "url" : "https://github.com/kuukienator/website-screenshots.git"}, "author" : "Emmanuel Meinike <emmanuel.meinike@gmail.com>", "license" : "MIT", "dependencies" : {"commander" : "^8.3.0", "puppeteer" : "^10.4.0"}, "keywords" : ["cli", "cli-app", "screenshots", "puppeteer"]}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "bin": {"type": "object", "properties": {"website-screenshots": {"type": "string"}}, "required": ["website-screenshots"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"commander": {"type": "string"}, "puppeteer": {"type": "string"}}, "required": ["commander", "puppeteer"]}, "keywords": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "version", "description", "main", "scripts", "bin", "repository", "author", "license", "dependencies", "keywords"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"version": {"type": "number"}, "people": {"type": "array", "items": {"type": "object", "properties": {"person_id": {"type": "array", "items": {"type": "integer"}}, "pose_keypoints_2d": {"type": "array", "items": {"type": "number"}}, "face_keypoints_2d": {"type": "array", "items": {}}, "hand_left_keypoints_2d": {"type": "array", "items": {}}, "hand_right_keypoints_2d": {"type": "array", "items": {}}, "pose_keypoints_3d": {"type": "array", "items": {}}, "face_keypoints_3d": {"type": "array", "items": {}}, "hand_left_keypoints_3d": {"type": "array", "items": {}}, "hand_right_keypoints_3d": {"type": "array", "items": {}}}, "required": ["person_id", "pose_keypoints_2d", "face_keypoints_2d", "hand_left_keypoints_2d", "hand_right_keypoints_2d", "pose_keypoints_3d", "face_keypoints_3d", "hand_left_keypoints_3d", "hand_right_keypoints_3d"]}}}, "required": ["version", "people"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"version" : 1.3, "people" : [{"person_id" : [-1], "pose_keypoints_2d" : [225.744, 137.62, 0.912728, 237.547, 192.52, 0.878131, 196.352, 194.486, 0.928648, 180.688, 255.182, 0.913968, 178.693, 304.12, 0.940633, 274.825, 186.643, 0.840252, 300.251, 255.191, 0.840202, 304.186, 310.084, 0.882325, 237.518, 306.082, 0.781254, 210.207, 304.228, 0.829241, 196.443, 386.427, 0.84085, 196.34, 478.539, 0.78606, 259.141, 306.144, 0.807722, 268.847, 398.14, 0.782358, 274.693, 480.462, 0.829085, 214.009, 133.65, 0.957376, 229.692, 131.658, 0.924205, 208.208, 145.398, 0.800089, 245.354, 133.695, 0.923009, 280.684, 502.032, 0.70996, 290.476, 496.166, 0.787255, 266.964, 490.275, 0.665609, 182.678, 494.236, 0.668924, 176.78, 492.174, 0.695721, 202.278, 488.315, 0.619486], "face_keypoints_2d" : [], "hand_left_keypoints_2d" : [], "hand_right_keypoints_2d" : [], "pose_keypoints_3d" : [], "face_keypoints_3d" : [], "hand_left_keypoints_3d" : [], "hand_right_keypoints_3d" : []}]}
json_instruct
{"type": "object", "properties": {"version": {"type": "number"}, "people": {"type": "array", "items": {"type": "object", "properties": {"person_id": {"type": "array", "items": {"type": "integer"}}, "pose_keypoints_2d": {"type": "array", "items": {"type": "number"}}, "face_keypoints_2d": {"type": "array", "items": {}}, "hand_left_keypoints_2d": {"type": "array", "items": {}}, "hand_right_keypoints_2d": {"type": "array", "items": {}}, "pose_keypoints_3d": {"type": "array", "items": {}}, "face_keypoints_3d": {"type": "array", "items": {}}, "hand_left_keypoints_3d": {"type": "array", "items": {}}, "hand_right_keypoints_3d": {"type": "array", "items": {}}}, "required": ["person_id", "pose_keypoints_2d", "face_keypoints_2d", "hand_left_keypoints_2d", "hand_right_keypoints_2d", "pose_keypoints_3d", "face_keypoints_3d", "hand_left_keypoints_3d", "hand_right_keypoints_3d"]}}}, "required": ["version", "people"], "$schema": "http://json-schema.org/draft-07/schema#"}
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"}, "DataProvidersReference": {"type": "string"}, "UsageTypeID": {"type": "integer"}, "AddressInfo": {"type": "object", "properties": {"ID": {"type": "integer"}, "Title": {"type": "string"}, "AddressLine1": {"type": "string"}, "CountryID": {"type": "integer"}, "Latitude": {"type": "number"}, "Longitude": {"type": "number"}, "AccessComments": {"type": "string"}, "DistanceUnit": {"type": "integer"}}, "required": ["ID", "Title", "AddressLine1", "CountryID", "Latitude", "Longitude", "AccessComments", "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"}}, "required": ["ID", "ConnectionTypeID", "StatusTypeID", "LevelID", "PowerKW", "CurrentTypeID"]}}, "GeneralComments": {"type": "string"}, "StatusTypeID": {"type": "integer"}, "DateLastStatusUpdate": {"type": "string"}, "DataQualityLevel": {"type": "integer"}, "DateCreated": {"type": "string"}, "SubmissionStatusTypeID": {"type": "integer"}}, "required": ["IsRecentlyVerified", "ID", "UUID", "DataProviderID", "DataProvidersReference", "UsageTypeID", "AddressInfo", "Connections", "GeneralComments", "StatusTypeID", "DateLastStatusUpdate", "DataQualityLevel", "DateCreated", "SubmissionStatusTypeID"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"IsRecentlyVerified" : false, "ID" : 153780, "UUID" : "8D0F086D-5E9E-400F-818E-22768B940572", "DataProviderID" : 28, "DataProvidersReference" : "FR*S10*P10299A", "UsageTypeID" : 5, "AddressInfo" : {"ID" : 154133, "Title" : "POUAN LES VALLEES", "AddressLine1" : "3 Place de la Libert\u00e9 10700 POUAN LES VALLEES", "CountryID" : 80, "Latitude" : 48.5411282, "Longitude" : 4.0665713, "AccessComments" : "", "DistanceUnit" : 0}, "Connections" : [{"ID" : 215941, "ConnectionTypeID" : 28, "StatusTypeID" : 50, "LevelID" : 2, "PowerKW" : 18, "CurrentTypeID" : 10}, {"ID" : 215942, "ConnectionTypeID" : 25, "StatusTypeID" : 50, "LevelID" : 2, "PowerKW" : 18, "CurrentTypeID" : 20}, {"ID" : 249677, "ConnectionTypeID" : 28, "StatusTypeID" : 50, "LevelID" : 2, "PowerKW" : 18, "CurrentTypeID" : 10}, {"ID" : 249678, "ConnectionTypeID" : 25, "StatusTypeID" : 50, "LevelID" : 2, "PowerKW" : 18, "CurrentTypeID" : 20}], "GeneralComments" : "\"Une unit\u00e9 = 6kWh de recharge. Utilisateur abonn\u00e9 : 1\u20ac/unit\u00e9", "StatusTypeID" : 50, "DateLastStatusUpdate" : "2020-08-27T05:15:00Z", "DataQualityLevel" : 2, "DateCreated" : "2020-03-15T10:54: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"}, "CountryID": {"type": "integer"}, "Latitude": {"type": "number"}, "Longitude": {"type": "number"}, "AccessComments": {"type": "string"}, "DistanceUnit": {"type": "integer"}}, "required": ["ID", "Title", "AddressLine1", "CountryID", "Latitude", "Longitude", "AccessComments", "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"}}, "required": ["ID", "ConnectionTypeID", "StatusTypeID", "LevelID", "PowerKW", "CurrentTypeID"]}}, "GeneralComments": {"type": "string"}, "StatusTypeID": {"type": "integer"}, "DateLastStatusUpdate": {"type": "string"}, "DataQualityLevel": {"type": "integer"}, "DateCreated": {"type": "string"}, "SubmissionStatusTypeID": {"type": "integer"}}, "required": ["IsRecentlyVerified", "ID", "UUID", "DataProviderID", "DataProvidersReference", "UsageTypeID", "AddressInfo", "Connections", "GeneralComments", "StatusTypeID", "DateLastStatusUpdate", "DataQualityLevel", "DateCreated", "SubmissionStatusTypeID"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"id": {"type": "string"}, "provinceId": {"type": "string"}, "regencyId": {"type": "string"}, "districtId": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "provinceId", "regencyId", "districtId", "name"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : "2018", "provinceId" : "82", "regencyId" : "04", "districtId" : "09", "name" : "Nang"}
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "provinceId": {"type": "string"}, "regencyId": {"type": "string"}, "districtId": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "provinceId", "regencyId", "districtId", "name"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "minimum-stability": {"type": "string"}, "license": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}}, "require": {"type": "object", "properties": {"php": {"type": "string"}}, "required": ["php"]}, "require-dev": {"type": "object", "properties": {"block8/phpci": {"type": "string"}}, "required": ["block8/phpci"]}, "autoload": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"RobertSobolczyk\\PHPCI\\": {"type": "string"}}, "required": ["RobertSobolczyk\\PHPCI\\"]}}, "required": ["psr-4"]}}, "required": ["name", "description", "keywords", "minimum-stability", "license", "authors", "require", "require-dev", "autoload"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "robertsobolczyk/phpci-angular-cli", "description" : "PHPCI plugin for Angular Cli integration", "keywords" : ["phpci", "plugin", "angular", "angular-cli"], "minimum-stability" : "stable", "license" : "MIT", "authors" : [{"name" : "Robert Sobolczyk", "email" : "sobolczyk.robert@gmail.com"}], "require" : {"php" : ">=5.3.3"}, "require-dev" : {"block8/phpci" : "1.6.x"}, "autoload" : {"psr-4" : {"RobertSobolczyk\\PHPCI\\" : "src/"}}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "minimum-stability": {"type": "string"}, "license": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}}, "require": {"type": "object", "properties": {"php": {"type": "string"}}, "required": ["php"]}, "require-dev": {"type": "object", "properties": {"block8/phpci": {"type": "string"}}, "required": ["block8/phpci"]}, "autoload": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"RobertSobolczyk\\PHPCI\\": {"type": "string"}}, "required": ["RobertSobolczyk\\PHPCI\\"]}}, "required": ["psr-4"]}}, "required": ["name", "description", "keywords", "minimum-stability", "license", "authors", "require", "require-dev", "autoload"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"shadow": {"type": "object", "properties": {"elements": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "type": {"type": "string"}, "public": {"type": "boolean"}, "selector": {"type": "object", "properties": {"css": {"type": "string"}, "returnAll": {"type": "boolean"}}, "required": ["css", "returnAll"]}, "nullable": {"type": "boolean"}, "filter": {"type": "object", "properties": {"apply": {"type": "string"}, "matcher": {"type": "object", "properties": {"type": {"type": "string"}}, "required": ["type"]}}, "required": ["apply", "matcher"]}}, "required": ["name", "type", "public", "selector", "nullable", "filter"]}}}, "required": ["elements"]}}, "required": ["shadow"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"shadow" : {"elements" : [{"name" : "test", "type" : "utam-test/pageObjects/test/test", "public" : true, "selector" : {"css" : "css", "returnAll" : true}, "nullable" : true, "filter" : {"apply" : "isVisible", "matcher" : {"type" : "isTrue"}}}]}}
json_instruct
{"type": "object", "properties": {"shadow": {"type": "object", "properties": {"elements": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "type": {"type": "string"}, "public": {"type": "boolean"}, "selector": {"type": "object", "properties": {"css": {"type": "string"}, "returnAll": {"type": "boolean"}}, "required": ["css", "returnAll"]}, "nullable": {"type": "boolean"}, "filter": {"type": "object", "properties": {"apply": {"type": "string"}, "matcher": {"type": "object", "properties": {"type": {"type": "string"}}, "required": ["type"]}}, "required": ["apply", "matcher"]}}, "required": ["name", "type", "public", "selector", "nullable", "filter"]}}}, "required": ["elements"]}}, "required": ["shadow"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"word": {"type": "string"}, "definitions": {"type": "array", "items": {"type": "string"}}, "parts-of-speech": {"type": "string"}}, "required": ["word", "definitions", "parts-of-speech"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"word" : "Zoroastrianism", "definitions" : ["A monotheistic pre-Islamic religion of ancient Persia founded by Zoroaster in the 6th century BC."], "parts-of-speech" : "Noun"}
json_instruct
{"type": "object", "properties": {"word": {"type": "string"}, "definitions": {"type": "array", "items": {"type": "string"}}, "parts-of-speech": {"type": "string"}}, "required": ["word", "definitions", "parts-of-speech"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"hash": {"type": "string"}, "parentHash": {"type": "string"}, "number": {"type": "integer"}, "timestamp": {"type": "integer"}, "nonce": {"type": "string"}, "difficulty": {"type": "integer"}, "gasLimit": {"type": "object", "properties": {"_hex": {"type": "string"}}, "required": ["_hex"]}, "gasUsed": {"type": "object", "properties": {"_hex": {"type": "string"}}, "required": ["_hex"]}, "miner": {"type": "string"}, "extraData": {"type": "string"}, "transactions": {"type": "array", "items": {}}}, "required": ["hash", "parentHash", "number", "timestamp", "nonce", "difficulty", "gasLimit", "gasUsed", "miner", "extraData", "transactions"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"hash" : "0xf4d22f08e755134e4c8028477994db0602a8ead7084acdc12815492e268dda3a", "parentHash" : "0x8adc4b791b24c72722a452152af25ad48e729456096bded3781a730c32b4b005", "number" : 90643, "timestamp" : 1439643264, "nonce" : "0x5ff5c47aeeed2e82", "difficulty" : 3343159027587, "gasLimit" : {"_hex" : "0x2fefd8"}, "gasUsed" : {"_hex" : "0x0"}, "miner" : "0xe6A7a1d47ff21B6321162AEA7C6CB457D5476Bca", "extraData" : "0x476574682f76312e302e312d38326566323666362f6c696e75782f676f312e34", "transactions" : []}
json_instruct
{"type": "object", "properties": {"hash": {"type": "string"}, "parentHash": {"type": "string"}, "number": {"type": "integer"}, "timestamp": {"type": "integer"}, "nonce": {"type": "string"}, "difficulty": {"type": "integer"}, "gasLimit": {"type": "object", "properties": {"_hex": {"type": "string"}}, "required": ["_hex"]}, "gasUsed": {"type": "object", "properties": {"_hex": {"type": "string"}}, "required": ["_hex"]}, "miner": {"type": "string"}, "extraData": {"type": "string"}, "transactions": {"type": "array", "items": {}}}, "required": ["hash", "parentHash", "number", "timestamp", "nonce", "difficulty", "gasLimit", "gasUsed", "miner", "extraData", "transactions"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"zmyfwsA": {"type": "string"}}, "required": ["zmyfwsA"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"zmyfwsA" : "Fetal error"}
json_instruct
{"type": "object", "properties": {"zmyfwsA": {"type": "string"}}, "required": ["zmyfwsA"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"subreddit": {"type": "string"}, "author": {"type": "string"}, "count": {"type": "integer"}}, "required": ["subreddit", "author", "count"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"subreddit" : "goodmythicalmorning", "author" : "BurnZ_AU", "count" : 17}
json_instruct
{"type": "object", "properties": {"subreddit": {"type": "string"}, "author": {"type": "string"}, "count": {"type": "integer"}}, "required": ["subreddit", "author", "count"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"}
["configuration", "swUpdate", "receive", "browsing", "contact", "product-service-access"]
json_instruct
{"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"status": {"type": "integer"}, "startTimes": {"type": "array", "items": {"type": "integer"}}, "objectiveValue": {"type": "number"}, "solverRuntimeInMilliseconds": {"type": "integer"}, "optional": {"type": "object", "properties": {}, "required": []}}, "required": ["status", "startTimes", "objectiveValue", "solverRuntimeInMilliseconds", "optional"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"status" : 3, "startTimes" : [0, 59, 147, 15, 45, 194, 101, 79, 163, 67, 31, 210, 134, 176, 87], "objectiveValue" : 915.0, "solverRuntimeInMilliseconds" : 206, "optional" : {}}
json_instruct
{"type": "object", "properties": {"status": {"type": "integer"}, "startTimes": {"type": "array", "items": {"type": "integer"}}, "objectiveValue": {"type": "number"}, "solverRuntimeInMilliseconds": {"type": "integer"}, "optional": {"type": "object", "properties": {}, "required": []}}, "required": ["status", "startTimes", "objectiveValue", "solverRuntimeInMilliseconds", "optional"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "private": {"type": "boolean"}, "scripts": {"type": "object", "properties": {"dev": {"type": "string"}, "build": {"type": "string"}, "start": {"type": "string"}, "export": {"type": "string"}, "serve": {"type": "string"}}, "required": ["dev", "build", "start", "export", "serve"]}, "dependencies": {"type": "object", "properties": {"@nuxtjs/auth-next": {"type": "string"}, "@nuxtjs/axios": {"type": "string"}, "cookieparser": {"type": "string"}, "js-cookie": {"type": "string"}, "nuxt": {"type": "string"}}, "required": ["@nuxtjs/auth-next", "@nuxtjs/axios", "cookieparser", "js-cookie", "nuxt"]}, "devDependencies": {"type": "object", "properties": {"eslint": {"type": "string"}, "eslint-plugin-vue": {"type": "string"}}, "required": ["eslint", "eslint-plugin-vue"]}}, "required": ["name", "version", "private", "scripts", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "restfulci-job-frontend", "version" : "1.0.0", "private" : true, "scripts" : {"dev" : "nuxt", "build" : "nuxt build", "start" : "nuxt start", "export" : "nuxt export", "serve" : "nuxt serve"}, "dependencies" : {"@nuxtjs/auth-next" : "5.0.0-1611574754.9020f2a", "@nuxtjs/axios" : "^5.12.4", "cookieparser" : "^0.1.0", "js-cookie" : "^2.2.1", "nuxt" : "^2.14.12"}, "devDependencies" : {"eslint" : "^7.16.0", "eslint-plugin-vue" : "^7.3.0"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "private": {"type": "boolean"}, "scripts": {"type": "object", "properties": {"dev": {"type": "string"}, "build": {"type": "string"}, "start": {"type": "string"}, "export": {"type": "string"}, "serve": {"type": "string"}}, "required": ["dev", "build", "start", "export", "serve"]}, "dependencies": {"type": "object", "properties": {"@nuxtjs/auth-next": {"type": "string"}, "@nuxtjs/axios": {"type": "string"}, "cookieparser": {"type": "string"}, "js-cookie": {"type": "string"}, "nuxt": {"type": "string"}}, "required": ["@nuxtjs/auth-next", "@nuxtjs/axios", "cookieparser", "js-cookie", "nuxt"]}, "devDependencies": {"type": "object", "properties": {"eslint": {"type": "string"}, "eslint-plugin-vue": {"type": "string"}}, "required": ["eslint", "eslint-plugin-vue"]}}, "required": ["name", "version", "private", "scripts", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "array", "items": {}}}, "required": ["contract", "tool", "start", "end", "duration", "analysis"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"contract" : "0xed82730312babb41367e060911f798002ffa445f", "tool" : "solhint", "start" : 1563563045.8738403, "end" : 1563563049.7385828, "duration" : 3.8647425174713135, "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#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"expireTime": {"type": "integer"}, "key": {"type": "string"}, "val": {"type": "string"}}, "required": ["expireTime", "key", "val"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"expireTime" : 9007200880242803000, "key" : "/static/a844a359617a0d2f6582c8aa372bde15/1c91a/naphthalene.jpg", "val" : "553cc2a19508704515a8a2782f8aaa27"}
json_instruct
{"type": "object", "properties": {"expireTime": {"type": "integer"}, "key": {"type": "string"}, "val": {"type": "string"}}, "required": ["expireTime", "key", "val"], "$schema": "http://json-schema.org/draft-07/schema#"}