input
stringlengths
159
2.05k
output
stringlengths
5
10.3k
task
stringclasses
1 value
schema
stringlengths
100
1.99k
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "dependencies": {"type": "object", "properties": {"code": {"type": "string"}, "express": {"type": "string"}, "file-exists": {"type": "string"}, "fs-extra": {"type": "string"}, "good": {"type": "string"}, "hapi": {"type": "string"}, "lab": {"type": "string"}, "mocha": {"type": "string"}, "request": {"type": "string"}, "shelljs": {"type": "string"}, "system-sleep": {"type": "string"}}, "required": ["code", "express", "file-exists", "fs-extra", "good", "hapi", "lab", "mocha", "request", "shelljs", "system-sleep"]}, "devDependencies": {"type": "object", "properties": {}, "required": []}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "author": {"type": "string"}, "license": {"type": "string"}}, "required": ["name", "version", "description", "main", "dependencies", "devDependencies", "scripts", "author", "license"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "nodeserver", "version" : "1.0.0", "description" : "", "main" : "app.js", "dependencies" : {"code" : "^5.2.0", "express" : "^4.16.3", "file-exists" : "^5.0.1", "fs-extra" : "^7.0.0", "good" : "^8.1.1", "hapi" : "^17.6.0", "lab" : "^16.1.0", "mocha" : "^5.2.0", "request" : "^2.88.0", "shelljs" : "^0.8.2", "system-sleep" : "^1.3.6"}, "devDependencies" : {}, "scripts" : {"test" : "echo \"Error: no test specified\" && exit 1"}, "author" : "Stan Alam", "license" : "ISC"}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "dependencies": {"type": "object", "properties": {"code": {"type": "string"}, "express": {"type": "string"}, "file-exists": {"type": "string"}, "fs-extra": {"type": "string"}, "good": {"type": "string"}, "hapi": {"type": "string"}, "lab": {"type": "string"}, "mocha": {"type": "string"}, "request": {"type": "string"}, "shelljs": {"type": "string"}, "system-sleep": {"type": "string"}}, "required": ["code", "express", "file-exists", "fs-extra", "good", "hapi", "lab", "mocha", "request", "shelljs", "system-sleep"]}, "devDependencies": {"type": "object", "properties": {}, "required": []}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "author": {"type": "string"}, "license": {"type": "string"}}, "required": ["name", "version", "description", "main", "dependencies", "devDependencies", "scripts", "author", "license"], "$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"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}, "test": {"type": "string"}}, "required": ["start", "test"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "author": {"type": "string"}, "license": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"nodemon": {"type": "string"}}, "required": ["nodemon"]}, "dependencies": {"type": "object", "properties": {"bcryptjs": {"type": "string"}, "body-parser": {"type": "string"}, "contentful": {"type": "string"}, "cors": {"type": "string"}, "dotenv": {"type": "string"}, "express": {"type": "string"}, "express-jwt": {"type": "string"}, "jsonwebtoken": {"type": "string"}, "lodash": {"type": "string"}, "moment": {"type": "string"}, "mongodb": {"type": "string"}, "mongoskin": {"type": "string"}, "q": {"type": "string"}, "request": {"type": "string"}, "rootpath": {"type": "string"}}, "required": ["bcryptjs", "body-parser", "contentful", "cors", "dotenv", "express", "express-jwt", "jsonwebtoken", "lodash", "moment", "mongodb", "mongoskin", "q", "request", "rootpath"]}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}}, "required": ["name", "version", "description", "main", "scripts", "repository", "author", "license", "devDependencies", "dependencies", "bugs", "homepage"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "code4humans-content-api", "version" : "1.0.0", "description" : "API that serves content to Code4humans.com", "main" : "index.js", "scripts" : {"start" : "nodemon ./src/server.js", "test" : "echo \"Error: no test specified\" && exit 1"}, "repository" : {"type" : "git", "url" : "git+https://github.com/martin2786/Code4humansAPI.git"}, "author" : "", "license" : "ISC", "devDependencies" : {"nodemon" : "^1.18.4"}, "dependencies" : {"bcryptjs" : "^2.4.3", "body-parser" : "^1.18.3", "contentful" : "^7.0.4", "cors" : "^2.8.4", "dotenv" : "^6.0.0", "express" : "^4.16.3", "express-jwt" : "^5.3.1", "jsonwebtoken" : "^8.3.0", "lodash" : "^4.7.11", "moment" : "^2.22.2", "mongodb" : "^3.1.6", "mongoskin" : "^2.1.0", "q" : "^1.4.1", "request" : "^2.58.0", "rootpath" : "^0.1.2"}, "bugs" : {"url" : "https://github.com/martin2786/Code4humansAPI/issues"}, "homepage" : "https://github.com/martin2786/Code4humansAPI#readme"}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}, "test": {"type": "string"}}, "required": ["start", "test"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "author": {"type": "string"}, "license": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"nodemon": {"type": "string"}}, "required": ["nodemon"]}, "dependencies": {"type": "object", "properties": {"bcryptjs": {"type": "string"}, "body-parser": {"type": "string"}, "contentful": {"type": "string"}, "cors": {"type": "string"}, "dotenv": {"type": "string"}, "express": {"type": "string"}, "express-jwt": {"type": "string"}, "jsonwebtoken": {"type": "string"}, "lodash": {"type": "string"}, "moment": {"type": "string"}, "mongodb": {"type": "string"}, "mongoskin": {"type": "string"}, "q": {"type": "string"}, "request": {"type": "string"}, "rootpath": {"type": "string"}}, "required": ["bcryptjs", "body-parser", "contentful", "cors", "dotenv", "express", "express-jwt", "jsonwebtoken", "lodash", "moment", "mongodb", "mongoskin", "q", "request", "rootpath"]}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}}, "required": ["name", "version", "description", "main", "scripts", "repository", "author", "license", "devDependencies", "dependencies", "bugs", "homepage"], "$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"}, "addressLines": {"type": "array", "items": {"type": "string"}}, "postalCode": {"type": "string"}, "country": {"type": "string"}}, "required": ["name", "addressLines", "postalCode", "country"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "Abingdon", "addressLines" : ["Unit 21", "Abingdon Shopping Centre", "Abingdon", "Oxfordshire"], "postalCode" : "OX14 3QT", "country" : "gb"}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "addressLines": {"type": "array", "items": {"type": "string"}}, "postalCode": {"type": "string"}, "country": {"type": "string"}}, "required": ["name", "addressLines", "postalCode", "country"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"algorithm": {"type": "string"}, "coin": {"type": "string"}, "forkedFrom": {"type": "string"}, "icon": {"type": "string"}, "name": {"type": "string"}, "startDate": {"type": "string"}, "endDate": {"type": "string"}}, "required": ["algorithm", "coin", "forkedFrom", "icon", "name", "startDate", "endDate"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"algorithm" : "ERC-20", "coin" : "WEA", "forkedFrom" : "main-token-erc20", "icon" : "https://raw.githubusercontent.com/Arielony/project-data/master/dist/images/wea-icon.png", "name" : "Vultur", "startDate" : "2018-03", "endDate" : "2018-07"}
json_instruct
{"type": "object", "properties": {"algorithm": {"type": "string"}, "coin": {"type": "string"}, "forkedFrom": {"type": "string"}, "icon": {"type": "string"}, "name": {"type": "string"}, "startDate": {"type": "string"}, "endDate": {"type": "string"}}, "required": ["algorithm", "coin", "forkedFrom", "icon", "name", "startDate", "endDate"], "$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"}, "text": {"type": "string"}}, "required": ["id", "text"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"id" : "411121102201", "text" : "\u5b98\u5385\u8857\u6751\u6751\u6c11\u59d4\u5458\u4f1a"}, {"id" : "411121102202", "text" : "\u7530\u674e\u6751\u6751\u6c11\u59d4\u5458\u4f1a"}, {"id" : "411121102203", "text" : "\u9e7f\u5e97\u6751\u6751\u6c11\u59d4\u5458\u4f1a"}, {"id" : "411121102204", "text" : "\u84bf\u5e84\u6751\u6751\u6c11\u59d4\u5458\u4f1a"}, {"id" : "411121102205", "text" : "\u9e7f\u5e84\u6751\u6751\u6c11\u59d4\u5458\u4f1a"}, {"id" : "411121102206", "text" : "\u90d1\u674e\u6751\u6751\u6c11\u59d4\u5458\u4f1a"}, {"id" : "411121102207", "text" : "\u6587\u660c\u8857\u6751\u6751\u6c11\u59d4\u5458\u4f1a"}, {"id" : "411121102208", "text" : "\u519b\u5f20\u6751\u6751\u6c11\u59d4\u5458\u4f1a"}, {"id" : "411121102209", "text" : "\u4e2d\u5c71\u8857\u6751\u6751\u6c11\u59d4\u5458\u4f1a"}, {"id" : "411121102210", "text" : "\u987a\u6cb3\u8857\u6751\u6751\u6c11\u59d4\u5458\u4f1a"}, {"id" : "411121102211", "text" : "\u4e1c\u9b4f\u6751\u6751\u6c11\u59d4\u5458\u4f1a"}, {"id" : "411121102212", "text" : "\u4ef2\u5f20\u6751\u6751\u6c11\u59d4\u5458\u4f1a"}, {"id" : "411121102213", "text" : "\u897f\u5927\u8857\u6751\u6751\u6c11\u59d4\u5458\u4f1a"}, {"id" : "411121102214", "text" : "\u9ec4\u5e84\u6751\u6751\u6c11\u59d4\u5458\u4f1a"}, {"id" : "411121102215", "text" : "\u5de6\u6c9f\u6751\u6751\u6c11\u59d4\u5458\u4f1a"}, {"id" : "411121102216", "text" : "\u5761\u6768\u6751\u6751\u6c11\u59d4\u5458\u4f1a"}, {"id" : "411121102217", "text" : "\u5c1a\u5e84\u6751\u6751\u6c11\u59d4\u5458\u4f1a"}, {"id" : "411121102218", "text" : "\u8d3e\u6e56\u6751\u6751\u6c11\u59d4\u5458\u4f1a"}, {"id" : "411121102219", "text" : "\u6ce5\u6cb3\u738b\u6751\u6751\u6c11\u59d4\u5458\u4f1a"}, {"id" : "411121102220", "text" : "\u83dc\u56ed\u5218\u6751\u6751\u6c11\u59d4\u5458\u4f1a"}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "text": {"type": "string"}}, "required": ["id", "text"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "array", "items": {"type": "object", "properties": {"user_id": {"type": "string"}, "sentiment": {"type": "string"}, "rt_count": {"type": "integer"}, "user_followers": {"type": "integer"}, "text": {"type": "string"}, "created_at": {"type": "string"}, "topic": {"type": "integer"}, "like_count": {"type": "integer"}, "user_friends": {"type": "integer"}, "scr_name": {"type": "string"}, "created_at_timestep": {"type": "integer"}, "user_avatar": {"type": "string"}, "user_verfied": {"type": "boolean"}, "id": {"type": "string"}}, "required": ["user_id", "sentiment", "rt_count", "user_followers", "text", "created_at", "topic", "like_count", "user_friends", "scr_name", "created_at_timestep", "user_avatar", "user_verfied", "id"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"user_id" : "455230249", "sentiment" : "neg", "rt_count" : 0, "user_followers" : 2090, "text" : "\" I bet the dinosaurs thought that they had time too\" \ud83d\ude02\ud83d\ude02#climatemarch #motherearthTrumpsfalsenews https://t.co/CTdqdbZYRA", "created_at" : "Sun Apr 23 07:16:15 +0000 2017", "topic" : 4, "like_count" : 0, "user_friends" : 1227, "scr_name" : "therealstump", "created_at_timestep" : 1492931775, "user_avatar" : "http://pbs.twimg.com/profile_images/1005354080984813569/vVSOBvdi_normal.jpg", "user_verfied" : false, "id" : "856044029456396288"}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"user_id": {"type": "string"}, "sentiment": {"type": "string"}, "rt_count": {"type": "integer"}, "user_followers": {"type": "integer"}, "text": {"type": "string"}, "created_at": {"type": "string"}, "topic": {"type": "integer"}, "like_count": {"type": "integer"}, "user_friends": {"type": "integer"}, "scr_name": {"type": "string"}, "created_at_timestep": {"type": "integer"}, "user_avatar": {"type": "string"}, "user_verfied": {"type": "boolean"}, "id": {"type": "string"}}, "required": ["user_id", "sentiment", "rt_count", "user_followers", "text", "created_at", "topic", "like_count", "user_friends", "scr_name", "created_at_timestep", "user_avatar", "user_verfied", "id"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"id": {"type": "string"}, "provinceId": {"type": "string"}, "regencyId": {"type": "string"}, "districtId": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "provinceId", "regencyId", "districtId", "name"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : "2010", "provinceId" : "32", "regencyId" : "01", "districtId" : "24", "name" : "Bojong Murni"}
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#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"uuid": {"type": "string"}, "name": {"type": "string"}, "children": {"type": "array", "items": {"type": "string"}}, "befores": {"type": "array", "items": {}}, "afters": {"type": "array", "items": {}}, "links": {"type": "array", "items": {}}, "start": {"type": "integer"}, "stop": {"type": "integer"}}, "required": ["uuid", "name", "children", "befores", "afters", "links", "start", "stop"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"uuid" : "b337f8ca-dcd7-4ad9-b868-d26f4a3c63fe", "name" : "EtmBasket", "children" : ["49775bba-e5d0-40b4-9e8c-39c43170dcc7"], "befores" : [], "afters" : [], "links" : [], "start" : 1643730811124, "stop" : 1643730842203}
json_instruct
{"type": "object", "properties": {"uuid": {"type": "string"}, "name": {"type": "string"}, "children": {"type": "array", "items": {"type": "string"}}, "befores": {"type": "array", "items": {}}, "afters": {"type": "array", "items": {}}, "links": {"type": "array", "items": {}}, "start": {"type": "integer"}, "stop": {"type": "integer"}}, "required": ["uuid", "name", "children", "befores", "afters", "links", "start", "stop"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"author": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "name"]}, "date": {"type": "object", "properties": {"day": {"type": "integer"}, "full": {"type": "integer"}, "month": {"type": "integer"}, "week": {"type": "integer"}}, "required": ["day", "full", "month", "week"]}, "id": {"type": "string"}, "misc": {"type": "object", "properties": {"postHint": {"type": "string"}}, "required": ["postHint"]}, "picture": {"type": "object", "properties": {"filesize": {"type": "integer"}, "fullUrl": {"type": "string"}, "hash": {"type": "string"}, "height": {"type": "integer"}, "lqip": {"type": "string"}, "thumbnailUrl": {"type": "string"}, "url": {"type": "string"}, "width": {"type": "integer"}}, "required": ["filesize", "fullUrl", "hash", "height", "lqip", "thumbnailUrl", "url", "width"]}, "score": {"type": "object", "properties": {"comments": {"type": "integer"}, "downs": {"type": "integer"}, "isCurated": {"type": "boolean"}, "ratio": {"type": "integer"}, "ups": {"type": "integer"}, "value": {"type": "integer"}}, "required": ["comments", "downs", "isCurated", "ratio", "ups", "value"]}, "subreddit": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "name"]}, "tags": {"type": "array", "items": {"type": "string"}}, "title": {"type": "string"}, "url": {"type": "string"}}, "required": ["author", "date", "id", "misc", "picture", "score", "subreddit", "tags", "title", "url"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"author" : {"id" : "t2_73ecneyj", "name" : "TheCraftyDice"}, "date" : {"day" : 1598486400, "full" : 1598547912, "month" : 1596240000, "week" : 1598140800}, "id" : "t3_ihowpr", "misc" : {"postHint" : "image"}, "picture" : {"filesize" : 139090, "fullUrl" : "https://preview.redd.it/1vfd89ixtkj51.jpg?auto=webp&s=a340d9834be521954880af7b8a99c4a2b0a63307", "hash" : "cc7d16ed4b", "height" : 1120, "lqip" : "data:image/jpg;base64,/9j/2wBDAAYEBQYFBAYGBQYHBwYIChAKCgkJChQODwwQFxQYGBcUFhYaHSUfGhsjHBYWICwgIyYnKSopGR8tMC0oMCUoKSj/2wBDAQcHBwoIChMKChMoGhYaKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCj/wAARCAAQAAkDASIAAhEBAxEB/8QAFQABAQAAAAAAAAAAAAAAAAAABgf/xAAkEAABAgUDBQEAAAAAAAAAAAACAQMABAURIQYSMRRSU5GS0f/EABUBAQEAAAAAAAAAAAAAAAAAAAME/8QAGhEAAgIDAAAAAAAAAAAAAAAAAQIAAxESMf/aAAwDAQACEQMRAD8Ai2nzoiabnUm5JXpwkEWHhLDS3zdLZglta72vUKzpVRpktMNA26DSEyRiIbCJUS/GVvzmDvTJ4Zn5L8igqT2BVelo2Rsz/9k=", "thumbnailUrl" : "https://b.thumbs.redditmedia.com/ngrvDMoWamW7iQzve5T4VTz6hMuyi9Zdeo9XQg-pO_o.jpg", "url" : "https://preview.redd.it/1vfd89ixtkj51.jpg?width=640&crop=smart&auto=webp&s=439cd505966fdd4b4645b67b240900175165dc5f", "width" : 640}, "score" : {"comments" : 4, "downs" : 0, "isCurated" : false, "ratio" : 1, "ups" : 11, "value" : 11}, "subreddit" : {"id" : "t5_3isai", "name" : "dndmaps"}, "tags" : ["Region"], "title" : "Heart of the Mountain Cage Chain", "url" : "https://www.reddit.com/r/dndmaps/comments/ihowpr/heart_of_the_mountain_cage_chain_28x49/"}
json_instruct
{"type": "object", "properties": {"author": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "name"]}, "date": {"type": "object", "properties": {"day": {"type": "integer"}, "full": {"type": "integer"}, "month": {"type": "integer"}, "week": {"type": "integer"}}, "required": ["day", "full", "month", "week"]}, "id": {"type": "string"}, "misc": {"type": "object", "properties": {"postHint": {"type": "string"}}, "required": ["postHint"]}, "picture": {"type": "object", "properties": {"filesize": {"type": "integer"}, "fullUrl": {"type": "string"}, "hash": {"type": "string"}, "height": {"type": "integer"}, "lqip": {"type": "string"}, "thumbnailUrl": {"type": "string"}, "url": {"type": "string"}, "width": {"type": "integer"}}, "required": ["filesize", "fullUrl", "hash", "height", "lqip", "thumbnailUrl", "url", "width"]}, "score": {"type": "object", "properties": {"comments": {"type": "integer"}, "downs": {"type": "integer"}, "isCurated": {"type": "boolean"}, "ratio": {"type": "integer"}, "ups": {"type": "integer"}, "value": {"type": "integer"}}, "required": ["comments", "downs", "isCurated", "ratio", "ups", "value"]}, "subreddit": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "name"]}, "tags": {"type": "array", "items": {"type": "string"}}, "title": {"type": "string"}, "url": {"type": "string"}}, "required": ["author", "date", "id", "misc", "picture", "score", "subreddit", "tags", "title", "url"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"aliases": {"type": "array", "items": {"type": "string"}}, "authors": {"type": "array", "items": {"type": "string"}}, "description": {"type": "null"}, "images": {"type": "object", "properties": {"background": {"type": "null"}, "thumbnail": {"type": "null"}}, "required": ["background", "thumbnail"]}, "mainColor": {"type": "null"}, "name": {"type": "string"}, "partners": {"type": "array", "items": {"type": "string"}}, "powers": {"type": "array", "items": {"type": "string"}}, "ranking": {"type": "object", "properties": {"comicCount": {"type": "integer"}, "eventCount": {"type": "integer"}, "pageviewCount": {"type": "integer"}, "serieCount": {"type": "integer"}, "storyCount": {"type": "integer"}}, "required": ["comicCount", "eventCount", "pageviewCount", "serieCount", "storyCount"]}, "secretIdentities": {"type": "array", "items": {"type": "string"}}, "species": {"type": "array", "items": {}}, "superName": {"type": "string"}, "teams": {"type": "array", "items": {"type": "string"}}, "urls": {"type": "object", "properties": {"marvel": {"type": "null"}, "wikipedia": {"type": "string"}}, "required": ["marvel", "wikipedia"]}}, "required": ["aliases", "authors", "description", "images", "mainColor", "name", "partners", "powers", "ranking", "secretIdentities", "species", "superName", "teams", "urls"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"aliases" : ["High Priestess of the Sun god", "Zaladane"], "authors" : ["Barry Windsor-Smith", "Gerry Conway"], "description" : null, "images" : {"background" : null, "thumbnail" : null}, "mainColor" : null, "name" : "Zaladane", "partners" : ["Garokk"], "powers" : ["Magnetism", "Manipulate magic"], "ranking" : {"comicCount" : 0, "eventCount" : 0, "pageviewCount" : 438, "serieCount" : 0, "storyCount" : 0}, "secretIdentities" : ["Zala Dane"], "species" : [], "superName" : "Zaladane", "teams" : ["Savage Land Mutates", "Sun People"], "urls" : {"marvel" : null, "wikipedia" : "https://en.wikipedia.org/wiki/Zaladane"}}
json_instruct
{"type": "object", "properties": {"aliases": {"type": "array", "items": {"type": "string"}}, "authors": {"type": "array", "items": {"type": "string"}}, "description": {"type": "null"}, "images": {"type": "object", "properties": {"background": {"type": "null"}, "thumbnail": {"type": "null"}}, "required": ["background", "thumbnail"]}, "mainColor": {"type": "null"}, "name": {"type": "string"}, "partners": {"type": "array", "items": {"type": "string"}}, "powers": {"type": "array", "items": {"type": "string"}}, "ranking": {"type": "object", "properties": {"comicCount": {"type": "integer"}, "eventCount": {"type": "integer"}, "pageviewCount": {"type": "integer"}, "serieCount": {"type": "integer"}, "storyCount": {"type": "integer"}}, "required": ["comicCount", "eventCount", "pageviewCount", "serieCount", "storyCount"]}, "secretIdentities": {"type": "array", "items": {"type": "string"}}, "species": {"type": "array", "items": {}}, "superName": {"type": "string"}, "teams": {"type": "array", "items": {"type": "string"}}, "urls": {"type": "object", "properties": {"marvel": {"type": "null"}, "wikipedia": {"type": "string"}}, "required": ["marvel", "wikipedia"]}}, "required": ["aliases", "authors", "description", "images", "mainColor", "name", "partners", "powers", "ranking", "secretIdentities", "species", "superName", "teams", "urls"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"update_url": {"type": "string"}, "manifest_version": {"type": "integer"}, "icons": {"type": "object", "properties": {"128": {"type": "string"}}, "required": ["128"]}, "name": {"type": "string"}, "description": {"type": "string"}, "version": {"type": "string"}, "page_action": {"type": "object", "properties": {"default_icon": {"type": "string"}, "default_title": {"type": "string"}, "default_popup": {"type": "string"}}, "required": ["default_icon", "default_title", "default_popup"]}, "content_scripts": {"type": "array", "items": {"type": "object", "properties": {"matches": {"type": "array", "items": {"type": "string"}}, "js": {"type": "array", "items": {"type": "string"}}, "all_frames": {"type": "boolean"}}, "required": ["matches", "js", "all_frames"]}}, "background": {"type": "object", "properties": {"scripts": {"type": "array", "items": {"type": "string"}}, "persistent": {"type": "boolean"}}, "required": ["scripts", "persistent"]}, "web_accessible_resources": {"type": "array", "items": {"type": "string"}}, "permissions": {"type": "array", "items": {"type": "string"}}}, "required": ["update_url", "manifest_version", "icons", "name", "description", "version", "page_action", "content_scripts", "background", "web_accessible_resources", "permissions"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"update_url" : "https://clients2.google.com/service/update2/crx", "manifest_version" : 2, "icons" : {"128" : "icon2_128_128.png"}, "name" : "Kindle Optimizer", "description" : "Adds instant Google Search and Translate functionality to the Kindle Cloud Reader.", "version" : "3.1", "page_action" : {"default_icon" : "icon.png", "default_title" : "Kindle Optimizer", "default_popup" : "popup.html"}, "content_scripts" : [{"matches" : ["https://read.amazon.com/*", "https://read.amazon.ca/*", "https://read.amazon.co.uk/*", "https://lesen.amazon.de/*", "https://lire.amazon.fr/*", "https://leggi.amazon.it/*", "https://ler.amazon.com.br/*", "https://read.amazon.com.au/*", "https://read.amazon.co.jp/*", "https://read.amazon.in/*"], "js" : ["csOptimizer.js", "jquery-1.10.2.js"], "all_frames" : true}], "background" : {"scripts" : ["eventPage.js"], "persistent" : true}, "web_accessible_resources" : ["script.js"], "permissions" : ["tabs", "https://read.amazon.com/*", "webRequest", "webRequestBlocking", "*://amazon.com/*", "*://www.amazon.com/*", "*://smile.amazon.com/*", "*://amazon.co.uk/*", "*://www.amazon.co.uk/*", "*://smile.amazon.co.uk/*", "*://amazon.de/*", "*://www.amazon.de/*", "*://smile.amazon.de/*", "*://amazon.fr/*", "*://www.amazon.fr/*", "*://amazon.es/*", "*://www.amazon.es/*", "*://amazon.it/*", "*://www.amazon.it/*", "*://amazon.co.jp/*", "*://www.amazon.co.jp/*", "*://amazon.ca/*", "*://www.amazon.ca/*", "*://amazon.in/*", "*://www.amazon.in/*", "*://amazon.com.au/*", "*://www.amazon.com.au/*"]}
json_instruct
{"type": "object", "properties": {"update_url": {"type": "string"}, "manifest_version": {"type": "integer"}, "icons": {"type": "object", "properties": {"128": {"type": "string"}}, "required": ["128"]}, "name": {"type": "string"}, "description": {"type": "string"}, "version": {"type": "string"}, "page_action": {"type": "object", "properties": {"default_icon": {"type": "string"}, "default_title": {"type": "string"}, "default_popup": {"type": "string"}}, "required": ["default_icon", "default_title", "default_popup"]}, "content_scripts": {"type": "array", "items": {"type": "object", "properties": {"matches": {"type": "array", "items": {"type": "string"}}, "js": {"type": "array", "items": {"type": "string"}}, "all_frames": {"type": "boolean"}}, "required": ["matches", "js", "all_frames"]}}, "background": {"type": "object", "properties": {"scripts": {"type": "array", "items": {"type": "string"}}, "persistent": {"type": "boolean"}}, "required": ["scripts", "persistent"]}, "web_accessible_resources": {"type": "array", "items": {"type": "string"}}, "permissions": {"type": "array", "items": {"type": "string"}}}, "required": ["update_url", "manifest_version", "icons", "name", "description", "version", "page_action", "content_scripts", "background", "web_accessible_resources", "permissions"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"duration": {"type": "integer"}, "predictions": {"type": "array", "items": {"type": "object", "properties": {"confidence": {"type": "number"}, "y_min": {"type": "integer"}, "y_max": {"type": "integer"}, "label": {"type": "string"}, "x_max": {"type": "integer"}, "x_min": {"type": "integer"}}, "required": ["confidence", "y_min", "y_max", "label", "x_max", "x_min"]}}, "success": {"type": "boolean"}}, "required": ["duration", "predictions", "success"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"duration" : 0, "predictions" : [{"confidence" : 0.68561596, "y_min" : 1513, "y_max" : 1809, "label" : "cow", "x_max" : 2889, "x_min" : 2330}], "success" : true}
json_instruct
{"type": "object", "properties": {"duration": {"type": "integer"}, "predictions": {"type": "array", "items": {"type": "object", "properties": {"confidence": {"type": "number"}, "y_min": {"type": "integer"}, "y_max": {"type": "integer"}, "label": {"type": "string"}, "x_max": {"type": "integer"}, "x_min": {"type": "integer"}}, "required": ["confidence", "y_min", "y_max", "label", "x_max", "x_min"]}}, "success": {"type": "boolean"}}, "required": ["duration", "predictions", "success"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"company": {"type": "string"}, "date": {"type": "string"}, "address": {"type": "string"}, "total": {"type": "string"}}, "required": ["company", "date", "address", "total"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"company" : "BANH MI CAFE SDN BHD", "date" : "29-10-2017", "address" : "NO,1 JALAN PUTERI 7/10 BANDAR PUTERI, 47100 PUCHONG SELANGOR, MALAYSIA", "total" : "23.25"}
json_instruct
{"type": "object", "properties": {"company": {"type": "string"}, "date": {"type": "string"}, "address": {"type": "string"}, "total": {"type": "string"}}, "required": ["company", "date", "address", "total"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"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" : "3301030013", "district_id" : "3301030", "name" : "BOJA"}
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#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "dependencies": {"type": "object", "properties": {"argparse": {"type": "string"}, "lodash": {"type": "string"}, "rocksdb": {"type": "string"}}, "required": ["argparse", "lodash", "rocksdb"]}, "devDependencies": {"type": "object", "properties": {}, "required": []}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "app-9040": {"type": "string"}, "app-9041": {"type": "string"}, "app-9042": {"type": "string"}}, "required": ["test", "app-9040", "app-9041", "app-9042"]}, "author": {"type": "string"}, "license": {"type": "string"}}, "required": ["name", "version", "description", "main", "dependencies", "devDependencies", "scripts", "author", "license"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "examples", "version" : "1.0.0", "description" : "", "main" : "app-9490.js", "dependencies" : {"argparse" : "^2.0.1", "lodash" : "^4.17.21", "rocksdb" : "^5.0.0"}, "devDependencies" : {}, "scripts" : {"test" : "echo \"Error: no test specified\" && exit 1", "app-9040" : "node app.js -p 9040", "app-9041" : "node app.js -p 9041", "app-9042" : "node app.js -p 9042"}, "author" : "", "license" : "ISC"}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "dependencies": {"type": "object", "properties": {"argparse": {"type": "string"}, "lodash": {"type": "string"}, "rocksdb": {"type": "string"}}, "required": ["argparse", "lodash", "rocksdb"]}, "devDependencies": {"type": "object", "properties": {}, "required": []}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "app-9040": {"type": "string"}, "app-9041": {"type": "string"}, "app-9042": {"type": "string"}}, "required": ["test", "app-9040", "app-9041", "app-9042"]}, "author": {"type": "string"}, "license": {"type": "string"}}, "required": ["name", "version", "description", "main", "dependencies", "devDependencies", "scripts", "author", "license"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"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" : [[[-86.71887, 36.342117], [-86.717464, 36.344403], [-86.713228, 36.357177], [-86.709249, 36.372754], [-86.700615, 36.383886], [-86.689351, 36.393737], [-86.688787, 36.395602], [-86.689502, 36.399594], [-86.686467, 36.403639], [-86.686811, 36.406332], [-86.683954, 36.406385], [-86.683302, 36.408264], [-86.679299, 36.409744], [-86.679422, 36.411923], [-86.675608, 36.412844], [-86.673163, 36.41577], [-86.668589, 36.417199], [-86.665778, 36.415327], [-86.661674, 36.414926], [-86.654169, 36.414823], [-86.65021, 36.415948], [-86.634335, 36.40923], [-86.633974, 36.406234], [-86.630944, 36.401676], [-86.628309, 36.393668], [-86.622099, 36.386728], [-86.618042, 36.377148], [-86.616856, 36.370571], [-86.619768, 36.370996], [-86.635428, 36.367811], [-86.639197, 36.368606], [-86.645857, 36.366404], [-86.652699, 36.366285], [-86.658378, 36.363888], [-86.665458, 36.358879], [-86.670736, 36.356383], [-86.672221, 36.352649], [-86.680283, 36.341728], [-86.682273, 36.337732], [-86.688429, 36.335159], [-86.693748, 36.334295], [-86.699304, 36.327723], [-86.700214, 36.328108], [-86.703036, 36.327213], [-86.706494, 36.329268], [-86.707819, 36.333873], [-86.709929, 36.333657], [-86.715455, 36.336507], [-86.717827, 36.338987], [-86.71887, 36.342117]]]}, "type" : "Feature", "properties" : {"cartodb_id" : 58625}}]}
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#"}
Create a JSON structure that matches this schema definition: {"type": "array", "items": {"type": "object", "properties": {"code": {"type": "string"}, "name": {"type": "string"}, "name_kana": {"type": "string"}}, "required": ["code", "name", "name_kana"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"code" : "020", "name" : "\u677f\u4ed8", "name_kana" : "\uff72\uff80\uff82\uff9e\uff79"}, {"code" : "031", "name" : "\u4e95\u5c3b", "name_kana" : "\uff72\uff7c\uff9e\uff98"}, {"code" : "120", "name" : "\u58f1\u5c90", "name_kana" : "\uff72\uff77"}, {"code" : "150", "name" : "\u4eca\u5bbf", "name_kana" : "\uff72\uff8f\uff7c\uff9e\uff95\uff78"}, {"code" : "160", "name" : "\u4eca\u6d25", "name_kana" : "\uff72\uff8f\uff82\uff9e"}, {"code" : "210", "name" : "\u5165\u90e8", "name_kana" : "\uff72\uff99\uff8d\uff9e"}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"code": {"type": "string"}, "name": {"type": "string"}, "name_kana": {"type": "string"}}, "required": ["code", "name", "name_kana"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"networkCallRecords": {"type": "array", "items": {}}, "variables": {"type": "array", "items": {"type": "string"}}}, "required": ["networkCallRecords", "variables"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"networkCallRecords" : [], "variables" : ["jtcuploaddownload094002466a789d653a4d588def", "javablobuploaddownload1016294ce9ad7c6e864f1fa", "5b3a16ec-5fad-4c6d-9019-a471f978cceb"]}
json_instruct
{"type": "object", "properties": {"networkCallRecords": {"type": "array", "items": {}}, "variables": {"type": "array", "items": {"type": "string"}}}, "required": ["networkCallRecords", "variables"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"ast": {"type": "null"}, "code": {"type": "string"}, "map": {"type": "null"}, "metadata": {"type": "object", "properties": {}, "required": []}, "sourceType": {"type": "string"}}, "required": ["ast", "code", "map", "metadata", "sourceType"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"ast" : null, "code" : "import React from \"react\";\nvar __jsx = React.createElement;\n/** @jsx jsx */\n\nimport { jsx, css } from '@emotion/core';\nimport Button from \"../../../../../packages/material-ui/src/Button\";\n\nvar _ref = jsx(Button, null, \"Default\");\n\nexport default function EmotionCSS() {\n return jsx(\"div\", null, _ref, jsx(Button, {\n css: css`\n background-color: #6772e5;\n color: #fff;\n box-shadow: 0 4px 6px rgba(50, 50, 93, 0.11),\n 0 1px 3px rgba(0, 0, 0, 0.08);\n padding: 7px 14px;\n &:hover {\n background-color: #5469d4;\n }\n `\n }, \"Customized\"));\n}", "map" : null, "metadata" : {}, "sourceType" : "module"}
json_instruct
{"type": "object", "properties": {"ast": {"type": "null"}, "code": {"type": "string"}, "map": {"type": "null"}, "metadata": {"type": "object", "properties": {}, "required": []}, "sourceType": {"type": "string"}}, "required": ["ast", "code", "map", "metadata", "sourceType"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"name": {"type": "string"}, "pkg_version": {"type": "string"}, "rebuild": {"type": "integer"}, "bottles": {"type": "object", "properties": {"arm64_big_sur": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "big_sur": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "catalina": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "mojave": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "x86_64_linux": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}}, "required": ["arm64_big_sur", "big_sur", "catalina", "mojave", "x86_64_linux"]}, "dependencies": {"type": "array", "items": {}}}, "required": ["name", "pkg_version", "rebuild", "bottles", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "scotch", "pkg_version" : "6.1.1", "rebuild" : 0, "bottles" : {"arm64_big_sur" : {"url" : "https://ghcr.io/v2/homebrew/core/scotch/blobs/sha256:a2a88eca7948940c07bc2263143b35be2d0a6d4f66bf3f4bff93ead83a653921"}, "big_sur" : {"url" : "https://ghcr.io/v2/homebrew/core/scotch/blobs/sha256:54e1182e94e87f15ba4671dd4611efd9aaf6dfa4c480fc304f40633032a70a19"}, "catalina" : {"url" : "https://ghcr.io/v2/homebrew/core/scotch/blobs/sha256:47642fe1c6bfc3da89aa509ac9220d9e27071e30327fb6c607e6473d4cc4d7d4"}, "mojave" : {"url" : "https://ghcr.io/v2/homebrew/core/scotch/blobs/sha256:ec79906f2bc0c47ac0989a7d4dcc6a3a7a49021e8a330b1f04a973ed09d01b0e"}, "x86_64_linux" : {"url" : "https://ghcr.io/v2/homebrew/core/scotch/blobs/sha256:f93fe6e8bcdb31271f7d082915061d6fa2b9e415611a6f52929dbb45a48dd847"}}, "dependencies" : []}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "pkg_version": {"type": "string"}, "rebuild": {"type": "integer"}, "bottles": {"type": "object", "properties": {"arm64_big_sur": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "big_sur": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "catalina": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "mojave": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "x86_64_linux": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}}, "required": ["arm64_big_sur", "big_sur", "catalina", "mojave", "x86_64_linux"]}, "dependencies": {"type": "array", "items": {}}}, "required": ["name", "pkg_version", "rebuild", "bottles", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"parent": {"type": "string"}}, "required": ["parent"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"parent" : "extendedmushrooms:block/red_mushroom_carpet"}
json_instruct
{"type": "object", "properties": {"parent": {"type": "string"}}, "required": ["parent"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"instances": {"type": "array", "items": {"type": "object", "properties": {"text": {"type": "string"}, "questions": {"type": "array", "items": {"type": "string"}}}, "required": ["text", "questions"]}}}, "required": ["instances"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"instances" : [{"text" : "Transformers (formerly known as pytorch-transformers and pytorch-pretrained-bert) provides general-purpose architectures (BERT, GPT-2, RoBERTa, XLM, DistilBert, XLNet\u2026) for Natural Language Understanding (NLU) and Natural Language Generation (NLG) with over 32+ pretrained models in 100+ languages and deep interoperability between TensorFlow 2.0 and PyTorch.", "questions" : ["How many pretrained models are available in Transformers?", "What does Transformers provide?", "Transformers provides interoperability between which frameworks?"]}]}
json_instruct
{"type": "object", "properties": {"instances": {"type": "array", "items": {"type": "object", "properties": {"text": {"type": "string"}, "questions": {"type": "array", "items": {"type": "string"}}}, "required": ["text", "questions"]}}}, "required": ["instances"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"app_name": {"type": "object", "properties": {"message": {"type": "string"}}, "required": ["message"]}, "app_description": {"type": "object", "properties": {"message": {"type": "string"}}, "required": ["message"]}}, "required": ["app_name", "app_description"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"app_name" : {"message" : "F\u00e4rg pipettverktyg"}, "app_description" : {"message" : "F\u00e5 f\u00e4rger fr\u00e5n en sida med pipett."}}
json_instruct
{"type": "object", "properties": {"app_name": {"type": "object", "properties": {"message": {"type": "string"}}, "required": ["message"]}, "app_description": {"type": "object", "properties": {"message": {"type": "string"}}, "required": ["message"]}}, "required": ["app_name", "app_description"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"name": {"type": "string"}, "type": {"type": "string"}, "require": {"type": "object", "properties": {"silex/silex": {"type": "string"}, "jandc/critical-css": {"type": "string"}, "jandc/twig-wrapper-provider": {"type": "string"}}, "required": ["silex/silex", "jandc/critical-css", "jandc/twig-wrapper-provider"]}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}}, "minimum-stability": {"type": "string"}}, "required": ["name", "type", "require", "authors", "minimum-stability"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "jandc/critical-css-silex", "type" : "package", "require" : {"silex/silex" : "^1.2", "jandc/critical-css" : "^0.5", "jandc/twig-wrapper-provider" : "^0.3"}, "authors" : [{"name" : "Jan Decavele", "email" : "jandecavele@gmail.com"}], "minimum-stability" : "stable"}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "type": {"type": "string"}, "require": {"type": "object", "properties": {"silex/silex": {"type": "string"}, "jandc/critical-css": {"type": "string"}, "jandc/twig-wrapper-provider": {"type": "string"}}, "required": ["silex/silex", "jandc/critical-css", "jandc/twig-wrapper-provider"]}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}}, "minimum-stability": {"type": "string"}}, "required": ["name", "type", "require", "authors", "minimum-stability"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "type": {"type": "string"}, "license": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}}, "require": {"type": "object", "properties": {}, "required": []}, "autoload": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"Vibar\\Account\\": {"type": "string"}}, "required": ["Vibar\\Account\\"]}}, "required": ["psr-4"]}}, "required": ["name", "description", "type", "license", "authors", "require", "autoload"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "vibar/laravel-account", "description" : "Laravel account activation.", "type" : "library", "license" : "MIT", "authors" : [{"name" : "V\u00edtor Barroso", "email" : "vitor.vgb@gmail.com"}], "require" : {}, "autoload" : {"psr-4" : {"Vibar\\Account\\" : "src/Account/"}}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "type": {"type": "string"}, "license": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}}, "require": {"type": "object", "properties": {}, "required": []}, "autoload": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"Vibar\\Account\\": {"type": "string"}}, "required": ["Vibar\\Account\\"]}}, "required": ["psr-4"]}}, "required": ["name", "description", "type", "license", "authors", "require", "autoload"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"id": {"type": "string"}, "provinceId": {"type": "string"}, "regencyId": {"type": "string"}, "districtId": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "provinceId", "regencyId", "districtId", "name"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : "2009", "provinceId" : "18", "regencyId" : "11", "districtId" : "04", "name" : "Hadi Mulyo"}
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "provinceId": {"type": "string"}, "regencyId": {"type": "string"}, "districtId": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "provinceId", "regencyId", "districtId", "name"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"body": {"type": "string"}, "attachments": {"type": "array", "items": {}}, "created_by_name": {"type": "string"}, "created_at": {"type": "string"}, "created_by": {"type": "string"}, "parent_id": {"type": "string"}, "id": {"type": "string"}}, "required": ["body", "attachments", "created_by_name", "created_at", "created_by", "parent_id", "id"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"body" : "Peter Apian-Bennewitz wrote:\n\n\n> Ignacio Mun\u00e1rriz wrote:\n>\n> >Greg, unfortunately, although polling is very simple, it is also very\n> >inefficient. The CPU can waste an awful lot of time just waiting for input.\n> >And i need that time for ray calculation. I think that rholo start a fork\n> >process and the processor divide the time between ray calculation and\n> >visualization-events. The best way would be that the hardware interrupt call\n> >diretly the event function so dont need a loop to search for input\n> >\n> >\n> IRQ handling with X11 ? Hm. IRQ handling is approximately half-a-dozen\n> layers underneath the X11 library calls. So these are really two very\n> different worlds.\n\n\n\n\nSpeaking about layers of abstraction...\nHave you considered a cross-platform solution?\n\n\nI have recommended Python and/or WxWidgets before, and I'll\ncontinue to do so. I really like the enthusiasm people put into\nsuch projects, but if you develop for X11, then that will just\nperpetuate the porting problems we already have.\n\n\nOf course, abstract toolkits like WxWidgets also have the\nadvantage that programming with them is *much* easier and more\nconvenient than with any platform specific API.\n\n\n\n\n-schorsch\n\n\n\n\nGeorg Mischler -- simulations developer -- schorsch at schorsch com\n+schorsch.com+ -- lighting design tools -- http://www.schorsch.com/\n___\n<sup>Automatically generated content from [radiance mailing-list](https://radiance-online.org/pipermail/radiance-dev/2004-December/000500.html).</sup>", "attachments" : [], "created_by_name" : "Georg Mischler", "created_at" : "December 24, 2004 at 12:28PM", "created_by" : "Georg_Mischler", "parent_id" : "radiance-dev_000496", "id" : "radiance-dev_000500"}
json_instruct
{"type": "object", "properties": {"body": {"type": "string"}, "attachments": {"type": "array", "items": {}}, "created_by_name": {"type": "string"}, "created_at": {"type": "string"}, "created_by": {"type": "string"}, "parent_id": {"type": "string"}, "id": {"type": "string"}}, "required": ["body", "attachments", "created_by_name", "created_at", "created_by", "parent_id", "id"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"success": {"type": "boolean"}, "application": {"type": "string"}}, "required": ["success", "application"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"success" : true, "application" : "biodiv-mail-utils"}
json_instruct
{"type": "object", "properties": {"success": {"type": "boolean"}, "application": {"type": "string"}}, "required": ["success", "application"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"id": {"type": "integer"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"src:alt_label": {"type": "string"}, "src:geom": {"type": "string"}, "wof:geomhash": {"type": "string"}, "wof:id": {"type": "integer"}, "wof:repo": {"type": "string"}}, "required": ["src:alt_label", "src:geom", "wof:geomhash", "wof:id", "wof:repo"]}, "bbox": {"type": "array", "items": {"type": "number"}}, "geometry": {"type": "object", "properties": {"coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}, "type": {"type": "string"}}, "required": ["coordinates", "type"]}}, "required": ["id", "type", "properties", "bbox", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : 85771799, "type" : "Feature", "properties" : {"src:alt_label" : "quattroshapes", "src:geom" : "quattroshapes", "wof:geomhash" : "d46c9fa7a143e60f1aa63691e96095fe", "wof:id" : 85771799, "wof:repo" : "whosonfirst-data-admin-my"}, "bbox" : [100.29418945300006, 5.35899052648855, 100.305175781, 5.36857954242069], "geometry" : {"coordinates" : [[[100.29692403702859, 5.36857954242069], [100.29968261700014, 5.36719417857518], [100.3010859374948, 5.36719417857518], [100.30380848247512, 5.36445966295004], [100.305175781, 5.36445966295004], [100.305175781, 5.36308635260708], [100.305175781, 5.36036383169615], [100.305175781, 5.35899053362995], [100.29968261700014, 5.35899053362995], [100.29831531441602, 5.35899052648855], [100.29555675241124, 5.35899052980378], [100.29418945300006, 5.35899053362995], [100.29418945300006, 5.36445966295004], [100.29555674949091, 5.36445966295004], [100.29692403702859, 5.36857954242069]]], "type" : "Polygon"}}
json_instruct
{"type": "object", "properties": {"id": {"type": "integer"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"src:alt_label": {"type": "string"}, "src:geom": {"type": "string"}, "wof:geomhash": {"type": "string"}, "wof:id": {"type": "integer"}, "wof:repo": {"type": "string"}}, "required": ["src:alt_label", "src:geom", "wof:geomhash", "wof:id", "wof:repo"]}, "bbox": {"type": "array", "items": {"type": "number"}}, "geometry": {"type": "object", "properties": {"coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}, "type": {"type": "string"}}, "required": ["coordinates", "type"]}}, "required": ["id", "type", "properties", "bbox", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"name": {"type": "string"}, "event": {"type": "object", "properties": {"type": {"type": "string"}, "target": {"type": "string"}, "payload": {"type": "string"}}, "required": ["type", "target", "payload"]}}, "required": ["name", "event"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "Room 01 vent is open", "event" : {"type" : "VENT_OPEN", "target" : "1", "payload" : ""}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "event": {"type": "object", "properties": {"type": {"type": "string"}, "target": {"type": "string"}, "payload": {"type": "string"}}, "required": ["type", "target", "payload"]}}, "required": ["name", "event"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"$comment": {"type": "string"}, "templates": {"type": "string"}, "content": {"type": "string"}, "check": {"type": "object", "properties": {"ignoreURLPattern": {"type": "string"}}, "required": ["ignoreURLPattern"]}}, "required": ["$comment", "templates", "content", "check"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"$comment" : "The actual configuration, templates, and assets for https://docs.sourcegraph.com live in https://github.com/sourcegraph/docs.sourcegraph.com. This docsite.json merely enables `docsite check` to check the doc files for common problems in this repository's CI.", "templates" : "../dev/check/docsite", "content" : ".", "check" : {"ignoreURLPattern" : "(^https?://)|(^#)|(^mailto:support@sourcegraph\\.com(\\?.*)?$)|(^chrome://)"}}
json_instruct
{"type": "object", "properties": {"$comment": {"type": "string"}, "templates": {"type": "string"}, "content": {"type": "string"}, "check": {"type": "object", "properties": {"ignoreURLPattern": {"type": "string"}}, "required": ["ignoreURLPattern"]}}, "required": ["$comment", "templates", "content", "check"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"tag": {"type": "string"}}, "required": ["tag"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"tag" : "sitecore-reporting:8.2.180406-windowsservercore-1803"}
json_instruct
{"type": "object", "properties": {"tag": {"type": "string"}}, "required": ["tag"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"IsRecentlyVerified": {"type": "boolean"}, "ID": {"type": "integer"}, "UUID": {"type": "string"}, "DataProviderID": {"type": "integer"}, "OperatorID": {"type": "integer"}, "OperatorsReference": {"type": "string"}, "UsageTypeID": {"type": "integer"}, "UsageCost": {"type": "string"}, "AddressInfo": {"type": "object", "properties": {"ID": {"type": "integer"}, "Title": {"type": "string"}, "AddressLine1": {"type": "string"}, "Town": {"type": "string"}, "Postcode": {"type": "string"}, "CountryID": {"type": "integer"}, "Latitude": {"type": "number"}, "Longitude": {"type": "number"}, "DistanceUnit": {"type": "integer"}}, "required": ["ID", "Title", "AddressLine1", "Town", "Postcode", "CountryID", "Latitude", "Longitude", "DistanceUnit"]}, "Connections": {"type": "array", "items": {"type": "object", "properties": {"ID": {"type": "integer"}, "ConnectionTypeID": {"type": "integer"}, "StatusTypeID": {"type": "integer"}, "LevelID": {"type": "integer"}, "Amps": {"type": "integer"}, "Voltage": {"type": "integer"}, "PowerKW": {"type": "integer"}, "CurrentTypeID": {"type": "integer"}, "Quantity": {"type": "integer"}}, "required": ["ID", "ConnectionTypeID", "StatusTypeID", "LevelID", "Amps", "Voltage", "PowerKW", "CurrentTypeID", "Quantity"]}}, "NumberOfPoints": {"type": "integer"}, "StatusTypeID": {"type": "integer"}, "DateLastStatusUpdate": {"type": "string"}, "DataQualityLevel": {"type": "integer"}, "DateCreated": {"type": "string"}, "SubmissionStatusTypeID": {"type": "integer"}}, "required": ["IsRecentlyVerified", "ID", "UUID", "DataProviderID", "OperatorID", "OperatorsReference", "UsageTypeID", "UsageCost", "AddressInfo", "Connections", "NumberOfPoints", "StatusTypeID", "DateLastStatusUpdate", "DataQualityLevel", "DateCreated", "SubmissionStatusTypeID"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"IsRecentlyVerified" : false, "ID" : 93039, "UUID" : "4049A4FB-4545-48D8-B5CA-6CE8379445AA", "DataProviderID" : 1, "OperatorID" : 25, "OperatorsReference" : "wandsworth-keswickroad", "UsageTypeID" : 4, "UsageCost" : "\u00a30.059/minute; min \u00a31.18; other tariffs available", "AddressInfo" : {"ID" : 93385, "Title" : "Keswick Road", "AddressLine1" : "2G Keswick Road", "Town" : "LONDON", "Postcode" : "SW15 2JF", "CountryID" : 1, "Latitude" : 51.4584587737, "Longitude" : -0.20994943488, "DistanceUnit" : 0}, "Connections" : [{"ID" : 131779, "ConnectionTypeID" : 25, "StatusTypeID" : 50, "LevelID" : 2, "Amps" : 32, "Voltage" : 230, "PowerKW" : 7, "CurrentTypeID" : 10, "Quantity" : 3}, {"ID" : 131780, "ConnectionTypeID" : 1, "StatusTypeID" : 50, "LevelID" : 2, "Amps" : 16, "Voltage" : 230, "PowerKW" : 4, "CurrentTypeID" : 10, "Quantity" : 3}], "NumberOfPoints" : 3, "StatusTypeID" : 50, "DateLastStatusUpdate" : "2017-12-23T06:33:00Z", "DataQualityLevel" : 1, "DateCreated" : "2017-09-17T05:29:00Z", "SubmissionStatusTypeID" : 200}
json_instruct
{"type": "object", "properties": {"IsRecentlyVerified": {"type": "boolean"}, "ID": {"type": "integer"}, "UUID": {"type": "string"}, "DataProviderID": {"type": "integer"}, "OperatorID": {"type": "integer"}, "OperatorsReference": {"type": "string"}, "UsageTypeID": {"type": "integer"}, "UsageCost": {"type": "string"}, "AddressInfo": {"type": "object", "properties": {"ID": {"type": "integer"}, "Title": {"type": "string"}, "AddressLine1": {"type": "string"}, "Town": {"type": "string"}, "Postcode": {"type": "string"}, "CountryID": {"type": "integer"}, "Latitude": {"type": "number"}, "Longitude": {"type": "number"}, "DistanceUnit": {"type": "integer"}}, "required": ["ID", "Title", "AddressLine1", "Town", "Postcode", "CountryID", "Latitude", "Longitude", "DistanceUnit"]}, "Connections": {"type": "array", "items": {"type": "object", "properties": {"ID": {"type": "integer"}, "ConnectionTypeID": {"type": "integer"}, "StatusTypeID": {"type": "integer"}, "LevelID": {"type": "integer"}, "Amps": {"type": "integer"}, "Voltage": {"type": "integer"}, "PowerKW": {"type": "integer"}, "CurrentTypeID": {"type": "integer"}, "Quantity": {"type": "integer"}}, "required": ["ID", "ConnectionTypeID", "StatusTypeID", "LevelID", "Amps", "Voltage", "PowerKW", "CurrentTypeID", "Quantity"]}}, "NumberOfPoints": {"type": "integer"}, "StatusTypeID": {"type": "integer"}, "DateLastStatusUpdate": {"type": "string"}, "DataQualityLevel": {"type": "integer"}, "DateCreated": {"type": "string"}, "SubmissionStatusTypeID": {"type": "integer"}}, "required": ["IsRecentlyVerified", "ID", "UUID", "DataProviderID", "OperatorID", "OperatorsReference", "UsageTypeID", "UsageCost", "AddressInfo", "Connections", "NumberOfPoints", "StatusTypeID", "DateLastStatusUpdate", "DataQualityLevel", "DateCreated", "SubmissionStatusTypeID"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "author": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}, "dependencies": {"type": "object", "properties": {"grunt": {"type": "string"}, "grunt-ngdocs": {"type": "string"}, "grunt-contrib-connect": {"type": "string"}, "grunt-contrib-clean": {"type": "string"}}, "required": ["grunt", "grunt-ngdocs", "grunt-contrib-connect", "grunt-contrib-clean"]}}, "required": ["name", "version", "description", "author", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "typingt-tutor-documentation", "version" : "0.0.1", "description" : "Basic code documentation for the application.", "author" : {"name" : "David Brvar", "email" : "db9949@student.uni-lj.si"}, "dependencies" : {"grunt" : "~0.4.1", "grunt-ngdocs" : "~0.2.9", "grunt-contrib-connect" : "~0.3.0", "grunt-contrib-clean" : "0.4.1"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "author": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}, "dependencies": {"type": "object", "properties": {"grunt": {"type": "string"}, "grunt-ngdocs": {"type": "string"}, "grunt-contrib-connect": {"type": "string"}, "grunt-contrib-clean": {"type": "string"}}, "required": ["grunt", "grunt-ngdocs", "grunt-contrib-connect", "grunt-contrib-clean"]}}, "required": ["name", "version", "description", "author", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"symbol": {"type": "string"}, "name": {"type": "string"}, "decimals": {"type": "integer"}, "address": {"type": "string"}}, "required": ["symbol", "name", "decimals", "address"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"symbol" : "XCAD", "name" : "XCAD Network", "decimals" : 18, "address" : "0x7659ce147d0e714454073a5dd7003544234b6aa0"}
json_instruct
{"type": "object", "properties": {"symbol": {"type": "string"}, "name": {"type": "string"}, "decimals": {"type": "integer"}, "address": {"type": "string"}}, "required": ["symbol", "name", "decimals", "address"], "$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"}, "homepage": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "license": {"type": "string"}, "author": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}, "url": {"type": "string"}}, "required": ["name", "email", "url"]}, "scripts": {"type": "object", "properties": {"code:vue": {"type": "string"}}, "required": ["code:vue"]}, "dependencies": {"type": "object", "properties": {"lerna": {"type": "string"}}, "required": ["lerna"]}, "devDependencies": {"type": "object", "properties": {"depcheck": {"type": "string"}, "mocha": {"type": "string"}, "sort-package-json": {"type": "string"}, "ts-standard": {"type": "string"}, "typescript": {"type": "string"}}, "required": ["depcheck", "mocha", "sort-package-json", "ts-standard", "typescript"]}, "publishConfig": {"type": "object", "properties": {"access": {"type": "string"}}, "required": ["access"]}, "gitHead": {"type": "string"}, "standard": {"type": "object", "properties": {"globals": {"type": "array", "items": {"type": "string"}}, "ignore": {"type": "array", "items": {"type": "string"}}}, "required": ["globals", "ignore"]}}, "required": ["name", "version", "description", "homepage", "bugs", "repository", "license", "author", "scripts", "dependencies", "devDependencies", "publishConfig", "gitHead", "standard"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "baldr", "version" : "0.1.38", "description" : "A try to write my presentations for school in HTML5, CSS3 and Javascript using Electron. Virtual top level package for tooling support.", "homepage" : "https://github.com/Josef-Friedrich/baldr#readme", "bugs" : {"url" : "https://github.com/Josef-Friedrich/baldr/issues"}, "repository" : {"type" : "git", "url" : "git+https://github.com/Josef-Friedrich/baldr.git"}, "license" : "MIT", "author" : {"name" : "Josef Friedrich", "email" : "josef@friedrich.rocks", "url" : "https://josef.friedrich.rocks"}, "scripts" : {"code:vue" : "code .vscode/vue.code-workspace"}, "dependencies" : {"lerna" : "4.0.0"}, "devDependencies" : {"depcheck" : "1.4.2", "mocha" : "9.1.3", "sort-package-json" : "1.53.1", "ts-standard" : "11.0.0", "typescript" : "4.5.2"}, "publishConfig" : {"access" : "public"}, "gitHead" : "ed4f60e66c8f420711d3eb15185620f7688e6fc9", "standard" : {"globals" : ["describe", "context", "before", "beforeEach", "after", "afterEach", "it", "expect"], "ignore" : ["node_modules", "docs", "out"]}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "homepage": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "license": {"type": "string"}, "author": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}, "url": {"type": "string"}}, "required": ["name", "email", "url"]}, "scripts": {"type": "object", "properties": {"code:vue": {"type": "string"}}, "required": ["code:vue"]}, "dependencies": {"type": "object", "properties": {"lerna": {"type": "string"}}, "required": ["lerna"]}, "devDependencies": {"type": "object", "properties": {"depcheck": {"type": "string"}, "mocha": {"type": "string"}, "sort-package-json": {"type": "string"}, "ts-standard": {"type": "string"}, "typescript": {"type": "string"}}, "required": ["depcheck", "mocha", "sort-package-json", "ts-standard", "typescript"]}, "publishConfig": {"type": "object", "properties": {"access": {"type": "string"}}, "required": ["access"]}, "gitHead": {"type": "string"}, "standard": {"type": "object", "properties": {"globals": {"type": "array", "items": {"type": "string"}}, "ignore": {"type": "array", "items": {"type": "string"}}}, "required": ["globals", "ignore"]}}, "required": ["name", "version", "description", "homepage", "bugs", "repository", "license", "author", "scripts", "dependencies", "devDependencies", "publishConfig", "gitHead", "standard"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"ramda.js": {"type": "string"}, "ramda.min.js": {"type": "string"}}, "required": ["ramda.js", "ramda.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"ramda.js" : "sha512-3sdB9mAxNh2MIo6YkY05uY1qjkywAlDfCf5u1cSotv6k9CZUSyHVf4BJSpTYgla+YHLaHG8LUpqV7MHctlYzlw==", "ramda.min.js" : "sha512-rZHvUXcc1zWKsxm7rJ8lVQuIr1oOmm7cShlvpV0gWf0RvbcJN6x96al/Rp2L2BI4a4ZkT2/YfVe/8YvB2UHzQw=="}
json_instruct
{"type": "object", "properties": {"ramda.js": {"type": "string"}, "ramda.min.js": {"type": "string"}}, "required": ["ramda.js", "ramda.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"resource.resolver.mapping": {"type": "array", "items": {"type": "string"}}}, "required": ["resource.resolver.mapping"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"resource.resolver.mapping" : ["/content/nag/&lt;/", "/:/"]}
json_instruct
{"type": "object", "properties": {"resource.resolver.mapping": {"type": "array", "items": {"type": "string"}}}, "required": ["resource.resolver.mapping"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"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": {"type": "string"}}, "title": {"type": "string"}, "url": {"type": "string"}}, "required": ["directions", "ingredients", "language", "source", "tags", "title", "url"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"directions" : ["Pour oil into a large heavy skillet fitted with thermometer to come 1/2\" up sides. Heat over medium-high until thermometer registers 350\u00b0F. Place breadcrumbs in a shallow dish or rimmed baking sheet.", "Season chicken all over with salt and pepper on a rimmed baking sheet. Spread 1/4 cup pesto all over chicken. Dip chicken into breadcrumbs, turning to coat and pressing with your fingertips to adhere.", "Carefully add chicken to hot oil, then reduce heat to medium. Fry 4 minutes, then flip and continue to fry until golden brown and cooked through, about 2 minutes more. Transfer to a wire rack.", "Serve chicken with pesto alongside for dipping."], "ingredients" : ["Vegetable oil (for frying; about 2 cups)", "1 cup plain fine breadcrumbs", "1 pound boneless, skinless chicken thighs (about 4 large)", "Kosher salt, freshly ground pepper", "1/4 cup basil pesto, plus more for serving", "A deep-fry thermometer"], "language" : "en-US", "source" : "www.epicurious.com", "tags" : ["3-Ingredient Recipes", "Chicken", "Pan-Fry", "Fry", "Basil", "Dinner"], "title" : "3-Ingredient Pesto Fried Chicken", "url" : "http://www.epicurious.com/recipes/food/views/3-ingredient-pesto-fried-chicken"}
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": {"type": "string"}}, "title": {"type": "string"}, "url": {"type": "string"}}, "required": ["directions", "ingredients", "language", "source", "tags", "title", "url"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"}
["deployment", "service"]
json_instruct
{"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "main": {"type": "string"}, "license": {"type": "string"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}}, "required": ["start"]}, "dependencies": {"type": "object", "properties": {"axios": {"type": "string"}, "express": {"type": "string"}, "mongoose": {"type": "string"}}, "required": ["axios", "express", "mongoose"]}, "devDependencies": {"type": "object", "properties": {"nodemon": {"type": "string"}}, "required": ["nodemon"]}, "type": {"type": "string"}}, "required": ["name", "version", "main", "license", "scripts", "dependencies", "devDependencies", "type"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "find-devs-api", "version" : "1.0.0", "main" : "server.js", "license" : "MIT", "scripts" : {"start" : "nodemon src/server.js"}, "dependencies" : {"axios" : "^0.21.1", "express" : "^4.17.1", "mongoose" : "^5.11.15"}, "devDependencies" : {"nodemon" : "^2.0.7"}, "type" : "module"}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "main": {"type": "string"}, "license": {"type": "string"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}}, "required": ["start"]}, "dependencies": {"type": "object", "properties": {"axios": {"type": "string"}, "express": {"type": "string"}, "mongoose": {"type": "string"}}, "required": ["axios", "express", "mongoose"]}, "devDependencies": {"type": "object", "properties": {"nodemon": {"type": "string"}}, "required": ["nodemon"]}, "type": {"type": "string"}}, "required": ["name", "version", "main", "license", "scripts", "dependencies", "devDependencies", "type"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"autoplayTransitionDelay": {"type": "integer"}, "author": {"type": "string"}, "timestamp": {"type": "string"}, "loopSlideshow": {"type": "integer"}, "filename": {"type": "string"}, "autoplayBuildDelay": {"type": "integer"}, "comment": {"type": "string"}, "title": {"type": "string"}, "showMode": {"type": "integer"}, "creator": {"type": "string"}, "slideList": {"type": "array", "items": {"type": "string"}}, "soundtrack": {"type": "object", "properties": {"mode": {"type": "integer"}, "volume": {"type": "integer"}}, "required": ["mode", "volume"]}, "slideWidth": {"type": "integer"}, "slideHeight": {"type": "integer"}, "slideCount": {"type": "integer"}, "majorVersion": {"type": "integer"}, "minorVersion": {"type": "integer"}, "fonts": {"type": "array", "items": {"type": "string"}}}, "required": ["autoplayTransitionDelay", "author", "timestamp", "loopSlideshow", "filename", "autoplayBuildDelay", "comment", "title", "showMode", "creator", "slideList", "soundtrack", "slideWidth", "slideHeight", "slideCount", "majorVersion", "minorVersion", "fonts"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"autoplayTransitionDelay" : 5, "author" : "", "timestamp" : "2019-9-23 0:1:9", "loopSlideshow" : 0, "filename" : "What Is Block Chain?", "autoplayBuildDelay" : 2, "comment" : "", "title" : "What Is Block Chain?", "showMode" : 0, "creator" : "Apple Keynote 8.3", "slideList" : ["28C2CEC4-A85C-4246-8ECC-1CB61D5F6A2A", "6E5E7244-1383-4FE5-BA34-7D07AA4AA0E7", "D0798E1A-2617-4224-80AB-CFCDBB31FC02", "C1AE5E19-FFD9-4B26-A003-9B9D8B2F3B39", "9B1131C1-41A4-4722-8121-FA41260B7AA4", "C3A8E415-A47D-4D69-9238-CF827FEB0C51", "BDDDA9AE-FCDD-41EC-A9BF-5362D8D0C305", "B1F0E147-94F9-450A-A754-E280A05332C1", "1D400EB2-5FB1-4491-84EF-43B2CA5B3795", "51780E52-6BD4-4A56-B9FF-03F9F0398DAC", "322F45B1-F335-4006-A75C-092C1988C599", "EC7CE687-C5EE-4070-B632-8B815EB97094", "B3C8649C-B457-448E-8367-04A625CA5AC2", "56EDC232-8462-4EA9-8C00-42915146C680", "951BCDA2-1682-4349-9C54-E2EA6F9D097A", "5D44C0ED-0FB1-4EA6-B4B3-1139C6C8772D", "132F5650-DF5B-40BE-B773-257C6E0A2C6D"], "soundtrack" : {"mode" : 0, "volume" : 1}, "slideWidth" : 1024, "slideHeight" : 768, "slideCount" : 17, "majorVersion" : 1, "minorVersion" : 2, "fonts" : ["HelveticaNeue", "HelveticaNeue-Bold", "HelveticaNeue-Italic", "HelveticaNeue-Light", "Helvetica", "GillSans", "HelveticaNeue-MediumItalic", "HelveticaNeue-Medium"]}
json_instruct
{"type": "object", "properties": {"autoplayTransitionDelay": {"type": "integer"}, "author": {"type": "string"}, "timestamp": {"type": "string"}, "loopSlideshow": {"type": "integer"}, "filename": {"type": "string"}, "autoplayBuildDelay": {"type": "integer"}, "comment": {"type": "string"}, "title": {"type": "string"}, "showMode": {"type": "integer"}, "creator": {"type": "string"}, "slideList": {"type": "array", "items": {"type": "string"}}, "soundtrack": {"type": "object", "properties": {"mode": {"type": "integer"}, "volume": {"type": "integer"}}, "required": ["mode", "volume"]}, "slideWidth": {"type": "integer"}, "slideHeight": {"type": "integer"}, "slideCount": {"type": "integer"}, "majorVersion": {"type": "integer"}, "minorVersion": {"type": "integer"}, "fonts": {"type": "array", "items": {"type": "string"}}}, "required": ["autoplayTransitionDelay", "author", "timestamp", "loopSlideshow", "filename", "autoplayBuildDelay", "comment", "title", "showMode", "creator", "slideList", "soundtrack", "slideWidth", "slideHeight", "slideCount", "majorVersion", "minorVersion", "fonts"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"sourceHash": {"type": "integer"}, "sourceString": {"type": "string"}, "blacklisted": {"type": "boolean"}, "acquisitionInfo": {"type": "object", "properties": {"runOnlyAcquisitionRewardSite": {"type": "boolean"}}, "required": ["runOnlyAcquisitionRewardSite"]}, "index": {"type": "integer"}, "presentationNodeType": {"type": "integer"}, "traitHashes": {"type": "array", "items": {}}, "redacted": {"type": "boolean"}, "stateInfo": {"type": "object", "properties": {"requirements": {"type": "object", "properties": {"entitlementUnavailableMessage": {"type": "string"}}, "required": ["entitlementUnavailableMessage"]}}, "required": ["requirements"]}, "parentNodeHashes": {"type": "array", "items": {"type": "integer"}}, "traitIds": {"type": "array", "items": {}}, "displayProperties": {"type": "object", "properties": {"icon": {"type": "string"}, "hasIcon": {"type": "boolean"}, "description": {"type": "string"}, "name": {"type": "string"}}, "required": ["icon", "hasIcon", "description", "name"]}, "scope": {"type": "integer"}, "itemHash": {"type": "integer"}, "hash": {"type": "integer"}}, "required": ["sourceHash", "sourceString", "blacklisted", "acquisitionInfo", "index", "presentationNodeType", "traitHashes", "redacted", "stateInfo", "parentNodeHashes", "traitIds", "displayProperties", "scope", "itemHash", "hash"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"sourceHash" : 1491707941, "sourceString" : "Source: \"Garden of Salvation\" raid.", "blacklisted" : false, "acquisitionInfo" : {"runOnlyAcquisitionRewardSite" : false}, "index" : 1499, "presentationNodeType" : 2, "traitHashes" : [], "redacted" : false, "stateInfo" : {"requirements" : {"entitlementUnavailableMessage" : ""}}, "parentNodeHashes" : [4089567124, 5678666], "traitIds" : [], "displayProperties" : {"icon" : "/common/destiny2_content/icons/f00a32c5f7a0b4f98e118af525ad8cce.jpg", "hasIcon" : true, "description" : "\"If you do this, it can't be undone. Some choices change you. This is one of them.\" \u2014Lisbon-13, Hunter of the Kentarch 3", "name" : "Robes of Transcendence"}, "scope" : 1, "itemHash" : 2320830625, "hash" : 2783756445}
json_instruct
{"type": "object", "properties": {"sourceHash": {"type": "integer"}, "sourceString": {"type": "string"}, "blacklisted": {"type": "boolean"}, "acquisitionInfo": {"type": "object", "properties": {"runOnlyAcquisitionRewardSite": {"type": "boolean"}}, "required": ["runOnlyAcquisitionRewardSite"]}, "index": {"type": "integer"}, "presentationNodeType": {"type": "integer"}, "traitHashes": {"type": "array", "items": {}}, "redacted": {"type": "boolean"}, "stateInfo": {"type": "object", "properties": {"requirements": {"type": "object", "properties": {"entitlementUnavailableMessage": {"type": "string"}}, "required": ["entitlementUnavailableMessage"]}}, "required": ["requirements"]}, "parentNodeHashes": {"type": "array", "items": {"type": "integer"}}, "traitIds": {"type": "array", "items": {}}, "displayProperties": {"type": "object", "properties": {"icon": {"type": "string"}, "hasIcon": {"type": "boolean"}, "description": {"type": "string"}, "name": {"type": "string"}}, "required": ["icon", "hasIcon", "description", "name"]}, "scope": {"type": "integer"}, "itemHash": {"type": "integer"}, "hash": {"type": "integer"}}, "required": ["sourceHash", "sourceString", "blacklisted", "acquisitionInfo", "index", "presentationNodeType", "traitHashes", "redacted", "stateInfo", "parentNodeHashes", "traitIds", "displayProperties", "scope", "itemHash", "hash"], "$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"}, "keywords": {"type": "array", "items": {"type": "string"}}, "repository": {"type": "string"}, "scripts": {"type": "array", "items": {"type": "string"}}, "styles": {"type": "array", "items": {"type": "string"}}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"component/emitter": {"type": "string"}, "component/event": {"type": "string"}, "component/domify": {"type": "string"}, "component/classes": {"type": "string"}, "component/map": {"type": "string"}, "component/in-groups-of": {"type": "string"}, "component/object": {"type": "string"}, "stephenmathieson/normalize": {"type": "string"}, "arashm/jdate": {"type": "string"}}, "required": ["component/emitter", "component/event", "component/domify", "component/classes", "component/map", "component/in-groups-of", "component/object", "stephenmathieson/normalize", "arashm/jdate"]}}, "required": ["name", "version", "description", "keywords", "repository", "scripts", "styles", "license", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "jcal", "version" : "0.0.1", "description" : "A Jalali/Shamsi/Sun Calendar", "keywords" : ["date", "calendar", "jalali", "sun", "shamsi"], "repository" : "arashm/JCal", "scripts" : ["index.js", "lib/jcal.js", "lib/template.js"], "styles" : ["styles/styles.sass"], "license" : "MIT", "dependencies" : {"component/emitter" : "*", "component/event" : "*", "component/domify" : "*", "component/classes" : "*", "component/map" : "*", "component/in-groups-of" : "1.0.0", "component/object" : "*", "stephenmathieson/normalize" : "*", "arashm/jdate" : "v0.1.1"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "repository": {"type": "string"}, "scripts": {"type": "array", "items": {"type": "string"}}, "styles": {"type": "array", "items": {"type": "string"}}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"component/emitter": {"type": "string"}, "component/event": {"type": "string"}, "component/domify": {"type": "string"}, "component/classes": {"type": "string"}, "component/map": {"type": "string"}, "component/in-groups-of": {"type": "string"}, "component/object": {"type": "string"}, "stephenmathieson/normalize": {"type": "string"}, "arashm/jdate": {"type": "string"}}, "required": ["component/emitter", "component/event", "component/domify", "component/classes", "component/map", "component/in-groups-of", "component/object", "stephenmathieson/normalize", "arashm/jdate"]}}, "required": ["name", "version", "description", "keywords", "repository", "scripts", "styles", "license", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "engines": {"type": "object", "properties": {"node": {"type": "string"}}, "required": ["node"]}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"dev": {"type": "string"}, "test": {"type": "string"}, "start": {"type": "string"}}, "required": ["dev", "test", "start"]}, "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"}, "devDependencies": {"type": "object", "properties": {"chai": {"type": "string"}, "eslint": {"type": "string"}, "mocha": {"type": "string"}, "nodemon": {"type": "string"}, "sinon": {"type": "string"}}, "required": ["chai", "eslint", "mocha", "nodemon", "sinon"]}, "dependencies": {"type": "object", "properties": {"dotenv": {"type": "string"}, "express": {"type": "string"}, "matrix-js-sdk": {"type": "string"}, "striptags": {"type": "string"}}, "required": ["dotenv", "express", "matrix-js-sdk", "striptags"]}}, "required": ["name", "version", "description", "engines", "main", "scripts", "repository", "keywords", "author", "license", "devDependencies", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "matrix-sentry-webhooks", "version" : "0.5.0", "description" : "Sentry webhooks integration bot for Matrix", "engines" : {"node" : ">=10"}, "main" : "src/app.js", "scripts" : {"dev" : "node_modules/.bin/nodemon src/app.js localhost 3000", "test" : "node_modules/.bin/mocha tests/", "start" : "node src/app.js"}, "repository" : {"type" : "git", "url" : "https://github.com/matrix-org/matrix-sentry-webhooks"}, "keywords" : ["matrix", "sentry", "integration", "bot"], "author" : "", "license" : "Apache-2.0", "devDependencies" : {"chai" : "^4.2.0", "eslint" : "^7.16.0", "mocha" : "^8.2.1", "nodemon" : "^2.0.6", "sinon" : "^9.2.2"}, "dependencies" : {"dotenv" : "^8.2.0", "express" : "^4.17.1", "matrix-js-sdk" : "^9.4.1", "striptags" : "^3.2.0"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "engines": {"type": "object", "properties": {"node": {"type": "string"}}, "required": ["node"]}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"dev": {"type": "string"}, "test": {"type": "string"}, "start": {"type": "string"}}, "required": ["dev", "test", "start"]}, "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"}, "devDependencies": {"type": "object", "properties": {"chai": {"type": "string"}, "eslint": {"type": "string"}, "mocha": {"type": "string"}, "nodemon": {"type": "string"}, "sinon": {"type": "string"}}, "required": ["chai", "eslint", "mocha", "nodemon", "sinon"]}, "dependencies": {"type": "object", "properties": {"dotenv": {"type": "string"}, "express": {"type": "string"}, "matrix-js-sdk": {"type": "string"}, "striptags": {"type": "string"}}, "required": ["dotenv", "express", "matrix-js-sdk", "striptags"]}}, "required": ["name", "version", "description", "engines", "main", "scripts", "repository", "keywords", "author", "license", "devDependencies", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}}, "required": ["id", "name"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"id" : 1, "name" : "Customer Service"}, {"id" : 2, "name" : "Billing"}, {"id" : 3, "name" : "Account Receivable"}, {"id" : 4, "name" : "Payroll"}, {"id" : 5, "name" : "Music Department"}, {"id" : 6, "name" : "Engineering"}, {"id" : 7, "name" : "Public Health"}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}}, "required": ["id", "name"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"url": {"type": "string"}, "archived_snapshots": {"type": "object", "properties": {"closest": {"type": "object", "properties": {"status": {"type": "string"}, "available": {"type": "boolean"}, "url": {"type": "string"}, "timestamp": {"type": "string"}}, "required": ["status", "available", "url", "timestamp"]}}, "required": ["closest"]}, "timestamp": {"type": "string"}}, "required": ["url", "archived_snapshots", "timestamp"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"url" : "http://web.archive.org/web/20100222214101/http://web.intuit.com/support/quicken/docs/d_qif.html", "archived_snapshots" : {"closest" : {"status" : "200", "available" : true, "url" : "http://web.archive.org/web/20180606142322/http://web.archive.org:80/web/20100222214101/http://web.intuit.com/support/quicken/docs/d_qif.html", "timestamp" : "20180606142322"}}, "timestamp" : "20200316"}
json_instruct
{"type": "object", "properties": {"url": {"type": "string"}, "archived_snapshots": {"type": "object", "properties": {"closest": {"type": "object", "properties": {"status": {"type": "string"}, "available": {"type": "boolean"}, "url": {"type": "string"}, "timestamp": {"type": "string"}}, "required": ["status", "available", "url", "timestamp"]}}, "required": ["closest"]}, "timestamp": {"type": "string"}}, "required": ["url", "archived_snapshots", "timestamp"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"extends": {"type": "array", "items": {"type": "string"}}, "ignorePaths": {"type": "array", "items": {"type": "string"}}, "schedule": {"type": "array", "items": {"type": "string"}}, "rangeStrategy": {"type": "string"}}, "required": ["extends", "ignorePaths", "schedule", "rangeStrategy"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"extends" : ["config:base"], "ignorePaths" : ["**/draft/**"], "schedule" : ["before 3am on the first day of the month"], "rangeStrategy" : "bump"}
json_instruct
{"type": "object", "properties": {"extends": {"type": "array", "items": {"type": "string"}}, "ignorePaths": {"type": "array", "items": {"type": "string"}}, "schedule": {"type": "array", "items": {"type": "string"}}, "rangeStrategy": {"type": "string"}}, "required": ["extends", "ignorePaths", "schedule", "rangeStrategy"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "array", "items": {"type": "object", "properties": {"tab_name": {"type": "string"}, "tab_label": {"type": "string"}, "tab_title": {"type": "string"}}, "required": ["tab_name", "tab_label", "tab_title"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"tab_name" : "turtle4t", "tab_label" : " \u6d77\u9f9c ", "tab_title" : "\u6d77\u9f9c\u5e7e\u4f55\u7e6a\u5716 "}, {"tab_name" : "physics4t", "tab_label" : " \u7269\u7406 ", "tab_title" : "\u7269\u7406\u78b0\u649e"}, {"tab_name" : "threed4t", "tab_label" : " 3D ", "tab_title" : "3D\u7a0b\u5f0f"}, {"tab_name" : "cv4t", "tab_label" : " \u8996\u89ba ", "tab_title" : "\u8996\u89ba\u5f71\u50cf"}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"tab_name": {"type": "string"}, "tab_label": {"type": "string"}, "tab_title": {"type": "string"}}, "required": ["tab_name", "tab_label", "tab_title"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"}
["facebook-cli", "fb-falafel", "fb-uploader", "kayz", "promise-facebook", "social-feed", "wanashare"]
json_instruct
{"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "array", "items": {"type": "array", "items": {"type": "string"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
[["513425234200", "\u6728\u6811\u6751\u6c11\u59d4\u5458\u4f1a", "220", "0"], ["513425234201", "\u575d\u5730\u6751\u6c11\u59d4\u5458\u4f1a", "220", "0"], ["513425234202", "\u504f\u6865\u6751\u6c11\u59d4\u5458\u4f1a", "210", "0"], ["513425234203", "\u97ed\u83dc\u6751\u6c11\u59d4\u5458\u4f1a", "220", "0"], ["513425234204", "\u5927\u69fd\u6751\u6c11\u59d4\u5458\u4f1a", "220", "0"], ["513425234205", "\u5927\u5143\u6751\u6c11\u59d4\u5458\u4f1a", "220", "0"], ["513425234206", "\u6cb3\u576a\u6751\u6c11\u59d4\u5458\u4f1a", "220", "0"], ["513425234207", "\u6cd5\u79d1\u6751\u6c11\u59d4\u5458\u4f1a", "220", "0"], ["513425234208", "\u7ea2\u5b89\u6751\u6c11\u59d4\u5458\u4f1a", "220", "0"], ["513425234209", "\u9a6c\u9f99\u6751\u6c11\u59d4\u5458\u4f1a", "220", "0"], ["513425234210", "\u6e14\u6d1e\u6751\u6c11\u59d4\u5458\u4f1a", "220", "0"], ["513425234211", "\u9646\u5b98\u6751\u6c11\u59d4\u5458\u4f1a", "220", "0"], ["513425234212", "\u9e7f\u89d2\u6751\u6c11\u59d4\u5458\u4f1a", "220", "0"]]
json_instruct
{"type": "array", "items": {"type": "array", "items": {"type": "string"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"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" : "Tango Down Stubby BGV-MK46K tactical grip Black", "ShortName" : "BGV-MK46K Black", "Description" : "Tango Down Stubby BGV-MK46K tactical grip. Short grip for use with weapons of close and extra close quarters combat. Ideally fits assault shotguns. Contains a compartment for batteries or SPTA."}
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#"}
Please provide a valid JSON object following this schema: {"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" : "Quirangay, Camalig, Albay, Bicol Region (Region V), PH", "locale" : "ph.bicol-region-region-v.albay.camalig.quirangay", "country_id" : 177, "country_reference" : 177, "country_name" : "Philippines", "region_id" : "2", "region_reference" : "5", "region_name" : "Bicol Region (Region V)", "province_id" : "5", "province_reference" : "5", "province_name" : "Albay", "city_id" : "304", "city_reference" : "74", "city_name" : "Camalig", "barangay_id" : "8400", "barangay_reference" : "1289", "barangay_name" : "Quirangay"}, "geometry" : {"type" : "MultiPolygon", "coordinates" : [[[[123.684669, 13.25406], [123.663322, 13.19957], [123.652168, 13.18644], [123.650467, 13.18659], [123.648666, 13.18646], [123.644882, 13.18751], [123.645302, 13.19039], [123.645317, 13.19263], [123.645462, 13.19482], [123.646317, 13.19684], [123.647003, 13.19793], [123.647133, 13.19888], [123.648712, 13.20038], [123.650772, 13.20165], [123.651817, 13.20274], [123.653809, 13.20453], [123.655273, 13.20573], [123.655663, 13.20682], [123.655777, 13.20887], [123.65641, 13.21125], [123.656937, 13.21363], [123.658409, 13.21553], [123.66024, 13.21888], [123.660789, 13.22046], [123.661858, 13.22235], [123.662621, 13.2237], [123.664429, 13.22556], [123.665192, 13.22717], [123.665848, 13.22885], [123.667389, 13.23005], [123.674103, 13.24873], [123.684669, 13.25406]]]]}}
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#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"id": {"type": "string"}, "article": {"type": "string"}, "questions": {"type": "string"}, "options": {"type": "object", "properties": {"model": {"type": "array", "items": {"type": "string"}}, "human": {"type": "array", "items": {"type": "string"}}}, "required": ["model", "human"]}, "answer": {"type": "object", "properties": {"model": {"type": "integer"}, "human": {"type": "integer"}}, "required": ["model", "human"]}}, "required": ["id", "article", "questions", "options", "answer"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : "1902", "article" : "Another thing an astronaut has to learn about is eating in space . Food is weightless , just as men are . Food for space has to be packed in special ways . Some of it goes into tubes that a man can squeeze into his mouth . Bite - sized cookies are packed in plastic . There is a good reason for covering each bite . The plastic keeps pieces of food from traveling in the spaceship . On the earth very small pieces of food would simply fall to the floor . But gravity does n ' t pull them to the floor when they are out of the plastic in a spaceship . They move here and there and can get into a man ' s eyes or into the spaceship ' s instruments . If any of the instruments is blocked , the astronauts may have trouble getting safely home . As astronauts travel on longer space trips , they must take time to sleep . An astronaut can fit himself to his seat with a kind of seat belt . Or , if he wants to , he can sleep in a sleeping bag which is fixed in place under his seat . But be careful he must put his hands under the belt when he goes to sleep . This is because he is really afraid that he might touch one of controls that is n ' t supposed to be touched until later .", "questions" : "In a spaceship , astronauts can", "options" : {"model" : ["not litter small things or it will make trouble .", "use their seat belts"], "human" : ["control the spaceship when they are sleeping .", "not litter small things or it will make trouble ."]}, "answer" : {"model" : 0, "human" : 1}}
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "article": {"type": "string"}, "questions": {"type": "string"}, "options": {"type": "object", "properties": {"model": {"type": "array", "items": {"type": "string"}}, "human": {"type": "array", "items": {"type": "string"}}}, "required": ["model", "human"]}, "answer": {"type": "object", "properties": {"model": {"type": "integer"}, "human": {"type": "integer"}}, "required": ["model", "human"]}}, "required": ["id", "article", "questions", "options", "answer"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"}
["eslint-config-oleander"]
json_instruct
{"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"id": {"type": "string"}, "dependencies": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "includedInParent": {"type": "boolean"}, "mtime": {"type": "integer"}}, "required": ["name", "includedInParent", "mtime"]}}, "generated": {"type": "object", "properties": {"js": {"type": "string"}}, "required": ["js"]}, "hash": {"type": "string"}, "cacheData": {"type": "object", "properties": {"env": {"type": "object", "properties": {}, "required": []}}, "required": ["env"]}}, "required": ["id", "dependencies", "generated", "hash", "cacheData"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : "assets/cup_too_full.png", "dependencies" : [{"name" : "/home/ahmed/Desktop/WWW/coffee-test/package.json", "includedInParent" : true, "mtime" : 1568833334684}], "generated" : {"js" : "module.exports = \"/6546fe8b38df594d170b085e2366d5ad.png\";"}, "hash" : "246764322a9e5c9b40f89440ebc3acc2", "cacheData" : {"env" : {}}}
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "dependencies": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "includedInParent": {"type": "boolean"}, "mtime": {"type": "integer"}}, "required": ["name", "includedInParent", "mtime"]}}, "generated": {"type": "object", "properties": {"js": {"type": "string"}}, "required": ["js"]}, "hash": {"type": "string"}, "cacheData": {"type": "object", "properties": {"env": {"type": "object", "properties": {}, "required": []}}, "required": ["env"]}}, "required": ["id", "dependencies", "generated", "hash", "cacheData"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "array", "items": {"type": "object", "properties": {"label": {"type": "string"}, "normalizedVertices": {"type": "array", "items": {"type": "object", "properties": {"x": {"type": "number"}, "y": {"type": "number"}}, "required": ["x", "y"]}}, "score": {"type": "number"}}, "required": ["label", "normalizedVertices", "score"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"label" : "Animal", "normalizedVertices" : [{"x" : 0.45535937, "y" : 0.37606713}, {"x" : 0.7415199, "y" : 0.37606713}, {"x" : 0.7415199, "y" : 0.52196383}, {"x" : 0.45535937, "y" : 0.52196383}], "score" : 0.5979825}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"label": {"type": "string"}, "normalizedVertices": {"type": "array", "items": {"type": "object", "properties": {"x": {"type": "number"}, "y": {"type": "number"}}, "required": ["x", "y"]}}, "score": {"type": "number"}}, "required": ["label", "normalizedVertices", "score"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"count" : 48532}
json_instruct
{"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"json.schemas": {"type": "array", "items": {"type": "object", "properties": {"fileMatch": {"type": "array", "items": {"type": "string"}}, "url": {"type": "string"}}, "required": ["fileMatch", "url"]}}, "editor.defaultFormatter": {"type": "string"}, "files.insertFinalNewline": {"type": "boolean"}}, "required": ["json.schemas", "editor.defaultFormatter", "files.insertFinalNewline"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"json.schemas" : [{"fileMatch" : ["**/console-extensions.json"], "url" : "../node_modules/@openshift-console/dynamic-plugin-sdk-webpack/schema/console-extensions.json"}], "editor.defaultFormatter" : "esbenp.prettier-vscode", "files.insertFinalNewline" : true}
json_instruct
{"type": "object", "properties": {"json.schemas": {"type": "array", "items": {"type": "object", "properties": {"fileMatch": {"type": "array", "items": {"type": "string"}}, "url": {"type": "string"}}, "required": ["fileMatch", "url"]}}, "editor.defaultFormatter": {"type": "string"}, "files.insertFinalNewline": {"type": "boolean"}}, "required": ["json.schemas", "editor.defaultFormatter", "files.insertFinalNewline"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"asset": {"type": "object", "properties": {"version": {"type": "string"}, "tilesetVersion": {"type": "string"}}, "required": ["version", "tilesetVersion"]}, "geometricError": {"type": "integer"}, "root": {"type": "object", "properties": {"boundingVolume": {"type": "object", "properties": {"sphere": {"type": "array", "items": {"type": "number"}}}, "required": ["sphere"]}, "geometricError": {"type": "integer"}, "content": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "children": {"type": "array", "items": {"type": "object", "properties": {"boundingVolume": {"type": "object", "properties": {"sphere": {"type": "array", "items": {"type": "number"}}}, "required": ["sphere"]}, "geometricError": {"type": "number"}, "content": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}}, "required": ["boundingVolume", "geometricError", "content"]}}}, "required": ["boundingVolume", "geometricError", "content", "children"]}}, "required": ["asset", "geometricError", "root"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"asset" : {"version" : "0.0", "tilesetVersion" : "1.2.3"}, "geometricError" : 1, "root" : {"boundingVolume" : {"sphere" : [6358690.753173649, -498908.0651319595, -24.67403057500963, 9.875597953796387]}, "geometricError" : 1, "content" : {"url" : "Tile_+004_+005_L21_0000320.b3dm"}, "children" : [{"boundingVolume" : {"sphere" : [6358690.737041283, -498908.0638662009, -24.674030511988306, 9.788326263427734]}, "geometricError" : 0.5, "content" : {"url" : "Tile_+004_+005_L22_00003200.b3dm"}}]}}
json_instruct
{"type": "object", "properties": {"asset": {"type": "object", "properties": {"version": {"type": "string"}, "tilesetVersion": {"type": "string"}}, "required": ["version", "tilesetVersion"]}, "geometricError": {"type": "integer"}, "root": {"type": "object", "properties": {"boundingVolume": {"type": "object", "properties": {"sphere": {"type": "array", "items": {"type": "number"}}}, "required": ["sphere"]}, "geometricError": {"type": "integer"}, "content": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "children": {"type": "array", "items": {"type": "object", "properties": {"boundingVolume": {"type": "object", "properties": {"sphere": {"type": "array", "items": {"type": "number"}}}, "required": ["sphere"]}, "geometricError": {"type": "number"}, "content": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}}, "required": ["boundingVolume", "geometricError", "content"]}}}, "required": ["boundingVolume", "geometricError", "content", "children"]}}, "required": ["asset", "geometricError", "root"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"address": {"type": "string"}, "cert_auth_type": {"type": "string"}, "cert_sign": {"type": "string"}, "cert_user_id": {"type": "string"}, "files": {"type": "object", "properties": {"data.json": {"type": "object", "properties": {"sha512": {"type": "string"}, "size": {"type": "integer"}}, "required": ["sha512", "size"]}}, "required": ["data.json"]}, "inner_path": {"type": "string"}, "modified": {"type": "integer"}, "signs": {"type": "object", "properties": {"1Hgcqe5CGZCfEfQLjzR4LTq1Wg2aRzArcC": {"type": "string"}}, "required": ["1Hgcqe5CGZCfEfQLjzR4LTq1Wg2aRzArcC"]}}, "required": ["address", "cert_auth_type", "cert_sign", "cert_user_id", "files", "inner_path", "modified", "signs"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"address" : "1BLogC9LN4oPDcruNz3qo1ysa133E9AGg8", "cert_auth_type" : "web", "cert_sign" : "HJBfgR9gOL+YrFk9SUr4goMGNjnSDBjmXwm+tZ0/gARjUwFubIrlTgIwXTJCBOXNxaUvf0j+57PninFugqch+nU=", "cert_user_id" : "auxillium@zeroid.bit", "files" : {"data.json" : {"sha512" : "bfc1bca0e0a7121e1b554e7c40ab3f1b439c8e6dd5f3d5681bfc6e2f9cc89b4b", "size" : 105}}, "inner_path" : "data/users/1Hgcqe5CGZCfEfQLjzR4LTq1Wg2aRzArcC/content.json", "modified" : 1489864529, "signs" : {"1Hgcqe5CGZCfEfQLjzR4LTq1Wg2aRzArcC" : "GyiBUXfKtaTeh7x+I/qXIOdXXTVztEnIOrQg6Q/bHe163fFiURBqpOYbzdarsl7Dus/xv9ZJqhjGS6GxQa9Hpcw="}}
json_instruct
{"type": "object", "properties": {"address": {"type": "string"}, "cert_auth_type": {"type": "string"}, "cert_sign": {"type": "string"}, "cert_user_id": {"type": "string"}, "files": {"type": "object", "properties": {"data.json": {"type": "object", "properties": {"sha512": {"type": "string"}, "size": {"type": "integer"}}, "required": ["sha512", "size"]}}, "required": ["data.json"]}, "inner_path": {"type": "string"}, "modified": {"type": "integer"}, "signs": {"type": "object", "properties": {"1Hgcqe5CGZCfEfQLjzR4LTq1Wg2aRzArcC": {"type": "string"}}, "required": ["1Hgcqe5CGZCfEfQLjzR4LTq1Wg2aRzArcC"]}}, "required": ["address", "cert_auth_type", "cert_sign", "cert_user_id", "files", "inner_path", "modified", "signs"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"name": {"type": "string"}, "command": {"type": "string"}, "locked": {"type": "boolean"}, "starred": {"type": "boolean"}}, "required": ["name", "command", "locked", "starred"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "nn", "command" : "print('cr0sis| ya wel obv ur telin thing wot stoppin of sleep come fukov')", "locked" : false, "starred" : false}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "command": {"type": "string"}, "locked": {"type": "boolean"}, "starred": {"type": "boolean"}}, "required": ["name", "command", "locked", "starred"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"id": {"type": "string"}, "text": {"type": "string"}}, "required": ["id", "text"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : "d1025-57", "text" : "NAEB RADIO NETWORK\nli; Gregory Hall\nUrbana, Illinois\nOFFERING* OFFERING!\nTo: All NAEB Radio Network Stations July 12, 1955\nFrom: Network Headquarters\nRe: REVIEW OF THE BRITISH WEEKLIES\nMay we again remind you that the BBC produces a quarter-hour REVIEW OF THE\nBRITISH WEEKLIES which may be of use to you in your international news service.\nMr. Seymour N. Siegel, Chairman of our International Relations Committee, informs\nus that the series will be made available to an additional number of stations.\nThe tapes will be sent out DIRECTLY FROM NEW YORK by the BBC.\nThe tapes will be mailed from New York on FRIDAY of each week, and they should\nbe used no later than the following TUESDAY.\nIf you are not already receiving this series and would like to receive it,\nplease complete and return the form below. Your order for this itfeekly series will\nbe forwarded to New York, and you will begin to receive the programs without delay.\n* -ft -ft -ft -ft -ft -ft -X- -ft -ft -ft -ft -ft -ft -X- -X- -ft -ft -ft -X- -ft -ft -X- -ft -ft -ft -X- -X- -ft -ft -X- -X- -X- -ft -ft -x- -x- -x- -x- -X- -ft -x-\nTo: The NAEB Radio Network\nPLEASE ARRANGE FOR RADIO STATION _ TO RECEIVE REVIEW OF THE BRITISH\nWEEKLIES FROM THE BBC.\n(signed)\"\nDO NOT NEGLECT TO '(position)\nFILL IN CALL LETTERS*\n(date J\" ' ;\n7/12/55-cr"}
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "text": {"type": "string"}}, "required": ["id", "text"], "$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" : "6101060012", "district_id" : "6101060", "name" : "TANJUNG KERACUT"}
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#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"jsgrid-theme.css": {"type": "string"}, "jsgrid-theme.min.css": {"type": "string"}, "jsgrid.css": {"type": "string"}, "jsgrid.js": {"type": "string"}, "jsgrid.min.css": {"type": "string"}, "jsgrid.min.js": {"type": "string"}}, "required": ["jsgrid-theme.css", "jsgrid-theme.min.css", "jsgrid.css", "jsgrid.js", "jsgrid.min.css", "jsgrid.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"jsgrid-theme.css" : "sha256-d5oeWjonbYcINJR5fsa02UzkP05+GlfrC+3G67EpQN8=", "jsgrid-theme.min.css" : "sha256-hRrBfTnqJqjuBaR4vcv0FZMMHkPh9UNUCX5aHC3f/uc=", "jsgrid.css" : "sha256-1uC7+UG4UgCBE+YPRqO/lHD+YSpDKE09RLi2NssTB5A=", "jsgrid.js" : "sha256-qDJvgCZyYuZWhGxYTYPPo7NvDaYxlNiIwqunWtMiFgQ=", "jsgrid.min.css" : "sha256-DITM6WEVdE07C4psgNhDMRTIyEOcdZXhxorXfOAlGE0=", "jsgrid.min.js" : "sha256-+5vegOksrCz91HMqdyitnhw7h4IxsWg1ITreqcrepiQ="}
json_instruct
{"type": "object", "properties": {"jsgrid-theme.css": {"type": "string"}, "jsgrid-theme.min.css": {"type": "string"}, "jsgrid.css": {"type": "string"}, "jsgrid.js": {"type": "string"}, "jsgrid.min.css": {"type": "string"}, "jsgrid.min.js": {"type": "string"}}, "required": ["jsgrid-theme.css", "jsgrid-theme.min.css", "jsgrid.css", "jsgrid.js", "jsgrid.min.css", "jsgrid.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"IsRecentlyVerified": {"type": "boolean"}, "ID": {"type": "integer"}, "UUID": {"type": "string"}, "DataProviderID": {"type": "integer"}, "DataProvidersReference": {"type": "string"}, "OperatorID": {"type": "integer"}, "UsageTypeID": {"type": "integer"}, "AddressInfo": {"type": "object", "properties": {"ID": {"type": "integer"}, "Title": {"type": "string"}, "AddressLine1": {"type": "string"}, "Town": {"type": "string"}, "StateOrProvince": {"type": "string"}, "Postcode": {"type": "string"}, "CountryID": {"type": "integer"}, "Latitude": {"type": "number"}, "Longitude": {"type": "number"}, "ContactTelephone1": {"type": "string"}, "RelatedURL": {"type": "string"}, "DistanceUnit": {"type": "integer"}}, "required": ["ID", "Title", "AddressLine1", "Town", "StateOrProvince", "Postcode", "CountryID", "Latitude", "Longitude", "ContactTelephone1", "RelatedURL", "DistanceUnit"]}, "Connections": {"type": "array", "items": {"type": "object", "properties": {"ID": {"type": "integer"}, "ConnectionTypeID": {"type": "integer"}, "Reference": {"type": "string"}, "LevelID": {"type": "integer"}}, "required": ["ID", "ConnectionTypeID", "Reference", "LevelID"]}}, "NumberOfPoints": {"type": "integer"}, "StatusTypeID": {"type": "integer"}, "DateLastStatusUpdate": {"type": "string"}, "DataQualityLevel": {"type": "integer"}, "DateCreated": {"type": "string"}, "SubmissionStatusTypeID": {"type": "integer"}}, "required": ["IsRecentlyVerified", "ID", "UUID", "DataProviderID", "DataProvidersReference", "OperatorID", "UsageTypeID", "AddressInfo", "Connections", "NumberOfPoints", "StatusTypeID", "DateLastStatusUpdate", "DataQualityLevel", "DateCreated", "SubmissionStatusTypeID"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"IsRecentlyVerified" : false, "ID" : 9792, "UUID" : "CE50E9E4-2971-4EB5-B84D-25B5E38727CF", "DataProviderID" : 15, "DataProvidersReference" : "16398", "OperatorID" : 1, "UsageTypeID" : 1, "AddressInfo" : {"ID" : 9689, "Title" : "1337 Lower Campus RD", "AddressLine1" : "1337 Lower Campus RD", "Town" : "Honolulu", "StateOrProvince" : "HI", "Postcode" : "96822", "CountryID" : 2, "Latitude" : 21.29555, "Longitude" : -157.81782, "ContactTelephone1" : "808-956-5389", "RelatedURL" : "http://carstations.com/16398", "DistanceUnit" : 0}, "Connections" : [{"ID" : 7598, "ConnectionTypeID" : 1, "Reference" : "J1772", "LevelID" : 2}], "NumberOfPoints" : 4, "StatusTypeID" : 0, "DateLastStatusUpdate" : "2017-11-04T14:03:00Z", "DataQualityLevel" : 2, "DateCreated" : "2012-04-16T15:47:00Z", "SubmissionStatusTypeID" : 100}
json_instruct
{"type": "object", "properties": {"IsRecentlyVerified": {"type": "boolean"}, "ID": {"type": "integer"}, "UUID": {"type": "string"}, "DataProviderID": {"type": "integer"}, "DataProvidersReference": {"type": "string"}, "OperatorID": {"type": "integer"}, "UsageTypeID": {"type": "integer"}, "AddressInfo": {"type": "object", "properties": {"ID": {"type": "integer"}, "Title": {"type": "string"}, "AddressLine1": {"type": "string"}, "Town": {"type": "string"}, "StateOrProvince": {"type": "string"}, "Postcode": {"type": "string"}, "CountryID": {"type": "integer"}, "Latitude": {"type": "number"}, "Longitude": {"type": "number"}, "ContactTelephone1": {"type": "string"}, "RelatedURL": {"type": "string"}, "DistanceUnit": {"type": "integer"}}, "required": ["ID", "Title", "AddressLine1", "Town", "StateOrProvince", "Postcode", "CountryID", "Latitude", "Longitude", "ContactTelephone1", "RelatedURL", "DistanceUnit"]}, "Connections": {"type": "array", "items": {"type": "object", "properties": {"ID": {"type": "integer"}, "ConnectionTypeID": {"type": "integer"}, "Reference": {"type": "string"}, "LevelID": {"type": "integer"}}, "required": ["ID", "ConnectionTypeID", "Reference", "LevelID"]}}, "NumberOfPoints": {"type": "integer"}, "StatusTypeID": {"type": "integer"}, "DateLastStatusUpdate": {"type": "string"}, "DataQualityLevel": {"type": "integer"}, "DateCreated": {"type": "string"}, "SubmissionStatusTypeID": {"type": "integer"}}, "required": ["IsRecentlyVerified", "ID", "UUID", "DataProviderID", "DataProvidersReference", "OperatorID", "UsageTypeID", "AddressInfo", "Connections", "NumberOfPoints", "StatusTypeID", "DateLastStatusUpdate", "DataQualityLevel", "DateCreated", "SubmissionStatusTypeID"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {"type": "integer"}}, "productReviews": {"type": "array", "items": {"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" : 30950, "cartId" : "e3ad79c5-2218-4eb8-8ef6-3b1cd19dd81c", "preferredProducts" : [2639, 3422, 2082, 2152, 1376, 368, 4052, 1306, 1318, 2027], "productReviews" : [{"productId" : 331, "reviewText" : "The box this comes in is 5 kilometer by 6 yard and weights 18 gram.", "reviewDate" : "2016-11-27T11:01:20.1421555+02:00"}, {"productId" : 3407, "reviewText" : "one of my hobbies is mushroom cultivation. and when i'm cultivating mushrooms this works great.", "reviewDate" : "2017-01-05T11:26:57.0503062+02: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#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"from": {"type": "string"}, "name": {"type": "string"}, "num": {"type": "integer"}, "comps": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "place": {"type": "string"}, "date": {"type": "string"}, "highest": {"type": "integer"}, "QP": {"type": "integer"}, "RP": {"type": "integer"}, "matches": {"type": "integer"}}, "required": ["name", "place", "date", "highest", "QP", "RP", "matches"]}}}, "required": ["from", "name", "num", "comps"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"from" : " , ", "name" : " Lightning Bots", "num" : 6083, "comps" : [{"name" : "OR FTC Qualifying Tournament", "place" : "Evergreen Space Museum", "date" : "16-Feb-13", "highest" : 147, "QP" : 6, "RP" : 162, "matches" : 5}, {"name" : "OR FTC Qualifying Tournament", "place" : "Oregon Museum of Science and Industry", "date" : "24-Feb-13", "highest" : 160, "QP" : 6, "RP" : 363, "matches" : 5}]}
json_instruct
{"type": "object", "properties": {"from": {"type": "string"}, "name": {"type": "string"}, "num": {"type": "integer"}, "comps": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "place": {"type": "string"}, "date": {"type": "string"}, "highest": {"type": "integer"}, "QP": {"type": "integer"}, "RP": {"type": "integer"}, "matches": {"type": "integer"}}, "required": ["name", "place", "date", "highest", "QP", "RP", "matches"]}}}, "required": ["from", "name", "num", "comps"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"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" : "1106031007", "district_id" : "1106031", "name" : "TOWEREN TOA"}
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#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"display-name": {"type": "string"}, "package-name": {"type": "string"}, "is-portable": {"type": "boolean"}, "portable": {"type": "object", "properties": {"display-name": {"type": "string"}, "package-name": {"type": "string"}, "latest-version": {"type": "string"}, "1.8.1": {"type": "object", "properties": {"url": {"type": "string"}, "file-type": {"type": "string"}, "bin": {"type": "array", "items": {"type": "string"}}, "shortcuts": {"type": "array", "items": {"type": "object", "properties": {"shortcut-name": {"type": "string"}, "file-name": {"type": "string"}}, "required": ["shortcut-name", "file-name"]}}, "persist": {"type": "string"}}, "required": ["url", "file-type", "bin", "shortcuts", "persist"]}, "auto-update": {"type": "object", "properties": {"url": {"type": "string"}, "version-check": {"type": "object", "properties": {"webpage": {"type": "string"}}, "required": ["webpage"]}}, "required": ["url", "version-check"]}}, "required": ["display-name", "package-name", "latest-version", "1.8.1", "auto-update"]}}, "required": ["display-name", "package-name", "is-portable", "portable"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"display-name" : "", "package-name" : "ghostwriter", "is-portable" : true, "portable" : {"display-name" : "", "package-name" : "ghostwriter", "latest-version" : "1.8.1", "1.8.1" : {"url" : "https://github.com/michelolvera/vs-ghostwriter/releases/download/1.8.1/ghostwriter_x64_portable.7z", "file-type" : ".7z", "bin" : ["ghostwriter.exe"], "shortcuts" : [{"shortcut-name" : "Ghostwriter", "file-name" : "ghostwriter.exe"}], "persist" : "data"}, "auto-update" : {"url" : "https://github.com/michelolvera/vs-ghostwriter/releases/download/$version/ghostwriter_x64_portable.7z", "version-check" : {"webpage" : "https://wereturtle.github.io/ghostwriter/"}}}}
json_instruct
{"type": "object", "properties": {"display-name": {"type": "string"}, "package-name": {"type": "string"}, "is-portable": {"type": "boolean"}, "portable": {"type": "object", "properties": {"display-name": {"type": "string"}, "package-name": {"type": "string"}, "latest-version": {"type": "string"}, "1.8.1": {"type": "object", "properties": {"url": {"type": "string"}, "file-type": {"type": "string"}, "bin": {"type": "array", "items": {"type": "string"}}, "shortcuts": {"type": "array", "items": {"type": "object", "properties": {"shortcut-name": {"type": "string"}, "file-name": {"type": "string"}}, "required": ["shortcut-name", "file-name"]}}, "persist": {"type": "string"}}, "required": ["url", "file-type", "bin", "shortcuts", "persist"]}, "auto-update": {"type": "object", "properties": {"url": {"type": "string"}, "version-check": {"type": "object", "properties": {"webpage": {"type": "string"}}, "required": ["webpage"]}}, "required": ["url", "version-check"]}}, "required": ["display-name", "package-name", "latest-version", "1.8.1", "auto-update"]}}, "required": ["display-name", "package-name", "is-portable", "portable"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "array", "items": {"type": "object", "properties": {"year": {"type": "integer"}, "sex": {"type": "string"}, "n": {"type": "integer"}, "prop": {"type": "number"}}, "required": ["year", "sex", "n", "prop"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"year" : 2005, "sex" : "F", "n" : 12, "prop" : 5.92e-06}, {"year" : 2006, "sex" : "F", "n" : 13, "prop" : 6.22e-06}, {"year" : 2007, "sex" : "F", "n" : 16, "prop" : 7.57e-06}, {"year" : 2008, "sex" : "F", "n" : 10, "prop" : 4.81e-06}, {"year" : 2009, "sex" : "F", "n" : 15, "prop" : 7.41e-06}, {"year" : 2010, "sex" : "F", "n" : 10, "prop" : 5.11e-06}, {"year" : 2011, "sex" : "F", "n" : 5, "prop" : 2.58e-06}, {"year" : 2012, "sex" : "F", "n" : 6, "prop" : 3.1e-06}, {"year" : 2013, "sex" : "F", "n" : 10, "prop" : 5.2e-06}, {"year" : 2014, "sex" : "F", "n" : 9, "prop" : 4.61e-06}, {"year" : 2015, "sex" : "F", "n" : 9, "prop" : 4.63e-06}, {"year" : 2016, "sex" : "F", "n" : 5, "prop" : 2.59e-06}, {"year" : 2017, "sex" : "F", "n" : 11, "prop" : 5.87e-06}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"year": {"type": "integer"}, "sex": {"type": "string"}, "n": {"type": "integer"}, "prop": {"type": "number"}}, "required": ["year", "sex", "n", "prop"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"id": {"type": "integer"}, "info": {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "additionalInfo": {"type": "string"}, "format": {"type": "string"}, "category": {"type": "string"}, "createdAt": {"type": "string"}, "updatedAt": {"type": "string"}, "license": {"type": "string"}, "author": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "paypalEmail": {"type": "string"}}, "required": ["id", "name", "paypalEmail"]}}, "required": ["name", "description", "additionalInfo", "format", "category", "createdAt", "updatedAt", "license", "author"]}, "stats": {"type": "object", "properties": {"installs": {"type": "object", "properties": {"total": {"type": "integer"}, "weekly": {"type": "integer"}}, "required": ["total", "weekly"]}}, "required": ["installs"]}, "screenshots": {"type": "object", "properties": {"main": {"type": "object", "properties": {"name": {"type": "string"}, "archived": {"type": "boolean"}}, "required": ["name", "archived"]}}, "required": ["main"]}, "discussions": {"type": "object", "properties": {"stats": {"type": "object", "properties": {"discussionsCount": {"type": "integer"}, "commentsCount": {"type": "integer"}}, "required": ["discussionsCount", "commentsCount"]}, "data": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "title": {"type": "string"}, "createdAt": {"type": "string"}, "author": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}}, "required": ["id", "name"]}}, "required": ["id", "title", "createdAt", "author"]}}}, "required": ["stats", "data"]}, "style": {"type": "object", "properties": {"css": {"type": "string"}}, "required": ["css"]}}, "required": ["id", "info", "stats", "screenshots", "discussions", "style"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : 153410, "info" : {"name" : "Ninja Whatsapp (Blurry Images and Chats)", "description" : "Is your whatsapp full of silly images and it's difficult to chat in public? With this style now you can keep your conversations and images hidden. Works with all styles!*\r\n\r\nUpdated @ 26/09/2019", "additionalInfo" : "*Maybe not all", "format" : "uso", "category" : "whatsapp", "createdAt" : "2017-12-27T23:46:11.000Z", "updatedAt" : "2019-09-27T00:57:04.000Z", "license" : "CC0-1.0", "author" : {"id" : 545095, "name" : "Feco Ramirez", "paypalEmail" : "fecoramirez2@gmail.com"}}, "stats" : {"installs" : {"total" : 346, "weekly" : 2}}, "screenshots" : {"main" : {"name" : "153410_after.jpeg", "archived" : true}}, "discussions" : {"stats" : {"discussionsCount" : 2, "commentsCount" : 0}, "data" : [{"id" : 63277, "title" : "GENIAL", "createdAt" : "2018-01-17T17:08:41.000Z", "author" : {"id" : 585031, "name" : "Carlos Jmt Outdoors"}}, {"id" : 64012, "title" : "Oculta todas las imagenes!!!", "createdAt" : "2018-02-13T19:08:58.000Z", "author" : {"id" : 585031, "name" : "Carlos Jmt Outdoors"}}]}, "style" : {"css" : "@-moz-document domain(\"web.whatsapp.com\") {\r\n._3mdDl, ._1Bw-K, ._2UaNq, .grK2C {\r\n opacity:.5;\r\n transition:.3s;\r\n filter: blur(5px) grayscale(80%); \r\n}\r\n\r\n._3mdDl:hover, ._1Bw-K:hover, ._2UaNq:hover, .grK2C:hover {\r\n opacity:1;\r\n filter: blur(0px) grayscale(0%);\r\n}\r\n}"}}
json_instruct
{"type": "object", "properties": {"id": {"type": "integer"}, "info": {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "additionalInfo": {"type": "string"}, "format": {"type": "string"}, "category": {"type": "string"}, "createdAt": {"type": "string"}, "updatedAt": {"type": "string"}, "license": {"type": "string"}, "author": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "paypalEmail": {"type": "string"}}, "required": ["id", "name", "paypalEmail"]}}, "required": ["name", "description", "additionalInfo", "format", "category", "createdAt", "updatedAt", "license", "author"]}, "stats": {"type": "object", "properties": {"installs": {"type": "object", "properties": {"total": {"type": "integer"}, "weekly": {"type": "integer"}}, "required": ["total", "weekly"]}}, "required": ["installs"]}, "screenshots": {"type": "object", "properties": {"main": {"type": "object", "properties": {"name": {"type": "string"}, "archived": {"type": "boolean"}}, "required": ["name", "archived"]}}, "required": ["main"]}, "discussions": {"type": "object", "properties": {"stats": {"type": "object", "properties": {"discussionsCount": {"type": "integer"}, "commentsCount": {"type": "integer"}}, "required": ["discussionsCount", "commentsCount"]}, "data": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "title": {"type": "string"}, "createdAt": {"type": "string"}, "author": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}}, "required": ["id", "name"]}}, "required": ["id", "title", "createdAt", "author"]}}}, "required": ["stats", "data"]}, "style": {"type": "object", "properties": {"css": {"type": "string"}}, "required": ["css"]}}, "required": ["id", "info", "stats", "screenshots", "discussions", "style"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "build": {"type": "string"}}, "required": ["test", "build"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"grunt": {"type": "string"}, "grunt-contrib-concat": {"type": "string"}, "grunt-contrib-jshint": {"type": "string"}, "grunt-contrib-uglify": {"type": "string"}, "live-server": {"type": "string"}}, "required": ["grunt", "grunt-contrib-concat", "grunt-contrib-jshint", "grunt-contrib-uglify", "live-server"]}}, "required": ["name", "version", "description", "main", "scripts", "repository", "keywords", "author", "license", "bugs", "homepage", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "crsa", "version" : "1.2.0", "description" : "A tool allowing usage of container-relative units similar to those relative to the viewport", "main" : "./umd/crsa.js", "scripts" : {"test" : "node test.js", "build" : "grunt"}, "repository" : {"type" : "git", "url" : "git+https://github.com/wwtchrsin/CRSA.git"}, "keywords" : ["css", "container-relative", "styles", "units", "vmin", "vmax"], "author" : "Vladislav Chursin", "license" : "MIT", "bugs" : {"url" : "https://github.com/wwtchrsin/CRSA/issues"}, "homepage" : "https://github.com/wwtchrsin/CRSA#readme", "devDependencies" : {"grunt" : "^1.3.0", "grunt-contrib-concat" : "^1.0.1", "grunt-contrib-jshint" : "^3.0.0", "grunt-contrib-uglify" : "^5.0.1", "live-server" : "^1.2.1"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "build": {"type": "string"}}, "required": ["test", "build"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"grunt": {"type": "string"}, "grunt-contrib-concat": {"type": "string"}, "grunt-contrib-jshint": {"type": "string"}, "grunt-contrib-uglify": {"type": "string"}, "live-server": {"type": "string"}}, "required": ["grunt", "grunt-contrib-concat", "grunt-contrib-jshint", "grunt-contrib-uglify", "live-server"]}}, "required": ["name", "version", "description", "main", "scripts", "repository", "keywords", "author", "license", "bugs", "homepage", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"browsers": {"type": "array", "items": {"type": "object", "properties": {"browser": {"type": "string"}, "os": {"type": "string"}, "versions": {"type": "array", "items": {"type": "string"}}}, "required": ["browser", "os", "versions"]}}, "run_settings": {"type": "object", "properties": {"cypress_config_file": {"type": "string"}, "project_name": {"type": "string"}, "exclude": {"type": "array", "items": {}}, "parallels": {"type": "string"}, "npm_dependencies": {"type": "object", "properties": {"@vue/cli-plugin-babel": {"type": "string"}, "cypress": {"type": "string"}}, "required": ["@vue/cli-plugin-babel", "cypress"]}, "package_config_options": {"type": "object", "properties": {}, "required": []}, "headless": {"type": "boolean"}}, "required": ["cypress_config_file", "project_name", "exclude", "parallels", "npm_dependencies", "package_config_options", "headless"]}, "connection_settings": {"type": "object", "properties": {"local": {"type": "boolean"}, "local_identifier": {"type": "null"}, "local_mode": {"type": "null"}, "local_config_file": {"type": "null"}}, "required": ["local", "local_identifier", "local_mode", "local_config_file"]}, "disable_usage_reporting": {"type": "boolean"}}, "required": ["browsers", "run_settings", "connection_settings", "disable_usage_reporting"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"browsers" : [{"browser" : "chrome", "os" : "Windows 10", "versions" : ["latest", "latest-1"]}, {"browser" : "firefox", "os" : "Windows 10", "versions" : ["latest", "latest-1"]}, {"browser" : "edge", "os" : "Windows 10", "versions" : ["latest", "latest-1"]}, {"browser" : "chrome", "os" : "OS X Big Sur", "versions" : ["latest", "latest-1"]}, {"browser" : "firefox", "os" : "OS X Big Sur", "versions" : ["latest", "latest-1"]}], "run_settings" : {"cypress_config_file" : "cypress.nightly.json", "project_name" : "threat-dragon", "exclude" : [], "parallels" : "5", "npm_dependencies" : {"@vue/cli-plugin-babel" : "~4.5.0", "cypress" : "^7.3.0"}, "package_config_options" : {}, "headless" : true}, "connection_settings" : {"local" : false, "local_identifier" : null, "local_mode" : null, "local_config_file" : null}, "disable_usage_reporting" : false}
json_instruct
{"type": "object", "properties": {"browsers": {"type": "array", "items": {"type": "object", "properties": {"browser": {"type": "string"}, "os": {"type": "string"}, "versions": {"type": "array", "items": {"type": "string"}}}, "required": ["browser", "os", "versions"]}}, "run_settings": {"type": "object", "properties": {"cypress_config_file": {"type": "string"}, "project_name": {"type": "string"}, "exclude": {"type": "array", "items": {}}, "parallels": {"type": "string"}, "npm_dependencies": {"type": "object", "properties": {"@vue/cli-plugin-babel": {"type": "string"}, "cypress": {"type": "string"}}, "required": ["@vue/cli-plugin-babel", "cypress"]}, "package_config_options": {"type": "object", "properties": {}, "required": []}, "headless": {"type": "boolean"}}, "required": ["cypress_config_file", "project_name", "exclude", "parallels", "npm_dependencies", "package_config_options", "headless"]}, "connection_settings": {"type": "object", "properties": {"local": {"type": "boolean"}, "local_identifier": {"type": "null"}, "local_mode": {"type": "null"}, "local_config_file": {"type": "null"}}, "required": ["local", "local_identifier", "local_mode", "local_config_file"]}, "disable_usage_reporting": {"type": "boolean"}}, "required": ["browsers", "run_settings", "connection_settings", "disable_usage_reporting"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"hash": {"type": "string"}, "browserHash": {"type": "string"}, "optimized": {"type": "object", "properties": {}, "required": []}}, "required": ["hash", "browserHash", "optimized"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"hash" : "be68f56b", "browserHash" : "0f8967b2", "optimized" : {}}
json_instruct
{"type": "object", "properties": {"hash": {"type": "string"}, "browserHash": {"type": "string"}, "optimized": {"type": "object", "properties": {}, "required": []}}, "required": ["hash", "browserHash", "optimized"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "array", "items": {"type": "object", "properties": {"errors": {"type": "array", "items": {}}, "file": {"type": "string"}, "name": {"type": "string"}}, "required": ["errors", "file", "name"]}}}, "required": ["contract", "tool", "start", "end", "duration", "analysis"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"contract" : "0xe9c48b34e2498797b7f70d9fb5875805dd6bc8b4", "tool" : "osiris", "start" : 1564619605.3199055, "end" : 1564619732.4587173, "duration" : 127.13881182670593, "analysis" : [{"errors" : [], "file" : "/unique_chucks/23/0xe9c48b34e2498797b7f70d9fb5875805dd6bc8b4.sol", "name" : "Exchange"}, {"errors" : [], "file" : "/unique_chucks/23/0xe9c48b34e2498797b7f70d9fb5875805dd6bc8b4.sol", "name" : "SafeMath"}]}
json_instruct
{"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "array", "items": {"type": "object", "properties": {"errors": {"type": "array", "items": {}}, "file": {"type": "string"}, "name": {"type": "string"}}, "required": ["errors", "file", "name"]}}}, "required": ["contract", "tool", "start", "end", "duration", "analysis"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"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" : ["Place the black olives, green olives, artichoke hearts with their juice, and onion into a food processor. Pour in the vinegar and olive oil, and season with garlic, celery seed, oregano, basil and black pepper. Cover, and process until finely chopped. Use as a condiment on sandwiches, or a dip for crackers. Refrigerate leftovers."], "ingredients" : ["1 (6 ounce) can black olives, drained", "1 (5 ounce) jar pitted green olives, rinsed and drained", "1 (6.5 ounce) jar marinated artichoke hearts, undrained", "1 small red onion, chopped", "1/4 cup red wine vinegar", "1/2 cup olive oil", "1 teaspoon dried minced garlic", "1/2 teaspoon celery seed", "1 teaspoon dried oregano", "1 teaspoon dried basil", "3/4 teaspoon black pepper"], "language" : "en-US", "source" : "allrecipes.com", "tags" : [], "title" : "Olive Salad for Muffalettas", "url" : "http://allrecipes.com/recipe/75819/olive-salad-for-muffalettas/"}
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#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"profiles": {"type": "object", "properties": {"default": {"type": "object", "properties": {"token": {"type": "object", "properties": {"access_token": {"type": "string"}, "refresh_token": {"type": "string"}, "token_type": {"type": "string"}, "expires_in": {"type": "integer"}, "expires_at": {"type": "string"}}, "required": ["access_token", "refresh_token", "token_type", "expires_in", "expires_at"]}, "vendor_id": {"type": "string"}, "aws_profile": {"type": "string"}}, "required": ["token", "vendor_id", "aws_profile"]}}, "required": ["default"]}}, "required": ["profiles"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"profiles" : {"default" : {"token" : {"access_token" : "Atza|IwEBIPnnGgbrsarK3PQ8VE_hKhWLWnkpxu8LFCFOxJHWVL06qZDSx_2kjhDGbdBnoJibI1OI8ukqVJ75liTCef0owxBKvTsyWsh9i43X7KKEdNE9W97hhgWyzNI9_7AexOZujIdsynZs8YPQwiHFYaRy7k4DiBkCvVXD1d4jYuXXu2h1eYL_uLmTIt40nkiRUcBKCWf5TjV3B5ZAsF4a-4trYbphxL9rYzqSKSU-n8PgQFJh1jHRUr0YZHMIKrm9MqfCoA8MIsWxp60X1HHOIz5zrpNCMTEHf435bzz-XA5glEUHALq0TZhb9SlqOwSzQYe6eWF-4np-6QitdznkakkIoe4ViWg8Wh-ZJM80IbxkD2Ysjl2XUWmKwFBte-Ktrx33_xiGfHlTUSc7-_J9uj59Cch6R8wr8HjIHJ-RdMN2cj3b7Lus_7METtI7qpgLiDfSmAkjySZSVzBWS4xUiNogvp9QnWD4OS0gMdXJB28OatZ2X5oHi9jw_7jGg79SX7vscfGP1zSZu5Bte9ocGhziRAQ887OmxRAVzzWKpo3KoCzGwGBgulye-tok6lWf4oePUga1gaTqh2lP0wmY7boApMAeXPBWiSc72-JUivPKuQHuS1exNvXLg4A1OUy7R45QOfw0nAjdbMOQKIWAkD75-8csTi_L67nUr3XlNfsoOHs9Jg", "refresh_token" : "Atzr|IwEBILHAoYgsSaGAKy-Zi0mGy_h0678zWARGwzpxmH6DErPzuPInAQWHVQwMNkLQpkyZvFT8ZlBHjGW9Ij8rR598IhZJ_MmjmVYQZkB5m4_81TtWyja4n3DfnhZ62PUKbkzTThHZPFzURavMtwTj0rcvnHiHCHJ3IjzlwUp-lQpXu2S0RWxDL9dEMoKTGZ-Exe5VRzidRh7lwFXyC5f1HxLui6fN_BrPgYPIwFw5kw_V2Nb0jxhTEQ_UDc5wOipjUaOwLPyhiFfgxc_2r5LKB3j3dVCO24brfMPNfLdYbTeSUfJ_6AxXiPsztLJyQStw7d94f0Vdg_JNuDNGY4wcYvrS4VSKoN3LNIfiWoTDl5e-fJcQX6exf3OOkYRohF053bOd7eQ6roGmVSKRNfbk0OGQNtiHo4J_g7Ms2ATEdrtVtqZSZ1ld9WB4zzlNaivhfxpzn50gFMpHwVmaiiYg5BFf8clHhK_hunKrxycgbaCkh9D7SGcxhfqV_TGfuizs3I_hfk7LYrPtGnLHS1CxTT_rGjphtIe_5lZ94N_G4Q9cPeYnIvNRRqbJeQKExQSCPtdV5WdwQNRjEF2ONxsGi4Hu78MuOQNXvoMBguRdgFG_MWiETmCxaFRalD0qwxuPRZfKJPt7YB5v29wGlfU25STZTzhxLE6RSik8nqKbrWAxInnExQ", "token_type" : "bearer", "expires_in" : 3600, "expires_at" : "2019-11-23T21:58:55.188Z"}, "vendor_id" : "M3PPTHP8B7R6XB", "aws_profile" : "ask_cli_default"}}}
json_instruct
{"type": "object", "properties": {"profiles": {"type": "object", "properties": {"default": {"type": "object", "properties": {"token": {"type": "object", "properties": {"access_token": {"type": "string"}, "refresh_token": {"type": "string"}, "token_type": {"type": "string"}, "expires_in": {"type": "integer"}, "expires_at": {"type": "string"}}, "required": ["access_token", "refresh_token", "token_type", "expires_in", "expires_at"]}, "vendor_id": {"type": "string"}, "aws_profile": {"type": "string"}}, "required": ["token", "vendor_id", "aws_profile"]}}, "required": ["default"]}}, "required": ["profiles"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {}}, "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" : 86420, "cartId" : "4352b9d9-0a08-4c5e-a005-699e2d27a19d", "preferredProducts" : [], "productReviews" : [{"productId" : 4896, "reviewText" : "My baboon loves to play with it.", "reviewDate" : "2016-08-24T07:27:02.49737+03:00"}, {"productId" : 534, "reviewText" : "one of my hobbies is theater. and when i'm acting this works great.", "reviewDate" : "2018-08-16T05:14:53.5403111+03:00"}, {"productId" : 258, "reviewText" : "I saw one of these in Nauru and I bought one.", "reviewDate" : "2016-09-23T18:17:36.9698172+03:00"}, {"productId" : 3576, "reviewText" : "The box this comes in is 4 mile by 5 inch and weights 19 megaton!", "reviewDate" : "2019-11-04T20:04:46.8783417+02:00"}]}
json_instruct
{"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {}}, "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#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"body": {"type": "string"}, "next": {"type": "string"}}, "required": ["body", "next"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"body" : "IT WILL BE HARD TO SAY WHAT A CONFUSED IDEA IS.", "next" : "https://raw.githubusercontent.com/CAPSELOCKE/CAPSELOCKE/master/tweets/6865.json"}
json_instruct
{"type": "object", "properties": {"body": {"type": "string"}, "next": {"type": "string"}}, "required": ["body", "next"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "array", "items": {"type": "object", "properties": {"namaKab": {"type": "string"}, "originalFilename": {"type": "string"}, "namaPartai": {"type": "string"}, "id": {"type": "integer"}, "noUrut": {"type": "integer"}, "nama": {"type": "string"}, "stringJenisKelamin": {"type": "string"}}, "required": ["namaKab", "originalFilename", "namaPartai", "id", "noUrut", "nama", "stringJenisKelamin"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"namaKab" : "ACEH BESAR", "originalFilename" : "DSC_1042.JPG", "namaPartai" : "Partai Hati Nurani Rakyat", "id" : 297298, "noUrut" : 1, "nama" : "HENDRA HERDIAN", "stringJenisKelamin" : "Laki-Laki"}, {"namaKab" : "KOTA BANDA ACEH", "originalFilename" : "img011.jpg", "namaPartai" : "Partai Hati Nurani Rakyat", "id" : 298540, "noUrut" : 2, "nama" : "MURSAL", "stringJenisKelamin" : "Laki-Laki"}, {"namaKab" : "ACEH BESAR", "originalFilename" : "FOTO 3X4.JPG", "namaPartai" : "Partai Hati Nurani Rakyat", "id" : 246709, "noUrut" : 3, "nama" : "FIRA SANIAH", "stringJenisKelamin" : "Perempuan"}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"namaKab": {"type": "string"}, "originalFilename": {"type": "string"}, "namaPartai": {"type": "string"}, "id": {"type": "integer"}, "noUrut": {"type": "integer"}, "nama": {"type": "string"}, "stringJenisKelamin": {"type": "string"}}, "required": ["namaKab", "originalFilename", "namaPartai", "id", "noUrut", "nama", "stringJenisKelamin"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "scripts": {"type": "object", "properties": {"docs": {"type": "string"}, "lint": {"type": "string"}, "prettier-format": {"type": "string"}, "build:helper": {"type": "string"}, "build:policyManager": {"type": "string"}, "build:prereqManager": {"type": "string"}, "build:metricsManager": {"type": "string"}, "build:complianceGenerator": {"type": "string"}, "build": {"type": "string"}, "test": {"type": "string"}}, "required": ["docs", "lint", "prettier-format", "build:helper", "build:policyManager", "build:prereqManager", "build:metricsManager", "build:complianceGenerator", "build", "test"]}, "author": {"type": "string"}, "license": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"@typescript-eslint/eslint-plugin": {"type": "string"}, "@typescript-eslint/parser": {"type": "string"}, "eslint": {"type": "string"}, "eslint-config-prettier": {"type": "string"}, "eslint-plugin-prettier": {"type": "string"}, "prettier": {"type": "string"}, "typedoc": {"type": "string"}, "typedoc-plugin-no-inherit": {"type": "string"}, "typescript": {"type": "string"}}, "required": ["@typescript-eslint/eslint-plugin", "@typescript-eslint/parser", "eslint", "eslint-config-prettier", "eslint-plugin-prettier", "prettier", "typedoc", "typedoc-plugin-no-inherit", "typescript"]}}, "required": ["name", "version", "description", "scripts", "author", "license", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "aws-fms-automations", "version" : "2.0.0", "description" : "AWS Firewall Manager Automations for AWS Organizations", "scripts" : {"docs" : "./node_modules/typedoc/bin/typedoc --out docs --name \"AWS Firewall Manager Automations for AWS Organizations\"", "lint" : "./node_modules/eslint/bin/eslint.js . --ext .ts", "prettier-format" : "./node_modules/prettier/bin-prettier.js --config .prettierrc.yml '**/*.ts' --write", "build:helper" : "cd source/services/helper && npm run build:all", "build:policyManager" : "cd source/services/policyManager && npm run build:all", "build:prereqManager" : "cd source/services/preReqManager && npm run build:all", "build:metricsManager" : "cd source/services/metricsManager && npm run build:all", "build:complianceGenerator" : "cd source/services/complianceGenerator && npm run build:all", "build" : "npm run build:helper && npm run build:policyManager && npm run build:prereqManager && npm run build:metricsManager && npm run build:complianceGenerator", "test" : "cd ./deployment && chmod +x run-unit-tests.sh && ./run-unit-tests.sh"}, "author" : "aws-solutions", "license" : "Apache-2.0", "devDependencies" : {"@typescript-eslint/eslint-plugin" : "^4.16.1", "@typescript-eslint/parser" : "^4.16.1", "eslint" : "^7.21.0", "eslint-config-prettier" : "^8.1.0", "eslint-plugin-prettier" : "^3.3.1", "prettier" : "^2.2.1", "typedoc" : "0.20.36", "typedoc-plugin-no-inherit" : "1.3.0", "typescript" : "^4.2.2"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "scripts": {"type": "object", "properties": {"docs": {"type": "string"}, "lint": {"type": "string"}, "prettier-format": {"type": "string"}, "build:helper": {"type": "string"}, "build:policyManager": {"type": "string"}, "build:prereqManager": {"type": "string"}, "build:metricsManager": {"type": "string"}, "build:complianceGenerator": {"type": "string"}, "build": {"type": "string"}, "test": {"type": "string"}}, "required": ["docs", "lint", "prettier-format", "build:helper", "build:policyManager", "build:prereqManager", "build:metricsManager", "build:complianceGenerator", "build", "test"]}, "author": {"type": "string"}, "license": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"@typescript-eslint/eslint-plugin": {"type": "string"}, "@typescript-eslint/parser": {"type": "string"}, "eslint": {"type": "string"}, "eslint-config-prettier": {"type": "string"}, "eslint-plugin-prettier": {"type": "string"}, "prettier": {"type": "string"}, "typedoc": {"type": "string"}, "typedoc-plugin-no-inherit": {"type": "string"}, "typescript": {"type": "string"}}, "required": ["@typescript-eslint/eslint-plugin", "@typescript-eslint/parser", "eslint", "eslint-config-prettier", "eslint-plugin-prettier", "prettier", "typedoc", "typedoc-plugin-no-inherit", "typescript"]}}, "required": ["name", "version", "description", "scripts", "author", "license", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "author": {"type": "string"}, "license": {"type": "string"}, "scripts": {"type": "object", "properties": {"lint": {"type": "string"}, "test": {"type": "string"}}, "required": ["lint", "test"]}, "dependencies": {"type": "object", "properties": {"aws-sdk": {"type": "string"}, "axios": {"type": "string"}, "lodash": {"type": "string"}, "mysql2": {"type": "string"}, "sequelize": {"type": "string"}, "sequelize-mock": {"type": "string"}}, "required": ["aws-sdk", "axios", "lodash", "mysql2", "sequelize", "sequelize-mock"]}, "devDependencies": {"type": "object", "properties": {"@kakadu-dev/base-prettier": {"type": "string"}, "@kakadu-dev/eslint-config-base": {"type": "string"}, "eslint": {"type": "string"}, "mocha": {"type": "string"}, "prettier": {"type": "string"}}, "required": ["@kakadu-dev/base-prettier", "@kakadu-dev/eslint-config-base", "eslint", "mocha", "prettier"]}}, "required": ["name", "version", "description", "main", "keywords", "repository", "bugs", "homepage", "author", "license", "scripts", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "@kakadu-dev/nodejs-ijson-helpers", "version" : "1.9.2", "description" : "NodeJS Inverted Json microservices helpers", "main" : "index.js", "keywords" : ["node", "js", "microservices", "inverted", "json", "helpers"], "repository" : {"type" : "git", "url" : "https://github.com/kakadu-dev/nodejs-ijson-helpers.git"}, "bugs" : {"url" : "https://github.com/kakadu-dev/nodejs-ijson-helpers/issues"}, "homepage" : "https://github.com/kakadu-dev/nodejs-ijson-helpers", "author" : "Mikhail Yarmaliuk", "license" : "MIT", "scripts" : {"lint" : "eslint .", "test" : "node --harmony node_modules/mocha/bin/_mocha tests --recursive --unhandled-rejections=strict --exit"}, "dependencies" : {"aws-sdk" : "^2.700.0", "axios" : "^0.19.2", "lodash" : "^4.17.15", "mysql2" : "^2.1.0", "sequelize" : "^5.21.5", "sequelize-mock" : "^0.10.2"}, "devDependencies" : {"@kakadu-dev/base-prettier" : "^1.0.0", "@kakadu-dev/eslint-config-base" : "^1.0.3", "eslint" : "^6.8.0", "mocha" : "^7.1.1", "prettier" : "^2.0.4"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "author": {"type": "string"}, "license": {"type": "string"}, "scripts": {"type": "object", "properties": {"lint": {"type": "string"}, "test": {"type": "string"}}, "required": ["lint", "test"]}, "dependencies": {"type": "object", "properties": {"aws-sdk": {"type": "string"}, "axios": {"type": "string"}, "lodash": {"type": "string"}, "mysql2": {"type": "string"}, "sequelize": {"type": "string"}, "sequelize-mock": {"type": "string"}}, "required": ["aws-sdk", "axios", "lodash", "mysql2", "sequelize", "sequelize-mock"]}, "devDependencies": {"type": "object", "properties": {"@kakadu-dev/base-prettier": {"type": "string"}, "@kakadu-dev/eslint-config-base": {"type": "string"}, "eslint": {"type": "string"}, "mocha": {"type": "string"}, "prettier": {"type": "string"}}, "required": ["@kakadu-dev/base-prettier", "@kakadu-dev/eslint-config-base", "eslint", "mocha", "prettier"]}}, "required": ["name", "version", "description", "main", "keywords", "repository", "bugs", "homepage", "author", "license", "scripts", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "array", "items": {"type": "object", "properties": {"errors": {"type": "array", "items": {}}, "file": {"type": "string"}, "name": {"type": "string"}}, "required": ["errors", "file", "name"]}}}, "required": ["contract", "tool", "start", "end", "duration", "analysis"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"contract" : "0x219101d69455c620700bf02f157f29ef7a8f7988", "tool" : "honeybadger", "start" : 1565886102.621469, "end" : 1565886155.8512836, "duration" : 53.229814529418945, "analysis" : [{"errors" : [], "file" : "/unique_chucks/4/0x219101d69455c620700bf02f157f29ef7a8f7988.sol", "name" : "MyOwned"}, {"errors" : [], "file" : "/unique_chucks/4/0x219101d69455c620700bf02f157f29ef7a8f7988.sol", "name" : "MyToken"}]}
json_instruct
{"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "array", "items": {"type": "object", "properties": {"errors": {"type": "array", "items": {}}, "file": {"type": "string"}, "name": {"type": "string"}}, "required": ["errors", "file", "name"]}}}, "required": ["contract", "tool", "start", "end", "duration", "analysis"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"umbrella.js": {"type": "string"}, "umbrella.min.js": {"type": "string"}}, "required": ["umbrella.js", "umbrella.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"umbrella.js" : "sha512-caTr+ccZp31VdmTZfWZCKFFG46L8T8c58gbQrCJL3t+HyYU+LhJwGqaxjWVjiXH98lMaENEtT5YwsBm1y44tiQ==", "umbrella.min.js" : "sha512-W4duDn9KFvUA9f04TtKZaMqzRDG1tbcjK/hpLscx/ml+VZV0xfO5ZxHOMvrbJIqfFld06+EaZb/ap5P/0ru1Lw=="}
json_instruct
{"type": "object", "properties": {"umbrella.js": {"type": "string"}, "umbrella.min.js": {"type": "string"}}, "required": ["umbrella.js", "umbrella.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"author": {"type": "string"}, "date": {"type": "string"}}, "required": ["author", "date"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"author" : "unknown", "date" : "2018-01-11T00:00:00"}
json_instruct
{"type": "object", "properties": {"author": {"type": "string"}, "date": {"type": "string"}}, "required": ["author", "date"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "demo": {"type": "string"}, "version": {"type": "string"}, "engines": {"type": "object", "properties": {"ghost": {"type": "string"}}, "required": ["ghost"]}, "license": {"type": "string"}, "screenshots": {"type": "object", "properties": {"desktop": {"type": "string"}, "mobile": {"type": "string"}}, "required": ["desktop", "mobile"]}, "author": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}, "url": {"type": "string"}}, "required": ["name", "email", "url"]}, "maintainer": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}, "url": {"type": "string"}}, "required": ["name", "email", "url"]}, "gpm": {"type": "object", "properties": {"type": {"type": "string"}, "categories": {"type": "array", "items": {"type": "string"}}}, "required": ["type", "categories"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "bugs": {"type": "string"}, "config": {"type": "object", "properties": {"posts_per_page": {"type": "integer"}}, "required": ["posts_per_page"]}}, "required": ["name", "description", "demo", "version", "engines", "license", "screenshots", "author", "maintainer", "gpm", "keywords", "repository", "bugs", "config"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "FirePress_Crisply", "description" : "This Ghost theme is supported by FirePress. Find more free themes at https://github.com/topics/firepress-ghost-theme", "demo" : "https://play-with-ghost.com/ghost-themes/firepress-crisply-for-barbershops/", "version" : "2.1.1", "engines" : {"ghost" : ">=2.0.0"}, "license" : "MIT", "screenshots" : {"desktop" : "assets/screenshot-desktop.png", "mobile" : "assets/screenshot-mobile.png"}, "author" : {"name" : "Kathy Qian", "email" : "hello@kathyqian.com", "url" : "https://kathyqian.com"}, "maintainer" : {"name" : "Pascal Andy", "email" : "relations@firepress.org", "url" : "https://play-with-ghost.com/"}, "gpm" : {"type" : "theme", "categories" : ["Minimal", "Personal Blogs"]}, "keywords" : ["ghost", "theme", "ghost-theme"], "repository" : {"type" : "git", "url" : "https://github.com/firepress-org/FirePress_Crisply.git"}, "bugs" : "https://github.com/firepress-org/FirePress_Crisply/issues", "config" : {"posts_per_page" : 10}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "demo": {"type": "string"}, "version": {"type": "string"}, "engines": {"type": "object", "properties": {"ghost": {"type": "string"}}, "required": ["ghost"]}, "license": {"type": "string"}, "screenshots": {"type": "object", "properties": {"desktop": {"type": "string"}, "mobile": {"type": "string"}}, "required": ["desktop", "mobile"]}, "author": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}, "url": {"type": "string"}}, "required": ["name", "email", "url"]}, "maintainer": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}, "url": {"type": "string"}}, "required": ["name", "email", "url"]}, "gpm": {"type": "object", "properties": {"type": {"type": "string"}, "categories": {"type": "array", "items": {"type": "string"}}}, "required": ["type", "categories"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "bugs": {"type": "string"}, "config": {"type": "object", "properties": {"posts_per_page": {"type": "integer"}}, "required": ["posts_per_page"]}}, "required": ["name", "description", "demo", "version", "engines", "license", "screenshots", "author", "maintainer", "gpm", "keywords", "repository", "bugs", "config"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"ast": {"type": "null"}, "code": {"type": "string"}, "map": {"type": "object", "properties": {"version": {"type": "integer"}, "sources": {"type": "array", "items": {"type": "string"}}, "names": {"type": "array", "items": {"type": "string"}}, "mappings": {"type": "string"}, "sourcesContent": {"type": "array", "items": {"type": "string"}}}, "required": ["version", "sources", "names", "mappings", "sourcesContent"]}, "metadata": {"type": "object", "properties": {}, "required": []}, "sourceType": {"type": "string"}}, "required": ["ast", "code", "map", "metadata", "sourceType"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"ast" : null, "code" : "var _s = $RefreshSig$();\n\nimport React, { useContext, useState } from 'react';\nexport function MainProvider({\n children\n}) {\n _s();\n\n const [ra, setRa] = useState('20153');\n\n function trocaRa(param) {\n setRa(param);\n }\n}\n\n_s(MainProvider, \"iK7Gp3aghKmEX+K2zG3CRQGITK8=\");\n\n_c = MainProvider;\n\nvar _c;\n\n$RefreshReg$(_c, \"MainProvider\");", "map" : {"version" : 3, "sources" : ["C:/Users/Rafael/Documents/GitHub/Monitorario/front-end/src/MainContext.js"], "names" : ["React", "useContext", "useState", "MainProvider", "children", "ra", "setRa", "trocaRa", "param"], "mappings" : ";;AAAA,OAAOA,KAAP,IAAgBC,UAAhB,EAA4BC,QAA5B,QAA4C,OAA5C;AAEA,OAAO,SAASC,YAAT,CAAsB;AAAEC,EAAAA;AAAF,CAAtB,EAAoC;AAAA;;AACvC,QAAM,CAACC,EAAD,EAAKC,KAAL,IAAcJ,QAAQ,CAAC,OAAD,CAA5B;;AAEA,WAASK,OAAT,CAAiBC,KAAjB,EAAwB;AACpBF,IAAAA,KAAK,CAACE,KAAD,CAAL;AACH;AACJ;;GANeL,Y;;KAAAA,Y", "sourcesContent" : ["import React, { useContext, useState } from 'react'\r\n\r\nexport function MainProvider({ children }) {\r\n const [ra, setRa] = useState('20153');\r\n\r\n function trocaRa(param) {\r\n setRa(param)\r\n }\r\n}"]}, "metadata" : {}, "sourceType" : "module"}
json_instruct
{"type": "object", "properties": {"ast": {"type": "null"}, "code": {"type": "string"}, "map": {"type": "object", "properties": {"version": {"type": "integer"}, "sources": {"type": "array", "items": {"type": "string"}}, "names": {"type": "array", "items": {"type": "string"}}, "mappings": {"type": "string"}, "sourcesContent": {"type": "array", "items": {"type": "string"}}}, "required": ["version", "sources", "names", "mappings", "sourcesContent"]}, "metadata": {"type": "object", "properties": {}, "required": []}, "sourceType": {"type": "string"}}, "required": ["ast", "code", "map", "metadata", "sourceType"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"type": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "number"}}}, "required": ["type", "coordinates"]}, "properties": {"type": "object", "properties": {"documentation-url": {"type": "string"}, "listed-building-grade": {"type": "string"}, "listed-building": {"type": "string"}, "name": {"type": "string"}, "start-date": {"type": "string"}, "point": {"type": "string"}, "slug": {"type": "string"}, "entry-date": {"type": "string"}}, "required": ["documentation-url", "listed-building-grade", "listed-building", "name", "start-date", "point", "slug", "entry-date"]}}, "required": ["type", "geometry", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"type" : "Feature", "geometry" : {"type" : "Point", "coordinates" : [0.806468, 52.335787]}, "properties" : {"documentation-url" : "https://historicengland.org.uk/listing/the-list/list-entry/1031291", "listed-building-grade" : "II", "listed-building" : "1031291", "name" : "HONINGTON VOLUNTARY CONTROLLED SCHOOL", "start-date" : "1983-12-14", "point" : "POINT (0.806468 52.335787)", "slug" : "/listed-building/1031291", "entry-date" : "2021-05-28"}}
json_instruct
{"type": "object", "properties": {"type": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "number"}}}, "required": ["type", "coordinates"]}, "properties": {"type": "object", "properties": {"documentation-url": {"type": "string"}, "listed-building-grade": {"type": "string"}, "listed-building": {"type": "string"}, "name": {"type": "string"}, "start-date": {"type": "string"}, "point": {"type": "string"}, "slug": {"type": "string"}, "entry-date": {"type": "string"}}, "required": ["documentation-url", "listed-building-grade", "listed-building", "name", "start-date", "point", "slug", "entry-date"]}}, "required": ["type", "geometry", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"statistical": {"type": "object", "properties": {"9638056": {"type": "object", "properties": {"RMSE": {"type": "number"}, "PCC": {"type": "number"}}, "required": ["RMSE", "PCC"]}, "9691931_2": {"type": "object", "properties": {"RMSE": {"type": "number"}, "PCC": {"type": "number"}}, "required": ["RMSE", "PCC"]}, "9699634": {"type": "object", "properties": {"RMSE": {"type": "number"}, "PCC": {"type": "number"}}, "required": ["RMSE", "PCC"]}}, "required": ["9638056", "9691931_2", "9699634"]}}, "required": ["statistical"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"statistical" : {"9638056" : {"RMSE" : 317.0480296816241, "PCC" : -0.7276234175513439}, "9691931_2" : {"RMSE" : 303.44423911157054, "PCC" : 0.33341648913626265}, "9699634" : {"RMSE" : 312.84575872145047, "PCC" : -0.13294644041551337}}}
json_instruct
{"type": "object", "properties": {"statistical": {"type": "object", "properties": {"9638056": {"type": "object", "properties": {"RMSE": {"type": "number"}, "PCC": {"type": "number"}}, "required": ["RMSE", "PCC"]}, "9691931_2": {"type": "object", "properties": {"RMSE": {"type": "number"}, "PCC": {"type": "number"}}, "required": ["RMSE", "PCC"]}, "9699634": {"type": "object", "properties": {"RMSE": {"type": "number"}, "PCC": {"type": "number"}}, "required": ["RMSE", "PCC"]}}, "required": ["9638056", "9691931_2", "9699634"]}}, "required": ["statistical"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"hyperrectangles": {"type": "array", "items": {"type": "object", "properties": {"size": {"type": "array", "items": {"type": "integer"}}}, "required": ["size"]}}, "base": {"type": "object", "properties": {"size": {"type": "array", "items": {"type": "integer"}}, "position": {"type": "array", "items": {"type": "integer"}}}, "required": ["size", "position"]}}, "required": ["hyperrectangles", "base"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"hyperrectangles" : [{"size" : [1, 3, 1]}, {"size" : [2, 1, 1]}, {"size" : [1, 1, 1]}, {"size" : [1, 3, 1]}, {"size" : [1, 5, 2]}, {"size" : [2, 4, 4]}, {"size" : [2, 1, 2]}], "base" : {"size" : [6, 6, 0], "position" : [0, 0, 0]}}
json_instruct
{"type": "object", "properties": {"hyperrectangles": {"type": "array", "items": {"type": "object", "properties": {"size": {"type": "array", "items": {"type": "integer"}}}, "required": ["size"]}}, "base": {"type": "object", "properties": {"size": {"type": "array", "items": {"type": "integer"}}, "position": {"type": "array", "items": {"type": "integer"}}}, "required": ["size", "position"]}}, "required": ["hyperrectangles", "base"], "$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"}, "default_locale": {"type": "string"}, "manifest_version": {"type": "integer"}, "icons": {"type": "object", "properties": {"16": {"type": "string"}, "48": {"type": "string"}, "128": {"type": "string"}}, "required": ["16", "48", "128"]}, "browser_action": {"type": "object", "properties": {"default_icon": {"type": "object", "properties": {"19": {"type": "string"}, "38": {"type": "string"}}, "required": ["19", "38"]}}, "required": ["default_icon"]}, "background": {"type": "object", "properties": {"scripts": {"type": "array", "items": {"type": "string"}}, "persistent": {"type": "boolean"}}, "required": ["scripts", "persistent"]}, "permissions": {"type": "array", "items": {"type": "string"}}, "content_security_policy": {"type": "string"}, "content_scripts": {"type": "array", "items": {"type": "object", "properties": {"matches": {"type": "array", "items": {"type": "string"}}, "js": {"type": "array", "items": {"type": "string"}}, "run_at": {"type": "string"}}, "required": ["matches", "js", "run_at"]}}}, "required": ["name", "description", "default_locale", "manifest_version", "icons", "browser_action", "background", "permissions", "content_security_policy", "content_scripts"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "__MSG_extName__", "description" : "__MSG_extDescription__", "default_locale" : "en", "manifest_version" : 2, "icons" : {"16" : "icon/16.png", "48" : "icon/48.png", "128" : "icon/128.png"}, "browser_action" : {"default_icon" : {"19" : "icon/19.png", "38" : "icon/38.png"}}, "background" : {"scripts" : ["event.js"], "persistent" : false}, "permissions" : ["storage"], "content_security_policy" : "script-src 'self' 'unsafe-eval'; object-src 'self'", "content_scripts" : [{"matches" : ["https://*.wikipedia.org/*"], "js" : ["content.js"], "run_at" : "document_end"}]}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "default_locale": {"type": "string"}, "manifest_version": {"type": "integer"}, "icons": {"type": "object", "properties": {"16": {"type": "string"}, "48": {"type": "string"}, "128": {"type": "string"}}, "required": ["16", "48", "128"]}, "browser_action": {"type": "object", "properties": {"default_icon": {"type": "object", "properties": {"19": {"type": "string"}, "38": {"type": "string"}}, "required": ["19", "38"]}}, "required": ["default_icon"]}, "background": {"type": "object", "properties": {"scripts": {"type": "array", "items": {"type": "string"}}, "persistent": {"type": "boolean"}}, "required": ["scripts", "persistent"]}, "permissions": {"type": "array", "items": {"type": "string"}}, "content_security_policy": {"type": "string"}, "content_scripts": {"type": "array", "items": {"type": "object", "properties": {"matches": {"type": "array", "items": {"type": "string"}}, "js": {"type": "array", "items": {"type": "string"}}, "run_at": {"type": "string"}}, "required": ["matches", "js", "run_at"]}}}, "required": ["name", "description", "default_locale", "manifest_version", "icons", "browser_action", "background", "permissions", "content_security_policy", "content_scripts"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"mdb_source_id": {"type": "integer"}, "data_type": {"type": "string"}, "provider": {"type": "string"}, "location": {"type": "object", "properties": {"country_code": {"type": "string"}, "subdivision_name": {"type": "string"}, "municipality": {"type": "string"}, "bounding_box": {"type": "object", "properties": {"minimum_latitude": {"type": "number"}, "maximum_latitude": {"type": "number"}, "minimum_longitude": {"type": "number"}, "maximum_longitude": {"type": "number"}, "extracted_on": {"type": "string"}}, "required": ["minimum_latitude", "maximum_latitude", "minimum_longitude", "maximum_longitude", "extracted_on"]}}, "required": ["country_code", "subdivision_name", "municipality", "bounding_box"]}, "urls": {"type": "object", "properties": {"direct_download": {"type": "string"}, "latest": {"type": "string"}}, "required": ["direct_download", "latest"]}}, "required": ["mdb_source_id", "data_type", "provider", "location", "urls"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"mdb_source_id" : 481, "data_type" : "gtfs", "provider" : "Potomac and Rappahannock Transportation Commission (PRTC)", "location" : {"country_code" : "US", "subdivision_name" : "Virginia", "municipality" : "Woodbridge", "bounding_box" : {"minimum_latitude" : 38.475418, "maximum_latitude" : 38.931923, "minimum_longitude" : -77.637254, "maximum_longitude" : -76.992477, "extracted_on" : "2022-03-16T17:24:07+00:00"}}, "urls" : {"direct_download" : "http://www.prtctransit.org/feeds/google_transit.zip", "latest" : "https://storage.googleapis.com/storage/v1/b/mdb-latest/o/us-virginia-potomac-and-rappahannock-transportation-commission-prtc-gtfs-481.zip?alt=media"}}
json_instruct
{"type": "object", "properties": {"mdb_source_id": {"type": "integer"}, "data_type": {"type": "string"}, "provider": {"type": "string"}, "location": {"type": "object", "properties": {"country_code": {"type": "string"}, "subdivision_name": {"type": "string"}, "municipality": {"type": "string"}, "bounding_box": {"type": "object", "properties": {"minimum_latitude": {"type": "number"}, "maximum_latitude": {"type": "number"}, "minimum_longitude": {"type": "number"}, "maximum_longitude": {"type": "number"}, "extracted_on": {"type": "string"}}, "required": ["minimum_latitude", "maximum_latitude", "minimum_longitude", "maximum_longitude", "extracted_on"]}}, "required": ["country_code", "subdivision_name", "municipality", "bounding_box"]}, "urls": {"type": "object", "properties": {"direct_download": {"type": "string"}, "latest": {"type": "string"}}, "required": ["direct_download", "latest"]}}, "required": ["mdb_source_id", "data_type", "provider", "location", "urls"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"activeSolution": {"type": "string"}, "solutions": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "url": {"type": "string"}, "deepLink": {"type": "string"}, "iframeUrl": {"type": "string"}, "contextParams": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "values": {"type": "array", "items": {"type": "object", "properties": {"text": {"type": "string"}, "active": {"type": "boolean"}}, "required": ["text", "active"]}}}, "required": ["name", "values"]}}, "locale": {"type": "string"}, "chatTitle": {"type": "string"}, "responseIcon": {"type": "string"}, "userIcon": {"type": "string"}, "useLocalStorage": {"type": "string"}, "enableLiveChat": {"type": "string"}, "theme": {"type": "object", "properties": {"primary": {"type": "string"}, "secondary": {"type": "string"}, "accent": {"type": "string"}, "error": {"type": "string"}, "info": {"type": "string"}, "success": {"type": "string"}, "warning": {"type": "string"}}, "required": ["primary", "secondary", "accent", "error", "info", "success", "warning"]}, "float": {"type": "string"}, "showChatIcons": {"type": "string"}}, "required": ["name", "url", "deepLink", "iframeUrl", "contextParams", "locale", "chatTitle", "responseIcon", "userIcon", "useLocalStorage", "enableLiveChat", "theme", "float", "showChatIcons"]}}}, "required": ["activeSolution", "solutions"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"activeSolution" : "Leopard Test Solution", "solutions" : [{"name" : "Leopard Test Solution", "url" : "https://teneo5feature-demos.presales.artificial-solutions.com/leopard/", "deepLink" : "leopard", "iframeUrl" : "https://www.worldweatheronline.com/lang/es/", "contextParams" : [{"name" : "channel", "values" : [{"text" : "webview", "active" : true}]}], "locale" : "es", "chatTitle" : "Ptolomeo", "responseIcon" : "person", "userIcon" : "fa-comment-alt", "useLocalStorage" : "false", "enableLiveChat" : "false", "theme" : {"primary" : "#6B9F55", "secondary" : "#9FC920", "accent" : "#4CAF50", "error" : "#FF5252", "info" : "#2196F3", "success" : "#4CAF50", "warning" : "#FFC107"}, "float" : "true", "showChatIcons" : "true"}]}
json_instruct
{"type": "object", "properties": {"activeSolution": {"type": "string"}, "solutions": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "url": {"type": "string"}, "deepLink": {"type": "string"}, "iframeUrl": {"type": "string"}, "contextParams": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "values": {"type": "array", "items": {"type": "object", "properties": {"text": {"type": "string"}, "active": {"type": "boolean"}}, "required": ["text", "active"]}}}, "required": ["name", "values"]}}, "locale": {"type": "string"}, "chatTitle": {"type": "string"}, "responseIcon": {"type": "string"}, "userIcon": {"type": "string"}, "useLocalStorage": {"type": "string"}, "enableLiveChat": {"type": "string"}, "theme": {"type": "object", "properties": {"primary": {"type": "string"}, "secondary": {"type": "string"}, "accent": {"type": "string"}, "error": {"type": "string"}, "info": {"type": "string"}, "success": {"type": "string"}, "warning": {"type": "string"}}, "required": ["primary", "secondary", "accent", "error", "info", "success", "warning"]}, "float": {"type": "string"}, "showChatIcons": {"type": "string"}}, "required": ["name", "url", "deepLink", "iframeUrl", "contextParams", "locale", "chatTitle", "responseIcon", "userIcon", "useLocalStorage", "enableLiveChat", "theme", "float", "showChatIcons"]}}}, "required": ["activeSolution", "solutions"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"methods": {"type": "array", "items": {"type": "string"}}, "package": {"type": "string"}, "constants": {"type": "array", "items": {}}, "class": {"type": "string"}, "constructors": {"type": "array", "items": {}}, "fields": {"type": "array", "items": {}}}, "required": ["methods", "package", "constants", "class", "constructors", "fields"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"methods" : ["abstract int getMax() The age range's upper bound, if any.", "abstract int getMin() The age range's lower bound, if any.", "abstract boolean hasMax() Indicates whether the \"max\" field is explicitly set to a value.", "abstract boolean hasMin() Indicates whether the \"min\" field is explicitly set to a value.", "[Expand] Inherited Methods", "From interface com.google.android.gms.common.data.Freezable abstract T freeze() Freeze a volatile representation into an immutable representation. abstract boolean isDataValid() Check to see if this object is valid for use.", "abstract T freeze() Freeze a volatile representation into an immutable representation.", "abstract boolean isDataValid() Check to see if this object is valid for use."], "package" : "com.google.android.gms.plus.model.people", "constants" : [], "class" : "Person.AgeRange", "constructors" : [], "fields" : []}
json_instruct
{"type": "object", "properties": {"methods": {"type": "array", "items": {"type": "string"}}, "package": {"type": "string"}, "constants": {"type": "array", "items": {}}, "class": {"type": "string"}, "constructors": {"type": "array", "items": {}}, "fields": {"type": "array", "items": {}}}, "required": ["methods", "package", "constants", "class", "constructors", "fields"], "$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"}, "version": {"type": "string"}, "author": {"type": "string"}, "contributors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}}, "homepage": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "engines": {"type": "object", "properties": {"node": {"type": "string"}}, "required": ["node"]}, "main": {"type": "string"}, "bin": {"type": "object", "properties": {}, "required": []}, "dependencies": {"type": "object", "properties": {"async": {"type": "string"}, "request": {"type": "string"}, "underscore": {"type": "string"}}, "required": ["async", "request", "underscore"]}}, "required": ["name", "description", "version", "author", "contributors", "homepage", "keywords", "repository", "engines", "main", "bin", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "cerberus-api", "description" : "Node module for interacting with the Cerberus API", "version" : "0.1.1", "author" : "makesites", "contributors" : [{"name" : "Makis Tracend", "email" : "makis@makesit.es"}], "homepage" : "http://cerberus.makesit.es", "keywords" : ["cerberus", "makesites", "api"], "repository" : {"type" : "git", "url" : "git://github.com/cerberus-api/node.git"}, "engines" : {"node" : ">=0.12.x"}, "main" : "index", "bin" : {}, "dependencies" : {"async" : "2.6.2", "request" : "2.88.0", "underscore" : "1.8.3"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "version": {"type": "string"}, "author": {"type": "string"}, "contributors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}}, "homepage": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "engines": {"type": "object", "properties": {"node": {"type": "string"}}, "required": ["node"]}, "main": {"type": "string"}, "bin": {"type": "object", "properties": {}, "required": []}, "dependencies": {"type": "object", "properties": {"async": {"type": "string"}, "request": {"type": "string"}, "underscore": {"type": "string"}}, "required": ["async", "request", "underscore"]}}, "required": ["name", "description", "version", "author", "contributors", "homepage", "keywords", "repository", "engines", "main", "bin", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"average_occupancy": {"type": "array", "items": {"type": "number"}}}, "required": ["average_occupancy"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"average_occupancy" : [2.8966241215046744, 2.9679690123190396, 2.922985210961296, 2.913351610766935, 2.798168566035331, 2.789054860474096, 2.781501527587616, 2.676516387634812, 2.706083025417884, 2.697883754205802, 2.684533166602865, 2.702139294000492, 2.8203955056360344, 2.8951437044467014, 3.0751653799542735, 3.0198448092007695, 3.0588296744107164, 2.9645878048186316, 2.884325595404323, 2.7184212737969258, 2.6701632172901317, 2.7184028804218388, 2.688800548722757, 2.6670906210010794, 2.7622473705375916, 2.6613739918002044, 2.63538828923609, 2.667906341459078, 2.647345196428835, 2.430408478081869, 2.394832818373948, 2.2240543961261943, 2.1282145029199846, 1.9883001337340143, 1.9322257465333408, 1.8633875325367415, 13.397744889657929, 1.8534345109853396, 1.8632048478238301, 1.8445129009436012, 2.0158354674585923, 2.2172513381360464, 2.264869341317197, 2.4927221416830094, 2.4682806454061637, 2.6790906749468615, 2.7055914055112984, 2.688615499452117, 2.8202309266034784, 2.7822271920121873, 2.762800394141963, 2.7743105442996905, 2.753944965503314, 2.764284359221005, 2.7928881561017276, 2.8828471052723437, 2.8885421606028903, 2.767526568905037, 2.9354278150489828, 2.9171846045403176, 2.8723538329060987, 2.860360747098651, 2.7657061333965594, 2.741772569970743, 2.7896045030651564, 2.7770920869770794, 2.881564774900003, 2.963307464160128, 2.885260769909683, 2.660436166839698, 2.593947497064841, 2.6527157452153585, 2.724026451877127, 2.7059698784480792, 2.738846572209694]}
json_instruct
{"type": "object", "properties": {"average_occupancy": {"type": "array", "items": {"type": "number"}}}, "required": ["average_occupancy"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"description": {"type": "object", "properties": {"message": {"type": "string"}}, "required": ["message"]}, "title": {"type": "object", "properties": {"message": {"type": "string"}}, "required": ["message"]}, "use-of-cookies": {"type": "object", "properties": {"message": {"type": "string"}}, "required": ["message"]}, "change-cookie-settings-label": {"type": "object", "properties": {"message": {"type": "string"}}, "required": ["message"]}, "use-of-cookies-4": {"type": "object", "properties": {"message": {"type": "string"}}, "required": ["message"]}, "use-of-cookies-1": {"type": "object", "properties": {"message": {"type": "string"}}, "required": ["message"]}, "use-of-cookies-2": {"type": "object", "properties": {"message": {"type": "string"}}, "required": ["message"]}, "use-of-cookies-3": {"type": "object", "properties": {"message": {"type": "string"}}, "required": ["message"]}}, "required": ["description", "title", "use-of-cookies", "change-cookie-settings-label", "use-of-cookies-4", "use-of-cookies-1", "use-of-cookies-2", "use-of-cookies-3"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"description" : {"message" : "Utilizzo dei cookie da parte di eyeo"}, "title" : {"message" : "Cookie"}, "use-of-cookies" : {"message" : "Utilizzo dei cookie sui nostri siti web"}, "change-cookie-settings-label" : {"message" : "Modifica le impostazioni cookie"}, "use-of-cookies-4" : {"message" : "Se non desideri aiutarci a migliorare i nostri prodotti, puoi disattivare i cookie in qualunque momento."}, "use-of-cookies-1" : {"message" : "I nostri siti web utilizzano i cookie, che sono file di testo conservati sul tuo computer che ci aiutano ad analizzare il tuo utilizzo dei nostri siti web e ottimizzare i vantaggi degli utenti. Se non desideri attivare i cookie, puoi scegliere di disattivarli selezionando le relative impostazioni nel tuo browser."}, "use-of-cookies-2" : {"message" : "Utilizziamo anche Google Analytics e Google Optimize per analizzare il traffico sul nostro sito web e, occasionalmente, eseguire test di utilizzo. I dati conservati da Google per tali scopi sono resi anonimi e conservati negli USA. \u00c8 possibile che Google trasmetta tali informazioni a terze parti, se previsto dalla legge. <span>Puoi disattivare Google Analytics nelle impostazioni (qui di seguito).</span>"}, "use-of-cookies-3" : {"message" : "Ti facciamo presente che la disattivazione di una qualsiasi delle impostazioni di cui sopra potrebbe limitare l'efficienza e la gamma dei servizi offerti da eyeo."}}
json_instruct
{"type": "object", "properties": {"description": {"type": "object", "properties": {"message": {"type": "string"}}, "required": ["message"]}, "title": {"type": "object", "properties": {"message": {"type": "string"}}, "required": ["message"]}, "use-of-cookies": {"type": "object", "properties": {"message": {"type": "string"}}, "required": ["message"]}, "change-cookie-settings-label": {"type": "object", "properties": {"message": {"type": "string"}}, "required": ["message"]}, "use-of-cookies-4": {"type": "object", "properties": {"message": {"type": "string"}}, "required": ["message"]}, "use-of-cookies-1": {"type": "object", "properties": {"message": {"type": "string"}}, "required": ["message"]}, "use-of-cookies-2": {"type": "object", "properties": {"message": {"type": "string"}}, "required": ["message"]}, "use-of-cookies-3": {"type": "object", "properties": {"message": {"type": "string"}}, "required": ["message"]}}, "required": ["description", "title", "use-of-cookies", "change-cookie-settings-label", "use-of-cookies-4", "use-of-cookies-1", "use-of-cookies-2", "use-of-cookies-3"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
[[1979, 5], [1981, 5], [2007, 5]]
json_instruct
{"type": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "license": {"type": "string"}, "type": {"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"]}}, "require": {"type": "object", "properties": {"php": {"type": "string"}, "firebase/php-jwt": {"type": "string"}, "guzzlehttp/guzzle": {"type": "string"}}, "required": ["php", "firebase/php-jwt", "guzzlehttp/guzzle"]}, "require-dev": {"type": "object", "properties": {"vlucas/phpdotenv": {"type": "string"}}, "required": ["vlucas/phpdotenv"]}, "autoload": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"FareedAlBandar\\": {"type": "string"}}, "required": ["FareedAlBandar\\"]}}, "required": ["psr-4"]}}, "required": ["name", "description", "keywords", "license", "type", "authors", "require", "require-dev", "autoload"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "FareedAlBandar/zaincash-sdk", "description" : "An Unofficial Object Oriented SDK for integrating ZainCash with php applications.", "keywords" : ["zaincash", "zain", "payment", "iraq", "sdk"], "license" : "MIT", "type" : "library", "authors" : [{"name" : "Alhasan A. Al-Nasiry", "email" : "alhasan.nasiry+gh@gmail.com", "homepage" : "https://alhasaniq.com", "role" : "Developer"}], "require" : {"php" : ">=5.4.0", "firebase/php-jwt" : "^4.0", "guzzlehttp/guzzle" : ">=6.0"}, "require-dev" : {"vlucas/phpdotenv" : "^2.4"}, "autoload" : {"psr-4" : {"FareedAlBandar\\" : "src/"}}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "license": {"type": "string"}, "type": {"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"]}}, "require": {"type": "object", "properties": {"php": {"type": "string"}, "firebase/php-jwt": {"type": "string"}, "guzzlehttp/guzzle": {"type": "string"}}, "required": ["php", "firebase/php-jwt", "guzzlehttp/guzzle"]}, "require-dev": {"type": "object", "properties": {"vlucas/phpdotenv": {"type": "string"}}, "required": ["vlucas/phpdotenv"]}, "autoload": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"FareedAlBandar\\": {"type": "string"}}, "required": ["FareedAlBandar\\"]}}, "required": ["psr-4"]}}, "required": ["name", "description", "keywords", "license", "type", "authors", "require", "require-dev", "autoload"], "$schema": "http://json-schema.org/draft-07/schema#"}