input stringlengths 159 2.05k | output stringlengths 5 10.3k | task stringclasses 1
value | schema stringlengths 100 1.99k |
|---|---|---|---|
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"dependencies": {"type": "object", "properties": {"axios": {"type": "string"}, "express": {"type": "string"}, "express-fileupload": {"type": "string"}, "express-validator": {"type": "string"}, "http": {"type": "string"}, "qrcode": {"type": "string"}, "qrcode-terminal": {"type": "string"}, "serve-favicon": {"type": "string"}, "socket.io": {"type": "string"}, "whatsapp-web.js": {"type": "string"}}, "required": ["axios", "express", "express-fileupload", "express-validator", "http", "qrcode", "qrcode-terminal", "serve-favicon", "socket.io", "whatsapp-web.js"]}, "devDependencies": {"type": "object", "properties": {"nodemon": {"type": "string"}}, "required": ["nodemon"]}, "name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}, "start:dev": {"type": "string"}, "test": {"type": "string"}}, "required": ["start", "start:dev", "test"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}}, "required": ["dependencies", "devDependencies", "name", "version", "description", "main", "scripts", "keywords", "author", "license"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"dependencies" : {"axios" : "^0.24.0", "express" : "^4.17.2", "express-fileupload" : "^1.2.1", "express-validator" : "^6.14.0", "http" : "^0.0.1-security", "qrcode" : "^1.5.0", "qrcode-terminal" : "^0.12.0", "serve-favicon" : "^2.5.0", "socket.io" : "^4.4.0", "whatsapp-web.js" : "^1.15.3"}, "devDependencies" : {"nodemon" : "^2.0.15"}, "name" : "whatsapp-api", "version" : "1.0.0", "description" : "\u001b[A\u001b[A\u001b[B\u001b[Bwhatsapp api by dirgareborn", "main" : "app.js", "scripts" : {"start" : "node app.js", "start:dev" : "nodemon app.js", "test" : "echo \"Error: no test specified\" && exit 1"}, "keywords" : ["whatsapp-api", "node", "js"], "author" : "Dirga Reborn", "license" : "MIT"} | json_instruct | {"type": "object", "properties": {"dependencies": {"type": "object", "properties": {"axios": {"type": "string"}, "express": {"type": "string"}, "express-fileupload": {"type": "string"}, "express-validator": {"type": "string"}, "http": {"type": "string"}, "qrcode": {"type": "string"}, "qrcode-terminal": {"type": "string"}, "serve-favicon": {"type": "string"}, "socket.io": {"type": "string"}, "whatsapp-web.js": {"type": "string"}}, "required": ["axios", "express", "express-fileupload", "express-validator", "http", "qrcode", "qrcode-terminal", "serve-favicon", "socket.io", "whatsapp-web.js"]}, "devDependencies": {"type": "object", "properties": {"nodemon": {"type": "string"}}, "required": ["nodemon"]}, "name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}, "start:dev": {"type": "string"}, "test": {"type": "string"}}, "required": ["start", "start:dev", "test"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}}, "required": ["dependencies", "devDependencies", "name", "version", "description", "main", "scripts", "keywords", "author", "license"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"domain": {"type": "string"}, "name": {"type": "string"}, "documentation": {"type": "string"}, "dependencies": {"type": "array", "items": {}}, "codeowners": {"type": "array", "items": {"type": "string"}}, "requirements": {"type": "array", "items": {"type": "string"}}, "version": {"type": "string"}}, "required": ["domain", "name", "documentation", "dependencies", "codeowners", "requirements", "version"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"domain" : "emby_upcoming_media", "name" : "Emby Latest Media", "documentation" : "https://github.com/gcorgnet/sensor.emby_upcoming_media", "dependencies" : [], "codeowners" : ["@gcorgnet"], "requirements" : ["python-dateutil"], "version" : "0.3.5"} | json_instruct | {"type": "object", "properties": {"domain": {"type": "string"}, "name": {"type": "string"}, "documentation": {"type": "string"}, "dependencies": {"type": "array", "items": {}}, "codeowners": {"type": "array", "items": {"type": "string"}}, "requirements": {"type": "array", "items": {"type": "string"}}, "version": {"type": "string"}}, "required": ["domain", "name", "documentation", "dependencies", "codeowners", "requirements", "version"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"Sources": {"type": "array", "items": {"type": "object", "properties": {"source": {"type": "string"}, "ra": {"type": "number"}, "dec": {"type": "number"}, "epoch": {"type": "null"}, "equinox": {"type": "string"}, "shortname": {"type": "null"}, "reference": {"type": "string"}, "comments": {"type": "null"}}, "required": ["source", "ra", "dec", "epoch", "equinox", "shortname", "reference", "comments"]}}, "Names": {"type": "array", "items": {"type": "object", "properties": {"other_name": {"type": "string"}}, "required": ["other_name"]}}, "Photometry": {"type": "array", "items": {"type": "object", "properties": {"band": {"type": "string"}, "ucd": {"type": "string"}, "magnitude": {"type": "number"}, "magnitude_error": {"type": "number"}, "telescope": {"type": "string"}, "instrument": {"type": "string"}, "epoch": {"type": "null"}, "comments": {"type": "null"}, "reference": {"type": "string"}}, "required": ["band", "ucd", "magnitude", "magnitude_error", "telescope", "instrument", "epoch", "comments", "reference"]}}}, "required": ["Sources", "Names", "Photometry"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"Sources" : [{"source" : "ULAS J034150.21+042324.9", "ra" : 55.4594, "dec" : 4.3903, "epoch" : null, "equinox" : "2000", "shortname" : null, "reference" : "DayJ13", "comments" : null}], "Names" : [{"other_name" : "2MASS J03415025+0423251"}, {"other_name" : "ULAS J034150.21+042324.9"}], "Photometry" : [{"band" : "2MASS.H", "ucd" : "em.IR.H", "magnitude" : 15.983, "magnitude_error" : 0.18, "telescope" : "2MASS", "instrument" : "2MASS", "epoch" : null, "comments" : null, "reference" : "Cutr03"}, {"band" : "2MASS.J", "ucd" : "em.IR.J", "magnitude" : 16.984, "magnitude_error" : 0.219, "telescope" : "2MASS", "instrument" : "2MASS", "epoch" : null, "comments" : null, "reference" : "Cutr03"}, {"band" : "2MASS.Ks", "ucd" : "em.IR.K", "magnitude" : 15.226, "magnitude_error" : 0.184, "telescope" : "2MASS", "instrument" : "2MASS", "epoch" : null, "comments" : null, "reference" : "Cutr03"}]} | json_instruct | {"type": "object", "properties": {"Sources": {"type": "array", "items": {"type": "object", "properties": {"source": {"type": "string"}, "ra": {"type": "number"}, "dec": {"type": "number"}, "epoch": {"type": "null"}, "equinox": {"type": "string"}, "shortname": {"type": "null"}, "reference": {"type": "string"}, "comments": {"type": "null"}}, "required": ["source", "ra", "dec", "epoch", "equinox", "shortname", "reference", "comments"]}}, "Names": {"type": "array", "items": {"type": "object", "properties": {"other_name": {"type": "string"}}, "required": ["other_name"]}}, "Photometry": {"type": "array", "items": {"type": "object", "properties": {"band": {"type": "string"}, "ucd": {"type": "string"}, "magnitude": {"type": "number"}, "magnitude_error": {"type": "number"}, "telescope": {"type": "string"}, "instrument": {"type": "string"}, "epoch": {"type": "null"}, "comments": {"type": "null"}, "reference": {"type": "string"}}, "required": ["band", "ucd", "magnitude", "magnitude_error", "telescope", "instrument", "epoch", "comments", "reference"]}}}, "required": ["Sources", "Names", "Photometry"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this 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" : "QmYgSCDPUU42mNo2banQvF5SUCEWDMvjQxjR9S1JFQGVvh", "title" : "\u041d\u043e\u0432\u044b\u0439 \u043e\u043f\u0440\u043e\u0441", "body" : "\u043e\u043f\u0440\u043e\u0441", "choices" : ["\u0434\u0430", "\u043d\u0435\u0442"], "start" : 1622019600, "end" : 1622451600, "snapshot" : "12521533", "state" : "closed", "author" : "0x9e7DC18DDB418DBA2858e6e2983D289F386f0986", "space" : {"id" : "pragmadev2.eth", "name" : "Pragma"}, "votes" : 1, "votes_data" : [{"id" : "QmYmN9jCdPYXgfe5oCn3rD59wNXWCtk5qRZfv1Eyykv8kN", "voter" : "0xD042B9E6856CE4Be75777780E352a90aac54bDC8", "created" : 1622187565, "choice" : 1, "space" : {"id" : "pragmadev2.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#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"3873": {"type": "string"}, "3875": {"type": "string"}}, "required": ["3873", "3875"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"3873" : "3874", "3875" : "3876"} | json_instruct | {"type": "object", "properties": {"3873": {"type": "string"}, "3875": {"type": "string"}}, "required": ["3873", "3875"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"id": {"type": "integer"}, "info": {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "additionalInfo": {"type": "null"}, "format": {"type": "string"}, "category": {"type": "string"}, "createdAt": {"type": "string"}, "updatedAt": {"type": "string"}, "license": {"type": "string"}, "author": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "paypalEmail": {"type": "string"}}, "required": ["id", "name", "paypalEmail"]}}, "required": ["name", "description", "additionalInfo", "format", "category", "createdAt", "updatedAt", "license", "author"]}, "stats": {"type": "object", "properties": {"installs": {"type": "object", "properties": {"total": {"type": "integer"}, "weekly": {"type": "integer"}}, "required": ["total", "weekly"]}}, "required": ["installs"]}, "screenshots": {"type": "object", "properties": {"main": {"type": "object", "properties": {"name": {"type": "string"}, "archived": {"type": "boolean"}}, "required": ["name", "archived"]}}, "required": ["main"]}, "discussions": {"type": "object", "properties": {"stats": {"type": "object", "properties": {"discussionsCount": {"type": "integer"}, "commentsCount": {"type": "integer"}}, "required": ["discussionsCount", "commentsCount"]}, "data": {"type": "array", "items": {}}}, "required": ["stats", "data"]}, "style": {"type": "object", "properties": {"css": {"type": "string"}}, "required": ["css"]}}, "required": ["id", "info", "stats", "screenshots", "discussions", "style"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : 11799, "info" : {"name" : "Windows Live - Calendar", "description" : "Style for the Windows Live Calendar with removed Ad-Box in the TOP\r\n\r\nOnly for the NEW Windows Live Calendar", "additionalInfo" : null, "format" : "uso", "category" : "live", "createdAt" : "2008-11-04T12:45:04.000Z", "updatedAt" : "2008-11-04T12:45:04.000Z", "license" : "NO-REDISTRIBUTION", "author" : {"id" : 16361, "name" : "Joe Hana", "paypalEmail" : "joe.hana@live.com"}}, "stats" : {"installs" : {"total" : 287, "weekly" : 0}}, "screenshots" : {"main" : {"name" : "11799-after.png", "archived" : false}}, "discussions" : {"stats" : {"discussionsCount" : 0, "commentsCount" : 0}, "data" : []}, "style" : {"css" : "@namespace url(http://www.w3.org/1999/xhtml);\r\n@-moz-document domain(\"calendar.live.com\") {\r\n\r\n#CalendarAdsTopContainer {display:none !important;}\r\n\r\n}"}} | json_instruct | {"type": "object", "properties": {"id": {"type": "integer"}, "info": {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "additionalInfo": {"type": "null"}, "format": {"type": "string"}, "category": {"type": "string"}, "createdAt": {"type": "string"}, "updatedAt": {"type": "string"}, "license": {"type": "string"}, "author": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "paypalEmail": {"type": "string"}}, "required": ["id", "name", "paypalEmail"]}}, "required": ["name", "description", "additionalInfo", "format", "category", "createdAt", "updatedAt", "license", "author"]}, "stats": {"type": "object", "properties": {"installs": {"type": "object", "properties": {"total": {"type": "integer"}, "weekly": {"type": "integer"}}, "required": ["total", "weekly"]}}, "required": ["installs"]}, "screenshots": {"type": "object", "properties": {"main": {"type": "object", "properties": {"name": {"type": "string"}, "archived": {"type": "boolean"}}, "required": ["name", "archived"]}}, "required": ["main"]}, "discussions": {"type": "object", "properties": {"stats": {"type": "object", "properties": {"discussionsCount": {"type": "integer"}, "commentsCount": {"type": "integer"}}, "required": ["discussionsCount", "commentsCount"]}, "data": {"type": "array", "items": {}}}, "required": ["stats", "data"]}, "style": {"type": "object", "properties": {"css": {"type": "string"}}, "required": ["css"]}}, "required": ["id", "info", "stats", "screenshots", "discussions", "style"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "version": {"type": "string"}, "author": {"type": "string"}, "bin": {"type": "object", "properties": {"l33t": {"type": "string"}}, "required": ["l33t"]}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "devDependencies": {"type": "object", "properties": {"bogota": {"type": "string"}, "standard": {"type": "string"}, "tape": {"type": "string"}}, "required": ["bogota", "standard", "tape"]}, "homepage": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "license": {"type": "string"}, "main": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "scripts": {"type": "object", "properties": {"pretest": {"type": "string"}, "test": {"type": "string"}}, "required": ["pretest", "test"]}}, "required": ["name", "description", "version", "author", "bin", "bugs", "devDependencies", "homepage", "keywords", "license", "main", "repository", "scripts"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "1337", "description" : "1337 Converts your text into leet speak", "version" : "1.0.1", "author" : "Diego Rodr\u00edguez Baquero", "bin" : {"l33t" : "./bin/l33t"}, "bugs" : {"url" : "https://github.com/DiegoRBaquero/node-1337/issues"}, "devDependencies" : {"bogota" : "2.0.4", "standard" : "14.3.4", "tape" : "4.13.2"}, "homepage" : "https://github.com/DiegoRBaquero/node-1337", "keywords" : ["1337", "l33t", "leet", "leetspeak", "speak"], "license" : "MIT", "main" : "index.js", "repository" : {"type" : "git", "url" : "git+ssh://git@github.com/DiegoRBaquero/node-1337.git"}, "scripts" : {"pretest" : "standard", "test" : "bogota"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "version": {"type": "string"}, "author": {"type": "string"}, "bin": {"type": "object", "properties": {"l33t": {"type": "string"}}, "required": ["l33t"]}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "devDependencies": {"type": "object", "properties": {"bogota": {"type": "string"}, "standard": {"type": "string"}, "tape": {"type": "string"}}, "required": ["bogota", "standard", "tape"]}, "homepage": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "license": {"type": "string"}, "main": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "scripts": {"type": "object", "properties": {"pretest": {"type": "string"}, "test": {"type": "string"}}, "required": ["pretest", "test"]}}, "required": ["name", "description", "version", "author", "bin", "bugs", "devDependencies", "homepage", "keywords", "license", "main", "repository", "scripts"], "$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"}, "types": {"type": "string"}, "repository": {"type": "string"}, "author": {"type": "string"}, "license": {"type": "string"}, "private": {"type": "boolean"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "devDependencies": {"type": "object", "properties": {"@types/jest": {"type": "string"}, "@types/node": {"type": "string"}, "jest": {"type": "string"}, "ts-jest": {"type": "string"}, "typescript": {"type": "string"}}, "required": ["@types/jest", "@types/node", "jest", "ts-jest", "typescript"]}}, "required": ["name", "version", "description", "main", "types", "repository", "author", "license", "private", "scripts", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "aspnetcore-identity-password-hasher", "version" : "1.0.1", "description" : "NodeJS implementation of ASP.NET Core Identity Password Hasher", "main" : "./build/index.js", "types" : "./build/index.d.ts", "repository" : "https://github.com/williamtayeb/aspnetcore-identity-password-hasher", "author" : "William Tayeb", "license" : "MIT", "private" : false, "scripts" : {"test" : "jest --watchAll"}, "devDependencies" : {"@types/jest" : "^24.0.0", "@types/node" : "^10.12.21", "jest" : "^24.0.0", "ts-jest" : "^23.10.5", "typescript" : "^3.3.1"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "types": {"type": "string"}, "repository": {"type": "string"}, "author": {"type": "string"}, "license": {"type": "string"}, "private": {"type": "boolean"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "devDependencies": {"type": "object", "properties": {"@types/jest": {"type": "string"}, "@types/node": {"type": "string"}, "jest": {"type": "string"}, "ts-jest": {"type": "string"}, "typescript": {"type": "string"}}, "required": ["@types/jest", "@types/node", "jest", "ts-jest", "typescript"]}}, "required": ["name", "version", "description", "main", "types", "repository", "author", "license", "private", "scripts", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [[1970, 8], [1971, 6], [1972, 7], [1973, 6], [1974, 6], [1975, 11], [1976, 8], [1977, 16], [1978, 15], [1979, 15], [1980, 14], [1981, 15], [1982, 21], [1983, 14], [1984, 13], [1985, 20], [1986, 16], [1987, 16], [1988, 33], [1989, 26], [1990, 36], [1991, 32], [1992, 39], [1993, 45], [1994, 34], [1995, 33], [1996, 50], [1997, 55], [1998, 62], [1999, 73], [2000, 63], [2001, 63], [2002, 46], [2003, 66], [2004, 42], [2005, 42], [2006, 39], [2007, 55], [2008, 60], [2009, 62], [2010, 36], [2011, 56], [2012, 43], [2013, 49], [2014, 43]] | json_instruct | {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"type": {"type": "string"}, "group": {"type": "string"}, "ingredients": {"type": "array", "items": {"type": "object", "properties": {"item": {"type": "string"}}, "required": ["item"]}}, "result": {"type": "object", "properties": {"item": {"type": "string"}}, "required": ["item"]}}, "required": ["type", "group", "ingredients", "result"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"type" : "minecraft:crafting_shapeless", "group" : "block_from_slab", "ingredients" : [{"item" : "rankine:gray_cement_vertical_slab"}, {"item" : "rankine:gray_cement_vertical_slab"}], "result" : {"item" : "rankine:gray_cement"}} | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "group": {"type": "string"}, "ingredients": {"type": "array", "items": {"type": "object", "properties": {"item": {"type": "string"}}, "required": ["item"]}}, "result": {"type": "object", "properties": {"item": {"type": "string"}}, "required": ["item"]}}, "required": ["type", "group", "ingredients", "result"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"body": {"type": "string"}, "attachments": {"type": "array", "items": {}}, "created_by_name": {"type": "string"}, "created_at": {"type": "string"}, "created_by": {"type": "string"}, "parent_id": {"type": "string"}, "id": {"type": "string"}}, "required": ["body", "attachments", "created_by_name", "created_at", "created_by", "parent_id", "id"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"body" : "KjhjgthGyWWWWWwwwWwweeeererrRRrrrrrrrrrrrTttttYYyyYuuiiooplkm\u00a5fffffggggGGfGFgfgfGfGfgfffgfGtgFGGGGxudgfnmxfN\n\n\n----- Original Message -----\n___\n<sup>Automatically generated content from [radiance mailing-list](https://radiance-online.org/pipermail/radiance-general/2010-June/006993.html).</sup>", "attachments" : [], "created_by_name" : "Kristopher Baker", "created_at" : "June 15, 2010 at 04:40PM", "created_by" : "Kristopher_Baker", "parent_id" : "radiance-general_006990", "id" : "radiance-general_006993"} | json_instruct | {"type": "object", "properties": {"body": {"type": "string"}, "attachments": {"type": "array", "items": {}}, "created_by_name": {"type": "string"}, "created_at": {"type": "string"}, "created_by": {"type": "string"}, "parent_id": {"type": "string"}, "id": {"type": "string"}}, "required": ["body", "attachments", "created_by_name", "created_at", "created_by", "parent_id", "id"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "array", "items": {"type": "object", "properties": {"merged": {"type": "string"}, "source": {"type": "string"}}, "required": ["merged", "source"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"merged" : "C:\\Users\\Erick\\Documents\\Erick\\Apps\\MobileComputerVision\\app\\build\\intermediates\\res\\merged\\debug\\drawable-v23\\abc_control_background_material.xml", "source" : "C:\\Users\\Erick\\Documents\\Erick\\Apps\\MobileComputerVision\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\25.2.0\\res\\drawable-v23\\abc_control_background_material.xml"}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"merged": {"type": "string"}, "source": {"type": "string"}}, "required": ["merged", "source"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"id": {"type": "string"}, "text": {"type": "string"}}, "required": ["id", "text"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "d530-125", "text" : "PROGRESS REPORT\nTO THE\nFROm THE\nnoTionoL AssociATion\nOF\nEDUCATIOnAL BROADCASTERS\nSEPTEOTBER I95A\nURBOnO. irnnois"} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "text": {"type": "string"}}, "required": ["id", "text"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"from": {"type": "string"}, "name": {"type": "string"}, "num": {"type": "integer"}, "comps": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "place": {"type": "string"}, "date": {"type": "string"}, "highest": {"type": "integer"}, "QP": {"type": "integer"}, "RP": {"type": "integer"}, "matches": {"type": "integer"}}, "required": ["name", "place", "date", "highest", "QP", "RP", "matches"]}}}, "required": ["from", "name", "num", "comps"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"from" : " , NY ", "name" : " Basement Lions", "num" : 4326, "comps" : [{"name" : "NJ FTC Frozen Frenzy III Qualifying Tournament", "place" : "Timothy Christian School", "date" : "12-Jan-13", "highest" : 50, "QP" : 4, "RP" : 78, "matches" : 5}, {"name" : "NY FTC NYC Championship Tournament", "place" : "New York City, NY", "date" : "08-Mar-13", "highest" : 71, "QP" : 2, "RP" : 23, "matches" : 4}, {"name" : "Hudson Valley NY FTC Championship Tournament", "place" : "Pace University", "date" : "27-Jan-13", "highest" : 70, "QP" : 2, "RP" : 261, "matches" : 5}, {"name" : "NJ FTC Robo-Joust Qualifying Tournament", "place" : "Livingston High School", "date" : "15-Dec-12", "highest" : 266, "QP" : 2, "RP" : 257, "matches" : 5}, {"name" : "NJ FTC \u201cQualifying Tournament #2\u201d", "place" : "Columbia High School", "date" : "02-Dec-12", "highest" : 30, "QP" : 3, "RP" : 22, "matches" : 5}]} | json_instruct | {"type": "object", "properties": {"from": {"type": "string"}, "name": {"type": "string"}, "num": {"type": "integer"}, "comps": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "place": {"type": "string"}, "date": {"type": "string"}, "highest": {"type": "integer"}, "QP": {"type": "integer"}, "RP": {"type": "integer"}, "matches": {"type": "integer"}}, "required": ["name", "place", "date", "highest", "QP", "RP", "matches"]}}}, "required": ["from", "name", "num", "comps"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"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"}, "35": {"type": "string"}, "36": {"type": "string"}, "37": {"type": "string"}, "38": {"type": "string"}, "39": {"type": "string"}, "40": {"type": "string"}, "41": {"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", "35", "36", "37", "38", "39", "40", "41"]}}, "required": ["edges", "features"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"edges" : [[13, 35], [34, 13], [23, 13], [13, 34], [33, 13], [36, 38], [13, 41], [12, 6], [20, 13], [37, 13], [13, 37], [40, 14], [13, 34], [13, 16], [13, 12], [13, 39], [13, 30], [30, 25], [3, 6], [13, 29], [2, 15], [13, 34], [13, 34], [24, 29], [13, 11], [7, 13], [37, 6], [11, 13], [41, 13], [13, 0], [26, 15], [12, 2], [13, 22], [0, 13], [8, 13], [32, 21], [4, 13], [28, 13], [13, 5], [8, 13], [31, 24], [41, 13], [18, 13], [10, 13], [27, 6], [1, 13], [13, 17], [19, 13], [13, 41], [13, 14], [41, 13], [9, 13]], "features" : {"0" : "2", "1" : "1", "2" : "2", "3" : "1", "4" : "1", "5" : "1", "6" : "4", "7" : "1", "8" : "2", "9" : "1", "10" : "1", "11" : "2", "12" : "3", "13" : "39", "14" : "2", "15" : "2", "16" : "1", "17" : "1", "18" : "1", "19" : "1", "20" : "1", "21" : "1", "22" : "1", "23" : "1", "24" : "2", "25" : "1", "26" : "1", "27" : "1", "28" : "1", "29" : "2", "30" : "2", "31" : "1", "32" : "1", "33" : "1", "34" : "5", "35" : "1", "36" : "1", "37" : "3", "38" : "1", "39" : "1", "40" : "1", "41" : "5"}} | 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"}, "35": {"type": "string"}, "36": {"type": "string"}, "37": {"type": "string"}, "38": {"type": "string"}, "39": {"type": "string"}, "40": {"type": "string"}, "41": {"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", "35", "36", "37", "38", "39", "40", "41"]}}, "required": ["edges", "features"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"}
| ["import sys\nimport math\n\nQ = 998244353\nn, m = list(map(int, sys.stdin.readline().strip().split()))\n\nz = [1, 1]\nf = [1, 1]\nfor i in range (0, n):\n f[0] = f[0] * (n - i) % Q\n f[1] = f[1] * (n + m - i) % Q\n z = [(z[0]*f[1]+z[1]*f[0]) % Q, (z[1]*f[1]) % Q]\nans = [z[0] * (m+1), z[1]]\nfor i in range (2, n + 1):\n ans = [(ans[0] * i * z[1] + ans[1] * m * z[0]) % Q, (ans[1] * i * z[1]) % Q]\ny = ans[1]\nans = ans[0]\nq = Q - 2\nwhile q > 0:\n if q % 2 == 1:\n ans = (ans * y) % Q\n q = q // 2\n y = (y * y) % Q\nprint(ans)\n", "nn = 2002002\nP = 998244353\nfa = [1] * (nn+1)\nfainv = [1] * (nn+1)\nfor i in range(nn):\n fa[i+1] = fa[i] * (i+1) % P\nfainv[-1] = pow(fa[-1], P-2, P)\nfor i in range(nn)[::-1]:\n fainv[i] = fainv[i+1] * (i+1) % P\n\nN, M = list(map(int, input().split()))\ninvM1 = pow(M + 1, P - 2, P)\npre = 1\nfor i in range(2, N + 2):\n nu = ((M + i - 1) + (i - 1) * pre) * (M + 1) + M * (N - i + 1)\n de = invM1 * fainv[i-1] % P * fa[i-2] % P\n pre = nu * de % P\nprint(pre)\n", "nn = 2002002;P = 998244353;fa = [1] * (nn+1);fainv = [1] * (nn+1)\nfor i in range(nn):fa[i+1] = fa[i] * (i+1) % P\nfainv[-1] = pow(fa[-1], P-2, P)\nfor i in range(nn)[::-1]:fainv[i] = fainv[i+1] * (i+1) % P\nN, M = map(int, input().split());invM1 = pow(M + 1, P - 2, P);pre = 1\nfor i in range(2, N + 2):nu = ((M + i - 1) + (i - 1) * pre) * (M + 1) + M * (N - i + 1);de = invM1 * fainv[i-1] % P * fa[i-2] % P;pre = nu * de % P\nprint(pre)"] | json_instruct | {"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"attributes": {"type": "object", "properties": {"su": {"type": "boolean"}}, "required": ["su"]}, "courseCode": {"type": "string"}, "courseCredit": {"type": "string"}, "description": {"type": "string"}, "faculty": {"type": "string"}, "preclusion": {"type": "string"}, "title": {"type": "string"}}, "required": ["attributes", "courseCode", "courseCredit", "description", "faculty", "preclusion", "title"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"attributes" : {"su" : true}, "courseCode" : "FNA2111", "courseCredit" : "4", "description" : "This is an introductory course on how to manage onea??s personal finance. Topics to be covered include starting a financial plan, cash budgeting, managing liquid assets, investments, managing credit, insuring onea??s assets, income tax and estate planning. Each topic is given a rigorous and balanced treatment by applying methods such as time value and basic investment principles to practical issues. At the end of the course, a student should have a better perspective of what personal financial planning entails, how to get started, avoid common pitfalls in financial planning and achieve desired outcomes for your financial goals.", "faculty" : "NUS Business School", "preclusion" : "Students who have passed BZ3314 or BH2111 are not allowed to take FNA2111.", "title" : "Personal Finance"} | json_instruct | {"type": "object", "properties": {"attributes": {"type": "object", "properties": {"su": {"type": "boolean"}}, "required": ["su"]}, "courseCode": {"type": "string"}, "courseCredit": {"type": "string"}, "description": {"type": "string"}, "faculty": {"type": "string"}, "preclusion": {"type": "string"}, "title": {"type": "string"}}, "required": ["attributes", "courseCode", "courseCredit", "description", "faculty", "preclusion", "title"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "type": {"type": "string"}, "require": {"type": "object", "properties": {"soundasleep/html2text": {"type": "string"}, "pelago/emogrifier": {"type": "string"}, "league/csv": {"type": "string"}, "collizo4sky/persist-admin-notices-dismissal": {"type": "string"}, "barryvdh/composer-cleanup-plugin": {"type": "string"}, "nesbot/carbon": {"type": "string"}}, "required": ["soundasleep/html2text", "pelago/emogrifier", "league/csv", "collizo4sky/persist-admin-notices-dismissal", "barryvdh/composer-cleanup-plugin", "nesbot/carbon"]}, "autoload": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"MailOptin\\Core\\": {"type": "string"}}, "required": ["MailOptin\\Core\\"]}, "files": {"type": "array", "items": {"type": "string"}}}, "required": ["psr-4", "files"]}, "autoload-dev": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"MailOptin\\Tests\\Core\\": {"type": "string"}}, "required": ["MailOptin\\Tests\\Core\\"]}}, "required": ["psr-4"]}, "config": {"type": "object", "properties": {"platform": {"type": "object", "properties": {"php": {"type": "string"}}, "required": ["php"]}}, "required": ["platform"]}}, "required": ["name", "description", "type", "require", "autoload", "autoload-dev", "config"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "mailoptin/core", "description" : "Core lib for MailOptin", "type" : "library", "require" : {"soundasleep/html2text" : "~0.5", "pelago/emogrifier" : "^1.0", "league/csv" : "7.2.0", "collizo4sky/persist-admin-notices-dismissal" : "^1.3", "barryvdh/composer-cleanup-plugin" : "0.1.x@dev", "nesbot/carbon" : "^1.32"}, "autoload" : {"psr-4" : {"MailOptin\\Core\\" : "src/"}, "files" : ["src/Functions/custom-settings-api.php", "src/Functions/functions.php", "src/Functions/php-html-css-js-minifier.php"]}, "autoload-dev" : {"psr-4" : {"MailOptin\\Tests\\Core\\" : "tests/"}}, "config" : {"platform" : {"php" : "5.4"}}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "type": {"type": "string"}, "require": {"type": "object", "properties": {"soundasleep/html2text": {"type": "string"}, "pelago/emogrifier": {"type": "string"}, "league/csv": {"type": "string"}, "collizo4sky/persist-admin-notices-dismissal": {"type": "string"}, "barryvdh/composer-cleanup-plugin": {"type": "string"}, "nesbot/carbon": {"type": "string"}}, "required": ["soundasleep/html2text", "pelago/emogrifier", "league/csv", "collizo4sky/persist-admin-notices-dismissal", "barryvdh/composer-cleanup-plugin", "nesbot/carbon"]}, "autoload": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"MailOptin\\Core\\": {"type": "string"}}, "required": ["MailOptin\\Core\\"]}, "files": {"type": "array", "items": {"type": "string"}}}, "required": ["psr-4", "files"]}, "autoload-dev": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"MailOptin\\Tests\\Core\\": {"type": "string"}}, "required": ["MailOptin\\Tests\\Core\\"]}}, "required": ["psr-4"]}, "config": {"type": "object", "properties": {"platform": {"type": "object", "properties": {"php": {"type": "string"}}, "required": ["php"]}}, "required": ["platform"]}}, "required": ["name", "description", "type", "require", "autoload", "autoload-dev", "config"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"points": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "distance_ft": {"type": "number"}, "transferred_mbytes": {"type": "number"}, "bandwidth_mbps": {"type": "number"}, "packet_perc": {"type": "integer"}}, "required": ["name", "distance_ft", "transferred_mbytes", "bandwidth_mbps", "packet_perc"]}}}, "required": ["points"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"points" : [{"name" : "1B-0", "distance_ft" : 127.59104044372236, "transferred_mbytes" : 2.59, "bandwidth_mbps" : 1.62, "packet_perc" : 52}, {"name" : "1B-1", "distance_ft" : 139.4428453963639, "transferred_mbytes" : 1.0, "bandwidth_mbps" : 1.12, "packet_perc" : 56}, {"name" : "1B-2", "distance_ft" : 157.3442712132111, "transferred_mbytes" : 5.019, "bandwidth_mbps" : 0.1, "packet_perc" : 12}]} | json_instruct | {"type": "object", "properties": {"points": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "distance_ft": {"type": "number"}, "transferred_mbytes": {"type": "number"}, "bandwidth_mbps": {"type": "number"}, "packet_perc": {"type": "integer"}}, "required": ["name", "distance_ft", "transferred_mbytes", "bandwidth_mbps", "packet_perc"]}}}, "required": ["points"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "main": {"type": "string"}, "license": {"type": "string"}, "scripts": {"type": "object", "properties": {"clean": {"type": "string"}, "develop": {"type": "string"}, "build": {"type": "string"}, "start": {"type": "string"}}, "required": ["clean", "develop", "build", "start"]}, "dependencies": {"type": "object", "properties": {"gatsby": {"type": "string"}, "gatsby-source-dev": {"type": "string"}, "gatsby-theme": {"type": "string"}, "gatsby-theme-cooper-hewitt": {"type": "string"}, "react": {"type": "string"}, "react-dom": {"type": "string"}, "react-social-icons": {"type": "string"}}, "required": ["gatsby", "gatsby-source-dev", "gatsby-theme", "gatsby-theme-cooper-hewitt", "react", "react-dom", "react-social-icons"]}}, "required": ["name", "version", "main", "license", "scripts", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "starter", "version" : "1.0.0", "main" : "index.js", "license" : "MIT", "scripts" : {"clean" : "gatsby clean", "develop" : "gatsby develop", "build" : "gatsby build", "start" : "gatsby clean && gatsby develop -o"}, "dependencies" : {"gatsby" : "^2.32.13", "gatsby-source-dev" : "^0.1.4", "gatsby-theme" : "^0.14.0", "gatsby-theme-cooper-hewitt" : "^0.0.5", "react" : "^16.14.0", "react-dom" : "^16.14.0", "react-social-icons" : "^4.1.0"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "main": {"type": "string"}, "license": {"type": "string"}, "scripts": {"type": "object", "properties": {"clean": {"type": "string"}, "develop": {"type": "string"}, "build": {"type": "string"}, "start": {"type": "string"}}, "required": ["clean", "develop", "build", "start"]}, "dependencies": {"type": "object", "properties": {"gatsby": {"type": "string"}, "gatsby-source-dev": {"type": "string"}, "gatsby-theme": {"type": "string"}, "gatsby-theme-cooper-hewitt": {"type": "string"}, "react": {"type": "string"}, "react-dom": {"type": "string"}, "react-social-icons": {"type": "string"}}, "required": ["gatsby", "gatsby-source-dev", "gatsby-theme", "gatsby-theme-cooper-hewitt", "react", "react-dom", "react-social-icons"]}}, "required": ["name", "version", "main", "license", "scripts", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"autoload": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"Animals\\": {"type": "string"}}, "required": ["Animals\\"]}}, "required": ["psr-4"]}}, "required": ["autoload"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"autoload" : {"psr-4" : {"Animals\\" : "lib/"}}} | json_instruct | {"type": "object", "properties": {"autoload": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"Animals\\": {"type": "string"}}, "required": ["Animals\\"]}}, "required": ["psr-4"]}}, "required": ["autoload"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"nom": {"type": "string"}, "dpt": {"type": "string"}, "inscrits": {"type": "integer"}, "abs": {"type": "integer"}, "votants": {"type": "integer"}, "blancs": {"type": "integer"}, "nuls": {"type": "integer"}, "exp": {"type": "integer"}, "res": {"type": "array", "items": {"type": "object", "properties": {"panneau": {"type": "string"}, "voix": {"type": "integer"}}, "required": ["panneau", "voix"]}}}, "required": ["nom", "dpt", "inscrits", "abs", "votants", "blancs", "nuls", "exp", "res"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"nom" : "Carcar\u00e8s-Sainte-Croix", "dpt" : "Landes", "inscrits" : 411, "abs" : 70, "votants" : 341, "blancs" : 43, "nuls" : 16, "exp" : 282, "res" : [{"panneau" : "1", "voix" : 177}, {"panneau" : "2", "voix" : 105}]} | json_instruct | {"type": "object", "properties": {"nom": {"type": "string"}, "dpt": {"type": "string"}, "inscrits": {"type": "integer"}, "abs": {"type": "integer"}, "votants": {"type": "integer"}, "blancs": {"type": "integer"}, "nuls": {"type": "integer"}, "exp": {"type": "integer"}, "res": {"type": "array", "items": {"type": "object", "properties": {"panneau": {"type": "string"}, "voix": {"type": "integer"}}, "required": ["panneau", "voix"]}}}, "required": ["nom", "dpt", "inscrits", "abs", "votants", "blancs", "nuls", "exp", "res"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"feed_id": {"type": "integer"}, "full_sync": {"type": "boolean"}, "event_timestamp": {"type": "number"}}, "required": ["feed_id", "full_sync", "event_timestamp"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"feed_id" : 26, "full_sync" : false, "event_timestamp" : 1447703286.57} | json_instruct | {"type": "object", "properties": {"feed_id": {"type": "integer"}, "full_sync": {"type": "boolean"}, "event_timestamp": {"type": "number"}}, "required": ["feed_id", "full_sync", "event_timestamp"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"scripts": {"type": "object", "properties": {"serve": {"type": "string"}, "pretty": {"type": "string"}}, "required": ["serve", "pretty"]}, "dependencies": {"type": "object", "properties": {"express": {"type": "string"}, "mongodb": {"type": "string"}, "prettier": {"type": "string"}}, "required": ["express", "mongodb", "prettier"]}}, "required": ["scripts", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"scripts" : {"serve" : "bash startserver.sh", "pretty" : "prettier -w server.js"}, "dependencies" : {"express" : "^4.17.2", "mongodb" : "^4.3.0", "prettier" : "^2.5.1"}} | json_instruct | {"type": "object", "properties": {"scripts": {"type": "object", "properties": {"serve": {"type": "string"}, "pretty": {"type": "string"}}, "required": ["serve", "pretty"]}, "dependencies": {"type": "object", "properties": {"express": {"type": "string"}, "mongodb": {"type": "string"}, "prettier": {"type": "string"}}, "required": ["express", "mongodb", "prettier"]}}, "required": ["scripts", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"}
| ["localhost:8088"] | json_instruct | {"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"name": {"type": "string"}, "portions": {"type": "string"}, "tags": {"type": "array", "items": {"type": "string"}}, "ingredients": {"type": "object", "properties": {"reis": {"type": "object", "properties": {"amount": {"type": "string"}}, "required": ["amount"]}, "ei": {"type": "object", "properties": {"amount": {"type": "string"}}, "required": ["amount"]}, "karotte": {"type": "object", "properties": {"amount": {"type": "string"}}, "required": ["amount"]}, "zwiebel": {"type": "object", "properties": {"amount": {"type": "string"}}, "required": ["amount"]}, "semmel": {"type": "object", "properties": {"amount": {"type": "string"}}, "required": ["amount"]}, "kaese": {"type": "object", "properties": {"amount": {"type": "string"}}, "required": ["amount"]}, "salz-pfeffer": {"type": "object", "properties": {}, "required": []}, "bruehe": {"type": "object", "properties": {}, "required": []}}, "required": ["reis", "ei", "karotte", "zwiebel", "semmel", "kaese", "salz-pfeffer", "bruehe"]}, "preparation": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "portions", "tags", "ingredients", "preparation"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "Vegetari­sche Frika­delle", "portions" : "4 Portionen", "tags" : ["main", "vegi", "pot", "ingredient"], "ingredients" : {"reis" : {"amount" : "75g"}, "ei" : {"amount" : "1"}, "karotte" : {"amount" : "1"}, "zwiebel" : {"amount" : "1"}, "semmel" : {"amount" : "1"}, "kaese" : {"amount" : "75g"}, "salz-pfeffer" : {}, "bruehe" : {}}, "preparation" : ["{reis} mit doppelter Menge {bruehe} aufkochen.", "{kaese}, {karotte}, {zwiebel} und {semmel} zerkleinern. Alles mit {ei} vermengen und mit {salz-pfeffer} w\u00fcrzen.", "15 Minuten ziehen lassen.", "Frikadellen formen und in Butter goldbraun braten."]} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "portions": {"type": "string"}, "tags": {"type": "array", "items": {"type": "string"}}, "ingredients": {"type": "object", "properties": {"reis": {"type": "object", "properties": {"amount": {"type": "string"}}, "required": ["amount"]}, "ei": {"type": "object", "properties": {"amount": {"type": "string"}}, "required": ["amount"]}, "karotte": {"type": "object", "properties": {"amount": {"type": "string"}}, "required": ["amount"]}, "zwiebel": {"type": "object", "properties": {"amount": {"type": "string"}}, "required": ["amount"]}, "semmel": {"type": "object", "properties": {"amount": {"type": "string"}}, "required": ["amount"]}, "kaese": {"type": "object", "properties": {"amount": {"type": "string"}}, "required": ["amount"]}, "salz-pfeffer": {"type": "object", "properties": {}, "required": []}, "bruehe": {"type": "object", "properties": {}, "required": []}}, "required": ["reis", "ei", "karotte", "zwiebel", "semmel", "kaese", "salz-pfeffer", "bruehe"]}, "preparation": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "portions", "tags", "ingredients", "preparation"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"dockerComposeFile": {"type": "string"}, "service": {"type": "string"}, "workspaceFolder": {"type": "string"}, "shutdownAction": {"type": "string"}, "extensions": {"type": "array", "items": {"type": "string"}}, "forwardPorts": {"type": "array", "items": {"type": "integer"}}}, "required": ["dockerComposeFile", "service", "workspaceFolder", "shutdownAction", "extensions", "forwardPorts"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"dockerComposeFile" : "docker-compose.yml", "service" : "dude", "workspaceFolder" : "/workspace", "shutdownAction" : "stopCompose", "extensions" : ["golang.go", "mongodb.mongodb-vscode"], "forwardPorts" : [3000, 27017]} | json_instruct | {"type": "object", "properties": {"dockerComposeFile": {"type": "string"}, "service": {"type": "string"}, "workspaceFolder": {"type": "string"}, "shutdownAction": {"type": "string"}, "extensions": {"type": "array", "items": {"type": "string"}}, "forwardPorts": {"type": "array", "items": {"type": "integer"}}}, "required": ["dockerComposeFile", "service", "workspaceFolder", "shutdownAction", "extensions", "forwardPorts"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"antd-mobile.css": {"type": "string"}, "antd-mobile.js": {"type": "string"}, "antd-mobile.min.css": {"type": "string"}, "antd-mobile.min.js": {"type": "string"}}, "required": ["antd-mobile.css", "antd-mobile.js", "antd-mobile.min.css", "antd-mobile.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"antd-mobile.css" : "sha512-wDWV9Pc2DDPbdjS6E6BdPmelLT/yCUWbkph5eriJ3b3xz5n0F8rUYqmte05TItdvdcecRGMxoGthf6BgJOje0g==", "antd-mobile.js" : "sha512-IVEz7+LSdhu/rQLs3d1/gwaHtBhuoStolIOIJcR/W1EfLWekcpuyMpdy+oEQYKTqIMKmISiI4TOjKIEgFuqC/Q==", "antd-mobile.min.css" : "sha512-TwXWs4X5+mX9vHQsJdOUTAIW3NtbaPAZosELdWRJr4oY4yoHqI4WWBGFtuLSg5UXXGYTK1ByTOpWjdoGu2z+EA==", "antd-mobile.min.js" : "sha512-8bpYY3w5X6yAcni047FI4Jjxi1WbX5VETQZ98mzVl79Glws3KzaqLcNUggZzoQe23+1xgsYoDk/YpNWlPwVURw=="} | json_instruct | {"type": "object", "properties": {"antd-mobile.css": {"type": "string"}, "antd-mobile.js": {"type": "string"}, "antd-mobile.min.css": {"type": "string"}, "antd-mobile.min.js": {"type": "string"}}, "required": ["antd-mobile.css", "antd-mobile.js", "antd-mobile.min.css", "antd-mobile.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"width": {"type": "string"}, "height": {"type": "string"}, "defaultSelectedTab": {"type": "string"}, "tabs": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "metrics": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}, "time": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "metrics", "time"]}}}, "required": ["width", "height", "defaultSelectedTab", "tabs"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"width" : "400", "height" : "150", "defaultSelectedTab" : "Network - Hour", "tabs" : [{"name" : "Network", "metrics" : [["bytes_in", "bytes_out"], ["packetsSent", "packetsSent_s", "packetsReceived", "packetsReceived_s", "packetsAbandoned", "packetsAbandoned_s", "packetsRetried", "packetsRetried_s"]], "time" : ["Hour", "Day"]}, {"name" : "Queries", "metrics" : [["queryCount", "queryCount_s"], ["loQueryCount", "loQueryCount_s", "hiQueryCount", "hiQueryCount_s", "hiQueryFailed", "slaQueryCount", "loQueryActive"], ["unknownQueryFailed", "unknownMin", "unknownMax"]], "time" : ["Hour", "Week"]}, {"name" : "System Disk and CPU", "metrics" : [["disk_free", "disk_total"], ["cpu_aidle", "cpu_idle", "cpu_nice", "cpu_num", "cpu_system", "cpu_user", "cpu_wio"]], "time" : ["Day", "Week"]}, {"name" : "Performance and Health", "metrics" : [["restarts"], ["activitiesStarted", "globalLocks", "retriesNeeded"], ["nodesLoaded"]], "time" : ["Hour", "Week", "Month"]}]} | json_instruct | {"type": "object", "properties": {"width": {"type": "string"}, "height": {"type": "string"}, "defaultSelectedTab": {"type": "string"}, "tabs": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "metrics": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}, "time": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "metrics", "time"]}}}, "required": ["width", "height", "defaultSelectedTab", "tabs"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"name": {"type": "string"}, "place": {"type": "string"}}, "required": ["name", "place"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "Frodo", "place" : "the Shire"} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "place": {"type": "string"}}, "required": ["name", "place"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}, "build": {"type": "string"}, "test": {"type": "string"}, "lint": {"type": "string"}, "clean": {"type": "string"}}, "required": ["start", "build", "test", "lint", "clean"]}, "author": {"type": "string"}, "license": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"@typescript-eslint/eslint-plugin": {"type": "string"}, "@typescript-eslint/parser": {"type": "string"}, "eslint": {"type": "string"}, "eslint-config-prettier": {"type": "string"}, "eslint-plugin-prettier": {"type": "string"}, "parcel-bundler": {"type": "string"}, "prettier": {"type": "string"}, "typescript": {"type": "string"}}, "required": ["@typescript-eslint/eslint-plugin", "@typescript-eslint/parser", "eslint", "eslint-config-prettier", "eslint-plugin-prettier", "parcel-bundler", "prettier", "typescript"]}, "dependencies": {"type": "object", "properties": {"@fortawesome/fontawesome-free": {"type": "string"}, "@sentry/browser": {"type": "string"}, "@sentry/tracing": {"type": "string"}, "@types/node": {"type": "string"}, "axios": {"type": "string"}, "bootstrap": {"type": "string"}, "jquery": {"type": "string"}, "p-limit": {"type": "string"}, "popper.js": {"type": "string"}}, "required": ["@fortawesome/fontawesome-free", "@sentry/browser", "@sentry/tracing", "@types/node", "axios", "bootstrap", "jquery", "p-limit", "popper.js"]}, "browserslist": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "version", "description", "main", "scripts", "author", "license", "devDependencies", "dependencies", "browserslist"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "pyconline-video-uploader", "version" : "1.0.0", "description" : "", "main" : "index.js", "scripts" : {"start" : "parcel index.html", "build" : "tsc --noEmit && parcel build index.html", "test" : "echo \"Error: no test specified\" && exit 1", "lint" : "eslint --ext .ts ./", "clean" : "rm -rf dist"}, "author" : "", "license" : "ISC", "devDependencies" : {"@typescript-eslint/eslint-plugin" : "^3.8.0", "@typescript-eslint/parser" : "^3.8.0", "eslint" : "^7.6.0", "eslint-config-prettier" : "^6.11.0", "eslint-plugin-prettier" : "^3.1.4", "parcel-bundler" : "^1.12.4", "prettier" : "^2.0.5", "typescript" : "^3.9.7"}, "dependencies" : {"@fortawesome/fontawesome-free" : "^5.15.1", "@sentry/browser" : "^6.1.0", "@sentry/tracing" : "^6.1.0", "@types/node" : "^14.14.16", "axios" : "^0.21.2", "bootstrap" : "^4.5.2", "jquery" : "^3.5.1", "p-limit" : "^3.1.0", "popper.js" : "^1.16.1"}, "browserslist" : ["last 1 Edge version", "last 1 Chrome version", "last 1 Firefox version", "last 1 Safari version"]} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}, "build": {"type": "string"}, "test": {"type": "string"}, "lint": {"type": "string"}, "clean": {"type": "string"}}, "required": ["start", "build", "test", "lint", "clean"]}, "author": {"type": "string"}, "license": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"@typescript-eslint/eslint-plugin": {"type": "string"}, "@typescript-eslint/parser": {"type": "string"}, "eslint": {"type": "string"}, "eslint-config-prettier": {"type": "string"}, "eslint-plugin-prettier": {"type": "string"}, "parcel-bundler": {"type": "string"}, "prettier": {"type": "string"}, "typescript": {"type": "string"}}, "required": ["@typescript-eslint/eslint-plugin", "@typescript-eslint/parser", "eslint", "eslint-config-prettier", "eslint-plugin-prettier", "parcel-bundler", "prettier", "typescript"]}, "dependencies": {"type": "object", "properties": {"@fortawesome/fontawesome-free": {"type": "string"}, "@sentry/browser": {"type": "string"}, "@sentry/tracing": {"type": "string"}, "@types/node": {"type": "string"}, "axios": {"type": "string"}, "bootstrap": {"type": "string"}, "jquery": {"type": "string"}, "p-limit": {"type": "string"}, "popper.js": {"type": "string"}}, "required": ["@fortawesome/fontawesome-free", "@sentry/browser", "@sentry/tracing", "@types/node", "axios", "bootstrap", "jquery", "p-limit", "popper.js"]}, "browserslist": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "version", "description", "main", "scripts", "author", "license", "devDependencies", "dependencies", "browserslist"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"title": {"type": "string"}, "fields": {"type": "array", "items": {"type": "string"}}, "abstract": {"type": "string"}, "citation": {"type": "string"}, "departments": {"type": "array", "items": {"type": "string"}}, "authors": {"type": "array", "items": {"type": "string"}}, "conf": {"type": "string"}, "year": {"type": "string"}, "pages": {"type": "integer"}}, "required": ["title", "fields", "abstract", "citation", "departments", "authors", "conf", "year", "pages"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"title" : "Taking the time to care: empowering low health literacy hospital patients with virtual nurse agents.", "fields" : ["patient education", "health literacy", "universal design", "design rationale", "health care"], "abstract" : "Ninety million Americans have inadequate health literacy, resulting in a reduced ability to read and follow directions in the healthcare environment. We describe an animated, empathic virtual nurse interface for educating and counseling hospital patients with inadequate health literacy in their hospital beds at the time of discharge. The development methodology, design rationale, and two iterations of user testing are described. Results indicate that hospital patients with low health literacy found the system easy to use, reported high levels of satisfaction, and most said they preferred receiving the discharge information from the agent over their doctor or nurse. Patients also expressed appreciation for the time and attention provided by the virtual nurse, and felt that it provided an additional authoritative source for their medical information.", "citation" : "Citations (166)", "departments" : ["Northeastern University", "Northeastern University", "Boston University"], "authors" : ["Timothy W. Bickmore.....http://dblp.org/pers/hd/b/Bickmore:Timothy_W=", "Laura M. Pfeifer.....http://dblp.org/pers/hd/p/Pfeifer:Laura_M=", "Brian W. Jack.....http://dblp.org/pers/hd/j/Jack:Brian_W="], "conf" : "chi", "year" : "2009", "pages" : 10} | json_instruct | {"type": "object", "properties": {"title": {"type": "string"}, "fields": {"type": "array", "items": {"type": "string"}}, "abstract": {"type": "string"}, "citation": {"type": "string"}, "departments": {"type": "array", "items": {"type": "string"}}, "authors": {"type": "array", "items": {"type": "string"}}, "conf": {"type": "string"}, "year": {"type": "string"}, "pages": {"type": "integer"}}, "required": ["title", "fields", "abstract", "citation", "departments", "authors", "conf", "year", "pages"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"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" : "87444", "place_name" : "Villas del Lago", "place_type" : "Fraccionamiento", "county" : "Matamoros", "state" : "Tamaulipas", "city" : "Heroica Matamoros"}, {"postal_code" : "87444", "place_name" : "Ejido Lucio Blanco", "place_type" : "Colonia", "county" : "Matamoros", "state" : "Tamaulipas", "city" : "Heroica Matamoros"}, {"postal_code" : "87444", "place_name" : "La Barranquita", "place_type" : "Colonia", "county" : "Matamoros", "state" : "Tamaulipas", "city" : "Heroica Matamoros"}, {"postal_code" : "87444", "place_name" : "Brisas", "place_type" : "Fraccionamiento", "county" : "Matamoros", "state" : "Tamaulipas", "city" : "Heroica Matamoros"}, {"postal_code" : "87444", "place_name" : "Las Brisas", "place_type" : "Colonia", "county" : "Matamoros", "state" : "Tamaulipas", "city" : "Heroica Matamoros"}] | 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#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "array", "items": {"type": "number"}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [4.0, 8.0, 8.0, 2.0, 5.0, 8.0, 3.0, 7.0, 5.0, 12.0] | json_instruct | {"type": "array", "items": {"type": "number"}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"angular-material.css": {"type": "string"}, "angular-material.js": {"type": "string"}, "angular-material.min.css": {"type": "string"}, "angular-material.min.js": {"type": "string"}}, "required": ["angular-material.css", "angular-material.js", "angular-material.min.css", "angular-material.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"angular-material.css" : "sha256-CUzehTV0aZlzaOsIwRQmPbyuWjybJkZVzhcWWIFfcg4=", "angular-material.js" : "sha256-SZkVNgBMUOH4BMmTLiAGAq7CchS2NjEpullhSvcYQHs=", "angular-material.min.css" : "sha256-uJbe+hiOQ0lhdjQdKJUXx6JxeRdX+XS0wJ2U9Wu1d8g=", "angular-material.min.js" : "sha256-JEP+AkttjJCLMtoRkKKVvjHfF9wzqXTJ0ee5AG29614="} | json_instruct | {"type": "object", "properties": {"angular-material.css": {"type": "string"}, "angular-material.js": {"type": "string"}, "angular-material.min.css": {"type": "string"}, "angular-material.min.js": {"type": "string"}}, "required": ["angular-material.css", "angular-material.js", "angular-material.min.css", "angular-material.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"timestamp": {"type": "string"}, "data": {"type": "array", "items": {"type": "object", "properties": {"data_type": {"type": "string"}, "value": {"type": "string"}, "max": {"type": "string"}, "min": {"type": "string"}, "sd": {"type": "string"}}, "required": ["data_type", "value", "max", "min", "sd"]}}}, "required": ["timestamp", "data"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"timestamp" : "2021-01-02T14:50:35Z", "data" : [{"data_type" : "noise", "value" : "43.61", "max" : "50.96", "min" : "37.04", "sd" : "1.81"}, {"data_type" : "illuminance", "value" : "48.00", "max" : "48.00", "min" : "48.00", "sd" : "0.00"}, {"data_type" : "irradiance", "value" : "12578.52", "max" : "17143.53", "min" : "7992.96", "sd" : "2773.70"}, {"data_type" : "temperature", "value" : "28.58", "max" : "28.61", "min" : "28.55", "sd" : "0.02"}, {"data_type" : "humidity", "value" : "51.15", "max" : "51.29", "min" : "51.04", "sd" : "0.07"}, {"data_type" : "presure", "value" : "909.75", "max" : "909.77", "min" : "909.73", "sd" : "0.01"}, {"data_type" : "rain", "value" : "0.00", "max" : "0.00", "min" : "0.00", "sd" : "0.00"}]} | json_instruct | {"type": "object", "properties": {"timestamp": {"type": "string"}, "data": {"type": "array", "items": {"type": "object", "properties": {"data_type": {"type": "string"}, "value": {"type": "string"}, "max": {"type": "string"}, "min": {"type": "string"}, "sd": {"type": "string"}}, "required": ["data_type", "value", "max", "min", "sd"]}}}, "required": ["timestamp", "data"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}, "test": {"type": "string"}}, "required": ["start", "test"]}, "author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"hyperdrive": {"type": "string"}, "hyperspace": {"type": "string"}}, "required": ["hyperdrive", "hyperspace"]}}, "required": ["name", "version", "description", "main", "scripts", "author", "license", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "pauls-hyper-mirror", "version" : "1.0.0", "description" : "A simple hyper:// mirror servce", "main" : "index.js", "scripts" : {"start" : "node index.js", "test" : "echo \"Error: no test specified\" && exit 1"}, "author" : "Paul Frazee <pfrazee@gmail.com>", "license" : "MIT", "dependencies" : {"hyperdrive" : "git+https://github.com/hypercore-protocol/hyperdrive#hyperspace-port", "hyperspace" : "github:hyperspace-org/hyperspace#master"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}, "test": {"type": "string"}}, "required": ["start", "test"]}, "author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"hyperdrive": {"type": "string"}, "hyperspace": {"type": "string"}}, "required": ["hyperdrive", "hyperspace"]}}, "required": ["name", "version", "description", "main", "scripts", "author", "license", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"chronos_config": {"type": "object", "properties": {"user": {"type": "string"}, "password": {"type": "string"}, "url": {"type": "array", "items": {"type": "string"}}}, "required": ["user", "password", "url"]}}, "required": ["chronos_config"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"chronos_config" : {"user" : "admin", "password" : "secret3", "url" : ["http://chronos:8081"]}} | json_instruct | {"type": "object", "properties": {"chronos_config": {"type": "object", "properties": {"user": {"type": "string"}, "password": {"type": "string"}, "url": {"type": "array", "items": {"type": "string"}}}, "required": ["user", "password", "url"]}}, "required": ["chronos_config"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"swup.js": {"type": "string"}, "swup.min.js": {"type": "string"}}, "required": ["swup.js", "swup.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"swup.js" : "sha512-zQ2bfrBidHk/GVMxI32ndRPfZBbzFHScB2bWWlfclE15+2Fud8i7hLfwb84PciH3R7KfpilylFuxYAczOQJnew==", "swup.min.js" : "sha512-S4G5+dDy+JyYnoo+lo/55ObiGjK1rr+loDrx/MowOJEb3dZhtC5qljtugHgIsvKmgCtvUa5yEJnbyuKMIm5NUA=="} | json_instruct | {"type": "object", "properties": {"swup.js": {"type": "string"}, "swup.min.js": {"type": "string"}}, "required": ["swup.js", "swup.min.js"], "$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"}, "license": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "licenses": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}}, "author": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}, "url": {"type": "string"}}, "required": ["name", "email", "url"]}, "files": {"type": "array", "items": {"type": "string"}}, "keywords": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "version", "description", "license", "repository", "bugs", "licenses", "author", "files", "keywords"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "hyperterm-vmc-dark", "version" : "0.1.2", "description" : "VMC Dark HyperTerm theme", "license" : "MIT", "repository" : {"type" : "git", "url" : "git://github.com/vemec/hyperterm-vmc-dark.git"}, "bugs" : {"url" : "https://github.com/vemec/hyperterm-vmc-dark/issues"}, "licenses" : [{"type" : "MIT", "url" : "https://github.com/vemec/hyperterm-vmc-dark/blob/master/LICENSE-MIT"}], "author" : {"name" : "Diego Ghersi", "email" : "diego@ghersi.com.ar", "url" : "www.ghersi.com.ar"}, "files" : ["index.js"], "keywords" : ["hyperterm", "hyperterm-theme"]} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "license": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "licenses": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}}, "author": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}, "url": {"type": "string"}}, "required": ["name", "email", "url"]}, "files": {"type": "array", "items": {"type": "string"}}, "keywords": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "version", "description", "license", "repository", "bugs", "licenses", "author", "files", "keywords"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "patternId": {"type": "string"}, "severity": {"type": "integer"}, "line": {"type": "integer"}, "column": {"type": "integer"}, "content": {"type": "string"}}, "required": ["name", "patternId", "severity", "line", "column", "content"]}}}, "required": ["contract", "tool", "start", "end", "duration", "analysis"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"contract" : "0xd44fb08008d35e1310319b17aef355a432edd123", "tool" : "smartcheck", "start" : 1563575506.7753808, "end" : 1563575514.5647418, "duration" : 7.789361000061035, "analysis" : [{"name" : "SOLIDITY_ADDRESS_HARDCODED", "patternId" : "a91b18", "severity" : 1, "line" : 256, "column" : 4, "content" : "owner=address(0)"}, {"name" : "SOLIDITY_PRAGMAS_VERSION", "patternId" : "23fc32", "severity" : 1, "line" : 1, "column" : 16, "content" : "^"}, {"name" : "SOLIDITY_PRIVATE_MODIFIER_DONT_HIDE_DATA", "patternId" : "5616b2", "severity" : 1, "line" : 124, "column" : 33, "content" : "private"}, {"name" : "SOLIDITY_SAFEMATH", "patternId" : "837cac", "severity" : 1, "line" : 287, "column" : 2, "content" : "usingSafeMathforuint256;"}, {"name" : "SOLIDITY_UPGRADE_TO_050", "patternId" : "341gim", "severity" : 1, "line" : 135, "column" : 40, "content" : "string_role"}, {"name" : "SOLIDITY_UPGRADE_TO_050", "patternId" : "341gim", "severity" : 1, "line" : 148, "column" : 38, "content" : "string_role"}, {"name" : "SOLIDITY_UPGRADE_TO_050", "patternId" : "341gim", "severity" : 1, "line" : 161, "column" : 38, "content" : "string_role"}, {"name" : "SOLIDITY_UPGRADE_TO_050", "patternId" : "341gim", "severity" : 1, "line" : 173, "column" : 41, "content" : "string_role"}]} | json_instruct | {"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "patternId": {"type": "string"}, "severity": {"type": "integer"}, "line": {"type": "integer"}, "column": {"type": "integer"}, "content": {"type": "string"}}, "required": ["name", "patternId", "severity", "line", "column", "content"]}}}, "required": ["contract", "tool", "start", "end", "duration", "analysis"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"time_fct_id": {"type": "integer"}, "time_fct": {"type": "string"}, "affiliate_facet_id": {"type": "integer"}, "affiliate_facet": {"type": "string"}, "occurrence": {"type": "integer"}, "affiliates": {"type": "array", "items": {"type": "object", "properties": {"facet_id": {"type": "integer"}, "occurrence": {"type": "integer"}, "value": {"type": "string"}}, "required": ["facet_id", "occurrence", "value"]}}}, "required": ["time_fct_id", "time_fct", "affiliate_facet_id", "affiliate_facet", "occurrence", "affiliates"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"time_fct_id" : 30, "time_fct" : "time_61907", "affiliate_facet_id" : 2451, "affiliate_facet" : "Barth", "occurrence" : 172, "affiliates" : [{"facet_id" : 2451, "occurrence" : 177, "value" : "Jussow, Heinrich Christoph"}, {"facet_id" : 2935, "occurrence" : 132, "value" : "Graphische Sammlung (Kassel)"}, {"facet_id" : 58586, "occurrence" : 20, "value" : "Graphische Sammlung Kassel (Kassel)"}, {"facet_id" : 3692, "occurrence" : 9, "value" : "Staatliche Kunstsammlungen \u2014 Graphische Sammlung (Kassel)"}, {"facet_id" : 2453, "occurrence" : 2, "value" : "Nahl, Johann August (der \u00c4ltere)"}, {"facet_id" : 4235, "occurrence" : 1, "value" : "Bromeis, Johann Conrad"}]} | json_instruct | {"type": "object", "properties": {"time_fct_id": {"type": "integer"}, "time_fct": {"type": "string"}, "affiliate_facet_id": {"type": "integer"}, "affiliate_facet": {"type": "string"}, "occurrence": {"type": "integer"}, "affiliates": {"type": "array", "items": {"type": "object", "properties": {"facet_id": {"type": "integer"}, "occurrence": {"type": "integer"}, "value": {"type": "string"}}, "required": ["facet_id", "occurrence", "value"]}}}, "required": ["time_fct_id", "time_fct", "affiliate_facet_id", "affiliate_facet", "occurrence", "affiliates"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "array", "items": {"type": "object", "properties": {"namaKab": {"type": "string"}, "originalFilename": {"type": "string"}, "namaPartai": {"type": "string"}, "id": {"type": "integer"}, "noUrut": {"type": "integer"}, "nama": {"type": "string"}, "stringJenisKelamin": {"type": "string"}}, "required": ["namaKab", "originalFilename", "namaPartai", "id", "noUrut", "nama", "stringJenisKelamin"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"namaKab" : "KOTA BANJARBARU", "originalFilename" : "ANANG.JPG", "namaPartai" : "Partai Golongan Karya", "id" : 213415, "noUrut" : 1, "nama" : "ANANG SIRAJUDIN H", "stringJenisKelamin" : "Laki-Laki"}, {"namaKab" : "KOTA BANJARBARU", "originalFilename" : "KARINA.jpg", "namaPartai" : "Partai Golongan Karya", "id" : 214559, "noUrut" : 2, "nama" : "KARINA SOPHIA ADHANI, SH, M.Kn", "stringJenisKelamin" : "Perempuan"}, {"namaKab" : "KOTA BANJARBARU", "originalFilename" : "BAMBANG EDI RISWAN.jpg", "namaPartai" : "Partai Golongan Karya", "id" : 216323, "noUrut" : 3, "nama" : "BAMBANG EDDY RISWAN", "stringJenisKelamin" : "Laki-Laki"}, {"namaKab" : "KOTA BANJARBARU", "originalFilename" : "SLAMET.jpg", "namaPartai" : "Partai Golongan Karya", "id" : 216791, "noUrut" : 4, "nama" : "SLAMET, SE", "stringJenisKelamin" : "Laki-Laki"}, {"namaKab" : "KOTA BANJARBARU", "originalFilename" : "FOTO.jpg", "namaPartai" : "Partai Golongan Karya", "id" : 217356, "noUrut" : 5, "nama" : "FAULINAH", "stringJenisKelamin" : "Perempuan"}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"namaKab": {"type": "string"}, "originalFilename": {"type": "string"}, "namaPartai": {"type": "string"}, "id": {"type": "integer"}, "noUrut": {"type": "integer"}, "nama": {"type": "string"}, "stringJenisKelamin": {"type": "string"}}, "required": ["namaKab", "originalFilename", "namaPartai", "id", "noUrut", "nama", "stringJenisKelamin"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "array", "items": {"type": "array", "items": {"type": "string"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [["510921209001", "\u701a\u6cfd\u793e\u533a\u5c45\u59d4\u4f1a", "210", "0"], ["510921209200", "\u98de\u51e4\u6751\u6c11\u59d4\u5458\u4f1a", "210", "0"], ["510921209201", "\u4e94\u5bb6\u57dd\u6751\u6c11\u59d4\u5458\u4f1a", "220", "0"], ["510921209202", "\u677f\u6865\u6c9f\u6751\u6c11\u59d4\u5458\u4f1a", "220", "0"], ["510921209203", "\u9ad8\u7801\u5934\u6751\u6c11\u59d4\u5458\u4f1a", "220", "0"], ["510921209204", "\u592a\u5e73\u6751\u6c11\u59d4\u5458\u4f1a", "220", "0"], ["510921209205", "\u590d\u5143\u6751\u6c11\u59d4\u5458\u4f1a", "220", "0"], ["510921209206", "\u671d\u9633\u6751\u6c11\u59d4\u5458\u4f1a", "220", "0"], ["510921209207", "\u516c\u5b57\u6751\u6c11\u59d4\u5458\u4f1a", "220", "0"], ["510921209208", "\u6cb3\u6c99\u6751\u6c11\u59d4\u5458\u4f1a", "122", "0"], ["510921209209", "\u91d1\u534e\u6751\u6c11\u59d4\u5458\u4f1a", "220", "0"], ["510921209210", "\u7389\u697c\u6751\u6c11\u59d4\u5458\u4f1a", "220", "0"], ["510921209211", "\u5174\u9686\u6751\u6c11\u59d4\u5458\u4f1a", "220", "0"], ["510921209212", "\u9e64\u6797\u6751\u6c11\u59d4\u5458\u4f1a", "220", "0"], ["510921209213", "\u767d\u9e64\u6751\u6c11\u59d4\u5458\u4f1a", "210", "0"]] | json_instruct | {"type": "array", "items": {"type": "array", "items": {"type": "string"}}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"tokens": {"type": "object", "properties": {"TEST": {"type": "object", "properties": {"issuer": {"type": "string"}, "owner": {"type": "string"}, "signature": {"type": "string"}, "supply": {"type": "string"}, "supply_int": {"type": "integer"}, "mintable": {"type": "boolean"}, "decimals": {"type": "integer"}, "block_height": {"type": "integer"}, "timestamp": {"type": "integer"}}, "required": ["issuer", "owner", "signature", "supply", "supply_int", "mintable", "decimals", "block_height", "timestamp"]}, "TEST_MINT": {"type": "object", "properties": {"issuer": {"type": "string"}, "owner": {"type": "string"}, "signature": {"type": "string"}, "supply": {"type": "string"}, "supply_int": {"type": "integer"}, "mintable": {"type": "boolean"}, "decimals": {"type": "integer"}, "block_height": {"type": "integer"}, "timestamp": {"type": "integer"}}, "required": ["issuer", "owner", "signature", "supply", "supply_int", "mintable", "decimals", "block_height", "timestamp"]}}, "required": ["TEST", "TEST_MINT"]}, "balances": {"type": "object", "properties": {"TEST": {"type": "object", "properties": {"4000000000000000000000000000000000000000000000000000000000000001": {"type": "integer"}}, "required": ["4000000000000000000000000000000000000000000000000000000000000001"]}, "TEST_MINT": {"type": "object", "properties": {"4000000000000000000000000000000000000000000000000000000000000001": {"type": "integer"}, "4000000000000000000000000000000000000000000000000000000000000002": {"type": "integer"}}, "required": ["4000000000000000000000000000000000000000000000000000000000000001", "4000000000000000000000000000000000000000000000000000000000000002"]}}, "required": ["TEST", "TEST_MINT"]}}, "required": ["tokens", "balances"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"tokens" : {"TEST" : {"issuer" : "4000000000000000000000000000000000000000000000000000000000000001", "owner" : "4000000000000000000000000000000000000000000000000000000000000001", "signature" : "39000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", "supply" : "100", "supply_int" : 100, "mintable" : false, "decimals" : 0, "block_height" : 0, "timestamp" : 0}, "TEST_MINT" : {"issuer" : "4000000000000000000000000000000000000000000000000000000000000001", "owner" : "4000000000000000000000000000000000000000000000000000000000000001", "signature" : "30000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", "supply" : "90", "supply_int" : 90, "mintable" : true, "decimals" : 0, "block_height" : 0, "timestamp" : 0}}, "balances" : {"TEST" : {"4000000000000000000000000000000000000000000000000000000000000001" : 100}, "TEST_MINT" : {"4000000000000000000000000000000000000000000000000000000000000001" : 50, "4000000000000000000000000000000000000000000000000000000000000002" : 40}}} | json_instruct | {"type": "object", "properties": {"tokens": {"type": "object", "properties": {"TEST": {"type": "object", "properties": {"issuer": {"type": "string"}, "owner": {"type": "string"}, "signature": {"type": "string"}, "supply": {"type": "string"}, "supply_int": {"type": "integer"}, "mintable": {"type": "boolean"}, "decimals": {"type": "integer"}, "block_height": {"type": "integer"}, "timestamp": {"type": "integer"}}, "required": ["issuer", "owner", "signature", "supply", "supply_int", "mintable", "decimals", "block_height", "timestamp"]}, "TEST_MINT": {"type": "object", "properties": {"issuer": {"type": "string"}, "owner": {"type": "string"}, "signature": {"type": "string"}, "supply": {"type": "string"}, "supply_int": {"type": "integer"}, "mintable": {"type": "boolean"}, "decimals": {"type": "integer"}, "block_height": {"type": "integer"}, "timestamp": {"type": "integer"}}, "required": ["issuer", "owner", "signature", "supply", "supply_int", "mintable", "decimals", "block_height", "timestamp"]}}, "required": ["TEST", "TEST_MINT"]}, "balances": {"type": "object", "properties": {"TEST": {"type": "object", "properties": {"4000000000000000000000000000000000000000000000000000000000000001": {"type": "integer"}}, "required": ["4000000000000000000000000000000000000000000000000000000000000001"]}, "TEST_MINT": {"type": "object", "properties": {"4000000000000000000000000000000000000000000000000000000000000001": {"type": "integer"}, "4000000000000000000000000000000000000000000000000000000000000002": {"type": "integer"}}, "required": ["4000000000000000000000000000000000000000000000000000000000000001", "4000000000000000000000000000000000000000000000000000000000000002"]}}, "required": ["TEST", "TEST_MINT"]}}, "required": ["tokens", "balances"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"thag3.2:1.1": {"type": "string"}, "thag3.2:2.1": {"type": "string"}, "thag3.2:3.1": {"type": "string"}}, "required": ["thag3.2:1.1", "thag3.2:2.1", "thag3.2:3.1"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"thag3.2:1.1" : "ms19Th1_438, msdiv222, vnp222", "thag3.2:2.1" : "ms19Th1_439, msdiv223, vnp223", "thag3.2:3.1" : "ms19Th1_440, msdiv224, vnp224"} | json_instruct | {"type": "object", "properties": {"thag3.2:1.1": {"type": "string"}, "thag3.2:2.1": {"type": "string"}, "thag3.2:3.1": {"type": "string"}}, "required": ["thag3.2:1.1", "thag3.2:2.1", "thag3.2:3.1"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"content": {"type": "string"}, "entities": {"type": "array", "items": {"type": "object", "properties": {"entity": {"type": "string"}, "type": {"type": "string"}, "id": {"type": "integer"}, "offset": {"type": "integer"}}, "required": ["entity", "type", "id", "offset"]}}, "topics": {"type": "array", "items": {"type": "object", "properties": {"topic": {"type": "string"}, "id": {"type": "integer"}}, "required": ["topic", "id"]}}, "tweet_id": {"type": "string"}}, "required": ["content", "entities", "topics", "tweet_id"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"content" : "How is getting \u00a35bn from tax avoidance & evasion ambitious? There's 70bn lost a year to tax evasion alone! #bbcqt", "entities" : [{"entity" : "tax avoidance", "type" : "topic keyword", "id" : 2, "offset" : 25}, {"entity" : "tax evasion", "type" : "topic keyword", "id" : 3, "offset" : 88}], "topics" : [{"topic" : "public spending", "id" : 1}], "tweet_id" : "581233585824337921"} | json_instruct | {"type": "object", "properties": {"content": {"type": "string"}, "entities": {"type": "array", "items": {"type": "object", "properties": {"entity": {"type": "string"}, "type": {"type": "string"}, "id": {"type": "integer"}, "offset": {"type": "integer"}}, "required": ["entity", "type", "id", "offset"]}}, "topics": {"type": "array", "items": {"type": "object", "properties": {"topic": {"type": "string"}, "id": {"type": "integer"}}, "required": ["topic", "id"]}}, "tweet_id": {"type": "string"}}, "required": ["content", "entities", "topics", "tweet_id"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"hash": {"type": "string"}, "parentHash": {"type": "string"}, "number": {"type": "integer"}, "timestamp": {"type": "integer"}, "nonce": {"type": "string"}, "difficulty": {"type": "integer"}, "gasLimit": {"type": "object", "properties": {"_hex": {"type": "string"}}, "required": ["_hex"]}, "gasUsed": {"type": "object", "properties": {"_hex": {"type": "string"}}, "required": ["_hex"]}, "miner": {"type": "string"}, "extraData": {"type": "string"}, "transactions": {"type": "array", "items": {}}}, "required": ["hash", "parentHash", "number", "timestamp", "nonce", "difficulty", "gasLimit", "gasUsed", "miner", "extraData", "transactions"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"hash" : "0x893095a23c34701a7ca381cef42f57e86135313e7fbce866936d5ae0bea9c333", "parentHash" : "0xc0b17c0652c376abf0ea4eb0e7cd924c6c58c4b8c58fc930b77b01c6a1045290", "number" : 83132, "timestamp" : 1439530665, "nonce" : "0xaac0dbc68b76fcbc", "difficulty" : 2408967543342, "gasLimit" : {"_hex" : "0x2fefd8"}, "gasUsed" : {"_hex" : "0x0"}, "miner" : "0x35c6f22E8fFA3d3aEf1EE7744BdbA64E1b188a15", "extraData" : "0x476574682f76312e302e312f6c696e75782f676f312e342e32", "transactions" : []} | json_instruct | {"type": "object", "properties": {"hash": {"type": "string"}, "parentHash": {"type": "string"}, "number": {"type": "integer"}, "timestamp": {"type": "integer"}, "nonce": {"type": "string"}, "difficulty": {"type": "integer"}, "gasLimit": {"type": "object", "properties": {"_hex": {"type": "string"}}, "required": ["_hex"]}, "gasUsed": {"type": "object", "properties": {"_hex": {"type": "string"}}, "required": ["_hex"]}, "miner": {"type": "string"}, "extraData": {"type": "string"}, "transactions": {"type": "array", "items": {}}}, "required": ["hash", "parentHash", "number", "timestamp", "nonce", "difficulty", "gasLimit", "gasUsed", "miner", "extraData", "transactions"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"name": {"type": "string"}, "symbol": {"type": "string"}, "logoURI": {"type": "string"}, "decimals": {"type": "integer"}, "address": {"type": "string"}, "chainId": {"type": "integer"}, "tags": {"type": "array", "items": {"type": "string"}}, "extensions": {"type": "object", "properties": {"twitter": {"type": "string"}, "discord": {"type": "string"}}, "required": ["twitter", "discord"]}}, "required": ["name", "symbol", "logoURI", "decimals", "address", "chainId", "tags", "extensions"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "DevTech45", "symbol" : "DEVT", "logoURI" : "https://raw.githubusercontent.com/solana-labs/token-list/main/assets/mainnet/3aD7pEXJPVEXqAgksBxbRtFRGTWCXn9GuWCjKQxc3xsh/logo.png", "decimals" : 6, "address" : "3aD7pEXJPVEXqAgksBxbRtFRGTWCXn9GuWCjKQxc3xsh", "chainId" : 101, "tags" : ["community-token", "social-token"], "extensions" : {"twitter" : "https://twitter.com/SirKingDev", "discord" : "https://discord.gg/MneHecEKQJ"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "symbol": {"type": "string"}, "logoURI": {"type": "string"}, "decimals": {"type": "integer"}, "address": {"type": "string"}, "chainId": {"type": "integer"}, "tags": {"type": "array", "items": {"type": "string"}}, "extensions": {"type": "object", "properties": {"twitter": {"type": "string"}, "discord": {"type": "string"}}, "required": ["twitter", "discord"]}}, "required": ["name", "symbol", "logoURI", "decimals", "address", "chainId", "tags", "extensions"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"id": {"type": "integer"}, "info": {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "additionalInfo": {"type": "null"}, "format": {"type": "string"}, "category": {"type": "string"}, "createdAt": {"type": "string"}, "updatedAt": {"type": "string"}, "license": {"type": "string"}, "author": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "paypalEmail": {"type": "string"}}, "required": ["id", "name", "paypalEmail"]}}, "required": ["name", "description", "additionalInfo", "format", "category", "createdAt", "updatedAt", "license", "author"]}, "stats": {"type": "object", "properties": {"installs": {"type": "object", "properties": {"total": {"type": "integer"}, "weekly": {"type": "integer"}}, "required": ["total", "weekly"]}}, "required": ["installs"]}, "screenshots": {"type": "object", "properties": {"main": {"type": "object", "properties": {"name": {"type": "string"}, "archived": {"type": "boolean"}}, "required": ["name", "archived"]}, "additional": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "archived": {"type": "boolean"}}, "required": ["name", "archived"]}}}, "required": ["main", "additional"]}, "discussions": {"type": "object", "properties": {"stats": {"type": "object", "properties": {"discussionsCount": {"type": "integer"}, "commentsCount": {"type": "integer"}}, "required": ["discussionsCount", "commentsCount"]}, "data": {"type": "array", "items": {}}}, "required": ["stats", "data"]}, "style": {"type": "object", "properties": {"css": {"type": "string"}}, "required": ["css"]}}, "required": ["id", "info", "stats", "screenshots", "discussions", "style"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : 178306, "info" : {"name" : "Goal-difference removal", "description" : "Removes goal-difference column from league standings page", "additionalInfo" : null, "format" : "uso", "category" : "hattrick", "createdAt" : "2019-12-15T18:00:42.000Z", "updatedAt" : "2019-12-15T18:00:42.000Z", "license" : "NO-REDISTRIBUTION", "author" : {"id" : 873609, "name" : "tperic", "paypalEmail" : "thetoniperic@gmail.com"}}, "stats" : {"installs" : {"total" : 1, "weekly" : 0}}, "screenshots" : {"main" : {"name" : "178306_after.jpeg", "archived" : true}, "additional" : [{"name" : "178306_additional_35132.jpeg", "archived" : true}]}, "discussions" : {"stats" : {"discussionsCount" : 0, "commentsCount" : 0}, "data" : []}, "style" : {"css" : "@-moz-document regexp(\"https://.*hattrick.org\\\\/([a-z\\\\-]+\\\\/)?World\\\\/Series\\\\/(default.aspx)?\\\\?.*\") {\r\ntable.series-table tr:not(:first-child) > *:nth-child(12), #ctl00_ctl00_CPContent_CPMain_repLeagueTable_ctl00_td4 {\r\n display: none;\r\n}\r\n}"}} | json_instruct | {"type": "object", "properties": {"id": {"type": "integer"}, "info": {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "additionalInfo": {"type": "null"}, "format": {"type": "string"}, "category": {"type": "string"}, "createdAt": {"type": "string"}, "updatedAt": {"type": "string"}, "license": {"type": "string"}, "author": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "paypalEmail": {"type": "string"}}, "required": ["id", "name", "paypalEmail"]}}, "required": ["name", "description", "additionalInfo", "format", "category", "createdAt", "updatedAt", "license", "author"]}, "stats": {"type": "object", "properties": {"installs": {"type": "object", "properties": {"total": {"type": "integer"}, "weekly": {"type": "integer"}}, "required": ["total", "weekly"]}}, "required": ["installs"]}, "screenshots": {"type": "object", "properties": {"main": {"type": "object", "properties": {"name": {"type": "string"}, "archived": {"type": "boolean"}}, "required": ["name", "archived"]}, "additional": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "archived": {"type": "boolean"}}, "required": ["name", "archived"]}}}, "required": ["main", "additional"]}, "discussions": {"type": "object", "properties": {"stats": {"type": "object", "properties": {"discussionsCount": {"type": "integer"}, "commentsCount": {"type": "integer"}}, "required": ["discussionsCount", "commentsCount"]}, "data": {"type": "array", "items": {}}}, "required": ["stats", "data"]}, "style": {"type": "object", "properties": {"css": {"type": "string"}}, "required": ["css"]}}, "required": ["id", "info", "stats", "screenshots", "discussions", "style"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"}
| ["ethdeploy", "weifund-contracts"] | json_instruct | {"type": "array", "items": {"type": "string"}, "$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"}, "district_id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "district_id", "name"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "3210150014", "district_id" : "3210150", "name" : "GANDU"} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "district_id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "district_id", "name"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"modestmaps.js": {"type": "string"}, "modestmaps.min.js": {"type": "string"}}, "required": ["modestmaps.js", "modestmaps.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"modestmaps.js" : "sha512-5xLwGZWaLXVqMoWal4XzCANa/T/LECM03NmexeU3d5DsQ0++cnqHswZMo5ZLZGMoTtDYH4LdpP70/VhDK6kWkw==", "modestmaps.min.js" : "sha512-bEBCmIoZMmW+EfL1vLeeK0nR6ewIQECDgazyAu+FrYXjwqy1XfibPCPf3nLYctbr9pp3eEpsOcd5cTD4020jLw=="} | json_instruct | {"type": "object", "properties": {"modestmaps.js": {"type": "string"}, "modestmaps.min.js": {"type": "string"}}, "required": ["modestmaps.js", "modestmaps.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"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" : ["Bring a large pot of lightly salted water to a boil. Boil pasta for 8 to 10 minutes, or until al dente. Drain.", "Heat olive oil in a large skillet over medium high heat. Sprinkle chicken with seasoned salt, and cook for 2 to 3 minutes. Stir in drained black olives and mushrooms. Continue cooking, stirring occasionally, until chicken is golden brown. Strain chicken juices from pan, and reduce heat to low. Stir in tomatoes, cover, and simmer for 15 minutes.", "Toss the pasta and chicken mixture together, sprinkle with Parmesan cheese, and serve."], "ingredients" : ["1/2 (16 ounce) package angel hair pasta", "olive oil", "2 skinless, boneless chicken breast halves - chopped", "2 teaspoons garlic and herb seasoning blend", "1 (6 ounce) can sliced black olives, drained", "1 (8 ounce) can sliced mushrooms, drained", "2 (16 ounce) cans diced tomatoes", "freshly grated Parmesan cheese"], "language" : "en-US", "source" : "allrecipes.com", "tags" : [], "title" : "Quick and Easy Chicken and Tomato Pasta", "url" : "http://allrecipes.com/recipe/58752/quick-and-easy-chicken-and-tomato-pas/"} | 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": {"dynamodb": {"type": "object", "properties": {"region": {"type": "string"}, "clientJS": {"type": "string"}}, "required": ["region", "clientJS"]}, "shortener": {"type": "object", "properties": {"resourceTableName": {"type": "string"}, "resourceIndexName": {"type": "string"}}, "required": ["resourceTableName", "resourceIndexName"]}}, "required": ["dynamodb", "shortener"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"dynamodb" : {"region" : "eu-west-1", "clientJS" : "../../../spec/helpers/dynamodb-client.js"}, "shortener" : {"resourceTableName" : "sls-url-shortener-urls-dev", "resourceIndexName" : "sls-url-shortener-trackers-dev"}} | json_instruct | {"type": "object", "properties": {"dynamodb": {"type": "object", "properties": {"region": {"type": "string"}, "clientJS": {"type": "string"}}, "required": ["region", "clientJS"]}, "shortener": {"type": "object", "properties": {"resourceTableName": {"type": "string"}, "resourceIndexName": {"type": "string"}}, "required": ["resourceTableName", "resourceIndexName"]}}, "required": ["dynamodb", "shortener"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"main": {"type": "object", "properties": {"slug": {"type": "string"}, "contents": {"type": "string"}}, "required": ["slug", "contents"]}, "dek": {"type": "string"}, "usedIn": {"type": "array", "items": {"type": "object", "properties": {"group": {"type": "string"}, "matches": {"type": "array", "items": {}}}, "required": ["group", "matches"]}}, "jsdocParsed": {"type": "object", "properties": {"description": {"type": "string"}, "tags": {"type": "array", "items": {"type": "object", "properties": {"title": {"type": "string"}, "description": {"type": "string"}, "type": {"type": "object", "properties": {"type": {"type": "string"}, "expression": {"type": "object", "properties": {"type": {"type": "string"}, "name": {"type": "string"}}, "required": ["type", "name"]}}, "required": ["type", "expression"]}, "name": {"type": "string"}, "default": {"type": "string"}}, "required": ["title", "description", "type", "name", "default"]}}}, "required": ["description", "tags"]}}, "required": ["main", "dek", "usedIn", "jsdocParsed"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"main" : {"slug" : "Area-D3.svelte", "contents" : "<script>\n /**\n Generates an SVG area shape using the `area` function from [d3-shape](https://github.com/d3/d3-shape).\n @type {String} [fill='#ab00d610'] \u2013\u00a0The shape's fill color. This is technically optional because it comes with a default value but you'll likely want to replace it with your own color.\n @type {Function} [curve=curveLinear] \u2013\u00a0An optional D3 interpolation function. See [d3-shape](https://github.com/d3/d3-shape#curves) for options. Pass this function in uncalled, i.e. without the open-close parentheses.\n */\n import { getContext } from 'svelte';\n import { area, curveLinear } from 'd3-shape';\n\n const { data, xGet, yGet, yScale } = getContext('LayerCake');\n\n export let fill = '#ab00d610';\n export let curve = curveLinear;\n\n $: path = area()\n .x($xGet)\n .y1($yGet)\n .y0(d => $yScale(0))\n .curve(curve);\n // .defined($y)\n</script>\n\n<path class='path-area' d='{path($data)}' {fill}></path>"}, "dek" : "", "usedIn" : [{"group" : "Regular", "matches" : []}, {"group" : "SSR", "matches" : []}], "jsdocParsed" : {"description" : "Generates an SVG area shape using the `area` function from [d3-shape](https://github.com/d3/d3-shape).", "tags" : [{"title" : "param", "description" : "\u2013\u00a0The shape's fill color. This is technically optional because it comes with a default value but you'll likely want to replace it with your own color.", "type" : {"type" : "OptionalType", "expression" : {"type" : "NameExpression", "name" : "String"}}, "name" : "fill", "default" : "'#ab00d610'"}, {"title" : "param", "description" : "\u2013\u00a0An optional D3 interpolation function. See [d3-shape](https://github.com/d3/d3-shape#curves) for options. Pass this function in uncalled, i.e. without the open-close parentheses.", "type" : {"type" : "OptionalType", "expression" : {"type" : "NameExpression", "name" : "Function"}}, "name" : "curve", "default" : "curveLinear"}]}} | json_instruct | {"type": "object", "properties": {"main": {"type": "object", "properties": {"slug": {"type": "string"}, "contents": {"type": "string"}}, "required": ["slug", "contents"]}, "dek": {"type": "string"}, "usedIn": {"type": "array", "items": {"type": "object", "properties": {"group": {"type": "string"}, "matches": {"type": "array", "items": {}}}, "required": ["group", "matches"]}}, "jsdocParsed": {"type": "object", "properties": {"description": {"type": "string"}, "tags": {"type": "array", "items": {"type": "object", "properties": {"title": {"type": "string"}, "description": {"type": "string"}, "type": {"type": "object", "properties": {"type": {"type": "string"}, "expression": {"type": "object", "properties": {"type": {"type": "string"}, "name": {"type": "string"}}, "required": ["type", "name"]}}, "required": ["type", "expression"]}, "name": {"type": "string"}, "default": {"type": "string"}}, "required": ["title", "description", "type", "name", "default"]}}}, "required": ["description", "tags"]}}, "required": ["main", "dek", "usedIn", "jsdocParsed"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"innoxel adapter settings": {"type": "string"}, "connection": {"type": "string"}, "ip": {"type": "string"}, "ip_description": {"type": "string"}, "port": {"type": "string"}, "port_description": {"type": "string"}, "username": {"type": "string"}, "username_description": {"type": "string"}, "password": {"type": "string"}, "password_description": {"type": "string"}, "intervals": {"type": "string"}, "intervals_details": {"type": "string"}, "intervals_description": {"type": "string"}, "intervalChange": {"type": "string"}, "intervalChange_description": {"type": "string"}, "intervalWeather": {"type": "string"}, "intervalRoomTemperature": {"type": "string"}, "intervalDeviceStatus": {"type": "string"}, "intervalDeviceStatus_description": {"type": "string"}}, "required": ["innoxel adapter settings", "connection", "ip", "ip_description", "port", "port_description", "username", "username_description", "password", "password_description", "intervals", "intervals_details", "intervals_description", "intervalChange", "intervalChange_description", "intervalWeather", "intervalRoomTemperature", "intervalDeviceStatus", "intervalDeviceStatus_description"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"innoxel adapter settings" : "Impostazioni dell'adattatore per innoxel", "connection" : "Impostazioni di connessione", "ip" : "indirizzo IP", "ip_description" : "Indirizzo IP del master innoxel, ovvero 192.168.0.10", "port" : "Porta", "port_description" : "Porta dell'interfaccia web master innoxel, predefinita 5001", "username" : "Nome utente", "username_description" : "Nome utente per accedere a innoxel master", "password" : "Parola d'ordine", "password_description" : "Password per l'utente", "intervals" : "Intervalli sondaggio", "intervals_details" : "Innoxel Master deve essere interrogato periodicamente per avere gli stati aggiornati nell'adattatore. ", "intervals_description" : "", "intervalChange" : "Modifiche al modulo", "intervalChange_description" : "cio\u00e8 interruttore acceso", "intervalWeather" : "Tempo metereologico", "intervalRoomTemperature" : "Termostati ambiente", "intervalDeviceStatus" : "Dettagli del dispositivo Innoxel Master", "intervalDeviceStatus_description" : "Richiede un account utente con privilegi di amministratore"} | json_instruct | {"type": "object", "properties": {"innoxel adapter settings": {"type": "string"}, "connection": {"type": "string"}, "ip": {"type": "string"}, "ip_description": {"type": "string"}, "port": {"type": "string"}, "port_description": {"type": "string"}, "username": {"type": "string"}, "username_description": {"type": "string"}, "password": {"type": "string"}, "password_description": {"type": "string"}, "intervals": {"type": "string"}, "intervals_details": {"type": "string"}, "intervals_description": {"type": "string"}, "intervalChange": {"type": "string"}, "intervalChange_description": {"type": "string"}, "intervalWeather": {"type": "string"}, "intervalRoomTemperature": {"type": "string"}, "intervalDeviceStatus": {"type": "string"}, "intervalDeviceStatus_description": {"type": "string"}}, "required": ["innoxel adapter settings", "connection", "ip", "ip_description", "port", "port_description", "username", "username_description", "password", "password_description", "intervals", "intervals_details", "intervals_description", "intervalChange", "intervalChange_description", "intervalWeather", "intervalRoomTemperature", "intervalDeviceStatus", "intervalDeviceStatus_description"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"translation-revision-date": {"type": "string"}, "generator": {"type": "string"}, "domain": {"type": "string"}, "locale_data": {"type": "object", "properties": {"messages": {"type": "object", "properties": {"": {"type": "object", "properties": {"domain": {"type": "string"}, "plural-forms": {"type": "string"}, "lang": {"type": "string"}}, "required": ["domain", "plural-forms", "lang"]}, "Could not load the preview image.": {"type": "array", "items": {"type": "string"}}, "Could not load the preview image. Please reload the page and try again.": {"type": "array", "items": {"type": "string"}}}, "required": ["", "Could not load the preview image.", "Could not load the preview image. Please reload the page and try again."]}}, "required": ["messages"]}, "comment": {"type": "object", "properties": {"reference": {"type": "string"}}, "required": ["reference"]}}, "required": ["translation-revision-date", "generator", "domain", "locale_data", "comment"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"translation-revision-date" : "2021-03-15 01:48:19+0000", "generator" : "GlotPress/3.0.0-alpha.2", "domain" : "messages", "locale_data" : {"messages" : {"" : {"domain" : "messages", "plural-forms" : "nplurals=1; plural=0;", "lang" : "zh_CN"}, "Could not load the preview image." : ["\u65e0\u6cd5\u52a0\u8f7d\u9884\u89c8\u56fe\u50cf\u3002"], "Could not load the preview image. Please reload the page and try again." : ["\u65e0\u6cd5\u52a0\u8f7d\u9884\u89c8\u56fe\u50cf\u3002\u8bf7\u5c1d\u8bd5\u5237\u65b0\u9875\u9762\u3002"]}}, "comment" : {"reference" : "wp-admin/js/image-edit.js"}} | json_instruct | {"type": "object", "properties": {"translation-revision-date": {"type": "string"}, "generator": {"type": "string"}, "domain": {"type": "string"}, "locale_data": {"type": "object", "properties": {"messages": {"type": "object", "properties": {"": {"type": "object", "properties": {"domain": {"type": "string"}, "plural-forms": {"type": "string"}, "lang": {"type": "string"}}, "required": ["domain", "plural-forms", "lang"]}, "Could not load the preview image.": {"type": "array", "items": {"type": "string"}}, "Could not load the preview image. Please reload the page and try again.": {"type": "array", "items": {"type": "string"}}}, "required": ["", "Could not load the preview image.", "Could not load the preview image. Please reload the page and try again."]}}, "required": ["messages"]}, "comment": {"type": "object", "properties": {"reference": {"type": "string"}}, "required": ["reference"]}}, "required": ["translation-revision-date", "generator", "domain", "locale_data", "comment"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"name": {"type": "string"}, "number": {"type": "string"}, "is_illegal": {"type": "boolean"}, "text": {"type": "string"}, "type": {"type": "string"}, "is_monster": {"type": "boolean"}, "is_spell": {"type": "boolean"}, "is_trap": {"type": "boolean"}, "property": {"type": "string"}}, "required": ["name", "number", "is_illegal", "text", "type", "is_monster", "is_spell", "is_trap", "property"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "B.E.T. Shield Regeneration", "number" : "21000336", "is_illegal" : true, "text" : "If you control a \"B.E.F.\" Spell, you can activate this card the turn it was Set./nOnce per turn: You can place 1 counter on each \"B.E.S.\" monster you control. /nYou can banish this card from your GY; Set 1 \"B.E.T.\" or \"B.E.F.\" Spell/Trap directly from your Deck except \"B.E.T. Shield Regeneration\", and if you do, all \"B.E.S.\" monsters you control gain 500 ATK/DEF. You can only use 1 effect of \"B.E.T. Shield Regeneration\" per turn, and only once that turn.", "type" : "Trap", "is_monster" : false, "is_spell" : false, "is_trap" : true, "property" : "Continuous"} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "number": {"type": "string"}, "is_illegal": {"type": "boolean"}, "text": {"type": "string"}, "type": {"type": "string"}, "is_monster": {"type": "boolean"}, "is_spell": {"type": "boolean"}, "is_trap": {"type": "boolean"}, "property": {"type": "string"}}, "required": ["name", "number", "is_illegal", "text", "type", "is_monster", "is_spell", "is_trap", "property"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"type": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "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, 27.916666666666668], [125.25, 28.0], [125.375, 28.0], [125.375, 27.916666666666668], [125.25, 27.916666666666668]]]}, "properties" : {"code" : 412572, "url" : "http://madefor.github.io/0410/api/v1/412572.geojson", "view" : "https://github.com/madefor/0410/blob/gh-pages/api/v1/412572.geojson"}} | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["type", "coordinates"]}, "properties": {"type": "object", "properties": {"code": {"type": "integer"}, "url": {"type": "string"}, "view": {"type": "string"}}, "required": ["code", "url", "view"]}}, "required": ["type", "geometry", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"appName": {"type": "object", "properties": {"message": {"type": "string"}}, "required": ["message"]}, "appDesc": {"type": "object", "properties": {"message": {"type": "string"}}, "required": ["message"]}}, "required": ["appName", "appDesc"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"appName" : {"message" : "DuckDuckGo Privacy Essentials"}, "appDesc" : {"message" : "La privacy, semplificata. ***I permessi servono a bloccare i tracker nascosti in agguato ovunque.***"}} | json_instruct | {"type": "object", "properties": {"appName": {"type": "object", "properties": {"message": {"type": "string"}}, "required": ["message"]}, "appDesc": {"type": "object", "properties": {"message": {"type": "string"}}, "required": ["message"]}}, "required": ["appName", "appDesc"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"parent": {"type": "string"}, "textures": {"type": "object", "properties": {"layer0": {"type": "string"}}, "required": ["layer0"]}}, "required": ["parent", "textures"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"parent" : "minecraft:item/crossbow", "textures" : {"layer0" : "gm4:item/sky_dimension/crossbow_standby_4"}} | json_instruct | {"type": "object", "properties": {"parent": {"type": "string"}, "textures": {"type": "object", "properties": {"layer0": {"type": "string"}}, "required": ["layer0"]}}, "required": ["parent", "textures"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"info": {"type": "object", "properties": {"project": {"type": "string"}, "developers": {"type": "integer"}, "edges": {"type": "integer"}, "vertices": {"type": "integer"}, "commits": {"type": "integer"}, "id": {"type": "integer"}, "agedays": {"type": "integer"}, "refactorings": {"type": "integer"}, "group": {"type": "string"}, "language": {"type": "string"}, "level": {"type": "string"}, "summary": {"type": "string"}}, "required": ["project", "developers", "edges", "vertices", "commits", "id", "agedays", "refactorings", "group", "language", "level", "summary"]}, "commits_list": {"type": "array", "items": {"type": "string"}}, "edges": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "before": {"type": "string"}, "lineB": {"type": "null"}, "after": {"type": "string"}, "lineA": {"type": "null"}, "ref": {"type": "string"}, "sha1": {"type": "string"}}, "required": ["id", "before", "lineB", "after", "lineA", "ref", "sha1"]}}}, "required": ["info", "commits_list", "edges"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"info" : {"project" : "spring-projects/spring-framework", "developers" : 1, "edges" : 2, "vertices" : 3, "commits" : 2, "id" : 2243, "agedays" : 48, "refactorings" : 2, "group" : "Overtime", "language" : "Java", "level" : "Method", "summary" : ""}, "commits_list" : ["48f7dcc464", "1df0cd9f20"], "edges" : [{"id" : 3260, "before" : "org.springframework.web.servlet.src.main.org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter#getDataBinderFactory(HandlerMethod)", "lineB" : null, "after" : "org.springframework.web.servlet.src.main.org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter#createDataBinderFactory(List)", "lineA" : null, "ref" : "EXTRACT", "sha1" : "48f7dcc464"}, {"id" : 3323, "before" : "org.springframework.web.servlet.src.main.org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter#createDataBinderFactory(HandlerMethod)", "lineB" : null, "after" : "org.springframework.web.servlet.src.main.org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter#getDataBinderFactory(HandlerMethod)", "lineA" : null, "ref" : "RENAME", "sha1" : "1df0cd9f20"}]} | json_instruct | {"type": "object", "properties": {"info": {"type": "object", "properties": {"project": {"type": "string"}, "developers": {"type": "integer"}, "edges": {"type": "integer"}, "vertices": {"type": "integer"}, "commits": {"type": "integer"}, "id": {"type": "integer"}, "agedays": {"type": "integer"}, "refactorings": {"type": "integer"}, "group": {"type": "string"}, "language": {"type": "string"}, "level": {"type": "string"}, "summary": {"type": "string"}}, "required": ["project", "developers", "edges", "vertices", "commits", "id", "agedays", "refactorings", "group", "language", "level", "summary"]}, "commits_list": {"type": "array", "items": {"type": "string"}}, "edges": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "before": {"type": "string"}, "lineB": {"type": "null"}, "after": {"type": "string"}, "lineA": {"type": "null"}, "ref": {"type": "string"}, "sha1": {"type": "string"}}, "required": ["id", "before", "lineB", "after", "lineA", "ref", "sha1"]}}}, "required": ["info", "commits_list", "edges"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"SETTINGS_LOCALSTORAGE_KEY": {"type": "string"}, "LOCALSTORAGE_KEY": {"type": "string"}, "VIDEO_PLAYER_CLASSNAME": {"type": "string"}, "HIDE_VIDEO_BTN_CLASSNAME": {"type": "string"}, "HIDE_VIDEO_BTN_TITLE": {"type": "string"}, "HIDE_VIDEO_BTN_TEXT": {"type": "string"}, "MUTE_CHECKBOX_CLASSNAME": {"type": "string"}, "MUTE_CHECKBOX_TITLE": {"type": "string"}, "ICONS_CONTAINER_ID": {"type": "string"}, "ICON_CLOSE_ID": {"type": "string"}, "ICON_CLOSE_USE_CLASSNAME": {"type": "string"}, "ICONS_URL": {"type": "string"}}, "required": ["SETTINGS_LOCALSTORAGE_KEY", "LOCALSTORAGE_KEY", "VIDEO_PLAYER_CLASSNAME", "HIDE_VIDEO_BTN_CLASSNAME", "HIDE_VIDEO_BTN_TITLE", "HIDE_VIDEO_BTN_TEXT", "MUTE_CHECKBOX_CLASSNAME", "MUTE_CHECKBOX_TITLE", "ICONS_CONTAINER_ID", "ICON_CLOSE_ID", "ICON_CLOSE_USE_CLASSNAME", "ICONS_URL"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"SETTINGS_LOCALSTORAGE_KEY" : "iichan_settings", "LOCALSTORAGE_KEY" : "iichan_video_settings", "VIDEO_PLAYER_CLASSNAME" : "iichan-video-player", "HIDE_VIDEO_BTN_CLASSNAME" : "iichan-hide-video-btn", "HIDE_VIDEO_BTN_TITLE" : "\u0417\u0430\u043a\u0440\u044b\u0442\u044c\u00a0\u0432\u0438\u0434\u0435\u043e", "HIDE_VIDEO_BTN_TEXT" : "\u0417\u0430\u043a\u0440\u044b\u0442\u044c\u00a0\u0432\u0438\u0434\u0435\u043e", "MUTE_CHECKBOX_CLASSNAME" : "iichan-mute-video-checkbox", "MUTE_CHECKBOX_TITLE" : "\u0412\u043a\u043b\u044e\u0447\u0438\u0442\u044c \u0437\u0432\u0443\u043a \u043f\u0440\u0438 \u043e\u0442\u043a\u0440\u044b\u0442\u0438\u0438 \u0432\u0438\u0434\u0435\u043e", "ICONS_CONTAINER_ID" : "iichan-video-player-icons", "ICON_CLOSE_ID" : "iichan-icon-close", "ICON_CLOSE_USE_CLASSNAME" : "iichan-icon-video-close-use", "ICONS_URL" : "/extras/icons.svg"} | json_instruct | {"type": "object", "properties": {"SETTINGS_LOCALSTORAGE_KEY": {"type": "string"}, "LOCALSTORAGE_KEY": {"type": "string"}, "VIDEO_PLAYER_CLASSNAME": {"type": "string"}, "HIDE_VIDEO_BTN_CLASSNAME": {"type": "string"}, "HIDE_VIDEO_BTN_TITLE": {"type": "string"}, "HIDE_VIDEO_BTN_TEXT": {"type": "string"}, "MUTE_CHECKBOX_CLASSNAME": {"type": "string"}, "MUTE_CHECKBOX_TITLE": {"type": "string"}, "ICONS_CONTAINER_ID": {"type": "string"}, "ICON_CLOSE_ID": {"type": "string"}, "ICON_CLOSE_USE_CLASSNAME": {"type": "string"}, "ICONS_URL": {"type": "string"}}, "required": ["SETTINGS_LOCALSTORAGE_KEY", "LOCALSTORAGE_KEY", "VIDEO_PLAYER_CLASSNAME", "HIDE_VIDEO_BTN_CLASSNAME", "HIDE_VIDEO_BTN_TITLE", "HIDE_VIDEO_BTN_TEXT", "MUTE_CHECKBOX_CLASSNAME", "MUTE_CHECKBOX_TITLE", "ICONS_CONTAINER_ID", "ICON_CLOSE_ID", "ICON_CLOSE_USE_CLASSNAME", "ICONS_URL"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "scripts": {"type": "object", "properties": {"develop": {"type": "string"}, "start": {"type": "string"}, "build": {"type": "string"}, "serve": {"type": "string"}}, "required": ["develop", "start", "build", "serve"]}, "dependencies": {"type": "object", "properties": {"@fortawesome/pro-duotone-svg-icons": {"type": "string"}, "@fortawesome/pro-light-svg-icons": {"type": "string"}, "@fortawesome/pro-regular-svg-icons": {"type": "string"}, "@fortawesome/pro-solid-svg-icons": {"type": "string"}, "@fortawesome/react-fontawesome": {"type": "string"}, "@martinreiche/gatsby-firestore": {"type": "string"}, "bulma": {"type": "string"}, "core-js": {"type": "string"}, "firebase": {"type": "string"}, "gatsby": {"type": "string"}, "gatsby-plugin-sass": {"type": "string"}, "moment": {"type": "string"}, "node-gyp": {"type": "string"}, "node-sass": {"type": "string"}, "prop-types": {"type": "string"}, "react": {"type": "string"}, "react-avatar": {"type": "string"}, "react-dom": {"type": "string"}, "react-moment": {"type": "string"}, "recompose": {"type": "string"}}, "required": ["@fortawesome/pro-duotone-svg-icons", "@fortawesome/pro-light-svg-icons", "@fortawesome/pro-regular-svg-icons", "@fortawesome/pro-solid-svg-icons", "@fortawesome/react-fontawesome", "@martinreiche/gatsby-firestore", "bulma", "core-js", "firebase", "gatsby", "gatsby-plugin-sass", "moment", "node-gyp", "node-sass", "prop-types", "react", "react-avatar", "react-dom", "react-moment", "recompose"]}, "devDependencies": {"type": "object", "properties": {"@fortawesome/fontawesome-pro": {"type": "string"}, "@fortawesome/fontawesome-svg-core": {"type": "string"}}, "required": ["@fortawesome/fontawesome-pro", "@fortawesome/fontawesome-svg-core"]}}, "required": ["name", "description", "scripts", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "react-gastby-firebase-authentication", "description" : "Gatsby hello world starter", "scripts" : {"develop" : "gatsby develop", "start" : "npm run develop", "build" : "gatsby build", "serve" : "gatsby serve"}, "dependencies" : {"@fortawesome/pro-duotone-svg-icons" : "^5.11.2", "@fortawesome/pro-light-svg-icons" : "^5.11.2", "@fortawesome/pro-regular-svg-icons" : "^5.11.2", "@fortawesome/pro-solid-svg-icons" : "^5.11.2", "@fortawesome/react-fontawesome" : "^0.1.7", "@martinreiche/gatsby-firestore" : "^1.0.1", "bulma" : "^0.8.0", "core-js" : "^2.6.5", "firebase" : "^6.0.2", "gatsby" : "^2.4.3", "gatsby-plugin-sass" : "^2.1.24", "moment" : "^2.24.0", "node-gyp" : "^6.0.1", "node-sass" : "^4.13.0", "prop-types" : "^15.7.2", "react" : "^16.12.0", "react-avatar" : "^3.7.0", "react-dom" : "^16.12.0", "react-moment" : "^0.9.6", "recompose" : "^0.30.0"}, "devDependencies" : {"@fortawesome/fontawesome-pro" : "^5.11.2", "@fortawesome/fontawesome-svg-core" : "^1.2.25"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "scripts": {"type": "object", "properties": {"develop": {"type": "string"}, "start": {"type": "string"}, "build": {"type": "string"}, "serve": {"type": "string"}}, "required": ["develop", "start", "build", "serve"]}, "dependencies": {"type": "object", "properties": {"@fortawesome/pro-duotone-svg-icons": {"type": "string"}, "@fortawesome/pro-light-svg-icons": {"type": "string"}, "@fortawesome/pro-regular-svg-icons": {"type": "string"}, "@fortawesome/pro-solid-svg-icons": {"type": "string"}, "@fortawesome/react-fontawesome": {"type": "string"}, "@martinreiche/gatsby-firestore": {"type": "string"}, "bulma": {"type": "string"}, "core-js": {"type": "string"}, "firebase": {"type": "string"}, "gatsby": {"type": "string"}, "gatsby-plugin-sass": {"type": "string"}, "moment": {"type": "string"}, "node-gyp": {"type": "string"}, "node-sass": {"type": "string"}, "prop-types": {"type": "string"}, "react": {"type": "string"}, "react-avatar": {"type": "string"}, "react-dom": {"type": "string"}, "react-moment": {"type": "string"}, "recompose": {"type": "string"}}, "required": ["@fortawesome/pro-duotone-svg-icons", "@fortawesome/pro-light-svg-icons", "@fortawesome/pro-regular-svg-icons", "@fortawesome/pro-solid-svg-icons", "@fortawesome/react-fontawesome", "@martinreiche/gatsby-firestore", "bulma", "core-js", "firebase", "gatsby", "gatsby-plugin-sass", "moment", "node-gyp", "node-sass", "prop-types", "react", "react-avatar", "react-dom", "react-moment", "recompose"]}, "devDependencies": {"type": "object", "properties": {"@fortawesome/fontawesome-pro": {"type": "string"}, "@fortawesome/fontawesome-svg-core": {"type": "string"}}, "required": ["@fortawesome/fontawesome-pro", "@fortawesome/fontawesome-svg-core"]}}, "required": ["name", "description", "scripts", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"success": {"type": "boolean"}, "code": {"type": "string"}, "data": {"type": "object", "properties": {"states": {"type": "null"}, "districts": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "registeredUsers": {"type": "integer"}}, "required": ["name", "registeredUsers"]}}, "pincodes": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "registeredUsers": {"type": "integer"}}, "required": ["name", "registeredUsers"]}}}, "required": ["states", "districts", "pincodes"]}, "responseTimestamp": {"type": "integer"}}, "required": ["success", "code", "data", "responseTimestamp"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"success" : true, "code" : "SUCCESS", "data" : {"states" : null, "districts" : [{"name" : "gurugram", "registeredUsers" : 2589324}, {"name" : "faridabad", "registeredUsers" : 1459758}, {"name" : "hisar", "registeredUsers" : 606513}, {"name" : "sonipat", "registeredUsers" : 549613}, {"name" : "rewari", "registeredUsers" : 522734}, {"name" : "panipat", "registeredUsers" : 489226}, {"name" : "karnal", "registeredUsers" : 464990}, {"name" : "jhajjar", "registeredUsers" : 390612}, {"name" : "palwal", "registeredUsers" : 387557}, {"name" : "rohtak", "registeredUsers" : 380370}], "pincodes" : [{"name" : "122001", "registeredUsers" : 412737}, {"name" : "121004", "registeredUsers" : 352312}, {"name" : "121003", "registeredUsers" : 284042}, {"name" : "121001", "registeredUsers" : 272333}, {"name" : "122006", "registeredUsers" : 226097}, {"name" : "122002", "registeredUsers" : 215608}, {"name" : "121102", "registeredUsers" : 210637}, {"name" : "124001", "registeredUsers" : 199561}, {"name" : "123401", "registeredUsers" : 198439}, {"name" : "122004", "registeredUsers" : 186579}]}, "responseTimestamp" : 1634575137436} | json_instruct | {"type": "object", "properties": {"success": {"type": "boolean"}, "code": {"type": "string"}, "data": {"type": "object", "properties": {"states": {"type": "null"}, "districts": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "registeredUsers": {"type": "integer"}}, "required": ["name", "registeredUsers"]}}, "pincodes": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "registeredUsers": {"type": "integer"}}, "required": ["name", "registeredUsers"]}}}, "required": ["states", "districts", "pincodes"]}, "responseTimestamp": {"type": "integer"}}, "required": ["success", "code", "data", "responseTimestamp"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"localities": {"type": "array", "items": {"type": "string"}}, "state": {"type": "string"}, "postal_code": {"type": "string"}, "locality": {"type": "string"}, "lat": {"type": "number"}, "region": {"type": "object", "properties": {"fips": {"type": "string"}, "abbr": {"type": "string"}, "name": {"type": "string"}}, "required": ["fips", "abbr", "name"]}, "city": {"type": "string"}, "type": {"type": "string"}, "lng": {"type": "number"}, "counties": {"type": "array", "items": {"type": "object", "properties": {"fips": {"type": "string"}, "name": {"type": "string"}}, "required": ["fips", "name"]}}}, "required": ["localities", "state", "postal_code", "locality", "lat", "region", "city", "type", "lng", "counties"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"localities" : ["Sunken Meadow, NY", "Fort Salonga, NY", "Eatons Neck, NY", "Asharoken, NY", "Crab Meadow, NY", "Northport, NY"], "state" : "NY", "postal_code" : "11768", "locality" : "Northport, NY", "lat" : 40.923631, "region" : {"fips" : "36", "abbr" : "NY", "name" : "New York"}, "city" : "Northport", "type" : "STANDARD", "lng" : -73.339309, "counties" : [{"fips" : "103", "name" : "Suffolk County"}]} | json_instruct | {"type": "object", "properties": {"localities": {"type": "array", "items": {"type": "string"}}, "state": {"type": "string"}, "postal_code": {"type": "string"}, "locality": {"type": "string"}, "lat": {"type": "number"}, "region": {"type": "object", "properties": {"fips": {"type": "string"}, "abbr": {"type": "string"}, "name": {"type": "string"}}, "required": ["fips", "abbr", "name"]}, "city": {"type": "string"}, "type": {"type": "string"}, "lng": {"type": "number"}, "counties": {"type": "array", "items": {"type": "object", "properties": {"fips": {"type": "string"}, "name": {"type": "string"}}, "required": ["fips", "name"]}}}, "required": ["localities", "state", "postal_code", "locality", "lat", "region", "city", "type", "lng", "counties"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"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" : ["In a large bowl, combine strawberries and sugar. Let stand 10 minutes. Combine lemon juice and pectin, then stir into strawberry mixture; continue stirring for 3 minutes. Pour into clean plastic containers to within 1 inch of the top. Cover, and allow to set for 24 hours at room temperature, then freeze."], "ingredients" : ["1 3/4 cups chopped strawberries", "4 cups sugar", "2 tablespoons fresh lemon juice", "1 (6 fluid ounce) container liquid pectin"], "language" : "en-US", "source" : "allrecipes.com", "tags" : [], "title" : "Strawberry Preserves II", "url" : "http://allrecipes.com/recipe/53136/strawberry-preserves-ii/"} | 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": {"oid": {"type": "string"}, "hafta": {"type": "integer"}, "buyukIkramiyeKazananIl": {"type": "string"}, "cekilisTarihi": {"type": "string"}, "cekilisTuru": {"type": "string"}, "rakamlar": {"type": "string"}, "rakamlarNumaraSirasi": {"type": "string"}, "devretti": {"type": "boolean"}, "devirSayisi": {"type": "integer"}, "bilenKisiler": {"type": "array", "items": {"type": "object", "properties": {"oid": {"type": "string"}, "kisiBasinaDusenIkramiye": {"type": "number"}, "kisiSayisi": {"type": "integer"}, "tur": {"type": "string"}}, "required": ["oid", "kisiBasinaDusenIkramiye", "kisiSayisi", "tur"]}}, "buyukIkrKazananIlIlceler": {"type": "array", "items": {"type": "object", "properties": {"il": {"type": "string"}, "ilView": {"type": "string"}, "ilce": {"type": "string"}, "ilceView": {"type": "string"}}, "required": ["il", "ilView", "ilce", "ilceView"]}}, "kibrisHasilati": {"type": "integer"}, "devirTutari": {"type": "number"}, "kolonSayisi": {"type": "integer"}, "kdv": {"type": "number"}, "toplamHasilat": {"type": "integer"}, "hasilat": {"type": "number"}, "sov": {"type": "number"}, "ikramiyeEH": {"type": "number"}, "buyukIkramiye": {"type": "number"}, "haftayaDevredenTutar": {"type": "number"}}, "required": ["oid", "hafta", "buyukIkramiyeKazananIl", "cekilisTarihi", "cekilisTuru", "rakamlar", "rakamlarNumaraSirasi", "devretti", "devirSayisi", "bilenKisiler", "buyukIkrKazananIlIlceler", "kibrisHasilati", "devirTutari", "kolonSayisi", "kdv", "toplamHasilat", "hasilat", "sov", "ikramiyeEH", "buyukIkramiye", "haftayaDevredenTutar"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"oid" : "64wf2ahyg3ta0k00", "hafta" : 626, "buyukIkramiyeKazananIl" : "", "cekilisTarihi" : "04/08/2014", "cekilisTuru" : "ON_NUMARA", "rakamlar" : "74#17#50#49#62#18#51#21#63#58#53#24#23#02#31#67#15#38#22#76#44#47", "rakamlarNumaraSirasi" : "02 - 15 - 17 - 18 - 21 - 22 - 23 - 24 - 31 - 38 - 44 - 47 - 49 - 50 - 51 - 53 - 58 - 62 - 63 - 67 - 74 - 76", "devretti" : false, "devirSayisi" : 0, "bilenKisiler" : [{"oid" : "644pw1hyg3ta0g05", "kisiBasinaDusenIkramiye" : 3.05, "kisiSayisi" : 144479, "tur" : "$HIC"}, {"oid" : "644pw1hyg3ta0g04", "kisiBasinaDusenIkramiye" : 4.25, "kisiSayisi" : 81396, "tur" : "$6_BILEN"}, {"oid" : "644pw1hyg3ta0g03", "kisiBasinaDusenIkramiye" : 24.85, "kisiSayisi" : 13194, "tur" : "$7_BILEN"}, {"oid" : "644pw1hyg3ta0g02", "kisiBasinaDusenIkramiye" : 140.55, "kisiSayisi" : 1222, "tur" : "$8_BILEN"}, {"oid" : "644pw1hyg3ta0g01", "kisiBasinaDusenIkramiye" : 3119, "kisiSayisi" : 55, "tur" : "$9_BILEN"}, {"oid" : "644pw1hyg3ta0g00", "kisiBasinaDusenIkramiye" : 107667.1, "kisiSayisi" : 4, "tur" : "$10_BILEN"}], "buyukIkrKazananIlIlceler" : [{"il" : "06", "ilView" : "ANKARA", "ilce" : "00627", "ilceView" : "ET\u0130MESGUT"}, {"il" : "39", "ilView" : "KIRKLAREL\u0130", "ilce" : "03900", "ilceView" : "MERKEZ"}, {"il" : "59", "ilView" : "TEK\u0130RDA\u011e", "ilce" : "05922", "ilceView" : "S\u00dcLEYMANPA\u015eA"}, {"il" : "61", "ilView" : "TRABZON", "ilce" : "06120", "ilceView" : "ORTAH\u0130SAR"}], "kibrisHasilati" : 14611, "devirTutari" : 173415.23, "kolonSayisi" : 4494521, "kdv" : 683376.1, "toplamHasilat" : 4494521, "hasilat" : 3811144.9, "sov" : 381114.49, "ikramiyeEH" : 3430030.41, "buyukIkramiye" : 257252.28, "haftayaDevredenTutar" : 0.08} | json_instruct | {"type": "object", "properties": {"oid": {"type": "string"}, "hafta": {"type": "integer"}, "buyukIkramiyeKazananIl": {"type": "string"}, "cekilisTarihi": {"type": "string"}, "cekilisTuru": {"type": "string"}, "rakamlar": {"type": "string"}, "rakamlarNumaraSirasi": {"type": "string"}, "devretti": {"type": "boolean"}, "devirSayisi": {"type": "integer"}, "bilenKisiler": {"type": "array", "items": {"type": "object", "properties": {"oid": {"type": "string"}, "kisiBasinaDusenIkramiye": {"type": "number"}, "kisiSayisi": {"type": "integer"}, "tur": {"type": "string"}}, "required": ["oid", "kisiBasinaDusenIkramiye", "kisiSayisi", "tur"]}}, "buyukIkrKazananIlIlceler": {"type": "array", "items": {"type": "object", "properties": {"il": {"type": "string"}, "ilView": {"type": "string"}, "ilce": {"type": "string"}, "ilceView": {"type": "string"}}, "required": ["il", "ilView", "ilce", "ilceView"]}}, "kibrisHasilati": {"type": "integer"}, "devirTutari": {"type": "number"}, "kolonSayisi": {"type": "integer"}, "kdv": {"type": "number"}, "toplamHasilat": {"type": "integer"}, "hasilat": {"type": "number"}, "sov": {"type": "number"}, "ikramiyeEH": {"type": "number"}, "buyukIkramiye": {"type": "number"}, "haftayaDevredenTutar": {"type": "number"}}, "required": ["oid", "hafta", "buyukIkramiyeKazananIl", "cekilisTarihi", "cekilisTuru", "rakamlar", "rakamlarNumaraSirasi", "devretti", "devirSayisi", "bilenKisiler", "buyukIkrKazananIlIlceler", "kibrisHasilati", "devirTutari", "kolonSayisi", "kdv", "toplamHasilat", "hasilat", "sov", "ikramiyeEH", "buyukIkramiye", "haftayaDevredenTutar"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"symbol": {"type": "string"}, "address": {"type": "string"}, "overview": {"type": "object", "properties": {"en": {"type": "string"}}, "required": ["en"]}, "email": {"type": "string"}, "website": {"type": "string"}, "state": {"type": "string"}, "links": {"type": "object", "properties": {"blog": {"type": "string"}, "twitter": {"type": "string"}, "telegram": {"type": "string"}, "github": {"type": "string"}}, "required": ["blog", "twitter", "telegram", "github"]}}, "required": ["symbol", "address", "overview", "email", "website", "state", "links"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"symbol" : "OPQ", "address" : "0x77599D2C6DB170224243e255e6669280F11F1473", "overview" : {"en" : ""}, "email" : "jason@opacity.io", "website" : "https://www.opacity.io/", "state" : "NORMAL", "links" : {"blog" : "https://medium.com/opacity-storage", "twitter" : "https://twitter.com/Opacity_Storage", "telegram" : "https://t.me/opacitystorage", "github" : "https://github.com/opacity"}} | json_instruct | {"type": "object", "properties": {"symbol": {"type": "string"}, "address": {"type": "string"}, "overview": {"type": "object", "properties": {"en": {"type": "string"}}, "required": ["en"]}, "email": {"type": "string"}, "website": {"type": "string"}, "state": {"type": "string"}, "links": {"type": "object", "properties": {"blog": {"type": "string"}, "twitter": {"type": "string"}, "telegram": {"type": "string"}, "github": {"type": "string"}}, "required": ["blog", "twitter", "telegram", "github"]}}, "required": ["symbol", "address", "overview", "email", "website", "state", "links"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "Boar Carcass"} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"pages": {"type": "array", "items": {"type": "string"}}, "window": {"type": "object", "properties": {"backgroundTextStyle": {"type": "string"}, "navigationBarBackgroundColor": {"type": "string"}, "navigationBarTitleText": {"type": "string"}, "navigationBarTextStyle": {"type": "string"}, "enablePullDownRefresh": {"type": "boolean"}, "backgroundColor": {"type": "string"}}, "required": ["backgroundTextStyle", "navigationBarBackgroundColor", "navigationBarTitleText", "navigationBarTextStyle", "enablePullDownRefresh", "backgroundColor"]}, "tabBar": {"type": "object", "properties": {"selectedColor": {"type": "string"}, "list": {"type": "array", "items": {"type": "object", "properties": {"pagePath": {"type": "string"}, "text": {"type": "string"}, "iconPath": {"type": "string"}, "selectedIconPath": {"type": "string"}}, "required": ["pagePath", "text", "iconPath", "selectedIconPath"]}}}, "required": ["selectedColor", "list"]}, "style": {"type": "string"}, "sitemapLocation": {"type": "string"}}, "required": ["pages", "window", "tabBar", "style", "sitemapLocation"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"pages" : ["pages/cate/cate", "pages/index/index", "pages/cart/cart", "pages/user/user", "pages/goods_list/goods_list"], "window" : {"backgroundTextStyle" : "light", "navigationBarBackgroundColor" : "#c00000", "navigationBarTitleText" : "\u9ed1\u9a6c\u4f18\u8d2d", "navigationBarTextStyle" : "white", "enablePullDownRefresh" : true, "backgroundColor" : "#000"}, "tabBar" : {"selectedColor" : "#C00000", "list" : [{"pagePath" : "pages/index/index", "text" : "\u9996\u9875", "iconPath" : "static/tab_icons/home.png", "selectedIconPath" : "static/tab_icons/home-active.png"}, {"pagePath" : "pages/cate/cate", "text" : "\u5206\u7c7b", "iconPath" : "static/tab_icons/cart.png", "selectedIconPath" : "static/tab_icons/cart-active.png"}, {"pagePath" : "pages/cart/cart", "text" : "\u8d2d\u7269\u8f66", "iconPath" : "static/tab_icons/cart.png", "selectedIconPath" : "static/tab_icons/cart-active.png"}, {"pagePath" : "pages/user/user", "text" : "\u6211\u7684", "iconPath" : "static/tab_icons/my.png", "selectedIconPath" : "static/tab_icons/my-active.png"}]}, "style" : "v2", "sitemapLocation" : "sitemap.json"} | json_instruct | {"type": "object", "properties": {"pages": {"type": "array", "items": {"type": "string"}}, "window": {"type": "object", "properties": {"backgroundTextStyle": {"type": "string"}, "navigationBarBackgroundColor": {"type": "string"}, "navigationBarTitleText": {"type": "string"}, "navigationBarTextStyle": {"type": "string"}, "enablePullDownRefresh": {"type": "boolean"}, "backgroundColor": {"type": "string"}}, "required": ["backgroundTextStyle", "navigationBarBackgroundColor", "navigationBarTitleText", "navigationBarTextStyle", "enablePullDownRefresh", "backgroundColor"]}, "tabBar": {"type": "object", "properties": {"selectedColor": {"type": "string"}, "list": {"type": "array", "items": {"type": "object", "properties": {"pagePath": {"type": "string"}, "text": {"type": "string"}, "iconPath": {"type": "string"}, "selectedIconPath": {"type": "string"}}, "required": ["pagePath", "text", "iconPath", "selectedIconPath"]}}}, "required": ["selectedColor", "list"]}, "style": {"type": "string"}, "sitemapLocation": {"type": "string"}}, "required": ["pages", "window", "tabBar", "style", "sitemapLocation"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "name": {"type": "string"}, "parent_id": {"type": "null"}, "workspaceRoot": {"type": "string"}, "workspacePath": {"type": "string"}, "id": {"type": "string"}}, "required": ["type", "name", "parent_id", "workspaceRoot", "workspacePath", "id"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"type" : "Directory", "name" : "/var/www/html/libms/public", "parent_id" : null, "workspaceRoot" : "/var/www/html/libms", "workspacePath" : "public", "id" : "jStnF6My0EkChKQr"}, {"type" : "Directory", "name" : "/var/www/html/libms/src/Controller", "parent_id" : null, "workspaceRoot" : "/var/www/html/libms", "workspacePath" : "src/Controller", "id" : "QpJsw0zkPvBtFXhl"}, {"type" : "Directory", "name" : "/var/www/html/libms/templates", "parent_id" : null, "workspaceRoot" : "/var/www/html/libms", "workspacePath" : "templates", "id" : "GawWVNeZYOg279I6"}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "name": {"type": "string"}, "parent_id": {"type": "null"}, "workspaceRoot": {"type": "string"}, "workspacePath": {"type": "string"}, "id": {"type": "string"}}, "required": ["type", "name", "parent_id", "workspaceRoot", "workspacePath", "id"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following 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": "number"}}, "type": {"type": "string"}}, "required": ["coordinates", "type"]}}, "required": ["id", "type", "properties", "bbox", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : 404344451, "type" : "Feature", "properties" : {"src:alt_label" : "quattroshapes_pg", "src:geom" : "quattroshapes_pg", "wof:geomhash" : "9d34cdcf8655aa720c78273f637f51a9", "wof:id" : 404344451, "wof:repo" : "whosonfirst-data-admin-es"}, "bbox" : [-3.62017, 39.94682, -3.62017, 39.94682], "geometry" : {"coordinates" : [-3.62017, 39.94682], "type" : "Point"}} | json_instruct | {"type": "object", "properties": {"id": {"type": "integer"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"src:alt_label": {"type": "string"}, "src:geom": {"type": "string"}, "wof:geomhash": {"type": "string"}, "wof:id": {"type": "integer"}, "wof:repo": {"type": "string"}}, "required": ["src:alt_label", "src:geom", "wof:geomhash", "wof:id", "wof:repo"]}, "bbox": {"type": "array", "items": {"type": "number"}}, "geometry": {"type": "object", "properties": {"coordinates": {"type": "array", "items": {"type": "number"}}, "type": {"type": "string"}}, "required": ["coordinates", "type"]}}, "required": ["id", "type", "properties", "bbox", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "sites": {"type": "array", "items": {"type": "object", "properties": {"site": {"type": "string"}, "id": {"type": "string"}, "sort": {"type": "integer"}}, "required": ["site", "id", "sort"]}}, "eps": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "sort": {"type": "integer"}, "name": {"type": "string"}, "sites": {"type": "array", "items": {"type": "object", "properties": {"site": {"type": "string"}, "sort": {"type": "integer"}, "title": {"type": "string"}, "url": {"type": "string"}, "time": {"type": "string"}}, "required": ["site", "sort", "title", "url", "time"]}}}, "required": ["id", "sort", "name", "sites"]}}}, "required": ["id", "name", "sites", "eps"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "11206", "name" : "\u30ab\u30c3\u30d1\u306e\u98fc\u3044\u65b9", "sites" : [{"site" : "bilibili", "id" : "4994", "sort" : 6}], "eps" : [{"id" : 66661, "sort" : 1, "name" : "", "sites" : [{"site" : "bilibili", "sort" : 1, "title" : "", "url" : "https://www.bilibili.com/bangumi/play/ep90448", "time" : "2016-06-21T02:45:33.000Z"}]}, {"id" : 66662, "sort" : 2, "name" : "", "sites" : [{"site" : "bilibili", "sort" : 2, "title" : "", "url" : "https://www.bilibili.com/bangumi/play/ep90449", "time" : "2016-06-21T02:45:33.000Z"}]}, {"id" : 66663, "sort" : 3, "name" : "", "sites" : [{"site" : "bilibili", "sort" : 3, "title" : "", "url" : "https://www.bilibili.com/bangumi/play/ep90450", "time" : "2016-06-21T02:45:33.000Z"}]}, {"id" : 66664, "sort" : 4, "name" : "", "sites" : [{"site" : "bilibili", "sort" : 4, "title" : "", "url" : "https://www.bilibili.com/bangumi/play/ep90451", "time" : "2016-06-21T02:45:33.000Z"}]}, {"id" : 66665, "sort" : 5, "name" : "", "sites" : [{"site" : "bilibili", "sort" : 5, "title" : "", "url" : "https://www.bilibili.com/bangumi/play/ep90452", "time" : "2016-06-21T02:45:33.000Z"}]}, {"id" : 66666, "sort" : 6, "name" : "", "sites" : [{"site" : "bilibili", "sort" : 6, "title" : "", "url" : "https://www.bilibili.com/bangumi/play/ep90453", "time" : "2016-06-21T02:45:33.000Z"}]}]} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "sites": {"type": "array", "items": {"type": "object", "properties": {"site": {"type": "string"}, "id": {"type": "string"}, "sort": {"type": "integer"}}, "required": ["site", "id", "sort"]}}, "eps": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "sort": {"type": "integer"}, "name": {"type": "string"}, "sites": {"type": "array", "items": {"type": "object", "properties": {"site": {"type": "string"}, "sort": {"type": "integer"}, "title": {"type": "string"}, "url": {"type": "string"}, "time": {"type": "string"}}, "required": ["site", "sort", "title", "url", "time"]}}}, "required": ["id", "sort", "name", "sites"]}}}, "required": ["id", "name", "sites", "eps"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"name": {"type": "string"}, "displayName": {"type": "string"}}, "required": ["name", "displayName"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "mCloudMobile", "displayName" : "mCloudMobile"} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "displayName": {"type": "string"}}, "required": ["name", "displayName"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"token": {"type": "string"}, "team_id": {"type": "string"}, "team_domain": {"type": "string"}, "channel_id": {"type": "string"}, "channel_name": {"type": "string"}, "timestamp": {"type": "string"}, "user_id": {"type": "string"}, "user_name": {"type": "string"}, "text": {"type": "string"}, "trigger_word": {"type": "string"}}, "required": ["token", "team_id", "team_domain", "channel_id", "channel_name", "timestamp", "user_id", "user_name", "text", "trigger_word"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"token" : "CXV5n3r4tChbQ7zl6e8uVkig", "team_id" : "T0001", "team_domain" : "example", "channel_id" : "C2147483705", "channel_name" : "test", "timestamp" : "1355517523.000005", "user_id" : "U2147483697", "user_name" : "Steve", "text" : "lgtm", "trigger_word" : "lgtm"} | json_instruct | {"type": "object", "properties": {"token": {"type": "string"}, "team_id": {"type": "string"}, "team_domain": {"type": "string"}, "channel_id": {"type": "string"}, "channel_name": {"type": "string"}, "timestamp": {"type": "string"}, "user_id": {"type": "string"}, "user_name": {"type": "string"}, "text": {"type": "string"}, "trigger_word": {"type": "string"}}, "required": ["token", "team_id", "team_domain", "channel_id", "channel_name", "timestamp", "user_id", "user_name", "text", "trigger_word"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"variants": {"type": "array", "items": {"type": "string"}}, "definitionVersion": {"type": "string"}, "build": {"type": "object", "properties": {"latest": {"type": "boolean"}, "rootDistro": {"type": "string"}, "tags": {"type": "array", "items": {"type": "string"}}}, "required": ["latest", "rootDistro", "tags"]}, "dependencies": {"type": "object", "properties": {"image": {"type": "string"}, "imageLink": {"type": "string"}, "debian": {"type": "array", "items": {"type": "string"}}, "git": {"type": "object", "properties": {"Oh My Zsh!": {"type": "string"}, "nvm": {"type": "string"}}, "required": ["Oh My Zsh!", "nvm"]}}, "required": ["image", "imageLink", "debian", "git"]}}, "required": ["variants", "definitionVersion", "build", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"variants" : ["5.0", "3.1", "2.1"], "definitionVersion" : "0.201.3", "build" : {"latest" : true, "rootDistro" : "debian", "tags" : ["dotnetcore:${VERSION}-${VARIANT}", "dotnet:${VERSION}-${VARIANT}"]}, "dependencies" : {"image" : "mcr.microsoft.com/dotnet/sdk:${VARIANT}-focal", "imageLink" : "https://hub.docker.com/_/microsoft-dotnet-sdk", "debian" : ["yarn"], "git" : {"Oh My Zsh!" : "/root/.oh-my-zsh", "nvm" : "/usr/local/share/nvm"}}} | json_instruct | {"type": "object", "properties": {"variants": {"type": "array", "items": {"type": "string"}}, "definitionVersion": {"type": "string"}, "build": {"type": "object", "properties": {"latest": {"type": "boolean"}, "rootDistro": {"type": "string"}, "tags": {"type": "array", "items": {"type": "string"}}}, "required": ["latest", "rootDistro", "tags"]}, "dependencies": {"type": "object", "properties": {"image": {"type": "string"}, "imageLink": {"type": "string"}, "debian": {"type": "array", "items": {"type": "string"}}, "git": {"type": "object", "properties": {"Oh My Zsh!": {"type": "string"}, "nvm": {"type": "string"}}, "required": ["Oh My Zsh!", "nvm"]}}, "required": ["image", "imageLink", "debian", "git"]}}, "required": ["variants", "definitionVersion", "build", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"CustID": {"type": "integer"}, "State": {"type": "string"}, "LineItems": {"type": "array", "items": {"type": "object", "properties": {"ProductID": {"type": "integer"}, "Quantity": {"type": "integer"}}, "required": ["ProductID", "Quantity"]}}, "InvoiceDate": {"type": "string"}}, "required": ["CustID", "State", "LineItems", "InvoiceDate"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"CustID" : 1, "State" : "Nevada", "LineItems" : [{"ProductID" : 6, "Quantity" : 18}], "InvoiceDate" : "12/5/2015"} | json_instruct | {"type": "object", "properties": {"CustID": {"type": "integer"}, "State": {"type": "string"}, "LineItems": {"type": "array", "items": {"type": "object", "properties": {"ProductID": {"type": "integer"}, "Quantity": {"type": "integer"}}, "required": ["ProductID", "Quantity"]}}, "InvoiceDate": {"type": "string"}}, "required": ["CustID", "State", "LineItems", "InvoiceDate"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "keywords": {"type": "array", "items": {}}, "author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"axios": {"type": "string"}, "bcrypt": {"type": "string"}, "bootstrap": {"type": "string"}, "compress": {"type": "string"}, "config": {"type": "string"}, "cors": {"type": "string"}, "date-fns": {"type": "string"}, "del": {"type": "string"}, "express": {"type": "string"}, "express-async-errors": {"type": "string"}, "express-session": {"type": "string"}, "font-awesome": {"type": "string"}, "helmet": {"type": "string"}, "joi": {"type": "string"}, "jsonwebtoken": {"type": "string"}, "lodash": {"type": "string"}, "mongoose": {"type": "string"}, "mongoose-auto-increment": {"type": "string"}, "node-cron": {"type": "string"}, "react-router-dom": {"type": "string"}, "uuid": {"type": "string"}, "winston": {"type": "string"}, "xml2json": {"type": "string"}}, "required": ["axios", "bcrypt", "bootstrap", "compress", "config", "cors", "date-fns", "del", "express", "express-async-errors", "express-session", "font-awesome", "helmet", "joi", "jsonwebtoken", "lodash", "mongoose", "mongoose-auto-increment", "node-cron", "react-router-dom", "uuid", "winston", "xml2json"]}, "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" : "dipalpr-server", "version" : "1.0.0", "description" : "DIPAlpr server", "main" : "index.js", "scripts" : {"test" : "echo \"Error: no test specified\" && exit 1"}, "keywords" : [], "author" : "yewint", "license" : "ISC", "dependencies" : {"axios" : "^0.20.0", "bcrypt" : "^5.0.0", "bootstrap" : "^4.5.3", "compress" : "^0.99.0", "config" : "^3.3.2", "cors" : "^2.8.5", "date-fns" : "^2.16.1", "del" : "^6.0.0", "express" : "^4.17.1", "express-async-errors" : "^3.1.1", "express-session" : "^1.17.1", "font-awesome" : "^4.7.0", "helmet" : "^4.1.1", "joi" : "^17.2.1", "jsonwebtoken" : "^8.5.1", "lodash" : "^4.17.20", "mongoose" : "^5.10.5", "mongoose-auto-increment" : "^5.0.1", "node-cron" : "^2.0.3", "react-router-dom" : "^5.2.0", "uuid" : "^8.3.1", "winston" : "^3.3.3", "xml2json" : "^0.12.0"}, "devDependencies" : {"nodemon" : "^2.0.6"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "keywords": {"type": "array", "items": {}}, "author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"axios": {"type": "string"}, "bcrypt": {"type": "string"}, "bootstrap": {"type": "string"}, "compress": {"type": "string"}, "config": {"type": "string"}, "cors": {"type": "string"}, "date-fns": {"type": "string"}, "del": {"type": "string"}, "express": {"type": "string"}, "express-async-errors": {"type": "string"}, "express-session": {"type": "string"}, "font-awesome": {"type": "string"}, "helmet": {"type": "string"}, "joi": {"type": "string"}, "jsonwebtoken": {"type": "string"}, "lodash": {"type": "string"}, "mongoose": {"type": "string"}, "mongoose-auto-increment": {"type": "string"}, "node-cron": {"type": "string"}, "react-router-dom": {"type": "string"}, "uuid": {"type": "string"}, "winston": {"type": "string"}, "xml2json": {"type": "string"}}, "required": ["axios", "bcrypt", "bootstrap", "compress", "config", "cors", "date-fns", "del", "express", "express-async-errors", "express-session", "font-awesome", "helmet", "joi", "jsonwebtoken", "lodash", "mongoose", "mongoose-auto-increment", "node-cron", "react-router-dom", "uuid", "winston", "xml2json"]}, "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": "object", "properties": {"variants": {"type": "object", "properties": {"": {"type": "object", "properties": {"model": {"type": "string"}}, "required": ["model"]}}, "required": [""]}}, "required": ["variants"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"variants" : {"" : {"model" : "fasterthanc:block/red_scatter_plate_hull"}}} | json_instruct | {"type": "object", "properties": {"variants": {"type": "object", "properties": {"": {"type": "object", "properties": {"model": {"type": "string"}}, "required": ["model"]}}, "required": [""]}}, "required": ["variants"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "repository": {"type": "string"}, "logo": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "description", "repository", "logo", "keywords"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "ManyWho Swagger Service", "description" : "A plugin that enables integration of your database into ManyWho", "repository" : "https://github.com/manywho/service-sql", "logo" : "https://s3.amazonaws.com/manywho-service-assets/icons/service-sql.png", "keywords" : ["manywho", "swagger", "plugin", "workflow"]} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "repository": {"type": "string"}, "logo": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "description", "repository", "logo", "keywords"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"geometry": {"type": "object", "properties": {"coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}, "type": {"type": "string"}}, "required": ["coordinates", "type"]}, "properties": {"type": "object", "properties": {"FIPS": {"type": "string"}, "CNTY_FIPS": {"type": "string"}, "STATE_FIPS": {"type": "string"}, "STATE_NAME": {"type": "string"}, "NAME": {"type": "string"}}, "required": ["FIPS", "CNTY_FIPS", "STATE_FIPS", "STATE_NAME", "NAME"]}, "type": {"type": "string"}}, "required": ["geometry", "properties", "type"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"geometry" : {"coordinates" : [[[-87.96522136881237, 39.48481487910046], [-87.96864660009572, 39.68887363243796], [-87.9711566094144, 39.79590621733324], [-87.94176714176255, 39.798263767363856], [-87.94349910621297, 39.88443787021326], [-87.62267943561079, 39.88866621951996], [-87.62182508339244, 39.87550545510573], [-87.56728086929232, 39.87558585497493], [-87.5801366633264, 39.88802555896427], [-87.53579328623935, 39.887339207245816], [-87.5355977259905, 39.60937613779892], [-87.53858961648397, 39.47748284618318], [-87.68757290529696, 39.47882524425704], [-87.68912169066392, 39.48836946507028], [-87.96522136881237, 39.48481487910046]]], "type" : "Polygon"}, "properties" : {"FIPS" : "17045", "CNTY_FIPS" : "045", "STATE_FIPS" : "17", "STATE_NAME" : "Illinois", "NAME" : "Edgar"}, "type" : "Feature"} | json_instruct | {"type": "object", "properties": {"geometry": {"type": "object", "properties": {"coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}, "type": {"type": "string"}}, "required": ["coordinates", "type"]}, "properties": {"type": "object", "properties": {"FIPS": {"type": "string"}, "CNTY_FIPS": {"type": "string"}, "STATE_FIPS": {"type": "string"}, "STATE_NAME": {"type": "string"}, "NAME": {"type": "string"}}, "required": ["FIPS", "CNTY_FIPS", "STATE_FIPS", "STATE_NAME", "NAME"]}, "type": {"type": "string"}}, "required": ["geometry", "properties", "type"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"timestamp": {"type": "string"}, "data": {"type": "array", "items": {"type": "object", "properties": {"data_type": {"type": "string"}, "value": {"type": "string"}, "max": {"type": "string"}, "min": {"type": "string"}, "sd": {"type": "string"}}, "required": ["data_type", "value", "max", "min", "sd"]}}}, "required": ["timestamp", "data"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"timestamp" : "2020-10-04T21:18:55Z", "data" : [{"data_type" : "pm10", "value" : "3.80", "max" : "7.00", "min" : "2.00", "sd" : "1.20"}, {"data_type" : "pm2.5", "value" : "3.80", "max" : "7.00", "min" : "2.00", "sd" : "1.20"}, {"data_type" : "pm1", "value" : "1.93", "max" : "3.00", "min" : "1.00", "sd" : "0.67"}, {"data_type" : "pm10", "value" : "4.03", "max" : "5.00", "min" : "3.00", "sd" : "0.87", "sensor" : 2}, {"data_type" : "pm2.5", "value" : "3.53", "max" : "5.00", "min" : "2.00", "sd" : "0.80", "sensor" : 2}, {"data_type" : "pm1", "value" : "2.97", "max" : "4.00", "min" : "2.00", "sd" : "0.87", "sensor" : 2}, {"data_type" : "noise", "value" : "30.64", "max" : "40.52", "min" : "26.60", "sd" : "1.45"}, {"data_type" : "illuminance", "value" : "643.65", "max" : "937.00", "min" : "417.00", "sd" : "208.34"}, {"data_type" : "irradiance", "value" : "0.00", "max" : "0.00", "min" : "0.00", "sd" : "0.00"}, {"data_type" : "temperature", "value" : "11.89", "max" : "12.02", "min" : "11.81", "sd" : "0.14"}, {"data_type" : "humidity", "value" : "79.34", "max" : "79.95", "min" : "78.65", "sd" : "0.43"}, {"data_type" : "presure", "value" : "690.46", "max" : "690.53", "min" : "690.37", "sd" : "0.14"}, {"data_type" : "voltage", "value" : "5.04", "max" : "5.04", "min" : "5.04", "sd" : "0.02"}, {"data_type" : "batery", "value" : "4.14", "max" : "4.14", "min" : "4.14", "sd" : "0.03"}, {"data_type" : "panel", "value" : "0.00", "max" : "0.03", "min" : "0.00", "sd" : "0.08"}]} | json_instruct | {"type": "object", "properties": {"timestamp": {"type": "string"}, "data": {"type": "array", "items": {"type": "object", "properties": {"data_type": {"type": "string"}, "value": {"type": "string"}, "max": {"type": "string"}, "min": {"type": "string"}, "sd": {"type": "string"}}, "required": ["data_type", "value", "max", "min", "sd"]}}}, "required": ["timestamp", "data"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"latest_version": {"type": "array", "items": {"type": "string"}}, "meta": {"type": "object", "properties": {"description": {"type": "string"}, "homepage": {"type": "string"}, "license": {"type": "string"}}, "required": ["description", "homepage", "license"]}, "versions": {"type": "object", "properties": {"0.1.0": {"type": "object", "properties": {"sha256": {"type": "string"}, "url": {"type": "string"}}, "required": ["sha256", "url"]}, "0.1.1": {"type": "object", "properties": {"sha256": {"type": "string"}, "url": {"type": "string"}}, "required": ["sha256", "url"]}}, "required": ["0.1.0", "0.1.1"]}}, "required": ["latest_version", "meta", "versions"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"latest_version" : ["0.1.1"], "meta" : {"description" : "ServiceNow REST API Flask extension", "homepage" : "https://github.com/rbw0/flask-servicenow", "license" : "GPLv2"}, "versions" : {"0.1.0" : {"sha256" : "d05946a74cb0f6f40edc887ed05686180f5b718b4579c23f13aed836a59a995b", "url" : "https://files.pythonhosted.org/packages/c0/a5/f22f98abb54d1b973ee629dd49523d470ecdfffd24d55d0f5de4786c26ba/flask_servicenow-0.1.0.tar.gz"}, "0.1.1" : {"sha256" : "4b7eaeadc12314138d918d562c704a23149669e9e5e585ab5fa423b12fda45cc", "url" : "https://files.pythonhosted.org/packages/d8/f2/b077113796c25935cd077efddd2fa84e947f6bba8af2b3cc2c1cd536eff7/flask_servicenow-0.1.1.tar.gz"}}} | json_instruct | {"type": "object", "properties": {"latest_version": {"type": "array", "items": {"type": "string"}}, "meta": {"type": "object", "properties": {"description": {"type": "string"}, "homepage": {"type": "string"}, "license": {"type": "string"}}, "required": ["description", "homepage", "license"]}, "versions": {"type": "object", "properties": {"0.1.0": {"type": "object", "properties": {"sha256": {"type": "string"}, "url": {"type": "string"}}, "required": ["sha256", "url"]}, "0.1.1": {"type": "object", "properties": {"sha256": {"type": "string"}, "url": {"type": "string"}}, "required": ["sha256", "url"]}}, "required": ["0.1.0", "0.1.1"]}}, "required": ["latest_version", "meta", "versions"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"name": {"type": "string"}, "type": {"type": "string"}, "description": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "homepage": {"type": "string"}, "license": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}, "homepage": {"type": "string"}}, "required": ["name", "email", "homepage"]}}, "require": {"type": "object", "properties": {"php": {"type": "string"}, "memcachier/php-memcache-sasl": {"type": "string"}, "ext-memcached": {"type": "string"}}, "required": ["php", "memcachier/php-memcache-sasl", "ext-memcached"]}}, "required": ["name", "type", "description", "keywords", "homepage", "license", "authors", "require"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "memcachier/php-memcache-example", "type" : "library", "description" : "An example PHP app that uses MemCachier to cache prime number computations", "keywords" : ["memcachier", "memcache", "cache", "sasl", "binary"], "homepage" : "https://github.com/memcachier/examples-php", "license" : "BSD", "authors" : [{"name" : "MemCachier Inc", "email" : "code@memcachier.com", "homepage" : "https://www.memcachier.com/"}], "require" : {"php" : "^7.4.0", "memcachier/php-memcache-sasl" : ">=1.0.1", "ext-memcached" : "*"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "type": {"type": "string"}, "description": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "homepage": {"type": "string"}, "license": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}, "homepage": {"type": "string"}}, "required": ["name", "email", "homepage"]}}, "require": {"type": "object", "properties": {"php": {"type": "string"}, "memcachier/php-memcache-sasl": {"type": "string"}, "ext-memcached": {"type": "string"}}, "required": ["php", "memcachier/php-memcache-sasl", "ext-memcached"]}}, "required": ["name", "type", "description", "keywords", "homepage", "license", "authors", "require"], "$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"}, "compilerOptions": {"type": "object", "properties": {"composite": {"type": "boolean"}, "declarationDir": {"type": "string"}, "jsx": {"type": "string"}, "rootDir": {"type": "string"}, "outDir": {"type": "string"}, "target": {"type": "string"}, "types": {"type": "array", "items": {"type": "string"}}, "typeRoots": {"type": "array", "items": {"type": "string"}}}, "required": ["composite", "declarationDir", "jsx", "rootDir", "outDir", "target", "types", "typeRoots"]}, "include": {"type": "array", "items": {"type": "string"}}, "exclude": {"type": "array", "items": {"type": "string"}}}, "required": ["extends", "compilerOptions", "include", "exclude"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"extends" : "../../tsconfig.base.json", "compilerOptions" : {"composite" : true, "declarationDir" : "dist", "jsx" : "preserve", "rootDir" : "src", "outDir" : "temp", "target" : "esnext", "types" : ["svg", "@napred/ds", "@napred/primitives", "emotion", "lodash.debounce", "react", "react-dom", "react-testing-library", "react-transition-group"], "typeRoots" : ["node_modules/@types", "./@types", "../../node_modules/@types"]}, "include" : ["src/**/*.ts", "src/**/*.tsx"], "exclude" : ["dist", "temp", "node_modules", "src/**/__tests__/**/*", "src/**/__mocks__/**/*"]} | json_instruct | {"type": "object", "properties": {"extends": {"type": "string"}, "compilerOptions": {"type": "object", "properties": {"composite": {"type": "boolean"}, "declarationDir": {"type": "string"}, "jsx": {"type": "string"}, "rootDir": {"type": "string"}, "outDir": {"type": "string"}, "target": {"type": "string"}, "types": {"type": "array", "items": {"type": "string"}}, "typeRoots": {"type": "array", "items": {"type": "string"}}}, "required": ["composite", "declarationDir", "jsx", "rootDir", "outDir", "target", "types", "typeRoots"]}, "include": {"type": "array", "items": {"type": "string"}}, "exclude": {"type": "array", "items": {"type": "string"}}}, "required": ["extends", "compilerOptions", "include", "exclude"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"hash": {"type": "string"}, "parentHash": {"type": "string"}, "number": {"type": "integer"}, "timestamp": {"type": "integer"}, "nonce": {"type": "string"}, "difficulty": {"type": "integer"}, "gasLimit": {"type": "object", "properties": {"_hex": {"type": "string"}}, "required": ["_hex"]}, "gasUsed": {"type": "object", "properties": {"_hex": {"type": "string"}}, "required": ["_hex"]}, "miner": {"type": "string"}, "extraData": {"type": "string"}, "transactions": {"type": "array", "items": {}}}, "required": ["hash", "parentHash", "number", "timestamp", "nonce", "difficulty", "gasLimit", "gasUsed", "miner", "extraData", "transactions"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"hash" : "0xb793883121656ad4aaec85006c6c51676ee887c6ae7c2c3090b0ab57c904f122", "parentHash" : "0x6373c3b03e7b842a38964493177a55eb48af0399c7862ae2215e0be423cb7283", "number" : 37417, "timestamp" : 1438772329, "nonce" : "0xd999ddfd8c49bb26", "difficulty" : 1313678804677, "gasLimit" : {"_hex" : "0x1388"}, "gasUsed" : {"_hex" : "0x0"}, "miner" : "0x753562eEA69CD2D342A9c07EDD49b9753dc0F01e", "extraData" : "0x476574682f76312e302e302d66633739643332642f6c696e75782f676f312e34", "transactions" : []} | json_instruct | {"type": "object", "properties": {"hash": {"type": "string"}, "parentHash": {"type": "string"}, "number": {"type": "integer"}, "timestamp": {"type": "integer"}, "nonce": {"type": "string"}, "difficulty": {"type": "integer"}, "gasLimit": {"type": "object", "properties": {"_hex": {"type": "string"}}, "required": ["_hex"]}, "gasUsed": {"type": "object", "properties": {"_hex": {"type": "string"}}, "required": ["_hex"]}, "miner": {"type": "string"}, "extraData": {"type": "string"}, "transactions": {"type": "array", "items": {}}}, "required": ["hash", "parentHash", "number", "timestamp", "nonce", "difficulty", "gasLimit", "gasUsed", "miner", "extraData", "transactions"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "license": {"type": "null"}, "starNum": {"type": "integer"}, "folkNum": {"type": "integer"}, "watchNum": {"type": "integer"}, "topic": {"type": "array", "items": {}}}, "required": ["name", "description", "license", "starNum", "folkNum", "watchNum", "topic"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "distribute_crawler", "description" : "\u4f7f\u7528scrapy,redis, mongodb,graphite\u5b9e\u73b0\u7684\u4e00\u4e2a\u5206\u5e03\u5f0f\u7f51\u7edc\u722c\u866b,\u5e95\u5c42\u5b58\u50a8mongodb\u96c6\u7fa4,\u5206\u5e03\u5f0f\u4f7f\u7528redis\u5b9e\u73b0,\u722c\u866b\u72b6\u6001\u663e\u793a\u4f7f\u7528graphite\u5b9e\u73b0", "license" : null, "starNum" : 2561, "folkNum" : 1455, "watchNum" : 2561, "topic" : []} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "license": {"type": "null"}, "starNum": {"type": "integer"}, "folkNum": {"type": "integer"}, "watchNum": {"type": "integer"}, "topic": {"type": "array", "items": {}}}, "required": ["name", "description", "license", "starNum", "folkNum", "watchNum", "topic"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"creation_dt": {"type": "string"}, "creation_host": {"type": "string"}, "register_to_eff": {"type": "string"}}, "required": ["creation_dt", "creation_host", "register_to_eff"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"creation_dt" : "2022-02-02T12:11:06Z", "creation_host" : "d95efb77af19", "register_to_eff" : "danieka12@protonmail.com"} | json_instruct | {"type": "object", "properties": {"creation_dt": {"type": "string"}, "creation_host": {"type": "string"}, "register_to_eff": {"type": "string"}}, "required": ["creation_dt", "creation_host", "register_to_eff"], "$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" : 404358541, "type" : "Feature", "properties" : {"src:alt_label" : "quattroshapes", "src:geom" : "quattroshapes", "wof:geomhash" : "2cddd3ee129bc65dd04cb6058621b76f", "wof:id" : 404358541, "wof:repo" : "whosonfirst-data-admin-fr"}, "bbox" : [2.19418664878476, 42.54936802069214, 2.29475905510372, 42.63980208665085], "geometry" : {"coordinates" : [[[2.26392736558855, 42.54936802069214], [2.25739031362669, 42.54997904041532], [2.26088472235242, 42.55632334323965], [2.25849986147059, 42.55930953020528], [2.23171191722035, 42.57852126536133], [2.21714847949696, 42.6076887120793], [2.20811632775027, 42.60957315741458], [2.20860962413652, 42.61627489229895], [2.19418664878476, 42.62407005775699], [2.20110535952823, 42.63980208665085], [2.21505947515334, 42.63901531096384], [2.22642173231087, 42.62795841034976], [2.24737716917311, 42.6202680121041], [2.25849715574769, 42.6093051645769], [2.26265878324528, 42.59590204955886], [2.27514434873713, 42.58605301637761], [2.27327630424843, 42.57583626729549], [2.2763855518456, 42.56935739565998], [2.29142601073815, 42.56176259999699], [2.29475905510372, 42.55766716915739], [2.27608908084878, 42.55501602919835], [2.26392736558855, 42.54936802069214]]], "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 a JSON structure that matches this schema definition:
{"type": "object", "properties": {"parent": {"type": "string"}}, "required": ["parent"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"parent" : "mooshroomcraft:block/stew_distiller"} | json_instruct | {"type": "object", "properties": {"parent": {"type": "string"}}, "required": ["parent"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"id": {"type": "string"}}, "required": ["id"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "1b9476c159d0a11fb8842d2ea42195ec30aa034a"} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}}, "required": ["id"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "summary": {"type": "string"}, "description": {"type": "string"}, "homepage": {"type": "string"}, "license": {"type": "string"}, "authors": {"type": "object", "properties": {"Minlison": {"type": "string"}}, "required": ["Minlison"]}, "platforms": {"type": "object", "properties": {"ios": {"type": "string"}}, "required": ["ios"]}, "source": {"type": "object", "properties": {"git": {"type": "string"}, "tag": {"type": "string"}}, "required": ["git", "tag"]}, "documentation_url": {"type": "string"}, "requires_arc": {"type": "boolean"}, "static_framework": {"type": "boolean"}, "source_files": {"type": "string"}, "public_header_files": {"type": "string"}}, "required": ["name", "version", "summary", "description", "homepage", "license", "authors", "platforms", "source", "documentation_url", "requires_arc", "static_framework", "source_files", "public_header_files"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "MLSCache", "version" : "1.0.0", "summary" : "MLSCache", "description" : "MLSCache \u7ec4\u4ef6\u5316\u4e2d\u5fc3\uff0c\u7edf\u4e00\u7f13\u5b58\u7ba1\u7406\u6a21\u5757", "homepage" : "https://github.com/Minlison/MLSCache.git", "license" : "MIT", "authors" : {"Minlison" : "yuanhang@minlison.com"}, "platforms" : {"ios" : "8.0"}, "source" : {"git" : "https://github.com/Minlison/MLSCache.git", "tag" : "1.0.0"}, "documentation_url" : "https://www.minlison.cn/mlscache", "requires_arc" : true, "static_framework" : true, "source_files" : "Classes/**/*.{h,m}", "public_header_files" : "Classes/Manager/**/*.h"} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "summary": {"type": "string"}, "description": {"type": "string"}, "homepage": {"type": "string"}, "license": {"type": "string"}, "authors": {"type": "object", "properties": {"Minlison": {"type": "string"}}, "required": ["Minlison"]}, "platforms": {"type": "object", "properties": {"ios": {"type": "string"}}, "required": ["ios"]}, "source": {"type": "object", "properties": {"git": {"type": "string"}, "tag": {"type": "string"}}, "required": ["git", "tag"]}, "documentation_url": {"type": "string"}, "requires_arc": {"type": "boolean"}, "static_framework": {"type": "boolean"}, "source_files": {"type": "string"}, "public_header_files": {"type": "string"}}, "required": ["name", "version", "summary", "description", "homepage", "license", "authors", "platforms", "source", "documentation_url", "requires_arc", "static_framework", "source_files", "public_header_files"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"directions": {"type": "array", "items": {"type": "string"}}, "ingredients": {"type": "array", "items": {"type": "string"}}, "language": {"type": "string"}, "source": {"type": "string"}, "tags": {"type": "array", "items": {}}, "title": {"type": "string"}, "url": {"type": "string"}}, "required": ["directions", "ingredients", "language", "source", "tags", "title", "url"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"directions" : ["Bring a large pot of lightly salted water to a boil. Add pasta and cook for 8 to 10 minutes, or until al dente. Drain and set aside.", "Melt butter over medium-high heat in a large skillet. Add onions, mushrooms, and garlic, and saute until tender. Pour in wine and simmer for 10 minutes, reducing heat if necessary.", "Stir in clams, reserved clam juice, sour cream, pepper, and parsley, and simmer another 20 minutes. Toss with linguine, and serve. Enjoy!"], "ingredients" : ["1 (16 ounce) package linguine pasta", "8 tablespoons unsalted butter", "1 medium white onion, chopped", "8 ounces fresh mushrooms, sliced", "4 cloves garlic, pressed", "1 cup dry white wine", "4 (6.5 ounce) cans chopped clams, drained and rinsed with juices reserved", "2 tablespoons sour cream", "freshly ground black pepper", "1/4 cup chopped flat leaf parsley"], "language" : "en-US", "source" : "allrecipes.com", "tags" : [], "title" : "Linguine with Clams", "url" : "http://allrecipes.com/recipe/75453/linguine-with-clams/"} | 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#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"FM": {"type": "object", "properties": {"log_trigger": {"type": "integer"}}, "required": ["log_trigger"]}}, "required": ["FM"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"FM" : {"log_trigger" : 0}} | json_instruct | {"type": "object", "properties": {"FM": {"type": "object", "properties": {"log_trigger": {"type": "integer"}}, "required": ["log_trigger"]}}, "required": ["FM"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"terminal.integrated.env.osx": {"type": "object", "properties": {"PATH": {"type": "string"}, "PLATFORMIO_CALLER": {"type": "string"}}, "required": ["PATH", "PLATFORMIO_CALLER"]}}, "required": ["terminal.integrated.env.osx"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"terminal.integrated.env.osx" : {"PATH" : "/Users/gruppionim/.platformio/penv/bin:/Users/gruppionim/.platformio/penv:/Users/gruppionim/.fastlane/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/sbin:/Library/TeX/texbin:/usr/local/share/dotnet:/Library/Frameworks/Mono.framework/Versions/Current/Commands:/Users/gruppionim/.rvm/bin", "PLATFORMIO_CALLER" : "vscode"}} | json_instruct | {"type": "object", "properties": {"terminal.integrated.env.osx": {"type": "object", "properties": {"PATH": {"type": "string"}, "PLATFORMIO_CALLER": {"type": "string"}}, "required": ["PATH", "PLATFORMIO_CALLER"]}}, "required": ["terminal.integrated.env.osx"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"dataset": {"type": "string"}, "datetime": {"type": "string"}, "organisation": {"type": "string"}, "resource": {"type": "string"}, "url": {"type": "string"}}, "required": ["dataset", "datetime", "organisation", "resource", "url"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"dataset" : "brownfield-land", "datetime" : "2018-05-22T00:00:00.0", "organisation" : "local-authority-eng:EAS", "resource" : "5a9a3931e7a19f4fba128bdc1dcb544f0860ceeba17ce15f7621f02c25062a81", "url" : "http://www.lewes-eastbourne.gov.uk/_resources/assets/inline/full/0/263226.csv"} | json_instruct | {"type": "object", "properties": {"dataset": {"type": "string"}, "datetime": {"type": "string"}, "organisation": {"type": "string"}, "resource": {"type": "string"}, "url": {"type": "string"}}, "required": ["dataset", "datetime", "organisation", "resource", "url"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"date": {"type": "string"}, "id": {"type": "string"}, "name": {"type": "string"}, "results": {"type": "array", "items": {"type": "object", "properties": {"age": {"type": "integer"}, "age_rank": {"type": "integer"}, "agegroup": {"type": "string"}, "bib": {"type": "string"}, "city": {"type": "string"}, "drilldown": {"type": "integer"}, "firstname": {"type": "string"}, "formattime": {"type": "string"}, "gender": {"type": "string"}, "gender_place": {"type": "integer"}, "lastname": {"type": "string"}, "participant_id": {"type": "integer"}, "photo_count": {"type": "integer"}, "place": {"type": "integer"}, "prior_count": {"type": "integer"}, "race_count": {"type": "integer"}, "runner_rank": {"type": "number"}, "state": {"type": "string"}, "status": {"type": "integer"}, "time": {"type": "string"}}, "required": ["age", "age_rank", "agegroup", "bib", "city", "drilldown", "firstname", "formattime", "gender", "gender_place", "lastname", "participant_id", "photo_count", "place", "prior_count", "race_count", "runner_rank", "state", "status", "time"]}}}, "required": ["date", "id", "name", "results"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"date" : "Saturday, Jun 8, 1991", "id" : "9420", "name" : "1991 Lost Boys 50 Miler", "results" : [{"age" : 43, "age_rank" : 0, "agegroup" : "40-49", "bib" : "", "city" : "", "drilldown" : 0, "firstname" : "Mike", "formattime" : "12:45:00", "gender" : "M", "gender_place" : 1, "lastname" : "Suter", "participant_id" : 4276, "photo_count" : 0, "place" : 1, "prior_count" : 0, "race_count" : 0, "runner_rank" : 77.56, "state" : "CA", "status" : 1, "time" : "45900000"}, {"age" : 45, "age_rank" : 0, "agegroup" : "40-49", "bib" : "", "city" : "", "drilldown" : 0, "firstname" : "Tom", "formattime" : "12:45:00", "gender" : "M", "gender_place" : 2, "lastname" : "Waddell", "participant_id" : 50805, "photo_count" : 0, "place" : 2, "prior_count" : 0, "race_count" : 0, "runner_rank" : 77.42, "state" : "CA", "status" : 1, "time" : "45900000"}, {"age" : 50, "age_rank" : 0, "agegroup" : "50-59", "bib" : "", "city" : "", "drilldown" : 0, "firstname" : "Budd", "formattime" : "12:45:00", "gender" : "M", "gender_place" : 3, "lastname" : "Willis", "participant_id" : 140044, "photo_count" : 0, "place" : 3, "prior_count" : 0, "race_count" : 0, "runner_rank" : 63.8, "state" : "CA", "status" : 1, "time" : "45900000"}, {"age" : 54, "age_rank" : 0, "agegroup" : "50-59", "bib" : "", "city" : "", "drilldown" : 0, "firstname" : "Wes", "formattime" : "13:23:00", "gender" : "M", "gender_place" : 4, "lastname" : "Barrett", "participant_id" : 50160, "photo_count" : 0, "place" : 4, "prior_count" : 0, "race_count" : 0, "runner_rank" : 61.09, "state" : "CA", "status" : 1, "time" : "48180000"}]} | json_instruct | {"type": "object", "properties": {"date": {"type": "string"}, "id": {"type": "string"}, "name": {"type": "string"}, "results": {"type": "array", "items": {"type": "object", "properties": {"age": {"type": "integer"}, "age_rank": {"type": "integer"}, "agegroup": {"type": "string"}, "bib": {"type": "string"}, "city": {"type": "string"}, "drilldown": {"type": "integer"}, "firstname": {"type": "string"}, "formattime": {"type": "string"}, "gender": {"type": "string"}, "gender_place": {"type": "integer"}, "lastname": {"type": "string"}, "participant_id": {"type": "integer"}, "photo_count": {"type": "integer"}, "place": {"type": "integer"}, "prior_count": {"type": "integer"}, "race_count": {"type": "integer"}, "runner_rank": {"type": "number"}, "state": {"type": "string"}, "status": {"type": "integer"}, "time": {"type": "string"}}, "required": ["age", "age_rank", "agegroup", "bib", "city", "drilldown", "firstname", "formattime", "gender", "gender_place", "lastname", "participant_id", "photo_count", "place", "prior_count", "race_count", "runner_rank", "state", "status", "time"]}}}, "required": ["date", "id", "name", "results"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "array", "items": {"type": "object", "properties": {"kind": {"type": "string"}, "typeName": {"type": "object", "properties": {"kind": {"type": "string"}, "name": {"type": "string"}}, "required": ["kind", "name"]}}, "required": ["kind", "typeName"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"kind" : "TypeReference", "typeName" : {"kind" : "Identifier", "name" : "protocol"}}, {"kind" : "TypeReference", "typeName" : {"kind" : "Identifier", "name" : "rest"}, "constraint" : {"kind" : "NumberType", "value" : "number"}}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"kind": {"type": "string"}, "typeName": {"type": "object", "properties": {"kind": {"type": "string"}, "name": {"type": "string"}}, "required": ["kind", "name"]}}, "required": ["kind", "typeName"]}, "$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.