input
stringlengths
159
2.05k
output
stringlengths
5
10.3k
task
stringclasses
1 value
schema
stringlengths
100
1.99k
Generate a valid JSON object that conforms to the following schema: {"type": "array", "items": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"url" : "https://github.com/dotnet/dotnet-docker"}, {"url" : "https://github.com/aspnet/aspnet-docker"}, {"url" : "https://github.com/docker-library/official-images/", "path" : "library/openjdk"}, {"url" : "https://github.com/docker-library/official-images/", "path" : "library/mono"}, {"url" : "https://github.com/docker-library/official-images/", "path" : "library/python"}, {"url" : "https://github.com/docker-library/official-images/", "path" : "library/pypy"}, {"url" : "https://github.com/docker-library/official-images/", "path" : "library/golang"}, {"url" : "https://github.com/docker-library/official-images/", "path" : "library/ruby"}, {"url" : "https://github.com/docker-library/official-images/", "path" : "library/php"}, {"url" : "https://github.com/docker-library/official-images/", "path" : "library/buildpack-deps"}, {"url" : "https://github.com/docker-library/official-images/", "path" : "library/alpine"}, {"url" : "https://github.com/docker-library/official-images/", "path" : "library/debian"}, {"url" : "https://github.com/docker-library/official-images/", "path" : "library/ubuntu"}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"text": {"type": "string"}, "historical": {"type": "string"}, "credits": {"type": "string"}, "sections": {"type": "array", "items": {}}, "division": {"type": "object", "properties": {"identifier": {"type": "string"}, "text": {"type": "string"}}, "required": ["identifier", "text"]}, "title": {"type": "object", "properties": {"identifier": {"type": "string"}, "text": {"type": "string"}}, "required": ["identifier", "text"]}, "chapter": {"type": "object", "properties": {"identifier": {"type": "string"}, "text": {"type": "string"}}, "required": ["identifier", "text"]}, "subchapter": {"type": "object", "properties": {"identifier": {"type": "string"}, "text": {"type": "string"}}, "required": ["identifier", "text"]}, "part": {"type": "object", "properties": {"identifier": {"type": "string"}, "text": {"type": "string"}}, "required": ["identifier", "text"]}, "heading": {"type": "object", "properties": {"title": {"type": "string"}, "chaptersection": {"type": "string"}, "identifier": {"type": "string"}, "catch_text": {"type": "string"}}, "required": ["title", "chaptersection", "identifier", "catch_text"]}}, "required": ["text", "historical", "credits", "sections", "division", "title", "chapter", "subchapter", "part", "heading"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"text" : "The Mayor of the District of Columbia shall have no power to anticipate taxes by a sale or hypothecation of any such taxes or evidences thereof.", "historical" : "Prior Codifications\n\n1981 Ed., \u00a7 1-310.\n\n1973 Ed., \u00a7 1-219.\n\nChange in Government\n\nThis section originated at a time when local government powers were delegated to a Board of Commissioners of the District of Columbia (see Acts Relating to the Establishment of the District of Columbia and its Various Forms of Governmental Organization in Volume 1). Section 401 of Reorganization Plan No. 3 of 1967 (see Reorganization Plans in Volume 1) transferred all of the functions of the Board of Commissioners under this section to a single Commissioner. The District of Columbia Self-Government and Governmental Reorganization Act, 87 Stat. 818, \u00a7 711 (D.C. Code, \u00a7 1-207.11), abolished the District of Columbia Council and the Office of Commissioner of the District of Columbia. These branches of government were replaced by the Council of the District of Columbia and the Office of Mayor of the District of Columbia, respectively. Accordingly, and also pursuant to \u00a7 714(a) of such Act (D.C. Code, \u00a7 1-207.11(a)), appropriate changes in terminology were made in this section.\n\nDC CODE \u00a7 1-301.70\n\nCurrent through December 11, 2012", "credits" : "(June 11, 1878, 20 Stat. 104, ch. 180, \u00a7 3.)", "sections" : [], "division" : {"identifier" : "I", "text" : "Government of District."}, "title" : {"identifier" : "1", "text" : "Government Organization. (Refs & Annos)"}, "chapter" : {"identifier" : "3", "text" : "Specified Governmental Authority."}, "subchapter" : {"identifier" : "I", "text" : "Additional Governmental Powers and Responsibilities."}, "part" : {"identifier" : "D", "text" : "The Mayor."}, "heading" : {"title" : "1", "chaptersection" : "301", "identifier" : "1-301.70", "catch_text" : "Taxes not to be anticipated by sale or hypothecation."}}
json_instruct
{"type": "object", "properties": {"text": {"type": "string"}, "historical": {"type": "string"}, "credits": {"type": "string"}, "sections": {"type": "array", "items": {}}, "division": {"type": "object", "properties": {"identifier": {"type": "string"}, "text": {"type": "string"}}, "required": ["identifier", "text"]}, "title": {"type": "object", "properties": {"identifier": {"type": "string"}, "text": {"type": "string"}}, "required": ["identifier", "text"]}, "chapter": {"type": "object", "properties": {"identifier": {"type": "string"}, "text": {"type": "string"}}, "required": ["identifier", "text"]}, "subchapter": {"type": "object", "properties": {"identifier": {"type": "string"}, "text": {"type": "string"}}, "required": ["identifier", "text"]}, "part": {"type": "object", "properties": {"identifier": {"type": "string"}, "text": {"type": "string"}}, "required": ["identifier", "text"]}, "heading": {"type": "object", "properties": {"title": {"type": "string"}, "chaptersection": {"type": "string"}, "identifier": {"type": "string"}, "catch_text": {"type": "string"}}, "required": ["title", "chaptersection", "identifier", "catch_text"]}}, "required": ["text", "historical", "credits", "sections", "division", "title", "chapter", "subchapter", "part", "heading"], "$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"}, "private": {"type": "boolean"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}}, "required": ["start"]}, "dependencies": {"type": "object", "properties": {"cookie-parser": {"type": "string"}, "debug": {"type": "string"}, "express": {"type": "string"}, "morgan": {"type": "string"}, "mysql2": {"type": "string"}, "npm": {"type": "string"}, "sequelize": {"type": "string"}}, "required": ["cookie-parser", "debug", "express", "morgan", "mysql2", "npm", "sequelize"]}, "description": {"type": "string"}, "main": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}}, "required": ["name", "version", "private", "scripts", "dependencies", "description", "main", "keywords", "author", "license"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "mybackpolitwitter", "version" : "0.0.1", "private" : true, "scripts" : {"start" : "node ./bin/www"}, "dependencies" : {"cookie-parser" : "~1.4.4", "debug" : "~2.6.9", "express" : "^4.16.4", "morgan" : "~1.9.1", "mysql2" : "^2.2.5", "npm" : "^6.14.3", "sequelize" : "^5.22.3"}, "description" : "Back end para un ejmplo de aplicaci\u00f3n tipo twitter", "main" : "app.js", "keywords" : ["expressjs", "twittersample", "sequalize", "nodejs", "mysql"], "author" : "Juan David Lis Santofimio", "license" : "MIT"}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "private": {"type": "boolean"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}}, "required": ["start"]}, "dependencies": {"type": "object", "properties": {"cookie-parser": {"type": "string"}, "debug": {"type": "string"}, "express": {"type": "string"}, "morgan": {"type": "string"}, "mysql2": {"type": "string"}, "npm": {"type": "string"}, "sequelize": {"type": "string"}}, "required": ["cookie-parser", "debug", "express", "morgan", "mysql2", "npm", "sequelize"]}, "description": {"type": "string"}, "main": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}}, "required": ["name", "version", "private", "scripts", "dependencies", "description", "main", "keywords", "author", "license"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"files": {"type": "object", "properties": {"main.css": {"type": "string"}, "main.js": {"type": "string"}, "main.js.map": {"type": "string"}, "runtime-main.js": {"type": "string"}, "runtime-main.js.map": {"type": "string"}, "static/css/2.e5ecee43.chunk.css": {"type": "string"}, "static/js/2.151a0315.chunk.js": {"type": "string"}, "static/js/2.151a0315.chunk.js.map": {"type": "string"}, "index.html": {"type": "string"}, "precache-manifest.232f9f769b0a813221e79ac6f1b1d0ed.js": {"type": "string"}, "service-worker.js": {"type": "string"}, "static/css/2.e5ecee43.chunk.css.map": {"type": "string"}, "static/css/main.2a05a445.chunk.css.map": {"type": "string"}, "static/js/2.151a0315.chunk.js.LICENSE.txt": {"type": "string"}}, "required": ["main.css", "main.js", "main.js.map", "runtime-main.js", "runtime-main.js.map", "static/css/2.e5ecee43.chunk.css", "static/js/2.151a0315.chunk.js", "static/js/2.151a0315.chunk.js.map", "index.html", "precache-manifest.232f9f769b0a813221e79ac6f1b1d0ed.js", "service-worker.js", "static/css/2.e5ecee43.chunk.css.map", "static/css/main.2a05a445.chunk.css.map", "static/js/2.151a0315.chunk.js.LICENSE.txt"]}, "entrypoints": {"type": "array", "items": {"type": "string"}}}, "required": ["files", "entrypoints"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"files" : {"main.css" : "./static/css/main.2a05a445.chunk.css", "main.js" : "./static/js/main.67d77ec0.chunk.js", "main.js.map" : "./static/js/main.67d77ec0.chunk.js.map", "runtime-main.js" : "./static/js/runtime-main.365f897b.js", "runtime-main.js.map" : "./static/js/runtime-main.365f897b.js.map", "static/css/2.e5ecee43.chunk.css" : "./static/css/2.e5ecee43.chunk.css", "static/js/2.151a0315.chunk.js" : "./static/js/2.151a0315.chunk.js", "static/js/2.151a0315.chunk.js.map" : "./static/js/2.151a0315.chunk.js.map", "index.html" : "./index.html", "precache-manifest.232f9f769b0a813221e79ac6f1b1d0ed.js" : "./precache-manifest.232f9f769b0a813221e79ac6f1b1d0ed.js", "service-worker.js" : "./service-worker.js", "static/css/2.e5ecee43.chunk.css.map" : "./static/css/2.e5ecee43.chunk.css.map", "static/css/main.2a05a445.chunk.css.map" : "./static/css/main.2a05a445.chunk.css.map", "static/js/2.151a0315.chunk.js.LICENSE.txt" : "./static/js/2.151a0315.chunk.js.LICENSE.txt"}, "entrypoints" : ["static/js/runtime-main.365f897b.js", "static/css/2.e5ecee43.chunk.css", "static/js/2.151a0315.chunk.js", "static/css/main.2a05a445.chunk.css", "static/js/main.67d77ec0.chunk.js"]}
json_instruct
{"type": "object", "properties": {"files": {"type": "object", "properties": {"main.css": {"type": "string"}, "main.js": {"type": "string"}, "main.js.map": {"type": "string"}, "runtime-main.js": {"type": "string"}, "runtime-main.js.map": {"type": "string"}, "static/css/2.e5ecee43.chunk.css": {"type": "string"}, "static/js/2.151a0315.chunk.js": {"type": "string"}, "static/js/2.151a0315.chunk.js.map": {"type": "string"}, "index.html": {"type": "string"}, "precache-manifest.232f9f769b0a813221e79ac6f1b1d0ed.js": {"type": "string"}, "service-worker.js": {"type": "string"}, "static/css/2.e5ecee43.chunk.css.map": {"type": "string"}, "static/css/main.2a05a445.chunk.css.map": {"type": "string"}, "static/js/2.151a0315.chunk.js.LICENSE.txt": {"type": "string"}}, "required": ["main.css", "main.js", "main.js.map", "runtime-main.js", "runtime-main.js.map", "static/css/2.e5ecee43.chunk.css", "static/js/2.151a0315.chunk.js", "static/js/2.151a0315.chunk.js.map", "index.html", "precache-manifest.232f9f769b0a813221e79ac6f1b1d0ed.js", "service-worker.js", "static/css/2.e5ecee43.chunk.css.map", "static/css/main.2a05a445.chunk.css.map", "static/js/2.151a0315.chunk.js.LICENSE.txt"]}, "entrypoints": {"type": "array", "items": {"type": "string"}}}, "required": ["files", "entrypoints"], "$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"}, "types": {"type": "string"}, "files": {"type": "array", "items": {"type": "string"}}, "scripts": {"type": "object", "properties": {"build": {"type": "string"}, "clean": {"type": "string"}}, "required": ["build", "clean"]}}, "required": ["name", "version", "main", "types", "files", "scripts"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "@ockam/ockam", "version" : "0.0.0", "main" : "lib/index.js", "types" : "lib/index.d.ts", "files" : ["lib/**/*"], "scripts" : {"build" : "tsc --build", "clean" : "rimraf lib tsconfig.tsbuildinfo"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "main": {"type": "string"}, "types": {"type": "string"}, "files": {"type": "array", "items": {"type": "string"}}, "scripts": {"type": "object", "properties": {"build": {"type": "string"}, "clean": {"type": "string"}}, "required": ["build", "clean"]}}, "required": ["name", "version", "main", "types", "files", "scripts"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"address": {"type": "string"}, "cert_auth_type": {"type": "string"}, "cert_sign": {"type": "string"}, "cert_user_id": {"type": "string"}, "files": {"type": "object", "properties": {}, "required": []}, "inner_path": {"type": "string"}, "modified": {"type": "integer"}, "signs": {"type": "object", "properties": {"17vKbxL13KnzGATstqawXSG2oiQygmdkcX": {"type": "string"}}, "required": ["17vKbxL13KnzGATstqawXSG2oiQygmdkcX"]}, "user": {"type": "array", "items": {"type": "object", "properties": {"avatar": {"type": "string"}, "bg": {"type": "string"}, "date_added": {"type": "integer"}, "hub": {"type": "string"}, "intro": {"type": "string"}, "user_name": {"type": "string"}}, "required": ["avatar", "bg", "date_added", "hub", "intro", "user_name"]}}}, "required": ["address", "cert_auth_type", "cert_sign", "cert_user_id", "files", "inner_path", "modified", "signs", "user"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"address" : "1UDbADib99KE9d3qZ87NqJF2QLTHmMkoV", "cert_auth_type" : "web", "cert_sign" : "GypAlBnbqiZUrPHLKHBWR6R7JMGnCm0RtX1CaRg5zSq22Yc8qaqbNTZ5LDrXKPRz3qMqJK674/emZlnehJwmPYw=", "cert_user_id" : "zeronet0@zeroid.bit", "files" : {}, "inner_path" : "data/userdb/17vKbxL13KnzGATstqawXSG2oiQygmdkcX/content.json", "modified" : 1493886977, "signs" : {"17vKbxL13KnzGATstqawXSG2oiQygmdkcX" : "GxfXf7ziJBO3oGq5G7vstKsgyTzvl/Z2jyAjgSu5sOjrYVBMq+bsFnI7/N4+HGJ1BaBnRrTtW1RfN+qvHd1avmM="}, "user" : [{"avatar" : "png", "bg" : "jpg", "date_added" : 1492921635, "hub" : "1ABFCaadiEa3bFNzN3RcCZSsviqMNTbz3m", "intro" : "\u5076\u5c14\u8f6c\u63a8", "user_name" : "ZeroNet"}]}
json_instruct
{"type": "object", "properties": {"address": {"type": "string"}, "cert_auth_type": {"type": "string"}, "cert_sign": {"type": "string"}, "cert_user_id": {"type": "string"}, "files": {"type": "object", "properties": {}, "required": []}, "inner_path": {"type": "string"}, "modified": {"type": "integer"}, "signs": {"type": "object", "properties": {"17vKbxL13KnzGATstqawXSG2oiQygmdkcX": {"type": "string"}}, "required": ["17vKbxL13KnzGATstqawXSG2oiQygmdkcX"]}, "user": {"type": "array", "items": {"type": "object", "properties": {"avatar": {"type": "string"}, "bg": {"type": "string"}, "date_added": {"type": "integer"}, "hub": {"type": "string"}, "intro": {"type": "string"}, "user_name": {"type": "string"}}, "required": ["avatar", "bg", "date_added", "hub", "intro", "user_name"]}}}, "required": ["address", "cert_auth_type", "cert_sign", "cert_user_id", "files", "inner_path", "modified", "signs", "user"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"title": {"type": "string"}, "explanation": {"type": "string"}, "date": {"type": "string"}, "hdurl": {"type": "string"}, "service_version": {"type": "string"}, "copyright": {"type": "string"}, "media_type": {"type": "string"}, "url": {"type": "string"}}, "required": ["title", "explanation", "date", "hdurl", "service_version", "copyright", "media_type", "url"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"title" : "M78: Stardust and Starlight", "explanation" : "Interstellar dust clouds and bright nebulae abound in the fertile constellation of Orion. One of the brightest, M78, is just left of center in this colorful telescopic view, covering an area north of Orion's belt. At a distance of about 1,500 light-years, the bluish nebula itself is about 5 light-years across. Its blue tint is due to dust preferentially reflecting the blue light of hot, young stars in the region. Dark dust lanes and other nebulae can easily be traced through this gorgeous skyscape. The scene also includes the remarkable McNeil's Nebula -- a newly recognized nebula associated with the formation of a sun-like star, and the telltale reddish glow of many Herbig- Haro objects, energetic jets from stars in the process of formation.", "date" : "2013-10-10", "hdurl" : "https://apod.nasa.gov/apod/image/1310/M78_hallas.jpg", "service_version" : "v1", "copyright" : "Tony Hallas", "media_type" : "image", "url" : "https://apod.nasa.gov/apod/image/1310/M78_hallas950.jpg"}
json_instruct
{"type": "object", "properties": {"title": {"type": "string"}, "explanation": {"type": "string"}, "date": {"type": "string"}, "hdurl": {"type": "string"}, "service_version": {"type": "string"}, "copyright": {"type": "string"}, "media_type": {"type": "string"}, "url": {"type": "string"}}, "required": ["title", "explanation", "date", "hdurl", "service_version", "copyright", "media_type", "url"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"hash": {"type": "string"}, "parentHash": {"type": "string"}, "number": {"type": "integer"}, "timestamp": {"type": "integer"}, "nonce": {"type": "string"}, "difficulty": {"type": "integer"}, "gasLimit": {"type": "object", "properties": {"_hex": {"type": "string"}}, "required": ["_hex"]}, "gasUsed": {"type": "object", "properties": {"_hex": {"type": "string"}}, "required": ["_hex"]}, "miner": {"type": "string"}, "extraData": {"type": "string"}, "transactions": {"type": "array", "items": {"type": "object", "properties": {"hash": {"type": "string"}, "blockHash": {"type": "string"}, "blockNumber": {"type": "integer"}, "transactionIndex": {"type": "integer"}, "confirmations": {"type": "null"}, "from": {"type": "string"}, "gasPrice": {"type": "object", "properties": {"_hex": {"type": "string"}}, "required": ["_hex"]}, "gasLimit": {"type": "object", "properties": {"_hex": {"type": "string"}}, "required": ["_hex"]}, "to": {"type": "string"}, "value": {"type": "object", "properties": {"_hex": {"type": "string"}}, "required": ["_hex"]}, "nonce": {"type": "integer"}, "data": {"type": "string"}, "r": {"type": "string"}, "s": {"type": "string"}, "v": {"type": "integer"}, "creates": {"type": "null"}, "raw": {"type": "string"}, "networkId": {"type": "integer"}, "chainId": {"type": "integer"}}, "required": ["hash", "blockHash", "blockNumber", "transactionIndex", "confirmations", "from", "gasPrice", "gasLimit", "to", "value", "nonce", "data", "r", "s", "v", "creates", "raw", "networkId", "chainId"]}}}, "required": ["hash", "parentHash", "number", "timestamp", "nonce", "difficulty", "gasLimit", "gasUsed", "miner", "extraData", "transactions"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"hash" : "0x13f7585d7be0cd036804187ab66b6bd9737058d2ca83528feae5a675939e1f01", "parentHash" : "0xc605e41697fb416f78838bca906f324cf62d12f97f071a723edd284476ad5015", "number" : 103404, "timestamp" : 1439852846, "nonce" : "0x76e3c8a061202730", "difficulty" : 4160394110512, "gasLimit" : {"_hex" : "0x2fefd8"}, "gasUsed" : {"_hex" : "0x5208"}, "miner" : "0x8a8708067A9cc19AB7e4e7421F1AB8E1174255d1", "extraData" : "0xd983010001844765746887676f312e342e328777696e646f7773", "transactions" : [{"hash" : "0x5b0201dd62f0f3c1ccaca9e103dc5fe8087ef7feb7c7a7b7452abe131b15af72", "blockHash" : "0x13f7585d7be0cd036804187ab66b6bd9737058d2ca83528feae5a675939e1f01", "blockNumber" : 103404, "transactionIndex" : 0, "confirmations" : null, "from" : "0x743d4BEc153584BfA955305c168A1435Ec883049", "gasPrice" : {"_hex" : "0x174876e800"}, "gasLimit" : {"_hex" : "0xc350"}, "to" : "0x3175a28CF6105466923f11bFFabD279F162aa2f8", "value" : {"_hex" : "0x470de4df820000"}, "nonce" : 3, "data" : "0x", "r" : "0x7a3d72433af57aeb8883c375c9dc6fa46e264eca250842d2ef585379494cf79c", "s" : "0xe808357fed1e99e2ae0194cd294cc772411bee4837277d61c958acc1243bae2a", "v" : 27, "creates" : null, "raw" : "0xf86b0385174876e80082c350943175a28cf6105466923f11bffabd279f162aa2f887470de4df820000801ba07a3d72433af57aeb8883c375c9dc6fa46e264eca250842d2ef585379494cf79ca0e808357fed1e99e2ae0194cd294cc772411bee4837277d61c958acc1243bae2a", "networkId" : 0, "chainId" : 0}]}
json_instruct
{"type": "object", "properties": {"hash": {"type": "string"}, "parentHash": {"type": "string"}, "number": {"type": "integer"}, "timestamp": {"type": "integer"}, "nonce": {"type": "string"}, "difficulty": {"type": "integer"}, "gasLimit": {"type": "object", "properties": {"_hex": {"type": "string"}}, "required": ["_hex"]}, "gasUsed": {"type": "object", "properties": {"_hex": {"type": "string"}}, "required": ["_hex"]}, "miner": {"type": "string"}, "extraData": {"type": "string"}, "transactions": {"type": "array", "items": {"type": "object", "properties": {"hash": {"type": "string"}, "blockHash": {"type": "string"}, "blockNumber": {"type": "integer"}, "transactionIndex": {"type": "integer"}, "confirmations": {"type": "null"}, "from": {"type": "string"}, "gasPrice": {"type": "object", "properties": {"_hex": {"type": "string"}}, "required": ["_hex"]}, "gasLimit": {"type": "object", "properties": {"_hex": {"type": "string"}}, "required": ["_hex"]}, "to": {"type": "string"}, "value": {"type": "object", "properties": {"_hex": {"type": "string"}}, "required": ["_hex"]}, "nonce": {"type": "integer"}, "data": {"type": "string"}, "r": {"type": "string"}, "s": {"type": "string"}, "v": {"type": "integer"}, "creates": {"type": "null"}, "raw": {"type": "string"}, "networkId": {"type": "integer"}, "chainId": {"type": "integer"}}, "required": ["hash", "blockHash", "blockNumber", "transactionIndex", "confirmations", "from", "gasPrice", "gasLimit", "to", "value", "nonce", "data", "r", "s", "v", "creates", "raw", "networkId", "chainId"]}}}, "required": ["hash", "parentHash", "number", "timestamp", "nonce", "difficulty", "gasLimit", "gasUsed", "miner", "extraData", "transactions"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "patternId": {"type": "string"}, "severity": {"type": "integer"}, "line": {"type": "integer"}, "column": {"type": "integer"}, "content": {"type": "string"}}, "required": ["name", "patternId", "severity", "line", "column", "content"]}}}, "required": ["contract", "tool", "start", "end", "duration", "analysis"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"contract" : "0xd4a5cc3ddbd34933e1ee7fd98ab8189577d7151f", "tool" : "smartcheck", "start" : 1563616311.027738, "end" : 1563616319.1554258, "duration" : 8.127687692642212, "analysis" : [{"name" : "SOLIDITY_ADDRESS_HARDCODED", "patternId" : "a91b18", "severity" : 1, "line" : 80, "column" : 4, "content" : "owner=address(0)"}, {"name" : "SOLIDITY_DIV_MUL", "patternId" : "09hhh1", "severity" : 2, "line" : 229, "column" : 28, "content" : "totalTokens.div(totalPeriods).mul(timePassed.div(timePerPeriod))"}, {"name" : "SOLIDITY_PRAGMAS_VERSION", "patternId" : "23fc32", "severity" : 1, "line" : 1, "column" : 16, "content" : "^"}, {"name" : "SOLIDITY_SAFEMATH", "patternId" : "837cac", "severity" : 1, "line" : 157, "column" : 2, "content" : "usingSafeMathforuint;"}]}
json_instruct
{"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "patternId": {"type": "string"}, "severity": {"type": "integer"}, "line": {"type": "integer"}, "column": {"type": "integer"}, "content": {"type": "string"}}, "required": ["name", "patternId", "severity", "line", "column", "content"]}}}, "required": ["contract", "tool", "start", "end", "duration", "analysis"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"__type__": {"type": "string"}, "content": {"type": "object", "properties": {"name": {"type": "string"}, "texture": {"type": "string"}, "atlas": {"type": "string"}, "rect": {"type": "array", "items": {"type": "integer"}}, "offset": {"type": "array", "items": {"type": "integer"}}, "originalSize": {"type": "array", "items": {"type": "integer"}}, "capInsets": {"type": "array", "items": {"type": "integer"}}}, "required": ["name", "texture", "atlas", "rect", "offset", "originalSize", "capInsets"]}}, "required": ["__type__", "content"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"__type__" : "cc.SpriteFrame", "content" : {"name" : "img_tishikuang", "texture" : "a513f4ec-402a-48fa-ae43-5a1a5120861d", "atlas" : "", "rect" : [0, 0, 841, 483], "offset" : [0, 0], "originalSize" : [841, 483], "capInsets" : [0, 0, 0, 0]}}
json_instruct
{"type": "object", "properties": {"__type__": {"type": "string"}, "content": {"type": "object", "properties": {"name": {"type": "string"}, "texture": {"type": "string"}, "atlas": {"type": "string"}, "rect": {"type": "array", "items": {"type": "integer"}}, "offset": {"type": "array", "items": {"type": "integer"}}, "originalSize": {"type": "array", "items": {"type": "integer"}}, "capInsets": {"type": "array", "items": {"type": "integer"}}}, "required": ["name", "texture", "atlas", "rect", "offset", "originalSize", "capInsets"]}}, "required": ["__type__", "content"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "start": {"type": "string"}}, "required": ["test", "start"]}, "author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"express": {"type": "string"}, "normalize.css": {"type": "string"}, "purecss": {"type": "string"}}, "required": ["express", "normalize.css", "purecss"]}, "devDependencies": {"type": "object", "properties": {"babel-core": {"type": "string"}, "babel-loader": {"type": "string"}, "babel-preset-es2015": {"type": "string"}, "gulp": {"type": "string"}, "gulp-autoprefixer": {"type": "string"}, "gulp-concat": {"type": "string"}, "gulp-sass": {"type": "string"}, "gulp-uglify": {"type": "string"}, "gulp-util": {"type": "string"}, "webpack": {"type": "string"}, "webpack-dev-server": {"type": "string"}}, "required": ["babel-core", "babel-loader", "babel-preset-es2015", "gulp", "gulp-autoprefixer", "gulp-concat", "gulp-sass", "gulp-uglify", "gulp-util", "webpack", "webpack-dev-server"]}}, "required": ["name", "version", "description", "main", "scripts", "author", "license", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "neato", "version" : "0.0.1", "description" : "Neato kickstart template", "main" : "Gulpfile.js", "scripts" : {"test" : "echo \"Error: no test specified\" && exit 1", "start" : "webpack-dev-server"}, "author" : "Tibor Sz\u00e1sz", "license" : "MIT", "dependencies" : {"express" : "^4.13.1", "normalize.css" : "^3.0.3", "purecss" : "^0.6.0"}, "devDependencies" : {"babel-core" : "^6.3.26", "babel-loader" : "^6.2.1", "babel-preset-es2015" : "^6.3.13", "gulp" : "^3.9.0", "gulp-autoprefixer" : "^2.3.1", "gulp-concat" : "^2.6.0", "gulp-sass" : "^2.0.4", "gulp-uglify" : "^1.2.0", "gulp-util" : "^3.0.6", "webpack" : "^1.12.9", "webpack-dev-server" : "^1.14.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"}, "start": {"type": "string"}}, "required": ["test", "start"]}, "author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"express": {"type": "string"}, "normalize.css": {"type": "string"}, "purecss": {"type": "string"}}, "required": ["express", "normalize.css", "purecss"]}, "devDependencies": {"type": "object", "properties": {"babel-core": {"type": "string"}, "babel-loader": {"type": "string"}, "babel-preset-es2015": {"type": "string"}, "gulp": {"type": "string"}, "gulp-autoprefixer": {"type": "string"}, "gulp-concat": {"type": "string"}, "gulp-sass": {"type": "string"}, "gulp-uglify": {"type": "string"}, "gulp-util": {"type": "string"}, "webpack": {"type": "string"}, "webpack-dev-server": {"type": "string"}}, "required": ["babel-core", "babel-loader", "babel-preset-es2015", "gulp", "gulp-autoprefixer", "gulp-concat", "gulp-sass", "gulp-uglify", "gulp-util", "webpack", "webpack-dev-server"]}}, "required": ["name", "version", "description", "main", "scripts", "author", "license", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}, "licenses": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "dependencies": {"type": "object", "properties": {"gulp-jshint": {"type": "string"}, "map-stream": {"type": "string"}, "spm-log": {"type": "string"}, "vinyl-fs": {"type": "string"}}, "required": ["gulp-jshint", "map-stream", "spm-log", "vinyl-fs"]}}, "required": ["name", "version", "description", "scripts", "repository", "keywords", "author", "licenses", "bugs", "homepage", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "dong-check", "version" : "0.0.1", "description" : "check js with jshint", "scripts" : {"test" : "echo \"Error: no test specified\" && exit 1"}, "repository" : {"type" : "git", "url" : "git://github.com/crossjs/dong-check.git"}, "keywords" : ["check", "generator"], "author" : {"name" : "crossjs", "email" : "liwenfu@crossjs.com"}, "licenses" : [{"type" : "MIT", "url" : "https://github.com/crossjs/dong-check/blob/master/LICENSE-MIT"}], "bugs" : {"url" : "https://github.com/crossjs/dong-check/issues"}, "homepage" : "https://github.com/crossjs/dong-check", "dependencies" : {"gulp-jshint" : "^1.10.0", "map-stream" : "0.0.5", "spm-log" : "^0.1.2", "vinyl-fs" : "^1.0.0"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}, "licenses": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "dependencies": {"type": "object", "properties": {"gulp-jshint": {"type": "string"}, "map-stream": {"type": "string"}, "spm-log": {"type": "string"}, "vinyl-fs": {"type": "string"}}, "required": ["gulp-jshint", "map-stream", "spm-log", "vinyl-fs"]}}, "required": ["name", "version", "description", "scripts", "repository", "keywords", "author", "licenses", "bugs", "homepage", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "array", "items": {"type": "object", "properties": {"picture": {"type": "string"}, "symbol": {"type": "string"}, "description": {"type": "string"}}, "required": ["picture", "symbol", "description"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"picture" : "water.png", "symbol" : "WTR", "description" : "Is wet"}, {"picture" : "rock.png", "symbol" : "RCK", "description" : "a.k.a. Dwayne Johnson"}, {"picture" : "fire.png", "symbol" : "FIR", "description" : "Don't touch it!"}, {"picture" : "air.png", "symbol" : "AIR", "description" : "The fresh prince of Bel"}, {"picture" : "energy.png", "symbol" : "NRGY", "description" : "Used to mine crypto"}, {"picture" : "idea.png", "symbol" : "IDEA", "description" : "Do you have any?"}, {"picture" : "money.png", "symbol" : "MNY", "description" : "\"I'm here for the tech\""}, {"picture" : "bitcoin.png", "symbol" : "BTC", "description" : "Fake internet money"}, {"picture" : "ethereum.png", "symbol" : "ETH", "description" : "Fake internet computer"}, {"picture" : "poop.png", "symbol" : "PP", "description" : "Don't hodl it!"}, {"picture" : "earth.png", "symbol" : "RTH", "description" : "Maybe it's flat"}, {"picture" : "time.png", "symbol" : "TM", "description" : "real user sys"}, {"picture" : "tools.png", "symbol" : "TLS", "description" : "BUIDL!"}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"picture": {"type": "string"}, "symbol": {"type": "string"}, "description": {"type": "string"}}, "required": ["picture", "symbol", "description"]}, "$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" : "stichometrical", "definition" : "Of or pertaining to stichometry; characterized by stichs, or lines."}
json_instruct
{"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "array", "items": {"type": "object", "properties": {"firstname": {"type": "string"}, "lastname": {"type": "string"}, "email": {"type": "string"}, "sex": {"type": "string"}}, "required": ["firstname", "lastname", "email", "sex"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"firstname" : "John", "lastname" : "Doe", "email" : "john.doe@tu-dortmund.de", "sex" : "male"}, {"firstname" : "Jane", "lastname" : "Doe", "email" : "jane.doe@tu-dortmund.de", "sex" : "female"}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"firstname": {"type": "string"}, "lastname": {"type": "string"}, "email": {"type": "string"}, "sex": {"type": "string"}}, "required": ["firstname", "lastname", "email", "sex"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"pre1": {"type": "string"}, "pre2": {"type": "string"}, "pre3": {"type": "string"}, "pre4": {"type": "string"}, "pre5": {"type": "string"}, "pre6": {"type": "string"}, "pre7": {"type": "string"}, "pre8": {"type": "string"}, "pre9": {"type": "string"}, "pre10": {"type": "string"}, "pre11": {"type": "string"}, "pre12": {"type": "string"}, "pre13": {"type": "string"}, "pre14": {"type": "string"}, "pre15": {"type": "string"}, "pre16": {"type": "string"}, "pre17": {"type": "string"}, "pre18": {"type": "string"}, "pre19": {"type": "string"}, "pre20": {"type": "string"}, "pre21": {"type": "string"}}, "required": ["pre1", "pre2", "pre3", "pre4", "pre5", "pre6", "pre7", "pre8", "pre9", "pre10", "pre11", "pre12", "pre13", "pre14", "pre15", "pre16", "pre17", "pre18", "pre19", "pre20", "pre21"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"pre1" : "3", "pre2" : "1", "pre3" : "1", "pre4" : "2", "pre5" : "1", "pre6" : "1", "pre7" : "3", "pre8" : "3", "pre9" : "2", "pre10" : "1", "pre11" : "3", "pre12" : "1", "pre13" : "3", "pre14" : "1", "pre15" : "3", "pre16" : "1", "pre17" : "3", "pre18" : "1", "pre19" : "2", "pre20" : "2", "pre21" : "3"}
json_instruct
{"type": "object", "properties": {"pre1": {"type": "string"}, "pre2": {"type": "string"}, "pre3": {"type": "string"}, "pre4": {"type": "string"}, "pre5": {"type": "string"}, "pre6": {"type": "string"}, "pre7": {"type": "string"}, "pre8": {"type": "string"}, "pre9": {"type": "string"}, "pre10": {"type": "string"}, "pre11": {"type": "string"}, "pre12": {"type": "string"}, "pre13": {"type": "string"}, "pre14": {"type": "string"}, "pre15": {"type": "string"}, "pre16": {"type": "string"}, "pre17": {"type": "string"}, "pre18": {"type": "string"}, "pre19": {"type": "string"}, "pre20": {"type": "string"}, "pre21": {"type": "string"}}, "required": ["pre1", "pre2", "pre3", "pre4", "pre5", "pre6", "pre7", "pre8", "pre9", "pre10", "pre11", "pre12", "pre13", "pre14", "pre15", "pre16", "pre17", "pre18", "pre19", "pre20", "pre21"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"type": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["type", "coordinates"]}, "properties": {"type": "object", "properties": {"code": {"type": "integer"}, "url": {"type": "string"}, "view": {"type": "string"}}, "required": ["code", "url", "view"]}}, "required": ["type", "geometry", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"type" : "Feature", "geometry" : {"type" : "Polygon", "coordinates" : [[[131.0, 38.25], [131.0, 38.333333333333336], [131.125, 38.333333333333336], [131.125, 38.25], [131.0, 38.25]]]}, "properties" : {"code" : 573130, "url" : "http://madefor.github.io/0410/api/v1/573130.geojson", "view" : "https://github.com/madefor/0410/blob/gh-pages/api/v1/573130.geojson"}}
json_instruct
{"type": "object", "properties": {"type": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["type", "coordinates"]}, "properties": {"type": "object", "properties": {"code": {"type": "integer"}, "url": {"type": "string"}, "view": {"type": "string"}}, "required": ["code", "url", "view"]}}, "required": ["type", "geometry", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"id": {"type": "integer"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"src:alt_label": {"type": "string"}, "src:geom": {"type": "string"}, "wof:geomhash": {"type": "string"}, "wof:id": {"type": "integer"}, "wof:repo": {"type": "string"}}, "required": ["src:alt_label", "src:geom", "wof:geomhash", "wof:id", "wof:repo"]}, "bbox": {"type": "array", "items": {"type": "number"}}, "geometry": {"type": "object", "properties": {"coordinates": {"type": "array", "items": {"type": "number"}}, "type": {"type": "string"}}, "required": ["coordinates", "type"]}}, "required": ["id", "type", "properties", "bbox", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : 1193165961, "type" : "Feature", "properties" : {"src:alt_label" : "geonames", "src:geom" : "geonames", "wof:geomhash" : "bda905d1b7bc093472da45aa728d8113", "wof:id" : 1193165961, "wof:repo" : "whosonfirst-data-admin-gb"}, "bbox" : [-0.7511, 51.11131, -0.7511, 51.11131], "geometry" : {"coordinates" : [-0.7511, 51.11131], "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": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {"type": "integer"}}, "productReviews": {"type": "array", "items": {"type": "object", "properties": {"productId": {"type": "integer"}, "reviewText": {"type": "string"}, "reviewDate": {"type": "string"}}, "required": ["productId", "reviewText", "reviewDate"]}}}, "required": ["userId", "cartId", "preferredProducts", "productReviews"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"userId" : 99177, "cartId" : "350248d3-182f-43ff-9395-e0aac25ae931", "preferredProducts" : [2267, 4618], "productReviews" : [{"productId" : 4823, "reviewText" : "My neighbor Frona has one of these. She works as a gambler and she says it looks bearded.", "reviewDate" : "2018-07-26T21:25:41.9908406+03:00"}]}
json_instruct
{"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {"type": "integer"}}, "productReviews": {"type": "array", "items": {"type": "object", "properties": {"productId": {"type": "integer"}, "reviewText": {"type": "string"}, "reviewDate": {"type": "string"}}, "required": ["productId", "reviewText", "reviewDate"]}}}, "required": ["userId", "cartId", "preferredProducts", "productReviews"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"contacts": {"type": "array", "items": {}}, "guideStarURL": {"type": "string"}, "name": {"type": "string"}, "primaryEmail": {"type": "string"}, "website": {"type": "string"}, "organisationType": {"type": "array", "items": {"type": "string"}}, "telephone": {"type": "array", "items": {"type": "string"}}, "mainAddrress": {"type": "object", "properties": {"state": {"type": "string"}, "address": {"type": "array", "items": {"type": "string"}}}, "required": ["state", "address"]}, "briefDescription": {"type": "string"}, "yearOfEstablishment": {"type": "string"}}, "required": ["contacts", "guideStarURL", "name", "primaryEmail", "website", "organisationType", "telephone", "mainAddrress", "briefDescription", "yearOfEstablishment"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"contacts" : [], "guideStarURL" : "http://www.guidestarindia.org/Summary.aspx?CCReg=8865", "name" : "YASHWANT CHARITABLE SANSTHA", "primaryEmail" : "yashwantcharitabletrust@gmail.com", "website" : "www.yashwantcharitabletrust.com", "organisationType" : ["Support"], "telephone" : ["919766278041", "918657731850"], "mainAddrress" : {"state" : "Maharashtra", "address" : ["A/P-Bambavade Tal-Shirala", "Sangli", "Maharashtra", "415410"]}, "briefDescription" : "Yashwant Charitable Sanstha is located in Sangli, Maharashtra.", "yearOfEstablishment" : "2009"}
json_instruct
{"type": "object", "properties": {"contacts": {"type": "array", "items": {}}, "guideStarURL": {"type": "string"}, "name": {"type": "string"}, "primaryEmail": {"type": "string"}, "website": {"type": "string"}, "organisationType": {"type": "array", "items": {"type": "string"}}, "telephone": {"type": "array", "items": {"type": "string"}}, "mainAddrress": {"type": "object", "properties": {"state": {"type": "string"}, "address": {"type": "array", "items": {"type": "string"}}}, "required": ["state", "address"]}, "briefDescription": {"type": "string"}, "yearOfEstablishment": {"type": "string"}}, "required": ["contacts", "guideStarURL", "name", "primaryEmail", "website", "organisationType", "telephone", "mainAddrress", "briefDescription", "yearOfEstablishment"], "$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": {"type": "object", "properties": {"line": {"type": "integer"}, "column": {"type": "integer"}, "message": {"type": "string"}}, "required": ["line", "column", "message"]}}, "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" : "0x5aebcc44588feabb4a87076d17f3aa8c950a28e1", "tool" : "osiris", "start" : 1564607551.8016922, "end" : 1564607657.4846451, "duration" : 105.68295288085938, "analysis" : [{"errors" : [{"line" : 119, "column" : 33, "message" : "overflow_bugs"}, {"line" : 123, "column" : 16, "message" : "overflow_bugs"}, {"line" : 170, "column" : 9, "message" : "underflow_bugs"}, {"line" : 160, "column" : 9, "message" : "underflow_bugs"}], "file" : "/unique_chucks/37/0x5aebcc44588feabb4a87076d17f3aa8c950a28e1.sol", "name" : "PPNToken"}, {"errors" : [{"line" : 21, "column" : 21, "message" : "underflow_bugs"}], "file" : "/unique_chucks/37/0x5aebcc44588feabb4a87076d17f3aa8c950a28e1.sol", "name" : "PPNTokenIssue"}, {"errors" : [], "file" : "/unique_chucks/37/0x5aebcc44588feabb4a87076d17f3aa8c950a28e1.sol", "name" : "SafeOpt"}]}
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": {"type": "object", "properties": {"line": {"type": "integer"}, "column": {"type": "integer"}, "message": {"type": "string"}}, "required": ["line", "column", "message"]}}, "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#"}
Create a JSON structure that matches this schema definition: {"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" : [[[-83.510153, 42.380804], [-83.510094, 42.382175], [-83.486869, 42.382782], [-83.486495, 42.37619], [-83.480457, 42.374872], [-83.480216, 42.371525], [-83.485158, 42.371733], [-83.503744, 42.365174], [-83.509036, 42.364991], [-83.510153, 42.380804]]]}, "type" : "Feature", "properties" : {"cartodb_id" : 32926}}]}
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#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"type": {"type": "string"}, "level": {"type": "string"}, "label": {"type": "string"}, "locale": {"type": "string"}, "country_id": {"type": "integer"}, "country_reference": {"type": "integer"}, "country_name": {"type": "string"}, "region_id": {"type": "string"}, "region_reference": {"type": "string"}, "region_name": {"type": "string"}, "province_id": {"type": "string"}, "province_reference": {"type": "string"}, "province_name": {"type": "string"}, "city_id": {"type": "string"}, "city_reference": {"type": "string"}, "city_name": {"type": "string"}, "barangay_id": {"type": "string"}, "barangay_reference": {"type": "string"}, "barangay_name": {"type": "string"}}, "required": ["type", "level", "label", "locale", "country_id", "country_reference", "country_name", "region_id", "region_reference", "region_name", "province_id", "province_reference", "province_name", "city_id", "city_reference", "city_name", "barangay_id", "barangay_reference", "barangay_name"]}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}}, "required": ["type", "coordinates"]}}, "required": ["type", "properties", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"type" : "Feature", "properties" : {"type" : "barangay", "level" : "4", "label" : "Nagaja, Hernani, Eastern Samar, Eastern Visayas (Region VIII), PH", "locale" : "ph.eastern-visayas-region-viii.eastern-samar.hernani.nagaja", "country_id" : 177, "country_reference" : 177, "country_name" : "Philippines", "region_id" : "10", "region_reference" : "8", "region_name" : "Eastern Visayas (Region VIII)", "province_id" : "31", "province_reference" : "31", "province_name" : "Eastern Samar", "city_id" : "518", "city_reference" : "559", "city_name" : "Hernani", "barangay_id" : "14620", "barangay_reference" : "13532", "barangay_name" : "Nagaja"}, "geometry" : {"type" : "MultiPolygon", "coordinates" : [[[[125.632767, 11.35595], [125.632767, 11.35556], [125.6325, 11.35528], [125.632217, 11.35528], [125.632217, 11.355], [125.631943, 11.35472], [125.631668, 11.35472], [125.631668, 11.35444], [125.631393, 11.35417], [125.630547, 11.35417], [125.63028, 11.35389], [125.63028, 11.35361], [125.630547, 11.35333], [125.631264, 11.35232], [125.631813, 11.35163], [125.632767, 11.35083], [125.633057, 11.35056], [125.633057, 11.34667], [125.6325, 11.34324], [125.632736, 11.33982], [125.632767, 11.33938], [125.632767, 11.33745], [125.631943, 11.33611], [125.631393, 11.33556], [125.631111, 11.33556], [125.630836, 11.33583], [125.630836, 11.33639], [125.629723, 11.3375], [125.629173, 11.3375], [125.628891, 11.33778], [125.628723, 11.33778], [125.626663, 11.33778], [125.626389, 11.33806], [125.626106, 11.33778], [125.626106, 11.3375], [125.626007, 11.33739], [125.625832, 11.33722], [125.625832, 11.33667], [125.626389, 11.33611], [125.626389, 11.33583], [125.626106, 11.33556], [125.626106, 11.33528], [125.625832, 11.335], [125.625832, 11.33472], [125.625427, 11.33432], [125.625267, 11.33417], [125.624168, 11.33528], [125.623894, 11.33528], [125.623611, 11.335], [125.623337, 11.335], [125.62278, 11.33444], [125.62278, 11.33361], [125.622498, 11.33333], [125.618652, 11.33242], [125.617912, 11.33226], [125.627068, 11.35466], [125.632767, 11.35595]]]]}}
json_instruct
{"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"type": {"type": "string"}, "level": {"type": "string"}, "label": {"type": "string"}, "locale": {"type": "string"}, "country_id": {"type": "integer"}, "country_reference": {"type": "integer"}, "country_name": {"type": "string"}, "region_id": {"type": "string"}, "region_reference": {"type": "string"}, "region_name": {"type": "string"}, "province_id": {"type": "string"}, "province_reference": {"type": "string"}, "province_name": {"type": "string"}, "city_id": {"type": "string"}, "city_reference": {"type": "string"}, "city_name": {"type": "string"}, "barangay_id": {"type": "string"}, "barangay_reference": {"type": "string"}, "barangay_name": {"type": "string"}}, "required": ["type", "level", "label", "locale", "country_id", "country_reference", "country_name", "region_id", "region_reference", "region_name", "province_id", "province_reference", "province_name", "city_id", "city_reference", "city_name", "barangay_id", "barangay_reference", "barangay_name"]}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}}, "required": ["type", "coordinates"]}}, "required": ["type", "properties", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"Version": {"type": "string"}, "Logging": {"type": "object", "properties": {"LogLevel": {"type": "object", "properties": {"Default": {"type": "string"}, "Microsoft": {"type": "string"}, "Microsoft.Hosting.Lifetime": {"type": "string"}}, "required": ["Default", "Microsoft", "Microsoft.Hosting.Lifetime"]}}, "required": ["LogLevel"]}, "Serilog": {"type": "object", "properties": {"path": {"type": "string"}, "Using": {"type": "array", "items": {"type": "string"}}, "MinimumLevel": {"type": "object", "properties": {"Default": {"type": "string"}, "Override": {"type": "object", "properties": {"Microsoft": {"type": "string"}, "System": {"type": "string"}}, "required": ["Microsoft", "System"]}}, "required": ["Default", "Override"]}, "WriteTo": {"type": "array", "items": {"type": "object", "properties": {"Name": {"type": "string"}, "Args": {"type": "object", "properties": {"restrictedToMinimumLevel": {"type": "string"}, "telemetryConverter": {"type": "string"}}, "required": ["restrictedToMinimumLevel", "telemetryConverter"]}}, "required": ["Name", "Args"]}}}, "required": ["path", "Using", "MinimumLevel", "WriteTo"]}, "AllowedHosts": {"type": "string"}, "ApplicationInsights": {"type": "object", "properties": {"InstrumentationKey": {"type": "string"}}, "required": ["InstrumentationKey"]}}, "required": ["Version", "Logging", "Serilog", "AllowedHosts", "ApplicationInsights"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"Version" : "Local-Machine-1.0.0", "Logging" : {"LogLevel" : {"Default" : "Information", "Microsoft" : "Warning", "Microsoft.Hosting.Lifetime" : "Information"}}, "Serilog" : {"path" : "C:\\xDrive\\logs\\aedv-dnas-weatherforecastingdemo\\log-.json", "Using" : ["Serilog.Sinks.ApplicationInsights"], "MinimumLevel" : {"Default" : "Information", "Override" : {"Microsoft" : "Error", "System" : "Error"}}, "WriteTo" : [{"Name" : "ApplicationInsights", "Args" : {"restrictedToMinimumLevel" : "Information", "telemetryConverter" : "Serilog.Sinks.ApplicationInsights.Sinks.ApplicationInsights.TelemetryConverters.TraceTelemetryConverter, Serilog.Sinks.ApplicationInsights"}}]}, "AllowedHosts" : "*", "ApplicationInsights" : {"InstrumentationKey" : "<your-applicationinsights-key>"}}
json_instruct
{"type": "object", "properties": {"Version": {"type": "string"}, "Logging": {"type": "object", "properties": {"LogLevel": {"type": "object", "properties": {"Default": {"type": "string"}, "Microsoft": {"type": "string"}, "Microsoft.Hosting.Lifetime": {"type": "string"}}, "required": ["Default", "Microsoft", "Microsoft.Hosting.Lifetime"]}}, "required": ["LogLevel"]}, "Serilog": {"type": "object", "properties": {"path": {"type": "string"}, "Using": {"type": "array", "items": {"type": "string"}}, "MinimumLevel": {"type": "object", "properties": {"Default": {"type": "string"}, "Override": {"type": "object", "properties": {"Microsoft": {"type": "string"}, "System": {"type": "string"}}, "required": ["Microsoft", "System"]}}, "required": ["Default", "Override"]}, "WriteTo": {"type": "array", "items": {"type": "object", "properties": {"Name": {"type": "string"}, "Args": {"type": "object", "properties": {"restrictedToMinimumLevel": {"type": "string"}, "telemetryConverter": {"type": "string"}}, "required": ["restrictedToMinimumLevel", "telemetryConverter"]}}, "required": ["Name", "Args"]}}}, "required": ["path", "Using", "MinimumLevel", "WriteTo"]}, "AllowedHosts": {"type": "string"}, "ApplicationInsights": {"type": "object", "properties": {"InstrumentationKey": {"type": "string"}}, "required": ["InstrumentationKey"]}}, "required": ["Version", "Logging", "Serilog", "AllowedHosts", "ApplicationInsights"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"name": {"type": "string"}, "private": {"type": "boolean"}, "scripts": {"type": "object", "properties": {"lint": {"type": "string"}, "lint:fix": {"type": "string"}, "storybook:build": {"type": "string"}}, "required": ["lint", "lint:fix", "storybook:build"]}, "dependencies": {"type": "object", "properties": {"@babel/preset-typescript": {"type": "string"}, "@rails/actiontext": {"type": "string"}, "@rails/activestorage": {"type": "string"}, "@rails/ujs": {"type": "string"}, "@rails/webpacker": {"type": "string"}, "bootstrap": {"type": "string"}, "bootstrap.native": {"type": "string"}, "i18n-js": {"type": "string"}, "trix": {"type": "string"}, "typescript": {"type": "string"}, "webpack": {"type": "string"}, "webpack-cli": {"type": "string"}, "@storybook/addon-controls": {"type": "string"}, "@storybook/server": {"type": "string"}}, "required": ["@babel/preset-typescript", "@rails/actiontext", "@rails/activestorage", "@rails/ujs", "@rails/webpacker", "bootstrap", "bootstrap.native", "i18n-js", "trix", "typescript", "webpack", "webpack-cli", "@storybook/addon-controls", "@storybook/server"]}, "devDependencies": {"type": "object", "properties": {"@nimblehq/eslint-config-nimble": {"type": "string"}, "webpack-dev-server": {"type": "string"}}, "required": ["@nimblehq/eslint-config-nimble", "webpack-dev-server"]}, "version": {"type": "string"}}, "required": ["name", "private", "scripts", "dependencies", "devDependencies", "version"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "rails-view-component-blog", "private" : true, "scripts" : {"lint" : "eslint . --color", "lint:fix" : "eslint . --color --fix", "storybook:build" : "build-storybook -o public/_storybook"}, "dependencies" : {"@babel/preset-typescript" : "7.15.0", "@rails/actiontext" : "^6.1.3-1", "@rails/activestorage" : "^6.0.0", "@rails/ujs" : "^6.0.0", "@rails/webpacker" : "5.2.2", "bootstrap" : "4.5.2", "bootstrap.native" : "3.0.13", "i18n-js" : "3.8.0", "trix" : "^1.2.0", "typescript" : "4.3.5", "webpack" : "^4.46.0", "webpack-cli" : "^3.3.12", "@storybook/addon-controls" : "6.3.7", "@storybook/server" : "6.3.7"}, "devDependencies" : {"@nimblehq/eslint-config-nimble" : "2.1.1", "webpack-dev-server" : "3.11.2"}, "version" : "0.1.0"}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "private": {"type": "boolean"}, "scripts": {"type": "object", "properties": {"lint": {"type": "string"}, "lint:fix": {"type": "string"}, "storybook:build": {"type": "string"}}, "required": ["lint", "lint:fix", "storybook:build"]}, "dependencies": {"type": "object", "properties": {"@babel/preset-typescript": {"type": "string"}, "@rails/actiontext": {"type": "string"}, "@rails/activestorage": {"type": "string"}, "@rails/ujs": {"type": "string"}, "@rails/webpacker": {"type": "string"}, "bootstrap": {"type": "string"}, "bootstrap.native": {"type": "string"}, "i18n-js": {"type": "string"}, "trix": {"type": "string"}, "typescript": {"type": "string"}, "webpack": {"type": "string"}, "webpack-cli": {"type": "string"}, "@storybook/addon-controls": {"type": "string"}, "@storybook/server": {"type": "string"}}, "required": ["@babel/preset-typescript", "@rails/actiontext", "@rails/activestorage", "@rails/ujs", "@rails/webpacker", "bootstrap", "bootstrap.native", "i18n-js", "trix", "typescript", "webpack", "webpack-cli", "@storybook/addon-controls", "@storybook/server"]}, "devDependencies": {"type": "object", "properties": {"@nimblehq/eslint-config-nimble": {"type": "string"}, "webpack-dev-server": {"type": "string"}}, "required": ["@nimblehq/eslint-config-nimble", "webpack-dev-server"]}, "version": {"type": "string"}}, "required": ["name", "private", "scripts", "dependencies", "devDependencies", "version"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"title": {"type": "string"}, "author": {"type": "string"}, "description": {"type": "string"}, "thumb": {"type": "string"}, "download": {"type": "string"}, "origin": {"type": "string"}}, "required": ["title", "author", "description", "thumb", "download", "origin"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"title" : "Deep Blue Song - Light Ball Physics Experiment", "author" : "Alloystorm", "description" : "Recordedundefinedrealtimeundefined@60fpsundefinedwithundefinedDVVRundefined-undefinedaundefinedVRundefinedMMDundefinedplayerundefinedunderundefineddevelopment.", "thumb" : "//i.iwara.tv/sites/default/files/styles/thumbnail/public/video_embed_field_thumbnails/youtube/w77JF0grcqw.jpg?itok=rb0yr_yK", "download" : "https://www.iwara.tv/api/video/e7zg6ioom9imdq4ln", "origin" : "https://www.iwara.tv/videos/e7zg6ioom9imdq4ln"}
json_instruct
{"type": "object", "properties": {"title": {"type": "string"}, "author": {"type": "string"}, "description": {"type": "string"}, "thumb": {"type": "string"}, "download": {"type": "string"}, "origin": {"type": "string"}}, "required": ["title", "author", "description", "thumb", "download", "origin"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"id": {"type": "string"}, "symbol": {"type": "string"}, "name": {"type": "string"}, "platforms": {"type": "object", "properties": {"ethereum": {"type": "string"}}, "required": ["ethereum"]}, "hashing_algorithm": {"type": "null"}, "categories": {"type": "array", "items": {}}, "description": {"type": "object", "properties": {"en": {"type": "string"}}, "required": ["en"]}, "country_origin": {"type": "string"}, "genesis_date": {"type": "null"}, "contract_address": {"type": "string"}, "url": {"type": "string"}, "explorers": {"type": "array", "items": {"type": "string"}}, "twitter": {"type": "string"}, "telegram": {"type": "string"}}, "required": ["id", "symbol", "name", "platforms", "hashing_algorithm", "categories", "description", "country_origin", "genesis_date", "contract_address", "url", "explorers", "twitter", "telegram"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : "fission-cash", "symbol" : "fcx", "name" : "Fission Cash", "platforms" : {"ethereum" : "0x0b66015bc42601d5986b540373b4e02d7383c7c1"}, "hashing_algorithm" : null, "categories" : [], "description" : {"en" : "CX is a hyper-deflationary self-governing ERC20 token with inbuilt mechanisms\r\nto automatically burn 4% of the total supply and apply a 5% tax upon each transaction.\r\n\r\nThe inbuilt burn mechanism provides an immediate deflation of 4% each time the token is swapped or transferred causing the value of FCX to increase over time autonomously. Additionally, the 5% tax applied to each transaction is redistributed amongst holders of the token and provides an automatic yield generation without requiring any gas fees for the balance to be updated in token holders\u2019 wallets.\r\n\r\nUltimately, FCX builds on and improves the RFI framework by increasing the tax (and therefore the reward to holders) by a factor of 5, whilst also providing a 4% deflationary burn mechanic of which RFI lacks."}, "country_origin" : "", "genesis_date" : null, "contract_address" : "0x0b66015bc42601d5986b540373b4e02d7383c7c1", "url" : "https://fission.cash/", "explorers" : ["https://etherscan.io/token/0x0b66015bc42601d5986b540373b4e02d7383c7c1", "https://ethplorer.io/address/0x0b66015bc42601d5986b540373b4e02d7383c7c1"], "twitter" : "FissionCash", "telegram" : "FissionCash"}
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "symbol": {"type": "string"}, "name": {"type": "string"}, "platforms": {"type": "object", "properties": {"ethereum": {"type": "string"}}, "required": ["ethereum"]}, "hashing_algorithm": {"type": "null"}, "categories": {"type": "array", "items": {}}, "description": {"type": "object", "properties": {"en": {"type": "string"}}, "required": ["en"]}, "country_origin": {"type": "string"}, "genesis_date": {"type": "null"}, "contract_address": {"type": "string"}, "url": {"type": "string"}, "explorers": {"type": "array", "items": {"type": "string"}}, "twitter": {"type": "string"}, "telegram": {"type": "string"}}, "required": ["id", "symbol", "name", "platforms", "hashing_algorithm", "categories", "description", "country_origin", "genesis_date", "contract_address", "url", "explorers", "twitter", "telegram"], "$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"}, "ShortName": {"type": "string"}, "Description": {"type": "string"}}, "required": ["Name", "ShortName", "Description"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"Name" : "\u00d3ptica Hensoldt FF 4-16x56", "ShortName" : "FF 4-16", "Description" : "La mira telesc\u00f3pica Hensoldt FF 4-16x56 ha sido desarrollada para ofrecer el m\u00e1ximo rendimiento con alta capacidad de ajuste y manteniendo un sistema \u00f3ptico corto. Con un aumento de la transparencia en el rango espectral azul y brillo ajustable de la ret\u00edcula, es especialmente c\u00f3moda para condiciones de poca luz. La versi\u00f3n FF de la \u00f3ptica tiene la ret\u00edcula fijada en el primer plano de la imagen, de manera que el patr\u00f3n de la ret\u00edcula tambi\u00e9n aumenta cuando se cambia el aumento. Esto hace posible determinar la distancia al objetivo utilizando el MIL-DOT, sin necesidad de hacer ning\u00fan c\u00e1lculo."}
json_instruct
{"type": "object", "properties": {"Name": {"type": "string"}, "ShortName": {"type": "string"}, "Description": {"type": "string"}}, "required": ["Name", "ShortName", "Description"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "array", "items": {"type": "object", "properties": {"manufacturer": {"type": "string"}, "market_name": {"type": "string"}, "codename": {"type": "string"}, "model": {"type": "string"}}, "required": ["manufacturer", "market_name", "codename", "model"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"manufacturer" : "Diva", "market_name" : "T10K_Plus", "codename" : "T10K_Plus", "model" : "T10K_Plus"}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"manufacturer": {"type": "string"}, "market_name": {"type": "string"}, "codename": {"type": "string"}, "model": {"type": "string"}}, "required": ["manufacturer", "market_name", "codename", "model"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"dates": {"type": "object", "properties": {"2014-2015": {"type": "object", "properties": {"1": {"type": "object", "properties": {"L3": {"type": "object", "properties": {"start": {"type": "string"}, "end": {"type": "string"}}, "required": ["start", "end"]}, "M1": {"type": "object", "properties": {"start": {"type": "string"}, "end": {"type": "string"}}, "required": ["start", "end"]}, "M2": {"type": "object", "properties": {"start": {"type": "string"}, "end": {"type": "string"}}, "required": ["start", "end"]}}, "required": ["L3", "M1", "M2"]}, "2": {"type": "object", "properties": {"L3": {"type": "object", "properties": {"start": {"type": "string"}, "end": {"type": "string"}}, "required": ["start", "end"]}, "M1": {"type": "object", "properties": {"start": {"type": "string"}, "end": {"type": "string"}}, "required": ["start", "end"]}, "M2": {"type": "object", "properties": {"start": {"type": "string"}, "end": {"type": "string"}}, "required": ["start", "end"]}}, "required": ["L3", "M1", "M2"]}}, "required": ["1", "2"]}}, "required": ["2014-2015"]}}, "required": ["dates"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"dates" : {"2014-2015" : {"1" : {"L3" : {"start" : "2014-09-15", "end" : "2014-12-12"}, "M1" : {"start" : "2014-09-15", "end" : "2014-12-12"}, "M2" : {"start" : "2014-09-29", "end" : "2014-12-12"}}, "2" : {"L3" : {"start" : "2015-01-19", "end" : "2015-04-17"}, "M1" : {"start" : "2015-01-19", "end" : "2015-04-17"}, "M2" : {"start" : "2015-01-05", "end" : "2015-03-20"}}}}}
json_instruct
{"type": "object", "properties": {"dates": {"type": "object", "properties": {"2014-2015": {"type": "object", "properties": {"1": {"type": "object", "properties": {"L3": {"type": "object", "properties": {"start": {"type": "string"}, "end": {"type": "string"}}, "required": ["start", "end"]}, "M1": {"type": "object", "properties": {"start": {"type": "string"}, "end": {"type": "string"}}, "required": ["start", "end"]}, "M2": {"type": "object", "properties": {"start": {"type": "string"}, "end": {"type": "string"}}, "required": ["start", "end"]}}, "required": ["L3", "M1", "M2"]}, "2": {"type": "object", "properties": {"L3": {"type": "object", "properties": {"start": {"type": "string"}, "end": {"type": "string"}}, "required": ["start", "end"]}, "M1": {"type": "object", "properties": {"start": {"type": "string"}, "end": {"type": "string"}}, "required": ["start", "end"]}, "M2": {"type": "object", "properties": {"start": {"type": "string"}, "end": {"type": "string"}}, "required": ["start", "end"]}}, "required": ["L3", "M1", "M2"]}}, "required": ["1", "2"]}}, "required": ["2014-2015"]}}, "required": ["dates"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"name": {"type": "string"}, "main": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "author": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "repository": {"type": "string"}, "license": {"type": "string"}, "engines": {"type": "object", "properties": {"atom": {"type": "string"}}, "required": ["atom"]}, "consumedServices": {"type": "object", "properties": {"gpool-base": {"type": "object", "properties": {"versions": {"type": "object", "properties": {"1.0.0": {"type": "string"}}, "required": ["1.0.0"]}}, "required": ["versions"]}}, "required": ["gpool-base"]}, "dependencies": {"type": "object", "properties": {"atom-package-dependencies": {"type": "string"}, "atom-space-pen-views": {"type": "string"}}, "required": ["atom-package-dependencies", "atom-space-pen-views"]}, "package-dependencies": {"type": "object", "properties": {"gpool-base": {"type": "string"}}, "required": ["gpool-base"]}}, "required": ["name", "main", "version", "description", "author", "keywords", "repository", "license", "engines", "consumedServices", "dependencies", "package-dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "gpool-diff", "main" : "./lib/main", "version" : "1.0.1", "description" : "Plugin for 'gpool' that adds git diff status to the gutter", "author" : "thislooksfun", "keywords" : ["gpool", "diff"], "repository" : "https://github.com/thislooksfun/gpool-diff", "license" : "MIT", "engines" : {"atom" : ">=1.0.0 <2.0.0"}, "consumedServices" : {"gpool-base" : {"versions" : {"1.0.0" : "consumeGpoolServiceV1"}}}, "dependencies" : {"atom-package-dependencies" : "^1.0.3", "atom-space-pen-views" : "^2.1.0"}, "package-dependencies" : {"gpool-base" : "versions not supported yet"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "main": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "author": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "repository": {"type": "string"}, "license": {"type": "string"}, "engines": {"type": "object", "properties": {"atom": {"type": "string"}}, "required": ["atom"]}, "consumedServices": {"type": "object", "properties": {"gpool-base": {"type": "object", "properties": {"versions": {"type": "object", "properties": {"1.0.0": {"type": "string"}}, "required": ["1.0.0"]}}, "required": ["versions"]}}, "required": ["gpool-base"]}, "dependencies": {"type": "object", "properties": {"atom-package-dependencies": {"type": "string"}, "atom-space-pen-views": {"type": "string"}}, "required": ["atom-package-dependencies", "atom-space-pen-views"]}, "package-dependencies": {"type": "object", "properties": {"gpool-base": {"type": "string"}}, "required": ["gpool-base"]}}, "required": ["name", "main", "version", "description", "author", "keywords", "repository", "license", "engines", "consumedServices", "dependencies", "package-dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"artist_id": {"type": "string"}, "artist_latitude": {"type": "number"}, "artist_location": {"type": "string"}, "artist_longitude": {"type": "number"}, "artist_name": {"type": "string"}, "duration": {"type": "number"}, "num_songs": {"type": "integer"}, "song_id": {"type": "string"}, "title": {"type": "string"}, "year": {"type": "integer"}}, "required": ["artist_id", "artist_latitude", "artist_location", "artist_longitude", "artist_name", "duration", "num_songs", "song_id", "title", "year"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"artist_id" : "ARV79SB1187B9AB471", "artist_latitude" : 46.58057, "artist_location" : "POITIERS", "artist_longitude" : 0.34169, "artist_name" : "Hacride", "duration" : 566.09914, "num_songs" : 1, "song_id" : "SOTIXLO12AB01810D7", "title" : "My enemy (Album Version)", "year" : 2009}
json_instruct
{"type": "object", "properties": {"artist_id": {"type": "string"}, "artist_latitude": {"type": "number"}, "artist_location": {"type": "string"}, "artist_longitude": {"type": "number"}, "artist_name": {"type": "string"}, "duration": {"type": "number"}, "num_songs": {"type": "integer"}, "song_id": {"type": "string"}, "title": {"type": "string"}, "year": {"type": "integer"}}, "required": ["artist_id", "artist_latitude", "artist_location", "artist_longitude", "artist_name", "duration", "num_songs", "song_id", "title", "year"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"uppy.css": {"type": "string"}, "uppy.js": {"type": "string"}, "uppy.min.css": {"type": "string"}, "uppy.min.js": {"type": "string"}}, "required": ["uppy.css", "uppy.js", "uppy.min.css", "uppy.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"uppy.css" : "sha512-EH6VWGesah9oxuXtt3QgGA9nRp3KG+dbRKB1HCi+0/ofnl/wTUda8fD1JXSsh3Uo6AI+l6ugHE2MqCPFJIvHTw==", "uppy.js" : "sha512-Wo+rb608B049gaGaClMS7nOfcmcZN20vNasyzqEzF45u4G7QFvkqdis/2aNNUmYwq1F07htSZWt9G133rDbZJQ==", "uppy.min.css" : "sha512-hHuSFesDgUowGoGSlFX/uixvtdXFXRzweoSbcrLs3YbmpC7fK0M209egxnjN9NDUb5gLLEBdEUXOe7D6QXnuXQ==", "uppy.min.js" : "sha512-DEz21I/1v4w1ANRGTXoPVH98mV5gy8Am6jEGMWpIkPVFx5G/hEDXU3Xefmb4EQSUiCVv2PeLEmrEHOZ/BDJfvA=="}
json_instruct
{"type": "object", "properties": {"uppy.css": {"type": "string"}, "uppy.js": {"type": "string"}, "uppy.min.css": {"type": "string"}, "uppy.min.js": {"type": "string"}}, "required": ["uppy.css", "uppy.js", "uppy.min.css", "uppy.min.js"], "$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"}, "default_attributes": {"type": "object", "properties": {"etc_environment": {"type": "object", "properties": {"HADOOP_USER_NAME": {"type": "string"}}, "required": ["HADOOP_USER_NAME"]}}, "required": ["etc_environment"]}, "run_list": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "default_attributes", "run_list"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "etc_environment", "default_attributes" : {"etc_environment" : {"HADOOP_USER_NAME" : "hdfs"}}, "run_list" : ["recipe[etc_environment]"]}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "default_attributes": {"type": "object", "properties": {"etc_environment": {"type": "object", "properties": {"HADOOP_USER_NAME": {"type": "string"}}, "required": ["HADOOP_USER_NAME"]}}, "required": ["etc_environment"]}, "run_list": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "default_attributes", "run_list"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"categories": {"type": "array", "items": {"type": "string"}}, "desc": {"type": "string"}, "details": {"type": "object", "properties": {"authors": {"type": "string"}, "format": {"type": "string"}, "isbn-10": {"type": "string"}, "isbn-13": {"type": "string"}, "pages": {"type": "string"}, "publication date": {"type": "string"}, "publisher": {"type": "string"}, "size": {"type": "string"}}, "required": ["authors", "format", "isbn-10", "isbn-13", "pages", "publication date", "publisher", "size"]}, "img": {"type": "string"}, "link": {"type": "string"}, "title": {"type": "string"}}, "required": ["categories", "desc", "details", "img", "link", "title"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"categories" : ["Operating Systems", "Sysadmin"], "desc" : " ", "details" : {"authors" : "William Panek", "format" : "pdf", "isbn-10" : "1118870204", "isbn-13" : "978-1118870204", "pages" : "552 pages", "publication date" : "March 2, 2015", "publisher" : "Sybex", "size" : "17.00Mb"}, "img" : "http://23.95.221.108/covers/6e/6ec8619c52bb7f0f3295058bea8ed1cb.jpg", "link" : "https://rapidhosting.info/files/e1e", "title" : "MCSA Windows Server 2012 R2 Installation and Configuration Study Guide: Exam 70-410"}
json_instruct
{"type": "object", "properties": {"categories": {"type": "array", "items": {"type": "string"}}, "desc": {"type": "string"}, "details": {"type": "object", "properties": {"authors": {"type": "string"}, "format": {"type": "string"}, "isbn-10": {"type": "string"}, "isbn-13": {"type": "string"}, "pages": {"type": "string"}, "publication date": {"type": "string"}, "publisher": {"type": "string"}, "size": {"type": "string"}}, "required": ["authors", "format", "isbn-10", "isbn-13", "pages", "publication date", "publisher", "size"]}, "img": {"type": "string"}, "link": {"type": "string"}, "title": {"type": "string"}}, "required": ["categories", "desc", "details", "img", "link", "title"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"images": {"type": "array", "items": {"type": "object", "properties": {"filename": {"type": "string"}, "idiom": {"type": "string"}}, "required": ["filename", "idiom"]}}, "info": {"type": "object", "properties": {"author": {"type": "string"}, "version": {"type": "integer"}}, "required": ["author", "version"]}}, "required": ["images", "info"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"images" : [{"filename" : "SRF_radio3.pdf", "idiom" : "iphone"}, {"filename" : "SRF_radio3-1.pdf", "idiom" : "ipad"}, {"filename" : "logosradio_srf3_60.pdf", "idiom" : "tv"}], "info" : {"author" : "xcode", "version" : 1}}
json_instruct
{"type": "object", "properties": {"images": {"type": "array", "items": {"type": "object", "properties": {"filename": {"type": "string"}, "idiom": {"type": "string"}}, "required": ["filename", "idiom"]}}, "info": {"type": "object", "properties": {"author": {"type": "string"}, "version": {"type": "integer"}}, "required": ["author", "version"]}}, "required": ["images", "info"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"month": {"type": "string"}, "num": {"type": "integer"}, "link": {"type": "string"}, "year": {"type": "string"}, "news": {"type": "string"}, "safe_title": {"type": "string"}, "transcript": {"type": "string"}, "alt": {"type": "string"}, "img": {"type": "string"}, "title": {"type": "string"}, "day": {"type": "string"}}, "required": ["month", "num", "link", "year", "news", "safe_title", "transcript", "alt", "img", "title", "day"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"month" : "3", "num" : 399, "link" : "", "year" : "2008", "news" : "", "safe_title" : "Travelling Salesman Problem", "transcript" : "[[There is a linked black web, with a path in red]]\nBrute-force solution:\nO(n!)\n[[The web continues in this one. A man with a hat and a case is drawing it]]\nDynamic programming algorithms: O(n^2 2^n)\n[[Another man, with a hat too, is at a computer, looking back over the chair]]\nSelling on eBay: O(1)\nComputer salesman: Still working on your route?\nDrawing salesman: Shut the hell up.\n{{title text: What's the complexity class of the best linear programming cutting-plane techniques? I couldn't find it anywhere. Man, the Garfield guy doesn't have these problems ...}}", "alt" : "What's the complexity class of the best linear programming cutting-plane techniques? I couldn't find it anywhere. Man, the Garfield guy doesn't have these problems ...", "img" : "https://imgs.xkcd.com/comics/travelling_salesman_problem.png", "title" : "Travelling Salesman Problem", "day" : "21"}
json_instruct
{"type": "object", "properties": {"month": {"type": "string"}, "num": {"type": "integer"}, "link": {"type": "string"}, "year": {"type": "string"}, "news": {"type": "string"}, "safe_title": {"type": "string"}, "transcript": {"type": "string"}, "alt": {"type": "string"}, "img": {"type": "string"}, "title": {"type": "string"}, "day": {"type": "string"}}, "required": ["month", "num", "link", "year", "news", "safe_title", "transcript", "alt", "img", "title", "day"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
[[1979, 5], [1986, 7], [1989, 5], [1991, 7], [1994, 5], [1998, 5]]
json_instruct
{"type": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$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"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "jshint": {"type": "string"}, "cover": {"type": "string"}, "add-license-headers": {"type": "string"}}, "required": ["test", "jshint", "cover", "add-license-headers"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "dependencies": {"type": "object", "properties": {"request": {"type": "string"}}, "required": ["request"]}, "devDependencies": {"type": "object", "properties": {"fixed-server": {"type": "string"}, "getport": {"type": "string"}, "istanbul": {"type": "string"}, "jshint": {"type": "string"}, "run-parallel": {"type": "string"}, "tape": {"type": "string"}, "tmp": {"type": "string"}, "uber-licence": {"type": "string"}}, "required": ["fixed-server", "getport", "istanbul", "jshint", "run-parallel", "tape", "tmp", "uber-licence"]}}, "required": ["name", "version", "description", "main", "scripts", "repository", "keywords", "author", "license", "bugs", "homepage", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "canduit", "version" : "1.3.1", "description" : "Node.js Phabricator Conduit API client", "main" : "canduit.js", "scripts" : {"test" : "node test", "jshint" : "jshint --verbose .", "cover" : "istanbul cover --report cobertura --report html --print detail test", "add-license-headers" : "uber-licence"}, "repository" : {"type" : "git", "url" : "git://github.com/uber/canduit.git"}, "keywords" : ["phabricator", "conduit"], "author" : "Aleksey Smolenchuk <aleksey@uber.com>", "license" : "MIT", "bugs" : {"url" : "https://github.com/uber/canduit/issues"}, "homepage" : "https://github.com/uber/canduit", "dependencies" : {"request" : "^2.79.0"}, "devDependencies" : {"fixed-server" : "^0.4.0", "getport" : "^0.1.0", "istanbul" : "^0.4.5", "jshint" : "^2.9.4", "run-parallel" : "^1.1.6", "tape" : "^4.6.3", "tmp" : "^0.0.31", "uber-licence" : "^2.0.2"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "jshint": {"type": "string"}, "cover": {"type": "string"}, "add-license-headers": {"type": "string"}}, "required": ["test", "jshint", "cover", "add-license-headers"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "dependencies": {"type": "object", "properties": {"request": {"type": "string"}}, "required": ["request"]}, "devDependencies": {"type": "object", "properties": {"fixed-server": {"type": "string"}, "getport": {"type": "string"}, "istanbul": {"type": "string"}, "jshint": {"type": "string"}, "run-parallel": {"type": "string"}, "tape": {"type": "string"}, "tmp": {"type": "string"}, "uber-licence": {"type": "string"}}, "required": ["fixed-server", "getport", "istanbul", "jshint", "run-parallel", "tape", "tmp", "uber-licence"]}}, "required": ["name", "version", "description", "main", "scripts", "repository", "keywords", "author", "license", "bugs", "homepage", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"ok": {"type": "boolean"}, "data": {"type": "object", "properties": {"data": {"type": "array", "items": {"type": "object", "properties": {"ip": {"type": "string"}, "name": {"type": "string"}, "type": {"type": "string"}}, "required": ["ip", "name", "type"]}}, "requestId": {"type": "string"}, "success": {"type": "boolean"}}, "required": ["data", "requestId", "success"]}}, "required": ["ok", "data"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"ok" : true, "data" : {"data" : [{"ip" : "1.1.1.1", "name" : "sha", "type" : "host"}], "requestId" : "7f00000115613748249572381d3db0", "success" : true}}
json_instruct
{"type": "object", "properties": {"ok": {"type": "boolean"}, "data": {"type": "object", "properties": {"data": {"type": "array", "items": {"type": "object", "properties": {"ip": {"type": "string"}, "name": {"type": "string"}, "type": {"type": "string"}}, "required": ["ip", "name", "type"]}}, "requestId": {"type": "string"}, "success": {"type": "boolean"}}, "required": ["data", "requestId", "success"]}}, "required": ["ok", "data"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "category": {"type": "string"}, "materialtype": {"type": "string"}, "source": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "description", "category", "materialtype", "source"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "Mushroom", "description" : "Hardy common fungi. Can grow anywhere with the right amount of shade and moisture.", "category" : "EXCHANGE", "materialtype" : "Cooking Ingredient", "source" : ["Found in the wild"]}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "category": {"type": "string"}, "materialtype": {"type": "string"}, "source": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "description", "category", "materialtype", "source"], "$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" : "conquest:block/mossy_sandstone"}
json_instruct
{"type": "object", "properties": {"parent": {"type": "string"}}, "required": ["parent"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"description": {"type": "string"}, "etag": {"type": "string"}, "includedPermissions": {"type": "array", "items": {"type": "string"}}, "name": {"type": "string"}, "stage": {"type": "string"}, "title": {"type": "string"}}, "required": ["description", "etag", "includedPermissions", "name", "stage", "title"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"description" : "Access Tunnel resources which use Identity-Aware Proxy", "etag" : "AA==", "includedPermissions" : ["iap.tunnelInstances.accessViaIAP"], "name" : "roles/iap.tunnelResourceAccessor", "stage" : "GA", "title" : "IAP-secured Tunnel User"}
json_instruct
{"type": "object", "properties": {"description": {"type": "string"}, "etag": {"type": "string"}, "includedPermissions": {"type": "array", "items": {"type": "string"}}, "name": {"type": "string"}, "stage": {"type": "string"}, "title": {"type": "string"}}, "required": ["description", "etag", "includedPermissions", "name", "stage", "title"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "cable_id": {"type": "integer"}, "landing_points": {"type": "array", "items": {"type": "object", "properties": {"landing_point_id": {"type": "integer"}, "id": {"type": "string"}, "name": {"type": "string"}, "latlon": {"type": "string"}, "url": {"type": "string"}}, "required": ["landing_point_id", "id", "name", "latlon", "url"]}}, "length": {"type": "string"}, "rfs": {"type": "string"}, "owners": {"type": "string"}, "url": {"type": "string"}, "notes": {"type": "null"}}, "required": ["id", "name", "cable_id", "landing_points", "length", "rfs", "owners", "url", "notes"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : "australia-japan-cable-ajc", "name" : "Australia-Japan Cable (AJC)", "cable_id" : 1102, "landing_points" : [{"landing_point_id" : 5887, "id" : "maruyama-japan", "name" : "Maruyama, Japan", "latlon" : "35.037517,139.816956", "url" : "#/landing-point/maruyama-japan"}, {"landing_point_id" : 5778, "id" : "oxford-falls-australia", "name" : "Oxford Falls, Australia", "latlon" : "-33.737377,151.245076", "url" : "#/landing-point/oxford-falls-australia"}, {"landing_point_id" : 5779, "id" : "paddington-australia", "name" : "Paddington, Australia", "latlon" : "-33.882128,151.228670", "url" : "#/landing-point/paddington-australia"}, {"landing_point_id" : 5883, "id" : "shima-japan", "name" : "Shima, Japan", "latlon" : "34.336834,136.874380", "url" : "#/landing-point/shima-japan"}, {"landing_point_id" : 3251, "id" : "tanguisson-point-gu-united-states", "name" : "Tanguisson Point, GU, United States", "latlon" : "13.549100,144.809337", "url" : "#/landing-point/tanguisson-point-gu-united-states"}, {"landing_point_id" : 5972, "id" : "tumon-bay-gu-united-states", "name" : "Tumon Bay, GU, United States", "latlon" : "13.513590,144.800548", "url" : "#/landing-point/tumon-bay-gu-united-states"}], "length" : "12,700 km", "rfs" : "2001 December", "owners" : "Softbank Corp, Telstra, Verizon, AT&T, NTT", "url" : "http://www.ajcable.com", "notes" : null}
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "cable_id": {"type": "integer"}, "landing_points": {"type": "array", "items": {"type": "object", "properties": {"landing_point_id": {"type": "integer"}, "id": {"type": "string"}, "name": {"type": "string"}, "latlon": {"type": "string"}, "url": {"type": "string"}}, "required": ["landing_point_id", "id", "name", "latlon", "url"]}}, "length": {"type": "string"}, "rfs": {"type": "string"}, "owners": {"type": "string"}, "url": {"type": "string"}, "notes": {"type": "null"}}, "required": ["id", "name", "cable_id", "landing_points", "length", "rfs", "owners", "url", "notes"], "$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"}, "index": {"type": "integer"}, "guid": {"type": "string"}, "isActive": {"type": "boolean"}, "balance": {"type": "string"}, "picture": {"type": "string"}, "age": {"type": "integer"}, "eyeColor": {"type": "string"}, "name": {"type": "string"}, "gender": {"type": "string"}, "company": {"type": "string"}, "email": {"type": "string"}, "phone": {"type": "string"}, "address": {"type": "string"}, "about": {"type": "string"}, "registered": {"type": "string"}, "tags": {"type": "array", "items": {"type": "string"}}, "friends": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}}, "required": ["id", "name"]}}, "greeting": {"type": "string"}, "favoriteFruit": {"type": "string"}, "location": {"type": "object", "properties": {"latitude": {"type": "number"}, "longitude": {"type": "number"}}, "required": ["latitude", "longitude"]}, "docFormat": {"type": "string"}, "triples": {"type": "array", "items": {"type": "object", "properties": {"triple": {"type": "object", "properties": {"subject": {"type": "string"}, "predicate": {"type": "string"}, "object": {"type": "string"}}, "required": ["subject", "predicate", "object"]}}, "required": ["triple"]}}}, "required": ["_id", "index", "guid", "isActive", "balance", "picture", "age", "eyeColor", "name", "gender", "company", "email", "phone", "address", "about", "registered", "tags", "friends", "greeting", "favoriteFruit", "location", "docFormat", "triples"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"_id" : "55ee5e45ae7fec1983788a0d", "index" : 1787, "guid" : "88ba8268-56f5-418a-99eb-7b9ab94a4003", "isActive" : false, "balance" : "$99,657.56", "picture" : "http://placehold.it/32x32", "age" : 52, "eyeColor" : "brown", "name" : "Daisy Farrell", "gender" : "female", "company" : "HALAP", "email" : "daisyfarrell@halap.com", "phone" : "+1 (894) 465-2261", "address" : "378 Townsend Street, Coyote, Michigan, 4934", "about" : "Incididunt irure enim id aute minim esse dolor voluptate ad. Culpa laboris duis occaecat veniam est esse enim qui adipisicing nostrud eu labore irure aute. Ad nisi non deserunt duis. Est amet esse magna minim voluptate elit aute. Proident amet et quis nulla amet laboris cillum occaecat eiusmod dolor cupidatat. Amet fugiat est sit elit quis.\r\n", "registered" : "2015-08-16T04:35:59 -07:00", "tags" : ["adipisicing", "deserunt", "aliquip", "commodo", "fugiat", "velit", "consequat"], "friends" : [{"id" : 0, "name" : "Jensen Gardner"}, {"id" : 1, "name" : "Kay Nash"}, {"id" : 2, "name" : "Bush Maddox"}], "greeting" : "Hello, Daisy Farrell! You have 1 unread messages.", "favoriteFruit" : "banana", "location" : {"latitude" : -1.87355, "longitude" : -50.215114}, "docFormat" : "json", "triples" : [{"triple" : {"subject" : "/sample-data/data-1787.json", "predicate" : "http://www.w3.org/2000/01/rdf-schema#label", "object" : "Daisy Farrell"}}, {"triple" : {"subject" : "/sample-data/data-1787.json", "predicate" : "http://www.w3.org/1999/02/22-rdf-syntax-ns#type", "object" : "http://xmlns.com/foaf/0.1/Person"}}, {"triple" : {"subject" : "/sample-data/data-1787.json", "predicate" : "http://xmlns.com/foaf/0.1/knows", "object" : "/sample-data/data-1787.json"}}, {"triple" : {"subject" : "/sample-data/data-1787.json", "predicate" : "http://xmlns.com/foaf/0.1/knows", "object" : "/sample-data/data-2455.json"}}, {"triple" : {"subject" : "/sample-data/data-1787.json", "predicate" : "http://xmlns.com/foaf/0.1/knows", "object" : "/sample-data/data-116.json"}}]}
json_instruct
{"type": "object", "properties": {"_id": {"type": "string"}, "index": {"type": "integer"}, "guid": {"type": "string"}, "isActive": {"type": "boolean"}, "balance": {"type": "string"}, "picture": {"type": "string"}, "age": {"type": "integer"}, "eyeColor": {"type": "string"}, "name": {"type": "string"}, "gender": {"type": "string"}, "company": {"type": "string"}, "email": {"type": "string"}, "phone": {"type": "string"}, "address": {"type": "string"}, "about": {"type": "string"}, "registered": {"type": "string"}, "tags": {"type": "array", "items": {"type": "string"}}, "friends": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}}, "required": ["id", "name"]}}, "greeting": {"type": "string"}, "favoriteFruit": {"type": "string"}, "location": {"type": "object", "properties": {"latitude": {"type": "number"}, "longitude": {"type": "number"}}, "required": ["latitude", "longitude"]}, "docFormat": {"type": "string"}, "triples": {"type": "array", "items": {"type": "object", "properties": {"triple": {"type": "object", "properties": {"subject": {"type": "string"}, "predicate": {"type": "string"}, "object": {"type": "string"}}, "required": ["subject", "predicate", "object"]}}, "required": ["triple"]}}}, "required": ["_id", "index", "guid", "isActive", "balance", "picture", "age", "eyeColor", "name", "gender", "company", "email", "phone", "address", "about", "registered", "tags", "friends", "greeting", "favoriteFruit", "location", "docFormat", "triples"], "$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"}, "homepage": {"type": "string"}, "authors": {"type": "array", "items": {"type": "string"}}, "description": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "main": {"type": "string"}, "license": {"type": "string"}, "ignore": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "version", "homepage", "authors", "description", "keywords", "main", "license", "ignore"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "kramed", "version" : "0.4.6", "homepage" : "https://github.com/GitbookIO/kramed", "authors" : ["Aaron O'Mullan <aaron.omullan@gmail.com>", "Christopher Jeffrey <chjjeffrey@gmail.com>"], "description" : "A markdown (kramdown compatible) parser and compiler. Built for speed.", "keywords" : ["markdown", "markup", "html", "kramdown", "kramed", "parser"], "main" : "lib/kramed.js", "license" : "MIT", "ignore" : ["**/.*", "node_modules", "bower_components", "app/bower_components", "test", "tests"]}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "homepage": {"type": "string"}, "authors": {"type": "array", "items": {"type": "string"}}, "description": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "main": {"type": "string"}, "license": {"type": "string"}, "ignore": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "version", "homepage", "authors", "description", "keywords", "main", "license", "ignore"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"PlaceholderDesc_TargetNpc": {"type": "string"}, "PlaceholderDesc_Text": {"type": "string"}, "PlaceholderDesc_UnescapedText": {"type": "string"}, "PlaceholderDesc_TextPreview": {"type": "string"}}, "required": ["PlaceholderDesc_TargetNpc", "PlaceholderDesc_Text", "PlaceholderDesc_UnescapedText", "PlaceholderDesc_TextPreview"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"PlaceholderDesc_TargetNpc" : "Npc above which the text will be shown", "PlaceholderDesc_Text" : "Text that will be displayed above the npc.", "PlaceholderDesc_UnescapedText" : "Text that will be displayed above the npc without using the escape settings.", "PlaceholderDesc_TextPreview" : "Preview for the text that is shown. All line breaks will be removed and the text will be cut if it is to long. This placeholder is intended to be used in comments to increase the readability of the dialog if language keys are used."}
json_instruct
{"type": "object", "properties": {"PlaceholderDesc_TargetNpc": {"type": "string"}, "PlaceholderDesc_Text": {"type": "string"}, "PlaceholderDesc_UnescapedText": {"type": "string"}, "PlaceholderDesc_TextPreview": {"type": "string"}}, "required": ["PlaceholderDesc_TargetNpc", "PlaceholderDesc_Text", "PlaceholderDesc_UnescapedText", "PlaceholderDesc_TextPreview"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "text": {"type": "string"}}, "required": ["id", "text"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"id" : "420114002001", "text" : "\u5953\u5c71\u793e\u533a\u5c45\u59d4\u4f1a"}, {"id" : "420114002003", "text" : "\u5953\u5c71\u65b0\u793e\u533a"}, {"id" : "420114002004", "text" : "\u661f\u5149\u793e\u533a"}, {"id" : "420114002005", "text" : "\u5927\u4e1c\u793e\u533a"}, {"id" : "420114002201", "text" : "\u5927\u4e1c\u6751\u59d4\u4f1a"}, {"id" : "420114002202", "text" : "\u5c0f\u4e1c\u6751\u59d4\u4f1a"}, {"id" : "420114002203", "text" : "\u7ea2\u7130\u6751\u59d4\u4f1a"}, {"id" : "420114002204", "text" : "\u661f\u5149\u6751\u59d4\u4f1a"}, {"id" : "420114002205", "text" : "\u8054\u8c0a\u6751\u59d4\u4f1a"}, {"id" : "420114002206", "text" : "\u8054\u76df\u6751\u59d4\u4f1a"}, {"id" : "420114002207", "text" : "\u4e18\u6797\u6751\u59d4\u4f1a"}, {"id" : "420114002208", "text" : "\u8001\u4e16\u9648\u6751\u59d4\u4f1a"}, {"id" : "420114002209", "text" : "\u87ba\u4e1d\u5c97\u6751\u59d4\u4f1a"}, {"id" : "420114002210", "text" : "\u4e09\u7ea2\u6751\u59d4\u4f1a"}, {"id" : "420114002211", "text" : "\u6a80\u6811\u6751\u59d4\u4f1a"}, {"id" : "420114002212", "text" : "\u4e2d\u539f\u6751\u59d4\u4f1a"}, {"id" : "420114002213", "text" : "\u957f\u65b0\u6751\u59d4\u4f1a"}, {"id" : "420114002214", "text" : "\u971e\u5149\u6751\u59d4\u4f1a"}, {"id" : "420114002215", "text" : "\u524d\u950b\u6751\u59d4\u4f1a"}, {"id" : "420114002216", "text" : "\u53cc\u4e30\u6751\u59d4\u4f1a"}, {"id" : "420114002217", "text" : "\u5953\u5c71\u6751\u59d4\u4f1a"}, {"id" : "420114002218", "text" : "\u4e1b\u6797\u6751\u59d4\u4f1a"}, {"id" : "420114002219", "text" : "\u65b0\u5b89\u5821\u6751\u59d4\u4f1a"}, {"id" : "420114002220", "text" : "\u7460\u73af\u6751\u59d4\u4f1a"}, {"id" : "420114002221", "text" : "\u8881\u5cad\u6751\u59d4\u4f1a"}, {"id" : "420114002222", "text" : "\u7fa4\u96c1\u6751\u59d4\u4f1a"}, {"id" : "420114002223", "text" : "\u4e01\u4e5d\u6751\u59d4\u4f1a"}, {"id" : "420114002224", "text" : "\u4e00\u81f4\u6751\u59d4\u4f1a"}, {"id" : "420114002225", "text" : "\u51e1\u91cc\u6751\u59d4\u4f1a"}, {"id" : "420114002237", "text" : "\u7f57\u5bb6\u5934\u6751\u59d4\u4f1a"}, {"id" : "420114002238", "text" : "\u9648\u5bb6\u5cad\u6751\u59d4\u4f1a"}, {"id" : "420114002239", "text" : "\u795d\u5bb6\u6751\u59d4\u4f1a"}, {"id" : "420114002240", "text" : "\u65b0\u751f\u6751\u59d4\u4f1a"}, {"id" : "420114002241", "text" : "\u4e09\u5e97\u6751\u59d4\u4f1a"}, {"id" : "420114002242", "text" : "\u4e09\u7f8a\u6751\u59d4\u4f1a"}, {"id" : "420114002243", "text" : "\u6c11\u751f\u6751\u59d4\u4f1a"}, {"id" : "420114002244", "text" : "\u5174\u529b\u6751\u59d4\u4f1a"}, {"id" : "420114002245", "text" : "\u65b0\u96c6\u6751\u59d4\u4f1a"}, {"id" : "420114002246", "text" : "\u53cb\u7231\u6751\u59d4\u4f1a"}, {"id" : "420114002247", "text" : "\u7fa4\u5efa\u6751\u59d4\u4f1a"}, {"id" : "420114002248", "text" : "\u91d1\u725b\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#"}
Following the schema specification below, generate a valid JSON instance: {"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" : 24236, "name" : "Imbued saradomin cape (broken)", "qualified_name" : "Imbued saradomin cape (Broken)", "examine" : "A broken cape from the almighty god Saradomin, imbued with great power.", "members" : true, "release_date" : "2019-09-12", "quest" : false, "weight" : 0.453, "value" : 1, "tradeable" : false, "stackable" : false, "noteable" : false, "equipable" : false, "tradeable_ge" : false, "icon" : "iVBORw0KGgoAAAANSUhEUgAAACQAAAAgCAYAAAB6kdqOAAAB7klEQVR4Xu3Xv2vCQBQHcPMfdHIOOAiC4Fo6dyh07+SQQtUhlBYrYqGShmCVGLSC0SptKC2Wjh2c+6e9er/i5RKtw13awQcPQ068D997CZjJ7GtfSaWBeOePCkE0WCy+8Ke4mmIRiGnegGFUoVIxKSh1FNk0W7LgIH8N9fot1GqX0GpZYNsuuP1xWigOUmhgTNm4gvl8gVGe54PvBzCbvePvlXRdJYpCii0MQZ0t3oFx0QDL6kGz2YbRaA7L5Tc4jqcSRFNZbU5SMUMMxq3u5Qsl0HMF3IdHx3ByeqYKRFLBm6NUclXySSEkKZPcx2sEyzCSQSSVMBm2YQihHUIUY3AKrFkSIYRdryFqMSgFrl8nk3DTt6dpDMJmS/LckOE9yJ3H+jMIIPB9DsNBBIwkEIXo5Whzs4IwHy/PCRjpR7UBg+5xoEjzT5jco9LikIR0os3mJ4qRANoBI6aE15RgUG0AsY1FDEJwoHQwrNkTxlJi1xQkHTPodMC1bejdW3EMn474ClitScawIu8cBEvEbGmJT5RYGoz77m4Yuq4oHVYCSEQIIMUYVBp4jkOOTQRsSUf8FcmlwYPVxo2GfNjtwnQ4CCEIzOZNcTp8sX8J60FHMHScPCQlDKn1hhpOaPY4TDuVbZX6Ef1e/wqTVv0A1mtvx8wfkWYAAAAASUVORK5CYII=", "wiki_url" : "https://oldschool.runescape.wiki/w/Imbued_saradomin_cape#Broken"}
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#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"files": {"type": "object", "properties": {"main.css": {"type": "string"}, "main.js": {"type": "string"}, "main.js.map": {"type": "string"}, "runtime-main.js": {"type": "string"}, "runtime-main.js.map": {"type": "string"}, "static/js/2.c9dca79f.chunk.js": {"type": "string"}, "static/js/2.c9dca79f.chunk.js.map": {"type": "string"}, "static/js/3.cb86f52f.chunk.js": {"type": "string"}, "static/js/3.cb86f52f.chunk.js.map": {"type": "string"}, "index.html": {"type": "string"}, "static/css/main.fdf286e4.chunk.css.map": {"type": "string"}, "static/js/2.c9dca79f.chunk.js.LICENSE.txt": {"type": "string"}, "static/media/App.css": {"type": "string"}, "static/media/NftStepsSection.scss": {"type": "string"}, "static/media/nft.dab5b576.png": {"type": "string"}, "static/media/solanaIcon.abdf3810.png": {"type": "string"}, "static/media/stakingIcon.60d000c8.png": {"type": "string"}, "static/media/yieldIcon.771a052e.png": {"type": "string"}}, "required": ["main.css", "main.js", "main.js.map", "runtime-main.js", "runtime-main.js.map", "static/js/2.c9dca79f.chunk.js", "static/js/2.c9dca79f.chunk.js.map", "static/js/3.cb86f52f.chunk.js", "static/js/3.cb86f52f.chunk.js.map", "index.html", "static/css/main.fdf286e4.chunk.css.map", "static/js/2.c9dca79f.chunk.js.LICENSE.txt", "static/media/App.css", "static/media/NftStepsSection.scss", "static/media/nft.dab5b576.png", "static/media/solanaIcon.abdf3810.png", "static/media/stakingIcon.60d000c8.png", "static/media/yieldIcon.771a052e.png"]}, "entrypoints": {"type": "array", "items": {"type": "string"}}}, "required": ["files", "entrypoints"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"files" : {"main.css" : "/static/css/main.fdf286e4.chunk.css", "main.js" : "/static/js/main.7171add1.chunk.js", "main.js.map" : "/static/js/main.7171add1.chunk.js.map", "runtime-main.js" : "/static/js/runtime-main.489624f6.js", "runtime-main.js.map" : "/static/js/runtime-main.489624f6.js.map", "static/js/2.c9dca79f.chunk.js" : "/static/js/2.c9dca79f.chunk.js", "static/js/2.c9dca79f.chunk.js.map" : "/static/js/2.c9dca79f.chunk.js.map", "static/js/3.cb86f52f.chunk.js" : "/static/js/3.cb86f52f.chunk.js", "static/js/3.cb86f52f.chunk.js.map" : "/static/js/3.cb86f52f.chunk.js.map", "index.html" : "/index.html", "static/css/main.fdf286e4.chunk.css.map" : "/static/css/main.fdf286e4.chunk.css.map", "static/js/2.c9dca79f.chunk.js.LICENSE.txt" : "/static/js/2.c9dca79f.chunk.js.LICENSE.txt", "static/media/App.css" : "/static/media/Manrope-SemiBold.26ad6bf1.ttf", "static/media/NftStepsSection.scss" : "/static/media/dottedBg.b2a6cad4.jpg", "static/media/nft.dab5b576.png" : "/static/media/nft.dab5b576.png", "static/media/solanaIcon.abdf3810.png" : "/static/media/solanaIcon.abdf3810.png", "static/media/stakingIcon.60d000c8.png" : "/static/media/stakingIcon.60d000c8.png", "static/media/yieldIcon.771a052e.png" : "/static/media/yieldIcon.771a052e.png"}, "entrypoints" : ["static/js/runtime-main.489624f6.js", "static/js/2.c9dca79f.chunk.js", "static/css/main.fdf286e4.chunk.css", "static/js/main.7171add1.chunk.js"]}
json_instruct
{"type": "object", "properties": {"files": {"type": "object", "properties": {"main.css": {"type": "string"}, "main.js": {"type": "string"}, "main.js.map": {"type": "string"}, "runtime-main.js": {"type": "string"}, "runtime-main.js.map": {"type": "string"}, "static/js/2.c9dca79f.chunk.js": {"type": "string"}, "static/js/2.c9dca79f.chunk.js.map": {"type": "string"}, "static/js/3.cb86f52f.chunk.js": {"type": "string"}, "static/js/3.cb86f52f.chunk.js.map": {"type": "string"}, "index.html": {"type": "string"}, "static/css/main.fdf286e4.chunk.css.map": {"type": "string"}, "static/js/2.c9dca79f.chunk.js.LICENSE.txt": {"type": "string"}, "static/media/App.css": {"type": "string"}, "static/media/NftStepsSection.scss": {"type": "string"}, "static/media/nft.dab5b576.png": {"type": "string"}, "static/media/solanaIcon.abdf3810.png": {"type": "string"}, "static/media/stakingIcon.60d000c8.png": {"type": "string"}, "static/media/yieldIcon.771a052e.png": {"type": "string"}}, "required": ["main.css", "main.js", "main.js.map", "runtime-main.js", "runtime-main.js.map", "static/js/2.c9dca79f.chunk.js", "static/js/2.c9dca79f.chunk.js.map", "static/js/3.cb86f52f.chunk.js", "static/js/3.cb86f52f.chunk.js.map", "index.html", "static/css/main.fdf286e4.chunk.css.map", "static/js/2.c9dca79f.chunk.js.LICENSE.txt", "static/media/App.css", "static/media/NftStepsSection.scss", "static/media/nft.dab5b576.png", "static/media/solanaIcon.abdf3810.png", "static/media/stakingIcon.60d000c8.png", "static/media/yieldIcon.771a052e.png"]}, "entrypoints": {"type": "array", "items": {"type": "string"}}}, "required": ["files", "entrypoints"], "$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"}}, "required": ["test"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"babel-preset-es2015": {"type": "string"}, "eslint": {"type": "string"}, "eslint-config-airbnb-base": {"type": "string"}, "eslint-plugin-import": {"type": "string"}, "gulp": {"type": "string"}, "gulp-babel": {"type": "string"}, "gulp-clean-css": {"type": "string"}, "gulp-htmlmin": {"type": "string"}, "gulp-imagemin": {"type": "string"}, "gulp-load-plugins": {"type": "string"}, "gulp-rename": {"type": "string"}, "gulp-sass": {"type": "string"}, "gulp-sourcemaps": {"type": "string"}, "gulp-uglify": {"type": "string"}}, "required": ["babel-preset-es2015", "eslint", "eslint-config-airbnb-base", "eslint-plugin-import", "gulp", "gulp-babel", "gulp-clean-css", "gulp-htmlmin", "gulp-imagemin", "gulp-load-plugins", "gulp-rename", "gulp-sass", "gulp-sourcemaps", "gulp-uglify"]}}, "required": ["name", "version", "description", "main", "scripts", "repository", "author", "license", "bugs", "homepage", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "p-project", "version" : "1.0.0", "description" : "", "main" : "index.js", "scripts" : {"test" : "echo \"Error: no test specified\" && exit 1"}, "repository" : {"type" : "git", "url" : "git+https://github.com/duxingyu/p-project.git"}, "author" : "", "license" : "ISC", "bugs" : {"url" : "https://github.com/duxingyu/p-project/issues"}, "homepage" : "https://github.com/duxingyu/p-project#readme", "devDependencies" : {"babel-preset-es2015" : "^6.22.0", "eslint" : "^3.17.1", "eslint-config-airbnb-base" : "^11.1.1", "eslint-plugin-import" : "^2.2.0", "gulp" : "^3.9.1", "gulp-babel" : "^6.1.2", "gulp-clean-css" : "^3.0.3", "gulp-htmlmin" : "^3.0.0", "gulp-imagemin" : "^3.1.1", "gulp-load-plugins" : "^1.5.0", "gulp-rename" : "^1.2.2", "gulp-sass" : "^3.1.0", "gulp-sourcemaps" : "^1.6.0", "gulp-uglify" : "^1.5.3"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"babel-preset-es2015": {"type": "string"}, "eslint": {"type": "string"}, "eslint-config-airbnb-base": {"type": "string"}, "eslint-plugin-import": {"type": "string"}, "gulp": {"type": "string"}, "gulp-babel": {"type": "string"}, "gulp-clean-css": {"type": "string"}, "gulp-htmlmin": {"type": "string"}, "gulp-imagemin": {"type": "string"}, "gulp-load-plugins": {"type": "string"}, "gulp-rename": {"type": "string"}, "gulp-sass": {"type": "string"}, "gulp-sourcemaps": {"type": "string"}, "gulp-uglify": {"type": "string"}}, "required": ["babel-preset-es2015", "eslint", "eslint-config-airbnb-base", "eslint-plugin-import", "gulp", "gulp-babel", "gulp-clean-css", "gulp-htmlmin", "gulp-imagemin", "gulp-load-plugins", "gulp-rename", "gulp-sass", "gulp-sourcemaps", "gulp-uglify"]}}, "required": ["name", "version", "description", "main", "scripts", "repository", "author", "license", "bugs", "homepage", "devDependencies"], "$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": {"type": "object", "properties": {"productId": {"type": "integer"}, "reviewText": {"type": "string"}, "reviewDate": {"type": "string"}}, "required": ["productId", "reviewText", "reviewDate"]}}}, "required": ["userId", "cartId", "preferredProducts", "productReviews"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"userId" : 70130, "cartId" : "9b7150f8-86d9-4d5f-9d70-08a105b33e17", "preferredProducts" : [2535, 2635, 938, 2860, 591, 462, 1299], "productReviews" : [{"productId" : 3819, "reviewText" : "My chicken loves to play with it.", "reviewDate" : "2017-07-29T03:40:09.8207423+03:00"}, {"productId" : 931, "reviewText" : "i use it occasionally when i'm in my outhouse.", "reviewDate" : "2018-07-18T16:09:33.0668106+03:00"}]}
json_instruct
{"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {"type": "integer"}}, "productReviews": {"type": "array", "items": {"type": "object", "properties": {"productId": {"type": "integer"}, "reviewText": {"type": "string"}, "reviewDate": {"type": "string"}}, "required": ["productId", "reviewText", "reviewDate"]}}}, "required": ["userId", "cartId", "preferredProducts", "productReviews"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"PRODUCT_NAME": {"type": "string"}, "MANUFACTURER": {"type": "string"}, "BRANDNAME": {"type": "string"}, "WEIGHT": {"type": "string"}}, "required": ["PRODUCT_NAME", "MANUFACTURER", "BRANDNAME", "WEIGHT"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"PRODUCT_NAME" : "Chicken Grade Eggs", "MANUFACTURER" : "Matchic Poultry Kenya Limited-", "BRANDNAME" : "Matchic", "WEIGHT" : "30Pack"}
json_instruct
{"type": "object", "properties": {"PRODUCT_NAME": {"type": "string"}, "MANUFACTURER": {"type": "string"}, "BRANDNAME": {"type": "string"}, "WEIGHT": {"type": "string"}}, "required": ["PRODUCT_NAME", "MANUFACTURER", "BRANDNAME", "WEIGHT"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"img": {"type": "object", "properties": {"i": {"type": "array", "items": {"type": "string"}}, ">": {"type": "array", "items": {"type": "integer"}}}, "required": ["i", ">"]}}, "required": ["img"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"img" : {"i" : ["a", "1900", "1425"], ">" : [226, 220, 760, 750]}}
json_instruct
{"type": "object", "properties": {"img": {"type": "object", "properties": {"i": {"type": "array", "items": {"type": "string"}}, ">": {"type": "array", "items": {"type": "integer"}}}, "required": ["i", ">"]}}, "required": ["img"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"id": {"type": "string"}, "provinceId": {"type": "string"}, "regencyId": {"type": "string"}, "districtId": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "provinceId", "regencyId", "districtId", "name"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : "2005", "provinceId" : "12", "regencyId" : "11", "districtId" : "12", "name" : "Gundaling"}
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "provinceId": {"type": "string"}, "regencyId": {"type": "string"}, "districtId": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "provinceId", "regencyId", "districtId", "name"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "triggers": {"type": "array", "items": {}}, "actions": {"type": "array", "items": {"type": "string"}}, "version": {"type": "integer"}, "auth_type": {"type": "string"}, "docs_link": {"type": "string"}, "oauth_provider": {"type": "string"}, "oauthStatus": {"type": "string"}, "appId": {"type": "string"}, "guid": {"type": "string"}}, "required": ["name", "description", "triggers", "actions", "version", "auth_type", "docs_link", "oauth_provider", "oauthStatus", "appId", "guid"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "NetatmoSecurity", "description" : "Netatmo Security Camera connector", "triggers" : [], "actions" : ["/v1/gethomedata", "/v1/gethomestatus", "/v1/getnextevents"], "version" : 1, "auth_type" : "oauth", "docs_link" : "http://docs.example.com", "oauth_provider" : "netatmo_camera_4a4b969c20", "oauthStatus" : "deployed", "appId" : "44e90f51-9b6c-4651-a22a-bf756bf0adce", "guid" : "8be1585c-a8c5-4d57-9b1d-fc3780d6cc69"}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "triggers": {"type": "array", "items": {}}, "actions": {"type": "array", "items": {"type": "string"}}, "version": {"type": "integer"}, "auth_type": {"type": "string"}, "docs_link": {"type": "string"}, "oauth_provider": {"type": "string"}, "oauthStatus": {"type": "string"}, "appId": {"type": "string"}, "guid": {"type": "string"}}, "required": ["name", "description", "triggers", "actions", "version", "auth_type", "docs_link", "oauth_provider", "oauthStatus", "appId", "guid"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"HostConfigHash": {"type": "string"}, "CardHash": {"type": "string"}, "Error": {"type": "null"}}, "required": ["HostConfigHash", "CardHash", "Error"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"HostConfigHash" : "d27c6d5", "CardHash" : "c5fe14d", "Error" : null}
json_instruct
{"type": "object", "properties": {"HostConfigHash": {"type": "string"}, "CardHash": {"type": "string"}, "Error": {"type": "null"}}, "required": ["HostConfigHash", "CardHash", "Error"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "type": {"type": "string"}, "license": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}, "homepage": {"type": "string"}, "role": {"type": "string"}}, "required": ["name", "email", "homepage", "role"]}}, "minimum-stability": {"type": "string"}, "require": {"type": "object", "properties": {"php": {"type": "string"}}, "required": ["php"]}, "require-dev": {"type": "object", "properties": {"phpunit/phpunit": {"type": "string"}}, "required": ["phpunit/phpunit"]}, "config": {"type": "object", "properties": {"sort-packages": {"type": "boolean"}}, "required": ["sort-packages"]}, "autoload": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"scattercz\\": {"type": "string"}}, "required": ["scattercz\\"]}}, "required": ["psr-4"]}}, "required": ["name", "description", "keywords", "type", "license", "authors", "minimum-stability", "require", "require-dev", "config", "autoload"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "scattercz/php-numbertowords", "description" : "Number/currency to words transcription (czech language only)", "keywords" : ["number", "words", "currency", "transcription"], "type" : "library", "license" : "MIT", "authors" : [{"name" : "Zden\u011bk Novotn\u00fd", "email" : "scatter@scatter.cz", "homepage" : "https://scatter.cz", "role" : "Developer"}], "minimum-stability" : "stable", "require" : {"php" : "^7.1"}, "require-dev" : {"phpunit/phpunit" : "^7"}, "config" : {"sort-packages" : true}, "autoload" : {"psr-4" : {"scattercz\\" : "src/"}}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "type": {"type": "string"}, "license": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}, "homepage": {"type": "string"}, "role": {"type": "string"}}, "required": ["name", "email", "homepage", "role"]}}, "minimum-stability": {"type": "string"}, "require": {"type": "object", "properties": {"php": {"type": "string"}}, "required": ["php"]}, "require-dev": {"type": "object", "properties": {"phpunit/phpunit": {"type": "string"}}, "required": ["phpunit/phpunit"]}, "config": {"type": "object", "properties": {"sort-packages": {"type": "boolean"}}, "required": ["sort-packages"]}, "autoload": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"scattercz\\": {"type": "string"}}, "required": ["scattercz\\"]}}, "required": ["psr-4"]}}, "required": ["name", "description", "keywords", "type", "license", "authors", "minimum-stability", "require", "require-dev", "config", "autoload"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "module": {"type": "string"}, "types": {"type": "string"}, "sideEffects": {"type": "boolean"}, "files": {"type": "array", "items": {"type": "string"}}, "scripts": {"type": "object", "properties": {"build": {"type": "string"}, "rollup": {"type": "string"}, "clean": {"type": "string"}, "test": {"type": "string"}}, "required": ["build", "rollup", "clean", "test"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "dependencies": {"type": "object", "properties": {"@smikhalevski/codegen": {"type": "string"}}, "required": ["@smikhalevski/codegen"]}}, "required": ["name", "version", "description", "main", "module", "types", "sideEffects", "files", "scripts", "repository", "keywords", "author", "license", "bugs", "homepage", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "@jtdc/types", "version" : "1.0.0", "description" : "JTDc types used by the compiler and dialects.", "main" : "./lib/index-cjs.js", "module" : "./lib/index.js", "types" : "./lib/index.d.ts", "sideEffects" : false, "files" : ["lib"], "scripts" : {"build" : "tsc --project ./tsconfig.build.json && npm run rollup", "rollup" : "rollup --input ./lib/index.js --file ./lib/index-cjs.js --format cjs --plugin @rollup/plugin-node-resolve", "clean" : "rimraf ./lib", "test" : "exit 0"}, "repository" : {"type" : "git", "url" : "git+https://github.com/smikhalevski/jtdc.git"}, "keywords" : ["typescript", "json-schema", "validator", "guard", "ts", "compile", "narrowing", "jtd"], "author" : "Savva Mikhalevski <smikhalevski@gmail.com>", "license" : "MIT", "bugs" : {"url" : "https://github.com/smikhalevski/jtdc/issues"}, "homepage" : "https://github.com/smikhalevski/jtdc#readme", "dependencies" : {"@smikhalevski/codegen" : "^2.0.1"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "module": {"type": "string"}, "types": {"type": "string"}, "sideEffects": {"type": "boolean"}, "files": {"type": "array", "items": {"type": "string"}}, "scripts": {"type": "object", "properties": {"build": {"type": "string"}, "rollup": {"type": "string"}, "clean": {"type": "string"}, "test": {"type": "string"}}, "required": ["build", "rollup", "clean", "test"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "dependencies": {"type": "object", "properties": {"@smikhalevski/codegen": {"type": "string"}}, "required": ["@smikhalevski/codegen"]}}, "required": ["name", "version", "description", "main", "module", "types", "sideEffects", "files", "scripts", "repository", "keywords", "author", "license", "bugs", "homepage", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"word" : "tacket", "definition" : "A small, broad-headed nail. [Scot.] Jamieson."}
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": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "nama": {"type": "string"}}, "required": ["id", "nama"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"id" : "3509022001", "nama" : "Cakru"}, {"id" : "3509022002", "nama" : "Paseban"}, {"id" : "3509022003", "nama" : "Kraton"}, {"id" : "3509022004", "nama" : "Kencong"}, {"id" : "3509022005", "nama" : "Wonorejo"}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "nama": {"type": "string"}}, "required": ["id", "nama"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"hash": {"type": "string"}, "parentHash": {"type": "string"}, "number": {"type": "integer"}, "timestamp": {"type": "integer"}, "nonce": {"type": "string"}, "difficulty": {"type": "integer"}, "gasLimit": {"type": "object", "properties": {"_hex": {"type": "string"}}, "required": ["_hex"]}, "gasUsed": {"type": "object", "properties": {"_hex": {"type": "string"}}, "required": ["_hex"]}, "miner": {"type": "string"}, "extraData": {"type": "string"}, "transactions": {"type": "array", "items": {}}}, "required": ["hash", "parentHash", "number", "timestamp", "nonce", "difficulty", "gasLimit", "gasUsed", "miner", "extraData", "transactions"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"hash" : "0x2e41c420ff3f87617f9442c8abe266bfb0e8d29cd03eda287e6c646d8c38624a", "parentHash" : "0xea1810d82c3fb12293f2f08bce985f7e1538368525862d5ca11756ac45e590f1", "number" : 47595, "timestamp" : 1438943302, "nonce" : "0xc53c5f5a6b960805", "difficulty" : 1449512828742, "gasLimit" : {"_hex" : "0xd447"}, "gasUsed" : {"_hex" : "0x0"}, "miner" : "0x39D532eA6e320aAD7B3b0a1788c81672E5ad1a48", "extraData" : "0x476574682f76312e302e302f77696e646f77732f676f312e342e32", "transactions" : []}
json_instruct
{"type": "object", "properties": {"hash": {"type": "string"}, "parentHash": {"type": "string"}, "number": {"type": "integer"}, "timestamp": {"type": "integer"}, "nonce": {"type": "string"}, "difficulty": {"type": "integer"}, "gasLimit": {"type": "object", "properties": {"_hex": {"type": "string"}}, "required": ["_hex"]}, "gasUsed": {"type": "object", "properties": {"_hex": {"type": "string"}}, "required": ["_hex"]}, "miner": {"type": "string"}, "extraData": {"type": "string"}, "transactions": {"type": "array", "items": {}}}, "required": ["hash", "parentHash", "number", "timestamp", "nonce", "difficulty", "gasLimit", "gasUsed", "miner", "extraData", "transactions"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"name": {"type": "string"}, "website": {"type": "string"}, "short_description": {"type": "string"}, "explorers": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "url": {"type": "string"}}, "required": ["name", "url"]}}, "data_source": {"type": "string"}}, "required": ["name", "website", "short_description", "explorers", "data_source"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "Golem", "website" : "https://golem.network", "short_description" : "Golem (GNT) is a peer-to-peer decentralized marketplace for computing power. The project aims to be an alternative to centralized cloud service providers with its lower price point and open-source community of developers.", "explorers" : [{"name" : "Etherscan", "url" : "https://etherscan.io/token/Golem"}], "data_source" : "crowd"}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "website": {"type": "string"}, "short_description": {"type": "string"}, "explorers": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "url": {"type": "string"}}, "required": ["name", "url"]}}, "data_source": {"type": "string"}}, "required": ["name", "website", "short_description", "explorers", "data_source"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"type": {"type": "string"}, "javaType": {"type": "string"}, "properties": {"type": "object", "properties": {"name": {"type": "object", "properties": {"type": {"type": "string"}, "description": {"type": "string"}, "minLength": {"type": "integer"}}, "required": ["type", "description", "minLength"]}, "code": {"type": "object", "properties": {"type": {"type": "string"}, "description": {"type": "string"}, "minLength": {"type": "integer"}}, "required": ["type", "description", "minLength"]}, "description": {"type": "object", "properties": {"type": {"type": "string"}, "description": {"type": "string"}}, "required": ["type", "description"]}}, "required": ["name", "code", "description"]}, "required": {"type": "array", "items": {"type": "string"}}}, "required": ["type", "javaType", "properties", "required"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"type" : "object", "javaType" : "io.serverlessworkflow.api.error.ErrorDefinition", "properties" : {"name" : {"type" : "string", "description" : "Domain-specific error name", "minLength" : 1}, "code" : {"type" : "string", "description" : "Error code. Can be used in addition to the name to help runtimes resolve to technical errors/exceptions. Should not be defined if error is set to '*'", "minLength" : 1}, "description" : {"type" : "string", "description" : "Error description"}}, "required" : ["name"]}
json_instruct
{"type": "object", "properties": {"type": {"type": "string"}, "javaType": {"type": "string"}, "properties": {"type": "object", "properties": {"name": {"type": "object", "properties": {"type": {"type": "string"}, "description": {"type": "string"}, "minLength": {"type": "integer"}}, "required": ["type", "description", "minLength"]}, "code": {"type": "object", "properties": {"type": {"type": "string"}, "description": {"type": "string"}, "minLength": {"type": "integer"}}, "required": ["type", "description", "minLength"]}, "description": {"type": "object", "properties": {"type": {"type": "string"}, "description": {"type": "string"}}, "required": ["type", "description"]}}, "required": ["name", "code", "description"]}, "required": {"type": "array", "items": {"type": "string"}}}, "required": ["type", "javaType", "properties", "required"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"metric": {"type": "object", "properties": {"name": {"type": "string"}, "kind": {"type": "string"}, "counter": {"type": "object", "properties": {"value": {"type": "number"}}, "required": ["value"]}}, "required": ["name", "kind", "counter"]}}, "required": ["metric"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"metric" : {"name" : "l", "kind" : "incremental", "counter" : {"value" : 763136.0}}}
json_instruct
{"type": "object", "properties": {"metric": {"type": "object", "properties": {"name": {"type": "string"}, "kind": {"type": "string"}, "counter": {"type": "object", "properties": {"value": {"type": "number"}}, "required": ["value"]}}, "required": ["name", "kind", "counter"]}}, "required": ["metric"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"946809351703": {"type": "object", "properties": {"type": {"type": "string"}, "bookName": {"type": "string"}, "subjectName": {"type": "string"}, "fName": {"type": "string"}}, "required": ["type", "bookName", "subjectName", "fName"]}, "946809359043": {"type": "object", "properties": {"type": {"type": "string"}}, "required": ["type"]}, "946809359044": {"type": "object", "properties": {"type": {"type": "string"}}, "required": ["type"]}, "946809359664": {"type": "object", "properties": {"type": {"type": "string"}}, "required": ["type"]}}, "required": ["946809351703", "946809359043", "946809359044", "946809359664"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"946809351703" : {"type" : "book open", "bookName" : "Epic%20Quest", "subjectName" : "school", "fName" : "users/MS0vYW5kcm9pZF9hc3NldC93d3cvc2Nob29sL0VwaWMlMjBRdWVzdC92YXJpYWJsZS1FUV9UNF9BZGRTdWJfMC1FUV9UNF9BZGRTdWJfMC5odG1sLWFuYWx5dGljcy05NDY4MDkzNTE2NDk=.json"}, "946809359043" : {"type" : "st"}, "946809359044" : {"type" : "ss"}, "946809359664" : {"type" : "sf"}}
json_instruct
{"type": "object", "properties": {"946809351703": {"type": "object", "properties": {"type": {"type": "string"}, "bookName": {"type": "string"}, "subjectName": {"type": "string"}, "fName": {"type": "string"}}, "required": ["type", "bookName", "subjectName", "fName"]}, "946809359043": {"type": "object", "properties": {"type": {"type": "string"}}, "required": ["type"]}, "946809359044": {"type": "object", "properties": {"type": {"type": "string"}}, "required": ["type"]}, "946809359664": {"type": "object", "properties": {"type": {"type": "string"}}, "required": ["type"]}}, "required": ["946809351703", "946809359043", "946809359044", "946809359664"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"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" : 1806032002, "parent" : 1806032, "name" : "SABUK EMPAT", "latitude" : null, "longitude" : null, "postal" : [34559, 34565], "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#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"myNotes": {"type": "object", "properties": {"noteId": {"type": "string"}, "content": {"type": "string"}, "isStatus": {"type": "string"}, "zan": {"type": "string"}}, "required": ["noteId", "content", "isStatus", "zan"]}, "notes": {"type": "array", "items": {"type": "object", "properties": {"noteId": {"type": "string"}, "userName": {"type": "string"}, "userFaces": {"type": "string"}, "zan": {"type": "string"}, "content": {"type": "string"}, "isStatus": {"type": "string"}, "addtime": {"type": "string"}, "isZan": {"type": "string"}}, "required": ["noteId", "userName", "userFaces", "zan", "content", "isStatus", "addtime", "isZan"]}}}, "required": ["myNotes", "notes"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"myNotes" : {"noteId" : "0", "content" : "", "isStatus" : "", "zan" : ""}, "notes" : [{"noteId" : "37823", "userName" : "", "userFaces" : "", "zan" : "1", "content" : "DD\uff08\u5f1f\u5f1f\uff09\u80af\u5b9a\u6bd4MM\uff08\u59b9\u59b9\uff09\u5927\u554a", "isStatus" : "0", "addtime" : "2020/11/01 22:14", "isZan" : "0"}, {"noteId" : "97969", "userName" : "- Inflexible ......", "userFaces" : "https://thirdwx.qlogo.cn/mmopen/vi_32/pe85EKTajkgQGWR8CyWrBFlwI7RhVzrXyicjXGQ82Lhd2eu9lDibgsicnuQDbl0myZddqCC4bxmT2c3pCrjQqjlibg/132", "zan" : "0", "content" : "\u7b2c\u4e00\u6b21\u89c10% \u4f60\u4eec\u8c01\u6253\u7834\u4e86 \u7ed9\u6211\u70b9\u4e2a\u8d5e", "isStatus" : "0", "addtime" : "2021/07/01 01:36", "isZan" : "0"}, {"noteId" : "12896", "userName" : "\u897f\u5317\u690d\u6811\u6807\u5175\u53f6\u96e8\u9f99", "userFaces" : "https://kaolafeixing-oss.oss-cn-beijing.aliyuncs.com/iOS_image_userFace/1597083645_7D742E14-3438-4F14-9C71-F7EBCD3BEBE6.jpg", "zan" : "0", "content" : "", "isStatus" : "0", "addtime" : "2020/08/09 21:33", "isZan" : "0"}]}
json_instruct
{"type": "object", "properties": {"myNotes": {"type": "object", "properties": {"noteId": {"type": "string"}, "content": {"type": "string"}, "isStatus": {"type": "string"}, "zan": {"type": "string"}}, "required": ["noteId", "content", "isStatus", "zan"]}, "notes": {"type": "array", "items": {"type": "object", "properties": {"noteId": {"type": "string"}, "userName": {"type": "string"}, "userFaces": {"type": "string"}, "zan": {"type": "string"}, "content": {"type": "string"}, "isStatus": {"type": "string"}, "addtime": {"type": "string"}, "isZan": {"type": "string"}}, "required": ["noteId", "userName", "userFaces", "zan", "content", "isStatus", "addtime", "isZan"]}}}, "required": ["myNotes", "notes"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"id": {"type": "string"}}, "required": ["id"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : "87c9b254e47ff5d7360d726e4071e3e0d87d6ec0"}
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}}, "required": ["id"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"word" : "diamond state", "definition" : "Delaware; -- a nickname alluding to its small size."}
json_instruct
{"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"cpuInfo": {"type": "string"}, "lang": {"type": "string"}, "os": {"type": "string"}, "compiler": {"type": "string"}, "compilerVersion": {"type": "string"}, "test": {"type": "string"}, "code": {"type": "string"}, "input": {"type": "string"}, "timeMS": {"type": "number"}, "timeStdDevMS": {"type": "number"}, "memBytes": {"type": "integer"}, "cpuTimeMS": {"type": "number"}, "cpuTimeUserMS": {"type": "number"}, "cpuTimeKernelMS": {"type": "number"}, "githubRunId": {"type": "string"}, "buildLog": {"type": "object", "properties": {"compilerVersion": {"type": "null"}, "start": {"type": "string"}, "finished": {"type": "string"}, "durationMs": {"type": "integer"}}, "required": ["compilerVersion", "start", "finished", "durationMs"]}, "testLog": {"type": "object", "properties": {"runtimeVersion": {"type": "string"}, "start": {"type": "string"}, "finished": {"type": "string"}, "durationMs": {"type": "integer"}}, "required": ["runtimeVersion", "start", "finished", "durationMs"]}}, "required": ["cpuInfo", "lang", "os", "compiler", "compilerVersion", "test", "code", "input", "timeMS", "timeStdDevMS", "memBytes", "cpuTimeMS", "cpuTimeUserMS", "cpuTimeKernelMS", "githubRunId", "buildLog", "testLog"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"cpuInfo" : "[x86_64][2 cores] Intel(R) Xeon(R) Platinum 8272CL CPU @ 2.60GHz", "lang" : "python", "os" : "linux", "compiler" : "cpython", "compilerVersion" : "3", "test" : "fasta", "code" : "5.py", "input" : "2500000", "timeMS" : 4812.0436, "timeStdDevMS" : 118.28767534981534, "memBytes" : 13471744, "cpuTimeMS" : 8166.6666, "cpuTimeUserMS" : 6836.6666, "cpuTimeKernelMS" : 1330.0, "githubRunId" : "1531343699", "buildLog" : {"compilerVersion" : null, "start" : "2021-12-02T16:09:06.8828115+00:00", "finished" : "2021-12-02T16:09:06.8853909+00:00", "durationMs" : 2}, "testLog" : {"runtimeVersion" : "Python 3.10.0", "start" : "2021-12-02T16:38:05.6272084+00:00", "finished" : "2021-12-02T16:38:05.7800432+00:00", "durationMs" : 152}}
json_instruct
{"type": "object", "properties": {"cpuInfo": {"type": "string"}, "lang": {"type": "string"}, "os": {"type": "string"}, "compiler": {"type": "string"}, "compilerVersion": {"type": "string"}, "test": {"type": "string"}, "code": {"type": "string"}, "input": {"type": "string"}, "timeMS": {"type": "number"}, "timeStdDevMS": {"type": "number"}, "memBytes": {"type": "integer"}, "cpuTimeMS": {"type": "number"}, "cpuTimeUserMS": {"type": "number"}, "cpuTimeKernelMS": {"type": "number"}, "githubRunId": {"type": "string"}, "buildLog": {"type": "object", "properties": {"compilerVersion": {"type": "null"}, "start": {"type": "string"}, "finished": {"type": "string"}, "durationMs": {"type": "integer"}}, "required": ["compilerVersion", "start", "finished", "durationMs"]}, "testLog": {"type": "object", "properties": {"runtimeVersion": {"type": "string"}, "start": {"type": "string"}, "finished": {"type": "string"}, "durationMs": {"type": "integer"}}, "required": ["runtimeVersion", "start", "finished", "durationMs"]}}, "required": ["cpuInfo", "lang", "os", "compiler", "compilerVersion", "test", "code", "input", "timeMS", "timeStdDevMS", "memBytes", "cpuTimeMS", "cpuTimeUserMS", "cpuTimeKernelMS", "githubRunId", "buildLog", "testLog"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "array", "items": {"type": "array", "items": {"type": "string"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
[["210404004001", "\u660c\u56fe\u793e\u533a\u5c45\u6c11\u59d4\u5458\u4f1a", "111", "0"], ["210404004002", "\u5357\u4e00\u793e\u533a\u5c45\u6c11\u59d4\u5458\u4f1a", "111", "0"], ["210404004003", "\u5b8f\u94a2\u793e\u533a\u5c45\u6c11\u59d4\u5458\u4f1a", "111", "0"], ["210404004005", "\u671d\u9633\u793e\u533a\u5c45\u6c11\u59d4\u5458\u4f1a", "111", "0"], ["210404004006", "\u4fe1\u5408\u793e\u533a\u5c45\u6c11\u59d4\u5458\u4f1a", "111", "0"], ["210404004007", "\u8fbd\u4e2d\u793e\u533a\u5c45\u6c11\u59d4\u5458\u4f1a", "111", "0"], ["210404004008", "\u5f00\u6e90\u793e\u533a\u5c45\u6c11\u59d4\u5458\u4f1a", "111", "0"], ["210404004009", "\u548c\u987a\u793e\u533a\u5c45\u6c11\u59d4\u5458\u4f1a", "111", "0"], ["210404004010", "\u98ce\u534e\u793e\u533a\u5c45\u6c11\u59d4\u5458\u4f1a", "111", "0"], ["210404004011", "\u5609\u56ed\u793e\u533a\u5c45\u6c11\u59d4\u5458\u4f1a", "111", "0"]]
json_instruct
{"type": "array", "items": {"type": "array", "items": {"type": "string"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"msg": {"type": "string"}, "result": {"type": "string"}}, "required": ["msg", "result"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"msg" : "", "result" : "success"}
json_instruct
{"type": "object", "properties": {"msg": {"type": "string"}, "result": {"type": "string"}}, "required": ["msg", "result"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"Fname": {"type": "string"}, "Lname": {"type": "string"}, "Email": {"type": "string"}}, "required": ["Fname", "Lname", "Email"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"Fname" : "Joshua", "Lname" : "Wesley", "Email" : "jtwesley99@gmail.com"}
json_instruct
{"type": "object", "properties": {"Fname": {"type": "string"}, "Lname": {"type": "string"}, "Email": {"type": "string"}}, "required": ["Fname", "Lname", "Email"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"id": {"type": "integer"}, "category": {"type": "object", "properties": {"name": {"type": "string"}, "subset": {"type": "string"}}, "required": ["name", "subset"]}, "help": {"type": "object", "properties": {"de": {"type": "string"}, "en": {"type": "string"}, "fr": {"type": "string"}, "jp": {"type": "string"}}, "required": ["de", "en", "fr", "jp"]}, "img": {"type": "string"}}, "required": ["id", "category", "help", "img"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : 620, "category" : {"name" : "Quests", "subset" : "Levequests"}, "help" : {"de" : "5 verschiedene Goldschmied-Fertigungserlasse wurden erfolgreich abgeschlossen.", "en" : "Complete 5 unique goldsmith levequests.", "fr" : "Accomplir 5 mandats d'orf\u00e8vre diff\u00e9rents.", "jp" : "\u5f6b\u91d1\u5e2b\u306e\u30ea\u30fc\u30f4\uff1a\u88fd\u4f5c\u7a3c\u696d\u30925\u7a2e\u985e\u30b3\u30f3\u30d7\u30ea\u30fc\u30c8\u3059\u308b"}, "img" : "035000/035301.png"}
json_instruct
{"type": "object", "properties": {"id": {"type": "integer"}, "category": {"type": "object", "properties": {"name": {"type": "string"}, "subset": {"type": "string"}}, "required": ["name", "subset"]}, "help": {"type": "object", "properties": {"de": {"type": "string"}, "en": {"type": "string"}, "fr": {"type": "string"}, "jp": {"type": "string"}}, "required": ["de", "en", "fr", "jp"]}, "img": {"type": "string"}}, "required": ["id", "category", "help", "img"], "$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"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "start": {"type": "string"}, "build": {"type": "string"}, "watch": {"type": "string"}, "dev": {"type": "string"}}, "required": ["test", "start", "build", "watch", "dev"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"chai": {"type": "string"}, "craftyjs": {"type": "string"}, "express": {"type": "string"}, "socket.io": {"type": "string"}, "underscore": {"type": "string"}}, "required": ["chai", "craftyjs", "express", "socket.io", "underscore"]}, "devDependencies": {"type": "object", "properties": {"browserify": {"type": "string"}, "mocha": {"type": "string"}, "nodemon": {"type": "string"}, "watchify": {"type": "string"}}, "required": ["browserify", "mocha", "nodemon", "watchify"]}}, "required": ["name", "version", "description", "main", "repository", "scripts", "keywords", "author", "license", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "kono", "version" : "0.1.0", "description" : "Korea board game", "main" : "server.js", "repository" : {"type" : "git", "url" : "https://github.com/xtpor97/kono.git"}, "scripts" : {"test" : "mocha", "start" : "npm run build && node .", "build" : "browserify client.js > public/bundle.js", "watch" : "watchify client.js -o public/bundle.js", "dev" : "nodemon --watch src --watch client.js --watch server.js --exec npm start"}, "keywords" : ["board game"], "author" : "Tintin Ho (holoktin97@gmail.com)", "license" : "MIT", "dependencies" : {"chai" : "^3.5.0", "craftyjs" : "^0.7.1", "express" : "^4.14.0", "socket.io" : "^1.4.8", "underscore" : "^1.8.3"}, "devDependencies" : {"browserify" : "^13.1.0", "mocha" : "^3.0.2", "nodemon" : "^1.10.2", "watchify" : "^3.7.0"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "start": {"type": "string"}, "build": {"type": "string"}, "watch": {"type": "string"}, "dev": {"type": "string"}}, "required": ["test", "start", "build", "watch", "dev"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"chai": {"type": "string"}, "craftyjs": {"type": "string"}, "express": {"type": "string"}, "socket.io": {"type": "string"}, "underscore": {"type": "string"}}, "required": ["chai", "craftyjs", "express", "socket.io", "underscore"]}, "devDependencies": {"type": "object", "properties": {"browserify": {"type": "string"}, "mocha": {"type": "string"}, "nodemon": {"type": "string"}, "watchify": {"type": "string"}}, "required": ["browserify", "mocha", "nodemon", "watchify"]}}, "required": ["name", "version", "description", "main", "repository", "scripts", "keywords", "author", "license", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"Logging": {"type": "object", "properties": {"LogLevel": {"type": "object", "properties": {"Default": {"type": "string"}, "System": {"type": "string"}, "Microsoft": {"type": "string"}}, "required": ["Default", "System", "Microsoft"]}}, "required": ["LogLevel"]}, "PasswordValidation": {"type": "object", "properties": {"MinimumLength": {"type": "string"}, "MinimumDigits": {"type": "string"}, "MinimumLowercase": {"type": "string"}, "MinimumUppercase": {"type": "string"}, "MinimumSpecialChars": {"type": "string"}, "ValidSpecialChars": {"type": "string"}}, "required": ["MinimumLength", "MinimumDigits", "MinimumLowercase", "MinimumUppercase", "MinimumSpecialChars", "ValidSpecialChars"]}}, "required": ["Logging", "PasswordValidation"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"Logging" : {"LogLevel" : {"Default" : "Debug", "System" : "Information", "Microsoft" : "Information"}}, "PasswordValidation" : {"MinimumLength" : "9", "MinimumDigits" : "1", "MinimumLowercase" : "1", "MinimumUppercase" : "1", "MinimumSpecialChars" : "1", "ValidSpecialChars" : "!@#$%^&*()-+"}}
json_instruct
{"type": "object", "properties": {"Logging": {"type": "object", "properties": {"LogLevel": {"type": "object", "properties": {"Default": {"type": "string"}, "System": {"type": "string"}, "Microsoft": {"type": "string"}}, "required": ["Default", "System", "Microsoft"]}}, "required": ["LogLevel"]}, "PasswordValidation": {"type": "object", "properties": {"MinimumLength": {"type": "string"}, "MinimumDigits": {"type": "string"}, "MinimumLowercase": {"type": "string"}, "MinimumUppercase": {"type": "string"}, "MinimumSpecialChars": {"type": "string"}, "ValidSpecialChars": {"type": "string"}}, "required": ["MinimumLength", "MinimumDigits", "MinimumLowercase", "MinimumUppercase", "MinimumSpecialChars", "ValidSpecialChars"]}}, "required": ["Logging", "PasswordValidation"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"0-19": {"type": "array", "items": {"type": "string"}}, "20-29": {"type": "array", "items": {"type": "string"}}, "30-39": {"type": "array", "items": {"type": "string"}}, "40-49": {"type": "array", "items": {"type": "string"}}, "50-59": {"type": "array", "items": {"type": "string"}}, "60-69": {"type": "array", "items": {"type": "string"}}, "70-79": {"type": "array", "items": {"type": "string"}}, "80+": {"type": "array", "items": {"type": "string"}}}, "required": ["0-19", "20-29", "30-39", "40-49", "50-59", "60-69", "70-79", "80+"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"0-19" : ["0-19", "0"], "20-29" : ["20-29", "16"], "30-39" : ["30-39", "33"], "40-49" : ["40-49", "86"], "50-59" : ["50-59", "291"], "60-69" : ["60-69", "860"], "70-79" : ["70-79", "1,802"], "80+" : ["80+", "5,155"]}
json_instruct
{"type": "object", "properties": {"0-19": {"type": "array", "items": {"type": "string"}}, "20-29": {"type": "array", "items": {"type": "string"}}, "30-39": {"type": "array", "items": {"type": "string"}}, "40-49": {"type": "array", "items": {"type": "string"}}, "50-59": {"type": "array", "items": {"type": "string"}}, "60-69": {"type": "array", "items": {"type": "string"}}, "70-79": {"type": "array", "items": {"type": "string"}}, "80+": {"type": "array", "items": {"type": "string"}}}, "required": ["0-19", "20-29", "30-39", "40-49", "50-59", "60-69", "70-79", "80+"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"vexflow-debug.js": {"type": "string"}, "vexflow-legacy-debug.js": {"type": "string"}, "vexflow-legacy-min.js": {"type": "string"}, "vexflow-min.js": {"type": "string"}}, "required": ["vexflow-debug.js", "vexflow-legacy-debug.js", "vexflow-legacy-min.js", "vexflow-min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"vexflow-debug.js" : "sha256-44XyWzUGAgmYtF13aJ9wUvO5IcI8Ok1pDdi5bI1ypAY=", "vexflow-legacy-debug.js" : "sha256-BM3+YQ9yeHE1QBdyssSSFFfpJ5gapJ3exttdBXLCLPU=", "vexflow-legacy-min.js" : "sha256-iA7CNNWzoaox5AtIgNUiYuANVd5PDRn10QAWAuYYDhM=", "vexflow-min.js" : "sha256-cubSmbYYYguvKRCYTbK1/xZz+TKImBy8b6A0635NH/I="}
json_instruct
{"type": "object", "properties": {"vexflow-debug.js": {"type": "string"}, "vexflow-legacy-debug.js": {"type": "string"}, "vexflow-legacy-min.js": {"type": "string"}, "vexflow-min.js": {"type": "string"}}, "required": ["vexflow-debug.js", "vexflow-legacy-debug.js", "vexflow-legacy-min.js", "vexflow-min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"directions": {"type": "array", "items": {"type": "string"}}, "ingredients": {"type": "array", "items": {"type": "string"}}, "language": {"type": "string"}, "source": {"type": "string"}, "tags": {"type": "array", "items": {}}, "title": {"type": "string"}, "url": {"type": "string"}}, "required": ["directions", "ingredients", "language", "source", "tags", "title", "url"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"directions" : ["Preheat oven to 450 degrees F (230 degrees C). Scrub the unpeeled potatoes and prick them several times with a fork; place onto a baking sheet.", "Bake in the preheated oven until the potatoes are easily pierced with a fork, 50 minutes to 1 hour. Remove, cool, and peel. Mash the potatoes with the buttermilk. Stir in the grated raw potato, flour, baking soda, salt, and pepper.", "Melt the butter in a large skillet or griddle over medium heat. Scoop the potato mixture into the skillet to make 3 inch cakes. Fry until golden and crisp, turning once, about 5 minutes per side."], "ingredients" : ["1/2 pound potatoes, unpeeled", "1 1/2 cups buttermilk", "1/2 pound potatoes, peeled and grated", "1 3/4 cups all-purpose flour", "1 teaspoon baking soda", "salt and ground black pepper to taste", "2 tablespoons butter, or as needed"], "language" : "en-US", "source" : "allrecipes.com", "tags" : [], "title" : "Boxty", "url" : "http://allrecipes.com/recipe/111190/boxty/"}
json_instruct
{"type": "object", "properties": {"directions": {"type": "array", "items": {"type": "string"}}, "ingredients": {"type": "array", "items": {"type": "string"}}, "language": {"type": "string"}, "source": {"type": "string"}, "tags": {"type": "array", "items": {}}, "title": {"type": "string"}, "url": {"type": "string"}}, "required": ["directions", "ingredients", "language", "source", "tags", "title", "url"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "array", "items": {"type": "object", "properties": {"origin": {"type": "array", "items": {"type": "string"}}, "responseHeader": {"type": "array", "items": {"type": "string"}}, "method": {"type": "string"}, "maxAgeSeconds": {"type": "integer"}}, "required": ["origin", "responseHeader", "method", "maxAgeSeconds"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"origin" : ["http://localhost:8080", "https://localhost:8080"], "responseHeader" : ["Content-Type", "x-goog-acl"], "method" : "*", "maxAgeSeconds" : 3600}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"origin": {"type": "array", "items": {"type": "string"}}, "responseHeader": {"type": "array", "items": {"type": "string"}}, "method": {"type": "string"}, "maxAgeSeconds": {"type": "integer"}}, "required": ["origin", "responseHeader", "method", "maxAgeSeconds"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"gpmesh": {"type": "array", "items": {"type": "string"}}, "png": {"type": "array", "items": {"type": "string"}}, "mp3": {"type": "array", "items": {"type": "string"}}, "wav": {"type": "array", "items": {"type": "string"}}, "jpg": {"type": "array", "items": {"type": "string"}}}, "required": ["gpmesh", "png", "mp3", "wav", "jpg"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"gpmesh" : ["basic_tree.gpmesh", "bird.gpmesh", "bunny.gpmesh", "bus.gpmesh", "car.gpmesh", "carrot.gpmesh", "earth.gpmesh", "fireball.gpmesh", "grass.gpmesh", "log.gpmesh", "penguin.gpmesh", "pumpkin.gpmesh", "railroad.gpmesh", "road.gpmesh", "sword.gpmesh", "truck.gpmesh", "water.gpmesh"], "png" : ["basic_tree.png", "bird.png", "bunny.png", "bus.png", "car.png", "carrot.png", "deadscreen.png", "fireball.png", "grass.png", "life_carrot.png", "life_heart.png", "loading.png", "log.png", "penguin.png", "pumpkin.png", "railroad.png", "road.png", "sword.png", "truck.png", "water.png", "white.png", "youwin.png"], "mp3" : ["chicken.mp3", "happy.mp3", "owl.mp3", "victory.mp3"], "wav" : ["DragonHawkDeath1.wav", "gameover.wav", "jump.wav", "penguin_boom.wav", "penguin_drop.wav", "slashing.wav"], "jpg" : ["earth.jpg", "moon.jpg", "pressenter.jpg", "space.jpg"]}
json_instruct
{"type": "object", "properties": {"gpmesh": {"type": "array", "items": {"type": "string"}}, "png": {"type": "array", "items": {"type": "string"}}, "mp3": {"type": "array", "items": {"type": "string"}}, "wav": {"type": "array", "items": {"type": "string"}}, "jpg": {"type": "array", "items": {"type": "string"}}}, "required": ["gpmesh", "png", "mp3", "wav", "jpg"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"index": {"type": "string"}, "class": {"type": "object", "properties": {"index": {"type": "string"}, "name": {"type": "string"}, "url": {"type": "string"}}, "required": ["index", "name", "url"]}, "name": {"type": "string"}, "level": {"type": "integer"}, "prerequisites": {"type": "array", "items": {}}, "desc": {"type": "array", "items": {"type": "string"}}, "url": {"type": "string"}}, "required": ["index", "class", "name", "level", "prerequisites", "desc", "url"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"index" : "slippery-mind", "class" : {"index" : "rogue", "name" : "Rogue", "url" : "/api/classes/rogue"}, "name" : "Slippery Mind", "level" : 15, "prerequisites" : [], "desc" : ["By 15th level, you have acquired greater mental strength. You gain proficiency in Wisdom saving throws."], "url" : "/api/features/slippery-mind"}
json_instruct
{"type": "object", "properties": {"index": {"type": "string"}, "class": {"type": "object", "properties": {"index": {"type": "string"}, "name": {"type": "string"}, "url": {"type": "string"}}, "required": ["index", "name", "url"]}, "name": {"type": "string"}, "level": {"type": "integer"}, "prerequisites": {"type": "array", "items": {}}, "desc": {"type": "array", "items": {"type": "string"}}, "url": {"type": "string"}}, "required": ["index", "class", "name", "level", "prerequisites", "desc", "url"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"id": {"type": "integer"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"src:alt_label": {"type": "string"}, "src:geom": {"type": "string"}, "wof:geomhash": {"type": "string"}, "wof:id": {"type": "integer"}, "wof:repo": {"type": "string"}}, "required": ["src:alt_label", "src:geom", "wof:geomhash", "wof:id", "wof:repo"]}, "bbox": {"type": "array", "items": {"type": "number"}}, "geometry": {"type": "object", "properties": {"coordinates": {"type": "array", "items": {"type": "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" : 101789981, "type" : "Feature", "properties" : {"src:alt_label" : "quattroshapes", "src:geom" : "quattroshapes", "wof:geomhash" : "74ba459f84f17547ce06d69922c481dc", "wof:id" : 101789981, "wof:repo" : "whosonfirst-data-admin-ro"}, "bbox" : [28.042577, 45.589421, 28.063701, 45.620768], "geometry" : {"coordinates" : [[[28.061649, 45.620334], [28.061354, 45.619463], [28.062605, 45.619246], [28.060539, 45.613151], [28.06179, 45.612934], [28.061495, 45.612063], [28.062746, 45.611846], [28.06245, 45.610975], [28.063701, 45.610758], [28.062816, 45.608145], [28.061565, 45.608362], [28.060975, 45.606621], [28.058473, 45.607055], [28.057883, 45.605313], [28.056632, 45.60553], [28.053683, 45.596822], [28.057435, 45.596171], [28.05537, 45.590075], [28.05412, 45.590292], [28.053825, 45.589421], [28.051324, 45.589855], [28.052208, 45.592468], [28.050958, 45.592685], [28.051253, 45.593556], [28.043748, 45.594857], [28.044043, 45.595728], [28.042792, 45.595945], [28.045445, 45.603782], [28.042943, 45.604216], [28.043828, 45.606829], [28.042577, 45.607045], [28.042872, 45.607916], [28.044123, 45.6077], [28.044417, 45.60857], [28.04817, 45.60792], [28.049645, 45.612274], [28.048394, 45.612491], [28.050754, 45.619458], [28.052005, 45.619241], [28.0523, 45.620111], [28.056054, 45.619461], [28.056349, 45.620331], [28.058851, 45.619897], [28.059146, 45.620768], [28.061649, 45.620334]]], "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#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "license": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}}, "minimum-stability": {"type": "string"}, "require": {"type": "object", "properties": {"phpunit/phpunit": {"type": "string"}, "mikey179/vfsStream": {"type": "string"}, "diablomedia/phpunit-pretty-printer": {"type": "string"}}, "required": ["phpunit/phpunit", "mikey179/vfsStream", "diablomedia/phpunit-pretty-printer"]}}, "required": ["name", "description", "license", "authors", "minimum-stability", "require"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "mirfilip/awesome-spl", "description" : "PHP SPL playground", "license" : "MIT", "authors" : [{"name" : "Miros\u0142aw Filip", "email" : "mirfilip@gmail.com"}], "minimum-stability" : "stable", "require" : {"phpunit/phpunit" : "5.3.*", "mikey179/vfsStream" : "1.6.*", "diablomedia/phpunit-pretty-printer" : "^1.0"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "license": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}}, "minimum-stability": {"type": "string"}, "require": {"type": "object", "properties": {"phpunit/phpunit": {"type": "string"}, "mikey179/vfsStream": {"type": "string"}, "diablomedia/phpunit-pretty-printer": {"type": "string"}}, "required": ["phpunit/phpunit", "mikey179/vfsStream", "diablomedia/phpunit-pretty-printer"]}}, "required": ["name", "description", "license", "authors", "minimum-stability", "require"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"listing_id": {"type": "integer"}, "id": {"type": "integer"}, "date": {"type": "string"}, "reviewer_id": {"type": "integer"}, "reviewer_name": {"type": "string"}, "text": {"type": "string"}, "title": {"type": "string"}, "host_id": {"type": "integer"}, "listing_latitude": {"type": "number"}, "listing_longitude": {"type": "number"}, "host_name": {"type": "string"}}, "required": ["listing_id", "id", "date", "reviewer_id", "reviewer_name", "text", "title", "host_id", "listing_latitude", "listing_longitude", "host_name"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"listing_id" : 141550, "id" : 8356856, "date" : "2013-10-27", "reviewer_id" : 2101327, "reviewer_name" : "Michael", "text" : "Fiona's place is exactly what I was expecting in the neighborhood I wanted to be in. Definitely good value.", "title" : "Sweet, Sexy Studio in the '02", "host_id" : 688306, "listing_latitude" : 30.25581961280061, "listing_longitude" : -97.72709090146905, "host_name" : "Fiona"}
json_instruct
{"type": "object", "properties": {"listing_id": {"type": "integer"}, "id": {"type": "integer"}, "date": {"type": "string"}, "reviewer_id": {"type": "integer"}, "reviewer_name": {"type": "string"}, "text": {"type": "string"}, "title": {"type": "string"}, "host_id": {"type": "integer"}, "listing_latitude": {"type": "number"}, "listing_longitude": {"type": "number"}, "host_name": {"type": "string"}}, "required": ["listing_id", "id", "date", "reviewer_id", "reviewer_name", "text", "title", "host_id", "listing_latitude", "listing_longitude", "host_name"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"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" : [659.797, 157.258, 1, 669.867, 190.206, 1, 592.447, 188.82, 1, 563.732, 255.858, 1, 556.318, 320.478, 1, 705.174, 183.464, 1, 770.137, 204.563, 1, 834.711, 255.259, 1, 629.386, 352.457, 1, 622.299, 457.193, 1, 635.512, 540.33, 1, 696.369, 346.689, 1, 689.04, 452.901, 1, 696.052, 585.688, 1, 651.797, 140.488, 1, 674.306, 143.485, 1, 632.861, 137.954, 1, 689.318, 143.589, 1], "face_keypoints_2d" : [], "hand_left_keypoints_2d" : [], "hand_right_keypoints_2d" : [], "pose_keypoints_3d" : [], "face_keypoints_3d" : [], "hand_left_keypoints_3d" : [], "hand_right_keypoints_3d" : []}]}
json_instruct
{"type": "object", "properties": {"version": {"type": "number"}, "people": {"type": "array", "items": {"type": "object", "properties": {"pose_keypoints_2d": {"type": "array", "items": {"type": "number"}}, "face_keypoints_2d": {"type": "array", "items": {}}, "hand_left_keypoints_2d": {"type": "array", "items": {}}, "hand_right_keypoints_2d": {"type": "array", "items": {}}, "pose_keypoints_3d": {"type": "array", "items": {}}, "face_keypoints_3d": {"type": "array", "items": {}}, "hand_left_keypoints_3d": {"type": "array", "items": {}}, "hand_right_keypoints_3d": {"type": "array", "items": {}}}, "required": ["pose_keypoints_2d", "face_keypoints_2d", "hand_left_keypoints_2d", "hand_right_keypoints_2d", "pose_keypoints_3d", "face_keypoints_3d", "hand_left_keypoints_3d", "hand_right_keypoints_3d"]}}}, "required": ["version", "people"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "array", "items": {"type": "object", "properties": {"job_opening_type": {"type": "array", "items": {"type": "string"}}, "place": {"type": "array", "items": {"type": "string"}}, "salary": {"type": "array", "items": {"type": "string"}}, "employment_structure": {"type": "null"}, "title": {"type": "string"}}, "required": ["job_opening_type", "place", "salary", "employment_structure", "title"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"job_opening_type" : ["IT\u30b3\u30f3\u30b5\u30eb\u30bf\u30f3\u30c8", "AWS\u30bd\u30ea\u30e5\u30fc\u30b7\u30e7\u30f3\u30a2\u30fc\u30ad\u30c6\u30af\u30c8"], "place" : ["\u6771\u4eac\u90fd\u4e2d\u592e\u533a\u6674\u6d77"], "salary" : ["\u5e74\u53ce500\u4e07~900\u4e07"], "employment_structure" : null, "title" : "AWS\u30bd\u30ea\u30e5\u30fc\u30b7\u30e7\u30f3\u30a2\u30fc\u30ad\u30c6\u30af\u30c8 | \u8ee2\u8077\u30a8\u30fc\u30b8\u30a7\u30f3\u30c8 A Human"}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"job_opening_type": {"type": "array", "items": {"type": "string"}}, "place": {"type": "array", "items": {"type": "string"}}, "salary": {"type": "array", "items": {"type": "string"}}, "employment_structure": {"type": "null"}, "title": {"type": "string"}}, "required": ["job_opening_type", "place", "salary", "employment_structure", "title"]}, "$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"}, "license": {"type": "string"}}, "required": ["name", "version", "license"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "@divriots/studio-story-renderer", "version" : "0.2.4", "license" : "MIT"}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "license": {"type": "string"}}, "required": ["name", "version", "license"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"title": {"type": "string"}, "fields": {"type": "array", "items": {"type": "string"}}, "abstract": {"type": "string"}, "citation": {"type": "string"}, "departments": {"type": "array", "items": {"type": "string"}}, "authors": {"type": "array", "items": {"type": "string"}}, "conf": {"type": "string"}, "year": {"type": "string"}, "pages": {"type": "integer"}}, "required": ["title", "fields", "abstract", "citation", "departments", "authors", "conf", "year", "pages"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"title" : "Reasoning about edits to feature models.", "fields" : ["feature model", "feature", "software product line", "generalization", "code refactoring"], "abstract" : "Features express the variabilities and commonalities among programs in a software product line (SPL). A feature model defines the valid combinations of features, where each combination corresponds to a program in an SPL. SPLs and their feature models evolve over time. We classify the evolution of a feature model via modifications as refactorings, specializations, generalizations, or arbitrary edits. We present an algorithm to reason about feature model edits to help designers determine how the program membership of an SPL has changed. Our algorithm takes two feature models as input (before and after edit versions), where the set of features in both models are not necessarily the same, and it automatically computes the change classification. Our algorithm is able to give examples of added or deleted products and efficiently classifies edits to even large models that have thousands of features.", "citation" : "Citations (339)", "departments" : ["University of Texas at Austin", "School of Compu ... deburg, Germany", "School of Compu ... deburg, Germany"], "authors" : ["Thomas Th\u00fcm.....http://dblp.org/pers/hd/t/Th=uuml=m:Thomas", "Don S. Batory.....http://dblp.org/pers/hd/b/Batory:Don_S=", "Christian K\u00e4stner.....http://dblp.org/pers/hd/k/K=auml=stner:Christian"], "conf" : "icse", "year" : "2009", "pages" : 11}
json_instruct
{"type": "object", "properties": {"title": {"type": "string"}, "fields": {"type": "array", "items": {"type": "string"}}, "abstract": {"type": "string"}, "citation": {"type": "string"}, "departments": {"type": "array", "items": {"type": "string"}}, "authors": {"type": "array", "items": {"type": "string"}}, "conf": {"type": "string"}, "year": {"type": "string"}, "pages": {"type": "integer"}}, "required": ["title", "fields", "abstract", "citation", "departments", "authors", "conf", "year", "pages"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"id": {"type": "integer"}, "ot": {"type": "integer"}, "alias": {"type": "integer"}, "setcode": {"type": "integer"}, "type": {"type": "integer"}, "atk": {"type": "integer"}, "def": {"type": "integer"}, "level": {"type": "integer"}, "race": {"type": "integer"}, "attribute": {"type": "integer"}, "category": {"type": "integer"}, "name": {"type": "string"}, "desc": {"type": "string"}, "str1": {"type": "string"}, "str2": {"type": "string"}, "str3": {"type": "string"}, "str4": {"type": "string"}, "str5": {"type": "string"}, "str6": {"type": "string"}, "str7": {"type": "string"}, "str8": {"type": "string"}, "str9": {"type": "string"}, "str10": {"type": "string"}, "str11": {"type": "string"}, "str12": {"type": "string"}, "str13": {"type": "string"}, "str14": {"type": "string"}, "str15": {"type": "string"}, "str16": {"type": "string"}, "links": {"type": "array", "items": {}}, "cardpool": {"type": "string"}, "ocg": {"type": "object", "properties": {"pack": {"type": "string"}, "pack_id": {"type": "string"}, "date": {"type": "string"}}, "required": ["pack", "pack_id", "date"]}, "tcg": {"type": "object", "properties": {"pack": {"type": "string"}, "pack_id": {"type": "string"}, "date": {"type": "string"}}, "required": ["pack", "pack_id", "date"]}, "picture": {"type": "string"}}, "required": ["id", "ot", "alias", "setcode", "type", "atk", "def", "level", "race", "attribute", "category", "name", "desc", "str1", "str2", "str3", "str4", "str5", "str6", "str7", "str8", "str9", "str10", "str11", "str12", "str13", "str14", "str15", "str16", "links", "cardpool", "ocg", "tcg", "picture"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : 84025439, "ot" : 3, "alias" : 0, "setcode" : 220, "type" : 8388641, "atk" : 3600, "def" : 3200, "level" : 12, "race" : 32, "attribute" : 16, "category" : 0, "name" : "Super Quantal Mech King Great Magnus", "desc" : "3 Level 12 monsters\nIf this card is sent to the Graveyard: You can Special Summon 3 \"Super Quantal Mech Beast\" Xyz Monsters with different names from your Graveyard. This card gains these effects, based on the number of Xyz Materials with different names attached to it. \u25cf 2 or more: Once per turn, during either player's Main Phase: You can detach 1 Xyz Material from this card; shuffle 1 card on the field into the Deck. \u25cf 4 or more: It is unaffected by card effects, except \"Super Quant\" cards. \u25cf 6 or more: Your opponent cannot add cards from the Deck to the hand by card effects.", "str1" : "", "str2" : "", "str3" : "", "str4" : "", "str5" : "", "str6" : "", "str7" : "", "str8" : "", "str9" : "", "str10" : "", "str11" : "", "str12" : "", "str13" : "", "str14" : "", "str15" : "", "str16" : "", "links" : [], "cardpool" : "OCG/TCG", "ocg" : {"pack" : "Booster SP: Wing Raiders", "pack_id" : "SPWR-JP037", "date" : "2015-11-14"}, "tcg" : {"pack" : "Wing Raiders", "pack_id" : "WIRA-DE037", "date" : "2016-02-11"}, "picture" : "https://vignette.wikia.nocookie.net/yugioh/images/2/2b/SuperQuantalMechKingGreatMagnus-WIRA-EN-ScR-1E.png"}
json_instruct
{"type": "object", "properties": {"id": {"type": "integer"}, "ot": {"type": "integer"}, "alias": {"type": "integer"}, "setcode": {"type": "integer"}, "type": {"type": "integer"}, "atk": {"type": "integer"}, "def": {"type": "integer"}, "level": {"type": "integer"}, "race": {"type": "integer"}, "attribute": {"type": "integer"}, "category": {"type": "integer"}, "name": {"type": "string"}, "desc": {"type": "string"}, "str1": {"type": "string"}, "str2": {"type": "string"}, "str3": {"type": "string"}, "str4": {"type": "string"}, "str5": {"type": "string"}, "str6": {"type": "string"}, "str7": {"type": "string"}, "str8": {"type": "string"}, "str9": {"type": "string"}, "str10": {"type": "string"}, "str11": {"type": "string"}, "str12": {"type": "string"}, "str13": {"type": "string"}, "str14": {"type": "string"}, "str15": {"type": "string"}, "str16": {"type": "string"}, "links": {"type": "array", "items": {}}, "cardpool": {"type": "string"}, "ocg": {"type": "object", "properties": {"pack": {"type": "string"}, "pack_id": {"type": "string"}, "date": {"type": "string"}}, "required": ["pack", "pack_id", "date"]}, "tcg": {"type": "object", "properties": {"pack": {"type": "string"}, "pack_id": {"type": "string"}, "date": {"type": "string"}}, "required": ["pack", "pack_id", "date"]}, "picture": {"type": "string"}}, "required": ["id", "ot", "alias", "setcode", "type", "atk", "def", "level", "race", "attribute", "category", "name", "desc", "str1", "str2", "str3", "str4", "str5", "str6", "str7", "str8", "str9", "str10", "str11", "str12", "str13", "str14", "str15", "str16", "links", "cardpool", "ocg", "tcg", "picture"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"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" : 24938, "cartId" : "73946368-6ba0-47fd-82b5-d3d1cca56501", "preferredProducts" : [2799, 3708, 2179, 351], "productReviews" : []}
json_instruct
{"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {"type": "integer"}}, "productReviews": {"type": "array", "items": {}}}, "required": ["userId", "cartId", "preferredProducts", "productReviews"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"name": {"type": "string"}, "fields": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "descriptor": {"type": "string"}}, "required": ["name", "descriptor"]}}, "methods": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "descriptor": {"type": "string"}}, "required": ["name", "descriptor"]}}}, "required": ["name", "fields", "methods"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "edf$a", "fields" : [{"name" : "a", "descriptor" : "Ledf;"}, {"name" : "b", "descriptor" : "Ljava/util/Map;"}, {"name" : "c", "descriptor" : "Ljava/util/concurrent/CompletableFuture;"}], "methods" : [{"name" : "<init>", "descriptor" : "(Ledf;Leng;DD)V"}, {"name" : "<init>", "descriptor" : "(Ledf;Leng;DDLedf$1;)V"}, {"name" : "a", "descriptor" : "(Ledf$a;)Ljava/util/concurrent/CompletableFuture;"}, {"name" : "a", "descriptor" : "(Leng;Lvj;II)Ljava/util/Map;"}, {"name" : "b", "descriptor" : "(Ledf$a;)Ljava/util/Map;"}]}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "fields": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "descriptor": {"type": "string"}}, "required": ["name", "descriptor"]}}, "methods": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "descriptor": {"type": "string"}}, "required": ["name", "descriptor"]}}}, "required": ["name", "fields", "methods"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"id": {"type": "string"}, "district_id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "district_id", "name"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : "3326150004", "district_id" : "3326150", "name" : "KARANGANYAR"}
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#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"Logging": {"type": "object", "properties": {"LogLevel": {"type": "object", "properties": {"Default": {"type": "string"}, "Microsoft": {"type": "string"}, "Microsoft.Hosting.Lifetime": {"type": "string"}}, "required": ["Default", "Microsoft", "Microsoft.Hosting.Lifetime"]}}, "required": ["LogLevel"]}, "LiteDbOptions": {"type": "object", "properties": {"DatabaseLocation": {"type": "string"}}, "required": ["DatabaseLocation"]}, "ExchangerAPI": {"type": "object", "properties": {"Url": {"type": "string"}, "Token": {"type": "string"}}, "required": ["Url", "Token"]}}, "required": ["Logging", "LiteDbOptions", "ExchangerAPI"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"Logging" : {"LogLevel" : {"Default" : "Information", "Microsoft" : "Warning", "Microsoft.Hosting.Lifetime" : "Information"}}, "LiteDbOptions" : {"DatabaseLocation" : "CurrencyExchanger.db"}, "ExchangerAPI" : {"Url" : "http://api.exchangeratesapi.io/v1/latest", "Token" : "715b30128bacbcb4ede247611d35b1ee"}}
json_instruct
{"type": "object", "properties": {"Logging": {"type": "object", "properties": {"LogLevel": {"type": "object", "properties": {"Default": {"type": "string"}, "Microsoft": {"type": "string"}, "Microsoft.Hosting.Lifetime": {"type": "string"}}, "required": ["Default", "Microsoft", "Microsoft.Hosting.Lifetime"]}}, "required": ["LogLevel"]}, "LiteDbOptions": {"type": "object", "properties": {"DatabaseLocation": {"type": "string"}}, "required": ["DatabaseLocation"]}, "ExchangerAPI": {"type": "object", "properties": {"Url": {"type": "string"}, "Token": {"type": "string"}}, "required": ["Url", "Token"]}}, "required": ["Logging", "LiteDbOptions", "ExchangerAPI"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"usingComponents": {"type": "object", "properties": {"w-drop-menu": {"type": "string"}, "w-cell-group": {"type": "string"}, "w-cell": {"type": "string"}, "w-checkbox": {"type": "string"}, "w-radio": {"type": "string"}, "w-switch": {"type": "string"}, "w-button": {"type": "string"}, "w-pane": {"type": "string"}}, "required": ["w-drop-menu", "w-cell-group", "w-cell", "w-checkbox", "w-radio", "w-switch", "w-button", "w-pane"]}}, "required": ["usingComponents"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"usingComponents" : {"w-drop-menu" : "/dist/w-drop-menu/index", "w-cell-group" : "/dist/w-cell-group/index", "w-cell" : "/dist/w-cell/index", "w-checkbox" : "/dist/w-checkbox/index", "w-radio" : "/dist/w-radio/index", "w-switch" : "/dist/w-switch/index", "w-button" : "/dist/w-button/index", "w-pane" : "/dist/w-pane/index"}}
json_instruct
{"type": "object", "properties": {"usingComponents": {"type": "object", "properties": {"w-drop-menu": {"type": "string"}, "w-cell-group": {"type": "string"}, "w-cell": {"type": "string"}, "w-checkbox": {"type": "string"}, "w-radio": {"type": "string"}, "w-switch": {"type": "string"}, "w-button": {"type": "string"}, "w-pane": {"type": "string"}}, "required": ["w-drop-menu", "w-cell-group", "w-cell", "w-checkbox", "w-radio", "w-switch", "w-button", "w-pane"]}}, "required": ["usingComponents"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"900405280": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900405281": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900405282": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900405283": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900405284": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900405285": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900405286": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900405287": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}}, "required": ["900405280", "900405281", "900405282", "900405283", "900405284", "900405285", "900405286", "900405287"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"900405280" : {"nama" : "TPS 1", "dapil" : [3301, 13302, 2332404]}, "900405281" : {"nama" : "TPS 2", "dapil" : [3301, 13302, 2332404]}, "900405282" : {"nama" : "TPS 3", "dapil" : [3301, 13302, 2332404]}, "900405283" : {"nama" : "TPS 4", "dapil" : [3301, 13302, 2332404]}, "900405284" : {"nama" : "TPS 5", "dapil" : [3301, 13302, 2332404]}, "900405285" : {"nama" : "TPS 6", "dapil" : [3301, 13302, 2332404]}, "900405286" : {"nama" : "TPS 7", "dapil" : [3301, 13302, 2332404]}, "900405287" : {"nama" : "TPS 8", "dapil" : [3301, 13302, 2332404]}}
json_instruct
{"type": "object", "properties": {"900405280": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900405281": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900405282": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900405283": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900405284": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900405285": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900405286": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900405287": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}}, "required": ["900405280", "900405281", "900405282", "900405283", "900405284", "900405285", "900405286", "900405287"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"id": {"type": "string"}, "district_id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "district_id", "name"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : "7171030011", "district_id" : "7171030", "name" : "MAHAKERET BARAT"}
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#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"schema_version": {"type": "string"}, "id": {"type": "string"}, "modified": {"type": "string"}, "published": {"type": "string"}, "aliases": {"type": "array", "items": {"type": "string"}}, "details": {"type": "string"}, "severity": {"type": "array", "items": {}}, "affected": {"type": "array", "items": {}}, "references": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}}, "database_specific": {"type": "object", "properties": {"cwe_ids": {"type": "array", "items": {"type": "string"}}, "severity": {"type": "string"}, "github_reviewed": {"type": "boolean"}}, "required": ["cwe_ids", "severity", "github_reviewed"]}}, "required": ["schema_version", "id", "modified", "published", "aliases", "details", "severity", "affected", "references", "database_specific"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"schema_version" : "1.2.0", "id" : "GHSA-3qxq-rx8j-qpmj", "modified" : "2022-05-01T23:33:24Z", "published" : "2022-05-01T23:33:24Z", "aliases" : ["CVE-2008-0808"], "details" : "Cross-site scripting (XSS) vulnerability in the meta plugin in Ikiwiki before 1.1.47 allows remote attackers to inject arbitrary web script or HTML via meta tags.", "severity" : [], "affected" : [], "references" : [{"type" : "ADVISORY", "url" : "https://nvd.nist.gov/vuln/detail/CVE-2008-0808"}, {"type" : "WEB", "url" : "http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=465110"}, {"type" : "WEB", "url" : "http://ikiwiki.info/security/#index30h2"}, {"type" : "WEB", "url" : "http://secunia.com/advisories/28911"}, {"type" : "WEB", "url" : "http://secunia.com/advisories/29369"}, {"type" : "WEB", "url" : "http://www.debian.org/security/2008/dsa-1523"}, {"type" : "WEB", "url" : "http://www.securityfocus.com/bid/27760"}], "database_specific" : {"cwe_ids" : ["CWE-79"], "severity" : "MODERATE", "github_reviewed" : false}}
json_instruct
{"type": "object", "properties": {"schema_version": {"type": "string"}, "id": {"type": "string"}, "modified": {"type": "string"}, "published": {"type": "string"}, "aliases": {"type": "array", "items": {"type": "string"}}, "details": {"type": "string"}, "severity": {"type": "array", "items": {}}, "affected": {"type": "array", "items": {}}, "references": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}}, "database_specific": {"type": "object", "properties": {"cwe_ids": {"type": "array", "items": {"type": "string"}}, "severity": {"type": "string"}, "github_reviewed": {"type": "boolean"}}, "required": ["cwe_ids", "severity", "github_reviewed"]}}, "required": ["schema_version", "id", "modified", "published", "aliases", "details", "severity", "affected", "references", "database_specific"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"apps": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "script": {"type": "string"}, "watch": {"type": "boolean"}, "instances": {"type": "string"}, "exec_mode": {"type": "string"}, "ignore_watch": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "script", "watch", "instances", "exec_mode", "ignore_watch"]}}}, "required": ["apps"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"apps" : [{"name" : "vinlottis", "script" : "./server.js", "watch" : true, "instances" : "max", "exec_mode" : "cluster", "ignore_watch" : ["./node_modules", "./public/assets/"]}]}
json_instruct
{"type": "object", "properties": {"apps": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "script": {"type": "string"}, "watch": {"type": "boolean"}, "instances": {"type": "string"}, "exec_mode": {"type": "string"}, "ignore_watch": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "script", "watch", "instances", "exec_mode", "ignore_watch"]}}}, "required": ["apps"], "$schema": "http://json-schema.org/draft-07/schema#"}