input
stringlengths 159
2.05k
| output
stringlengths 5
10.3k
| task
stringclasses 1
value | schema
stringlengths 100
1.99k
|
---|---|---|---|
Based on the schema below, produce a valid JSON object:
{"type": "array", "items": {"type": "object", "properties": {"title": {"type": "string"}, "author": {"type": "string"}, "modified": {"type": "string"}, "content": {"type": "string"}}, "required": ["title", "author", "modified", "content"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"title" : "How to Work on a Branch with GitHub", "author" : "Walter", "modified" : "20/02/2018", "content" : "how-to-work-on-a-branch-with-github.md"}, {"title" : "Not so Awesome Article", "author" : "N00b Author", "modified" : "12/05/2018", "content" : "content.md"}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"title": {"type": "string"}, "author": {"type": "string"}, "modified": {"type": "string"}, "content": {"type": "string"}}, "required": ["title", "author", "modified", "content"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"id": {"type": "string"}, "province_id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "province_id", "name"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "3306", "province_id" : "33", "name" : "KABUPATEN PURWOREJO"} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "province_id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "province_id", "name"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"timestamp": {"type": "integer"}, "object_list": {"type": "array", "items": {"type": "object", "properties": {"position": {"type": "array", "items": {"type": "number"}}, "id": {"type": "integer"}}, "required": ["position", "id"]}}, "frame": {"type": "integer"}, "size": {"type": "integer"}}, "required": ["timestamp", "object_list", "frame", "size"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"timestamp" : 865, "object_list" : [{"position" : [6.02751027457, 5.16937126179], "id" : 69}, {"position" : [6.45075561002, 5.01185579398], "id" : 70}, {"position" : [6.84706141145, 4.22427845493], "id" : 111}, {"position" : [6.012988182, 4.34360835478], "id" : 112}, {"position" : [9.63340899778, 1.78278870386], "id" : 166}, {"position" : [10.4453833907, 1.85796654077], "id" : 167}, {"position" : [1.56754413649, 8.22588731672], "id" : 168}, {"position" : [1.78179761809, 8.84449351758], "id" : 169}, {"position" : [1.12219996452, 7.65644503461], "id" : 171}, {"position" : [8.34641485242, 6.85192284977], "id" : 172}, {"position" : [8.08649044203, 6.03809293275], "id" : 173}], "frame" : 865, "size" : 11} | json_instruct | {"type": "object", "properties": {"timestamp": {"type": "integer"}, "object_list": {"type": "array", "items": {"type": "object", "properties": {"position": {"type": "array", "items": {"type": "number"}}, "id": {"type": "integer"}}, "required": ["position", "id"]}}, "frame": {"type": "integer"}, "size": {"type": "integer"}}, "required": ["timestamp", "object_list", "frame", "size"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "author": {"type": "string"}, "dependencies": {"type": "object", "properties": {"connect": {"type": "string"}, "cookie": {"type": "string"}, "cookie-parser": {"type": "string"}, "errno": {"type": "string"}, "express": {"type": "string"}, "express-session": {"type": "string"}, "fs-extra": {"type": "string"}, "rwlock": {"type": "string"}, "socket.io": {"type": "string"}, "moment": {"type": "string"}, "winston": {"type": "string"}}, "required": ["connect", "cookie", "cookie-parser", "errno", "express", "express-session", "fs-extra", "rwlock", "socket.io", "moment", "winston"]}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}}, "required": ["start"]}, "engines": {"type": "object", "properties": {"node": {"type": "string"}}, "required": ["node"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}}, "required": ["name", "version", "author", "dependencies", "scripts", "engines", "repository"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "WebIRC", "version" : "0.0.1", "author" : "Pavel Bennett", "dependencies" : {"connect" : "*", "cookie" : "*", "cookie-parser" : "*", "errno" : "*", "express" : "*", "express-session" : "*", "fs-extra" : "*", "rwlock" : "*", "socket.io" : "0.9.17", "moment" : "*", "winston" : "*"}, "scripts" : {"start" : "node main.js"}, "engines" : {"node" : ">= 0.8"}, "repository" : {"type" : "git", "url" : "http://github.com/pavben/WebIRC.git"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "author": {"type": "string"}, "dependencies": {"type": "object", "properties": {"connect": {"type": "string"}, "cookie": {"type": "string"}, "cookie-parser": {"type": "string"}, "errno": {"type": "string"}, "express": {"type": "string"}, "express-session": {"type": "string"}, "fs-extra": {"type": "string"}, "rwlock": {"type": "string"}, "socket.io": {"type": "string"}, "moment": {"type": "string"}, "winston": {"type": "string"}}, "required": ["connect", "cookie", "cookie-parser", "errno", "express", "express-session", "fs-extra", "rwlock", "socket.io", "moment", "winston"]}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}}, "required": ["start"]}, "engines": {"type": "object", "properties": {"node": {"type": "string"}}, "required": ["node"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}}, "required": ["name", "version", "author", "dependencies", "scripts", "engines", "repository"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "array", "items": {"type": "object", "properties": {"url": {"type": "string"}, "title": {"type": "string"}, "count": {"type": "integer"}}, "required": ["url", "title", "count"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"url" : "https://bbs.byr.cn/article/BUPTNet/94571", "title" : "\u81f4\u7f51\u7edc\u4e2d\u5fc3\u8001\u5e08\u7684\u4e00\u5c01\u4fe1", "count" : 147}, {"url" : "https://bbs.byr.cn/article/Friends/1867822", "title" : "\u66ff\u7f8e\u5973\u5f81\u53cb\uff08\u9644\u738b\u9053\uff09", "count" : 41}, {"url" : "https://bbs.byr.cn/article/Feeling/3057140", "title" : "\u5206\u624b\u5e94\u8be5\u75db\u5feb", "count" : 36}, {"url" : "https://bbs.byr.cn/article/Talking/6002087", "title" : "\u5b6629\u9001\u6876\u88c5\u6c34\u7684\u4eba\u8dd1\u8def\u4e86\u561b\uff1f\uff1f", "count" : 35}, {"url" : "https://bbs.byr.cn/article/Job/1971359", "title" : "\u3010\u6821\u62db\u3011\u3010\u5ba3\u8bb2\u3011\u6c11\u751f\u94f6\u884c\u603b\u884c\u4fe1\u606f\u79d1\u6280\u4eca\u665a6:30\u6559\u4e09108\u7b49\u4f60\u6765", "count" : 34}, {"url" : "https://bbs.byr.cn/article/Constellations/326533", "title" : "\u3010\u8f6c\u3011\u8d85\u795e\u51c6\uff01\u661f\u5ea7\u5c0f\u738b\u5b50\u72ec\u521b\u7684\u65b0\u578b\u5360\u535c\u3001\u4f86\u4e00\u8d77\u8a66\u73a9\u4e00\u4e0b\uff01", "count" : 30}, {"url" : "https://bbs.byr.cn/article/WorkLife/1102415", "title" : "\u3010\u6c42\u8fdb\u6c42\u8fdb\u3011\u3010\u95ee\u9898\u3011PM\u5b9e\u4e60\uff0c\u5fae\u8f6fstcaVS\u817e\u8bafsng", "count" : 29}, {"url" : "https://bbs.byr.cn/article/Beauty/323046", "title" : "\u4e3a\u4ec0\u4e48\u6240\u6709\u53e3\u7ea2\u5728\u6211\u5634\u4e0a\u989c\u8272\u90fd\u663e\u5f97\u5f88\u6df1\uff1f", "count" : 29}, {"url" : "https://bbs.byr.cn/article/StudyShare/183700", "title" : "\u6bcf\u6b21\u505a\u9879\u76ee\u90fd\u50cf\u8d76\u9e2d\u5b50\u4e0a\u67b6", "count" : 25}, {"url" : "https://bbs.byr.cn/article/ACM_ICPC/95859", "title" : "\u3010\u95ee\u9898\u3011\u4eca\u665a\u963f\u91cc\u6a21\u62df\u9898 \u6982\u7387\u95ee\u9898\u6c42\u89e3", "count" : 22}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"url": {"type": "string"}, "title": {"type": "string"}, "count": {"type": "integer"}}, "required": ["url", "title", "count"]}, "$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": {"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" : 99503, "cartId" : "6887913c-ef03-4fa6-a68a-ecb63d2dd056", "preferredProducts" : [1004], "productReviews" : [{"productId" : 4941, "reviewText" : "SoCal cockroaches are unwelcome, crafty, and tenacious. This Baby, Garden & Electronics keeps them away.", "reviewDate" : "2017-08-22T02:31:53.2915156+03:00"}, {"productId" : 4650, "reviewText" : "heard about this on ndombolo radio, decided to give it a try.", "reviewDate" : "2016-05-23T00:56:58.5928926+03:00"}, {"productId" : 1391, "reviewText" : "My raven loves to play with it.", "reviewDate" : "2019-10-30T02:20:20.8437022+02:00"}, {"productId" : 4429, "reviewText" : "i use it from now on when i'm in my safehouse.", "reviewDate" : "2019-07-02T21:19:35.275647+03:00"}]} | json_instruct | {"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {"type": "integer"}}, "productReviews": {"type": "array", "items": {"type": "object", "properties": {"productId": {"type": "integer"}, "reviewText": {"type": "string"}, "reviewDate": {"type": "string"}}, "required": ["productId", "reviewText", "reviewDate"]}}}, "required": ["userId", "cartId", "preferredProducts", "productReviews"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"version": {"type": "string"}, "description": {"type": "string"}, "dependencies": {"type": "object", "properties": {"Ractor.Persistence": {"type": "string"}, "AWSSDK.Core": {"type": "string"}, "AWSSDK.S3": {"type": "string"}, "AWSSDK.SQS": {"type": "string"}}, "required": ["Ractor.Persistence", "AWSSDK.Core", "AWSSDK.S3", "AWSSDK.SQS"]}, "frameworks": {"type": "object", "properties": {"net451": {"type": "object", "properties": {}, "required": []}, "netstandard16": {"type": "object", "properties": {}, "required": []}}, "required": ["net451", "netstandard16"]}, "buildOptions": {"type": "object", "properties": {"warningsAsErrors": {"type": "boolean"}, "xmlDoc": {"type": "boolean"}, "compile": {"type": "array", "items": {"type": "string"}}, "exclude": {"type": "array", "items": {}}, "define": {"type": "array", "items": {"type": "string"}}, "nowarn": {"type": "array", "items": {}}, "embed": {"type": "object", "properties": {"mappings": {"type": "object", "properties": {}, "required": []}}, "required": ["mappings"]}}, "required": ["warningsAsErrors", "xmlDoc", "compile", "exclude", "define", "nowarn", "embed"]}, "authors": {"type": "array", "items": {"type": "string"}}, "copyright": {"type": "string"}, "packOptions": {"type": "object", "properties": {"owners": {"type": "array", "items": {"type": "string"}}, "summary": {"type": "string"}, "repository": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "licenseUrl": {"type": "string"}, "iconUrl": {"type": "string"}, "projectUrl": {"type": "string"}, "tags": {"type": "array", "items": {"type": "string"}}}, "required": ["owners", "summary", "repository", "licenseUrl", "iconUrl", "projectUrl", "tags"]}}, "required": ["version", "description", "dependencies", "frameworks", "buildOptions", "authors", "copyright", "packOptions"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"version" : "0.7.0-*", "description" : "Ractor.Persistence", "dependencies" : {"Ractor.Persistence" : "0.*", "AWSSDK.Core" : "3.3.7", "AWSSDK.S3" : "3.3.5.2", "AWSSDK.SQS" : "3.3.1.5"}, "frameworks" : {"net451" : {}, "netstandard16" : {}}, "buildOptions" : {"warningsAsErrors" : false, "xmlDoc" : true, "compile" : ["../../src/Ractor.Persistence.AWS/**/*.cs"], "exclude" : [], "define" : ["TRACE"], "nowarn" : [], "embed" : {"mappings" : {}}}, "authors" : ["Victor Baybekov"], "copyright" : "Copyright 2016", "packOptions" : {"owners" : ["Victor Baybekov"], "summary" : "Redis based distributed actors + Dead simple API for distributed POCOs persistence", "repository" : {"url" : "https://github.com/buybackoff/Ractor"}, "licenseUrl" : "http://github.com/buybackoff/Ractor/blob/master/LICENSE.txt", "iconUrl" : "https://raw.githubusercontent.com/buybackoff/Ractor/master/docs/files/img/logo.png", "projectUrl" : "https://github.com/buybackoff/Ractor", "tags" : ["Redis", "Actors"]}} | json_instruct | {"type": "object", "properties": {"version": {"type": "string"}, "description": {"type": "string"}, "dependencies": {"type": "object", "properties": {"Ractor.Persistence": {"type": "string"}, "AWSSDK.Core": {"type": "string"}, "AWSSDK.S3": {"type": "string"}, "AWSSDK.SQS": {"type": "string"}}, "required": ["Ractor.Persistence", "AWSSDK.Core", "AWSSDK.S3", "AWSSDK.SQS"]}, "frameworks": {"type": "object", "properties": {"net451": {"type": "object", "properties": {}, "required": []}, "netstandard16": {"type": "object", "properties": {}, "required": []}}, "required": ["net451", "netstandard16"]}, "buildOptions": {"type": "object", "properties": {"warningsAsErrors": {"type": "boolean"}, "xmlDoc": {"type": "boolean"}, "compile": {"type": "array", "items": {"type": "string"}}, "exclude": {"type": "array", "items": {}}, "define": {"type": "array", "items": {"type": "string"}}, "nowarn": {"type": "array", "items": {}}, "embed": {"type": "object", "properties": {"mappings": {"type": "object", "properties": {}, "required": []}}, "required": ["mappings"]}}, "required": ["warningsAsErrors", "xmlDoc", "compile", "exclude", "define", "nowarn", "embed"]}, "authors": {"type": "array", "items": {"type": "string"}}, "copyright": {"type": "string"}, "packOptions": {"type": "object", "properties": {"owners": {"type": "array", "items": {"type": "string"}}, "summary": {"type": "string"}, "repository": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "licenseUrl": {"type": "string"}, "iconUrl": {"type": "string"}, "projectUrl": {"type": "string"}, "tags": {"type": "array", "items": {"type": "string"}}}, "required": ["owners", "summary", "repository", "licenseUrl", "iconUrl", "projectUrl", "tags"]}}, "required": ["version", "description", "dependencies", "frameworks", "buildOptions", "authors", "copyright", "packOptions"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"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"}, "picture": {"type": "object", "properties": {"filesize": {"type": "integer"}, "fullUrl": {"type": "string"}, "hash": {"type": "string"}, "height": {"type": "integer"}, "lqip": {"type": "string"}, "url": {"type": "string"}, "width": {"type": "integer"}}, "required": ["filesize", "fullUrl", "hash", "height", "lqip", "url", "width"]}, "score": {"type": "object", "properties": {"comments": {"type": "integer"}, "downs": {"type": "integer"}, "ratio": {"type": "integer"}, "ups": {"type": "integer"}, "value": {"type": "integer"}}, "required": ["comments", "downs", "ratio", "ups", "value"]}, "subreddit": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "name"]}, "tags": {"type": "array", "items": {}}, "title": {"type": "string"}, "url": {"type": "string"}}, "required": ["author", "date", "id", "picture", "score", "subreddit", "tags", "title", "url"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"author" : {"id" : "t2_jds14", "name" : "victorh_"}, "date" : {"day" : 1641859200, "full" : 1641884359, "month" : 1640995200, "week" : 1641686400}, "id" : "t3_s16tdk", "picture" : {"filesize" : 68859, "fullUrl" : "https://preview.redd.it/f6fejtfxa0b81.jpg?width=4032&format=pjpg&auto=webp&s=4ff5fc0c1f824055e37df7cbe1a7538b153659bd", "hash" : "63373ffc56", "height" : 360, "lqip" : "data:image/jpg;base64,/9j/2wBDAAYEBQYFBAYGBQYHBwYIChAKCgkJChQODwwQFxQYGBcUFhYaHSUfGhsjHBYWICwgIyYnKSopGR8tMC0oMCUoKSj/2wBDAQcHBwoIChMKChMoGhYaKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCj/wAARCAAJABADASIAAhEBAxEB/8QAFAABAAAAAAAAAAAAAAAAAAAAB//EACQQAAEDAwMEAwAAAAAAAAAAAAECAxEABAUGIXESEzQ1c4Gy/8QAFQEBAQAAAAAAAAAAAAAAAAAAAgP/xAAYEQEBAAMAAAAAAAAAAAAAAAARAAESIf/aAAwDAQACEQMRAD8AP8PY6gbSbhmxeUypJLaWm0uCJgDaYj6po0thMReaRU/mE27WS61QFjtECNhEbkweaLcB5Y5FLL/omvlH5NT16slxf//Z", "url" : "https://preview.redd.it/f6fejtfxa0b81.jpg?width=640&crop=smart&auto=webp&s=b1604beef3c61a770df8cfc013c14f3e221c64db", "width" : 640}, "score" : {"comments" : 5, "downs" : 0, "ratio" : 1, "ups" : 136, "value" : 136}, "subreddit" : {"id" : "t5_2xy5e", "name" : "TerrainBuilding"}, "tags" : [], "title" : "3 variations/seasons of the same board (6x8 each). Feedback/thoughts welcome and appreciated", "url" : "https://www.reddit.com/r/TerrainBuilding/comments/s16tdk/3_variationsseasons_of_the_same_board_6x8_each/"} | 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"}, "picture": {"type": "object", "properties": {"filesize": {"type": "integer"}, "fullUrl": {"type": "string"}, "hash": {"type": "string"}, "height": {"type": "integer"}, "lqip": {"type": "string"}, "url": {"type": "string"}, "width": {"type": "integer"}}, "required": ["filesize", "fullUrl", "hash", "height", "lqip", "url", "width"]}, "score": {"type": "object", "properties": {"comments": {"type": "integer"}, "downs": {"type": "integer"}, "ratio": {"type": "integer"}, "ups": {"type": "integer"}, "value": {"type": "integer"}}, "required": ["comments", "downs", "ratio", "ups", "value"]}, "subreddit": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "name"]}, "tags": {"type": "array", "items": {}}, "title": {"type": "string"}, "url": {"type": "string"}}, "required": ["author", "date", "id", "picture", "score", "subreddit", "tags", "title", "url"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"900784509": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900784510": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900784511": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}}, "required": ["900784509", "900784510", "900784511"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"900784509" : {"nama" : "TPS 1", "dapil" : [9101, 19104, 2910701]}, "900784510" : {"nama" : "TPS 2", "dapil" : [9101, 19104, 2910701]}, "900784511" : {"nama" : "TPS 3", "dapil" : [9101, 19104, 2910701]}} | json_instruct | {"type": "object", "properties": {"900784509": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900784510": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900784511": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}}, "required": ["900784509", "900784510", "900784511"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"type": {"type": "string"}, "id": {"type": "string"}, "properties": {"type": "object", "properties": {"addr:city": {"type": "string"}, "addr:country": {"type": "string"}, "addr:housenumber": {"type": "string"}, "addr:postcode": {"type": "string"}, "addr:street": {"type": "string"}, "name": {"type": "string"}, "operator": {"type": "string"}, "shop": {"type": "string"}, "id": {"type": "string"}}, "required": ["addr:city", "addr:country", "addr:housenumber", "addr:postcode", "addr:street", "name", "operator", "shop", "id"]}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "number"}}}, "required": ["type", "coordinates"]}}, "required": ["type", "id", "properties", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"type" : "Feature", "id" : "node/2478761710", "properties" : {"addr:city" : "Schmedeswurth", "addr:country" : "DE", "addr:housenumber" : "10", "addr:postcode" : "25724", "addr:street" : "Schmedeswurth", "name" : "Hof Hinrichs", "operator" : "Anke und Peter Hinrichs", "shop" : "farm", "id" : "node/2478761710"}, "geometry" : {"type" : "Point", "coordinates" : [9.04126, 53.9260784]}} | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "id": {"type": "string"}, "properties": {"type": "object", "properties": {"addr:city": {"type": "string"}, "addr:country": {"type": "string"}, "addr:housenumber": {"type": "string"}, "addr:postcode": {"type": "string"}, "addr:street": {"type": "string"}, "name": {"type": "string"}, "operator": {"type": "string"}, "shop": {"type": "string"}, "id": {"type": "string"}}, "required": ["addr:city", "addr:country", "addr:housenumber", "addr:postcode", "addr:street", "name", "operator", "shop", "id"]}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "number"}}}, "required": ["type", "coordinates"]}}, "required": ["type", "id", "properties", "geometry"], "$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"}, "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" : 404373739, "type" : "Feature", "properties" : {"src:alt_label" : "quattroshapes", "src:geom" : "quattroshapes", "wof:geomhash" : "db10187bf991d33e9e2a6aa28cbfc9fe", "wof:id" : 404373739, "wof:repo" : "whosonfirst-data-admin-fr"}, "bbox" : [2.05551838549873, 48.68545492351281, 2.11033269282142, 48.72324890257194], "geometry" : {"coordinates" : [[[2.08207880505594, 48.68545492351281], [2.06976314150178, 48.68893056825291], [2.06651158070399, 48.68689923957145], [2.05565873854103, 48.68678680606563], [2.05551838549873, 48.6998196481853], [2.06656086732843, 48.71761773320334], [2.07237408011783, 48.72324890257194], [2.07323928766173, 48.71662637691697], [2.08714237887945, 48.71989975473446], [2.10074443921988, 48.71548759714227], [2.10553754688927, 48.71658502147178], [2.10769328871987, 48.7177075324668], [2.11033269282142, 48.71438114119037], [2.09718344540463, 48.70052006317449], [2.09785260766397, 48.69403069952936], [2.08933140791293, 48.69804070884829], [2.08207880505594, 48.68545492351281]]], "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#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "description": {"type": "string"}, "user": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "email": {"type": "string"}, "paypal_email": {"type": "null"}, "homepage": {"type": "null"}, "about": {"type": "null"}, "license": {"type": "null"}}, "required": ["id", "name", "email", "paypal_email", "homepage", "about", "license"]}, "updated": {"type": "string"}, "weekly_install_count": {"type": "integer"}, "total_install_count": {"type": "integer"}, "rating": {"type": "null"}, "after_screenshot_name": {"type": "string"}, "obsoleting_style_id": {"type": "null"}, "obsoleting_style_name": {"type": "null"}, "obsolete": {"type": "integer"}, "admin_delete_reason_id": {"type": "null"}, "obsoletion_message": {"type": "null"}, "screenshots": {"type": "null"}, "license": {"type": "null"}, "created": {"type": "string"}, "category": {"type": "string"}, "raw_subcategory": {"type": "string"}, "subcategory": {"type": "string"}, "additional_info": {"type": "null"}, "style_tags": {"type": "array", "items": {}}, "css": {"type": "string"}, "discussions": {"type": "array", "items": {}}, "discussionsCount": {"type": "integer"}, "commentsCount": {"type": "integer"}, "userjs_url": {"type": "string"}, "style_settings": {"type": "array", "items": {}}}, "required": ["id", "name", "description", "user", "updated", "weekly_install_count", "total_install_count", "rating", "after_screenshot_name", "obsoleting_style_id", "obsoleting_style_name", "obsolete", "admin_delete_reason_id", "obsoletion_message", "screenshots", "license", "created", "category", "raw_subcategory", "subcategory", "additional_info", "style_tags", "css", "discussions", "discussionsCount", "commentsCount", "userjs_url", "style_settings"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : 12041, "name" : "Head Injury Theater Work-safe changes", "description" : "Changes the site style of Head Injury theater to make it 'look' more work appropriate.", "user" : {"id" : 16202, "name" : "SeiferTim", "email" : "redacted", "paypal_email" : null, "homepage" : null, "about" : null, "license" : null}, "updated" : "2008-11-12T21:54:34.000Z", "weekly_install_count" : 0, "total_install_count" : 54, "rating" : null, "after_screenshot_name" : "https://userstyles.org/auto_style_screenshots/12041-after.png?r=1460203590", "obsoleting_style_id" : null, "obsoleting_style_name" : null, "obsolete" : 0, "admin_delete_reason_id" : null, "obsoletion_message" : null, "screenshots" : null, "license" : null, "created" : "2008-11-12T21:54:34.000Z", "category" : "site", "raw_subcategory" : "headinjurytheater", "subcategory" : "headinjurytheater", "additional_info" : null, "style_tags" : [], "css" : "@namespace url(http://www.w3.org/1999/xhtml);\r\n\r\n@-moz-document domain(\"www.headinjurytheater.com\") {\r\n\r\nbody {\r\nbackground-image:none !important;\r\nbackground-color:#eFeFeF !important;\r\n}\r\n\r\nfont {\r\nfont-size:14px !important;\r\ncolor:#000000 !important;\r\nmargin:4px !important;\r\nfont-family: \"Arial\" !important;\r\n}\r\n\r\np {\r\nmargin:2em !important;\r\ntext-indent:1em !important;\r\n}\r\n\r\na {\r\ncolor:#000099 !important;\r\nmargin:4px !important;\r\n}\r\na:hover {\r\ncolor:#3366FF !important;\r\n}\r\n\r\nimg {\r\ndisplay: none !important;\r\n}\r\n\r\ntd {\r\nbackground-image:none !important;\r\nbackground-color:#FFFFFF !important;\r\n}\r\n\r\ntable {\r\nwidth:70% !important;\r\n}\r\n\r\n}", "discussions" : [], "discussionsCount" : 0, "commentsCount" : 0, "userjs_url" : "/styles/userjs/12041/head-injury-theater-work-safe-changes.user.js", "style_settings" : []} | json_instruct | {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "description": {"type": "string"}, "user": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "email": {"type": "string"}, "paypal_email": {"type": "null"}, "homepage": {"type": "null"}, "about": {"type": "null"}, "license": {"type": "null"}}, "required": ["id", "name", "email", "paypal_email", "homepage", "about", "license"]}, "updated": {"type": "string"}, "weekly_install_count": {"type": "integer"}, "total_install_count": {"type": "integer"}, "rating": {"type": "null"}, "after_screenshot_name": {"type": "string"}, "obsoleting_style_id": {"type": "null"}, "obsoleting_style_name": {"type": "null"}, "obsolete": {"type": "integer"}, "admin_delete_reason_id": {"type": "null"}, "obsoletion_message": {"type": "null"}, "screenshots": {"type": "null"}, "license": {"type": "null"}, "created": {"type": "string"}, "category": {"type": "string"}, "raw_subcategory": {"type": "string"}, "subcategory": {"type": "string"}, "additional_info": {"type": "null"}, "style_tags": {"type": "array", "items": {}}, "css": {"type": "string"}, "discussions": {"type": "array", "items": {}}, "discussionsCount": {"type": "integer"}, "commentsCount": {"type": "integer"}, "userjs_url": {"type": "string"}, "style_settings": {"type": "array", "items": {}}}, "required": ["id", "name", "description", "user", "updated", "weekly_install_count", "total_install_count", "rating", "after_screenshot_name", "obsoleting_style_id", "obsoleting_style_name", "obsolete", "admin_delete_reason_id", "obsoletion_message", "screenshots", "license", "created", "category", "raw_subcategory", "subcategory", "additional_info", "style_tags", "css", "discussions", "discussionsCount", "commentsCount", "userjs_url", "style_settings"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"actors": {"type": "array", "items": {}}, "countries": {"type": "array", "items": {"type": "string"}}, "enb_end_date": {"type": "string"}, "enb_long_title": {"type": "string"}, "enb_short_title": {"type": "string"}, "enb_start_date": {"type": "string"}, "enb_url": {"type": "string"}, "id": {"type": "string"}, "section_title": {"type": "string"}, "sentences": {"type": "array", "items": {"type": "string"}}, "subtype": {"type": "string"}, "topics": {"type": "array", "items": {}}, "type": {"type": "string"}}, "required": ["actors", "countries", "enb_end_date", "enb_long_title", "enb_short_title", "enb_start_date", "enb_url", "id", "section_title", "sentences", "subtype", "topics", "type"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"actors" : [], "countries" : ["Egypt"], "enb_end_date" : "01-Jun-09", "enb_long_title" : "Bonn Climate Change Talks - June 2009", "enb_short_title" : "SB 30", "enb_start_date" : "01-Jun-09", "enb_url" : "http://www.iisd.ca/vol12/enb12410e.html", "id" : "enb12410e_7", "section_title" : "UNFCCC TECHNICAL WORKSHOP UNDER THE NAIROBI WORK PROGRAMME:", "sentences" : ["The UNFCCC Technical Workshop on Increasing Economic Resilience to Climate Change and Reducing Reliance on Vulnerable Economic Sectors through Economic Diversification took place from 28-30 April 2009, in Cairo, Egypt.", "The workshop was convened under the NWP at SBSTA s request with a view to promoting understanding, as well as the development and dissemination of measures, methodologies and tools for increasing economic resilience, including the understanding of social aspects."], "subtype" : "", "topics" : [], "type" : "SPECIAL WORKSHOP"} | json_instruct | {"type": "object", "properties": {"actors": {"type": "array", "items": {}}, "countries": {"type": "array", "items": {"type": "string"}}, "enb_end_date": {"type": "string"}, "enb_long_title": {"type": "string"}, "enb_short_title": {"type": "string"}, "enb_start_date": {"type": "string"}, "enb_url": {"type": "string"}, "id": {"type": "string"}, "section_title": {"type": "string"}, "sentences": {"type": "array", "items": {"type": "string"}}, "subtype": {"type": "string"}, "topics": {"type": "array", "items": {}}, "type": {"type": "string"}}, "required": ["actors", "countries", "enb_end_date", "enb_long_title", "enb_short_title", "enb_start_date", "enb_url", "id", "section_title", "sentences", "subtype", "topics", "type"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"description": {"type": "string"}, "favorite": {"type": "string"}, "length": {"type": "string"}, "likes": {"type": "string"}, "recorded": {"type": "string"}, "speakers": {"type": "array", "items": {"type": "string"}}, "tags": {"type": "array", "items": {}}, "thumbnail_url": {"type": "string"}, "title": {"type": "string"}, "videos": {"type": "array", "items": {"type": "object", "properties": {"code": {"type": "string"}, "type": {"type": "string"}}, "required": ["code", "type"]}}, "views": {"type": "string"}}, "required": ["description", "favorite", "length", "likes", "recorded", "speakers", "tags", "thumbnail_url", "title", "videos", "views"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"description" : "This video explains what are custom background workers, how to use them and in which situation you can take advantage of them for your PostgreSQL servers.This video shows simple examples helping in understanding how to sanely implement your own custom bgworkers, covering also things you should avoid when using such an architecture.", "favorite" : "0", "length" : "01:00:15", "likes" : "1", "recorded" : "2013-09-16", "speakers" : ["michael-paquier"], "tags" : [], "thumbnail_url" : "https://i.ytimg.com/vi/Ct1FidoFd_o/hqdefault.jpg", "title" : "Taking advantage of custom background workers", "videos" : [{"code" : "Ct1FidoFd_o", "type" : "youtube"}], "views" : "115"} | json_instruct | {"type": "object", "properties": {"description": {"type": "string"}, "favorite": {"type": "string"}, "length": {"type": "string"}, "likes": {"type": "string"}, "recorded": {"type": "string"}, "speakers": {"type": "array", "items": {"type": "string"}}, "tags": {"type": "array", "items": {}}, "thumbnail_url": {"type": "string"}, "title": {"type": "string"}, "videos": {"type": "array", "items": {"type": "object", "properties": {"code": {"type": "string"}, "type": {"type": "string"}}, "required": ["code", "type"]}}, "views": {"type": "string"}}, "required": ["description", "favorite", "length", "likes", "recorded", "speakers", "tags", "thumbnail_url", "title", "videos", "views"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"dependencies": {"type": "object", "properties": {"node-fetch": {"type": "string"}, "syncano-server": {"type": "string"}}, "required": ["node-fetch", "syncano-server"]}}, "required": ["dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"dependencies" : {"node-fetch" : "^1.6.3", "syncano-server" : "^0.8.1"}} | json_instruct | {"type": "object", "properties": {"dependencies": {"type": "object", "properties": {"node-fetch": {"type": "string"}, "syncano-server": {"type": "string"}}, "required": ["node-fetch", "syncano-server"]}}, "required": ["dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}}, "required": ["start"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"cors": {"type": "string"}, "express": {"type": "string"}, "mysql2": {"type": "string"}, "sequelize": {"type": "string"}}, "required": ["cors", "express", "mysql2", "sequelize"]}, "devDependencies": {"type": "object", "properties": {"nodemon": {"type": "string"}}, "required": ["nodemon"]}}, "required": ["name", "version", "description", "main", "scripts", "keywords", "author", "license", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "node-api-crud", "version" : "1.0.0", "description" : "Exemplo RESTFUL de CRUD em node JS utilizando EXPRESS e Sequelize", "main" : "index.js", "scripts" : {"start" : "nodemon server.js"}, "keywords" : ["nodejs", "express", "restful", "api", "sequelize", "mysql"], "author" : "Ben Valentim", "license" : "MIT", "dependencies" : {"cors" : "^2.8.5", "express" : "^4.17.1", "mysql2" : "^2.2.5", "sequelize" : "^6.5.0"}, "devDependencies" : {"nodemon" : "^2.0.7"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}}, "required": ["start"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"cors": {"type": "string"}, "express": {"type": "string"}, "mysql2": {"type": "string"}, "sequelize": {"type": "string"}}, "required": ["cors", "express", "mysql2", "sequelize"]}, "devDependencies": {"type": "object", "properties": {"nodemon": {"type": "string"}}, "required": ["nodemon"]}}, "required": ["name", "version", "description", "main", "scripts", "keywords", "author", "license", "dependencies", "devDependencies"], "$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": {"comment": {"type": "string"}, "definition": {"type": "string"}, "orthologs": {"type": "object", "properties": {"K21672": {"type": "string"}}, "required": ["K21672"]}, "name": {"type": "string"}, "product_stoichiometries": {"type": "array", "items": {"type": "string"}}, "enzymes": {"type": "array", "items": {"type": "string"}}, "equation": {"type": "string"}, "glycans": {"type": "boolean"}, "substrate_stoichiometries": {"type": "array", "items": {"type": "string"}}, "rpairs": {"type": "object", "properties": {}, "required": []}, "entry_id": {"type": "string"}, "pathways": {"type": "object", "properties": {"rn00310": {"type": "string"}}, "required": ["rn00310"]}, "products": {"type": "array", "items": {"type": "string"}}, "substrates": {"type": "array", "items": {"type": "string"}}}, "required": ["comment", "definition", "orthologs", "name", "product_stoichiometries", "enzymes", "equation", "glycans", "substrate_stoichiometries", "rpairs", "entry_id", "pathways", "products", "substrates"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"comment" : "NADPH (see R04688)", "definition" : "(2R,5S)-2,5-Diaminohexanoate + H2O + NAD+ <=> 2-Amino-5-oxohexanoate + Ammonia + NADH + H+", "orthologs" : {"K21672" : "2,4-diaminopentanoate dehydrogenase [EC:1.4.1.12 1.4.1.26]"}, "name" : "2,5-Diaminohexanoate:NAD+ oxidoreductase (deaminating)", "product_stoichiometries" : ["1", "1", "1", "1"], "enzymes" : ["1.4.1.12"], "equation" : "C05161 + C00001 + C00003 <=> C05825 + C00014 + C00004 + C00080", "glycans" : false, "substrate_stoichiometries" : ["1", "1", "1"], "rpairs" : {}, "entry_id" : "R04687", "pathways" : {"rn00310" : "Lysine degradation"}, "products" : ["C05825", "C00014", "C00004", "C00080"], "substrates" : ["C05161", "C00001", "C00003"]}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"comment": {"type": "string"}, "definition": {"type": "string"}, "orthologs": {"type": "object", "properties": {"K21672": {"type": "string"}}, "required": ["K21672"]}, "name": {"type": "string"}, "product_stoichiometries": {"type": "array", "items": {"type": "string"}}, "enzymes": {"type": "array", "items": {"type": "string"}}, "equation": {"type": "string"}, "glycans": {"type": "boolean"}, "substrate_stoichiometries": {"type": "array", "items": {"type": "string"}}, "rpairs": {"type": "object", "properties": {}, "required": []}, "entry_id": {"type": "string"}, "pathways": {"type": "object", "properties": {"rn00310": {"type": "string"}}, "required": ["rn00310"]}, "products": {"type": "array", "items": {"type": "string"}}, "substrates": {"type": "array", "items": {"type": "string"}}}, "required": ["comment", "definition", "orthologs", "name", "product_stoichiometries", "enzymes", "equation", "glycans", "substrate_stoichiometries", "rpairs", "entry_id", "pathways", "products", "substrates"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"id": {"type": "string"}, "symbol": {"type": "string"}, "name": {"type": "string"}, "platforms": {"type": "object", "properties": {"waves": {"type": "string"}}, "required": ["waves"]}, "hashing_algorithm": {"type": "null"}, "categories": {"type": "array", "items": {}}, "description": {"type": "object", "properties": {"en": {"type": "string"}}, "required": ["en"]}, "country_origin": {"type": "string"}, "genesis_date": {"type": "null"}, "contract_address": {"type": "string"}, "url": {"type": "string"}, "explorers": {"type": "array", "items": {"type": "string"}}, "twitter": {"type": "string"}, "facebook": {"type": "string"}, "telegram": {"type": "string"}, "reddit": {"type": "string"}}, "required": ["id", "symbol", "name", "platforms", "hashing_algorithm", "categories", "description", "country_origin", "genesis_date", "contract_address", "url", "explorers", "twitter", "facebook", "telegram", "reddit"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "yusra", "symbol" : "yusra", "name" : "YUSRA", "platforms" : {"waves" : "DCveqdzoQG1h6ED28UsdHaegweRx9RMcPxLH2tzpTbCG"}, "hashing_algorithm" : null, "categories" : [], "description" : {"en" : "YUSRA is a young cryptocurrency that has managed to achieve high results in a short period of time and create its own ecosystem, which includes several operating decentralized services. Today YUSRA Global is a dynamically developing IT holding, investments in which may well exceed even the most daring expectations.\r\n\r\n"}, "country_origin" : "RU", "genesis_date" : null, "contract_address" : "DCveqdzoQG1h6ED28UsdHaegweRx9RMcPxLH2tzpTbCG", "url" : "https://yusra.global/", "explorers" : ["https://wavesexplorer.com/tx/DCveqdzoQG1h6ED28UsdHaegweRx9RMcPxLH2tzpTbCG"], "twitter" : "YusraGlobal", "facebook" : "yusraglobalblockchain", "telegram" : "YUSRAGLOBAL", "reddit" : "Yusra_Global/"} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "symbol": {"type": "string"}, "name": {"type": "string"}, "platforms": {"type": "object", "properties": {"waves": {"type": "string"}}, "required": ["waves"]}, "hashing_algorithm": {"type": "null"}, "categories": {"type": "array", "items": {}}, "description": {"type": "object", "properties": {"en": {"type": "string"}}, "required": ["en"]}, "country_origin": {"type": "string"}, "genesis_date": {"type": "null"}, "contract_address": {"type": "string"}, "url": {"type": "string"}, "explorers": {"type": "array", "items": {"type": "string"}}, "twitter": {"type": "string"}, "facebook": {"type": "string"}, "telegram": {"type": "string"}, "reddit": {"type": "string"}}, "required": ["id", "symbol", "name", "platforms", "hashing_algorithm", "categories", "description", "country_origin", "genesis_date", "contract_address", "url", "explorers", "twitter", "facebook", "telegram", "reddit"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "array", "items": {"type": "object", "properties": {"comment": {"type": "string"}, "definition": {"type": "string"}, "orthologs": {"type": "object", "properties": {"K01563": {"type": "string"}}, "required": ["K01563"]}, "name": {"type": "string"}, "product_stoichiometries": {"type": "array", "items": {"type": "string"}}, "enzymes": {"type": "array", "items": {"type": "string"}}, "equation": {"type": "string"}, "glycans": {"type": "boolean"}, "substrate_stoichiometries": {"type": "array", "items": {"type": "string"}}, "rpairs": {"type": "object", "properties": {}, "required": []}, "entry_id": {"type": "string"}, "pathways": {"type": "object", "properties": {"rn00625": {"type": "string"}, "rn01120": {"type": "string"}, "rn01100": {"type": "string"}}, "required": ["rn00625", "rn01120", "rn01100"]}, "products": {"type": "array", "items": {"type": "string"}}, "substrates": {"type": "array", "items": {"type": "string"}}}, "required": ["comment", "definition", "orthologs", "name", "product_stoichiometries", "enzymes", "equation", "glycans", "substrate_stoichiometries", "rpairs", "entry_id", "pathways", "products", "substrates"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"comment" : "", "definition" : "cis-1,3-Dichloropropene + H2O <=> cis-3-Chloro-2-propene-1-ol + Hydrochloric acid", "orthologs" : {"K01563" : "haloalkane dehalogenase [EC:3.8.1.5]"}, "name" : "cis-1,3-Dichloropropene chlorohydrolase", "product_stoichiometries" : ["1", "1"], "enzymes" : ["3.8.1.5"], "equation" : "C06610 + C00001 <=> C06612 + C01327", "glycans" : false, "substrate_stoichiometries" : ["1", "1"], "rpairs" : {}, "entry_id" : "R05368", "pathways" : {"rn00625" : "Chloroalkane and chloroalkene degradation", "rn01120" : "Microbial metabolism in diverse environments", "rn01100" : "Metabolic pathways"}, "products" : ["C06612", "C01327"], "substrates" : ["C06610", "C00001"]}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"comment": {"type": "string"}, "definition": {"type": "string"}, "orthologs": {"type": "object", "properties": {"K01563": {"type": "string"}}, "required": ["K01563"]}, "name": {"type": "string"}, "product_stoichiometries": {"type": "array", "items": {"type": "string"}}, "enzymes": {"type": "array", "items": {"type": "string"}}, "equation": {"type": "string"}, "glycans": {"type": "boolean"}, "substrate_stoichiometries": {"type": "array", "items": {"type": "string"}}, "rpairs": {"type": "object", "properties": {}, "required": []}, "entry_id": {"type": "string"}, "pathways": {"type": "object", "properties": {"rn00625": {"type": "string"}, "rn01120": {"type": "string"}, "rn01100": {"type": "string"}}, "required": ["rn00625", "rn01120", "rn01100"]}, "products": {"type": "array", "items": {"type": "string"}}, "substrates": {"type": "array", "items": {"type": "string"}}}, "required": ["comment", "definition", "orthologs", "name", "product_stoichiometries", "enzymes", "equation", "glycans", "substrate_stoichiometries", "rpairs", "entry_id", "pathways", "products", "substrates"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"toolId": {"type": "string"}, "toolName": {"type": "string"}}, "required": ["toolId", "toolName"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"toolId" : "md5sum", "toolName" : "md5sum"} | json_instruct | {"type": "object", "properties": {"toolId": {"type": "string"}, "toolName": {"type": "string"}}, "required": ["toolId", "toolName"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"rustc": {"type": "integer"}, "features": {"type": "string"}, "target": {"type": "integer"}, "profile": {"type": "integer"}, "path": {"type": "integer"}, "deps": {"type": "array", "items": {}}, "local": {"type": "array", "items": {"type": "object", "properties": {"CheckDepInfo": {"type": "object", "properties": {"dep_info": {"type": "string"}}, "required": ["dep_info"]}}, "required": ["CheckDepInfo"]}}, "rustflags": {"type": "array", "items": {}}, "metadata": {"type": "integer"}}, "required": ["rustc", "features", "target", "profile", "path", "deps", "local", "rustflags", "metadata"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"rustc" : 8423557649333461870, "features" : "[]", "target" : 9071096511286931545, "profile" : 14996655781355331481, "path" : 1036222786711178230, "deps" : [], "local" : [{"CheckDepInfo" : {"dep_info" : "debug/.fingerprint/rocket-webapi-1b8c567ca7e14d8f/dep-bin-rocket_webapi-1b8c567ca7e14d8f"}}], "rustflags" : [], "metadata" : 2829438784568426439} | json_instruct | {"type": "object", "properties": {"rustc": {"type": "integer"}, "features": {"type": "string"}, "target": {"type": "integer"}, "profile": {"type": "integer"}, "path": {"type": "integer"}, "deps": {"type": "array", "items": {}}, "local": {"type": "array", "items": {"type": "object", "properties": {"CheckDepInfo": {"type": "object", "properties": {"dep_info": {"type": "string"}}, "required": ["dep_info"]}}, "required": ["CheckDepInfo"]}}, "rustflags": {"type": "array", "items": {}}, "metadata": {"type": "integer"}}, "required": ["rustc", "features", "target", "profile", "path", "deps", "local", "rustflags", "metadata"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"comment": {"type": "string"}, "name": {"type": "string"}, "offices": {"type": "array", "items": {"type": "object", "properties": {"address": {"type": "string"}, "area": {"type": "string"}, "coordinates": {"type": "object", "properties": {"lat": {"type": "number"}, "lng": {"type": "number"}}, "required": ["lat", "lng"]}}, "required": ["address", "area", "coordinates"]}}, "url": {"type": "string"}}, "required": ["comment", "name", "offices", "url"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"comment" : "Conduit is not Como http://www.conduit.com/", "name" : "Como (was Keeprz by Zipory)", "offices" : [{"address" : "2 Ilan Ramon Street, Ness Ziona, 7403635 Israel", "area" : "Rehovot", "coordinates" : {"lat" : 31.9178351, "lng" : 34.804564400000004}}], "url" : "http://www.como.com/"} | json_instruct | {"type": "object", "properties": {"comment": {"type": "string"}, "name": {"type": "string"}, "offices": {"type": "array", "items": {"type": "object", "properties": {"address": {"type": "string"}, "area": {"type": "string"}, "coordinates": {"type": "object", "properties": {"lat": {"type": "number"}, "lng": {"type": "number"}}, "required": ["lat", "lng"]}}, "required": ["address", "area", "coordinates"]}}, "url": {"type": "string"}}, "required": ["comment", "name", "offices", "url"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"name": {"type": "object", "properties": {"text": {"type": "string"}, "translate": {"type": "boolean"}}, "required": ["text", "translate"]}, "lore": {"type": "object", "properties": {"text": {"type": "string"}, "translate": {"type": "boolean"}}, "required": ["text", "translate"]}, "x": {"type": "integer"}, "z": {"type": "integer"}, "travel_region": {"type": "string"}, "faction": {"type": "string"}}, "required": ["name", "lore", "x", "z", "travel_region", "faction"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : {"text" : "waypoint.lotr.mount_methedras", "translate" : true}, "lore" : {"text" : "waypoint.lotr.mount_methedras.lore", "translate" : true}, "x" : 1111, "z" : 1031, "travel_region" : "lotr:misty_mountains", "faction" : ""} | json_instruct | {"type": "object", "properties": {"name": {"type": "object", "properties": {"text": {"type": "string"}, "translate": {"type": "boolean"}}, "required": ["text", "translate"]}, "lore": {"type": "object", "properties": {"text": {"type": "string"}, "translate": {"type": "boolean"}}, "required": ["text", "translate"]}, "x": {"type": "integer"}, "z": {"type": "integer"}, "travel_region": {"type": "string"}, "faction": {"type": "string"}}, "required": ["name", "lore", "x", "z", "travel_region", "faction"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"appid": {"type": "integer"}, "name": {"type": "string"}, "windows": {"type": "boolean"}, "mac": {"type": "boolean"}, "linux": {"type": "boolean"}, "early_access": {"type": "boolean"}, "lookup_time": {"type": "integer"}}, "required": ["appid", "name", "windows", "mac", "linux", "early_access", "lookup_time"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"appid" : 270310, "name" : "Dominique Pamplemousse", "windows" : true, "mac" : true, "linux" : false, "early_access" : false, "lookup_time" : 1490974465} | json_instruct | {"type": "object", "properties": {"appid": {"type": "integer"}, "name": {"type": "string"}, "windows": {"type": "boolean"}, "mac": {"type": "boolean"}, "linux": {"type": "boolean"}, "early_access": {"type": "boolean"}, "lookup_time": {"type": "integer"}}, "required": ["appid", "name", "windows", "mac", "linux", "early_access", "lookup_time"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "href": {"type": "string"}, "url": {"type": "string"}, "description": {"type": "string"}, "isoPatterns": {"type": "null"}, "count": {"type": "integer"}, "qualityRules": {"type": "null"}, "qualityTemplates": {"type": "null"}}, "required": ["id", "name", "href", "url", "description", "isoPatterns", "count", "qualityRules", "qualityTemplates"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "STIG-V-222493", "name" : "The application must provide a report generation capability that supports on-demand reporting requirements.", "href" : "AIP/quality-standards/STIG-V5/items/STIG-V-222493", "url" : "https://www.stigviewer.com/stig/application_security_and_development/2020-09-30/finding/V-222493", "description" : "The report generation capability must support on-demand reporting in order to facilitate the organization's ability to generate incident reports as needed to better handle larger-scale or more complex security incidents.\n\nThe report generation capability provided by the application must be capable of generating on-demand (i.e., customizable, ad-hoc, and as-needed) reports. On-demand reporting allows personnel to report issues more rapidly to more effectively meet reporting requirements. Collecting log data and aggregating it to present the data in a single, consolidated report achieves this objective.\n\nThis requirement is specific to applications with report generation capabilities; however, applications need to support on-demand reporting requirements.", "isoPatterns" : null, "count" : 0, "qualityRules" : null, "qualityTemplates" : null} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "href": {"type": "string"}, "url": {"type": "string"}, "description": {"type": "string"}, "isoPatterns": {"type": "null"}, "count": {"type": "integer"}, "qualityRules": {"type": "null"}, "qualityTemplates": {"type": "null"}}, "required": ["id", "name", "href", "url", "description", "isoPatterns", "count", "qualityRules", "qualityTemplates"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following 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" : ["Preheat oven to 400 degrees F (200 degrees C).", "Mix ground beef, bread crumbs, egg, onion, black pepper, nutmeg, and salt together in a bowl; form into small balls. Arrange balls on a baking sheet.", "Bake in the preheated oven for 10 minutes. Flip meatballs and continue baking until cooked through, 12 to 15 minutes. An instant-read thermometer inserted into the center should read at least 160 degrees F (70 degrees C)."], "ingredients" : ["1 pound ground beef", "1/2 cup bread crumbs", "1 large egg", "2 tablespoons grated onion", "1/8 teaspoon ground black pepper", "1/8 teaspoon ground nutmeg", "salt to taste"], "language" : "en-US", "source" : "allrecipes.com", "tags" : [], "title" : "Grandma's Swedish Meatballs", "url" : "http://allrecipes.com/recipe/242347/grandmas-swedish-meatballs/"} | 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#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"brief": {"type": "string"}, "long": {"type": "string"}}, "required": ["brief", "long"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"brief" : "pupil", "long" : "<i>Meaning:</i> a \"pupil\".<br/><i>Usage:</i> scholar.<br/><i>Source:</i> from \"H3925\";"} | json_instruct | {"type": "object", "properties": {"brief": {"type": "string"}, "long": {"type": "string"}}, "required": ["brief", "long"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"feedstocks": {"type": "array", "items": {"type": "string"}}}, "required": ["feedstocks"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"feedstocks" : ["pyterate"]} | json_instruct | {"type": "object", "properties": {"feedstocks": {"type": "array", "items": {"type": "string"}}}, "required": ["feedstocks"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "size": {"type": "integer"}, "link": {"type": "string"}, "created_at": {"type": "string"}, "downloads": {"type": "integer"}, "linkid": {"type": "string"}, "convert": {"type": "string"}, "achorname": {"type": "string"}, "subscribe": {"type": "string"}, "avatar-img": {"type": "string"}, "folderName": {"type": "string"}, "thumbUrl": {"type": "string"}}, "required": ["name", "size", "link", "created_at", "downloads", "linkid", "convert", "achorname", "subscribe", "avatar-img", "folderName", "thumbUrl"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"name" : "\u3010\u5bb6\u5ead\u6444\u50cf\u5934\u7834\u89e3\u3011\u5077\u7aa5\u5927\u5976\u7f8e\u7709\u5149\u5c41\u5c41\u62ff\u954a\u5b50\u62d4\u903c\u6bdb \u5b8c\u4e86\u518d\u62d4\u811a\u6307\u6bdb \u59ff\u52bf\u4eae\u773c", "size" : 4937222, "link" : "https://streamtape.com/e/gYz0VB9Y2GIqomW", "created_at" : "2022\u5e7405\u670802\u65e5 15:49:54", "downloads" : 0, "linkid" : "gYz0VB9Y2GIqomW", "convert" : "converted", "achorname" : "\u4e38\u5b50\u5466", "subscribe" : "130.3\u4e07\u4f4d\u8ba2\u9605\u8005", "avatar-img" : "https://huyaimg.msstatic.com/avatar/1022/07/ec5fef7c7662720286fbbb12395390_180_135.jpg?1628178596?458751", "folderName" : "\u3010\u5bb6\u5ead\u6444\u50cf\u5934\u7834\u89e3\u3011\u5077\u7aa5\u5927\u5976\u7f8e\u7709\u5149\u5c41\u5c41\u62ff\u954a\u5b50\u62d4\u903c\u6bdb \u5b8c\u4e86\u518d\u62d4\u811a\u6307\u6bdb \u59ff\u52bf\u4eae\u773c", "thumbUrl" : "https://thumb.tapecontent.net/thumb/gYz0VB9Y2GIqomW/LO6vjk0V8JcRKOp.jpg"}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "size": {"type": "integer"}, "link": {"type": "string"}, "created_at": {"type": "string"}, "downloads": {"type": "integer"}, "linkid": {"type": "string"}, "convert": {"type": "string"}, "achorname": {"type": "string"}, "subscribe": {"type": "string"}, "avatar-img": {"type": "string"}, "folderName": {"type": "string"}, "thumbUrl": {"type": "string"}}, "required": ["name", "size", "link", "created_at", "downloads", "linkid", "convert", "achorname", "subscribe", "avatar-img", "folderName", "thumbUrl"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"code": {"type": "integer"}, "msg": {"type": "string"}, "data": {"type": "object", "properties": {"categories": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "title": {"type": "string"}, "url": {"type": "string"}, "description": {"type": "string"}, "number": {"type": "integer"}, "tags": {"type": "string"}}, "required": ["id", "title", "url", "description", "number", "tags"]}}, "pagination": {"type": "object", "properties": {"currentPageNum": {"type": "integer"}, "pageSize": {"type": "integer"}, "pageCount": {"type": "integer"}, "windowSize": {"type": "integer"}, "recordCount": {"type": "integer"}, "pageNums": {"type": "array", "items": {"type": "integer"}}}, "required": ["currentPageNum", "pageSize", "pageCount", "windowSize", "recordCount", "pageNums"]}}, "required": ["categories", "pagination"]}}, "required": ["code", "msg", "data"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"code" : 0, "msg" : "", "data" : {"categories" : [{"id" : 3, "title" : "\u4e16\u754c\uff0c\u4f60\u597d\uff01", "url" : "lift", "description" : "\u4e16\u754c\uff0c\u4f60\u597d\uff01\u4e16\u754c\uff0c\u4f60\u597d\uff01\u4e16\u754c\uff0c\u4f60\u597d\uff01", "number" : 1, "tags" : "a, b, c"}, {"id" : 3, "title" : "\u4e16\u754c\uff0c\u4f60\u597d\uff01", "url" : "lift", "description" : "\u4e16\u754c\uff0c\u4f60\u597d\uff01\u4e16\u754c\uff0c\u4f60\u597d\uff01\u4e16\u754c\uff0c\u4f60\u597d\uff01", "number" : 1, "tags" : "a, b, c"}], "pagination" : {"currentPageNum" : 16, "pageSize" : 15, "pageCount" : 100, "windowSize" : 20, "recordCount" : 1, "pageNums" : [1]}}} | json_instruct | {"type": "object", "properties": {"code": {"type": "integer"}, "msg": {"type": "string"}, "data": {"type": "object", "properties": {"categories": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "title": {"type": "string"}, "url": {"type": "string"}, "description": {"type": "string"}, "number": {"type": "integer"}, "tags": {"type": "string"}}, "required": ["id", "title", "url", "description", "number", "tags"]}}, "pagination": {"type": "object", "properties": {"currentPageNum": {"type": "integer"}, "pageSize": {"type": "integer"}, "pageCount": {"type": "integer"}, "windowSize": {"type": "integer"}, "recordCount": {"type": "integer"}, "pageNums": {"type": "array", "items": {"type": "integer"}}}, "required": ["currentPageNum", "pageSize", "pageCount", "windowSize", "recordCount", "pageNums"]}}, "required": ["categories", "pagination"]}}, "required": ["code", "msg", "data"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"name": {"type": "string"}, "symbol": {"type": "string"}, "logoURI": {"type": "string"}, "decimals": {"type": "integer"}, "address": {"type": "string"}, "chainId": {"type": "integer"}, "tags": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "symbol", "logoURI", "decimals", "address", "chainId", "tags"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "PENGU COIN", "symbol" : "PENGU", "logoURI" : "https://raw.githubusercontent.com/CrazyLoafofBread/SolanaCryptoProject/main/PengToken.png", "decimals" : 0, "address" : "2muXUaump8kdxheK4MtFNj1W2z6aVrB9mGK6W9eC7tJF", "chainId" : 101, "tags" : ["social-token"]} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "symbol": {"type": "string"}, "logoURI": {"type": "string"}, "decimals": {"type": "integer"}, "address": {"type": "string"}, "chainId": {"type": "integer"}, "tags": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "symbol", "logoURI", "decimals", "address", "chainId", "tags"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"scripts": {"type": "object", "properties": {"dev": {"type": "string"}, "build": {"type": "string"}, "test": {"type": "string"}}, "required": ["dev", "build", "test"]}, "devDependencies": {"type": "object", "properties": {"@babel/core": {"type": "string"}, "@babel/preset-env": {"type": "string"}, "@babel/preset-react": {"type": "string"}, "babel-loader": {"type": "string"}, "clean-webpack-plugin": {"type": "string"}, "css-loader": {"type": "string"}, "file-loader": {"type": "string"}, "html-webpack-plugin": {"type": "string"}, "less": {"type": "string"}, "less-loader": {"type": "string"}, "mini-css-extract-plugin": {"type": "string"}, "optimize-css-assets-webpack-plugin": {"type": "string"}, "style-loader": {"type": "string"}, "url-loader": {"type": "string"}, "webpack": {"type": "string"}, "webpack-cli": {"type": "string"}, "webpack-dev-server": {"type": "string"}, "webpack-merge": {"type": "string"}}, "required": ["@babel/core", "@babel/preset-env", "@babel/preset-react", "babel-loader", "clean-webpack-plugin", "css-loader", "file-loader", "html-webpack-plugin", "less", "less-loader", "mini-css-extract-plugin", "optimize-css-assets-webpack-plugin", "style-loader", "url-loader", "webpack", "webpack-cli", "webpack-dev-server", "webpack-merge"]}, "dependencies": {"type": "object", "properties": {"react": {"type": "string"}, "react-dom": {"type": "string"}}, "required": ["react", "react-dom"]}, "browserslist": {"type": "object", "properties": {"production": {"type": "array", "items": {"type": "string"}}, "development": {"type": "array", "items": {"type": "string"}}}, "required": ["production", "development"]}}, "required": ["scripts", "devDependencies", "dependencies", "browserslist"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"scripts" : {"dev" : "webpack-dev-server --inline --config ./config/webpack.dev.js", "build" : "webpack --config ./config/webpack.prod.js", "test" : "cd dist && static-server"}, "devDependencies" : {"@babel/core" : "^7.8.7", "@babel/preset-env" : "^7.8.7", "@babel/preset-react" : "^7.8.3", "babel-loader" : "^8.0.6", "clean-webpack-plugin" : "^3.0.0", "css-loader" : "^3.4.2", "file-loader" : "^5.1.0", "html-webpack-plugin" : "^3.2.0", "less" : "^3.11.1", "less-loader" : "^5.0.0", "mini-css-extract-plugin" : "^0.9.0", "optimize-css-assets-webpack-plugin" : "^5.0.3", "style-loader" : "^1.1.3", "url-loader" : "^3.0.0", "webpack" : "^4.42.0", "webpack-cli" : "^3.3.11", "webpack-dev-server" : "^3.10.3", "webpack-merge" : "^4.2.2"}, "dependencies" : {"react" : "^16.13.0", "react-dom" : "^16.13.0"}, "browserslist" : {"production" : ["> 0.2%", "last 2 versions"], "development" : ["last 1 chrome version", "last 1 firefox version", "last 1 safari version"]}} | json_instruct | {"type": "object", "properties": {"scripts": {"type": "object", "properties": {"dev": {"type": "string"}, "build": {"type": "string"}, "test": {"type": "string"}}, "required": ["dev", "build", "test"]}, "devDependencies": {"type": "object", "properties": {"@babel/core": {"type": "string"}, "@babel/preset-env": {"type": "string"}, "@babel/preset-react": {"type": "string"}, "babel-loader": {"type": "string"}, "clean-webpack-plugin": {"type": "string"}, "css-loader": {"type": "string"}, "file-loader": {"type": "string"}, "html-webpack-plugin": {"type": "string"}, "less": {"type": "string"}, "less-loader": {"type": "string"}, "mini-css-extract-plugin": {"type": "string"}, "optimize-css-assets-webpack-plugin": {"type": "string"}, "style-loader": {"type": "string"}, "url-loader": {"type": "string"}, "webpack": {"type": "string"}, "webpack-cli": {"type": "string"}, "webpack-dev-server": {"type": "string"}, "webpack-merge": {"type": "string"}}, "required": ["@babel/core", "@babel/preset-env", "@babel/preset-react", "babel-loader", "clean-webpack-plugin", "css-loader", "file-loader", "html-webpack-plugin", "less", "less-loader", "mini-css-extract-plugin", "optimize-css-assets-webpack-plugin", "style-loader", "url-loader", "webpack", "webpack-cli", "webpack-dev-server", "webpack-merge"]}, "dependencies": {"type": "object", "properties": {"react": {"type": "string"}, "react-dom": {"type": "string"}}, "required": ["react", "react-dom"]}, "browserslist": {"type": "object", "properties": {"production": {"type": "array", "items": {"type": "string"}}, "development": {"type": "array", "items": {"type": "string"}}}, "required": ["production", "development"]}}, "required": ["scripts", "devDependencies", "dependencies", "browserslist"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"edges": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}, "features": {"type": "object", "properties": {"0": {"type": "string"}, "1": {"type": "string"}, "2": {"type": "string"}, "3": {"type": "string"}, "4": {"type": "string"}, "5": {"type": "string"}, "6": {"type": "string"}, "7": {"type": "string"}, "8": {"type": "string"}, "9": {"type": "string"}, "10": {"type": "string"}, "11": {"type": "string"}, "12": {"type": "string"}, "13": {"type": "string"}, "14": {"type": "string"}, "15": {"type": "string"}, "16": {"type": "string"}, "17": {"type": "string"}, "18": {"type": "string"}, "19": {"type": "string"}, "20": {"type": "string"}, "21": {"type": "string"}, "22": {"type": "string"}, "23": {"type": "string"}, "24": {"type": "string"}, "25": {"type": "string"}, "26": {"type": "string"}, "27": {"type": "string"}, "28": {"type": "string"}, "29": {"type": "string"}, "30": {"type": "string"}, "31": {"type": "string"}, "32": {"type": "string"}, "33": {"type": "string"}, "34": {"type": "string"}}, "required": ["0", "1", "2", "3", "4", "5", "6", "7", "8", "9", "10", "11", "12", "13", "14", "15", "16", "17", "18", "19", "20", "21", "22", "23", "24", "25", "26", "27", "28", "29", "30", "31", "32", "33", "34"]}}, "required": ["edges", "features"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"edges" : [[22, 13], [34, 26], [14, 34], [21, 34], [24, 34], [1, 0], [34, 12], [29, 34], [10, 34], [23, 18], [7, 8], [34, 33], [11, 34], [34, 28], [16, 15], [19, 34], [34, 27], [6, 34], [34, 8], [24, 34], [4, 8], [32, 34], [34, 14], [2, 34], [14, 34], [34, 5], [22, 34], [19, 34], [34, 14], [18, 7], [17, 34], [33, 34], [21, 14], [34, 8], [32, 34], [34, 6], [14, 34], [21, 34], [34, 31], [3, 34], [5, 34], [25, 9], [15, 30], [20, 26], [21, 34], [10, 34]], "features" : {"0" : "1", "1" : "1", "2" : "1", "3" : "1", "4" : "1", "5" : "2", "6" : "2", "7" : "2", "8" : "4", "9" : "1", "10" : "2", "11" : "1", "12" : "1", "13" : "1", "14" : "6", "15" : "2", "16" : "1", "17" : "1", "18" : "2", "19" : "2", "20" : "1", "21" : "4", "22" : "2", "23" : "1", "24" : "2", "25" : "1", "26" : "2", "27" : "1", "28" : "1", "29" : "1", "30" : "1", "31" : "1", "32" : "2", "33" : "2", "34" : "35"}} | json_instruct | {"type": "object", "properties": {"edges": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}, "features": {"type": "object", "properties": {"0": {"type": "string"}, "1": {"type": "string"}, "2": {"type": "string"}, "3": {"type": "string"}, "4": {"type": "string"}, "5": {"type": "string"}, "6": {"type": "string"}, "7": {"type": "string"}, "8": {"type": "string"}, "9": {"type": "string"}, "10": {"type": "string"}, "11": {"type": "string"}, "12": {"type": "string"}, "13": {"type": "string"}, "14": {"type": "string"}, "15": {"type": "string"}, "16": {"type": "string"}, "17": {"type": "string"}, "18": {"type": "string"}, "19": {"type": "string"}, "20": {"type": "string"}, "21": {"type": "string"}, "22": {"type": "string"}, "23": {"type": "string"}, "24": {"type": "string"}, "25": {"type": "string"}, "26": {"type": "string"}, "27": {"type": "string"}, "28": {"type": "string"}, "29": {"type": "string"}, "30": {"type": "string"}, "31": {"type": "string"}, "32": {"type": "string"}, "33": {"type": "string"}, "34": {"type": "string"}}, "required": ["0", "1", "2", "3", "4", "5", "6", "7", "8", "9", "10", "11", "12", "13", "14", "15", "16", "17", "18", "19", "20", "21", "22", "23", "24", "25", "26", "27", "28", "29", "30", "31", "32", "33", "34"]}}, "required": ["edges", "features"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"name": {"type": "string"}, "about_url": {"type": "string"}, "license_url": {"type": "string"}, "component": {"type": "boolean"}}, "required": ["name", "about_url", "license_url", "component"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "Auto localize Crowdin links", "about_url" : "https://github.com/KhanovaSkola/discourse-crowdin-link/blob/master/README.md", "license_url" : "https://github.com/KhanovaSkola/discourse-crowdin-link/blob/master/LICENSE", "component" : true} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "about_url": {"type": "string"}, "license_url": {"type": "string"}, "component": {"type": "boolean"}}, "required": ["name", "about_url", "license_url", "component"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "array", "items": {"type": "object", "properties": {"__symbolic": {"type": "string"}, "version": {"type": "integer"}, "metadata": {"type": "object", "properties": {"BooleanInput": {"type": "object", "properties": {"__symbolic": {"type": "string"}}, "required": ["__symbolic"]}, "coerceBooleanProperty": {"type": "object", "properties": {"__symbolic": {"type": "string"}, "parameters": {"type": "array", "items": {"type": "string"}}, "value": {"type": "object", "properties": {"__symbolic": {"type": "string"}, "operator": {"type": "string"}, "left": {"type": "object", "properties": {"__symbolic": {"type": "string"}, "operator": {"type": "string"}, "left": {"type": "object", "properties": {"__symbolic": {"type": "string"}, "name": {"type": "string"}}, "required": ["__symbolic", "name"]}, "right": {"type": "null"}}, "required": ["__symbolic", "operator", "left", "right"]}, "right": {"type": "object", "properties": {"__symbolic": {"type": "string"}, "operator": {"type": "string"}, "left": {"type": "object", "properties": {"__symbolic": {"type": "string"}, "name": {"type": "string"}}, "required": ["__symbolic", "name"]}, "right": {"type": "string"}}, "required": ["__symbolic", "operator", "left", "right"]}}, "required": ["__symbolic", "operator", "left", "right"]}}, "required": ["__symbolic", "parameters", "value"]}}, "required": ["BooleanInput", "coerceBooleanProperty"]}}, "required": ["__symbolic", "version", "metadata"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"__symbolic" : "module", "version" : 4, "metadata" : {"BooleanInput" : {"__symbolic" : "interface"}, "coerceBooleanProperty" : {"__symbolic" : "function", "parameters" : ["value"], "value" : {"__symbolic" : "binop", "operator" : "&&", "left" : {"__symbolic" : "binop", "operator" : "!=", "left" : {"__symbolic" : "reference", "name" : "value"}, "right" : null}, "right" : {"__symbolic" : "binop", "operator" : "!==", "left" : {"__symbolic" : "reference", "name" : "value"}, "right" : "false"}}}}}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"__symbolic": {"type": "string"}, "version": {"type": "integer"}, "metadata": {"type": "object", "properties": {"BooleanInput": {"type": "object", "properties": {"__symbolic": {"type": "string"}}, "required": ["__symbolic"]}, "coerceBooleanProperty": {"type": "object", "properties": {"__symbolic": {"type": "string"}, "parameters": {"type": "array", "items": {"type": "string"}}, "value": {"type": "object", "properties": {"__symbolic": {"type": "string"}, "operator": {"type": "string"}, "left": {"type": "object", "properties": {"__symbolic": {"type": "string"}, "operator": {"type": "string"}, "left": {"type": "object", "properties": {"__symbolic": {"type": "string"}, "name": {"type": "string"}}, "required": ["__symbolic", "name"]}, "right": {"type": "null"}}, "required": ["__symbolic", "operator", "left", "right"]}, "right": {"type": "object", "properties": {"__symbolic": {"type": "string"}, "operator": {"type": "string"}, "left": {"type": "object", "properties": {"__symbolic": {"type": "string"}, "name": {"type": "string"}}, "required": ["__symbolic", "name"]}, "right": {"type": "string"}}, "required": ["__symbolic", "operator", "left", "right"]}}, "required": ["__symbolic", "operator", "left", "right"]}}, "required": ["__symbolic", "parameters", "value"]}}, "required": ["BooleanInput", "coerceBooleanProperty"]}}, "required": ["__symbolic", "version", "metadata"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"newsletter": {"type": "object", "properties": {"2021-09-05": {"type": "object", "properties": {"items": {"type": "object", "properties": {"reading": {"type": "string"}}, "required": ["reading"]}}, "required": ["items"]}}, "required": ["2021-09-05"]}}, "required": ["newsletter"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"newsletter" : {"2021-09-05" : {"items" : {"reading" : "https://www.nfx.com/post/exponential-age/"}}}} | json_instruct | {"type": "object", "properties": {"newsletter": {"type": "object", "properties": {"2021-09-05": {"type": "object", "properties": {"items": {"type": "object", "properties": {"reading": {"type": "string"}}, "required": ["reading"]}}, "required": ["items"]}}, "required": ["2021-09-05"]}}, "required": ["newsletter"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"id": {"type": "string"}, "title": {"type": "string"}, "body": {"type": "string"}, "choices": {"type": "array", "items": {"type": "string"}}, "start": {"type": "integer"}, "end": {"type": "integer"}, "snapshot": {"type": "string"}, "state": {"type": "string"}, "author": {"type": "string"}, "space": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "name"]}, "votes": {"type": "integer"}, "votes_data": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "voter": {"type": "string"}, "created": {"type": "integer"}, "choice": {"type": "integer"}, "space": {"type": "object", "properties": {"id": {"type": "string"}}, "required": ["id"]}}, "required": ["id", "voter", "created", "choice", "space"]}}}, "required": ["id", "title", "body", "choices", "start", "end", "snapshot", "state", "author", "space", "votes", "votes_data"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "QmUHYSJTaVjUmA7DebkZhxkWVUBFjf8e7riMxfk9Hjatb7", "title" : "Ocean the King", "body" : "Name ocean as the king", "choices" : ["Yes", "Definitely Yes"], "start" : 1624420800, "end" : 1624766400, "snapshot" : "3768635", "state" : "closed", "author" : "0xFf7B4CdEc338aE7BeC51514fC5427B3327131f5A", "space" : {"id" : "elbertxu.eth", "name" : "elbertxu"}, "votes" : 1, "votes_data" : [{"id" : "QmXjXPhDzTCNnHwXeEsAXrwun9Ad9SuAUtwMsrb3VXpWLr", "voter" : "0xFcEd75c0f5Ee0EA37c403E37639f92dAF5e93b35", "created" : 1624503669, "choice" : 2, "space" : {"id" : "elbertxu.eth"}}]} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "title": {"type": "string"}, "body": {"type": "string"}, "choices": {"type": "array", "items": {"type": "string"}}, "start": {"type": "integer"}, "end": {"type": "integer"}, "snapshot": {"type": "string"}, "state": {"type": "string"}, "author": {"type": "string"}, "space": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "name"]}, "votes": {"type": "integer"}, "votes_data": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "voter": {"type": "string"}, "created": {"type": "integer"}, "choice": {"type": "integer"}, "space": {"type": "object", "properties": {"id": {"type": "string"}}, "required": ["id"]}}, "required": ["id", "voter", "created", "choice", "space"]}}}, "required": ["id", "title", "body", "choices", "start", "end", "snapshot", "state", "author", "space", "votes", "votes_data"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "license": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "role": {"type": "string"}}, "required": ["name", "role"]}}, "support": {"type": "object", "properties": {"issues": {"type": "string"}}, "required": ["issues"]}, "require": {"type": "object", "properties": {"php": {"type": "string"}, "ext-dom": {"type": "string"}, "psr/log": {"type": "string"}, "ext-json": {"type": "string"}, "ext-intl": {"type": "string"}, "ext-yaml": {"type": "string"}, "ext-http": {"type": "string"}, "ext-ctype": {"type": "string"}, "ext-iconv": {"type": "string"}, "ext-mbstring": {"type": "string"}, "ext-fileinfo": {"type": "string"}, "ext-openssl": {"type": "string"}}, "required": ["php", "ext-dom", "psr/log", "ext-json", "ext-intl", "ext-yaml", "ext-http", "ext-ctype", "ext-iconv", "ext-mbstring", "ext-fileinfo", "ext-openssl"]}, "require-dev": {"type": "object", "properties": {"roave/security-advisories": {"type": "string"}}, "required": ["roave/security-advisories"]}, "autoload": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"Modseven\\": {"type": "string"}}, "required": ["Modseven\\"]}}, "required": ["psr-4"]}, "minimum-stability": {"type": "string"}, "prefer-stable": {"type": "boolean"}, "conflict": {"type": "object", "properties": {"kohana/core": {"type": "string"}}, "required": ["kohana/core"]}, "replace": {"type": "object", "properties": {"kohana/core": {"type": "string"}}, "required": ["kohana/core"]}}, "required": ["name", "description", "license", "keywords", "authors", "support", "require", "require-dev", "autoload", "minimum-stability", "prefer-stable", "conflict", "replace"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "toitzi/modseven", "description" : "Modseven Framework - Koseven with PSR-4, Namespaces and slightly more modern.", "license" : "BSD-3-Clause", "keywords" : ["kohana", "kohana-php7", "koseven", "modseven"], "authors" : [{"name" : "Tobias Oitzinger", "role" : "developer"}, {"name" : "Koseven Team", "homepage" : "https://koseven.ga/", "role" : "developer"}, {"name" : "Kohana Team", "email" : "[email protected]", "homepage" : "http://kohanaframework.org/team", "role" : "developer"}], "support" : {"issues" : "https://github.com/toitzi/modseven/issues"}, "require" : {"php" : ">=7.4", "ext-dom" : "*", "psr/log" : "1.1.*", "ext-json" : "*", "ext-intl" : "*", "ext-yaml" : "*", "ext-http" : "*", "ext-ctype" : "*", "ext-iconv" : "*", "ext-mbstring" : "*", "ext-fileinfo" : "*", "ext-openssl" : "*"}, "require-dev" : {"roave/security-advisories" : "dev-master"}, "autoload" : {"psr-4" : {"Modseven\\" : "system/classes"}}, "minimum-stability" : "dev", "prefer-stable" : true, "conflict" : {"kohana/core" : "3.3.*"}, "replace" : {"kohana/core" : "3.3.*"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "license": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "role": {"type": "string"}}, "required": ["name", "role"]}}, "support": {"type": "object", "properties": {"issues": {"type": "string"}}, "required": ["issues"]}, "require": {"type": "object", "properties": {"php": {"type": "string"}, "ext-dom": {"type": "string"}, "psr/log": {"type": "string"}, "ext-json": {"type": "string"}, "ext-intl": {"type": "string"}, "ext-yaml": {"type": "string"}, "ext-http": {"type": "string"}, "ext-ctype": {"type": "string"}, "ext-iconv": {"type": "string"}, "ext-mbstring": {"type": "string"}, "ext-fileinfo": {"type": "string"}, "ext-openssl": {"type": "string"}}, "required": ["php", "ext-dom", "psr/log", "ext-json", "ext-intl", "ext-yaml", "ext-http", "ext-ctype", "ext-iconv", "ext-mbstring", "ext-fileinfo", "ext-openssl"]}, "require-dev": {"type": "object", "properties": {"roave/security-advisories": {"type": "string"}}, "required": ["roave/security-advisories"]}, "autoload": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"Modseven\\": {"type": "string"}}, "required": ["Modseven\\"]}}, "required": ["psr-4"]}, "minimum-stability": {"type": "string"}, "prefer-stable": {"type": "boolean"}, "conflict": {"type": "object", "properties": {"kohana/core": {"type": "string"}}, "required": ["kohana/core"]}, "replace": {"type": "object", "properties": {"kohana/core": {"type": "string"}}, "required": ["kohana/core"]}}, "required": ["name", "description", "license", "keywords", "authors", "support", "require", "require-dev", "autoload", "minimum-stability", "prefer-stable", "conflict", "replace"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"word" : "convulse", "definition" : "1. To contract violently and irregulary, as the muscular parts of an animal body; to shake with irregular spasms, as in excessive laughter, or in agony from grief or pain. With emotions which checked his voice and convulsed his powerful frame. Macaulay. 2. To agitate greatly; to shake violently. The world is convulsed by the agonies of great nations. Macaulay. Syn. -- To agitate; disturb; shake; tear; rend."} | json_instruct | {"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"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" : ["Blend blueberries, sugar, lime juice, and 1 cup water together in a blender; pour into a pitcher. Add remaining water and stir."], "ingredients" : ["2 cups fresh blueberries", "1/2 cup white sugar, or to taste", "1/3 cup freshly squeezed lime juice", "6 cups water, or more as needed"], "language" : "en-US", "source" : "allrecipes.com", "tags" : [], "title" : "Blueberry Limeade", "url" : "http://allrecipes.com/recipe/244846/blueberry-limeade/"} | 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#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"template": {"type": "string"}, "description": {"type": "string"}, "execution_order": {"type": "integer"}, "enabled": {"type": "boolean"}, "action": {"type": "string"}, "find": {"type": "string"}, "replace": {"type": "string"}}, "required": ["template", "description", "execution_order", "enabled", "action", "find", "replace"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"template" : "helper_js_global", "description" : "Add phrases required for", "execution_order" : 6627, "enabled" : true, "action" : "str_replace", "find" : "// <!--[XF:js_global:xf_phrase_start]-->", "replace" : "$0\n\t\t\tsvNoticeTimeReplacables_second: \"{{ phrase('time.second')|escape('js') }}\",\n\t\t\tsvNoticeTimeReplacables_seconds: \"{{ phrase('time.seconds')|escape('js') }}\",\n\t\t\tsvNoticeTimeReplacables_minute: \"{{ phrase('time.minute')|escape('js') }}\",\n\t\t\tsvNoticeTimeReplacables_minutes: \"{{ phrase('time.minutes')|escape('js') }}\",\n\t\t\tsvNoticeTimeReplacables_hour: \"{{ phrase('time.hour')|escape('js') }}\",\n\t\t\tsvNoticeTimeReplacables_hours: \"{{ phrase('time.hours')|escape('js') }}\",\n\t\t\tsvNoticeTimeReplacables_day: \"{{ phrase('time.day')|escape('js') }}\",\n\t\t\tsvNoticeTimeReplacables_days: \"{{ phrase('time.days')|escape('js') }}\",\n\t\t\tsvNoticeTimeReplacables_week: \"{{ phrase('time.week')|escape('js') }}\",\n\t\t\tsvNoticeTimeReplacables_weeks: \"{{ phrase('time.weeks')|escape('js') }}\",\n\t\t\tsvNoticeTimeReplacables_month: \"{{ phrase('time.month')|escape('js') }}\",\n\t\t\tsvNoticeTimeReplacables_months: \"{{ phrase('time.months')|escape('js') }}\",\n\t\t\tsvNoticeTimeReplacables_year: \"{{ phrase('time.year')|escape('js') }}\",\n\t\t\tsvNoticeTimeReplacables_years: \"{{ phrase('time.years')|escape('js') }}\",\n\t\t\tsvNoticeTimeReplacables_date_x_at_time_y: \"{{ phrase('date_x_at_time_y')|escape('js') }}\",\n"} | json_instruct | {"type": "object", "properties": {"template": {"type": "string"}, "description": {"type": "string"}, "execution_order": {"type": "integer"}, "enabled": {"type": "boolean"}, "action": {"type": "string"}, "find": {"type": "string"}, "replace": {"type": "string"}}, "required": ["template", "description", "execution_order", "enabled", "action", "find", "replace"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "text": {"type": "string"}}, "required": ["id", "text"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"id" : "500240108001", "text" : "\u592a\u548c\u5c45\u59d4\u4f1a"}, {"id" : "500240108202", "text" : "\u79e6\u5bb6\u6751\u59d4\u4f1a"}, {"id" : "500240108203", "text" : "\u86df\u9c7c\u6751\u59d4\u4f1a"}, {"id" : "500240108204", "text" : "\u5927\u575d\u6751\u59d4\u4f1a"}, {"id" : "500240108205", "text" : "\u77f3\u6eaa\u6751\u59d4\u4f1a"}, {"id" : "500240108206", "text" : "\u53cc\u9f99\u6751\u59d4\u4f1a"}, {"id" : "500240108207", "text" : "\u53cc\u661f\u6751\u59d4\u4f1a"}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "text": {"type": "string"}}, "required": ["id", "text"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"name": {"type": "string"}, "abv": {"type": "number"}, "ibu": {"type": "number"}, "srm": {"type": "number"}, "upc": {"type": "integer"}, "type": {"type": "string"}, "brewery_id": {"type": "string"}, "updated": {"type": "string"}, "description": {"type": "string"}, "style": {"type": "string"}, "category": {"type": "string"}}, "required": ["name", "abv", "ibu", "srm", "upc", "type", "brewery_id", "updated", "description", "style", "category"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "B3K Schwarzbier", "abv" : 5.3, "ibu" : 0.0, "srm" : 0.0, "upc" : 0, "type" : "beer", "brewery_id" : "wynkoop_brewing", "updated" : "2010-07-22 20:00:20", "description" : "This German-style black lager has a deep color and gently roasted flavors balanced by an understated hoppiness. A thirst-quenching version of dark beer. A 2008 Great American Beer Festival Gold Medal Winner in the German Schwarzbier category.", "style" : "German-Style Schwarzbier", "category" : "German Lager"} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "abv": {"type": "number"}, "ibu": {"type": "number"}, "srm": {"type": "number"}, "upc": {"type": "integer"}, "type": {"type": "string"}, "brewery_id": {"type": "string"}, "updated": {"type": "string"}, "description": {"type": "string"}, "style": {"type": "string"}, "category": {"type": "string"}}, "required": ["name", "abv", "ibu", "srm", "upc", "type", "brewery_id", "updated", "description", "style", "category"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"parent": {"type": "string"}}, "required": ["parent"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"parent" : "rankine:block/grassy_sandy_loam_path"} | json_instruct | {"type": "object", "properties": {"parent": {"type": "string"}}, "required": ["parent"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"data": {"type": "array", "items": {"type": "object", "properties": {"customPath": {"type": "string"}, "defaultPath": {"type": "string"}, "val1": {"type": "integer"}, "enabled": {"type": "boolean"}}, "required": ["customPath", "defaultPath", "val1", "enabled"]}}}, "required": ["data"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"data" : [{"customPath" : "", "defaultPath" : "/sounds/h1.mp3", "val1" : 20, "enabled" : false}, {"customPath" : "", "defaultPath" : "/sounds/h2.mp3", "val1" : 20, "enabled" : true}, {"customPath" : "", "defaultPath" : "/sounds/h3.mp3", "val1" : 20, "enabled" : false}, {"customPath" : "", "defaultPath" : "/sounds/h4.mp3", "val1" : 20, "enabled" : false}, {"customPath" : "", "defaultPath" : "/sounds/h4.mp3", "val1" : 20, "enabled" : false}]} | json_instruct | {"type": "object", "properties": {"data": {"type": "array", "items": {"type": "object", "properties": {"customPath": {"type": "string"}, "defaultPath": {"type": "string"}, "val1": {"type": "integer"}, "enabled": {"type": "boolean"}}, "required": ["customPath", "defaultPath", "val1", "enabled"]}}}, "required": ["data"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"extends": {"type": "string"}}, "required": ["extends"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"extends" : "@tsconfig/react-native/tsconfig.json"} | json_instruct | {"type": "object", "properties": {"extends": {"type": "string"}}, "required": ["extends"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "array", "items": {"type": "object", "properties": {"serial": {"type": "string"}, "abbreviation": {"type": "string"}, "name": {"type": "string"}, "xh": {"type": "string"}}, "required": ["serial", "abbreviation", "name", "xh"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"serial" : "0005", "abbreviation" : "\u5929\u9645", "name" : "\u5929\u9645\u4fe1\u606f\u6d41\u91cf\u663e\u793a", "xh" : "001"}, {"serial" : "0008", "abbreviation" : "\u5929\u9645", "name" : "\u5929\u9645\u4fe1\u606f\u6d41\u91cf\u663e\u793a", "xh" : "005"}, {"serial" : "0004", "abbreviation" : "\u5929\u9645", "name" : "\u5929\u9645\u4fe1\u606f\u6d41\u91cf\u663e\u793a", "xh" : "004"}, {"serial" : "0003", "abbreviation" : "\u5929\u9645", "name" : "\u5929\u9645\u4fe1\u606f\u6d41\u91cf\u663e\u793a", "xh" : "003"}, {"serial" : "0001", "abbreviation" : "\u5929\u9645", "name" : "\u5929\u9645\u4fe1\u606f\u6d41\u91cf\u663e\u793a", "xh" : "010"}, {"serial" : "0002", "abbreviation" : "\u5929\u9645", "name" : "\u5929\u9645\u4fe1\u606f\u6d41\u91cf\u663e\u793a", "xh" : "008"}, {"serial" : "0007", "abbreviation" : "\u5929\u9645", "name" : "\u5929\u9645\u4fe1\u606f\u6d41\u91cf\u663e\u793a", "xh" : "000"}, {"serial" : "0006", "abbreviation" : "\u5929\u9645", "name" : "\u5929\u9645\u4fe1\u606f\u6d41\u91cf\u663e\u793a", "xh" : "007"}, {"serial" : "0012", "abbreviation" : "\u5929\u9645", "name" : "\u5929\u9645\u4fe1\u606f\u6d41\u91cf\u663e\u793a", "xh" : "009"}, {"serial" : "0010", "abbreviation" : "\u5929\u9645", "name" : "\u5929\u9645\u4fe1\u606f\u6d41\u91cf\u663e\u793a", "xh" : "012"}, {"serial" : "0009", "abbreviation" : "\u5929\u9645", "name" : "\u5929\u9645\u4fe1\u606f\u6d41\u91cf\u663e\u793a", "xh" : "018"}, {"serial" : "0011", "abbreviation" : "\u5929\u9645", "name" : "\u5929\u9645\u4fe1\u606f\u6d41\u91cf\u663e\u793a", "xh" : "015"}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"serial": {"type": "string"}, "abbreviation": {"type": "string"}, "name": {"type": "string"}, "xh": {"type": "string"}}, "required": ["serial", "abbreviation", "name", "xh"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "array", "items": {"type": "object", "properties": {"province": {"type": "string"}, "city": {"type": "string"}, "area": {"type": "string"}, "name": {"type": "string"}, "code": {"type": "string"}, "address": {"type": "string"}, "phone": {"type": "string"}}, "required": ["province", "city", "area", "name", "code", "address", "phone"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"province" : "\u6d77\u5357\u7701", "city" : "\u6d77\u53e3\u5e02", "area" : "\u79c0\u82f1\u533a", "name" : "\u6ee8\u6d77\u5927\u9053\u90ae\u653f\u8425\u4e1a\u5385", "code" : "570311", "address" : "\u6d77\u5357\u7701\u6d77\u53e3\u5e02\u4e18\u6d77\u5927\u90534\u53f7", "phone" : "0898-68664678"}, {"province" : "\u6d77\u5357\u7701", "city" : "\u6d77\u53e3\u5e02", "area" : "\u79c0\u82f1\u533a", "name" : "\u5357\u6d77\u5927\u9053\u90ae\u653f\u6240", "code" : "570311", "address" : "\u6d77\u5357\u7701\u6d77\u53e3\u5e02\u79c0\u82f1\u533a\u5357\u6d77\u5927\u9053145\u53f7", "phone" : "18876133888"}, {"province" : "\u6d77\u5357\u7701", "city" : "\u6d77\u53e3\u5e02", "area" : "\u79c0\u82f1\u533a", "name" : "\u79c0\u82f1\u90ae\u653f\u8425\u4e1a\u90e8", "code" : "570311", "address" : "\u6d77\u53e3\u5e02\u79c0\u82f1\u533a\u6d77\u79c0\u5927\u9053178\u53f7", "phone" : "0898-68662173"}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"province": {"type": "string"}, "city": {"type": "string"}, "area": {"type": "string"}, "name": {"type": "string"}, "code": {"type": "string"}, "address": {"type": "string"}, "phone": {"type": "string"}}, "required": ["province", "city", "area", "name", "code", "address", "phone"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"ast": {"type": "null"}, "code": {"type": "string"}, "map": {"type": "object", "properties": {"version": {"type": "integer"}, "sources": {"type": "array", "items": {"type": "string"}}, "names": {"type": "array", "items": {"type": "string"}}, "mappings": {"type": "string"}, "sourcesContent": {"type": "array", "items": {"type": "string"}}}, "required": ["version", "sources", "names", "mappings", "sourcesContent"]}, "metadata": {"type": "object", "properties": {}, "required": []}, "sourceType": {"type": "string"}}, "required": ["ast", "code", "map", "metadata", "sourceType"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"ast" : null, "code" : "var _jsxFileName = \"/home/habibur/React/my-app/src/Components/Count.js\";\nimport { jsxDEV as _jsxDEV } from \"react/jsx-dev-runtime\";\n\nfunction Count(props) {\n return /*#__PURE__*/_jsxDEV(\"div\", {\n children: props.a + props.b\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 4,\n columnNumber: 9\n }, this);\n}\n\n_c = Count;\nexport default Count;\n\nvar _c;\n\n$RefreshReg$(_c, \"Count\");", "map" : {"version" : 3, "sources" : ["/home/habibur/React/my-app/src/Components/Count.js"], "names" : ["Count", "props", "a", "b"], "mappings" : ";;;AAAA,SAASA,KAAT,CAAeC,KAAf,EAAqB;AAEjB,sBACI;AAAA,cACKA,KAAK,CAACC,CAAN,GAAQD,KAAK,CAACE;AADnB;AAAA;AAAA;AAAA;AAAA,UADJ;AAKH;;KAPQH,K;AAQT,eAAeA,KAAf", "sourcesContent" : ["function Count(props){\n \n return(\n <div>\n {props.a+props.b}\n </div>\n )\n}\nexport default Count"]}, "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#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"ETag": {"type": "string"}, "Last-Modified": {"type": "string"}, "base": {"type": "object", "properties": {"repo": {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"]}}, "required": ["repo"]}, "closed_at": {"type": "string"}, "created_at": {"type": "string"}, "draft": {"type": "boolean"}, "head": {"type": "object", "properties": {"ref": {"type": "string"}}, "required": ["ref"]}, "html_url": {"type": "string"}, "id": {"type": "integer"}, "labels": {"type": "array", "items": {}}, "mergeable": {"type": "null"}, "mergeable_state": {"type": "string"}, "merged": {"type": "boolean"}, "merged_at": {"type": "string"}, "number": {"type": "integer"}, "state": {"type": "string"}, "updated_at": {"type": "string"}}, "required": ["ETag", "Last-Modified", "base", "closed_at", "created_at", "draft", "head", "html_url", "id", "labels", "mergeable", "mergeable_state", "merged", "merged_at", "number", "state", "updated_at"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"ETag" : "W/\"478b5874bec98d208a198e2685500c1715bafef517fe0818c9f151e646a78538\"", "Last-Modified" : "Thu, 30 Sep 2021 19:23:58 GMT", "base" : {"repo" : {"name" : "zc.buildout-feedstock"}}, "closed_at" : "2021-09-30T19:23:58Z", "created_at" : "2021-09-30T18:50:19Z", "draft" : false, "head" : {"ref" : "this_is_not_a_branch"}, "html_url" : "https://github.com/conda-forge/zc.buildout-feedstock/pull/2", "id" : 746959550, "labels" : [], "mergeable" : null, "mergeable_state" : "unknown", "merged" : true, "merged_at" : "2021-09-30T19:23:57Z", "number" : 2, "state" : "closed", "updated_at" : "2021-09-30T19:23:58Z"} | json_instruct | {"type": "object", "properties": {"ETag": {"type": "string"}, "Last-Modified": {"type": "string"}, "base": {"type": "object", "properties": {"repo": {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"]}}, "required": ["repo"]}, "closed_at": {"type": "string"}, "created_at": {"type": "string"}, "draft": {"type": "boolean"}, "head": {"type": "object", "properties": {"ref": {"type": "string"}}, "required": ["ref"]}, "html_url": {"type": "string"}, "id": {"type": "integer"}, "labels": {"type": "array", "items": {}}, "mergeable": {"type": "null"}, "mergeable_state": {"type": "string"}, "merged": {"type": "boolean"}, "merged_at": {"type": "string"}, "number": {"type": "integer"}, "state": {"type": "string"}, "updated_at": {"type": "string"}}, "required": ["ETag", "Last-Modified", "base", "closed_at", "created_at", "draft", "head", "html_url", "id", "labels", "mergeable", "mergeable_state", "merged", "merged_at", "number", "state", "updated_at"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"ocaml.sandbox": {"type": "object", "properties": {"kind": {"type": "string"}, "root": {"type": "string"}}, "required": ["kind", "root"]}}, "required": ["ocaml.sandbox"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"ocaml.sandbox" : {"kind" : "esy", "root" : "${workspaceFolder:inline-test-ppx}"}} | json_instruct | {"type": "object", "properties": {"ocaml.sandbox": {"type": "object", "properties": {"kind": {"type": "string"}, "root": {"type": "string"}}, "required": ["kind", "root"]}}, "required": ["ocaml.sandbox"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"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" : 66567, "cartId" : "bb2a724e-9080-4f7d-a8bf-d63b91f68232", "preferredProducts" : [3856, 1403, 4915, 4422, 4971], "productReviews" : [{"productId" : 2440, "reviewText" : "talk about lust!!", "reviewDate" : "2016-07-20T01:13:43.5118412+03:00"}, {"productId" : 4212, "reviewText" : "My porcupine loves to play with it.", "reviewDate" : "2016-08-01T19:03:31.2697+03:00"}, {"productId" : 1460, "reviewText" : "The box this comes in is 3 yard by 6 light-year and weights 11 megaton!!", "reviewDate" : "2019-01-16T08:49:43.8890746+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#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"profiles": {"type": "object", "properties": {"netping": {"type": "object", "properties": {"commandName": {"type": "string"}, "commandLineArgs": {"type": "string"}}, "required": ["commandName", "commandLineArgs"]}}, "required": ["netping"]}}, "required": ["profiles"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"profiles" : {"netping" : {"commandName" : "Project", "commandLineArgs" : "-d windock001 -v"}}} | json_instruct | {"type": "object", "properties": {"profiles": {"type": "object", "properties": {"netping": {"type": "object", "properties": {"commandName": {"type": "string"}, "commandLineArgs": {"type": "string"}}, "required": ["commandName", "commandLineArgs"]}}, "required": ["netping"]}}, "required": ["profiles"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"title": {"type": "string"}, "content": {"type": "array", "items": {"type": "object", "properties": {"school": {"type": "string"}, "major": {"type": "string"}, "sy": {"type": "string"}}, "required": ["school", "major", "sy"]}}}, "required": ["title", "content"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"title" : "Education", "content" : [{"school" : "Western Mindanao State University", "major" : "Bachelor of Science in Computer Science", "sy" : "2011-2016"}]} | json_instruct | {"type": "object", "properties": {"title": {"type": "string"}, "content": {"type": "array", "items": {"type": "object", "properties": {"school": {"type": "string"}, "major": {"type": "string"}, "sy": {"type": "string"}}, "required": ["school", "major", "sy"]}}}, "required": ["title", "content"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"data": {"type": "object", "properties": {"id": {"type": "string"}, "type": {"type": "string"}, "status": {"type": "string"}, "amount": {"type": "object", "properties": {"amount": {"type": "string"}, "currency": {"type": "string"}}, "required": ["amount", "currency"]}, "native_amount": {"type": "object", "properties": {"amount": {"type": "string"}, "currency": {"type": "string"}}, "required": ["amount", "currency"]}, "description": {"type": "null"}, "created_at": {"type": "string"}, "updated_at": {"type": "string"}, "resource": {"type": "string"}, "resource_path": {"type": "string"}, "instant_exchange": {"type": "boolean"}, "to": {"type": "object", "properties": {"id": {"type": "string"}, "resource": {"type": "string"}, "resource_path": {"type": "string"}, "currency": {"type": "string"}}, "required": ["id", "resource", "resource_path", "currency"]}, "details": {"type": "object", "properties": {"title": {"type": "string"}, "subtitle": {"type": "string"}}, "required": ["title", "subtitle"]}}, "required": ["id", "type", "status", "amount", "native_amount", "description", "created_at", "updated_at", "resource", "resource_path", "instant_exchange", "to", "details"]}}, "required": ["data"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"data" : {"id" : "transaction-id-1", "type" : "transfer", "status" : "completed", "amount" : {"amount" : "-0.00020000", "currency" : "BTC"}, "native_amount" : {"amount" : "-1.47", "currency" : "USD"}, "description" : null, "created_at" : "2018-04-03T10:10:26Z", "updated_at" : "2018-04-03T10:10:26Z", "resource" : "transaction", "resource_path" : "/v2/accounts/account-id-1/transactions/transaction-id-1", "instant_exchange" : false, "to" : {"id" : "account-id-2", "resource" : "account", "resource_path" : "/v2/accounts/account-id-2", "currency" : "BTC"}, "details" : {"title" : "Transferred Bitcoin", "subtitle" : "To test app"}}} | json_instruct | {"type": "object", "properties": {"data": {"type": "object", "properties": {"id": {"type": "string"}, "type": {"type": "string"}, "status": {"type": "string"}, "amount": {"type": "object", "properties": {"amount": {"type": "string"}, "currency": {"type": "string"}}, "required": ["amount", "currency"]}, "native_amount": {"type": "object", "properties": {"amount": {"type": "string"}, "currency": {"type": "string"}}, "required": ["amount", "currency"]}, "description": {"type": "null"}, "created_at": {"type": "string"}, "updated_at": {"type": "string"}, "resource": {"type": "string"}, "resource_path": {"type": "string"}, "instant_exchange": {"type": "boolean"}, "to": {"type": "object", "properties": {"id": {"type": "string"}, "resource": {"type": "string"}, "resource_path": {"type": "string"}, "currency": {"type": "string"}}, "required": ["id", "resource", "resource_path", "currency"]}, "details": {"type": "object", "properties": {"title": {"type": "string"}, "subtitle": {"type": "string"}}, "required": ["title", "subtitle"]}}, "required": ["id", "type", "status", "amount", "native_amount", "description", "created_at", "updated_at", "resource", "resource_path", "instant_exchange", "to", "details"]}}, "required": ["data"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "priority": {"type": "integer"}, "condition": {"type": "string"}, "actions": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "description", "priority", "condition", "actions"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"name" : "maximum_aggregate_module_evaluations", "description" : "Takes the results from the module responses and set a final credibility", "priority" : 10, "condition" : "true", "actions" : ["callback.setFinalCredibility(callback.maximumCredibility(callback.getModuleCredibility().values()));"]}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "priority": {"type": "integer"}, "condition": {"type": "string"}, "actions": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "description", "priority", "condition", "actions"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "array", "items": {"type": "object", "properties": {"divisionCode": {"type": "integer"}, "post": {"type": "string"}, "divisionName": {"type": "string"}, "isLeaf": {"type": "integer"}}, "required": ["divisionCode", "post", "divisionName", "isLeaf"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"divisionCode" : 440402001, "post" : "519000", "divisionName" : "\u7fe0\u9999\u8857\u9053", "isLeaf" : 1}, {"divisionCode" : 440402002, "post" : "519000", "divisionName" : "\u6885\u534e\u8857\u9053", "isLeaf" : 1}, {"divisionCode" : 440402003, "post" : "519000", "divisionName" : "\u524d\u5c71\u8857\u9053", "isLeaf" : 1}, {"divisionCode" : 440402004, "post" : "519000", "divisionName" : "\u5409\u5927\u8857\u9053", "isLeaf" : 1}, {"divisionCode" : 440402005, "post" : "519000", "divisionName" : "\u62f1\u5317\u8857\u9053", "isLeaf" : 1}, {"divisionCode" : 440402006, "post" : "519000", "divisionName" : "\u9999\u6e7e\u8857\u9053", "isLeaf" : 1}, {"divisionCode" : 440402007, "post" : "519000", "divisionName" : "\u72ee\u5c71\u8857\u9053", "isLeaf" : 1}, {"divisionCode" : 440402008, "post" : "519000", "divisionName" : "\u6e7e\u4ed4\u8857\u9053", "isLeaf" : 1}, {"divisionCode" : 440402100, "post" : "519000", "divisionName" : "\u5510\u5bb6\u6e7e\u9547", "isLeaf" : 1}, {"divisionCode" : 440402102, "post" : "519000", "divisionName" : "\u5357\u5c4f\u9547", "isLeaf" : 1}, {"divisionCode" : 440402104, "post" : "519000", "divisionName" : "\u6a2a\u7434\u9547", "isLeaf" : 1}, {"divisionCode" : 440402105, "post" : "519000", "divisionName" : "\u6842\u5c71\u9547", "isLeaf" : 1}, {"divisionCode" : 440402106, "post" : "519000", "divisionName" : "\u4e07\u5c71\u9547", "isLeaf" : 1}, {"divisionCode" : 440402107, "post" : "519000", "divisionName" : "\u62c5\u6746\u9547", "isLeaf" : 1}, {"divisionCode" : 440402400, "post" : "519000", "divisionName" : "\u5927\u5b66\u56ed\u533a", "isLeaf" : 1}, {"divisionCode" : 440402401, "post" : "519000", "divisionName" : "\u5357\u5c4f\u79d1\u6280\u56ed", "isLeaf" : 1}, {"divisionCode" : 440402402, "post" : "519000", "divisionName" : "\u4fdd\u7a0e\u533a", "isLeaf" : 1}, {"divisionCode" : 440402403, "post" : "519000", "divisionName" : "\u524d\u5c71\u5546\u8d38\u7269\u6d41\u4e2d\u5fc3", "isLeaf" : 1}, {"divisionCode" : 440402404, "post" : "519000", "divisionName" : "\u6d2a\u6e7e\u5546\u8d38\u7269\u6d41\u4e2d\u5fc3", "isLeaf" : 1}, {"divisionCode" : 440402405, "post" : "519000", "divisionName" : "\u91d1\u9f0e\u5de5\u4e1a\u56ed", "isLeaf" : 1}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"divisionCode": {"type": "integer"}, "post": {"type": "string"}, "divisionName": {"type": "string"}, "isLeaf": {"type": "integer"}}, "required": ["divisionCode", "post", "divisionName", "isLeaf"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "prefix": {"type": "string"}, "description": {"type": "string"}, "body": {"type": "string"}, "placeholders": {"type": "array", "items": {}}}, "required": ["id", "name", "prefix", "description", "body", "placeholders"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "39c3acc5-3fd1-46a7-9fc9-b182f113c96e", "name" : "atdt", "prefix" : "atdt", "description" : "Disable trigger", "body" : "ALTER TABLE $CURSOR$ DISABLE TRIGGER ", "placeholders" : []} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "prefix": {"type": "string"}, "description": {"type": "string"}, "body": {"type": "string"}, "placeholders": {"type": "array", "items": {}}}, "required": ["id", "name", "prefix", "description", "body", "placeholders"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"events": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "description": {"type": "string"}, "date": {"type": "string"}, "time": {"type": "string"}, "remind": {"type": "boolean"}}, "required": ["id", "name", "description", "date", "time", "remind"]}}}, "required": ["events"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"events" : [{"id" : 1, "name" : "event 3", "description" : "desc 3", "date" : "May 28 2020", "time" : "4am", "remind" : true}, {"id" : 2, "name" : "event 5", "description" : "desc 5", "date" : "May 30 2020", "time" : "1am", "remind" : true}, {"id" : 3, "name" : "event 2", "description" : "desc 2", "date" : "May 30 2020", "time" : "4am", "remind" : false}, {"id" : 4, "name" : "event 4", "description" : "desc 4", "date" : "May 28 2020", "time" : "1am", "remind" : true}]} | json_instruct | {"type": "object", "properties": {"events": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "description": {"type": "string"}, "date": {"type": "string"}, "time": {"type": "string"}, "remind": {"type": "boolean"}}, "required": ["id", "name", "description", "date", "time", "remind"]}}}, "required": ["events"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"MATERIAL": {"type": "string"}, "AVG_SLOPE": {"type": "number"}, "AVG_HEIGHT": {"type": "number"}, "TERAIN_SLP": {"type": "number"}, "AREA": {"type": "number"}, "VOLUME": {"type": "integer"}, "FLOORS": {"type": "integer"}, "INT_ZONE": {"type": "string"}, "FLOOD": {"type": "integer"}, "LANDSLIDE": {"type": "string"}, "LEGAL_ID": {"type": "string"}, "LEGAL_NAME": {"type": "string"}, "LEGAL_AREA": {"type": "number"}, "LEGAL_LOTS": {"type": "integer"}, "LEGAL_POP": {"type": "number"}, "LEGAL_DENS": {"type": "number"}, "LEGALIZING": {"type": "null"}, "BLOCK_ID_": {"type": "string"}, "BLOCK_POP": {"type": "integer"}, "BLOCK_BLD": {"type": "integer"}, "BLOCK_RISK": {"type": "number"}, "BLOCK_EDU": {"type": "number"}, "BLOCK_HLTH": {"type": "number"}, "BLOCK_TRAN": {"type": "number"}, "BLOCK_CULT": {"type": "integer"}, "BLOCK_PARK": {"type": "number"}, "BLOCK_SEC": {"type": "number"}, "BLOCK_CENT": {"type": "integer"}, "BLOCK_DEF": {"type": "number"}, "BLD_INHAB": {"type": "integer"}, "OBJECTID": {"type": "integer"}, "AO_225": {"type": "number"}, "id": {"type": "integer"}, "images": {"type": "array", "items": {}}}, "required": ["MATERIAL", "AVG_SLOPE", "AVG_HEIGHT", "TERAIN_SLP", "AREA", "VOLUME", "FLOORS", "INT_ZONE", "FLOOD", "LANDSLIDE", "LEGAL_ID", "LEGAL_NAME", "LEGAL_AREA", "LEGAL_LOTS", "LEGAL_POP", "LEGAL_DENS", "LEGALIZING", "BLOCK_ID_", "BLOCK_POP", "BLOCK_BLD", "BLOCK_RISK", "BLOCK_EDU", "BLOCK_HLTH", "BLOCK_TRAN", "BLOCK_CULT", "BLOCK_PARK", "BLOCK_SEC", "BLOCK_CENT", "BLOCK_DEF", "BLD_INHAB", "OBJECTID", "AO_225", "id", "images"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"MATERIAL" : "corrugated metal - dark", "AVG_SLOPE" : 5.81280662798, "AVG_HEIGHT" : 4.28395054557, "TERAIN_SLP" : 4.5221357792, "AREA" : 69.7397602077, "VOLUME" : 299, "FLOORS" : 2, "INT_ZONE" : "Borde Rural", "FLOOD" : 3, "LANDSLIDE" : "Amenaza Baja", "LEGAL_ID" : "358", "LEGAL_NAME" : "EL PARAISO", "LEGAL_AREA" : 26.04, "LEGAL_LOTS" : 2077, "LEGAL_POP" : 11215.8, "LEGAL_DENS" : 79.76190476, "LEGALIZING" : null, "BLOCK_ID_" : "002565024", "BLOCK_POP" : 240, "BLOCK_BLD" : 61, "BLOCK_RISK" : 2.3657384, "BLOCK_EDU" : 0.63970935, "BLOCK_HLTH" : 20.487314, "BLOCK_TRAN" : 69.686203, "BLOCK_CULT" : 0, "BLOCK_PARK" : 24.319061, "BLOCK_SEC" : 54.195568, "BLOCK_CENT" : 0, "BLOCK_DEF" : 31.1475409836, "BLD_INHAB" : 4, "OBJECTID" : 2, "AO_225" : 0.2, "id" : 827, "images" : []} | json_instruct | {"type": "object", "properties": {"MATERIAL": {"type": "string"}, "AVG_SLOPE": {"type": "number"}, "AVG_HEIGHT": {"type": "number"}, "TERAIN_SLP": {"type": "number"}, "AREA": {"type": "number"}, "VOLUME": {"type": "integer"}, "FLOORS": {"type": "integer"}, "INT_ZONE": {"type": "string"}, "FLOOD": {"type": "integer"}, "LANDSLIDE": {"type": "string"}, "LEGAL_ID": {"type": "string"}, "LEGAL_NAME": {"type": "string"}, "LEGAL_AREA": {"type": "number"}, "LEGAL_LOTS": {"type": "integer"}, "LEGAL_POP": {"type": "number"}, "LEGAL_DENS": {"type": "number"}, "LEGALIZING": {"type": "null"}, "BLOCK_ID_": {"type": "string"}, "BLOCK_POP": {"type": "integer"}, "BLOCK_BLD": {"type": "integer"}, "BLOCK_RISK": {"type": "number"}, "BLOCK_EDU": {"type": "number"}, "BLOCK_HLTH": {"type": "number"}, "BLOCK_TRAN": {"type": "number"}, "BLOCK_CULT": {"type": "integer"}, "BLOCK_PARK": {"type": "number"}, "BLOCK_SEC": {"type": "number"}, "BLOCK_CENT": {"type": "integer"}, "BLOCK_DEF": {"type": "number"}, "BLD_INHAB": {"type": "integer"}, "OBJECTID": {"type": "integer"}, "AO_225": {"type": "number"}, "id": {"type": "integer"}, "images": {"type": "array", "items": {}}}, "required": ["MATERIAL", "AVG_SLOPE", "AVG_HEIGHT", "TERAIN_SLP", "AREA", "VOLUME", "FLOORS", "INT_ZONE", "FLOOD", "LANDSLIDE", "LEGAL_ID", "LEGAL_NAME", "LEGAL_AREA", "LEGAL_LOTS", "LEGAL_POP", "LEGAL_DENS", "LEGALIZING", "BLOCK_ID_", "BLOCK_POP", "BLOCK_BLD", "BLOCK_RISK", "BLOCK_EDU", "BLOCK_HLTH", "BLOCK_TRAN", "BLOCK_CULT", "BLOCK_PARK", "BLOCK_SEC", "BLOCK_CENT", "BLOCK_DEF", "BLD_INHAB", "OBJECTID", "AO_225", "id", "images"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"artist_id": {"type": "string"}, "artist_latitude": {"type": "number"}, "artist_location": {"type": "string"}, "artist_longitude": {"type": "number"}, "artist_name": {"type": "string"}, "duration": {"type": "number"}, "num_songs": {"type": "integer"}, "song_id": {"type": "string"}, "title": {"type": "string"}, "year": {"type": "integer"}}, "required": ["artist_id", "artist_latitude", "artist_location", "artist_longitude", "artist_name", "duration", "num_songs", "song_id", "title", "year"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"artist_id" : "AR0TKGM1187B98B40E", "artist_latitude" : 51.50632, "artist_location" : "London", "artist_longitude" : -0.12714, "artist_name" : "Stereolab", "duration" : 346.74893, "num_songs" : 1, "song_id" : "SONQCFX12A8C1319E7", "title" : "Brigitte", "year" : 1996} | json_instruct | {"type": "object", "properties": {"artist_id": {"type": "string"}, "artist_latitude": {"type": "number"}, "artist_location": {"type": "string"}, "artist_longitude": {"type": "number"}, "artist_name": {"type": "string"}, "duration": {"type": "number"}, "num_songs": {"type": "integer"}, "song_id": {"type": "string"}, "title": {"type": "string"}, "year": {"type": "integer"}}, "required": ["artist_id", "artist_latitude", "artist_location", "artist_longitude", "artist_name", "duration", "num_songs", "song_id", "title", "year"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"HostConfigHash": {"type": "string"}, "CardHash": {"type": "string"}, "Error": {"type": "null"}}, "required": ["HostConfigHash", "CardHash", "Error"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"HostConfigHash" : "81d35a8", "CardHash" : "07cf798", "Error" : null} | json_instruct | {"type": "object", "properties": {"HostConfigHash": {"type": "string"}, "CardHash": {"type": "string"}, "Error": {"type": "null"}}, "required": ["HostConfigHash", "CardHash", "Error"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"type": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["type", "coordinates"]}, "properties": {"type": "object", "properties": {"code": {"type": "integer"}, "url": {"type": "string"}, "view": {"type": "string"}}, "required": ["code", "url", "view"]}}, "required": ["type", "geometry", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"type" : "Feature", "geometry" : {"type" : "Polygon", "coordinates" : [[[125.25, 24.583333333333332], [125.25, 24.666666666666668], [125.375, 24.666666666666668], [125.375, 24.583333333333332], [125.25, 24.583333333333332]]]}, "properties" : {"code" : 362572, "url" : "http://madefor.github.io/0410/api/v1/362572.geojson", "view" : "https://github.com/madefor/0410/blob/gh-pages/api/v1/362572.geojson"}} | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["type", "coordinates"]}, "properties": {"type": "object", "properties": {"code": {"type": "integer"}, "url": {"type": "string"}, "view": {"type": "string"}}, "required": ["code", "url", "view"]}}, "required": ["type", "geometry", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"card_title": {"type": "string"}, "card_type": {"type": "string"}, "card_text": {"type": "string"}, "traits": {"type": "string"}, "amber": {"type": "integer"}, "power": {"type": "string"}, "armor": {"type": "null"}, "rarity": {"type": "string"}, "flavor_text": {"type": "string"}, "card_number": {"type": "string"}, "expansion": {"type": "integer"}, "is_maverick": {"type": "boolean"}, "is_anomaly": {"type": "boolean"}, "is_enhanced": {"type": "boolean"}, "houses": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "house": {"type": "string"}, "normal": {"type": "string"}, "zoom": {"type": "string"}}, "required": ["id", "house", "normal", "zoom"]}}, "rules": {"type": "array", "items": {}}}, "required": ["card_title", "card_type", "card_text", "traits", "amber", "power", "armor", "rarity", "flavor_text", "card_number", "expansion", "is_maverick", "is_anomaly", "is_enhanced", "houses", "rules"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"card_title" : "Chefe de Teleportes Tina", "card_type" : "Creature", "card_text" : "Elusivo. (A cada turno, na primeira vez que esta criatura for atacada, ela n\u00e3o causa nem recebe dano.)\rA\u00e7\u00e3o: Troque Chefe de Teleportes Tina por outra criatura amiga na linha de batalha. \rVoc\u00ea pode usar a outra criatura neste turno.", "traits" : "Alien\u00edgena", "amber" : 0, "power" : "2", "armor" : null, "rarity" : "Common", "flavor_text" : "", "card_number" : "317", "expansion" : 479, "is_maverick" : false, "is_anomaly" : false, "is_enhanced" : false, "houses" : [{"id" : "e8b0d5d1-d224-4b76-8a89-7644c8668e79", "house" : "Star Alliance", "normal" : "https://cdn.keyforgegame.com/media/card_front/pt/479_317_752MVR7QCQ3J_pt.png", "zoom" : "https://cards-keyforge.s3.eu-north-1.amazonaws.com/media/pt/mm/StarAlliance-317.png"}], "rules" : []} | json_instruct | {"type": "object", "properties": {"card_title": {"type": "string"}, "card_type": {"type": "string"}, "card_text": {"type": "string"}, "traits": {"type": "string"}, "amber": {"type": "integer"}, "power": {"type": "string"}, "armor": {"type": "null"}, "rarity": {"type": "string"}, "flavor_text": {"type": "string"}, "card_number": {"type": "string"}, "expansion": {"type": "integer"}, "is_maverick": {"type": "boolean"}, "is_anomaly": {"type": "boolean"}, "is_enhanced": {"type": "boolean"}, "houses": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "house": {"type": "string"}, "normal": {"type": "string"}, "zoom": {"type": "string"}}, "required": ["id", "house", "normal", "zoom"]}}, "rules": {"type": "array", "items": {}}}, "required": ["card_title", "card_type", "card_text", "traits", "amber", "power", "armor", "rarity", "flavor_text", "card_number", "expansion", "is_maverick", "is_anomaly", "is_enhanced", "houses", "rules"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"type": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["type", "coordinates"]}, "properties": {"type": "object", "properties": {"code": {"type": "integer"}, "url": {"type": "string"}, "view": {"type": "string"}}, "required": ["code", "url", "view"]}}, "required": ["type", "geometry", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"type" : "Feature", "geometry" : {"type" : "Polygon", "coordinates" : [[[136.875, 32.5], [136.875, 32.583333333333336], [137.0, 32.583333333333336], [137.0, 32.5], [136.875, 32.5]]]}, "properties" : {"code" : 483667, "url" : "http://madefor.github.io/0410/api/v1/483667.geojson", "view" : "https://github.com/madefor/0410/blob/gh-pages/api/v1/483667.geojson"}} | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["type", "coordinates"]}, "properties": {"type": "object", "properties": {"code": {"type": "integer"}, "url": {"type": "string"}, "view": {"type": "string"}}, "required": ["code", "url", "view"]}}, "required": ["type", "geometry", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"co_alarm_state": {"type": "string"}, "smoke_alarm_state": {"type": "string"}, "is_online": {"type": "boolean"}, "where_id": {"type": "string"}, "is_manual_test_active": {"type": "boolean"}, "battery_health": {"type": "string"}, "name_long": {"type": "string"}, "device_id": {"type": "string"}, "ui_color_state": {"type": "string"}, "structure_id": {"type": "string"}, "name": {"type": "string"}}, "required": ["co_alarm_state", "smoke_alarm_state", "is_online", "where_id", "is_manual_test_active", "battery_health", "name_long", "device_id", "ui_color_state", "structure_id", "name"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"co_alarm_state" : "warning", "smoke_alarm_state" : "warning", "is_online" : true, "where_id" : "62czINzR5NUSluKTOAchi05RwLuRS8WSbkIFuIz6AQRPo1nSxmUEbA", "is_manual_test_active" : false, "battery_health" : "ok", "name_long" : "Basement Nest Protect (Yellow)", "device_id" : "CkgAwlous252eHd5Wrxt2SGXS0pj7QVm", "ui_color_state" : "yellow", "structure_id" : "BA8S5sLaTFnzp9bmRkr4I3hqMJ2OYzNwrzXtJSP_SZD-PSMzYqUT3Q", "name" : "Basement (Yellow)"} | json_instruct | {"type": "object", "properties": {"co_alarm_state": {"type": "string"}, "smoke_alarm_state": {"type": "string"}, "is_online": {"type": "boolean"}, "where_id": {"type": "string"}, "is_manual_test_active": {"type": "boolean"}, "battery_health": {"type": "string"}, "name_long": {"type": "string"}, "device_id": {"type": "string"}, "ui_color_state": {"type": "string"}, "structure_id": {"type": "string"}, "name": {"type": "string"}}, "required": ["co_alarm_state", "smoke_alarm_state", "is_online", "where_id", "is_manual_test_active", "battery_health", "name_long", "device_id", "ui_color_state", "structure_id", "name"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"id": {"type": "string"}, "variable1": {"type": "number"}, "variable2": {"type": "number"}, "variable3": {"type": "string"}}, "required": ["id", "variable1", "variable2", "variable3"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "170501241103", "variable1" : 0.2248, "variable2" : -1.4939, "variable3" : "C"} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "variable1": {"type": "number"}, "variable2": {"type": "number"}, "variable3": {"type": "string"}}, "required": ["id", "variable1", "variable2", "variable3"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"type": {"type": "string"}, "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"]}, "properties": {"type": "object", "properties": {"name": {"type": "string"}, "organisation": {"type": "string"}, "reference": {"type": "string"}, "geography": {"type": "string"}, "geometry": {"type": "string"}, "slug": {"type": "string"}, "entity": {"type": "integer"}, "entry-date": {"type": "string"}}, "required": ["name", "organisation", "reference", "geography", "geometry", "slug", "entity", "entry-date"]}}, "required": ["type", "geometry", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"type" : "Feature", "geometry" : {"type" : "MultiPolygon", "coordinates" : [[[[-0.133441, 51.550679], [-0.133459, 51.55047], [-0.133363, 51.550466], [-0.133384, 51.550328], [-0.133206, 51.550382], [-0.133182, 51.550345], [-0.133143, 51.550356], [-0.133032, 51.550205], [-0.133145, 51.550171], [-0.133086, 51.550089], [-0.13315, 51.55007], [-0.133036, 51.549917], [-0.133189, 51.54986], [-0.1331, 51.549729], [-0.133421, 51.54963], [-0.13356, 51.5498], [-0.134073, 51.549922], [-0.134453, 51.54996], [-0.134449, 51.550184], [-0.134488, 51.550185], [-0.13448, 51.550387], [-0.134813, 51.550393], [-0.134798, 51.550774], [-0.133436, 51.550744], [-0.133441, 51.550679]]]]}, "properties" : {"name" : "Kentish Town", "organisation" : "local-authority-eng:CMD", "reference" : "kml_80", "geography" : "conservation-area:kml_80", "geometry" : "MULTIPOLYGON (((-0.133441 51.550679,-0.133459 51.550470,-0.133363 51.550466,-0.133384 51.550328,-0.133206 51.550382,-0.133182 51.550345,-0.133143 51.550356,-0.133032 51.550205,-0.133145 51.550171,-0.133086 51.550089,-0.133150 51.550070,-0.133036 51.549917,-0.133189 51.549860,-0.133100 51.549729,-0.133421 51.549630,-0.133560 51.549800,-0.134073 51.549922,-0.134453 51.549960,-0.134449 51.550184,-0.134488 51.550185,-0.134480 51.550387,-0.134813 51.550393,-0.134798 51.550774,-0.133436 51.550744,-0.133441 51.550679)))", "slug" : "/conservation-area/local-authority-eng/CMD/kml-80", "entity" : 471667, "entry-date" : "2020-09-12"}} | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}}, "required": ["type", "coordinates"]}, "properties": {"type": "object", "properties": {"name": {"type": "string"}, "organisation": {"type": "string"}, "reference": {"type": "string"}, "geography": {"type": "string"}, "geometry": {"type": "string"}, "slug": {"type": "string"}, "entity": {"type": "integer"}, "entry-date": {"type": "string"}}, "required": ["name", "organisation", "reference", "geography", "geometry", "slug", "entity", "entry-date"]}}, "required": ["type", "geometry", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"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" : 404398329, "type" : "Feature", "properties" : {"src:alt_label" : "quattroshapes", "src:geom" : "quattroshapes", "wof:geomhash" : "82bfb2142ac8d6b9f7d4f624ae21ce64", "wof:id" : 404398329, "wof:repo" : "whosonfirst-data-admin-fr"}, "bbox" : [1.81823697886976, 43.56754406011734, 1.87369802826332, 43.61655519997002], "geometry" : {"coordinates" : [[[1.84945228108713, 43.56754406011734], [1.83914519974381, 43.5778725519396], [1.82166180453319, 43.58119368991704], [1.81823697886976, 43.58340611370175], [1.82054237657202, 43.58627471351998], [1.82850716932294, 43.58906947085786], [1.83544230722907, 43.59749472002446], [1.83519154116636, 43.60740852462656], [1.83640541894025, 43.61655519997002], [1.85925874855012, 43.61025545941063], [1.86560870053881, 43.60102637824071], [1.8646159999407, 43.594249096611], [1.87369802826332, 43.58633497599905], [1.86574299161859, 43.57794662470272], [1.85283920597362, 43.57393276792796], [1.84945228108713, 43.56754406011734]]], "type" : "Polygon"}} | json_instruct | {"type": "object", "properties": {"id": {"type": "integer"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"src:alt_label": {"type": "string"}, "src:geom": {"type": "string"}, "wof:geomhash": {"type": "string"}, "wof:id": {"type": "integer"}, "wof:repo": {"type": "string"}}, "required": ["src:alt_label", "src:geom", "wof:geomhash", "wof:id", "wof:repo"]}, "bbox": {"type": "array", "items": {"type": "number"}}, "geometry": {"type": "object", "properties": {"coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}, "type": {"type": "string"}}, "required": ["coordinates", "type"]}}, "required": ["id", "type", "properties", "bbox", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"Time": {"type": "string"}, "Temp": {"type": "number"}, "RelHum": {"type": "integer"}, "WindSpeed": {"type": "integer"}, "WindDir": {"type": "integer"}}, "required": ["Time", "Temp", "RelHum", "WindSpeed", "WindDir"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"Time" : "2021-01-03T08:00:00Z", "Temp" : 19.8, "RelHum" : 51, "WindSpeed" : 5, "WindDir" : 75} | json_instruct | {"type": "object", "properties": {"Time": {"type": "string"}, "Temp": {"type": "number"}, "RelHum": {"type": "integer"}, "WindSpeed": {"type": "integer"}, "WindDir": {"type": "integer"}}, "required": ["Time", "Temp", "RelHum", "WindSpeed", "WindDir"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"name": {"type": "string"}, "displayName": {"type": "string"}}, "required": ["name", "displayName"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "hidden_dew_29483", "displayName" : "hidden_dew_29483"} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "displayName": {"type": "string"}}, "required": ["name", "displayName"], "$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": {"release": {"type": "string"}, "test": {"type": "string"}}, "required": ["release", "test"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "dependencies": {"type": "object", "properties": {}, "required": []}, "devDependencies": {"type": "object", "properties": {"eslint": {"type": "string"}, "eslint-config-airbnb": {"type": "string"}, "eslint-plugin-import": {"type": "string"}, "eslint-plugin-jsx-a11y": {"type": "string"}, "eslint-plugin-nodeca": {"type": "string"}, "eslint-plugin-react": {"type": "string"}, "markdown-it": {"type": "string"}, "markdown-it-testgen": {"type": "string"}, "mocha": {"type": "string"}, "np": {"type": "string"}}, "required": ["eslint", "eslint-config-airbnb", "eslint-plugin-import", "eslint-plugin-jsx-a11y", "eslint-plugin-nodeca", "eslint-plugin-react", "markdown-it", "markdown-it-testgen", "mocha", "np"]}, "publishConfig": {"type": "object", "properties": {"access": {"type": "string"}}, "required": ["access"]}}, "required": ["name", "version", "description", "main", "scripts", "repository", "author", "license", "bugs", "homepage", "keywords", "dependencies", "devDependencies", "publishConfig"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "@zhufucdev/markdown-it-video", "version" : "1.0.0", "description" : "Markdown-it plugin to embed a hosted videos", "main" : "index.js", "scripts" : {"release" : "np", "test" : "eslint . && mocha"}, "repository" : {"type" : "git", "url" : "https://github.com/zhufucdev/markdown-it-video"}, "author" : "brianjgeiger", "license" : "MIT", "bugs" : {"url" : "https://github.com/brianjgeiger/markdown-it-video/issues"}, "homepage" : "https://github.com/brianjgeiger/markdown-it-video", "keywords" : ["markdown-it", "markdown-it-plugin"], "dependencies" : {}, "devDependencies" : {"eslint" : "^4.9.0", "eslint-config-airbnb" : "^16.1.0", "eslint-plugin-import" : "^2.7.0", "eslint-plugin-jsx-a11y" : "^6.0.2", "eslint-plugin-nodeca" : "1.0.3", "eslint-plugin-react" : "^7.4.0", "markdown-it" : "8.4.0", "markdown-it-testgen" : "0.1.4", "mocha" : "4.0.1", "np" : "^3.1.0"}, "publishConfig" : {"access" : "public"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"release": {"type": "string"}, "test": {"type": "string"}}, "required": ["release", "test"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "dependencies": {"type": "object", "properties": {}, "required": []}, "devDependencies": {"type": "object", "properties": {"eslint": {"type": "string"}, "eslint-config-airbnb": {"type": "string"}, "eslint-plugin-import": {"type": "string"}, "eslint-plugin-jsx-a11y": {"type": "string"}, "eslint-plugin-nodeca": {"type": "string"}, "eslint-plugin-react": {"type": "string"}, "markdown-it": {"type": "string"}, "markdown-it-testgen": {"type": "string"}, "mocha": {"type": "string"}, "np": {"type": "string"}}, "required": ["eslint", "eslint-config-airbnb", "eslint-plugin-import", "eslint-plugin-jsx-a11y", "eslint-plugin-nodeca", "eslint-plugin-react", "markdown-it", "markdown-it-testgen", "mocha", "np"]}, "publishConfig": {"type": "object", "properties": {"access": {"type": "string"}}, "required": ["access"]}}, "required": ["name", "version", "description", "main", "scripts", "repository", "author", "license", "bugs", "homepage", "keywords", "dependencies", "devDependencies", "publishConfig"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "array", "items": {"type": "object", "properties": {"species": {"type": "object", "properties": {"speciesName": {"type": "string"}, "medianEnthalpy": {"type": "number"}}, "required": ["speciesName", "medianEnthalpy"]}}, "required": ["species"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"species" : {"speciesName" : "TiCl", "medianEnthalpy" : 169.58349999964983}}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"species": {"type": "object", "properties": {"speciesName": {"type": "string"}, "medianEnthalpy": {"type": "number"}}, "required": ["speciesName", "medianEnthalpy"]}}, "required": ["species"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"upload": {"type": "string"}}, "required": ["upload"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "contributors": {"type": "array", "items": {}}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "dependencies": {"type": "object", "properties": {"dotenv": {"type": "string"}, "minio": {"type": "string"}, "walk": {"type": "string"}}, "required": ["dotenv", "minio", "walk"]}}, "required": ["name", "version", "description", "main", "scripts", "repository", "keywords", "author", "contributors", "license", "bugs", "homepage", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "minio-bulk-uploader", "version" : "1.0.0", "description" : "A bulk file uploader for Minio", "main" : "index.js", "scripts" : {"upload" : "node index.js"}, "repository" : {"type" : "git", "url" : "git+https://github.com/smth-for/minio-bulk-uploader.git"}, "keywords" : ["minio", "bulk", "upload", "node"], "author" : "Michael Musso <[email protected]> (https://smth.it)", "contributors" : [], "license" : "MIT", "bugs" : {"url" : "https://github.com/smth-for/minio-bulk-uploader/issues"}, "homepage" : "https://github.com/smth-for/minio-bulk-uploader#readme", "dependencies" : {"dotenv" : "^10.0.0", "minio" : "^7.0.18", "walk" : "^2.3.14"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"upload": {"type": "string"}}, "required": ["upload"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "contributors": {"type": "array", "items": {}}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "dependencies": {"type": "object", "properties": {"dotenv": {"type": "string"}, "minio": {"type": "string"}, "walk": {"type": "string"}}, "required": ["dotenv", "minio", "walk"]}}, "required": ["name", "version", "description", "main", "scripts", "repository", "keywords", "author", "contributors", "license", "bugs", "homepage", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"name": {"type": "string"}, "abv": {"type": "number"}, "ibu": {"type": "number"}, "srm": {"type": "number"}, "upc": {"type": "integer"}, "type": {"type": "string"}, "brewery_id": {"type": "string"}, "updated": {"type": "string"}, "description": {"type": "string"}, "style": {"type": "string"}, "category": {"type": "string"}}, "required": ["name", "abv", "ibu", "srm", "upc", "type", "brewery_id", "updated", "description", "style", "category"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "Old Fugget", "abv" : 11.8, "ibu" : 0.0, "srm" : 0.0, "upc" : 0, "type" : "beer", "brewery_id" : "otto_s_pub_and_brewery", "updated" : "2010-07-22 20:00:20", "description" : "A big, bold ale brewed in the style of classic barleywines. Served lightly carbonated through the handpump at cellar temperature.", "style" : "American-Style Barley Wine Ale", "category" : "North American Ale"} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "abv": {"type": "number"}, "ibu": {"type": "number"}, "srm": {"type": "number"}, "upc": {"type": "integer"}, "type": {"type": "string"}, "brewery_id": {"type": "string"}, "updated": {"type": "string"}, "description": {"type": "string"}, "style": {"type": "string"}, "category": {"type": "string"}}, "required": ["name", "abv", "ibu", "srm", "upc", "type", "brewery_id", "updated", "description", "style", "category"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "type": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}}, "keywords": {"type": "array", "items": {"type": "string"}}, "homepage": {"type": "string"}, "license": {"type": "string"}, "require": {"type": "object", "properties": {"symfony/framework-bundle": {"type": "string"}, "phpoffice/phpspreadsheet": {"type": "string"}}, "required": ["symfony/framework-bundle", "phpoffice/phpspreadsheet"]}, "require-dev": {"type": "object", "properties": {"symfony/symfony": {"type": "string"}, "symfony/phpunit-bridge": {"type": "string"}, "sensio/framework-extra-bundle": {"type": "string"}}, "required": ["symfony/symfony", "symfony/phpunit-bridge", "sensio/framework-extra-bundle"]}, "autoload": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"Roromix\\Bundle\\SpreadsheetBundle\\": {"type": "string"}}, "required": ["Roromix\\Bundle\\SpreadsheetBundle\\"]}}, "required": ["psr-4"]}, "autoload-dev": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"Roromix\\Bundle\\SpreadsheetBundle\\Tests\\": {"type": "string"}}, "required": ["Roromix\\Bundle\\SpreadsheetBundle\\Tests\\"]}}, "required": ["psr-4"]}}, "required": ["name", "description", "type", "authors", "keywords", "homepage", "license", "require", "require-dev", "autoload", "autoload-dev"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "roromix/spreadsheetbundle", "description" : "This is a Symfony 3.2/4/5 Bundle helps you to read and write Spreadsheet files (including pdf, xls, xlsx, odt, csv), thanks to the PHPSpreadsheet library", "type" : "symfony-bundle", "authors" : [{"name" : "Romain Harache", "email" : "[email protected]"}], "keywords" : ["excel", "phpexcel", "spreadsheet", "symfony", "bundle"], "homepage" : "https://github.com/roromix/SpreadsheetBundle", "license" : "MIT", "require" : {"symfony/framework-bundle" : "~3.2|~4.0|~5.0|~6.0", "phpoffice/phpspreadsheet" : "~1.0"}, "require-dev" : {"symfony/symfony" : "~3.2|~4.0|~5.0", "symfony/phpunit-bridge" : "~3.2|~4.0|~5.0", "sensio/framework-extra-bundle" : "~3.0|~4.0|~5.0"}, "autoload" : {"psr-4" : {"Roromix\\Bundle\\SpreadsheetBundle\\" : "src/"}}, "autoload-dev" : {"psr-4" : {"Roromix\\Bundle\\SpreadsheetBundle\\Tests\\" : "tests/"}}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "type": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}}, "keywords": {"type": "array", "items": {"type": "string"}}, "homepage": {"type": "string"}, "license": {"type": "string"}, "require": {"type": "object", "properties": {"symfony/framework-bundle": {"type": "string"}, "phpoffice/phpspreadsheet": {"type": "string"}}, "required": ["symfony/framework-bundle", "phpoffice/phpspreadsheet"]}, "require-dev": {"type": "object", "properties": {"symfony/symfony": {"type": "string"}, "symfony/phpunit-bridge": {"type": "string"}, "sensio/framework-extra-bundle": {"type": "string"}}, "required": ["symfony/symfony", "symfony/phpunit-bridge", "sensio/framework-extra-bundle"]}, "autoload": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"Roromix\\Bundle\\SpreadsheetBundle\\": {"type": "string"}}, "required": ["Roromix\\Bundle\\SpreadsheetBundle\\"]}}, "required": ["psr-4"]}, "autoload-dev": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"Roromix\\Bundle\\SpreadsheetBundle\\Tests\\": {"type": "string"}}, "required": ["Roromix\\Bundle\\SpreadsheetBundle\\Tests\\"]}}, "required": ["psr-4"]}}, "required": ["name", "description", "type", "authors", "keywords", "homepage", "license", "require", "require-dev", "autoload", "autoload-dev"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"properties": {"type": "object", "properties": {"name": {"type": "object", "properties": {"type": {"type": "string"}, "pattern": {"type": "string"}, "minLength": {"type": "integer"}}, "required": ["type", "pattern", "minLength"]}, "place": {"type": "object", "properties": {"type": {"type": "string"}, "pattern": {"type": "string"}, "minLength": {"type": "integer"}}, "required": ["type", "pattern", "minLength"]}}, "required": ["name", "place"]}, "required": {"type": "array", "items": {"type": "string"}}}, "required": ["properties", "required"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"properties" : {"name" : {"type" : "string", "pattern" : "^[A-Za-z]+$", "minLength" : 1}, "place" : {"type" : "string", "pattern" : "^[A-Za-z]+$", "minLength" : 1}}, "required" : ["name"]} | json_instruct | {"type": "object", "properties": {"properties": {"type": "object", "properties": {"name": {"type": "object", "properties": {"type": {"type": "string"}, "pattern": {"type": "string"}, "minLength": {"type": "integer"}}, "required": ["type", "pattern", "minLength"]}, "place": {"type": "object", "properties": {"type": {"type": "string"}, "pattern": {"type": "string"}, "minLength": {"type": "integer"}}, "required": ["type", "pattern", "minLength"]}}, "required": ["name", "place"]}, "required": {"type": "array", "items": {"type": "string"}}}, "required": ["properties", "required"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "description": {"type": "string"}, "user": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "email": {"type": "string"}, "paypal_email": {"type": "null"}, "homepage": {"type": "null"}, "about": {"type": "null"}, "license": {"type": "string"}}, "required": ["id", "name", "email", "paypal_email", "homepage", "about", "license"]}, "updated": {"type": "string"}, "weekly_install_count": {"type": "integer"}, "total_install_count": {"type": "integer"}, "rating": {"type": "null"}, "after_screenshot_name": {"type": "string"}, "obsoleting_style_id": {"type": "null"}, "obsoleting_style_name": {"type": "null"}, "obsolete": {"type": "integer"}, "admin_delete_reason_id": {"type": "null"}, "obsoletion_message": {"type": "null"}, "screenshots": {"type": "null"}, "license": {"type": "string"}, "created": {"type": "string"}, "category": {"type": "string"}, "raw_subcategory": {"type": "string"}, "subcategory": {"type": "string"}, "additional_info": {"type": "string"}, "style_tags": {"type": "array", "items": {}}, "css": {"type": "string"}, "discussions": {"type": "array", "items": {}}, "discussionsCount": {"type": "integer"}, "commentsCount": {"type": "integer"}, "userjs_url": {"type": "string"}, "style_settings": {"type": "array", "items": {}}}, "required": ["id", "name", "description", "user", "updated", "weekly_install_count", "total_install_count", "rating", "after_screenshot_name", "obsoleting_style_id", "obsoleting_style_name", "obsolete", "admin_delete_reason_id", "obsoletion_message", "screenshots", "license", "created", "category", "raw_subcategory", "subcategory", "additional_info", "style_tags", "css", "discussions", "discussionsCount", "commentsCount", "userjs_url", "style_settings"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : 137623, "name" : "https://next.voz.vn/", "description" : "clear all* ads (update: 8/25/2018)\r\nfull width", "user" : {"id" : 388548, "name" : "David Roland", "email" : "redacted", "paypal_email" : null, "homepage" : null, "about" : null, "license" : "publicdomain"}, "updated" : "2021-09-30T15:49:27.000Z", "weekly_install_count" : 0, "total_install_count" : 196, "rating" : null, "after_screenshot_name" : "https://userstyles.org/style_screenshots/137623_after.png?r=1633016967", "obsoleting_style_id" : null, "obsoleting_style_name" : null, "obsolete" : 0, "admin_delete_reason_id" : null, "obsoletion_message" : null, "screenshots" : null, "license" : "ccbyncnd", "created" : "2017-01-13T18:21:05.000Z", "category" : "site", "raw_subcategory" : "voz", "subcategory" : "voz", "additional_info" : "<ul>\r\n<li>Update 1/21/2017</li>\r\nClear ads*, if you see anymore, please tell me!\r\n<li>Update 2/9/2017</li>\r\nClear more ads\r\n<li>Update 8/25/2018</li>\r\nRemove redundant script\r\n</ul>", "style_tags" : [], "css" : "@-moz-document domain(\"voz.vn\") {\r\n .u-bottomFixer.js-bottomFixTarget,\r\n .p-body-sidebar, .p-body-sidebarCol {\r\n display: none !important; \r\n }\r\n\r\n .u-scrollButtons.js-scrollButtons {\r\n opacity: 1 !important; \r\n display: block !important; \r\n }\r\n .p-body-main {\r\n display: block !important; \r\n }\r\n .p-body-inner {\r\n max-width: inherit;\r\n }\r\n}", "discussions" : [], "discussionsCount" : 0, "commentsCount" : 0, "userjs_url" : "/styles/userjs/137623/https-next-voz-vn.user.js", "style_settings" : []} | json_instruct | {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "description": {"type": "string"}, "user": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "email": {"type": "string"}, "paypal_email": {"type": "null"}, "homepage": {"type": "null"}, "about": {"type": "null"}, "license": {"type": "string"}}, "required": ["id", "name", "email", "paypal_email", "homepage", "about", "license"]}, "updated": {"type": "string"}, "weekly_install_count": {"type": "integer"}, "total_install_count": {"type": "integer"}, "rating": {"type": "null"}, "after_screenshot_name": {"type": "string"}, "obsoleting_style_id": {"type": "null"}, "obsoleting_style_name": {"type": "null"}, "obsolete": {"type": "integer"}, "admin_delete_reason_id": {"type": "null"}, "obsoletion_message": {"type": "null"}, "screenshots": {"type": "null"}, "license": {"type": "string"}, "created": {"type": "string"}, "category": {"type": "string"}, "raw_subcategory": {"type": "string"}, "subcategory": {"type": "string"}, "additional_info": {"type": "string"}, "style_tags": {"type": "array", "items": {}}, "css": {"type": "string"}, "discussions": {"type": "array", "items": {}}, "discussionsCount": {"type": "integer"}, "commentsCount": {"type": "integer"}, "userjs_url": {"type": "string"}, "style_settings": {"type": "array", "items": {}}}, "required": ["id", "name", "description", "user", "updated", "weekly_install_count", "total_install_count", "rating", "after_screenshot_name", "obsoleting_style_id", "obsoleting_style_name", "obsolete", "admin_delete_reason_id", "obsoletion_message", "screenshots", "license", "created", "category", "raw_subcategory", "subcategory", "additional_info", "style_tags", "css", "discussions", "discussionsCount", "commentsCount", "userjs_url", "style_settings"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"generator-swiftserver": {"type": "object", "properties": {"version": {"type": "string"}}, "required": ["version"]}}, "required": ["generator-swiftserver"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"generator-swiftserver" : {"version" : "2.4.0"}} | json_instruct | {"type": "object", "properties": {"generator-swiftserver": {"type": "object", "properties": {"version": {"type": "string"}}, "required": ["version"]}}, "required": ["generator-swiftserver"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "private": {"type": "boolean"}, "keywords": {"type": "array", "items": {"type": "string"}}, "window": {"type": "object", "properties": {"toolbar": {"type": "boolean"}, "resizable": {"type": "boolean"}, "frame": {"type": "boolean"}, "fullscreen": {"type": "boolean"}, "width": {"type": "integer"}, "height": {"type": "integer"}, "min_width": {"type": "integer"}, "min_height": {"type": "integer"}, "position": {"type": "string"}, "icon": {"type": "string"}}, "required": ["toolbar", "resizable", "frame", "fullscreen", "width", "height", "min_width", "min_height", "position", "icon"]}, "author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"node-movie": {"type": "string"}, "movie-title": {"type": "string"}}, "required": ["node-movie", "movie-title"]}, "devDependencies": {"type": "object", "properties": {"karma": {"type": "string"}, "karma-nodewebkit-launcher": {"type": "string"}, "jasmine-core": {"type": "string"}, "karma-jasmine": {"type": "string"}}, "required": ["karma", "karma-nodewebkit-launcher", "jasmine-core", "karma-jasmine"]}}, "required": ["name", "version", "description", "main", "private", "keywords", "window", "author", "license", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "MyUSBMovies", "version" : "0.0.9", "description" : "MyUSBMovies", "main" : "index.html", "private" : true, "keywords" : ["node", "webkit", "win", "osx", "movies", "usb"], "window" : {"toolbar" : false, "resizable" : true, "frame" : false, "fullscreen" : false, "width" : 1440, "height" : 900, "min_width" : 600, "min_height" : 400, "position" : "center", "icon" : "./assets/img/logoMyUSBMovies.ico"}, "author" : "Joris Favier", "license" : "MIT", "dependencies" : {"node-movie" : "^2.0.0", "movie-title" : "0.0.1"}, "devDependencies" : {"karma" : "^0.12.31", "karma-nodewebkit-launcher" : "0.0.12", "jasmine-core" : "^2.3.0", "karma-jasmine" : "^0.3.5"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "private": {"type": "boolean"}, "keywords": {"type": "array", "items": {"type": "string"}}, "window": {"type": "object", "properties": {"toolbar": {"type": "boolean"}, "resizable": {"type": "boolean"}, "frame": {"type": "boolean"}, "fullscreen": {"type": "boolean"}, "width": {"type": "integer"}, "height": {"type": "integer"}, "min_width": {"type": "integer"}, "min_height": {"type": "integer"}, "position": {"type": "string"}, "icon": {"type": "string"}}, "required": ["toolbar", "resizable", "frame", "fullscreen", "width", "height", "min_width", "min_height", "position", "icon"]}, "author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"node-movie": {"type": "string"}, "movie-title": {"type": "string"}}, "required": ["node-movie", "movie-title"]}, "devDependencies": {"type": "object", "properties": {"karma": {"type": "string"}, "karma-nodewebkit-launcher": {"type": "string"}, "jasmine-core": {"type": "string"}, "karma-jasmine": {"type": "string"}}, "required": ["karma", "karma-nodewebkit-launcher", "jasmine-core", "karma-jasmine"]}}, "required": ["name", "version", "description", "main", "private", "keywords", "window", "author", "license", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"id": {"type": "string"}, "title": {"type": "string"}, "author": {"type": "string"}, "version": {"type": "string"}, "placeholder": {"type": "string"}, "wait_seconds": {"type": "integer"}}, "required": ["id", "title", "author", "version", "placeholder", "wait_seconds"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "guya", "title" : "Guya", "author" : "Jeff Neer", "version" : "v1.0", "placeholder" : "Guya Gallery URL", "wait_seconds" : 3} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "title": {"type": "string"}, "author": {"type": "string"}, "version": {"type": "string"}, "placeholder": {"type": "string"}, "wait_seconds": {"type": "integer"}}, "required": ["id", "title", "author", "version", "placeholder", "wait_seconds"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"text": {"type": "string"}, "iconFallbackText": {"type": "string"}, "html": {"type": "string"}}, "required": ["text", "iconFallbackText", "html"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"text" : "You can be fined up to \u00a35,000 if you don\u2019t register.", "iconFallbackText" : "Warning", "html" : "<span>Some custom warning text</span>"} | json_instruct | {"type": "object", "properties": {"text": {"type": "string"}, "iconFallbackText": {"type": "string"}, "html": {"type": "string"}}, "required": ["text", "iconFallbackText", "html"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "array", "items": {"type": "object", "properties": {"postal_code": {"type": "string"}, "place_name": {"type": "string"}, "place_type": {"type": "string"}, "county": {"type": "string"}, "state": {"type": "string"}, "city": {"type": "string"}}, "required": ["postal_code", "place_name", "place_type", "county", "state", "city"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"postal_code" : "54128", "place_name" : "Condominios San Rafael", "place_type" : "Unidad habitacional", "county" : "Tlalnepantla de Baz", "state" : "M\u00e9xico", "city" : "Tlalnepantla de Baz"}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"postal_code": {"type": "string"}, "place_name": {"type": "string"}, "place_type": {"type": "string"}, "county": {"type": "string"}, "state": {"type": "string"}, "city": {"type": "string"}}, "required": ["postal_code", "place_name", "place_type", "county", "state", "city"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"script": {"type": "object", "properties": {"type": {"type": "string"}, "content": {"type": "string"}}, "required": ["type", "content"]}, "specJson": {"type": "object", "properties": {"category": {"type": "string"}, "func": {"type": "string"}, "name": {"type": "string"}, "context": {"type": "string"}, "label": {"type": "string"}, "description": {"type": "string"}, "tags": {"type": "array", "items": {}}, "version": {"type": "string"}, "inputs": {"type": "object", "properties": {"table": {"type": "string"}, "model": {"type": "string"}}, "required": ["table", "model"]}, "outputs": {"type": "object", "properties": {"out_table": {"type": "string"}}, "required": ["out_table"]}, "meta": {"type": "object", "properties": {"table": {"type": "object", "properties": {"type": {"type": "string"}}, "required": ["type"]}, "model": {"type": "object", "properties": {"type": {"type": "string"}}, "required": ["type"]}, "out_table": {"type": "object", "properties": {"type": {"type": "string"}}, "required": ["type"]}}, "required": ["table", "model", "out_table"]}, "params": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "label": {"type": "string"}, "description": {"type": "string"}, "mandatory": {"type": "boolean"}, "items": {"type": "array", "items": {}}, "visibleOption": {"type": "array", "items": {}}, "control": {"type": "string"}, "columnType": {"type": "array", "items": {}}, "validation": {"type": "array", "items": {}}, "type": {"type": "string"}, "placeHolder": {"type": "string"}}, "required": ["id", "label", "description", "mandatory", "items", "visibleOption", "control", "columnType", "validation", "type", "placeHolder"]}}}, "required": ["category", "func", "name", "context", "label", "description", "tags", "version", "inputs", "outputs", "meta", "params"]}, "md": {"type": "string"}}, "required": ["script", "specJson", "md"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"script" : {"type" : "", "content" : ""}, "specJson" : {"category" : "manipulation", "func" : "brightics.function.manipulation$outlier_detection_tukey_carling_model22749", "name" : "brightics.function.manipulation$outlier_detection_tukey_carling_model", "context" : "python", "label" : "Outlier Detection (Tukey/Carling) Model", "description" : "Predict the labels (inlier, outlier) of input array according to Tueky / Carling method.\nThis method allows to generalize prediction to new observations (not in the training set).", "tags" : [], "version" : "3.6", "inputs" : {"table" : "", "model" : ""}, "outputs" : {"out_table" : ""}, "meta" : {"table" : {"type" : "table"}, "model" : {"type" : "model"}, "out_table" : {"type" : "table"}}, "params" : [{"id" : "new_column_prefix", "label" : "New Column Prefix", "description" : "Column prefix for new columns.", "mandatory" : false, "items" : [], "visibleOption" : [], "control" : "InputBox", "columnType" : [], "validation" : [], "type" : "String", "placeHolder" : "is_outlier_"}]}, "md" : ""} | json_instruct | {"type": "object", "properties": {"script": {"type": "object", "properties": {"type": {"type": "string"}, "content": {"type": "string"}}, "required": ["type", "content"]}, "specJson": {"type": "object", "properties": {"category": {"type": "string"}, "func": {"type": "string"}, "name": {"type": "string"}, "context": {"type": "string"}, "label": {"type": "string"}, "description": {"type": "string"}, "tags": {"type": "array", "items": {}}, "version": {"type": "string"}, "inputs": {"type": "object", "properties": {"table": {"type": "string"}, "model": {"type": "string"}}, "required": ["table", "model"]}, "outputs": {"type": "object", "properties": {"out_table": {"type": "string"}}, "required": ["out_table"]}, "meta": {"type": "object", "properties": {"table": {"type": "object", "properties": {"type": {"type": "string"}}, "required": ["type"]}, "model": {"type": "object", "properties": {"type": {"type": "string"}}, "required": ["type"]}, "out_table": {"type": "object", "properties": {"type": {"type": "string"}}, "required": ["type"]}}, "required": ["table", "model", "out_table"]}, "params": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "label": {"type": "string"}, "description": {"type": "string"}, "mandatory": {"type": "boolean"}, "items": {"type": "array", "items": {}}, "visibleOption": {"type": "array", "items": {}}, "control": {"type": "string"}, "columnType": {"type": "array", "items": {}}, "validation": {"type": "array", "items": {}}, "type": {"type": "string"}, "placeHolder": {"type": "string"}}, "required": ["id", "label", "description", "mandatory", "items", "visibleOption", "control", "columnType", "validation", "type", "placeHolder"]}}}, "required": ["category", "func", "name", "context", "label", "description", "tags", "version", "inputs", "outputs", "meta", "params"]}, "md": {"type": "string"}}, "required": ["script", "specJson", "md"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "array", "items": {"type": "array", "items": {}}}}, "required": ["contract", "tool", "start", "end", "duration", "analysis"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"contract" : "0xebf2f9e8de960f64ec0fdcda6cb282423133347b", "tool" : "manticore", "start" : 1564909188.4112318, "end" : 1564910989.9583416, "duration" : 1801.5471098423004, "analysis" : [[]]} | json_instruct | {"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "array", "items": {"type": "array", "items": {}}}}, "required": ["contract", "tool", "start", "end", "duration", "analysis"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"7495": {"type": "string"}, "7493": {"type": "string"}}, "required": ["7495", "7493"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"7495" : "7496", "7493" : "7494"} | json_instruct | {"type": "object", "properties": {"7495": {"type": "string"}, "7493": {"type": "string"}}, "required": ["7495", "7493"], "$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"}, "dependencies": {"type": "object", "properties": {"estraverse": {"type": "string"}, "esutils": {"type": "string"}, "esprima": {"type": "string"}, "optionator": {"type": "string"}}, "required": ["estraverse", "esutils", "esprima", "optionator"]}}, "required": ["name", "version", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "escodegen-temp", "version" : "0.0.0", "dependencies" : {"estraverse" : "^1.9.1", "esutils" : "^2.0.2", "esprima" : "^4.0.0", "optionator" : "^0.8.1"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "dependencies": {"type": "object", "properties": {"estraverse": {"type": "string"}, "esutils": {"type": "string"}, "esprima": {"type": "string"}, "optionator": {"type": "string"}}, "required": ["estraverse", "esutils", "esprima", "optionator"]}}, "required": ["name", "version", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"book": {"type": "string"}, "height": {"type": "integer"}, "original": {"type": "string"}, "page": {"type": "integer"}, "text": {"type": "string"}, "thumbnail": {"type": "string"}, "width": {"type": "integer"}}, "required": ["book", "height", "original", "page", "text", "thumbnail", "width"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"book" : "002", "height" : 1161, "original" : "http://www.tbcas.jp/ja/lib/lib2/002/page28/x1.jpg", "page" : 28, "text" : "\u591c\u8972\u591c\u8b66", "thumbnail" : "http://www.tbcas.jp/ja/lib/lib2/002/page28/thumbnail.jpg", "width" : 786} | json_instruct | {"type": "object", "properties": {"book": {"type": "string"}, "height": {"type": "integer"}, "original": {"type": "string"}, "page": {"type": "integer"}, "text": {"type": "string"}, "thumbnail": {"type": "string"}, "width": {"type": "integer"}}, "required": ["book", "height", "original", "page", "text", "thumbnail", "width"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"project_name": {"type": "string"}, "files": {"type": "object", "properties": {"/src/main/java/com/kloudone/gateway/service/util/RandomUtil.java": {"type": "integer"}}, "required": ["/src/main/java/com/kloudone/gateway/service/util/RandomUtil.java"]}, "pull_request": {"type": "string"}, "report": {"type": "object", "properties": {"files_fixed": {"type": "integer"}, "vulnerabilities_fixed": {"type": "integer"}}, "required": ["files_fixed", "vulnerabilities_fixed"]}}, "required": ["project_name", "files", "pull_request", "report"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"project_name" : "klouone-kubernetes-test/gatewayapp", "files" : {"/src/main/java/com/kloudone/gateway/service/util/RandomUtil.java" : 3}, "pull_request" : "https://github.com/klouone-kubernetes-test/gatewayapp/pull/1", "report" : {"files_fixed" : 1, "vulnerabilities_fixed" : 3}} | json_instruct | {"type": "object", "properties": {"project_name": {"type": "string"}, "files": {"type": "object", "properties": {"/src/main/java/com/kloudone/gateway/service/util/RandomUtil.java": {"type": "integer"}}, "required": ["/src/main/java/com/kloudone/gateway/service/util/RandomUtil.java"]}, "pull_request": {"type": "string"}, "report": {"type": "object", "properties": {"files_fixed": {"type": "integer"}, "vulnerabilities_fixed": {"type": "integer"}}, "required": ["files_fixed", "vulnerabilities_fixed"]}}, "required": ["project_name", "files", "pull_request", "report"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"version": {"type": "number"}, "people": {"type": "array", "items": {"type": "object", "properties": {"pose_keypoints_2d": {"type": "array", "items": {"type": "number"}}, "face_keypoints_2d": {"type": "array", "items": {}}, "hand_left_keypoints_2d": {"type": "array", "items": {}}, "hand_right_keypoints_2d": {"type": "array", "items": {}}, "pose_keypoints_3d": {"type": "array", "items": {}}, "face_keypoints_3d": {"type": "array", "items": {}}, "hand_left_keypoints_3d": {"type": "array", "items": {}}, "hand_right_keypoints_3d": {"type": "array", "items": {}}}, "required": ["pose_keypoints_2d", "face_keypoints_2d", "hand_left_keypoints_2d", "hand_right_keypoints_2d", "pose_keypoints_3d", "face_keypoints_3d", "hand_left_keypoints_3d", "hand_right_keypoints_3d"]}}}, "required": ["version", "people"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"version" : 1.2, "people" : [{"pose_keypoints_2d" : [254.986, 180.576, 0.950966, 217.158, 227.62, 0.807623, 181.956, 225.038, 0.800115, 163.649, 311.154, 0.778151, 164.943, 380.349, 0.802983, 254.952, 232.794, 0.806069, 283.692, 288.929, 0.802406, 322.87, 326.798, 0.771714, 209.317, 382.909, 0.507393, 200.171, 476.928, 0.133343, 0, 0, 0, 262.849, 377.686, 0.598322, 264.114, 476.911, 0.279763, 0, 0, 0, 245.901, 171.427, 0.94517, 255.006, 171.454, 0.246836, 215.886, 171.521, 0.89738, 0, 0, 0], "face_keypoints_2d" : [], "hand_left_keypoints_2d" : [], "hand_right_keypoints_2d" : [], "pose_keypoints_3d" : [], "face_keypoints_3d" : [], "hand_left_keypoints_3d" : [], "hand_right_keypoints_3d" : []}, {"pose_keypoints_2d" : [439.058, 231.503, 0.842166, 467.741, 268.089, 0.62278, 462.538, 268.099, 0.435648, 446.883, 328.094, 0.104856, 0, 0, 0, 472.977, 268.068, 0.758991, 422.083, 320.27, 0.755109, 364.644, 329.386, 0.807931, 459.919, 397.281, 0.402244, 0, 0, 0, 0, 0, 0, 484.675, 401.198, 0.503583, 0, 0, 0, 0, 0, 0, 435.129, 224.951, 0.846093, 445.549, 223.669, 0.917642, 0, 0, 0, 465.187, 224.985, 0.828815], "face_keypoints_2d" : [], "hand_left_keypoints_2d" : [], "hand_right_keypoints_2d" : [], "pose_keypoints_3d" : [], "face_keypoints_3d" : [], "hand_left_keypoints_3d" : [], "hand_right_keypoints_3d" : []}]} | json_instruct | {"type": "object", "properties": {"version": {"type": "number"}, "people": {"type": "array", "items": {"type": "object", "properties": {"pose_keypoints_2d": {"type": "array", "items": {"type": "number"}}, "face_keypoints_2d": {"type": "array", "items": {}}, "hand_left_keypoints_2d": {"type": "array", "items": {}}, "hand_right_keypoints_2d": {"type": "array", "items": {}}, "pose_keypoints_3d": {"type": "array", "items": {}}, "face_keypoints_3d": {"type": "array", "items": {}}, "hand_left_keypoints_3d": {"type": "array", "items": {}}, "hand_right_keypoints_3d": {"type": "array", "items": {}}}, "required": ["pose_keypoints_2d", "face_keypoints_2d", "hand_left_keypoints_2d", "hand_right_keypoints_2d", "pose_keypoints_3d", "face_keypoints_3d", "hand_left_keypoints_3d", "hand_right_keypoints_3d"]}}}, "required": ["version", "people"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"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" : "Hausse de secours Trijicon ACOG", "ShortName" : "Trij.Sec.", "Description" : "Hausse de secours amovible, s'installe sur les lunettes ACOG."} | 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#"} |
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"}, "test-watch": {"type": "string"}}, "required": ["start", "test", "test-watch"]}, "engines": {"type": "object", "properties": {"node": {"type": "string"}}, "required": ["node"]}, "author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"bcrypt": {"type": "string"}, "body-parser": {"type": "string"}, "ejs": {"type": "string"}, "express": {"type": "string"}, "express-flash": {"type": "string"}, "express-session": {"type": "string"}, "firebase": {"type": "string"}, "moment": {"type": "string"}, "passport": {"type": "string"}, "passport-local": {"type": "string"}, "socket.io": {"type": "string"}}, "required": ["bcrypt", "body-parser", "ejs", "express", "express-flash", "express-session", "firebase", "moment", "passport", "passport-local", "socket.io"]}, "devDependencies": {"type": "object", "properties": {"expect": {"type": "string"}, "mocha": {"type": "string"}, "nodemon": {"type": "string"}}, "required": ["expect", "mocha", "nodemon"]}}, "required": ["name", "version", "description", "main", "scripts", "engines", "author", "license", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "node-chat-app", "version" : "1.0.0", "description" : "", "main" : "index.js", "scripts" : {"start" : "node server/server.js", "test" : "mocha server/**/*.test.js", "test-watch" : "nodemon --exec 'npm test'"}, "engines" : {"node" : "6.2.2"}, "author" : "", "license" : "ISC", "dependencies" : {"bcrypt" : "^5.0.0", "body-parser" : "^1.19.0", "ejs" : "^2.7.1", "express" : "^4.14.0", "express-flash" : "0.0.2", "express-session" : "^1.16.2", "firebase" : "^7.1.0", "moment" : "^2.15.1", "passport" : "^0.4.0", "passport-local" : "^1.0.0", "socket.io" : "^1.4.8"}, "devDependencies" : {"expect" : "^1.20.2", "mocha" : "^3.0.2", "nodemon" : "^1.10.2"}} | 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"}, "test-watch": {"type": "string"}}, "required": ["start", "test", "test-watch"]}, "engines": {"type": "object", "properties": {"node": {"type": "string"}}, "required": ["node"]}, "author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"bcrypt": {"type": "string"}, "body-parser": {"type": "string"}, "ejs": {"type": "string"}, "express": {"type": "string"}, "express-flash": {"type": "string"}, "express-session": {"type": "string"}, "firebase": {"type": "string"}, "moment": {"type": "string"}, "passport": {"type": "string"}, "passport-local": {"type": "string"}, "socket.io": {"type": "string"}}, "required": ["bcrypt", "body-parser", "ejs", "express", "express-flash", "express-session", "firebase", "moment", "passport", "passport-local", "socket.io"]}, "devDependencies": {"type": "object", "properties": {"expect": {"type": "string"}, "mocha": {"type": "string"}, "nodemon": {"type": "string"}}, "required": ["expect", "mocha", "nodemon"]}}, "required": ["name", "version", "description", "main", "scripts", "engines", "author", "license", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"time": {"type": "integer"}}, "required": ["time"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"time" : 1529784067} | json_instruct | {"type": "object", "properties": {"time": {"type": "integer"}}, "required": ["time"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"PREVALENCE_BY_GENDER_AGE_YEAR": {"type": "object", "properties": {"TRELLIS_NAME": {"type": "array", "items": {"type": "string"}}, "SERIES_NAME": {"type": "array", "items": {"type": "string"}}, "X_CALENDAR_YEAR": {"type": "array", "items": {"type": "integer"}}, "Y_PREVALENCE_1000PP": {"type": "array", "items": {"type": "number"}}}, "required": ["TRELLIS_NAME", "SERIES_NAME", "X_CALENDAR_YEAR", "Y_PREVALENCE_1000PP"]}, "PREVALENCE_BY_MONTH": {"type": "object", "properties": {"X_CALENDAR_MONTH": {"type": "array", "items": {"type": "integer"}}, "Y_PREVALENCE_1000PP": {"type": "array", "items": {"type": "number"}}}, "required": ["X_CALENDAR_MONTH", "Y_PREVALENCE_1000PP"]}, "CONDITIONS_BY_TYPE": {"type": "object", "properties": {"CONCEPT_NAME": {"type": "string"}, "COUNT_VALUE": {"type": "integer"}}, "required": ["CONCEPT_NAME", "COUNT_VALUE"]}, "AGE_AT_FIRST_DIAGNOSIS": {"type": "object", "properties": {"CATEGORY": {"type": "array", "items": {"type": "string"}}, "MIN_VALUE": {"type": "array", "items": {"type": "integer"}}, "P10_VALUE": {"type": "array", "items": {"type": "integer"}}, "P25_VALUE": {"type": "array", "items": {"type": "integer"}}, "MEDIAN_VALUE": {"type": "array", "items": {"type": "integer"}}, "P75_VALUE": {"type": "array", "items": {"type": "integer"}}, "P90_VALUE": {"type": "array", "items": {"type": "integer"}}, "MAX_VALUE": {"type": "array", "items": {"type": "integer"}}}, "required": ["CATEGORY", "MIN_VALUE", "P10_VALUE", "P25_VALUE", "MEDIAN_VALUE", "P75_VALUE", "P90_VALUE", "MAX_VALUE"]}}, "required": ["PREVALENCE_BY_GENDER_AGE_YEAR", "PREVALENCE_BY_MONTH", "CONDITIONS_BY_TYPE", "AGE_AT_FIRST_DIAGNOSIS"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"PREVALENCE_BY_GENDER_AGE_YEAR" : {"TRELLIS_NAME" : ["20-29", "10-19", "30-39", "10-19", "20-29", "10-19", "20-29", "20-29", "20-29", "10-19", "10-19", "20-29", "10-19", "10-19"], "SERIES_NAME" : ["MALE", "MALE", "MALE", "MALE", "MALE", "MALE", "MALE", "MALE", "MALE", "MALE", "MALE", "MALE", "MALE", "MALE"], "X_CALENDAR_YEAR" : [2003, 2005, 2008, 2009, 2009, 2010, 2010, 2011, 2012, 2012, 2013, 2013, 2014, 2015], "Y_PREVALENCE_1000PP" : [0.02646, 0.02885, 0.01466, 0.0338, 0.0158, 0.02759, 0.02892, 0.02056, 0.01798, 0.02446, 0.02446, 0.02063, 0.03886, 0.02826]}, "PREVALENCE_BY_MONTH" : {"X_CALENDAR_MONTH" : [200504, 200905, 201105, 201308, 201407], "Y_PREVALENCE_1000PP" : [0.00135, 0.00113, 0.00111, 0.0013, 0.00118]}, "CONDITIONS_BY_TYPE" : {"CONCEPT_NAME" : "Observation recorded from EHR", "COUNT_VALUE" : 371}, "AGE_AT_FIRST_DIAGNOSIS" : {"CATEGORY" : ["FEMALE", "MALE"], "MIN_VALUE" : [0, 1], "P10_VALUE" : [7, 14], "P25_VALUE" : [13, 16], "MEDIAN_VALUE" : [17, 19], "P75_VALUE" : [27, 27], "P90_VALUE" : [47, 37], "MAX_VALUE" : [66, 63]}} | json_instruct | {"type": "object", "properties": {"PREVALENCE_BY_GENDER_AGE_YEAR": {"type": "object", "properties": {"TRELLIS_NAME": {"type": "array", "items": {"type": "string"}}, "SERIES_NAME": {"type": "array", "items": {"type": "string"}}, "X_CALENDAR_YEAR": {"type": "array", "items": {"type": "integer"}}, "Y_PREVALENCE_1000PP": {"type": "array", "items": {"type": "number"}}}, "required": ["TRELLIS_NAME", "SERIES_NAME", "X_CALENDAR_YEAR", "Y_PREVALENCE_1000PP"]}, "PREVALENCE_BY_MONTH": {"type": "object", "properties": {"X_CALENDAR_MONTH": {"type": "array", "items": {"type": "integer"}}, "Y_PREVALENCE_1000PP": {"type": "array", "items": {"type": "number"}}}, "required": ["X_CALENDAR_MONTH", "Y_PREVALENCE_1000PP"]}, "CONDITIONS_BY_TYPE": {"type": "object", "properties": {"CONCEPT_NAME": {"type": "string"}, "COUNT_VALUE": {"type": "integer"}}, "required": ["CONCEPT_NAME", "COUNT_VALUE"]}, "AGE_AT_FIRST_DIAGNOSIS": {"type": "object", "properties": {"CATEGORY": {"type": "array", "items": {"type": "string"}}, "MIN_VALUE": {"type": "array", "items": {"type": "integer"}}, "P10_VALUE": {"type": "array", "items": {"type": "integer"}}, "P25_VALUE": {"type": "array", "items": {"type": "integer"}}, "MEDIAN_VALUE": {"type": "array", "items": {"type": "integer"}}, "P75_VALUE": {"type": "array", "items": {"type": "integer"}}, "P90_VALUE": {"type": "array", "items": {"type": "integer"}}, "MAX_VALUE": {"type": "array", "items": {"type": "integer"}}}, "required": ["CATEGORY", "MIN_VALUE", "P10_VALUE", "P25_VALUE", "MEDIAN_VALUE", "P75_VALUE", "P90_VALUE", "MAX_VALUE"]}}, "required": ["PREVALENCE_BY_GENDER_AGE_YEAR", "PREVALENCE_BY_MONTH", "CONDITIONS_BY_TYPE", "AGE_AT_FIRST_DIAGNOSIS"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"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" : "U8D", "name" : "Universal Dollar", "decimals" : 18, "address" : "0x888888877a18532b78d259577d00057054c50dd8"} | 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#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"id": {"type": "integer"}, "title": {"type": "array", "items": {"type": "string"}}, "description": {"type": "array", "items": {"type": "string"}}, "paths": {"type": "array", "items": {"type": "string"}}, "location": {"type": "string"}, "wayto": {"type": "object", "properties": {"27411": {"type": "string"}, "27406": {"type": "string"}, "27418": {"type": "string"}, "27409": {"type": "string"}, "27439": {"type": "string"}, "27440": {"type": "string"}}, "required": ["27411", "27406", "27418", "27409", "27439", "27440"]}, "timeto": {"type": "object", "properties": {"27409": {"type": "number"}, "27411": {"type": "number"}, "27406": {"type": "number"}, "27418": {"type": "number"}, "27439": {"type": "number"}, "27440": {"type": "number"}}, "required": ["27409", "27411", "27406", "27418", "27439", "27440"]}, "image": {"type": "string"}, "image_coords": {"type": "array", "items": {"type": "integer"}}}, "required": ["id", "title", "description", "paths", "location", "wayto", "timeto", "image", "image_coords"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : 27410, "title" : ["[Carnival, Quirky Quarter]"], "description" : ["Circling along the wagons parked to the north and west, the walkway continues around the outer edge of the carnival grounds. Piles of debris lashed together with nets fill the gaps between the wagons. Excited chatter from carnival goers fills the air. Footprints circle a moist patch in the walkway."], "paths" : ["Obvious paths: east, southeast, south"], "location" : "Wehnimer's Landing", "wayto" : {"27411" : "south", "27406" : "southeast", "27418" : "go marquee", "27409" : "east", "27439" : "go wood door", "27440" : "go white door"}, "timeto" : {"27409" : 0.2, "27411" : 0.2, "27406" : 0.2, "27418" : 0.2, "27439" : 0.2, "27440" : 0.2}, "image" : "fest-carnival-of-freaks-1537632252.png", "image_coords" : [476, 189, 524, 238]} | json_instruct | {"type": "object", "properties": {"id": {"type": "integer"}, "title": {"type": "array", "items": {"type": "string"}}, "description": {"type": "array", "items": {"type": "string"}}, "paths": {"type": "array", "items": {"type": "string"}}, "location": {"type": "string"}, "wayto": {"type": "object", "properties": {"27411": {"type": "string"}, "27406": {"type": "string"}, "27418": {"type": "string"}, "27409": {"type": "string"}, "27439": {"type": "string"}, "27440": {"type": "string"}}, "required": ["27411", "27406", "27418", "27409", "27439", "27440"]}, "timeto": {"type": "object", "properties": {"27409": {"type": "number"}, "27411": {"type": "number"}, "27406": {"type": "number"}, "27418": {"type": "number"}, "27439": {"type": "number"}, "27440": {"type": "number"}}, "required": ["27409", "27411", "27406", "27418", "27439", "27440"]}, "image": {"type": "string"}, "image_coords": {"type": "array", "items": {"type": "integer"}}}, "required": ["id", "title", "description", "paths", "location", "wayto", "timeto", "image", "image_coords"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"appid": {"type": "integer"}, "name": {"type": "string"}, "windows": {"type": "boolean"}, "mac": {"type": "boolean"}, "linux": {"type": "boolean"}, "early_access": {"type": "boolean"}, "lookup_time": {"type": "integer"}}, "required": ["appid", "name", "windows", "mac", "linux", "early_access", "lookup_time"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"appid" : 475470, "name" : "Global Soccer Manager", "windows" : true, "mac" : false, "linux" : false, "early_access" : false, "lookup_time" : 1490995604} | json_instruct | {"type": "object", "properties": {"appid": {"type": "integer"}, "name": {"type": "string"}, "windows": {"type": "boolean"}, "mac": {"type": "boolean"}, "linux": {"type": "boolean"}, "early_access": {"type": "boolean"}, "lookup_time": {"type": "integer"}}, "required": ["appid", "name", "windows", "mac", "linux", "early_access", "lookup_time"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "array", "items": {"type": "object", "properties": {"uid": {"type": "string"}, "name": {"type": "string"}, "repo": {"type": "object", "properties": {"owner": {"type": "string"}, "name": {"type": "string"}}, "required": ["owner", "name"]}}, "required": ["uid", "name", "repo"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"uid" : "1234-5678-9101112", "name" : "namespaceName", "repo" : {"owner" : "owner1", "name" : "repo1"}}, {"uid" : "1234-5678-9101113", "name" : "namespaceName-develop", "repo" : {"owner" : "owner1", "name" : "repo2"}}, {"uid" : "1234-5678-9101114", "name" : "namespaceName-qa", "repo" : {"owner" : "owner1", "name" : "repo3"}}, {"uid" : "1234-5678-9101115", "name" : "otherNamespaceName", "repo" : {"owner" : "owner2", "name" : "repo1"}}, {"uid" : "1234-5678-9101116", "name" : "otherNamespaceName-develop", "repo" : {"owner" : "owner2", "name" : "repo2"}}, {"uid" : "1234-5678-9101117", "name" : "otherNamespaceName-qa", "repo" : {"owner" : "owner2", "name" : "repo3"}}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"uid": {"type": "string"}, "name": {"type": "string"}, "repo": {"type": "object", "properties": {"owner": {"type": "string"}, "name": {"type": "string"}}, "required": ["owner", "name"]}}, "required": ["uid", "name", "repo"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"text": {"type": "object", "properties": {"0": {"type": "object", "properties": {"m1": {"type": "string"}, "m2": {"type": "string"}}, "required": ["m1", "m2"]}, "1": {"type": "object", "properties": {"m1": {"type": "string"}, "m2": {"type": "string"}}, "required": ["m1", "m2"]}}, "required": ["0", "1"]}}, "required": ["text"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"text" : {"0" : {"m1" : "\u0639\u0627\u0644\u0645 \u0628\u0631 \u0631\u0646\u062f\u0627\u0646 \u0628\u0647 \u0645\u062b\u0644 \u062c\u0627\u0645 \u0645\u06cc \u0627\u0633\u062a", "m2" : "\u0633\u0627\u0642\u06cc \u0648 \u062d\u0631\u06cc\u0641 \u0648 \u062c\u0627\u0645 \u0645\u06cc \u062c\u0645\u0644\u0647 \u0648\u06cc \u0627\u0633\u062a"}, "1" : {"m1" : "\u062f\u0631\u06cc\u0627 \u0648 \u062d\u0628\u0627\u0628 \u0648 \u0645\u0648\u062c \u0622\u0628\u0633\u062a \u0628\u0631 \u0645\u0627", "m2" : "\u062e\u0648\u062f \u062c\u0627\u0645 \u062d\u0628\u0627\u0628 \u062e\u0627\u0644\u06cc \u0627\u0632 \u0622\u0628 \u06a9\u06cc \u0627\u0633\u062a"}}} | json_instruct | {"type": "object", "properties": {"text": {"type": "object", "properties": {"0": {"type": "object", "properties": {"m1": {"type": "string"}, "m2": {"type": "string"}}, "required": ["m1", "m2"]}, "1": {"type": "object", "properties": {"m1": {"type": "string"}, "m2": {"type": "string"}}, "required": ["m1", "m2"]}}, "required": ["0", "1"]}}, "required": ["text"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"quantity": {"type": "integer"}}, "required": ["quantity"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"quantity" : 0} | json_instruct | {"type": "object", "properties": {"quantity": {"type": "integer"}}, "required": ["quantity"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.