input
stringlengths
159
2.05k
output
stringlengths
5
10.3k
task
stringclasses
1 value
schema
stringlengths
100
1.99k
Construct a JSON document that adheres to this schema specification: {"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" : "import * as React from 'react';\nexport default function FooterRow(props) {\n return React.createElement(\"tr\", Object.assign({}, props));\n}", "map" : {"version" : 3, "sources" : ["/Users/pettychen/physicle/node_modules/rc-table/es/Footer/Row.js"], "names" : ["React", "FooterRow", "props", "createElement", "Object", "assign"], "mappings" : "AAAA,OAAO,KAAKA,KAAZ,MAAuB,OAAvB;AACA,eAAe,SAASC,SAAT,CAAmBC,KAAnB,EAA0B;AACvC,SAAOF,KAAK,CAACG,aAAN,CAAoB,IAApB,EAA0BC,MAAM,CAACC,MAAP,CAAc,EAAd,EAAkBH,KAAlB,CAA1B,CAAP;AACD", "sourcesContent" : ["import * as React from 'react';\nexport default function FooterRow(props) {\n return React.createElement(\"tr\", Object.assign({}, props));\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#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"id": {"type": "string"}}, "required": ["id"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : "2577e723eb8b6e5e06db13e78e3616823db4dfb0"}
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}}, "required": ["id"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "respository": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "addons": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "description", "respository", "keywords", "addons"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "Are.na", "description" : "Are.na integration with Slack.", "respository" : "https://github.com/dblock/slack-arena", "keywords" : ["slack", "bots", "are.na"], "addons" : ["mongolab"]}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "respository": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "addons": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "description", "respository", "keywords", "addons"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"ExpandedNodes": {"type": "array", "items": {"type": "string"}}, "SelectedNode": {"type": "string"}, "PreviewInSolutionExplorer": {"type": "boolean"}}, "required": ["ExpandedNodes", "SelectedNode", "PreviewInSolutionExplorer"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"ExpandedNodes" : ["", "\\node_modules\\@types\\jquery", "\\node_modules\\jquery", "\\node_modules\\jquery\\dist", "\\src", "\\style"], "SelectedNode" : "\\src\\visual.ts", "PreviewInSolutionExplorer" : false}
json_instruct
{"type": "object", "properties": {"ExpandedNodes": {"type": "array", "items": {"type": "string"}}, "SelectedNode": {"type": "string"}, "PreviewInSolutionExplorer": {"type": "boolean"}}, "required": ["ExpandedNodes", "SelectedNode", "PreviewInSolutionExplorer"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"version": {"type": "string"}, "command": {"type": "string"}, "isShellCommand": {"type": "boolean"}, "args": {"type": "array", "items": {"type": "string"}}, "showOutput": {"type": "string"}, "isWatching": {"type": "boolean"}}, "required": ["version", "command", "isShellCommand", "args", "showOutput", "isWatching"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"version" : "0.1.0", "command" : "babel", "isShellCommand" : true, "args" : ["src", "--out-dir", "dist", "--source-maps", "--watch"], "showOutput" : "silent", "isWatching" : true}
json_instruct
{"type": "object", "properties": {"version": {"type": "string"}, "command": {"type": "string"}, "isShellCommand": {"type": "boolean"}, "args": {"type": "array", "items": {"type": "string"}}, "showOutput": {"type": "string"}, "isWatching": {"type": "boolean"}}, "required": ["version", "command", "isShellCommand", "args", "showOutput", "isWatching"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"title": {"type": "string"}, "text": {"type": "string"}, "scanUrl": {"type": "string"}}, "required": ["title", "text", "scanUrl"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"title" : "Aragorn, Wingfoot (4P364)", "text" : "Set:\tThe Two Towers\nKind:\tFree People\nCulture:\tGondor\nTwilight:\t4\nCard Type:\tCompanion \u2022 Man\nStrength:\t8\nVitality:\t4\nResistance:\t6\nSignet:\tAragorn\nGame Text:\tRanger. Each time the fellowship moves, you may wound a minion for each unbound Hobbit you spot.\nLore:\t\u201d'Forty leagues and five you have measured ere the fourth day is ended! Hardy is the race of Elendil!'\u201d\nRarity:\tP", "scanUrl" : "https://lotrtcgwiki.com/wiki/_media/cards:lotr04364.jpg"}
json_instruct
{"type": "object", "properties": {"title": {"type": "string"}, "text": {"type": "string"}, "scanUrl": {"type": "string"}}, "required": ["title", "text", "scanUrl"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"type": {"type": "string"}, "alpha": {"type": "number"}}, "required": ["type", "alpha"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"type" : "origins:model_color", "alpha" : 0.5}
json_instruct
{"type": "object", "properties": {"type": {"type": "string"}, "alpha": {"type": "number"}}, "required": ["type", "alpha"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"id_4585": {"type": "object", "properties": {"title": {"type": "string"}, "language": {"type": "string"}, "totaltime": {"type": "string"}, "url_librivox": {"type": "string"}, "url_iarchive": {"type": "string"}, "readers": {"type": "array", "items": {"type": "string"}}, "authors": {"type": "string"}, "genres": {"type": "string"}}, "required": ["title", "language", "totaltime", "url_librivox", "url_iarchive", "readers", "authors", "genres"]}}, "required": ["id_4585"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id_4585" : {"title" : "Anna Karenina, Book 8", "language" : "English", "totaltime" : "2:10:58", "url_librivox" : "http://librivox.org/anna-karenina-book-8-by-leo-tolstoy/", "url_iarchive" : "http://www.archive.org/details/annakarenina_8_1008_librivox", "readers" : ["3645"], "authors" : "217", "genres" : "Historical Fiction"}}
json_instruct
{"type": "object", "properties": {"id_4585": {"type": "object", "properties": {"title": {"type": "string"}, "language": {"type": "string"}, "totaltime": {"type": "string"}, "url_librivox": {"type": "string"}, "url_iarchive": {"type": "string"}, "readers": {"type": "array", "items": {"type": "string"}}, "authors": {"type": "string"}, "genres": {"type": "string"}}, "required": ["title", "language", "totaltime", "url_librivox", "url_iarchive", "readers", "authors", "genres"]}}, "required": ["id_4585"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"stationId": {"type": "integer"}, "stationGroupId": {"type": "integer"}, "name": {"type": "string"}, "lineId": {"type": "integer"}, "zipCode": {"type": "string"}, "pref": {"type": "string"}, "city": {"type": "string"}, "town": {"type": "string"}, "longitude": {"type": "number"}, "latitude": {"type": "number"}, "status": {"type": "integer"}}, "required": ["stationId", "stationGroupId", "name", "lineId", "zipCode", "pref", "city", "town", "longitude", "latitude", "status"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"stationId" : 1110718, "stationGroupId" : 1110718, "name" : "\u6d66\u5e4c", "lineId" : 11107, "zipCode" : "089-5603", "pref" : "\u5317\u6d77\u9053", "city" : "\u5341\u52dd\u90e1\u6d66\u5e4c\u753a", "town" : "\u672c\u753a", "longitude" : 143.651568, "latitude" : 42.810849, "status" : 0}
json_instruct
{"type": "object", "properties": {"stationId": {"type": "integer"}, "stationGroupId": {"type": "integer"}, "name": {"type": "string"}, "lineId": {"type": "integer"}, "zipCode": {"type": "string"}, "pref": {"type": "string"}, "city": {"type": "string"}, "town": {"type": "string"}, "longitude": {"type": "number"}, "latitude": {"type": "number"}, "status": {"type": "integer"}}, "required": ["stationId", "stationGroupId", "name", "lineId", "zipCode", "pref", "city", "town", "longitude", "latitude", "status"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "author": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}, "url": {"type": "string"}}, "required": ["name", "email", "url"]}, "homepage": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "license": {"type": "string"}}, "required": ["name", "version", "description", "author", "homepage", "repository", "license"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "longestpoem", "version" : "3.0.0", "description" : "Longest Poem in the World", "author" : {"name" : "Andrei Gheorghe", "email" : "andreig@gmail.com", "url" : "http://www.idevelop.ro"}, "homepage" : "http://www.longestpoemintheworld.com", "repository" : {"type" : "git", "url" : "https://github.com/idevelop/longest-poem-in-the-world.git"}, "license" : "MIT"}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "author": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}, "url": {"type": "string"}}, "required": ["name", "email", "url"]}, "homepage": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "license": {"type": "string"}}, "required": ["name", "version", "description", "author", "homepage", "repository", "license"], "$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"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "build-client": {"type": "string"}, "dev-client": {"type": "string"}, "clean": {"type": "string"}}, "required": ["test", "build-client", "dev-client", "clean"]}, "author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"cytoscape": {"type": "string"}, "cytoscape-d3-force": {"type": "string"}, "cytoscape-graphml": {"type": "string"}, "cytoscape-popper": {"type": "string"}, "d3-force": {"type": "string"}, "eventemitter3": {"type": "string"}, "grommet": {"type": "string"}, "grommet-icons": {"type": "string"}, "history": {"type": "string"}, "jquery": {"type": "string"}, "parcel-bundler": {"type": "string"}, "popper.js": {"type": "string"}, "react": {"type": "string"}, "react-dom": {"type": "string"}, "react-router-dom": {"type": "string"}, "regenerator-runtime": {"type": "string"}, "styled-components": {"type": "string"}, "tippy.js": {"type": "string"}}, "required": ["cytoscape", "cytoscape-d3-force", "cytoscape-graphml", "cytoscape-popper", "d3-force", "eventemitter3", "grommet", "grommet-icons", "history", "jquery", "parcel-bundler", "popper.js", "react", "react-dom", "react-router-dom", "regenerator-runtime", "styled-components", "tippy.js"]}, "devDependencies": {"type": "object", "properties": {"prettier": {"type": "string"}}, "required": ["prettier"]}}, "required": ["name", "version", "description", "main", "scripts", "author", "license", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "graphistic-portfolio", "version" : "1.0.0", "description" : "a static web site containing the graph showing publisher's experiences.", "main" : "index.js", "scripts" : {"test" : "echo \"Error: no test specified\" && exit 1", "build-client" : "npm run clean && parcel build client/src/index.html --out-dir docs --public-url https://nori-tnk.github.io/graphistic-portfolio", "dev-client" : "npm run clean && parcel client/src/index.html --out-dir docs", "clean" : "rm -rf .cache docs"}, "author" : "nori-tnk", "license" : "MIT", "dependencies" : {"cytoscape" : "^3.14.1", "cytoscape-d3-force" : "^1.1.4", "cytoscape-graphml" : "^1.0.6", "cytoscape-popper" : "^1.0.6", "d3-force" : "^2.0.1", "eventemitter3" : "^4.0.0", "grommet" : "^2.12.0", "grommet-icons" : "^4.4.0", "history" : "^4.10.1", "jquery" : "^3.5.0", "parcel-bundler" : "^1.12.4", "popper.js" : "^1.16.0", "react" : "^16.13.1", "react-dom" : "^16.13.1", "react-router-dom" : "^5.1.2", "regenerator-runtime" : "^0.13.5", "styled-components" : "^5.1.0", "tippy.js" : "^5.2.1"}, "devDependencies" : {"prettier" : "2.0.4"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "build-client": {"type": "string"}, "dev-client": {"type": "string"}, "clean": {"type": "string"}}, "required": ["test", "build-client", "dev-client", "clean"]}, "author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"cytoscape": {"type": "string"}, "cytoscape-d3-force": {"type": "string"}, "cytoscape-graphml": {"type": "string"}, "cytoscape-popper": {"type": "string"}, "d3-force": {"type": "string"}, "eventemitter3": {"type": "string"}, "grommet": {"type": "string"}, "grommet-icons": {"type": "string"}, "history": {"type": "string"}, "jquery": {"type": "string"}, "parcel-bundler": {"type": "string"}, "popper.js": {"type": "string"}, "react": {"type": "string"}, "react-dom": {"type": "string"}, "react-router-dom": {"type": "string"}, "regenerator-runtime": {"type": "string"}, "styled-components": {"type": "string"}, "tippy.js": {"type": "string"}}, "required": ["cytoscape", "cytoscape-d3-force", "cytoscape-graphml", "cytoscape-popper", "d3-force", "eventemitter3", "grommet", "grommet-icons", "history", "jquery", "parcel-bundler", "popper.js", "react", "react-dom", "react-router-dom", "regenerator-runtime", "styled-components", "tippy.js"]}, "devDependencies": {"type": "object", "properties": {"prettier": {"type": "string"}}, "required": ["prettier"]}}, "required": ["name", "version", "description", "main", "scripts", "author", "license", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "array", "items": {"type": "array", "items": {"type": "string"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
[["440983115001", "\u6d2a\u51a0\u793e\u533a\u5c45\u59d4\u4f1a", "121", "0"], ["440983115201", "\u5927\u6a1f\u6751\u59d4\u4f1a", "121", "0"], ["440983115202", "\u84dd\u6751\u6751\u59d4\u4f1a", "121", "0"], ["440983115203", "\u4e91\u4e3d\u6751\u59d4\u4f1a", "122", "0"], ["440983115204", "\u9526\u8863\u6751\u59d4\u4f1a", "122", "0"], ["440983115205", "\u6d2a\u80dc\u6751\u59d4\u4f1a", "122", "0"], ["440983115206", "\u6d2a\u51a0\u6751\u59d4\u4f1a", "122", "0"], ["440983115207", "\u6d2a\u4e0a\u6751\u59d4\u4f1a", "220", "0"], ["440983115208", "\u4e2d\u71d5\u6751\u59d4\u4f1a", "220", "0"], ["440983115209", "\u7ffb\u7a3f\u6751\u59d4\u4f1a", "220", "0"], ["440983115210", "\u7ffb\u5357\u6751\u59d4\u4f1a", "220", "0"], ["440983115211", "\u6276\u66f9\u6751\u59d4\u4f1a", "220", "0"], ["440983115212", "\u697c\u578c\u6751\u59d4\u4f1a", "220", "0"], ["440983115213", "\u578c\u5934\u6751\u59d4\u4f1a", "220", "0"], ["440983115214", "\u578c\u7f8e\u6751\u59d4\u4f1a", "220", "0"]]
json_instruct
{"type": "array", "items": {"type": "array", "items": {"type": "string"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"hash_nf": {"type": "string"}, "url_nf": {"type": "string"}, "text": {"type": "string"}, "tgph": {"type": "string"}, "port": {"type": "string"}, "original": {"type": "string"}, "not_allowed": {"type": "string"}, "settings_txt": {"type": "string"}, "np_settings": {"type": "string"}, "language": {"type": "string"}, "pattern": {"type": "string"}, "back": {"type": "string"}, "sticker": {"type": "string"}, "theme": {"type": "string"}, "blur": {"type": "string"}, "np_settings_txt": {"type": "string"}, "dark": {"type": "string"}, "light": {"type": "string"}, "pattern_settings_text": {"type": "string"}, "lang_sucess": {"type": "string"}, "ch_lang": {"type": "string"}}, "required": ["hash_nf", "url_nf", "text", "tgph", "port", "original", "not_allowed", "settings_txt", "np_settings", "language", "pattern", "back", "sticker", "theme", "blur", "np_settings_txt", "dark", "light", "pattern_settings_text", "lang_sucess", "ch_lang"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"hash_nf" : "Hash not found...\nThis message may be old.", "url_nf" : "Invalid link:\n{text}", "text" : "Text", "tgph" : "Telegra.ph", "port" : "Portuguese", "original" : "Original", "not_allowed" : "You can't use this, only {first_name} can", "settings_txt" : "What would you like to configure?", "np_settings" : "Now Playing settings", "language" : "Language settings", "pattern" : "Default settings", "back" : "Go back", "sticker" : "Sticker: ", "theme" : "Theme: ", "blur" : "Blur: ", "np_settings_txt" : "Configure your now playing below:", "dark" : "Dark", "light" : "Light", "pattern_settings_text" : "Change your default settings below:", "lang_sucess" : "Language successfully changed", "ch_lang" : "Choose a language:"}
json_instruct
{"type": "object", "properties": {"hash_nf": {"type": "string"}, "url_nf": {"type": "string"}, "text": {"type": "string"}, "tgph": {"type": "string"}, "port": {"type": "string"}, "original": {"type": "string"}, "not_allowed": {"type": "string"}, "settings_txt": {"type": "string"}, "np_settings": {"type": "string"}, "language": {"type": "string"}, "pattern": {"type": "string"}, "back": {"type": "string"}, "sticker": {"type": "string"}, "theme": {"type": "string"}, "blur": {"type": "string"}, "np_settings_txt": {"type": "string"}, "dark": {"type": "string"}, "light": {"type": "string"}, "pattern_settings_text": {"type": "string"}, "lang_sucess": {"type": "string"}, "ch_lang": {"type": "string"}}, "required": ["hash_nf", "url_nf", "text", "tgph", "port", "original", "not_allowed", "settings_txt", "np_settings", "language", "pattern", "back", "sticker", "theme", "blur", "np_settings_txt", "dark", "light", "pattern_settings_text", "lang_sucess", "ch_lang"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "null"}}, "required": ["contract", "tool", "start", "end", "duration", "analysis"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"contract" : "0x67ad530ecdfd7ac8289362914e88d018e8b3f3f0", "tool" : "securify", "start" : 1563519848.9771783, "end" : 1563519852.0505447, "duration" : 3.073366403579712, "analysis" : null}
json_instruct
{"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "null"}}, "required": ["contract", "tool", "start", "end", "duration", "analysis"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"}
["#/properties/update_configs/items/properties/automerged_updates/items/properties/match/properties/dependency_type/examples/0"]
json_instruct
{"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"schemaVersion": {"type": "integer"}, "id": {"type": "string"}, "version": {"type": "string"}, "name": {"type": "string"}, "description": {"type": "string"}, "authors": {"type": "array", "items": {"type": "string"}}, "contact": {"type": "object", "properties": {"homepage": {"type": "string"}, "sources": {"type": "string"}}, "required": ["homepage", "sources"]}, "license": {"type": "string"}, "icon": {"type": "string"}, "environment": {"type": "string"}, "entrypoints": {"type": "object", "properties": {"main": {"type": "array", "items": {"type": "string"}}, "modmenu": {"type": "array", "items": {"type": "string"}}}, "required": ["main", "modmenu"]}, "mixins": {"type": "array", "items": {"type": "string"}}, "depends": {"type": "object", "properties": {"fabricloader": {"type": "string"}, "fabric": {"type": "string"}, "minecraft": {"type": "string"}, "architectury": {"type": "string"}}, "required": ["fabricloader", "fabric", "minecraft", "architectury"]}, "suggests": {"type": "object", "properties": {"flamingo": {"type": "string"}}, "required": ["flamingo"]}}, "required": ["schemaVersion", "id", "version", "name", "description", "authors", "contact", "license", "icon", "environment", "entrypoints", "mixins", "depends", "suggests"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"schemaVersion" : 1, "id" : "mobspawnlimit", "version" : "${version}", "name" : "MobSpawnLimit Mod", "description" : "\u30e2\u30d6\u30b9\u30dd\u30fc\u30f3\u6570\u5236\u9650Mod", "authors" : ["Sistr"], "contact" : {"homepage" : "https://forum.civa.jp/viewtopic.php?f=3&t=119", "sources" : "https://github.com/SistrScarlet/MobSpawnLimitMod"}, "license" : "CC0", "icon" : "assets/mobspawnlimit/icon.png", "environment" : "*", "entrypoints" : {"main" : ["net.sistr.mobspawnlimit.fabric.FabricModEntryPoint"], "modmenu" : ["net.sistr.mobspawnlimit.fabric.ModMenuIntegration"]}, "mixins" : ["mobspawnlimit-common.mixins.json"], "depends" : {"fabricloader" : ">=0.12.11", "fabric" : "*", "minecraft" : ">=1.18.1", "architectury" : ">=3.2.51"}, "suggests" : {"flamingo" : "*"}}
json_instruct
{"type": "object", "properties": {"schemaVersion": {"type": "integer"}, "id": {"type": "string"}, "version": {"type": "string"}, "name": {"type": "string"}, "description": {"type": "string"}, "authors": {"type": "array", "items": {"type": "string"}}, "contact": {"type": "object", "properties": {"homepage": {"type": "string"}, "sources": {"type": "string"}}, "required": ["homepage", "sources"]}, "license": {"type": "string"}, "icon": {"type": "string"}, "environment": {"type": "string"}, "entrypoints": {"type": "object", "properties": {"main": {"type": "array", "items": {"type": "string"}}, "modmenu": {"type": "array", "items": {"type": "string"}}}, "required": ["main", "modmenu"]}, "mixins": {"type": "array", "items": {"type": "string"}}, "depends": {"type": "object", "properties": {"fabricloader": {"type": "string"}, "fabric": {"type": "string"}, "minecraft": {"type": "string"}, "architectury": {"type": "string"}}, "required": ["fabricloader", "fabric", "minecraft", "architectury"]}, "suggests": {"type": "object", "properties": {"flamingo": {"type": "string"}}, "required": ["flamingo"]}}, "required": ["schemaVersion", "id", "version", "name", "description", "authors", "contact", "license", "icon", "environment", "entrypoints", "mixins", "depends", "suggests"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"google_compute_instance_from_template": {"type": "object", "properties": {"status": {"type": "string"}, "subcategory": {"type": "string"}, "layout": {"type": "string"}, "page_title": {"type": "string"}, "sidebar_current": {"type": "string"}, "description": {"type": "string"}, "arguments": {"type": "object", "properties": {"name": {"type": "object", "properties": {"description": {"type": "string"}, "required": {"type": "boolean"}, "policy": {"type": "string"}, "notes": {"type": "string"}}, "required": ["description", "required", "policy", "notes"]}, "source_instance_template": {"type": "object", "properties": {"description": {"type": "string"}, "required": {"type": "boolean"}, "policy": {"type": "string"}, "notes": {"type": "string"}}, "required": ["description", "required", "policy", "notes"]}, "zone": {"type": "object", "properties": {"description": {"type": "string"}, "required": {"type": "boolean"}, "policy": {"type": "string"}, "notes": {"type": "string"}}, "required": ["description", "required", "policy", "notes"]}}, "required": ["name", "source_instance_template", "zone"]}, "attributes": {"type": "object", "properties": {}, "required": []}, "timeouts": {"type": "object", "properties": {}, "required": []}}, "required": ["status", "subcategory", "layout", "page_title", "sidebar_current", "description", "arguments", "attributes", "timeouts"]}}, "required": ["google_compute_instance_from_template"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"google_compute_instance_from_template" : {"status" : "ASSESS", "subcategory" : "Compute Engine", "layout" : "google", "page_title" : "Google: google_compute_instance_from_template", "sidebar_current" : "docs-google-compute-instance-from-template", "description" : "Manages a VM instance resource within GCE.", "arguments" : {"name" : {"description" : "A unique name for the resource, required by GCE.", "required" : false, "policy" : "", "notes" : ""}, "source_instance_template" : {"description" : "Name or self link of an instance", "required" : false, "policy" : "", "notes" : ""}, "zone" : {"description" : "The zone that the machine should be created in. If not", "required" : false, "policy" : "", "notes" : ""}}, "attributes" : {}, "timeouts" : {}}}
json_instruct
{"type": "object", "properties": {"google_compute_instance_from_template": {"type": "object", "properties": {"status": {"type": "string"}, "subcategory": {"type": "string"}, "layout": {"type": "string"}, "page_title": {"type": "string"}, "sidebar_current": {"type": "string"}, "description": {"type": "string"}, "arguments": {"type": "object", "properties": {"name": {"type": "object", "properties": {"description": {"type": "string"}, "required": {"type": "boolean"}, "policy": {"type": "string"}, "notes": {"type": "string"}}, "required": ["description", "required", "policy", "notes"]}, "source_instance_template": {"type": "object", "properties": {"description": {"type": "string"}, "required": {"type": "boolean"}, "policy": {"type": "string"}, "notes": {"type": "string"}}, "required": ["description", "required", "policy", "notes"]}, "zone": {"type": "object", "properties": {"description": {"type": "string"}, "required": {"type": "boolean"}, "policy": {"type": "string"}, "notes": {"type": "string"}}, "required": ["description", "required", "policy", "notes"]}}, "required": ["name", "source_instance_template", "zone"]}, "attributes": {"type": "object", "properties": {}, "required": []}, "timeouts": {"type": "object", "properties": {}, "required": []}}, "required": ["status", "subcategory", "layout", "page_title", "sidebar_current", "description", "arguments", "attributes", "timeouts"]}}, "required": ["google_compute_instance_from_template"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "array", "items": {"type": "object", "properties": {"cisco_facility": {"type": "string"}, "cisco_mnemonic": {"type": "string"}, "cisco_priority": {"type": "string"}, "event.tags": {"type": "array", "items": {"type": "string"}}, "inner_datetime": {"type": "string"}, "inner_host": {"type": "string"}, "inner_msec": {"type": "string"}, "inner_tz": {"type": "string"}, "message": {"type": "string"}, "pri": {"type": "string"}, "seqno": {"type": "string"}, "seqno2": {"type": "string"}, "sourcetype": {"type": "string"}}, "required": ["cisco_facility", "cisco_mnemonic", "cisco_priority", "event.tags", "inner_datetime", "inner_host", "inner_msec", "inner_tz", "message", "pri", "seqno", "seqno2", "sourcetype"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"cisco_facility" : "IOSXE", "cisco_mnemonic" : "PLATFORM", "cisco_priority" : "6", "event.tags" : ["iosxe_seqno_timestamp_msec_tz_origin"], "inner_datetime" : "Mar 26 11:42:43", "inner_host" : "RTR01", "inner_msec" : "832", "inner_tz" : "MST", "message" : "cpp_cp: QFP:0.0 Thread:001 TS:00030437466936823026 %FW-6-DROP_PKT: Dropping udp pkt from GigabitEthernet0/0/1.10 192.0.2.11:42990 => 255.255.255.255:42990(target:class)-(DEFAULT-PCI_19-SELF:class-default) due to Policy drop:classify result with ip ident 18478", "pri" : "190", "seqno" : "107356936", "seqno2" : "107356938", "sourcetype" : "col:syslog:cisco:ios"}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"cisco_facility": {"type": "string"}, "cisco_mnemonic": {"type": "string"}, "cisco_priority": {"type": "string"}, "event.tags": {"type": "array", "items": {"type": "string"}}, "inner_datetime": {"type": "string"}, "inner_host": {"type": "string"}, "inner_msec": {"type": "string"}, "inner_tz": {"type": "string"}, "message": {"type": "string"}, "pri": {"type": "string"}, "seqno": {"type": "string"}, "seqno2": {"type": "string"}, "sourcetype": {"type": "string"}}, "required": ["cisco_facility", "cisco_mnemonic", "cisco_priority", "event.tags", "inner_datetime", "inner_host", "inner_msec", "inner_tz", "message", "pri", "seqno", "seqno2", "sourcetype"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {"type": "integer"}}, "productReviews": {"type": "array", "items": {}}}, "required": ["userId", "cartId", "preferredProducts", "productReviews"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"userId" : 64320, "cartId" : "528a960d-c68f-4d43-9279-2d198082649a", "preferredProducts" : [62, 4766, 2145, 1901, 1290, 4502, 998, 4470, 2339, 2071], "productReviews" : []}
json_instruct
{"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {"type": "integer"}}, "productReviews": {"type": "array", "items": {}}}, "required": ["userId", "cartId", "preferredProducts", "productReviews"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "array", "items": {"type": "object", "properties": {"bbox": {"type": "string"}, "used": {"type": "boolean"}, "class_name": {"type": "string"}}, "required": ["bbox", "used", "class_name"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"bbox" : "76 140 384 360", "used" : false, "class_name" : "train"}, {"bbox" : "330 142 500 354", "used" : false, "class_name" : "train"}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"bbox": {"type": "string"}, "used": {"type": "boolean"}, "class_name": {"type": "string"}}, "required": ["bbox", "used", "class_name"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"simplebar.css": {"type": "string"}, "simplebar.js": {"type": "string"}, "simplebar.min.css": {"type": "string"}, "simplebar.min.js": {"type": "string"}}, "required": ["simplebar.css", "simplebar.js", "simplebar.min.css", "simplebar.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"simplebar.css" : "sha256-Cbtv8hK8f3wRQ46trTSE9iRS5sD+r777f1b67ZmzO+o=", "simplebar.js" : "sha256-MZnP2oEKJ15BI6Z/8PvtvpHEbbR94a22pYRBb7D+CCA=", "simplebar.min.css" : "sha256-MxJC3r4EIj+NzTirSq6/PXOY9YtvkLwuIwakDiHua48=", "simplebar.min.js" : "sha256-rVBTzrI10BJRwGSqI/RMYpgXqGSW4tpCN3B8vk7IbjQ="}
json_instruct
{"type": "object", "properties": {"simplebar.css": {"type": "string"}, "simplebar.js": {"type": "string"}, "simplebar.min.css": {"type": "string"}, "simplebar.min.js": {"type": "string"}}, "required": ["simplebar.css", "simplebar.js", "simplebar.min.css", "simplebar.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"body": {"type": "string"}, "next": {"type": "string"}}, "required": ["body", "next"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"body" : "AND SO AFFORD US BUT VERY SPARINGLY ANY CERTAIN, UNIVERSAL, AND USEFUL TRUTHS.", "next" : "https://raw.githubusercontent.com/CAPSELOCKE/CAPSELOCKE/master/tweets/11857.json"}
json_instruct
{"type": "object", "properties": {"body": {"type": "string"}, "next": {"type": "string"}}, "required": ["body", "next"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "object", "properties": {"is_lock_vulnerable": {"type": "boolean"}, "is_prodigal_vulnerable": {"type": "boolean"}, "is_suicidal_vulnerable": {"type": "boolean"}}, "required": ["is_lock_vulnerable", "is_prodigal_vulnerable", "is_suicidal_vulnerable"]}}, "required": ["contract", "tool", "start", "end", "duration", "analysis"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"contract" : "0x1eb0d4794d4067ed004c9d55ff6eb50620b27c58", "tool" : "maian", "start" : 1565527240.3003976, "end" : 1565527602.521566, "duration" : 362.2211682796478, "analysis" : {"is_lock_vulnerable" : false, "is_prodigal_vulnerable" : false, "is_suicidal_vulnerable" : false}}
json_instruct
{"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "object", "properties": {"is_lock_vulnerable": {"type": "boolean"}, "is_prodigal_vulnerable": {"type": "boolean"}, "is_suicidal_vulnerable": {"type": "boolean"}}, "required": ["is_lock_vulnerable", "is_prodigal_vulnerable", "is_suicidal_vulnerable"]}}, "required": ["contract", "tool", "start", "end", "duration", "analysis"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"profiles": {"type": "object", "properties": {"BankServer": {"type": "object", "properties": {"commandName": {"type": "string"}, "commandLineArgs": {"type": "string"}}, "required": ["commandName", "commandLineArgs"]}}, "required": ["BankServer"]}}, "required": ["profiles"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"profiles" : {"BankServer" : {"commandName" : "Project", "commandLineArgs" : "-p 50053 -i 127.0.0.1"}}}
json_instruct
{"type": "object", "properties": {"profiles": {"type": "object", "properties": {"BankServer": {"type": "object", "properties": {"commandName": {"type": "string"}, "commandLineArgs": {"type": "string"}}, "required": ["commandName", "commandLineArgs"]}}, "required": ["BankServer"]}}, "required": ["profiles"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "qualified_name": {"type": "string"}, "examine": {"type": "string"}, "members": {"type": "boolean"}, "release_date": {"type": "string"}, "quest": {"type": "boolean"}, "weight": {"type": "number"}, "value": {"type": "integer"}, "tradeable": {"type": "boolean"}, "stackable": {"type": "boolean"}, "noteable": {"type": "boolean"}, "equipable": {"type": "boolean"}, "tradeable_ge": {"type": "boolean"}, "icon": {"type": "string"}, "wiki_url": {"type": "string"}}, "required": ["id", "name", "qualified_name", "examine", "members", "release_date", "quest", "weight", "value", "tradeable", "stackable", "noteable", "equipable", "tradeable_ge", "icon", "wiki_url"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : 4073, "name" : "Damp tinderbox", "qualified_name" : "Damp tinderbox", "examine" : "Not so useful for lighting a fire.", "members" : true, "release_date" : "2004-12-21", "quest" : false, "weight" : 0.035, "value" : 1, "tradeable" : true, "stackable" : false, "noteable" : true, "equipable" : false, "tradeable_ge" : false, "icon" : "iVBORw0KGgoAAAANSUhEUgAAACQAAAAgCAYAAAB6kdqOAAAChUlEQVR4Xu2W7U4TQRRA2TfwEXgEX8Vf/JKEEJEIEisiIkgqIiKIVMSCFCxSpFKLUaPRtxtzprmzd6fTsm12qT+8yQmF/ZjD/Zjp0ND/GGhEJslAIhaYnphw3BodvSqpZBYe3J1O8PDejJmZnDS3x8bs9evDw3lIxQKPZ2ctS3NzQXIWakk8W1zsyvMnS5bl+XnzqFAw96emnEyGQpF5+bSYYHNlpSMvisumuLBgs5eLzPbamqW0vh7k7caGY2t11QnlIvPu1aYpv95y7Je2O8K9iJPBXGQO3pRMZWfHcbS7m6BaLju4F2EylovMx709R+39vuO0ctAG9yCMEOWiofU0+m/vMSJzdlix1D8cOc6rVUfj+NjBfYiSscKNaw7KRz8xcUm5ngQjt1Dz5MTxtVZzfPt06uAasghpGR/KScMzgWwNKaUiu8j3+pnjx+d6G/o6gmTMF9CQOUpJs1NONkvpMd9ARWR+fWkE+dk4t4Sk+Ad8AQ2Zo7ekfPTWnfHxy4Qi8+fiwvK72bSkFQJfQqDZmT62AyaP7HC+3RwZuVxIL6gXk16R/vEX7YRMn5SL7HC26TOtq5AsKE1MU/uLpIUy0ehsBdLMTFqPZ1pkXyLjrvcXf8FuIEOT8w7KJdnp40yLxx1kv5E9KI0c1+U5aWayI2PegwwRl80vn5QQOsnxO9d4jp/SzOw7fcgQUVsjh9CyWk5kkOZvkp0+ZYiobQMMoSdQ5GUn57M0M9nRJ76/WsponTP+ouCL+bBtICajntmJ33o4PgRD51cIpGlmyU4mMjril7XEdIOHQJpRJzuZy/jhZ01/DdFfRxj13GV0+FkD/b3pSmX8CMkNTMYPEfknZLKOv7TLNcZmbCHXAAAAAElFTkSuQmCC", "wiki_url" : "https://oldschool.runescape.wiki/w/Damp_tinderbox"}
json_instruct
{"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "qualified_name": {"type": "string"}, "examine": {"type": "string"}, "members": {"type": "boolean"}, "release_date": {"type": "string"}, "quest": {"type": "boolean"}, "weight": {"type": "number"}, "value": {"type": "integer"}, "tradeable": {"type": "boolean"}, "stackable": {"type": "boolean"}, "noteable": {"type": "boolean"}, "equipable": {"type": "boolean"}, "tradeable_ge": {"type": "boolean"}, "icon": {"type": "string"}, "wiki_url": {"type": "string"}}, "required": ["id", "name", "qualified_name", "examine", "members", "release_date", "quest", "weight", "value", "tradeable", "stackable", "noteable", "equipable", "tradeable_ge", "icon", "wiki_url"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"id": {"type": "string"}, "playerTags": {"type": "array", "items": {"type": "string"}}, "teamTags": {"type": "array", "items": {"type": "string"}}, "gameTags": {"type": "array", "items": {}}, "metadata": {"type": "object", "properties": {"type": {"type": "integer"}, "after": {"type": "number"}, "before": {"type": "number"}, "parent": {"type": "string"}}, "required": ["type", "after", "before", "parent"]}, "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" : "86b56a7f-2135-4ff9-b397-bab578601b67", "playerTags" : ["4ecee7be-93e4-4f04-b114-6b333e0e6408"], "teamTags" : ["979aee4a-6d80-4863-bf1c-ee1a78e06024"], "gameTags" : [], "metadata" : {"type" : 0, "after" : 0.5968475833138098, "before" : 0.5791782806643218, "parent" : "77737781-2296-478f-b823-5e8c4ce802f5"}, "created" : "2021-04-11T18:16:46.731Z", "season" : 14, "tournament" : -1, "type" : 117, "day" : 113, "phase" : 13, "category" : 1, "description" : "Sutton Dreamy's hitting was boosted.", "nuts" : 1}
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "playerTags": {"type": "array", "items": {"type": "string"}}, "teamTags": {"type": "array", "items": {"type": "string"}}, "gameTags": {"type": "array", "items": {}}, "metadata": {"type": "object", "properties": {"type": {"type": "integer"}, "after": {"type": "number"}, "before": {"type": "number"}, "parent": {"type": "string"}}, "required": ["type", "after", "before", "parent"]}, "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": {"name": {"type": "string"}, "title": {"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"}, "baseUrl": {"type": "string"}}, "required": ["type", "url", "baseUrl"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}, "licenseFilename": {"type": "string"}, "peerDependencies": {"type": "object", "properties": {"react": {"type": "string"}, "react-native": {"type": "string"}}, "required": ["react", "react-native"]}, "devDependencies": {"type": "object", "properties": {"react": {"type": "string"}, "react-native": {"type": "string"}}, "required": ["react", "react-native"]}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}}, "required": ["name", "title", "version", "description", "main", "scripts", "repository", "keywords", "author", "license", "licenseFilename", "peerDependencies", "devDependencies", "bugs", "homepage"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "@bouncyapp/react-native-apple-music", "title" : "React Native Apple Music", "version" : "1.0.3", "description" : "A react native module for the Apple Music API", "main" : "index.js", "scripts" : {"test" : "echo \"Error: no test specified\" && exit 1"}, "repository" : {"type" : "git", "url" : "git+ssh://git@github.com/Lemonadd-UG/react-native-apple-music.git", "baseUrl" : "https://github.com/Lemonadd-UG/react-native-apple-music"}, "keywords" : ["react-native", "ios", "apple music", "apple music api", "music", "react-native-apple-music", "apple"], "author" : "Bouncy", "license" : "MIT", "licenseFilename" : "LICENSE", "peerDependencies" : {"react" : "^16.8.1", "react-native" : ">=0.60.0-rc.0 <1.0.x"}, "devDependencies" : {"react" : "^16.9.0", "react-native" : "^0.61.5"}, "bugs" : {"url" : "https://github.com/Lemonadd-UG/react-native-apple-music/issues"}, "homepage" : "https://github.com/Lemonadd-UG/react-native-apple-music#readme"}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "title": {"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"}, "baseUrl": {"type": "string"}}, "required": ["type", "url", "baseUrl"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}, "licenseFilename": {"type": "string"}, "peerDependencies": {"type": "object", "properties": {"react": {"type": "string"}, "react-native": {"type": "string"}}, "required": ["react", "react-native"]}, "devDependencies": {"type": "object", "properties": {"react": {"type": "string"}, "react-native": {"type": "string"}}, "required": ["react", "react-native"]}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}}, "required": ["name", "title", "version", "description", "main", "scripts", "repository", "keywords", "author", "license", "licenseFilename", "peerDependencies", "devDependencies", "bugs", "homepage"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "array", "items": {"type": "array", "items": {"type": "string"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
[["Gimnasia (M)", "1", "2", "Rosario Central", "Torneo Nacional 1982 - Torneo Nacional"], ["Rosario Central", "3", "0", "Gimnasia (M)", "Torneo Nacional 1982 - Torneo Nacional"], ["Rosario Central", "4", "1", "Gimnasia (M)", "Nacional 1981 - Grupo A"], ["Gimnasia (M)", "3", "2", "Rosario Central", "Nacional 1981 - Grupo A"], ["Gimnasia (M)", "0", "0", "Rosario Central", "Nacional 1971 - Grupo B"], ["Rosario Central", "4", "1", "Gimnasia (M)", "Nacional 1981 - Grupo A"], ["Rosario Central", "3", "0", "Gimnasia (M)", "Torneo Nacional 1982 - Torneo Nacional"]]
json_instruct
{"type": "array", "items": {"type": "array", "items": {"type": "string"}}, "$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": {"start": {"type": "string"}, "test": {"type": "string"}}, "required": ["start", "test"]}, "dependencies": {"type": "object", "properties": {"react": {"type": "string"}, "react-native": {"type": "string"}, "react-navigation": {"type": "string"}, "history": {"type": "string"}, "lodash": {"type": "string"}, "moment": {"type": "string"}, "react-native-image-picker": {"type": "string"}, "react-redux": {"type": "string"}, "redux": {"type": "string"}, "redux-logger": {"type": "string"}, "redux-persist": {"type": "string"}, "redux-thunk": {"type": "string"}, "react-native-linear-gradient": {"type": "string"}}, "required": ["react", "react-native", "react-navigation", "history", "lodash", "moment", "react-native-image-picker", "react-redux", "redux", "redux-logger", "redux-persist", "redux-thunk", "react-native-linear-gradient"]}, "devDependencies": {"type": "object", "properties": {"babel-jest": {"type": "string"}, "babel-preset-react-native": {"type": "string"}, "jest": {"type": "string"}, "react-test-renderer": {"type": "string"}}, "required": ["babel-jest", "babel-preset-react-native", "jest", "react-test-renderer"]}, "jest": {"type": "object", "properties": {"preset": {"type": "string"}}, "required": ["preset"]}}, "required": ["name", "version", "private", "scripts", "dependencies", "devDependencies", "jest"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "Yote", "version" : "0.0.1", "private" : true, "scripts" : {"start" : "node node_modules/react-native/local-cli/cli.js start", "test" : "jest"}, "dependencies" : {"react" : "16.0.0-alpha.12", "react-native" : "0.47.2", "react-navigation" : "^1.0.0-beta.11", "history" : "^4.6.3", "lodash" : "^4.13.1", "moment" : "^2.13.0", "react-native-image-picker" : "^0.26.3", "react-redux" : "^5.0.5", "redux" : "^3.7.2", "redux-logger" : "2.6.1", "redux-persist" : "^4.0.1", "redux-thunk" : "2.1.0", "react-native-linear-gradient" : "^2.0.0"}, "devDependencies" : {"babel-jest" : "20.0.3", "babel-preset-react-native" : "3.0.2", "jest" : "20.0.4", "react-test-renderer" : "16.0.0-alpha.12"}, "jest" : {"preset" : "react-native"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "private": {"type": "boolean"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}, "test": {"type": "string"}}, "required": ["start", "test"]}, "dependencies": {"type": "object", "properties": {"react": {"type": "string"}, "react-native": {"type": "string"}, "react-navigation": {"type": "string"}, "history": {"type": "string"}, "lodash": {"type": "string"}, "moment": {"type": "string"}, "react-native-image-picker": {"type": "string"}, "react-redux": {"type": "string"}, "redux": {"type": "string"}, "redux-logger": {"type": "string"}, "redux-persist": {"type": "string"}, "redux-thunk": {"type": "string"}, "react-native-linear-gradient": {"type": "string"}}, "required": ["react", "react-native", "react-navigation", "history", "lodash", "moment", "react-native-image-picker", "react-redux", "redux", "redux-logger", "redux-persist", "redux-thunk", "react-native-linear-gradient"]}, "devDependencies": {"type": "object", "properties": {"babel-jest": {"type": "string"}, "babel-preset-react-native": {"type": "string"}, "jest": {"type": "string"}, "react-test-renderer": {"type": "string"}}, "required": ["babel-jest", "babel-preset-react-native", "jest", "react-test-renderer"]}, "jest": {"type": "object", "properties": {"preset": {"type": "string"}}, "required": ["preset"]}}, "required": ["name", "version", "private", "scripts", "dependencies", "devDependencies", "jest"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "array", "items": {"type": "object", "properties": {"postal_code": {"type": "string"}, "place_name": {"type": "string"}, "place_type": {"type": "string"}, "county": {"type": "string"}, "state": {"type": "string"}, "city": {"type": "string"}}, "required": ["postal_code", "place_name", "place_type", "county", "state", "city"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"postal_code" : "99189", "place_name" : "San Jos\u00e9 de Lourdes", "place_type" : "Rancher\u00eda", "county" : "Fresnillo", "state" : "Zacatecas", "city" : ""}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"postal_code": {"type": "string"}, "place_name": {"type": "string"}, "place_type": {"type": "string"}, "county": {"type": "string"}, "state": {"type": "string"}, "city": {"type": "string"}}, "required": ["postal_code", "place_name", "place_type", "county", "state", "city"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "description_zh-cn": {"type": "string"}, "type": {"type": "string"}, "root": {"type": "string"}, "repository": {"type": "object", "properties": {"github": {"type": "string"}, "gitee": {"type": "string"}}, "required": ["github", "gitee"]}}, "required": ["name", "description", "description_zh-cn", "type", "root", "repository"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "Interactive", "description" : "Examples of variant frontend-backend interaction techniques", "description_zh-cn" : "\u591a\u79cd\u524d\u540e\u7aef\u4ea4\u4e92\u6280\u672f\u7684\u793a\u4f8b EdgerOS APP", "type" : "demo", "root" : "/interactive", "repository" : {"github" : "https://github.com/edgeros/app-demo-interactive.git", "gitee" : "https://gitee.com/edgeros/app-demo-interactive.git"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "description_zh-cn": {"type": "string"}, "type": {"type": "string"}, "root": {"type": "string"}, "repository": {"type": "object", "properties": {"github": {"type": "string"}, "gitee": {"type": "string"}}, "required": ["github", "gitee"]}}, "required": ["name", "description", "description_zh-cn", "type", "root", "repository"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"$schema": {"type": "string"}, "name": {"type": "string"}, "version-string": {"type": "string"}, "dependencies": {"type": "array", "items": {"type": "string"}}}, "required": ["$schema", "name", "version-string", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"$schema" : "https://raw.githubusercontent.com/microsoft/vcpkg/master/scripts/vcpkg.schema.json", "name" : "arcdps-killproof-me-plugin", "version-string" : "2.6.4", "dependencies" : ["cpr"]}
json_instruct
{"type": "object", "properties": {"$schema": {"type": "string"}, "name": {"type": "string"}, "version-string": {"type": "string"}, "dependencies": {"type": "array", "items": {"type": "string"}}}, "required": ["$schema", "name", "version-string", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"parameters": {"type": "object", "properties": {"api-version": {"type": "string"}, "subscriptionId": {"type": "string"}}, "required": ["api-version", "subscriptionId"]}, "responses": {"type": "object", "properties": {"200": {"type": "object", "properties": {"body": {"type": "object", "properties": {"value": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "id": {"type": "string"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {}, "required": []}, "systemData": {"type": "object", "properties": {"createdBy": {"type": "string"}, "createdByType": {"type": "string"}, "createdAt": {"type": "string"}, "lastModifiedBy": {"type": "string"}, "lastModifiedByType": {"type": "string"}, "lastModifiedAt": {"type": "string"}}, "required": ["createdBy", "createdByType", "createdAt", "lastModifiedBy", "lastModifiedByType", "lastModifiedAt"]}}, "required": ["name", "id", "type", "properties", "systemData"]}}}, "required": ["value"]}}, "required": ["body"]}}, "required": ["200"]}}, "required": ["parameters", "responses"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"parameters" : {"api-version" : "2021-02-01-preview", "subscriptionId" : "20ff7fc3-e762-44dd-bd96-b71116dcdc23"}, "responses" : {"200" : {"body" : {"value" : [{"name" : "mySensor", "id" : "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/providers/Microsoft.IoTSecurity/sensors/mySensor", "type" : "Microsoft.IoTSecurity/onPremiseSensors", "properties" : {}, "systemData" : {"createdBy" : "string", "createdByType" : "User", "createdAt" : "2020-04-27T21:53:29.0928001Z", "lastModifiedBy" : "string", "lastModifiedByType" : "User", "lastModifiedAt" : "2020-04-27T21:53:29.0928001Z"}}, {"name" : "otherSensor", "id" : "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/providers/Microsoft.IoTSecurity/sensors/otherSensor", "type" : "Microsoft.IoTSecurity/onPremiseSensors", "properties" : {}, "systemData" : {"createdBy" : "string", "createdByType" : "User", "createdAt" : "2020-04-27T21:53:29.0928001Z", "lastModifiedBy" : "string", "lastModifiedByType" : "User", "lastModifiedAt" : "2020-04-27T21:53:29.0928001Z"}}]}}}}
json_instruct
{"type": "object", "properties": {"parameters": {"type": "object", "properties": {"api-version": {"type": "string"}, "subscriptionId": {"type": "string"}}, "required": ["api-version", "subscriptionId"]}, "responses": {"type": "object", "properties": {"200": {"type": "object", "properties": {"body": {"type": "object", "properties": {"value": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "id": {"type": "string"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {}, "required": []}, "systemData": {"type": "object", "properties": {"createdBy": {"type": "string"}, "createdByType": {"type": "string"}, "createdAt": {"type": "string"}, "lastModifiedBy": {"type": "string"}, "lastModifiedByType": {"type": "string"}, "lastModifiedAt": {"type": "string"}}, "required": ["createdBy", "createdByType", "createdAt", "lastModifiedBy", "lastModifiedByType", "lastModifiedAt"]}}, "required": ["name", "id", "type", "properties", "systemData"]}}}, "required": ["value"]}}, "required": ["body"]}}, "required": ["200"]}}, "required": ["parameters", "responses"], "$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"}, "main": {"type": "string"}, "repository": {"type": "string"}, "author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"@babel/core": {"type": "string"}, "@babel/preset-env": {"type": "string"}, "@babel/traverse": {"type": "string"}, "fs": {"type": "string"}}, "required": ["@babel/core", "@babel/preset-env", "@babel/traverse", "fs"]}, "scripts": {"type": "object", "properties": {"nodestart": {"type": "string"}}, "required": ["nodestart"]}}, "required": ["name", "version", "main", "repository", "author", "license", "dependencies", "scripts"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "my-webpack", "version" : "1.0.0", "main" : "index.js", "repository" : "https://github.com/spademan/my-webpack.git", "author" : "\u9ec4\u6c38 <huangyong@kuaizi.co>", "license" : "MIT", "dependencies" : {"@babel/core" : "^7.12.10", "@babel/preset-env" : "^7.12.11", "@babel/traverse" : "^7.12.10", "fs" : "^0.0.1-security"}, "scripts" : {"nodestart" : "node myWebpack.js"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "main": {"type": "string"}, "repository": {"type": "string"}, "author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"@babel/core": {"type": "string"}, "@babel/preset-env": {"type": "string"}, "@babel/traverse": {"type": "string"}, "fs": {"type": "string"}}, "required": ["@babel/core", "@babel/preset-env", "@babel/traverse", "fs"]}, "scripts": {"type": "object", "properties": {"nodestart": {"type": "string"}}, "required": ["nodestart"]}}, "required": ["name", "version", "main", "repository", "author", "license", "dependencies", "scripts"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"version": {"type": "number"}, "people": {"type": "array", "items": {"type": "object", "properties": {"pose_keypoints_2d": {"type": "array", "items": {"type": "number"}}, "face_keypoints_2d": {"type": "array", "items": {}}, "hand_left_keypoints_2d": {"type": "array", "items": {}}, "hand_right_keypoints_2d": {"type": "array", "items": {}}, "pose_keypoints_3d": {"type": "array", "items": {}}, "face_keypoints_3d": {"type": "array", "items": {}}, "hand_left_keypoints_3d": {"type": "array", "items": {}}, "hand_right_keypoints_3d": {"type": "array", "items": {}}}, "required": ["pose_keypoints_2d", "face_keypoints_2d", "hand_left_keypoints_2d", "hand_right_keypoints_2d", "pose_keypoints_3d", "face_keypoints_3d", "hand_left_keypoints_3d", "hand_right_keypoints_3d"]}}}, "required": ["version", "people"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"version" : 1.2, "people" : [{"pose_keypoints_2d" : [504.61, 139.095, 0.894601, 516.427, 251.076, 0.852489, 430.949, 251.098, 0.825645, 318.947, 316.032, 0.879021, 186.222, 318.819, 0.835499, 604.873, 248.252, 0.810814, 734.602, 295.335, 0.863549, 861.237, 292.338, 0.899941, 528.212, 534.12, 0.70015, 475.191, 537.085, 0.641987, 492.828, 755.166, 0.701068, 507.634, 952.694, 0.79305, 581.218, 531.144, 0.686208, 581.329, 743.355, 0.726038, 578.374, 952.827, 0.77011, 483.933, 130.112, 0.964036, 525.182, 127.243, 0.916047, 463.325, 153.771, 0.885231, 551.741, 150.765, 0.955009, 587.197, 1002.83, 0.653946, 613.726, 996.976, 0.689211, 560.645, 973.338, 0.527548, 492.857, 1002.82, 0.765937, 478.123, 996.979, 0.824256, 528.127, 967.498, 0.621874], "face_keypoints_2d" : [], "hand_left_keypoints_2d" : [], "hand_right_keypoints_2d" : [], "pose_keypoints_3d" : [], "face_keypoints_3d" : [], "hand_left_keypoints_3d" : [], "hand_right_keypoints_3d" : []}]}
json_instruct
{"type": "object", "properties": {"version": {"type": "number"}, "people": {"type": "array", "items": {"type": "object", "properties": {"pose_keypoints_2d": {"type": "array", "items": {"type": "number"}}, "face_keypoints_2d": {"type": "array", "items": {}}, "hand_left_keypoints_2d": {"type": "array", "items": {}}, "hand_right_keypoints_2d": {"type": "array", "items": {}}, "pose_keypoints_3d": {"type": "array", "items": {}}, "face_keypoints_3d": {"type": "array", "items": {}}, "hand_left_keypoints_3d": {"type": "array", "items": {}}, "hand_right_keypoints_3d": {"type": "array", "items": {}}}, "required": ["pose_keypoints_2d", "face_keypoints_2d", "hand_left_keypoints_2d", "hand_right_keypoints_2d", "pose_keypoints_3d", "face_keypoints_3d", "hand_left_keypoints_3d", "hand_right_keypoints_3d"]}}}, "required": ["version", "people"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"id": {"type": "integer"}, "node": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "nameCN": {"type": "string"}, "image": {"type": "string"}, "date": {"type": "string"}}, "required": ["id", "name", "nameCN", "image", "date"]}}, "relate": {"type": "array", "items": {"type": "object", "properties": {"relate": {"type": "string"}, "src": {"type": "integer"}, "dst": {"type": "integer"}}, "required": ["relate", "src", "dst"]}}}, "required": ["id", "node", "relate"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : 38537, "node" : [{"id" : 38537, "name" : "\u62e1\u6563\u6027\u30df\u30ea\u30aa\u30f3\u30a2\u30fc\u30b5\u30fc", "nameCN" : "\u6269\u6563\u6027\u767e\u4e07\u4e9a\u745f\u738b", "image" : "//lain.bgm.tv/pic/cover/m/66/73/38537_JJhSj.jpg", "date" : "2012-04-09"}, {"id" : 101374, "name" : "\u4e56\u96e2\u6027\u30df\u30ea\u30aa\u30f3\u30a2\u30fc\u30b5\u30fc", "nameCN" : "\u4e56\u79bb\u6027\u767e\u4e07\u4e9a\u745f\u738b", "image" : "//lain.bgm.tv/pic/cover/m/26/7b/101374_1bBy4.jpg", "date" : "2014-11-19"}], "relate" : [{"relate" : "\u76f8\u540c\u4e16\u754c\u89c2", "src" : 38537, "dst" : 101374}, {"relate" : "\u76f8\u540c\u4e16\u754c\u89c2", "src" : 101374, "dst" : 38537}]}
json_instruct
{"type": "object", "properties": {"id": {"type": "integer"}, "node": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "nameCN": {"type": "string"}, "image": {"type": "string"}, "date": {"type": "string"}}, "required": ["id", "name", "nameCN", "image", "date"]}}, "relate": {"type": "array", "items": {"type": "object", "properties": {"relate": {"type": "string"}, "src": {"type": "integer"}, "dst": {"type": "integer"}}, "required": ["relate", "src", "dst"]}}}, "required": ["id", "node", "relate"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"cam/image_array": {"type": "string"}, "user/throttle": {"type": "number"}, "user/angle": {"type": "number"}, "user/mode": {"type": "string"}}, "required": ["cam/image_array", "user/throttle", "user/angle", "user/mode"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"cam/image_array" : "4501_cam-image_array_.jpg", "user/throttle" : 0.30000001192092896, "user/angle" : 0.5172441005706787, "user/mode" : "user"}
json_instruct
{"type": "object", "properties": {"cam/image_array": {"type": "string"}, "user/throttle": {"type": "number"}, "user/angle": {"type": "number"}, "user/mode": {"type": "string"}}, "required": ["cam/image_array", "user/throttle", "user/angle", "user/mode"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"word" : "anomalism", "definition" : "An anomaly; a deviation from rule. Hooker."}
json_instruct
{"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"@path": {"type": "string"}, "@parent": {"type": "string"}}, "required": ["@path", "@parent"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"@path" : "./hi/info", "@parent" : "./info"}
json_instruct
{"type": "object", "properties": {"@path": {"type": "string"}, "@parent": {"type": "string"}}, "required": ["@path", "@parent"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"id": {"type": "integer"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"src:alt_label": {"type": "string"}, "src:geom": {"type": "string"}, "wof:geomhash": {"type": "string"}, "wof:id": {"type": "integer"}, "wof:repo": {"type": "string"}}, "required": ["src:alt_label", "src:geom", "wof:geomhash", "wof:id", "wof:repo"]}, "bbox": {"type": "array", "items": {"type": "number"}}, "geometry": {"type": "object", "properties": {"coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}, "type": {"type": "string"}}, "required": ["coordinates", "type"]}}, "required": ["id", "type", "properties", "bbox", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : 404393889, "type" : "Feature", "properties" : {"src:alt_label" : "quattroshapes", "src:geom" : "quattroshapes", "wof:geomhash" : "e0bca7a072e07ecd58eee221df514249", "wof:id" : 404393889, "wof:repo" : "whosonfirst-data-admin-fr"}, "bbox" : [-0.56374848455512, 44.10132485570147, -0.45016001270252, 44.17654083877273], "geometry" : {"coordinates" : [[[-0.4698081849076, 44.10132485570147], [-0.50250456113934, 44.10868061585422], [-0.52440654300377, 44.11646487587264], [-0.53415013554333, 44.12413337035764], [-0.5484490929074, 44.13840191852615], [-0.54998420894201, 44.14895664095053], [-0.56374848455512, 44.17548550608944], [-0.55427499343518, 44.17654083877273], [-0.54165195487587, 44.17206597568023], [-0.45600777089152, 44.17294309480712], [-0.45016001270252, 44.14550476756084], [-0.46049616572012, 44.12231346194124], [-0.4698081849076, 44.10132485570147]]], "type" : "Polygon"}}
json_instruct
{"type": "object", "properties": {"id": {"type": "integer"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"src:alt_label": {"type": "string"}, "src:geom": {"type": "string"}, "wof:geomhash": {"type": "string"}, "wof:id": {"type": "integer"}, "wof:repo": {"type": "string"}}, "required": ["src:alt_label", "src:geom", "wof:geomhash", "wof:id", "wof:repo"]}, "bbox": {"type": "array", "items": {"type": "number"}}, "geometry": {"type": "object", "properties": {"coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}, "type": {"type": "string"}}, "required": ["coordinates", "type"]}}, "required": ["id", "type", "properties", "bbox", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}, "dev": {"type": "string"}, "test": {"type": "string"}, "dev:test": {"type": "string"}, "dev:test:coverage": {"type": "string"}, "lint": {"type": "string"}}, "required": ["start", "dev", "test", "dev:test", "dev:test:coverage", "lint"]}, "keywords": {"type": "array", "items": {}}, "author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"bcrypt": {"type": "string"}, "cors": {"type": "string"}, "dotenv": {"type": "string"}, "eslint-config-trybe-backend": {"type": "string"}, "express": {"type": "string"}, "jsonwebtoken": {"type": "string"}, "mongodb": {"type": "string"}}, "required": ["bcrypt", "cors", "dotenv", "eslint-config-trybe-backend", "express", "jsonwebtoken", "mongodb"]}, "devDependencies": {"type": "object", "properties": {"chai": {"type": "string"}, "chai-http": {"type": "string"}, "mocha": {"type": "string"}, "mongodb-memory-server": {"type": "string"}, "nodemon": {"type": "string"}, "nyc": {"type": "string"}, "sinon": {"type": "string"}}, "required": ["chai", "chai-http", "mocha", "mongodb-memory-server", "nodemon", "nyc", "sinon"]}}, "required": ["name", "version", "description", "main", "scripts", "keywords", "author", "license", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "backend", "version" : "1.0.0", "description" : "", "main" : "./api", "scripts" : {"start" : "node .", "dev" : "nodemon .", "test" : "echo \"Error: no test specified\" && exit 1", "dev:test" : "mocha ./api/tests/**/*$NAME*.{test,spec}.js --exit", "dev:test:coverage" : "nyc --all npm run dev:test", "lint" : "eslint --no-inline-config --no-error-on-unmatched-pattern -c .eslintrc.json . --ext .js, .jsx"}, "keywords" : [], "author" : "", "license" : "ISC", "dependencies" : {"bcrypt" : "^5.0.1", "cors" : "^2.8.5", "dotenv" : "^10.0.0", "eslint-config-trybe-backend" : "^1.0.4", "express" : "^4.17.1", "jsonwebtoken" : "^8.5.1", "mongodb" : "^4.2.1"}, "devDependencies" : {"chai" : "^4.3.4", "chai-http" : "^4.3.0", "mocha" : "^9.1.3", "mongodb-memory-server" : "^6.9.6", "nodemon" : "^2.0.15", "nyc" : "^15.1.0", "sinon" : "^12.0.1"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}, "dev": {"type": "string"}, "test": {"type": "string"}, "dev:test": {"type": "string"}, "dev:test:coverage": {"type": "string"}, "lint": {"type": "string"}}, "required": ["start", "dev", "test", "dev:test", "dev:test:coverage", "lint"]}, "keywords": {"type": "array", "items": {}}, "author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"bcrypt": {"type": "string"}, "cors": {"type": "string"}, "dotenv": {"type": "string"}, "eslint-config-trybe-backend": {"type": "string"}, "express": {"type": "string"}, "jsonwebtoken": {"type": "string"}, "mongodb": {"type": "string"}}, "required": ["bcrypt", "cors", "dotenv", "eslint-config-trybe-backend", "express", "jsonwebtoken", "mongodb"]}, "devDependencies": {"type": "object", "properties": {"chai": {"type": "string"}, "chai-http": {"type": "string"}, "mocha": {"type": "string"}, "mongodb-memory-server": {"type": "string"}, "nodemon": {"type": "string"}, "nyc": {"type": "string"}, "sinon": {"type": "string"}}, "required": ["chai", "chai-http", "mocha", "mongodb-memory-server", "nodemon", "nyc", "sinon"]}}, "required": ["name", "version", "description", "main", "scripts", "keywords", "author", "license", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"version": {"type": "string"}, "date": {"type": "string"}, "changeLogEntryFileNames": {"type": "array", "items": {"type": "string"}}, "genericProperties": {"type": "object", "properties": {}, "required": []}}, "required": ["version", "date", "changeLogEntryFileNames", "genericProperties"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"version" : "1.4.37", "date" : "16.11.2017", "changeLogEntryFileNames" : ["12198.SUP-5142.bugfix"], "genericProperties" : {}}
json_instruct
{"type": "object", "properties": {"version": {"type": "string"}, "date": {"type": "string"}, "changeLogEntryFileNames": {"type": "array", "items": {"type": "string"}}, "genericProperties": {"type": "object", "properties": {}, "required": []}}, "required": ["version", "date", "changeLogEntryFileNames", "genericProperties"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"results": {"type": "object", "properties": {"id": {"type": "string"}, "channel": {"type": "string"}, "connector": {"type": "string"}, "chatId": {"type": "string"}, "fallbacked": {"type": "boolean"}, "fallbackConfig": {"type": "object", "properties": {}, "required": []}, "participant": {"type": "array", "items": {}}, "messages": {"type": "array", "items": {}}}, "required": ["id", "channel", "connector", "chatId", "fallbacked", "fallbackConfig", "participant", "messages"]}, "message": {"type": "string"}}, "required": ["results", "message"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"results" : {"id" : "f90ec53f-2265-4210-96f4-2c31d784e018", "channel" : "c11ea08e-3e10-4838-9322-6ad2062297c4", "connector" : "90f862a3-6ec3-4ea1-836b-4b34d1d0aef2", "chatId" : "f90ec53f-2265-4210-96f4-2c31d784e018", "fallbacked" : false, "fallbackConfig" : {}, "participant" : [], "messages" : []}, "message" : "Conversation successfully created"}
json_instruct
{"type": "object", "properties": {"results": {"type": "object", "properties": {"id": {"type": "string"}, "channel": {"type": "string"}, "connector": {"type": "string"}, "chatId": {"type": "string"}, "fallbacked": {"type": "boolean"}, "fallbackConfig": {"type": "object", "properties": {}, "required": []}, "participant": {"type": "array", "items": {}}, "messages": {"type": "array", "items": {}}}, "required": ["id", "channel", "connector", "chatId", "fallbacked", "fallbackConfig", "participant", "messages"]}, "message": {"type": "string"}}, "required": ["results", "message"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"script-src": {"type": "array", "items": {"type": "string"}}}, "required": ["script-src"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"script-src" : ["'self'", "www.example.com"]}
json_instruct
{"type": "object", "properties": {"script-src": {"type": "array", "items": {"type": "string"}}}, "required": ["script-src"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"id": {"type": "integer"}, "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" : 1125931549, "type" : "Feature", "properties" : {"src:alt_label" : "qs_pg", "src:geom" : "qs_pg", "wof:geomhash" : "7b1d171aa5b25ec63338e7788267d1fb", "wof:id" : 1125931549, "wof:repo" : "whosonfirst-data-admin-fr"}, "bbox" : [1.67541, 48.95791, 1.67541, 48.95791], "geometry" : {"coordinates" : [1.67541, 48.95791], "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 an example JSON object that satisfies 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" : "import createSvgIcon from './utils/createSvgIcon';\nimport { jsx as _jsx } from \"react/jsx-runtime\";\nexport default createSvgIcon( /*#__PURE__*/_jsx(\"path\", {\n d: \"M16 7h1.79c.45 0 .67-.54.35-.85l-2.79-2.79c-.2-.2-.51-.2-.71 0l-2.79 2.79c-.31.31-.09.85.36.85H14v4.17l2 2V7zM2.1 3.51c-.39.39-.39 1.02 0 1.41l5.9 5.9V17H6.21c-.45 0-.67.54-.35.85l2.79 2.78c.2.19.51.19.71 0l2.79-2.79c.32-.32.09-.85-.35-.85h-1.79v-4.18l9.07 9.07c.39.39 1.02.39 1.41 0 .39-.39.39-1.02 0-1.41L3.51 3.51a.9959.9959 0 0 0-1.41 0z\"\n}), 'MobiledataOffRounded');", "map" : {"version" : 3, "sources" : ["/home/foxy/Desktop/Web-development/keeper-app/node_modules/@mui/icons-material/esm/MobiledataOffRounded.js"], "names" : ["createSvgIcon", "jsx", "_jsx", "d"], "mappings" : "AAAA,OAAOA,aAAP,MAA0B,uBAA1B;AACA,SAASC,GAAG,IAAIC,IAAhB,QAA4B,mBAA5B;AACA,eAAeF,aAAa,EAAE,aAAaE,IAAI,CAAC,MAAD,EAAS;AACtDC,EAAAA,CAAC,EAAE;AADmD,CAAT,CAAnB,EAExB,sBAFwB,CAA5B", "sourcesContent" : ["import createSvgIcon from './utils/createSvgIcon';\nimport { jsx as _jsx } from \"react/jsx-runtime\";\nexport default createSvgIcon( /*#__PURE__*/_jsx(\"path\", {\n d: \"M16 7h1.79c.45 0 .67-.54.35-.85l-2.79-2.79c-.2-.2-.51-.2-.71 0l-2.79 2.79c-.31.31-.09.85.36.85H14v4.17l2 2V7zM2.1 3.51c-.39.39-.39 1.02 0 1.41l5.9 5.9V17H6.21c-.45 0-.67.54-.35.85l2.79 2.78c.2.19.51.19.71 0l2.79-2.79c.32-.32.09-.85-.35-.85h-1.79v-4.18l9.07 9.07c.39.39 1.02.39 1.41 0 .39-.39.39-1.02 0-1.41L3.51 3.51a.9959.9959 0 0 0-1.41 0z\"\n}), 'MobiledataOffRounded');"]}, "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#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"watchingActivity": {"type": "string"}, "replay": {"type": "object", "properties": {"matchDuration": {"type": "string"}, "gameVersion": {"type": "string"}, "noMapPreviewImageAvailable": {"type": "string"}, "requestCustomMapSupportLinkTitle": {"type": "string"}, "chat": {"type": "object", "properties": {"loadAllByReacting": {"type": "string"}, "title": {"type": "string"}, "noChatAvailable": {"type": "string"}, "partial": {"type": "string"}, "jumpToFullChatLinkText": {"type": "string"}}, "required": ["loadAllByReacting", "title", "noChatAvailable", "partial", "jumpToFullChatLinkText"]}, "player": {"type": "object", "properties": {"noPlayersAvailable": {"type": "string"}, "noCommandersAvailable": {"type": "string"}, "team": {"type": "string"}, "commander": {"type": "string"}}, "required": ["noPlayersAvailable", "noCommandersAvailable", "team", "commander"]}, "parseError": {"type": "string"}}, "required": ["matchDuration", "gameVersion", "noMapPreviewImageAvailable", "requestCustomMapSupportLinkTitle", "chat", "player", "parseError"]}, "time": {"type": "object", "properties": {"hour": {"type": "string"}, "hours": {"type": "string"}, "minute": {"type": "string"}, "minutes": {"type": "string"}, "second": {"type": "string"}, "seconds": {"type": "string"}}, "required": ["hour", "hours", "minute", "minutes", "second", "seconds"]}, "notAvailable": {"type": "string"}, "error": {"type": "string"}, "errors": {"type": "object", "properties": {"missingPermissions": {"type": "string"}}, "required": ["missingPermissions"]}}, "required": ["watchingActivity", "replay", "time", "notAvailable", "error", "errors"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"watchingActivity" : "Replays", "replay" : {"matchDuration" : "Dur\u00e9e de la partie", "gameVersion" : "Version du jeu", "noMapPreviewImageAvailable" : "L'image de pr\u00e9visualisation de la carte n'est pas disponible.", "requestCustomMapSupportLinkTitle" : "Request support for this map", "chat" : {"loadAllByReacting" : "{@user} R\u00e9agis avec {emoji} pour charger tous les messages du chat.", "title" : "Chat", "noChatAvailable" : "Aucun chat.", "partial" : "Chat ({count}/{total})", "jumpToFullChatLinkText" : "Voir"}, "player" : {"noPlayersAvailable" : "Aucun joueurs disponibles.", "noCommandersAvailable" : "Pas de commandants disponibles.", "team" : "\u00c9quipe {teamNumber}", "commander" : "Commandant"}, "parseError" : "Une erreur s'est produite lors de l'analyse des donn\u00e9es du ralenti. Des informations pourraient manquer ou \u00eatre incompl\u00e8tes, comme la dur\u00e9e de la partie."}, "time" : {"hour" : "heure", "hours" : "heures", "minute" : "minute", "minutes" : "minutes", "second" : "seconde", "seconds" : "secondes"}, "notAvailable" : "ND", "error" : "Erreur", "errors" : {"missingPermissions" : "{@bot} n'a pas les permissions n\u00e9cessaires pour acc\u00e9der au salon {channel} de {server}. Si vous pensez que c'est une erreur, merci d'avertir l'administrateur du serveur."}}
json_instruct
{"type": "object", "properties": {"watchingActivity": {"type": "string"}, "replay": {"type": "object", "properties": {"matchDuration": {"type": "string"}, "gameVersion": {"type": "string"}, "noMapPreviewImageAvailable": {"type": "string"}, "requestCustomMapSupportLinkTitle": {"type": "string"}, "chat": {"type": "object", "properties": {"loadAllByReacting": {"type": "string"}, "title": {"type": "string"}, "noChatAvailable": {"type": "string"}, "partial": {"type": "string"}, "jumpToFullChatLinkText": {"type": "string"}}, "required": ["loadAllByReacting", "title", "noChatAvailable", "partial", "jumpToFullChatLinkText"]}, "player": {"type": "object", "properties": {"noPlayersAvailable": {"type": "string"}, "noCommandersAvailable": {"type": "string"}, "team": {"type": "string"}, "commander": {"type": "string"}}, "required": ["noPlayersAvailable", "noCommandersAvailable", "team", "commander"]}, "parseError": {"type": "string"}}, "required": ["matchDuration", "gameVersion", "noMapPreviewImageAvailable", "requestCustomMapSupportLinkTitle", "chat", "player", "parseError"]}, "time": {"type": "object", "properties": {"hour": {"type": "string"}, "hours": {"type": "string"}, "minute": {"type": "string"}, "minutes": {"type": "string"}, "second": {"type": "string"}, "seconds": {"type": "string"}}, "required": ["hour", "hours", "minute", "minutes", "second", "seconds"]}, "notAvailable": {"type": "string"}, "error": {"type": "string"}, "errors": {"type": "object", "properties": {"missingPermissions": {"type": "string"}}, "required": ["missingPermissions"]}}, "required": ["watchingActivity", "replay", "time", "notAvailable", "error", "errors"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"parent": {"type": "string"}}, "required": ["parent"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"parent" : "astromine:block/basic_electric_furnace"}
json_instruct
{"type": "object", "properties": {"parent": {"type": "string"}}, "required": ["parent"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "authors": {"type": "array", "items": {"type": "string"}}, "license": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "homepage": {"type": "string"}, "private": {"type": "boolean"}, "ignore": {"type": "array", "items": {"type": "string"}}, "dependencies": {"type": "object", "properties": {"jquery": {"type": "string"}, "bootstrap": {"type": "string"}, "google-code-prettify": {"type": "string"}, "font-awesome": {"type": "string"}, "clean-blog": {"type": "string"}, "code-prettify": {"type": "string"}}, "required": ["jquery", "bootstrap", "google-code-prettify", "font-awesome", "clean-blog", "code-prettify"]}}, "required": ["name", "description", "main", "authors", "license", "keywords", "homepage", "private", "ignore", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "miao-kiyama", "description" : "mpBlog, code by nodejs", "main" : "server.js", "authors" : ["jjz"], "license" : "MIT", "keywords" : ["jjz"], "homepage" : "", "private" : true, "ignore" : ["**/.*", "node_modules", "bower_components", "test", "tests"], "dependencies" : {"jquery" : "^3.1.0", "bootstrap" : "^3.3.6", "google-code-prettify" : "^1.0.4", "font-awesome" : "^4.6.3", "clean-blog" : "^1.0.1", "code-prettify" : "*"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "authors": {"type": "array", "items": {"type": "string"}}, "license": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "homepage": {"type": "string"}, "private": {"type": "boolean"}, "ignore": {"type": "array", "items": {"type": "string"}}, "dependencies": {"type": "object", "properties": {"jquery": {"type": "string"}, "bootstrap": {"type": "string"}, "google-code-prettify": {"type": "string"}, "font-awesome": {"type": "string"}, "clean-blog": {"type": "string"}, "code-prettify": {"type": "string"}}, "required": ["jquery", "bootstrap", "google-code-prettify", "font-awesome", "clean-blog", "code-prettify"]}}, "required": ["name", "description", "main", "authors", "license", "keywords", "homepage", "private", "ignore", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"type": {"type": "string"}, "crs": {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"]}}, "required": ["type", "properties"]}, "features": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"Name": {"type": "string"}, "Description": {"type": "string"}}, "required": ["Name", "Description"]}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}, "required": ["type", "coordinates"]}}, "required": ["type", "properties", "geometry"]}}}, "required": ["type", "crs", "features"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"type" : "FeatureCollection", "crs" : {"type" : "name", "properties" : {"name" : "urn:ogc:def:crs:OGC:1.3:CRS84"}}, "features" : [{"type" : "Feature", "properties" : {"Name" : "DORES DE GUANH\u00c3ES", "Description" : "DORES DE GUANH\u00c3ES / MG"}, "geometry" : {"type" : "LineString", "coordinates" : [[-42.80038400042122, -19.096108997232363], [-42.7473689999793, -19.149990997186702], [-42.82295699996553, -19.159196997243555], [-42.9035769999785, -19.10961999706518], [-42.94684399965081, -19.151712997456798], [-43.042678999835914, -19.068133996786457], [-43.07834100043675, -19.059989997140633], [-43.08352899956361, -19.024445997484747], [-43.043669999670726, -19.034491996708255], [-42.985060000218766, -18.964138997117004], [-42.98459600040508, -18.93012999720156], [-42.944368999729534, -18.929031996929098], [-42.88173700006246, -19.010111997470688], [-42.864425000313474, -19.067457997088866], [-42.80038400042122, -19.096108997232363]]}}]}
json_instruct
{"type": "object", "properties": {"type": {"type": "string"}, "crs": {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"]}}, "required": ["type", "properties"]}, "features": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"Name": {"type": "string"}, "Description": {"type": "string"}}, "required": ["Name", "Description"]}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}, "required": ["type", "coordinates"]}}, "required": ["type", "properties", "geometry"]}}}, "required": ["type", "crs", "features"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"id": {"type": "string"}, "tms:id": {"type": "string"}, "accession_number": {"type": "string"}, "title": {"type": "string"}, "url": {"type": "string"}, "department_id": {"type": "string"}, "period_id": {"type": "null"}, "media_id": {"type": "string"}, "type_id": {"type": "string"}, "date": {"type": "string"}, "year_start": {"type": "string"}, "year_end": {"type": "string"}, "year_acquired": {"type": "string"}, "decade": {"type": "string"}, "woe:country": {"type": "null"}, "medium": {"type": "string"}, "markings": {"type": "null"}, "signed": {"type": "null"}, "inscribed": {"type": "null"}, "provenance": {"type": "null"}, "dimensions": {"type": "string"}, "creditline": {"type": "string"}, "description": {"type": "string"}, "justification": {"type": "null"}, "type": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "name"]}, "images": {"type": "array", "items": {}}, "participants": {"type": "array", "items": {}}, "tombstone": {"type": "object", "properties": {"epitaph": {"type": "string"}}, "required": ["epitaph"]}, "colors": {"type": "array", "items": {}}}, "required": ["id", "tms:id", "accession_number", "title", "url", "department_id", "period_id", "media_id", "type_id", "date", "year_start", "year_end", "year_acquired", "decade", "woe:country", "medium", "markings", "signed", "inscribed", "provenance", "dimensions", "creditline", "description", "justification", "type", "images", "participants", "tombstone", "colors"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : "18643589", "tms:id" : "196661", "accession_number" : "1993-13-2", "title" : "Figure, ca. 1960", "url" : "http://collection.cooperhewitt.org/objects/18643589/", "department_id" : "35347497", "period_id" : null, "media_id" : "35418527", "type_id" : "35237189", "date" : "ca. 1960", "year_start" : "1955", "year_end" : "1965", "year_acquired" : "1993", "decade" : "1950", "woe:country" : null, "medium" : "Porcelain, enamel", "markings" : null, "signed" : null, "inscribed" : null, "provenance" : null, "dimensions" : "4.1 x 3.3 cm (1 5/8 x 1 5/16 in. )", "creditline" : "Gift of Ludmilla Shapiro", "description" : "An orb with a happy face; in an arc above, a rocket inscribed with \"USSR\" (in Russian).", "justification" : null, "type" : {"id" : "35237189", "name" : "Figure"}, "images" : [], "participants" : [], "tombstone" : {"epitaph" : "Figure, ca. 1960.\nca. 1960. Porcelain, enamel. Gift of Ludmilla Shapiro. 1993-13-2."}, "colors" : []}
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "tms:id": {"type": "string"}, "accession_number": {"type": "string"}, "title": {"type": "string"}, "url": {"type": "string"}, "department_id": {"type": "string"}, "period_id": {"type": "null"}, "media_id": {"type": "string"}, "type_id": {"type": "string"}, "date": {"type": "string"}, "year_start": {"type": "string"}, "year_end": {"type": "string"}, "year_acquired": {"type": "string"}, "decade": {"type": "string"}, "woe:country": {"type": "null"}, "medium": {"type": "string"}, "markings": {"type": "null"}, "signed": {"type": "null"}, "inscribed": {"type": "null"}, "provenance": {"type": "null"}, "dimensions": {"type": "string"}, "creditline": {"type": "string"}, "description": {"type": "string"}, "justification": {"type": "null"}, "type": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "name"]}, "images": {"type": "array", "items": {}}, "participants": {"type": "array", "items": {}}, "tombstone": {"type": "object", "properties": {"epitaph": {"type": "string"}}, "required": ["epitaph"]}, "colors": {"type": "array", "items": {}}}, "required": ["id", "tms:id", "accession_number", "title", "url", "department_id", "period_id", "media_id", "type_id", "date", "year_start", "year_end", "year_acquired", "decade", "woe:country", "medium", "markings", "signed", "inscribed", "provenance", "dimensions", "creditline", "description", "justification", "type", "images", "participants", "tombstone", "colors"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"id": {"type": "string"}, "brand_name": {"type": "string"}, "nutrition": {"type": "string"}}, "required": ["id", "brand_name", "nutrition"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : "FOOD_A_ID", "brand_name" : "FOOD_A", "nutrition" : "High Protein"}
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "brand_name": {"type": "string"}, "nutrition": {"type": "string"}}, "required": ["id", "brand_name", "nutrition"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"id": {"type": "integer"}, "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" : 101889205, "type" : "Feature", "properties" : {"src:alt_label" : "quattroshapes_pg", "src:geom" : "quattroshapes_pg", "wof:geomhash" : "f54e99e9076fb741b9fad2d9779114db", "wof:id" : 101889205, "wof:repo" : "whosonfirst-data-admin-fr"}, "bbox" : [6.0506, 47.39696, 6.0506, 47.39696], "geometry" : {"coordinates" : [6.0506, 47.39696], "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#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "main": {"type": "string"}, "license": {"type": "string"}, "scripts": {"type": "object", "properties": {"start:ts:node": {"type": "string"}, "start": {"type": "string"}, "watch": {"type": "string"}, "build": {"type": "string"}, "run:local": {"type": "string"}, "test": {"type": "string"}}, "required": ["start:ts:node", "start", "watch", "build", "run:local", "test"]}, "dependencies": {"type": "object", "properties": {"@types/graphql-upload": {"type": "string"}, "apollo-server-express": {"type": "string"}, "express": {"type": "string"}, "graphql": {"type": "string"}, "graphql-upload": {"type": "string"}, "pg": {"type": "string"}, "reflect-metadata": {"type": "string"}, "type-graphql": {"type": "string"}, "class-validator": {"type": "string"}, "tsconfig-paths-webpack-plugin": {"type": "string"}, "webpack": {"type": "string"}, "webpack-cli": {"type": "string"}, "webpack-merge": {"type": "string"}, "ts-loader": {"type": "string"}}, "required": ["@types/graphql-upload", "apollo-server-express", "express", "graphql", "graphql-upload", "pg", "reflect-metadata", "type-graphql", "class-validator", "tsconfig-paths-webpack-plugin", "webpack", "webpack-cli", "webpack-merge", "ts-loader"]}, "devDependencies": {"type": "object", "properties": {"@types/express": {"type": "string"}, "@types/graphql": {"type": "string"}, "@types/node": {"type": "string"}, "nodemon": {"type": "string"}, "ts-node": {"type": "string"}, "typescript": {"type": "string"}, "npm-run-all": {"type": "string"}}, "required": ["@types/express", "@types/graphql", "@types/node", "nodemon", "ts-node", "typescript", "npm-run-all"]}}, "required": ["name", "version", "main", "license", "scripts", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "type-graphql-series", "version" : "1.0.0", "main" : "dist/index.js", "license" : "MIT", "scripts" : {"start:ts:node" : "nodemon --exec ts-node src/index.ts", "start" : "run-p watch run:local", "watch" : "webpack --config ./webpack.config.js --watch", "build" : "webpack --config ./webpack.config.js", "run:local" : "nodemon ./dist/index.js", "test" : "cd test && ./addProfilePicture.sh"}, "dependencies" : {"@types/graphql-upload" : "^8.0.6", "apollo-server-express" : "^3.1.2", "express" : "^4.17.1", "graphql" : "^15.5.1", "graphql-upload" : "^12.0.0", "pg" : "^8.7.1", "reflect-metadata" : "^0.1.13", "type-graphql" : "^1.1.1", "class-validator" : "^0.13.1", "tsconfig-paths-webpack-plugin" : "^3.5.1", "webpack" : "^4.46.0", "webpack-cli" : "^4.6.0", "webpack-merge" : "^5.7.3", "ts-loader" : "^8.2.0"}, "devDependencies" : {"@types/express" : "^4.17.13", "@types/graphql" : "^14.5.0", "@types/node" : "^16.4.13", "nodemon" : "^2.0.12", "ts-node" : "^10.2.0", "typescript" : "^4.3.5", "npm-run-all" : "^4.1.5"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "main": {"type": "string"}, "license": {"type": "string"}, "scripts": {"type": "object", "properties": {"start:ts:node": {"type": "string"}, "start": {"type": "string"}, "watch": {"type": "string"}, "build": {"type": "string"}, "run:local": {"type": "string"}, "test": {"type": "string"}}, "required": ["start:ts:node", "start", "watch", "build", "run:local", "test"]}, "dependencies": {"type": "object", "properties": {"@types/graphql-upload": {"type": "string"}, "apollo-server-express": {"type": "string"}, "express": {"type": "string"}, "graphql": {"type": "string"}, "graphql-upload": {"type": "string"}, "pg": {"type": "string"}, "reflect-metadata": {"type": "string"}, "type-graphql": {"type": "string"}, "class-validator": {"type": "string"}, "tsconfig-paths-webpack-plugin": {"type": "string"}, "webpack": {"type": "string"}, "webpack-cli": {"type": "string"}, "webpack-merge": {"type": "string"}, "ts-loader": {"type": "string"}}, "required": ["@types/graphql-upload", "apollo-server-express", "express", "graphql", "graphql-upload", "pg", "reflect-metadata", "type-graphql", "class-validator", "tsconfig-paths-webpack-plugin", "webpack", "webpack-cli", "webpack-merge", "ts-loader"]}, "devDependencies": {"type": "object", "properties": {"@types/express": {"type": "string"}, "@types/graphql": {"type": "string"}, "@types/node": {"type": "string"}, "nodemon": {"type": "string"}, "ts-node": {"type": "string"}, "typescript": {"type": "string"}, "npm-run-all": {"type": "string"}}, "required": ["@types/express", "@types/graphql", "@types/node", "nodemon", "ts-node", "typescript", "npm-run-all"]}}, "required": ["name", "version", "main", "license", "scripts", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "description": {"type": "string"}, "user": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "email": {"type": "string"}, "paypal_email": {"type": "null"}, "homepage": {"type": "null"}, "about": {"type": "null"}, "license": {"type": "null"}}, "required": ["id", "name", "email", "paypal_email", "homepage", "about", "license"]}, "updated": {"type": "string"}, "weekly_install_count": {"type": "integer"}, "total_install_count": {"type": "integer"}, "rating": {"type": "null"}, "after_screenshot_name": {"type": "string"}, "obsoleting_style_id": {"type": "null"}, "obsoleting_style_name": {"type": "null"}, "obsolete": {"type": "integer"}, "admin_delete_reason_id": {"type": "null"}, "obsoletion_message": {"type": "null"}, "screenshots": {"type": "null"}, "license": {"type": "null"}, "created": {"type": "string"}, "category": {"type": "string"}, "raw_subcategory": {"type": "string"}, "subcategory": {"type": "string"}, "additional_info": {"type": "string"}, "style_tags": {"type": "array", "items": {}}, "css": {"type": "string"}, "discussions": {"type": "array", "items": {}}, "discussionsCount": {"type": "integer"}, "commentsCount": {"type": "integer"}, "userjs_url": {"type": "string"}, "style_settings": {"type": "array", "items": {}}}, "required": ["id", "name", "description", "user", "updated", "weekly_install_count", "total_install_count", "rating", "after_screenshot_name", "obsoleting_style_id", "obsoleting_style_name", "obsolete", "admin_delete_reason_id", "obsoletion_message", "screenshots", "license", "created", "category", "raw_subcategory", "subcategory", "additional_info", "style_tags", "css", "discussions", "discussionsCount", "commentsCount", "userjs_url", "style_settings"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : 127117, "name" : "amor doce tema:bts jungkook e jimin", "description" : "um tema dos bts eu queria deixar assim por que achei ele muit bonito eai quiz compartilhar esse lindo tema com vcs!!", "user" : {"id" : 318163, "name" : "lyrissa", "email" : "redacted", "paypal_email" : null, "homepage" : null, "about" : null, "license" : null}, "updated" : "2016-04-25T03:37:24.000Z", "weekly_install_count" : 0, "total_install_count" : 606, "rating" : null, "after_screenshot_name" : "https://userstyles.org/style_screenshots/127117_after.png?r=1597305985", "obsoleting_style_id" : null, "obsoleting_style_name" : null, "obsolete" : 0, "admin_delete_reason_id" : null, "obsoletion_message" : null, "screenshots" : null, "license" : null, "created" : "2016-04-25T03:37:24.000Z", "category" : "site", "raw_subcategory" : "amordoce", "subcategory" : "amordoce", "additional_info" : "sites usados:\r\nhttp://pt-br.tinypic.com/\r\nhttps://userstyles.org/styles/new\r\nhttp://www.amordoce.com/", "style_tags" : [], "css" : "@-moz-document domain(\"amordoce.com\") {\r\n#container{\r\nbackground-image : url(http://i63.tinypic.com/2vtbl7k.jpg) !important ;\r\n}\r\n#container.connected #header { background-image : url(http://i65.tinypic.com/1w1g5.png) !important ;\r\n}\r\n.idcard-member { background : url(http://i68.tinypic.com/709dms.jpg) no-repeat !important ;\r\n}\r\n}\r\n\r\n@-moz-document regexp(\"perfil amor doce\") {\r\n.idcard-member { background : url(http://i68.tinypic.com/709dms.jpg) no-repeat !important ;\r\n}\r\n}", "discussions" : [], "discussionsCount" : 0, "commentsCount" : 0, "userjs_url" : "/styles/userjs/127117/amor-doce-tema-bts-jungkook-e-jimin.user.js", "style_settings" : []}
json_instruct
{"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "description": {"type": "string"}, "user": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "email": {"type": "string"}, "paypal_email": {"type": "null"}, "homepage": {"type": "null"}, "about": {"type": "null"}, "license": {"type": "null"}}, "required": ["id", "name", "email", "paypal_email", "homepage", "about", "license"]}, "updated": {"type": "string"}, "weekly_install_count": {"type": "integer"}, "total_install_count": {"type": "integer"}, "rating": {"type": "null"}, "after_screenshot_name": {"type": "string"}, "obsoleting_style_id": {"type": "null"}, "obsoleting_style_name": {"type": "null"}, "obsolete": {"type": "integer"}, "admin_delete_reason_id": {"type": "null"}, "obsoletion_message": {"type": "null"}, "screenshots": {"type": "null"}, "license": {"type": "null"}, "created": {"type": "string"}, "category": {"type": "string"}, "raw_subcategory": {"type": "string"}, "subcategory": {"type": "string"}, "additional_info": {"type": "string"}, "style_tags": {"type": "array", "items": {}}, "css": {"type": "string"}, "discussions": {"type": "array", "items": {}}, "discussionsCount": {"type": "integer"}, "commentsCount": {"type": "integer"}, "userjs_url": {"type": "string"}, "style_settings": {"type": "array", "items": {}}}, "required": ["id", "name", "description", "user", "updated", "weekly_install_count", "total_install_count", "rating", "after_screenshot_name", "obsoleting_style_id", "obsoleting_style_name", "obsolete", "admin_delete_reason_id", "obsoletion_message", "screenshots", "license", "created", "category", "raw_subcategory", "subcategory", "additional_info", "style_tags", "css", "discussions", "discussionsCount", "commentsCount", "userjs_url", "style_settings"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"feedstocks": {"type": "array", "items": {"type": "string"}}}, "required": ["feedstocks"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"feedstocks" : ["types-markupsafe"]}
json_instruct
{"type": "object", "properties": {"feedstocks": {"type": "array", "items": {"type": "string"}}}, "required": ["feedstocks"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"bridge.console.js": {"type": "string"}, "bridge.console.min.js": {"type": "string"}, "bridge.js": {"type": "string"}, "bridge.meta.js": {"type": "string"}, "bridge.meta.min.js": {"type": "string"}, "bridge.min.js": {"type": "string"}, "newtonsoft.json.js": {"type": "string"}, "newtonsoft.json.min.js": {"type": "string"}}, "required": ["bridge.console.js", "bridge.console.min.js", "bridge.js", "bridge.meta.js", "bridge.meta.min.js", "bridge.min.js", "newtonsoft.json.js", "newtonsoft.json.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"bridge.console.js" : "sha512-B47UiHYYSpDFABU4EJUWO90kccrTHzl3AmEFz9q5pOIRkFq6Y/Tt4ec4maiQ2vym0Dzt8yLDroke3IOjYees4Q==", "bridge.console.min.js" : "sha512-vOUCf/bH9l2miaDpGTfYFHeSmuPPr0DCr8pukn7hUCStD5mnB6gNqOtdIA0duaek4Udnj30piBwQnyYLNz2Fgg==", "bridge.js" : "sha512-XbMKqZWeN9HRU0zC+YgMOYeimLkojF3DPaDA2ak/U0gh6Ho6/s5ZXVGxHB4Gnab2xhF40BDkhVd9P8hja+gbUA==", "bridge.meta.js" : "sha512-fCHLTHxRFFVS0IcgF7WjVL4jPNo81+rW7Jr0LAmAV7YOOhw3aW437okDUsLArHzcpiyZmJcJviFGYm3DLGjHrg==", "bridge.meta.min.js" : "sha512-KPLXqt+cDg4Uf0EkIxvacuRLcZqfVzfykMHh4YDJIJYLji4lzZhUQi/pFSla8KisjPtUr79HALyy4ev7HEUp7A==", "bridge.min.js" : "sha512-UuWTH4eSkWm6T0diJ7GJL7zNJIYQy49WyYEOvcks8Cr975jcI9GkzN0r/Y6yrqcdtmz2UNaBKb/JuGGv1m4u+g==", "newtonsoft.json.js" : "sha512-+tfgZMJ6efAllGA3KiZlhK8g+f4MTqos6mALcQ6x8QQLGNdFb+AJ/Os3/CG+6f09wrT2u9pOTF3VqSHAZx8J6A==", "newtonsoft.json.min.js" : "sha512-GtOe+0yVwRJjYWXV/xfctJgzbfoXbH47QfT5kWFP2N8qGwiU9zNteAE4+QOczu8Gu4mxLvJHMyXxQKqMq6OfsA=="}
json_instruct
{"type": "object", "properties": {"bridge.console.js": {"type": "string"}, "bridge.console.min.js": {"type": "string"}, "bridge.js": {"type": "string"}, "bridge.meta.js": {"type": "string"}, "bridge.meta.min.js": {"type": "string"}, "bridge.min.js": {"type": "string"}, "newtonsoft.json.js": {"type": "string"}, "newtonsoft.json.min.js": {"type": "string"}}, "required": ["bridge.console.js", "bridge.console.min.js", "bridge.js", "bridge.meta.js", "bridge.meta.min.js", "bridge.min.js", "newtonsoft.json.js", "newtonsoft.json.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"topic": {"type": "string"}, "category": {"type": "string"}, "attachments": {"type": "array", "items": {}}, "created_by_name": {"type": "string"}, "created_at": {"type": "string"}, "body": {"type": "string"}, "id": {"type": "string"}, "created_by": {"type": "string"}}, "required": ["topic", "category", "attachments", "created_by_name", "created_at", "body", "id", "created_by"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"topic" : "Photon Map: Mac Installation", "category" : "radiance-general", "attachments" : [], "created_by_name" : "George Makrythanasis", "created_at" : "September 29, 2008 at 03:47PM", "body" : "Hi,\n\n\nI would like to ask if anybody managed to run photon mapping in Mac. \nThe only info I found in the forum was from Giulio Antonutto advising \nto download the following:\n\n\nradiance 3.5 binaries and pmap 3.28. The link to download the archives \nis not online anymore so I would like to know if there is any way to \ninstall pmap using the latest radiance binaries in a Mac.\n\n\nCheers,\n\n\nGeorge\n__________________________________________________\n\u00d7\u00f1\u00e7\u00f3\u00e9\u00ec\u00ef\u00f0\u00ef\u00e9\u00e5\u00df\u00f4\u00e5 Yahoo!;\n\u00c2\u00e1\u00f1\u00e5\u00e8\u00de\u00ea\u00e1\u00f4\u00e5 \u00f4\u00e1 \u00e5\u00ed\u00ef\u00f7\u00eb\u00e7\u00f4\u00e9\u00ea\u00dc \u00ec\u00e7\u00ed\u00fd\u00ec\u00e1\u00f4\u00e1 (spam); \u00d4\u00ef Yahoo! Mail \u00e4\u00e9\u00e1\u00e8\u00dd\u00f4\u00e5\u00e9 \u00f4\u00e7\u00ed \u00ea\u00e1\u00eb\u00fd\u00f4\u00e5\u00f1\u00e7 \u00e4\u00f5\u00ed\u00e1\u00f4\u00de \u00f0\u00f1\u00ef\u00f3\u00f4\u00e1\u00f3\u00df\u00e1 \u00ea\u00e1\u00f4\u00dc \u00f4\u00f9\u00ed \u00e5\u00ed\u00ef\u00f7\u00eb\u00e7\u00f4\u00e9\u00ea\u00fe\u00ed \u00ec\u00e7\u00ed\u00f5\u00ec\u00dc\u00f4\u00f9\u00ed \nhttp://mail.yahoo.gr\n___\n<sup>Automatically generated content from [radiance mailing-list](https://radiance-online.org/pipermail/radiance-general/2008-September/005406.html).</sup>", "id" : "radiance-general_005406", "created_by" : "George_Makrythanasis"}
json_instruct
{"type": "object", "properties": {"topic": {"type": "string"}, "category": {"type": "string"}, "attachments": {"type": "array", "items": {}}, "created_by_name": {"type": "string"}, "created_at": {"type": "string"}, "body": {"type": "string"}, "id": {"type": "string"}, "created_by": {"type": "string"}}, "required": ["topic", "category", "attachments", "created_by_name", "created_at", "body", "id", "created_by"], "$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"}, "build": {"type": "string"}, "start": {"type": "string"}}, "required": ["test", "build", "start"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "dependencies": {"type": "object", "properties": {"bootstrap-beta": {"type": "string"}, "jquery": {"type": "string"}, "popper.js": {"type": "string"}}, "required": ["bootstrap-beta", "jquery", "popper.js"]}, "devDependencies": {"type": "object", "properties": {"autoprefixer": {"type": "string"}, "clean-webpack-plugin": {"type": "string"}, "css-loader": {"type": "string"}, "extract-text-webpack-plugin": {"type": "string"}, "html-webpack-plugin": {"type": "string"}, "node-sass": {"type": "string"}, "path": {"type": "string"}, "postcss-loader": {"type": "string"}, "precss": {"type": "string"}, "sass-loader": {"type": "string"}, "style-loader": {"type": "string"}, "webpack": {"type": "string"}}, "required": ["autoprefixer", "clean-webpack-plugin", "css-loader", "extract-text-webpack-plugin", "html-webpack-plugin", "node-sass", "path", "postcss-loader", "precss", "sass-loader", "style-loader", "webpack"]}}, "required": ["name", "version", "description", "main", "scripts", "repository", "author", "license", "bugs", "homepage", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "bootstrap-4-playground", "version" : "0.0.1", "description" : "A basic setup for building components using Bootstrap 4 Beta", "main" : "index.html", "scripts" : {"test" : "echo \"Error: no test specified\" && exit 1", "build" : "webpack", "start" : "webpack-dev-server --open"}, "repository" : {"type" : "git", "url" : "git+https://github.com/SteveJRobertson/bootstrap-4-playground.git"}, "author" : "Steve Robertson <steve@sr.digital>", "license" : "Apache-2.0", "bugs" : {"url" : "https://github.com/SteveJRobertson/bootstrap-4-playground/issues"}, "homepage" : "https://github.com/SteveJRobertson/bootstrap-4-playground#readme", "dependencies" : {"bootstrap-beta" : "^4.0.0-beta", "jquery" : "^3.2.1", "popper.js" : "^1.12.9"}, "devDependencies" : {"autoprefixer" : "^7.2.2", "clean-webpack-plugin" : "^0.1.17", "css-loader" : "^0.28.7", "extract-text-webpack-plugin" : "^3.0.2", "html-webpack-plugin" : "^2.30.1", "node-sass" : "^4.7.2", "path" : "^0.12.7", "postcss-loader" : "^2.0.9", "precss" : "^2.0.0", "sass-loader" : "^6.0.6", "style-loader" : "^0.19.0", "webpack" : "^3.10.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"}, "build": {"type": "string"}, "start": {"type": "string"}}, "required": ["test", "build", "start"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "dependencies": {"type": "object", "properties": {"bootstrap-beta": {"type": "string"}, "jquery": {"type": "string"}, "popper.js": {"type": "string"}}, "required": ["bootstrap-beta", "jquery", "popper.js"]}, "devDependencies": {"type": "object", "properties": {"autoprefixer": {"type": "string"}, "clean-webpack-plugin": {"type": "string"}, "css-loader": {"type": "string"}, "extract-text-webpack-plugin": {"type": "string"}, "html-webpack-plugin": {"type": "string"}, "node-sass": {"type": "string"}, "path": {"type": "string"}, "postcss-loader": {"type": "string"}, "precss": {"type": "string"}, "sass-loader": {"type": "string"}, "style-loader": {"type": "string"}, "webpack": {"type": "string"}}, "required": ["autoprefixer", "clean-webpack-plugin", "css-loader", "extract-text-webpack-plugin", "html-webpack-plugin", "node-sass", "path", "postcss-loader", "precss", "sass-loader", "style-loader", "webpack"]}}, "required": ["name", "version", "description", "main", "scripts", "repository", "author", "license", "bugs", "homepage", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"name": {"type": "string"}, "type": {"type": "string"}, "description": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "license": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}, "homepage": {"type": "string"}}, "required": ["name", "email", "homepage"]}}, "require": {"type": "object", "properties": {"php": {"type": "string"}}, "required": ["php"]}, "require-dev": {"type": "object", "properties": {"phpunit/phpunit": {"type": "string"}}, "required": ["phpunit/phpunit"]}, "autoload": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"BFunky\\HttpParser\\": {"type": "string"}}, "required": ["BFunky\\HttpParser\\"]}}, "required": ["psr-4"]}, "autoload-dev": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"BFunky\\Test\\HttpParser\\": {"type": "string"}}, "required": ["BFunky\\Test\\HttpParser\\"]}}, "required": ["psr-4"]}}, "required": ["name", "type", "description", "keywords", "license", "authors", "require", "require-dev", "autoload", "autoload-dev"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "bfunky/http-parser", "type" : "library", "description" : "A library to parse HTTP headers and HTTP header fields", "keywords" : ["http", "parser", "http parser", "http fields", "http request", "http response"], "license" : "MIT", "authors" : [{"name" : "Jairo Rodr\u00edguez", "email" : "jairo@bfunky.net", "homepage" : "http://www.bfunky.net"}], "require" : {"php" : "7.1.*"}, "require-dev" : {"phpunit/phpunit" : "6.*"}, "autoload" : {"psr-4" : {"BFunky\\HttpParser\\" : "src"}}, "autoload-dev" : {"psr-4" : {"BFunky\\Test\\HttpParser\\" : "test"}}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "type": {"type": "string"}, "description": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "license": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}, "homepage": {"type": "string"}}, "required": ["name", "email", "homepage"]}}, "require": {"type": "object", "properties": {"php": {"type": "string"}}, "required": ["php"]}, "require-dev": {"type": "object", "properties": {"phpunit/phpunit": {"type": "string"}}, "required": ["phpunit/phpunit"]}, "autoload": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"BFunky\\HttpParser\\": {"type": "string"}}, "required": ["BFunky\\HttpParser\\"]}}, "required": ["psr-4"]}, "autoload-dev": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"BFunky\\Test\\HttpParser\\": {"type": "string"}}, "required": ["BFunky\\Test\\HttpParser\\"]}}, "required": ["psr-4"]}}, "required": ["name", "type", "description", "keywords", "license", "authors", "require", "require-dev", "autoload", "autoload-dev"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"type": {"type": "string"}, "objects": {"type": "object", "properties": {"E01013880": {"type": "object", "properties": {"type": {"type": "string"}, "crs": {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"]}}, "required": ["type", "properties"]}, "geometries": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"OA11CD": {"type": "string"}, "LAD11CD": {"type": "string"}}, "required": ["OA11CD", "LAD11CD"]}, "arcs": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}}, "required": ["type", "properties", "arcs"]}}}, "required": ["type", "crs", "geometries"]}}, "required": ["E01013880"]}, "arcs": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}}, "transform": {"type": "object", "properties": {"scale": {"type": "array", "items": {"type": "number"}}, "translate": {"type": "array", "items": {"type": "number"}}}, "required": ["scale", "translate"]}}, "required": ["type", "objects", "arcs", "transform"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"type" : "Topology", "objects" : {"E01013880" : {"type" : "GeometryCollection", "crs" : {"type" : "name", "properties" : {"name" : "urn:ogc:def:crs:OGC:1.3:CRS84"}}, "geometries" : [{"type" : "Polygon", "properties" : {"OA11CD" : "E00070002", "LAD11CD" : "E06000018"}, "arcs" : [[0, 1, 2, 3]]}, {"type" : "Polygon", "properties" : {"OA11CD" : "E00070017", "LAD11CD" : "E06000018"}, "arcs" : [[4, 5, 6]]}, {"type" : "Polygon", "properties" : {"OA11CD" : "E00070018", "LAD11CD" : "E06000018"}, "arcs" : [[7, -1, 8, -7]]}, {"type" : "Polygon", "properties" : {"OA11CD" : "E00070019", "LAD11CD" : "E06000018"}, "arcs" : [[-2, -8, -6, 9, 10]]}, {"type" : "Polygon", "properties" : {"OA11CD" : "E00070025", "LAD11CD" : "E06000018"}, "arcs" : [[-3, -11, 11]]}]}}, "arcs" : [[[8225, 3694], [-248, 495], [-1763, -627], [1500, -752]], [[7714, 2810], [-1349, -838]], [[6365, 1972], [5, 245], [-1019, 544], [-297, -217], [74, -515], [-973, 345], [-547, -873], [-220, 115]], [[3388, 1616], [-1492, 579], [-166, 223], [557, 613], [648, 1], [836, 608], [-3771, 1601], [2460, 1400], [875, 1283], [487, 1528], [-40, 188], [1409, 359], [2514, -186], [375, -103], [489, -232], [280, -2027], [41, -322], [653, -2456], [-228, -348], [-277, 238], [-657, -232], [299, -455], [-455, -182]], [[9713, 2608], [286, -109], [-154, -326], [-576, -370], [-262, 96], [-401, -198], [-583, -253], [-663, 159]], [[7360, 1607], [-490, 168], [134, 246], [346, 135], [124, -207], [543, 124], [3, 641]], [[8020, 2714], [27, -110], [291, 5], [-21, 127], [649, -90], [157, -341], [590, 303]], [[8020, 2714], [-87, 188], [-219, -92]], [[8225, 3694], [334, -583], [1141, 198], [13, -701]], [[7360, 1607], [-212, -19], [-103, -359]], [[7045, 1229], [-1595, 11], [342, 730], [-341, 74], [-55, 304], [330, 56], [445, -591], [194, 159]], [[7045, 1229], [534, -58], [-572, -387], [98, -206], [-1458, -578], [-123, 109], [-1304, 1017], [-832, 490]]], "transform" : {"scale" : [1.81891525808432e-06, 1.681622933071453e-06], "translate" : [-1.217042087912084, 53.00181420253749]}}
json_instruct
{"type": "object", "properties": {"type": {"type": "string"}, "objects": {"type": "object", "properties": {"E01013880": {"type": "object", "properties": {"type": {"type": "string"}, "crs": {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"]}}, "required": ["type", "properties"]}, "geometries": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"OA11CD": {"type": "string"}, "LAD11CD": {"type": "string"}}, "required": ["OA11CD", "LAD11CD"]}, "arcs": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}}, "required": ["type", "properties", "arcs"]}}}, "required": ["type", "crs", "geometries"]}}, "required": ["E01013880"]}, "arcs": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}}, "transform": {"type": "object", "properties": {"scale": {"type": "array", "items": {"type": "number"}}, "translate": {"type": "array", "items": {"type": "number"}}}, "required": ["scale", "translate"]}}, "required": ["type", "objects", "arcs", "transform"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"model": {"type": "object", "properties": {"kind": {"type": "string"}, "name": {"type": "string"}, "title": {"type": "string"}, "description": {"type": "string"}, "deprecated": {"type": "boolean"}, "label": {"type": "string"}, "javaType": {"type": "string"}, "input": {"type": "boolean"}, "output": {"type": "boolean"}}, "required": ["kind", "name", "title", "description", "deprecated", "label", "javaType", "input", "output"]}, "properties": {"type": "object", "properties": {"rest": {"type": "object", "properties": {"kind": {"type": "string"}, "displayName": {"type": "string"}, "required": {"type": "boolean"}, "type": {"type": "string"}, "javaType": {"type": "string"}, "deprecated": {"type": "boolean"}, "autowired": {"type": "boolean"}, "secret": {"type": "boolean"}, "description": {"type": "string"}}, "required": ["kind", "displayName", "required", "type", "javaType", "deprecated", "autowired", "secret", "description"]}, "id": {"type": "object", "properties": {"kind": {"type": "string"}, "displayName": {"type": "string"}, "required": {"type": "boolean"}, "type": {"type": "string"}, "javaType": {"type": "string"}, "deprecated": {"type": "boolean"}, "autowired": {"type": "boolean"}, "secret": {"type": "boolean"}, "description": {"type": "string"}}, "required": ["kind", "displayName", "required", "type", "javaType", "deprecated", "autowired", "secret", "description"]}}, "required": ["rest", "id"]}}, "required": ["model", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"model" : {"kind" : "model", "name" : "restContext", "title" : "Rest Context", "description" : "Configuration of REST services using rest-dsl using XML", "deprecated" : false, "label" : "spring,configuration,rest", "javaType" : "org.apache.camel.spring.xml.CamelRestContextFactoryBean", "input" : false, "output" : false}, "properties" : {"rest" : {"kind" : "element", "displayName" : "Rest", "required" : false, "type" : "array", "javaType" : "java.util.List<org.apache.camel.model.rest.RestDefinition>", "deprecated" : false, "autowired" : false, "secret" : false, "description" : "Rest services"}, "id" : {"kind" : "attribute", "displayName" : "Id", "required" : false, "type" : "string", "javaType" : "java.lang.String", "deprecated" : false, "autowired" : false, "secret" : false, "description" : "The id of this node"}}}
json_instruct
{"type": "object", "properties": {"model": {"type": "object", "properties": {"kind": {"type": "string"}, "name": {"type": "string"}, "title": {"type": "string"}, "description": {"type": "string"}, "deprecated": {"type": "boolean"}, "label": {"type": "string"}, "javaType": {"type": "string"}, "input": {"type": "boolean"}, "output": {"type": "boolean"}}, "required": ["kind", "name", "title", "description", "deprecated", "label", "javaType", "input", "output"]}, "properties": {"type": "object", "properties": {"rest": {"type": "object", "properties": {"kind": {"type": "string"}, "displayName": {"type": "string"}, "required": {"type": "boolean"}, "type": {"type": "string"}, "javaType": {"type": "string"}, "deprecated": {"type": "boolean"}, "autowired": {"type": "boolean"}, "secret": {"type": "boolean"}, "description": {"type": "string"}}, "required": ["kind", "displayName", "required", "type", "javaType", "deprecated", "autowired", "secret", "description"]}, "id": {"type": "object", "properties": {"kind": {"type": "string"}, "displayName": {"type": "string"}, "required": {"type": "boolean"}, "type": {"type": "string"}, "javaType": {"type": "string"}, "deprecated": {"type": "boolean"}, "autowired": {"type": "boolean"}, "secret": {"type": "boolean"}, "description": {"type": "string"}}, "required": ["kind", "displayName", "required", "type", "javaType", "deprecated", "autowired", "secret", "description"]}}, "required": ["rest", "id"]}}, "required": ["model", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"name": {"type": "string"}, "url": {"type": "object", "properties": {"host": {"type": "string"}, "pathname": {"type": "string"}}, "required": ["host", "pathname"]}, "tags": {"type": "array", "items": {"type": "string"}}, "ll": {"type": "array", "items": {"type": "number"}}, "twitter": {"type": "string"}}, "required": ["name", "url", "tags", "ll", "twitter"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "St. Anton Am Arlberg", "url" : {"host" : "https://www.stantonamarlberg.com", "pathname" : "/en/service/lifts-and-pistes"}, "tags" : ["Alps", "Austria"], "ll" : [10.264, 47.127499], "twitter" : "StantonReview"}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "url": {"type": "object", "properties": {"host": {"type": "string"}, "pathname": {"type": "string"}}, "required": ["host", "pathname"]}, "tags": {"type": "array", "items": {"type": "string"}}, "ll": {"type": "array", "items": {"type": "number"}}, "twitter": {"type": "string"}}, "required": ["name", "url", "tags", "ll", "twitter"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "array", "items": {"type": "object", "properties": {"postal_code": {"type": "string"}, "place_name": {"type": "string"}, "place_type": {"type": "string"}, "county": {"type": "string"}, "state": {"type": "string"}, "city": {"type": "string"}}, "required": ["postal_code", "place_name", "place_type", "county", "state", "city"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"postal_code" : "20140", "place_name" : "Morelos", "place_type" : "Colonia", "county" : "Aguascalientes", "state" : "Aguascalientes", "city" : "Aguascalientes"}, {"postal_code" : "20140", "place_name" : "Las Hadas", "place_type" : "Fraccionamiento", "county" : "Aguascalientes", "state" : "Aguascalientes", "city" : "Aguascalientes"}, {"postal_code" : "20140", "place_name" : "Andrea", "place_type" : "Condominio", "county" : "Aguascalientes", "state" : "Aguascalientes", "city" : "Aguascalientes"}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"postal_code": {"type": "string"}, "place_name": {"type": "string"}, "place_type": {"type": "string"}, "county": {"type": "string"}, "state": {"type": "string"}, "city": {"type": "string"}}, "required": ["postal_code", "place_name", "place_type", "county", "state", "city"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"slideout.js": {"type": "string"}, "slideout.min.js": {"type": "string"}}, "required": ["slideout.js", "slideout.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"slideout.js" : "sha512-y3dWhNd+8DmxeniUhT5YtE6figJ4Xp7cgwhNMMe/Ph2NGzqBVkIzNk7g2ddHevR18v938ZBIcIoODwgIYqjqrA==", "slideout.min.js" : "sha512-PxaHW1MfmVwr3zFyNgbnv5lXin5k7MhtJKu4iX6VCaeBT4qX4D9Ua03HK6q1Hs9B5wcIsjOZam3WNYmZlnuGZQ=="}
json_instruct
{"type": "object", "properties": {"slideout.js": {"type": "string"}, "slideout.min.js": {"type": "string"}}, "required": ["slideout.js", "slideout.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"slug": {"type": "string"}, "name": {"type": "string"}, "latest_version": {"type": "string"}, "last_updated": {"type": "string"}, "vulnerabilities": {"type": "null"}}, "required": ["slug", "name", "latest_version", "last_updated", "vulnerabilities"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"slug" : "userpoints_nc", "name" : "User points Nodes and Comments", "latest_version" : "1.x-dev", "last_updated" : "2018-03-28T19:16:22.439Z", "vulnerabilities" : null}
json_instruct
{"type": "object", "properties": {"slug": {"type": "string"}, "name": {"type": "string"}, "latest_version": {"type": "string"}, "last_updated": {"type": "string"}, "vulnerabilities": {"type": "null"}}, "required": ["slug", "name", "latest_version", "last_updated", "vulnerabilities"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"code": {"type": "string"}, "messages": {"type": "string"}, "value": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "id_kabupaten": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "id_kabupaten", "name"]}}}, "required": ["code", "messages", "value"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"code" : "200", "messages" : "Successfully received data", "value" : [{"id" : "920203", "id_kabupaten" : "9202", "name" : "Warmare"}, {"id" : "920204", "id_kabupaten" : "9202", "name" : "Prafi"}, {"id" : "920205", "id_kabupaten" : "9202", "name" : "Masni"}, {"id" : "920212", "id_kabupaten" : "9202", "name" : "Manokwari Barat"}, {"id" : "920213", "id_kabupaten" : "9202", "name" : "Manokwari Timur"}, {"id" : "920214", "id_kabupaten" : "9202", "name" : "Manokwari Utara"}, {"id" : "920215", "id_kabupaten" : "9202", "name" : "Manokwari Selatan"}, {"id" : "920217", "id_kabupaten" : "9202", "name" : "Tanah Rubuh"}, {"id" : "920221", "id_kabupaten" : "9202", "name" : "Sidey"}]}
json_instruct
{"type": "object", "properties": {"code": {"type": "string"}, "messages": {"type": "string"}, "value": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "id_kabupaten": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "id_kabupaten", "name"]}}}, "required": ["code", "messages", "value"], "$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" : "3523170018", "district_id" : "3523170", "name" : "GLONDONGGEDE"}
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "district_id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "district_id", "name"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "array", "items": {"type": "object", "properties": {"section": {"type": "string"}, "categories": {"type": "string"}, "skills": {"type": "array", "items": {"type": "object", "properties": {"rows": {"type": "array", "items": {"type": "string"}}}, "required": ["rows"]}}}, "required": ["section", "categories", "skills"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"section" : "skills", "categories" : "Platforms / OS / Heuristics", "skills" : [{"rows" : ["Spring Framework 3-4 | Springboot | Java EE", "AngularJS 1.x", "ReactJS 14+", "Jenkins 2.0 CI Server"]}, {"rows" : ["ATDD/TDD in practice within CI/CD", "Twitter Bootstrap", "Subversion", "Git & GitHub"]}, {"rows" : ["LAMP", "NoSQL & Relational Database", "DERN/NERD", "Microsoft Windows"]}, {"rows" : ["Bower | Gulp | Grunt", "NodeJS", "GOMS/KLM HCI Modeling", "Jasmine"]}, {"rows" : ["NPM", "AWS Cloud (Lambda | API GW | VPC | IAM)", "JUnit", "OS Package Mgrs (Homebrew | Yum | Chocolatey | Apt-Get)"]}, {"rows" : ["REST", "OAuth2.0 | Okta", "Nexus & Artifactory Artifact Server", "Mac OSX | Linux"]}, {"rows" : ["Scrum Agile | Kanban", "Gemba | Toyota/Shingo Practices", "Design-Thinking", "Training & Public Speaking experience"]}]}, {"section" : "skills", "categories" : "Coding Languages", "skills" : [{"rows" : ["Java", "Javascript | NodeJS | NPM", "HTML5", "CSS3"]}, {"rows" : ["MongoDB & DynamoDB NoSQL", "Data Markup Languages (JSON | XML | YAML | WSDL | INI)", "Windows Batch Script", "VBA"]}, {"rows" : ["Apache Build Scripting (Maven | Ant)", "MSSQL/MySQL", "Gradle Build Scripting", "Linux/Unix Script (BASH | SH)"]}]}, {"section" : "skills", "categories" : "Relevant Tools", "skills" : [{"rows" : ["Eclipse IDE", "IntelliJ", "All Microsoft Office Applications"]}, {"rows" : ["Tableau Desktop", "Browser Development Tools", "Agile Suites (Jira | VersionOne | Trello)"]}, {"rows" : ["Apache Nifi", "R Statistical Software", "Kubernetes kubectl | Docker"]}]}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"section": {"type": "string"}, "categories": {"type": "string"}, "skills": {"type": "array", "items": {"type": "object", "properties": {"rows": {"type": "array", "items": {"type": "string"}}}, "required": ["rows"]}}}, "required": ["section", "categories", "skills"]}, "$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": {"type": "object", "properties": {"errors": {"type": "array", "items": {}}, "file": {"type": "string"}, "name": {"type": "string"}}, "required": ["errors", "file", "name"]}}}, "required": ["contract", "tool", "start", "end", "duration", "analysis"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"contract" : "0x69d045bac710314e7be2460765a1b650e72705a5", "tool" : "honeybadger", "start" : 1565887668.762695, "end" : 1565887955.6101909, "duration" : 286.84749579429626, "analysis" : [{"errors" : [], "file" : "/unique_chucks/12/0x69d045bac710314e7be2460765a1b650e72705a5.sol", "name" : "BinTraid"}, {"errors" : [], "file" : "/unique_chucks/12/0x69d045bac710314e7be2460765a1b650e72705a5.sol", "name" : "SafeMath"}]}
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": {"errors": {"type": "array", "items": {}}, "file": {"type": "string"}, "name": {"type": "string"}}, "required": ["errors", "file", "name"]}}}, "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": {"id_3075": {"type": "object", "properties": {"publicdate": {"type": "string"}, "title": {"type": "string"}}, "required": ["publicdate", "title"]}}, "required": ["id_3075"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id_3075" : {"publicdate" : "2009-04-24 08:57:50", "title" : "Echo"}}
json_instruct
{"type": "object", "properties": {"id_3075": {"type": "object", "properties": {"publicdate": {"type": "string"}, "title": {"type": "string"}}, "required": ["publicdate", "title"]}}, "required": ["id_3075"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"parent": {"type": "string"}}, "required": ["parent"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"parent" : "novesues:block/stone_shvl"}
json_instruct
{"type": "object", "properties": {"parent": {"type": "string"}}, "required": ["parent"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"h": {"type": "string"}, "c": {"type": "object", "properties": {"0": {"type": "boolean"}}, "required": ["0"]}}, "required": ["h", "c"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"h" : "1f1edb7b9c966224db90", "c" : {"0" : true}}
json_instruct
{"type": "object", "properties": {"h": {"type": "string"}, "c": {"type": "object", "properties": {"0": {"type": "boolean"}}, "required": ["0"]}}, "required": ["h", "c"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "array", "items": {"type": "object", "properties": {"line": {"type": "integer"}, "column": {"type": "integer"}, "msg": {"type": "string"}}, "required": ["line", "column", "msg"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"line" : 2, "column" : 14, "msg" : "Type parameter list cannot be empty."}, {"line" : 2, "column" : 15, "msg" : "Type parameters cannot appear on a constructor declaration."}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"line": {"type": "integer"}, "column": {"type": "integer"}, "msg": {"type": "string"}}, "required": ["line", "column", "msg"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"latest_version": {"type": "array", "items": {"type": "string"}}, "meta": {"type": "object", "properties": {"description": {"type": "string"}, "homepage": {"type": "string"}, "license": {"type": "string"}}, "required": ["description", "homepage", "license"]}, "versions": {"type": "object", "properties": {"0.0.1": {"type": "object", "properties": {"sha256": {"type": "string"}, "url": {"type": "string"}}, "required": ["sha256", "url"]}, "0.0.2": {"type": "object", "properties": {"sha256": {"type": "string"}, "url": {"type": "string"}}, "required": ["sha256", "url"]}, "0.0.3": {"type": "object", "properties": {"sha256": {"type": "string"}, "url": {"type": "string"}}, "required": ["sha256", "url"]}, "0.0.4": {"type": "object", "properties": {"sha256": {"type": "string"}, "url": {"type": "string"}}, "required": ["sha256", "url"]}, "0.0.5": {"type": "object", "properties": {"sha256": {"type": "string"}, "url": {"type": "string"}}, "required": ["sha256", "url"]}, "0.0.6": {"type": "object", "properties": {"sha256": {"type": "string"}, "url": {"type": "string"}}, "required": ["sha256", "url"]}}, "required": ["0.0.1", "0.0.2", "0.0.3", "0.0.4", "0.0.5", "0.0.6"]}}, "required": ["latest_version", "meta", "versions"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"latest_version" : ["0.0.6"], "meta" : {"description" : "kube shields flask frontend", "homepage" : "https://github.com/ccpgames/kube_shields/", "license" : ""}, "versions" : {"0.0.1" : {"sha256" : "2349b1f5941b5db6977f03fa0406952669f1d16115d695e778d3ce1d9c2e1e4e", "url" : "https://files.pythonhosted.org/packages/17/d6/98d632ba6ad2e5e6c062c5cdd9a3b2343ba2f0e3c41fecc02d3d8ad49ff2/kube_shields-0.0.1.tar.gz"}, "0.0.2" : {"sha256" : "68890ac44e3457f1047969eaa779e6a2ba3184bd24eb31027e4c4040d6f0c04c", "url" : "https://files.pythonhosted.org/packages/6f/e2/428757db67a4497fbb7def3ac0bc08e8cc42a1e2dc855d4346d40afddd7f/kube_shields-0.0.2.tar.gz"}, "0.0.3" : {"sha256" : "72e21ae7c5ef88fc49350e22f399a0b165603f8db0109ea4af86a285fb961462", "url" : "https://files.pythonhosted.org/packages/06/e7/8293bbd912291e97ee0d37070fbb3604c2688a3d544b48bb16eadaa9834f/kube_shields-0.0.3.tar.gz"}, "0.0.4" : {"sha256" : "69f012bfb7dca733174b5cdcbec02bb4c2998f889f51df1b445841f52fc4d286", "url" : "https://files.pythonhosted.org/packages/e2/54/dc0829aab754a88bf61dfa01697e7097330fe3aad7ef68b3d4c80cdbaa4e/kube_shields-0.0.4.tar.gz"}, "0.0.5" : {"sha256" : "12666dee6b493a8d87ed945104a92de1efcbfcca9fa550b07e1f1dbe691d4455", "url" : "https://files.pythonhosted.org/packages/06/a8/eaa807f0f897cc9304df0a31858da959b44294a2e163df4c74073854738a/kube_shields-0.0.5.tar.gz"}, "0.0.6" : {"sha256" : "43c1853aad755e79582a85ec41c27c892d9b27ec5352f1930d9221e93665c3c3", "url" : "https://files.pythonhosted.org/packages/af/87/5d28fed39d275aec64020c94c4e144acf041ef4a5afce46b1bac6f64b70c/kube_shields-0.0.6.tar.gz"}}}
json_instruct
{"type": "object", "properties": {"latest_version": {"type": "array", "items": {"type": "string"}}, "meta": {"type": "object", "properties": {"description": {"type": "string"}, "homepage": {"type": "string"}, "license": {"type": "string"}}, "required": ["description", "homepage", "license"]}, "versions": {"type": "object", "properties": {"0.0.1": {"type": "object", "properties": {"sha256": {"type": "string"}, "url": {"type": "string"}}, "required": ["sha256", "url"]}, "0.0.2": {"type": "object", "properties": {"sha256": {"type": "string"}, "url": {"type": "string"}}, "required": ["sha256", "url"]}, "0.0.3": {"type": "object", "properties": {"sha256": {"type": "string"}, "url": {"type": "string"}}, "required": ["sha256", "url"]}, "0.0.4": {"type": "object", "properties": {"sha256": {"type": "string"}, "url": {"type": "string"}}, "required": ["sha256", "url"]}, "0.0.5": {"type": "object", "properties": {"sha256": {"type": "string"}, "url": {"type": "string"}}, "required": ["sha256", "url"]}, "0.0.6": {"type": "object", "properties": {"sha256": {"type": "string"}, "url": {"type": "string"}}, "required": ["sha256", "url"]}}, "required": ["0.0.1", "0.0.2", "0.0.3", "0.0.4", "0.0.5", "0.0.6"]}}, "required": ["latest_version", "meta", "versions"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"body-parser": {"type": "string"}, "express": {"type": "string"}, "path": {"type": "string"}, "pusher": {"type": "string"}}, "required": ["body-parser", "express", "path", "pusher"]}}, "required": ["name", "version", "description", "main", "scripts", "author", "license", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "whats-up", "version" : "0.0.1", "description" : "Whats Up - Vanilla JS Member Management Example with Status Update Visibility using Pusher Realtime APIs", "main" : "server.js", "scripts" : {"test" : "echo \"Error: no test specified\" && exit 1"}, "author" : "mAppMechanic (Rahat Khanna)", "license" : "ISC", "dependencies" : {"body-parser" : "^1.16.1", "express" : "^4.14.1", "path" : "^0.12.7", "pusher" : "^1.5.1"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"body-parser": {"type": "string"}, "express": {"type": "string"}, "path": {"type": "string"}, "pusher": {"type": "string"}}, "required": ["body-parser", "express", "path", "pusher"]}}, "required": ["name", "version", "description", "main", "scripts", "author", "license", "dependencies"], "$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"}, "main": {"type": "string"}, "description": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "homepage": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "license": {"type": "string"}, "author": {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"]}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "contributors": {"type": "array", "items": {}}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "dependencies": {"type": "object", "properties": {"bindings": {"type": "string"}, "nan": {"type": "string"}}, "required": ["bindings", "nan"]}, "devDependencies": {"type": "object", "properties": {"cmake-js": {"type": "string"}}, "required": ["cmake-js"]}, "engines": {"type": "object", "properties": {"node": {"type": "string"}}, "required": ["node"]}, "readmeFilename": {"type": "string"}}, "required": ["name", "version", "main", "description", "keywords", "homepage", "bugs", "license", "author", "scripts", "contributors", "repository", "dependencies", "devDependencies", "engines", "readmeFilename"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "foundation-kawpow", "version" : "0.0.3", "main" : "./index.js", "description" : "KawPOW algorithm hashing and verification functions for NodeJS.", "keywords" : ["mining", "kawpow", "ravencoin", "raven"], "homepage" : "https://github.com/Blinkhash/foundation-kawpow", "bugs" : {"url" : "https://github.com/Blinkhash/foundation-kawpow/issues"}, "license" : "MIT", "author" : {"name" : "JCThePants"}, "scripts" : {"test" : "node test"}, "contributors" : [], "repository" : {"type" : "git", "url" : "https://github.com/Blinkhash/foundation-kawpow.git"}, "dependencies" : {"bindings" : "^1.3.0", "nan" : "^2.6.2"}, "devDependencies" : {"cmake-js" : "^4.0.1"}, "engines" : {"node" : ">=10.17.0"}, "readmeFilename" : "README.md"}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "main": {"type": "string"}, "description": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "homepage": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "license": {"type": "string"}, "author": {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"]}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "contributors": {"type": "array", "items": {}}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "dependencies": {"type": "object", "properties": {"bindings": {"type": "string"}, "nan": {"type": "string"}}, "required": ["bindings", "nan"]}, "devDependencies": {"type": "object", "properties": {"cmake-js": {"type": "string"}}, "required": ["cmake-js"]}, "engines": {"type": "object", "properties": {"node": {"type": "string"}}, "required": ["node"]}, "readmeFilename": {"type": "string"}}, "required": ["name", "version", "main", "description", "keywords", "homepage", "bugs", "license", "author", "scripts", "contributors", "repository", "dependencies", "devDependencies", "engines", "readmeFilename"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"id": {"type": "string"}, "dependencies": {"type": "array", "items": {}}, "generated": {"type": "object", "properties": {"html": {"type": "string"}}, "required": ["html"]}, "hash": {"type": "string"}, "cacheData": {"type": "object", "properties": {}, "required": []}}, "required": ["id", "dependencies", "generated", "hash", "cacheData"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : "6s8z", "dependencies" : [], "generated" : {"html" : "<!DOCTYPE html><html> <head> <meta charset=\"UTF-8\"> <meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"> <title>Servant TS</title> </head> <body> <script defer src=\"https://use.fontawesome.com/releases/v5.3.1/js/all.js\"></script> <div id=\"app\"></div> </body> </html>"}, "hash" : "67e470c3cd069041f73b850451810686", "cacheData" : {}}
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "dependencies": {"type": "array", "items": {}}, "generated": {"type": "object", "properties": {"html": {"type": "string"}}, "required": ["html"]}, "hash": {"type": "string"}, "cacheData": {"type": "object", "properties": {}, "required": []}}, "required": ["id", "dependencies", "generated", "hash", "cacheData"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"type": {"type": "string"}, "features": {"type": "array", "items": {"type": "object", "properties": {"geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["type", "coordinates"]}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"cartodb_id": {"type": "integer"}}, "required": ["cartodb_id"]}}, "required": ["geometry", "type", "properties"]}}}, "required": ["type", "features"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"type" : "FeatureCollection", "features" : [{"geometry" : {"type" : "Polygon", "coordinates" : [[[-78.670723, 41.946554], [-78.665718, 41.951378], [-78.666384, 41.955637], [-78.664247, 41.957128], [-78.662384, 41.957182], [-78.663221, 41.960032], [-78.667437, 41.959551], [-78.666775, 41.963117], [-78.664045, 41.962932], [-78.662912, 41.961935], [-78.662909, 41.963144], [-78.66097, 41.962083], [-78.656025, 41.962426], [-78.653854, 41.961998], [-78.653823, 41.961269], [-78.650101, 41.961277], [-78.649341, 41.960607], [-78.642255, 41.964758], [-78.639679, 41.964898], [-78.637102, 41.963002], [-78.641501, 41.957947], [-78.643565, 41.957767], [-78.644407, 41.959481], [-78.649002, 41.959131], [-78.649801, 41.957251], [-78.653807, 41.956749], [-78.655027, 41.955002], [-78.664905, 41.95156], [-78.670723, 41.946554]]]}, "type" : "Feature", "properties" : {"cartodb_id" : 56700}}]}
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#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"Bokaro": {"type": "number"}, "Chatra": {"type": "number"}, "Deoghar": {"type": "number"}, "Dhanbad": {"type": "number"}, "Dumka": {"type": "number"}, "East Singhbhum": {"type": "number"}, "Garhwa": {"type": "number"}, "Giridih": {"type": "number"}, "Godda": {"type": "number"}, "Gumla": {"type": "number"}, "Hazaribagh": {"type": "number"}, "Jamtara": {"type": "number"}, "Khunti": {"type": "number"}, "Koderma": {"type": "number"}, "Latehar": {"type": "number"}, "Lohardaga": {"type": "number"}, "Pakur": {"type": "number"}, "Palamu": {"type": "number"}, "Ramgarh": {"type": "number"}, "Ranchi": {"type": "number"}, "Sahibganj": {"type": "number"}, "Saraikela Kharsawan": {"type": "number"}, "Simdega": {"type": "number"}, "West Singhbhum": {"type": "number"}}, "required": ["Bokaro", "Chatra", "Deoghar", "Dhanbad", "Dumka", "East Singhbhum", "Garhwa", "Giridih", "Godda", "Gumla", "Hazaribagh", "Jamtara", "Khunti", "Koderma", "Latehar", "Lohardaga", "Pakur", "Palamu", "Ramgarh", "Ranchi", "Sahibganj", "Saraikela Kharsawan", "Simdega", "West Singhbhum"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"Bokaro" : 7.6709796672828094, "Chatra" : 0.7393715341959335, "Deoghar" : 0.0, "Dhanbad" : 46.21072088724584, "Dumka" : 5.6377079482439925, "East Singhbhum" : 22.92051756007394, "Garhwa" : 11.182994454713494, "Giridih" : 0.0, "Godda" : 76.15526802218115, "Gumla" : 0.8317929759704251, "Hazaribagh" : 2.4029574861367835, "Jamtara" : 0.0, "Khunti" : 100.0, "Koderma" : 0.0, "Latehar" : 11.275415896487985, "Lohardaga" : 1.2939001848428837, "Pakur" : 22.643253234750464, "Palamu" : 4.066543438077634, "Ramgarh" : 7.486136783733826, "Ranchi" : 18.66913123844732, "Sahibganj" : 0.0, "Saraikela Kharsawan" : 9.611829944547134, "Simdega" : 5.175600739371535, "West Singhbhum" : 25.13863216266174}
json_instruct
{"type": "object", "properties": {"Bokaro": {"type": "number"}, "Chatra": {"type": "number"}, "Deoghar": {"type": "number"}, "Dhanbad": {"type": "number"}, "Dumka": {"type": "number"}, "East Singhbhum": {"type": "number"}, "Garhwa": {"type": "number"}, "Giridih": {"type": "number"}, "Godda": {"type": "number"}, "Gumla": {"type": "number"}, "Hazaribagh": {"type": "number"}, "Jamtara": {"type": "number"}, "Khunti": {"type": "number"}, "Koderma": {"type": "number"}, "Latehar": {"type": "number"}, "Lohardaga": {"type": "number"}, "Pakur": {"type": "number"}, "Palamu": {"type": "number"}, "Ramgarh": {"type": "number"}, "Ranchi": {"type": "number"}, "Sahibganj": {"type": "number"}, "Saraikela Kharsawan": {"type": "number"}, "Simdega": {"type": "number"}, "West Singhbhum": {"type": "number"}}, "required": ["Bokaro", "Chatra", "Deoghar", "Dhanbad", "Dumka", "East Singhbhum", "Garhwa", "Giridih", "Godda", "Gumla", "Hazaribagh", "Jamtara", "Khunti", "Koderma", "Latehar", "Lohardaga", "Pakur", "Palamu", "Ramgarh", "Ranchi", "Sahibganj", "Saraikela Kharsawan", "Simdega", "West Singhbhum"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"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" : 7173020002, "parent" : 7173020, "name" : "MATANI DUA", "latitude" : null, "longitude" : null, "postal" : [95444], "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#"}
Construct a JSON document that adheres to this schema specification: {"type": "array", "items": {"type": "object", "properties": {"p": {"type": "string"}, "d": {"type": "integer"}}, "required": ["p", "d"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"p" : "2b0e4bd2-4120-4d94-b08a-ddc6119e7f34", "d" : 2376}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"p": {"type": "string"}, "d": {"type": "integer"}}, "required": ["p", "d"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"Overlay": {"type": "object", "properties": {"Clicks": {"type": "string"}, "ClicksFromXLinks": {"type": "string"}, "Domain": {"type": "string"}, "ErrorNotLoading": {"type": "string"}, "ErrorNotLoadingDetails": {"type": "string"}, "ErrorNotLoadingDetailsSSL": {"type": "string"}, "ErrorNotLoadingLink": {"type": "string"}, "Link": {"type": "string"}, "Location": {"type": "string"}, "NoData": {"type": "string"}, "OneClick": {"type": "string"}, "OpenFullScreen": {"type": "string"}, "Overlay": {"type": "string"}, "RedirectUrlErrorAdmin": {"type": "string"}, "RedirectUrlErrorUser": {"type": "string"}}, "required": ["Clicks", "ClicksFromXLinks", "Domain", "ErrorNotLoading", "ErrorNotLoadingDetails", "ErrorNotLoadingDetailsSSL", "ErrorNotLoadingLink", "Link", "Location", "NoData", "OneClick", "OpenFullScreen", "Overlay", "RedirectUrlErrorAdmin", "RedirectUrlErrorUser"]}}, "required": ["Overlay"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"Overlay" : {"Clicks" : "%s click-uri", "ClicksFromXLinks" : "%1$s click-uri de la unul dintre %2$s link-uri", "Domain" : "Domeniu", "ErrorNotLoading" : "Sesiunea de acoperire pagina nu a putut fi lansata \u00eenc\u0103.", "ErrorNotLoadingDetails" : "Poate pagina \u00eenc\u0103rcat\u0103 din dreapta nu are codul de urm\u0103rire Matomo. \u00cen acest caz, \u00eencerca\u021bi lansarea Overlay pentru o alt\u0103 pagin\u0103 din raportul de pagini.", "ErrorNotLoadingDetailsSSL" : "Din moment ce utiliza\u021bi Matomo peste https, cauza cea mai probabil\u0103 este c\u0103 site-ul dvs. nu suporta SSL. \u00cencerca\u021bi s\u0103 folosi\u021bi Matomo peste http.", "ErrorNotLoadingLink" : "Click aici pentru a ob\u021bine mai multe sfaturi pentru depanare", "Link" : "Leg\u0103tur\u0103", "Location" : "Localitate", "NoData" : "Nu exist\u0103 date pentru aceast\u0103 pagin\u0103 \u00een perioada selectat\u0103.", "OneClick" : "1 click", "OpenFullScreen" : "Tot ecranul (f\u0103r\u0103 bara lateral\u0103)", "Overlay" : "Acoperire Pagina", "RedirectUrlErrorAdmin" : "Pute\u021bi ad\u0103uga domeniul ca o suplimentare de URL-ul %1$s in setarile%2$s.", "RedirectUrlErrorUser" : "Adresa\u021bi-v\u0103 administratorului pentru a ad\u0103uga un domeniu ca un URL suplimentar."}}
json_instruct
{"type": "object", "properties": {"Overlay": {"type": "object", "properties": {"Clicks": {"type": "string"}, "ClicksFromXLinks": {"type": "string"}, "Domain": {"type": "string"}, "ErrorNotLoading": {"type": "string"}, "ErrorNotLoadingDetails": {"type": "string"}, "ErrorNotLoadingDetailsSSL": {"type": "string"}, "ErrorNotLoadingLink": {"type": "string"}, "Link": {"type": "string"}, "Location": {"type": "string"}, "NoData": {"type": "string"}, "OneClick": {"type": "string"}, "OpenFullScreen": {"type": "string"}, "Overlay": {"type": "string"}, "RedirectUrlErrorAdmin": {"type": "string"}, "RedirectUrlErrorUser": {"type": "string"}}, "required": ["Clicks", "ClicksFromXLinks", "Domain", "ErrorNotLoading", "ErrorNotLoadingDetails", "ErrorNotLoadingDetailsSSL", "ErrorNotLoadingLink", "Link", "Location", "NoData", "OneClick", "OpenFullScreen", "Overlay", "RedirectUrlErrorAdmin", "RedirectUrlErrorUser"]}}, "required": ["Overlay"], "$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": "string"}, "type": {"type": "string"}, "name": {"type": "string"}, "description": {"type": "string"}, "weight": {"type": "string"}, "volume": {"type": "string"}, "price": {"type": "integer"}, "material": {"type": "array", "items": {"type": "string"}}, "symbol": {"type": "string"}, "color": {"type": "string"}, "ammo_type": {"type": "string"}, "capacity": {"type": "integer"}, "reliability": {"type": "integer"}, "reload_time": {"type": "integer"}, "flags": {"type": "array", "items": {"type": "string"}}}, "required": ["id", "type", "name", "description", "weight", "volume", "price", "material", "symbol", "color", "ammo_type", "capacity", "reliability", "reload_time", "flags"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"id" : "ap_mag", "type" : "MAGAZINE", "name" : "Auto-Pistol Magazine", "description" : "Magazine for an Auto-Pistol.", "weight" : "490 g", "volume" : "125 ml", "price" : 9920, "material" : ["steel"], "symbol" : "#", "color" : "light_gray", "ammo_type" : "auto_pistol", "capacity" : 10, "reliability" : 7, "reload_time" : 90, "flags" : ["MAG_COMPACT"]}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "type": {"type": "string"}, "name": {"type": "string"}, "description": {"type": "string"}, "weight": {"type": "string"}, "volume": {"type": "string"}, "price": {"type": "integer"}, "material": {"type": "array", "items": {"type": "string"}}, "symbol": {"type": "string"}, "color": {"type": "string"}, "ammo_type": {"type": "string"}, "capacity": {"type": "integer"}, "reliability": {"type": "integer"}, "reload_time": {"type": "integer"}, "flags": {"type": "array", "items": {"type": "string"}}}, "required": ["id", "type", "name", "description", "weight", "volume", "price", "material", "symbol", "color", "ammo_type", "capacity", "reliability", "reload_time", "flags"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"id": {"type": "string"}}, "required": ["id"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : "c97ff7f00de5f4d5baa655ad26c8b4fded01a579"}
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}}, "required": ["id"], "$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"}, "version": {"type": "string"}, "scripts": {"type": "object", "properties": {"dev": {"type": "string"}, "build": {"type": "string"}, "start": {"type": "string"}}, "required": ["dev", "build", "start"]}, "private": {"type": "boolean"}, "dependencies": {"type": "object", "properties": {"@0xsequence/multicall": {"type": "string"}, "@openzeppelin/contracts": {"type": "string"}, "axios": {"type": "string"}, "bootstrap": {"type": "string"}, "ethers": {"type": "string"}, "next": {"type": "string"}, "next-seo": {"type": "string"}, "react": {"type": "string"}, "react-bootstrap": {"type": "string"}, "react-dom": {"type": "string"}, "react-spinners": {"type": "string"}, "react-switch": {"type": "string"}, "react-toastify": {"type": "string"}, "sass": {"type": "string"}, "wagmi": {"type": "string"}}, "required": ["@0xsequence/multicall", "@openzeppelin/contracts", "axios", "bootstrap", "ethers", "next", "next-seo", "react", "react-bootstrap", "react-dom", "react-spinners", "react-switch", "react-toastify", "sass", "wagmi"]}, "devDependencies": {"type": "object", "properties": {"@types/node": {"type": "string"}, "@types/react": {"type": "string"}, "@types/react-dom": {"type": "string"}, "typescript": {"type": "string"}}, "required": ["@types/node", "@types/react", "@types/react-dom", "typescript"]}}, "required": ["name", "description", "version", "scripts", "private", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "revoke.cash", "description" : "Protect your Ethereum token balances by revoking allowances and permissions you granted applications in the past.", "version" : "0.1.0", "scripts" : {"dev" : "next dev", "build" : "next build", "start" : "next start"}, "private" : true, "dependencies" : {"@0xsequence/multicall" : "^0.36.4", "@openzeppelin/contracts" : "^4.5.0", "axios" : "^0.26.0", "bootstrap" : "^4.5.0", "ethers" : "^5.5.4", "next" : "^12.1.0", "next-seo" : "^5.1.0", "react" : "^17.0.2", "react-bootstrap" : "^1.0.1", "react-dom" : "^17.0.2", "react-spinners" : "^0.11.0", "react-switch" : "^6.0.0", "react-toastify" : "^8.2.0", "sass" : "^1.49.9", "wagmi" : "^0.2.17"}, "devDependencies" : {"@types/node" : "^13.7.0", "@types/react" : "^16.9.19", "@types/react-dom" : "^16.9.5", "typescript" : "^4.5.4"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "version": {"type": "string"}, "scripts": {"type": "object", "properties": {"dev": {"type": "string"}, "build": {"type": "string"}, "start": {"type": "string"}}, "required": ["dev", "build", "start"]}, "private": {"type": "boolean"}, "dependencies": {"type": "object", "properties": {"@0xsequence/multicall": {"type": "string"}, "@openzeppelin/contracts": {"type": "string"}, "axios": {"type": "string"}, "bootstrap": {"type": "string"}, "ethers": {"type": "string"}, "next": {"type": "string"}, "next-seo": {"type": "string"}, "react": {"type": "string"}, "react-bootstrap": {"type": "string"}, "react-dom": {"type": "string"}, "react-spinners": {"type": "string"}, "react-switch": {"type": "string"}, "react-toastify": {"type": "string"}, "sass": {"type": "string"}, "wagmi": {"type": "string"}}, "required": ["@0xsequence/multicall", "@openzeppelin/contracts", "axios", "bootstrap", "ethers", "next", "next-seo", "react", "react-bootstrap", "react-dom", "react-spinners", "react-switch", "react-toastify", "sass", "wagmi"]}, "devDependencies": {"type": "object", "properties": {"@types/node": {"type": "string"}, "@types/react": {"type": "string"}, "@types/react-dom": {"type": "string"}, "typescript": {"type": "string"}}, "required": ["@types/node", "@types/react", "@types/react-dom", "typescript"]}}, "required": ["name", "description", "version", "scripts", "private", "dependencies", "devDependencies"], "$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"}, "queryName": {"type": "string"}, "severity": {"type": "string"}, "category": {"type": "string"}, "descriptionText": {"type": "string"}, "descriptionUrl": {"type": "string"}, "platform": {"type": "string"}, "descriptionID": {"type": "string"}, "cloudProvider": {"type": "string"}}, "required": ["id", "queryName", "severity", "category", "descriptionText", "descriptionUrl", "platform", "descriptionID", "cloudProvider"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : "b26d2b7e-60f6-413d-a3a1-a57db24aa2b3", "queryName" : "SNS Topic is Publicly Accessible", "severity" : "HIGH", "category" : "Access Control", "descriptionText" : "SNS Topic Policy should not allow any principal to access", "descriptionUrl" : "https://registry.terraform.io/providers/hashicorp/aws/latest/docs/resources/sns_topic", "platform" : "Terraform", "descriptionID" : "52e85de5", "cloudProvider" : "aws"}
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "queryName": {"type": "string"}, "severity": {"type": "string"}, "category": {"type": "string"}, "descriptionText": {"type": "string"}, "descriptionUrl": {"type": "string"}, "platform": {"type": "string"}, "descriptionID": {"type": "string"}, "cloudProvider": {"type": "string"}}, "required": ["id", "queryName", "severity", "category", "descriptionText", "descriptionUrl", "platform", "descriptionID", "cloudProvider"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"word" : "feverous", "definition" : "1. Affected with fever or ague; feverish. His heart, love's feverous citadel. Keats. 2. Pertaining to, or having the nature of, fever; as, a feverous pulse. All maladies . . . all feverous kinds. Milton. 3. Having the tendency to produce fever; as, a feverous disposition of the year. [R.] Bacon."}
json_instruct
{"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "array", "items": {"type": "object", "properties": {"N": {"type": "string"}, "C": {"type": "integer"}}, "required": ["N", "C"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"N" : "BUGGY", "C" : 10}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"N": {"type": "string"}, "C": {"type": "integer"}}, "required": ["N", "C"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"error": {"type": "object", "properties": {"name": {"type": "string"}, "message": {"type": "string"}, "code": {"type": "integer"}}, "required": ["name", "message", "code"]}}, "required": ["error"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"error" : {"name" : "ResetPasswordTokenInvalidOrExpired", "message" : "The reset password token is invalid or has expired", "code" : 422}}
json_instruct
{"type": "object", "properties": {"error": {"type": "object", "properties": {"name": {"type": "string"}, "message": {"type": "string"}, "code": {"type": "integer"}}, "required": ["name", "message", "code"]}}, "required": ["error"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"id": {"type": "integer"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"src:alt_label": {"type": "string"}, "src:geom": {"type": "string"}, "wof:geomhash": {"type": "string"}, "wof:id": {"type": "integer"}, "wof:repo": {"type": "string"}}, "required": ["src:alt_label", "src:geom", "wof:geomhash", "wof:id", "wof:repo"]}, "bbox": {"type": "array", "items": {"type": "number"}}, "geometry": {"type": "object", "properties": {"coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}, "type": {"type": "string"}}, "required": ["coordinates", "type"]}}, "required": ["id", "type", "properties", "bbox", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : 101878087, "type" : "Feature", "properties" : {"src:alt_label" : "quattroshapes", "src:geom" : "quattroshapes", "wof:geomhash" : "37c0a50475e5738cbdc3cdd3ea454016", "wof:id" : 101878087, "wof:repo" : "whosonfirst-data-admin-fr"}, "bbox" : [3.54179284296686, 49.3195663934913, 3.55311571210444, 49.32485984249791], "geometry" : {"coordinates" : [[[3.54715817030251, 49.32485984249791], [3.54727666645073, 49.32396446920774], [3.54864763241761, 49.32404327523483], [3.54876609826204, 49.32314789981729], [3.55287894584808, 49.32338421272789], [3.55311571210444, 49.32159345053014], [3.55037390904999, 49.32143593193075], [3.5506107528509, 49.31964517451411], [3.54923990705635, 49.3195663934913], [3.54912146304423, 49.3204617707712], [3.54500887535875, 49.32022532254075], [3.54489035136879, 49.3211206943692], [3.54351947204265, 49.32104184323714], [3.54340091775077, 49.32193721293714], [3.54203001762329, 49.32185834344557], [3.54179284296686, 49.32364907812166], [3.54453474662989, 49.32380680705984], [3.54441620079297, 49.32470217702542], [3.54715817030251, 49.32485984249791]]], "type" : "Polygon"}}
json_instruct
{"type": "object", "properties": {"id": {"type": "integer"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"src:alt_label": {"type": "string"}, "src:geom": {"type": "string"}, "wof:geomhash": {"type": "string"}, "wof:id": {"type": "integer"}, "wof:repo": {"type": "string"}}, "required": ["src:alt_label", "src:geom", "wof:geomhash", "wof:id", "wof:repo"]}, "bbox": {"type": "array", "items": {"type": "number"}}, "geometry": {"type": "object", "properties": {"coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}, "type": {"type": "string"}}, "required": ["coordinates", "type"]}}, "required": ["id", "type", "properties", "bbox", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "text": {"type": "string"}}, "required": ["id", "text"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"id" : "370305001003", "text" : "\u897f\u738b\u793e\u533a\u5c45\u59d4\u4f1a"}, {"id" : "370305001004", "text" : "\u4e1c\u738b\u793e\u533a\u5c45\u59d4\u4f1a"}, {"id" : "370305001005", "text" : "\u8f9b\u4e1c\u793e\u533a\u5c45\u59d4\u4f1a"}, {"id" : "370305001007", "text" : "\u77f3\u9f13\u793e\u533a\u5c45\u59d4\u4f1a"}, {"id" : "370305001008", "text" : "\u5f20\u5bb6\u793e\u533a\u5c45\u59d4\u4f1a"}, {"id" : "370305001009", "text" : "\u592a\u516c\u793e\u533a\u5c45\u59d4\u4f1a"}, {"id" : "370305001011", "text" : "\u76f8\u5e9c\u793e\u533a\u5c45\u59d4\u4f1a"}, {"id" : "370305001012", "text" : "\u5929\u9f50\u793e\u533a\u5c45\u59d4\u4f1a"}, {"id" : "370305001013", "text" : "\u52c7\u58eb\u793e\u533a\u5c45\u59d4\u4f1a"}, {"id" : "370305001014", "text" : "\u9044\u53f0\u793e\u533a\u5c45\u59d4\u4f1a"}, {"id" : "370305001015", "text" : "\u7a37\u4e0b\u793e\u533a\u5c45\u59d4\u4f1a"}, {"id" : "370305001016", "text" : "\u95fb\u97f6\u793e\u533a\u5c45\u59d4\u4f1a"}, {"id" : "370305001017", "text" : "\u7ba1\u4ef2\u793e\u533a\u5c45\u59d4\u4f1a"}, {"id" : "370305001201", "text" : "\u76f8\u5bb6\u6751\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#"}
Generate a valid JSON object that conforms to the following schema: {"type": "array", "items": {"type": "object", "properties": {"DeniedAlternatives": {"type": "array", "items": {}}, "Files": {"type": "object", "properties": {"items/armors/costumes/colourful/colourful.chest": {"type": "array", "items": {"type": "string"}}, "items/armors/costumes/colourful/colourful.head": {"type": "array", "items": {"type": "string"}}, "items/armors/costumes/colourful/colourful.legs": {"type": "array", "items": {"type": "string"}}, "items/armors/costumes/colourful2/colourful2.head": {"type": "array", "items": {"type": "string"}}}, "required": ["items/armors/costumes/colourful/colourful.chest", "items/armors/costumes/colourful/colourful.head", "items/armors/costumes/colourful/colourful.legs", "items/armors/costumes/colourful2/colourful2.head"]}, "Texts": {"type": "object", "properties": {"Chs": {"type": "string"}, "Eng": {"type": "string"}}, "required": ["Chs", "Eng"]}}, "required": ["DeniedAlternatives", "Files", "Texts"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"DeniedAlternatives" : [], "Files" : {"items/armors/costumes/colourful/colourful.chest" : ["/description", "/shortdescription"], "items/armors/costumes/colourful/colourful.head" : ["/description", "/shortdescription"], "items/armors/costumes/colourful/colourful.legs" : ["/description", "/shortdescription"], "items/armors/costumes/colourful2/colourful2.head" : ["/description", "/shortdescription"]}, "Texts" : {"Chs" : "\u66ff\u6362", "Eng" : "Replace"}}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"DeniedAlternatives": {"type": "array", "items": {}}, "Files": {"type": "object", "properties": {"items/armors/costumes/colourful/colourful.chest": {"type": "array", "items": {"type": "string"}}, "items/armors/costumes/colourful/colourful.head": {"type": "array", "items": {"type": "string"}}, "items/armors/costumes/colourful/colourful.legs": {"type": "array", "items": {"type": "string"}}, "items/armors/costumes/colourful2/colourful2.head": {"type": "array", "items": {"type": "string"}}}, "required": ["items/armors/costumes/colourful/colourful.chest", "items/armors/costumes/colourful/colourful.head", "items/armors/costumes/colourful/colourful.legs", "items/armors/costumes/colourful2/colourful2.head"]}, "Texts": {"type": "object", "properties": {"Chs": {"type": "string"}, "Eng": {"type": "string"}}, "required": ["Chs", "Eng"]}}, "required": ["DeniedAlternatives", "Files", "Texts"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"invocation": {"type": "string"}, "version": {"type": "string"}, "intents": {"type": "object", "properties": {"YesIntent": {"type": "object", "properties": {"phrases": {"type": "array", "items": {"type": "string"}}}, "required": ["phrases"]}, "NoIntent": {"type": "object", "properties": {"phrases": {"type": "array", "items": {"type": "string"}}}, "required": ["phrases"]}}, "required": ["YesIntent", "NoIntent"]}}, "required": ["invocation", "version", "intents"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"invocation" : "my test app", "version" : "4.0", "intents" : {"YesIntent" : {"phrases" : ["yes", "yes please", "sure"]}, "NoIntent" : {"phrases" : ["no", "no thanks"]}}}
json_instruct
{"type": "object", "properties": {"invocation": {"type": "string"}, "version": {"type": "string"}, "intents": {"type": "object", "properties": {"YesIntent": {"type": "object", "properties": {"phrases": {"type": "array", "items": {"type": "string"}}}, "required": ["phrases"]}, "NoIntent": {"type": "object", "properties": {"phrases": {"type": "array", "items": {"type": "string"}}}, "required": ["phrases"]}}, "required": ["YesIntent", "NoIntent"]}}, "required": ["invocation", "version", "intents"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"}
["gerber-to-svg"]
json_instruct
{"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}}, "required": ["start"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "devDependencies": {"type": "object", "properties": {}, "required": []}, "dependencies": {"type": "object", "properties": {"date-fns": {"type": "string"}, "electron": {"type": "string"}, "inquirer": {"type": "string"}, "sliced": {"type": "string"}}, "required": ["date-fns", "electron", "inquirer", "sliced"]}, "bin": {"type": "object", "properties": {"diane": {"type": "string"}}, "required": ["diane"]}}, "required": ["name", "version", "description", "main", "scripts", "repository", "author", "license", "bugs", "homepage", "devDependencies", "dependencies", "bin"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "diane", "version" : "0.0.6", "description" : "That recorder you like will come back in style", "main" : "src/diane.js", "scripts" : {"start" : "diane"}, "repository" : {"type" : "git", "url" : "git+https://github.com/davidnaas/diane.git"}, "author" : "David N\u00e4\u00e4s", "license" : "MIT", "bugs" : {"url" : "https://github.com/davidnaas/diane/issues"}, "homepage" : "https://github.com/davidnaas/diane#readme", "devDependencies" : {}, "dependencies" : {"date-fns" : "^1.27.2", "electron" : "1.3.1", "inquirer" : "^1.1.2", "sliced" : "^1.0.1"}, "bin" : {"diane" : "./src/main.js"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}}, "required": ["start"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "devDependencies": {"type": "object", "properties": {}, "required": []}, "dependencies": {"type": "object", "properties": {"date-fns": {"type": "string"}, "electron": {"type": "string"}, "inquirer": {"type": "string"}, "sliced": {"type": "string"}}, "required": ["date-fns", "electron", "inquirer", "sliced"]}, "bin": {"type": "object", "properties": {"diane": {"type": "string"}}, "required": ["diane"]}}, "required": ["name", "version", "description", "main", "scripts", "repository", "author", "license", "bugs", "homepage", "devDependencies", "dependencies", "bin"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"textures": {"type": "object", "properties": {"particle": {"type": "string"}}, "required": ["particle"]}}, "required": ["textures"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"textures" : {"particle" : "indrev:block/molten_netherite_still"}}
json_instruct
{"type": "object", "properties": {"textures": {"type": "object", "properties": {"particle": {"type": "string"}}, "required": ["particle"]}}, "required": ["textures"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following 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" : "import { jsxDEV as _jsxDEV } from \"react/jsx-dev-runtime\";\nvar _jsxFileName = \"/home/huyphung/workspace/my-app/src/Square.jsx\";\nimport React from 'react';\n\nfunction Square(props) {\n return /*#__PURE__*/_jsxDEV(\"button\", {\n className: \"square\",\n onClick: () => this.props.onClick(),\n children: this.props.value\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 5,\n columnNumber: 5\n }, this);\n}\n\n_c = Square;\nexport default Square;\n\nvar _c;\n\n$RefreshReg$(_c, \"Square\");", "map" : {"version" : 3, "sources" : ["/home/huyphung/workspace/my-app/src/Square.jsx"], "names" : ["React", "Square", "props", "onClick", "value"], "mappings" : ";;AAAA,OAAOA,KAAP,MAAkB,OAAlB;;AAEA,SAASC,MAAT,CAAgBC,KAAhB,EAAuB;AACrB,sBACE;AAAQ,IAAA,SAAS,EAAC,QAAlB;AAA2B,IAAA,OAAO,EAAK,MAAM,KAAKA,KAAL,CAAWC,OAAX,EAA7C;AAAA,cACC,KAAKD,KAAL,CAAWE;AADZ;AAAA;AAAA;AAAA;AAAA,UADF;AAKD;;KANQH,M;AAQT,eAAeA,MAAf", "sourcesContent" : ["import React from 'react';\n\nfunction Square(props) {\n return (\n <button className=\"square\" onClick = { () => this.props.onClick() }>\n {this.props.value}\n </button>\n )\n}\n\nexport default Square;"]}, "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#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"symbol": {"type": "string"}, "address": {"type": "string"}, "overview": {"type": "object", "properties": {"en": {"type": "string"}}, "required": ["en"]}, "email": {"type": "string"}, "website": {"type": "string"}, "state": {"type": "string"}, "links": {"type": "object", "properties": {"blog": {"type": "string"}, "twitter": {"type": "string"}, "telegram": {"type": "string"}, "github": {"type": "string"}}, "required": ["blog", "twitter", "telegram", "github"]}}, "required": ["symbol", "address", "overview", "email", "website", "state", "links"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"symbol" : "JUP", "address" : "0x4B1E80cAC91e2216EEb63e29B957eB91Ae9C2Be8", "overview" : {"en" : "The open-source Jupiter software is the core of our operations. Using Jupiter, we strive to make this technology accessible by everyone and that is why we created Gravity, a versatile framework that interfaces with our blockchain, Jupiter."}, "email" : "info@gojupiter.tech", "website" : "https://gojupiter.tech/", "state" : "NORMAL", "links" : {"blog" : "", "twitter" : "https://twitter.com/jup_project", "telegram" : "https://t.me/jupiterproject", "github" : "https://github.com/sigwotechnologies/jupiter"}}
json_instruct
{"type": "object", "properties": {"symbol": {"type": "string"}, "address": {"type": "string"}, "overview": {"type": "object", "properties": {"en": {"type": "string"}}, "required": ["en"]}, "email": {"type": "string"}, "website": {"type": "string"}, "state": {"type": "string"}, "links": {"type": "object", "properties": {"blog": {"type": "string"}, "twitter": {"type": "string"}, "telegram": {"type": "string"}, "github": {"type": "string"}}, "required": ["blog", "twitter", "telegram", "github"]}}, "required": ["symbol", "address", "overview", "email", "website", "state", "links"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"backbone.marionette.js": {"type": "string"}, "backbone.marionette.min.js": {"type": "string"}, "core/backbone.marionette.js": {"type": "string"}, "core/backbone.marionette.min.js": {"type": "string"}}, "required": ["backbone.marionette.js", "backbone.marionette.min.js", "core/backbone.marionette.js", "core/backbone.marionette.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"backbone.marionette.js" : "sha256-yuUVrC0Q7hNO0AuAoGOamj32QMRSa3ZbNPLgpXXuRlo=", "backbone.marionette.min.js" : "sha256-Zttd/ByAwgEeMzPOfoZO62xRpU174JPAaX8NB8SeG6U=", "core/backbone.marionette.js" : "sha256-Ir0wQ1YClXGGcABhbtQYbI3YFyjJfgm6Gt03MXaPQfs=", "core/backbone.marionette.min.js" : "sha256-Wfhfwl0zD6ViYcxgQv070I4IAvg4fdLEGLo+16hTkkI="}
json_instruct
{"type": "object", "properties": {"backbone.marionette.js": {"type": "string"}, "backbone.marionette.min.js": {"type": "string"}, "core/backbone.marionette.js": {"type": "string"}, "core/backbone.marionette.min.js": {"type": "string"}}, "required": ["backbone.marionette.js", "backbone.marionette.min.js", "core/backbone.marionette.js", "core/backbone.marionette.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}