input
stringlengths 159
2.05k
| output
stringlengths 5
10.3k
| task
stringclasses 1
value | schema
stringlengths 100
1.99k
|
---|---|---|---|
Using the following JSON schema, generate a compatible 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": {"type": "string"}}, "title": {"type": "string"}, "url": {"type": "string"}}, "required": ["directions", "ingredients", "language", "source", "tags", "title", "url"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"directions" : ["Cut out a round of wax paper to fit just inside a 12-inch heavy skillet, then butter 1 side of round.", "Fit endives, cut sides down, snugly in skillet. Add broth, lemon juice, butter bits, sugar, and salt, then cover endives with wax-paper round, buttered side down, and simmer until endives are tender and liquid is thickened and reduced to about a quarter of its original volume, 20 to 25 minutes.", "Meanwhile, cook beans in a 4-quart pot of boiling salted water, uncovered, until just tender, about 5 minutes. Drain and rinse under cold water to stop cooking, then drain again.", "Remove wax paper from endives, then gently stir in beans and cook until beans are just heated through, about 1 minute."], "ingredients" : ["1 1/2 tablespoons unsalted butter, cut into bits, plus additional for greasing wax paper", "1/2 lb haricots verts or other thin green beans, trimmed", "4 Belgian endives (1 lb), trimmed, leaving leaves attached, and halved lengthwise", "1/2 cup reduced-sodium chicken broth", "1 tablespoon fresh lemon juice", "1 teaspoon sugar", "1/4 teaspoon salt"], "language" : "en-US", "source" : "www.epicurious.com", "tags" : ["Bean", "Side", "Braise", "Quick & Easy", "Endive", "Gourmet", "Sugar Conscious", "Wheat/Gluten-Free", "Peanut Free", "Tree Nut Free", "Soy Free"], "title" : "Braised Endives with Haricots Verts", "url" : "http://www.epicurious.com/recipes/food/views/braised-endives-with-haricots-verts-233808"} | json_instruct | {"type": "object", "properties": {"directions": {"type": "array", "items": {"type": "string"}}, "ingredients": {"type": "array", "items": {"type": "string"}}, "language": {"type": "string"}, "source": {"type": "string"}, "tags": {"type": "array", "items": {"type": "string"}}, "title": {"type": "string"}, "url": {"type": "string"}}, "required": ["directions", "ingredients", "language", "source", "tags", "title", "url"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "version": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "homepage": {"type": "string"}, "main": {"type": "string"}, "license": {"type": "string"}, "author": {"type": "object", "properties": {"name": {"type": "string"}, "url": {"type": "string"}}, "required": ["name", "url"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "jest": {"type": "object", "properties": {"testPathIgnorePatterns": {"type": "array", "items": {"type": "string"}}, "roots": {"type": "array", "items": {"type": "string"}}}, "required": ["testPathIgnorePatterns", "roots"]}, "module": {"type": "string"}, "dependencies": {"type": "object", "properties": {}, "required": []}, "scripts": {"type": "object", "properties": {"build": {"type": "string"}, "test": {"type": "string"}}, "required": ["build", "test"]}, "devDependencies": {"type": "object", "properties": {"webpack": {"type": "string"}, "babel-cli": {"type": "string"}, "babel-core": {"type": "string"}, "babel-jest": {"type": "string"}, "babel-preset-es2015": {"type": "string"}, "jest": {"type": "string"}}, "required": ["webpack", "babel-cli", "babel-core", "babel-jest", "babel-preset-es2015", "jest"]}}, "required": ["name", "description", "version", "keywords", "homepage", "main", "license", "author", "repository", "jest", "module", "dependencies", "scripts", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "welcomejs", "description" : "A welcome library where the modules will welcome you (ie the output of a getting started tutorial)", "version" : "0.0.2", "keywords" : ["getting_started", "webpack", "node", "library"], "homepage" : "https://gerardnico.com/lang/javascript/library_build", "main" : "dist/prefix-welcome.js", "license" : "BSD-3-Clause", "author" : {"name" : "Nicolas GERARD", "url" : "https://gerardnico.com/"}, "repository" : {"type" : "git", "url" : "https://github.com/gerardnico/welcomejs.git"}, "jest" : {"testPathIgnorePatterns" : ["/node_modules/"], "roots" : ["<rootDir>/test/"]}, "module" : "index.js", "dependencies" : {}, "scripts" : {"build" : "webpack", "test" : "jest"}, "devDependencies" : {"webpack" : "^3.8.1", "babel-cli" : "^6.26.0", "babel-core" : "^6.26.0", "babel-jest" : "^21.2.0", "babel-preset-es2015" : "^6.24.1", "jest" : "^23.6"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "version": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "homepage": {"type": "string"}, "main": {"type": "string"}, "license": {"type": "string"}, "author": {"type": "object", "properties": {"name": {"type": "string"}, "url": {"type": "string"}}, "required": ["name", "url"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "jest": {"type": "object", "properties": {"testPathIgnorePatterns": {"type": "array", "items": {"type": "string"}}, "roots": {"type": "array", "items": {"type": "string"}}}, "required": ["testPathIgnorePatterns", "roots"]}, "module": {"type": "string"}, "dependencies": {"type": "object", "properties": {}, "required": []}, "scripts": {"type": "object", "properties": {"build": {"type": "string"}, "test": {"type": "string"}}, "required": ["build", "test"]}, "devDependencies": {"type": "object", "properties": {"webpack": {"type": "string"}, "babel-cli": {"type": "string"}, "babel-core": {"type": "string"}, "babel-jest": {"type": "string"}, "babel-preset-es2015": {"type": "string"}, "jest": {"type": "string"}}, "required": ["webpack", "babel-cli", "babel-core", "babel-jest", "babel-preset-es2015", "jest"]}}, "required": ["name", "description", "version", "keywords", "homepage", "main", "license", "author", "repository", "jest", "module", "dependencies", "scripts", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "dev": {"type": "string"}, "build": {"type": "string"}}, "required": ["test", "dev", "build"]}, "author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"body-parser": {"type": "string"}, "compression": {"type": "string"}, "cors": {"type": "string"}, "crypto": {"type": "string"}, "dotenv": {"type": "string"}, "ejs": {"type": "string"}, "express": {"type": "string"}, "express-jwt": {"type": "string"}, "express-validation": {"type": "string"}, "faker": {"type": "string"}, "joi": {"type": "string"}, "joi-date-extensions": {"type": "string"}, "jsonwebtoken": {"type": "string"}, "moment": {"type": "string"}, "mongoose": {"type": "string"}, "mongoose-paginate": {"type": "string"}, "mongoose-unique-validator": {"type": "string"}, "morgan": {"type": "string"}, "multer": {"type": "string"}, "node-correios": {"type": "string"}, "nodemailer": {"type": "string"}, "nodemon": {"type": "string"}, "pagseguro": {"type": "string"}, "request": {"type": "string"}, "xml2js": {"type": "string"}}, "required": ["body-parser", "compression", "cors", "crypto", "dotenv", "ejs", "express", "express-jwt", "express-validation", "faker", "joi", "joi-date-extensions", "jsonwebtoken", "moment", "mongoose", "mongoose-paginate", "mongoose-unique-validator", "morgan", "multer", "node-correios", "nodemailer", "nodemon", "pagseguro", "request", "xml2js"]}, "devDependencies": {"type": "object", "properties": {"eslint": {"type": "string"}}, "required": ["eslint"]}}, "required": ["name", "version", "description", "main", "scripts", "author", "license", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "ecommerce-api", "version" : "0.0.1", "description" : "API para ecommerce", "main" : "server.js", "scripts" : {"test" : "mocha --timeout 2000 --exit", "dev" : "NODE_ENV=development nodemon server.js", "build" : "NODE_ENV=production pm2 start server.js --name=\"ecommerce-api\""}, "author" : "Alexandre Munis", "license" : "ISC", "dependencies" : {"body-parser" : "^1.19.0", "compression" : "^1.7.4", "cors" : "^2.8.5", "crypto" : "^1.0.1", "dotenv" : "^8.2.0", "ejs" : "^3.1.6", "express" : "^4.17.1", "express-jwt" : "^6.0.0", "express-validation" : "^1.0.2", "faker" : "^5.5.3", "joi" : "^14.3.1", "joi-date-extensions" : "^1.2.0", "jsonwebtoken" : "^8.5.1", "moment" : "^2.29.1", "mongoose" : "^5.12.3", "mongoose-paginate" : "^5.0.3", "mongoose-unique-validator" : "^2.0.3", "morgan" : "^1.10.0", "multer" : "^1.4.2", "node-correios" : "^3.0.2", "nodemailer" : "^6.5.0", "nodemon" : "^2.0.7", "pagseguro" : "^0.1.0", "request" : "^2.88.2", "xml2js" : "^0.4.23"}, "devDependencies" : {"eslint" : "^7.23.0"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "dev": {"type": "string"}, "build": {"type": "string"}}, "required": ["test", "dev", "build"]}, "author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"body-parser": {"type": "string"}, "compression": {"type": "string"}, "cors": {"type": "string"}, "crypto": {"type": "string"}, "dotenv": {"type": "string"}, "ejs": {"type": "string"}, "express": {"type": "string"}, "express-jwt": {"type": "string"}, "express-validation": {"type": "string"}, "faker": {"type": "string"}, "joi": {"type": "string"}, "joi-date-extensions": {"type": "string"}, "jsonwebtoken": {"type": "string"}, "moment": {"type": "string"}, "mongoose": {"type": "string"}, "mongoose-paginate": {"type": "string"}, "mongoose-unique-validator": {"type": "string"}, "morgan": {"type": "string"}, "multer": {"type": "string"}, "node-correios": {"type": "string"}, "nodemailer": {"type": "string"}, "nodemon": {"type": "string"}, "pagseguro": {"type": "string"}, "request": {"type": "string"}, "xml2js": {"type": "string"}}, "required": ["body-parser", "compression", "cors", "crypto", "dotenv", "ejs", "express", "express-jwt", "express-validation", "faker", "joi", "joi-date-extensions", "jsonwebtoken", "moment", "mongoose", "mongoose-paginate", "mongoose-unique-validator", "morgan", "multer", "node-correios", "nodemailer", "nodemon", "pagseguro", "request", "xml2js"]}, "devDependencies": {"type": "object", "properties": {"eslint": {"type": "string"}}, "required": ["eslint"]}}, "required": ["name", "version", "description", "main", "scripts", "author", "license", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"adv_t": {"type": "array", "items": {"type": "integer"}}, "adv_w": {"type": "array", "items": {"type": "integer"}}, "clfs": {"type": "array", "items": {"type": "string"}}, "mean": {"type": "array", "items": {"type": "number"}}, "parameters": {"type": "object", "properties": {"cv_method": {"type": "string"}, "db": {"type": "string"}, "repetition": {"type": "integer"}}, "required": ["cv_method", "db", "repetition"]}, "std": {"type": "array", "items": {"type": "number"}}}, "required": ["adv_t", "adv_w", "clfs", "mean", "parameters", "std"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"adv_t" : [2, 0, 2, 3, 0, 2], "adv_w" : [2, 0, 2, 3, 0, 2], "clfs" : ["Nearest Neighbors", "RBF SVM", "Decision Tree", "Random Forest", "Naive Bayes", "Linear SVM"], "mean" : [0.6438655462184875, 0.582689075630252, 0.6699159663865546, 0.701512605042017, 0.5798319327731092, 0.695966386554622], "parameters" : {"cv_method" : "k10", "db" : "liver", "repetition" : 8}, "std" : [0.05805121924691847, 0.01033154081005784, 0.06883784134134864, 0.05900837969289586, 0.09436658421795938, 0.07834008292647748]} | json_instruct | {"type": "object", "properties": {"adv_t": {"type": "array", "items": {"type": "integer"}}, "adv_w": {"type": "array", "items": {"type": "integer"}}, "clfs": {"type": "array", "items": {"type": "string"}}, "mean": {"type": "array", "items": {"type": "number"}}, "parameters": {"type": "object", "properties": {"cv_method": {"type": "string"}, "db": {"type": "string"}, "repetition": {"type": "integer"}}, "required": ["cv_method", "db", "repetition"]}, "std": {"type": "array", "items": {"type": "number"}}}, "required": ["adv_t", "adv_w", "clfs", "mean", "parameters", "std"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "order": {"type": "integer"}}, "required": ["id", "order"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"id" : "basic-functionality", "order" : 1}, {"id" : "non-visual-reading", "order" : 2}, {"id" : "math", "order" : 3}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "order": {"type": "integer"}}, "required": ["id", "order"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"libraries": {"type": "array", "items": {"type": "integer"}}, "long": {"type": "array", "items": {"type": "integer"}}, "list": {"type": "array", "items": {"type": "integer"}}, "large": {"type": "array", "items": {"type": "integer"}}, "length": {"type": "array", "items": {"type": "integer"}}, "library": {"type": "array", "items": {"type": "integer"}}, "line": {"type": "array", "items": {"type": "integer"}}, "load": {"type": "array", "items": {"type": "integer"}}, "label": {"type": "array", "items": {"type": "integer"}}, "link": {"type": "array", "items": {"type": "integer"}}, "longer": {"type": "array", "items": {"type": "integer"}}, "looking": {"type": "array", "items": {"type": "integer"}}, "locate": {"type": "array", "items": {"type": "integer"}}}, "required": ["libraries", "long", "list", "large", "length", "library", "line", "load", "label", "link", "longer", "looking", "locate"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"libraries" : [589830], "long" : [589825], "list" : [2162689, 2293761, 2359299, 2555915, 2621441, 3145734, 3342342, 3670022, 3801090, 3866625, 4128772], "large" : [589826], "length" : [2686978, 3604482, 3735558], "library" : [65537, 131074, 196610, 262146, 327682, 393218, 458753, 524290, 589828, 655362, 720898, 786434, 851970, 917506, 983042, 1048578, 1114114, 1179650, 1245186, 1310722, 1376258, 1441794, 1507330, 1572866, 1638402, 1703938, 1769474, 1835010, 1900546, 1966082, 2031618, 2097154, 2162690, 2228226, 2293762, 2359298, 2424834, 2490369, 2555906, 2621442, 2686978, 2752514, 2818050, 2883586, 2949123, 3014658, 3080194, 3145730, 3211266, 3276802, 3342338, 3407874, 3473410, 3538946, 3604482, 3670018, 3735554, 3801090, 3866626, 3932162, 3997698, 4063234, 4128770], "line" : [983041, 1376257, 1441793, 2752513, 3997697, 4063233], "load" : [458753], "label" : [1245190, 2686978, 2883590, 3604482], "link" : [1], "longer" : [2490369], "looking" : [2490369], "locate" : [2490369]} | json_instruct | {"type": "object", "properties": {"libraries": {"type": "array", "items": {"type": "integer"}}, "long": {"type": "array", "items": {"type": "integer"}}, "list": {"type": "array", "items": {"type": "integer"}}, "large": {"type": "array", "items": {"type": "integer"}}, "length": {"type": "array", "items": {"type": "integer"}}, "library": {"type": "array", "items": {"type": "integer"}}, "line": {"type": "array", "items": {"type": "integer"}}, "load": {"type": "array", "items": {"type": "integer"}}, "label": {"type": "array", "items": {"type": "integer"}}, "link": {"type": "array", "items": {"type": "integer"}}, "longer": {"type": "array", "items": {"type": "integer"}}, "looking": {"type": "array", "items": {"type": "integer"}}, "locate": {"type": "array", "items": {"type": "integer"}}}, "required": ["libraries", "long", "list", "large", "length", "library", "line", "load", "label", "link", "longer", "looking", "locate"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"word" : "guggle", "definition" : "See Gurgle."} | json_instruct | {"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"name": {"type": "string"}, "displayName": {"type": "string"}}, "required": ["name", "displayName"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "repoapp", "displayName" : "repoapp"} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "displayName": {"type": "string"}}, "required": ["name", "displayName"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"stationGroupId": {"type": "integer"}, "stations": {"type": "array", "items": {"type": "string"}}}, "required": ["stationGroupId", "stations"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"stationGroupId" : 1134234, "stations" : ["1134234"]} | json_instruct | {"type": "object", "properties": {"stationGroupId": {"type": "integer"}, "stations": {"type": "array", "items": {"type": "string"}}}, "required": ["stationGroupId", "stations"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"co-authors": {"type": "array", "items": {"type": "object", "properties": {"co_author_name": {"type": "string"}, "author_description": {"type": "string"}, "website_url": {"type": "string"}, "instagram": {"type": "string"}, "twitter": {"type": "string"}}, "required": ["co_author_name", "author_description", "website_url", "instagram", "twitter"]}}}, "required": ["co-authors"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"co-authors" : [{"co_author_name" : "Stefan Volz", "author_description" : "Electrician for buildings and power services, state certified engineer/technician for electrical engineering specialized in IT, PLC-specialist - studying industrial mathematics starting 10.2019. Mainly doing Python and Rust - but like to try new languages all the time.", "website_url" : "https://sv-97.github.io/", "instagram" : "Nope", "twitter" : "@1stSV_97"}, {"co_author_name" : "your_name", "author_description" : "Provide a brief description about yourself", "website_url" : "Provide your website url", "instagram" : "Provide your instagram account handler", "twitter" : "Provide your twitter account"}]} | json_instruct | {"type": "object", "properties": {"co-authors": {"type": "array", "items": {"type": "object", "properties": {"co_author_name": {"type": "string"}, "author_description": {"type": "string"}, "website_url": {"type": "string"}, "instagram": {"type": "string"}, "twitter": {"type": "string"}}, "required": ["co_author_name", "author_description", "website_url", "instagram", "twitter"]}}}, "required": ["co-authors"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "array", "items": {"type": "array", "items": {"type": "number"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [[363.11222106318576, 509.981125889943], [1218.3399051289655, 535.8587522764813], [1256.4577315657957, 578.211892761848], [1290.3402439540894, 601.5061200288001], [1319.9874422938462, 605.7414340773366], [1358.1052687306765, 614.21206217441]] | json_instruct | {"type": "array", "items": {"type": "array", "items": {"type": "number"}}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"type": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "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" : [[[139.125, 36.083333333333336], [139.125, 36.166666666666664], [139.25, 36.166666666666664], [139.25, 36.083333333333336], [139.125, 36.083333333333336]]]}, "properties" : {"code" : 543911, "url" : "http://madefor.github.io/0410/api/v1/543911.geojson", "view" : "https://github.com/madefor/0410/blob/gh-pages/api/v1/543911.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": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "compile": {"type": "string"}, "build": {"type": "string"}, "watch": {"type": "string"}, "prepublishOnly": {"type": "string"}}, "required": ["test", "compile", "build", "watch", "prepublishOnly"]}, "bin": {"type": "object", "properties": {"seven-rule-msg": {"type": "string"}}, "required": ["seven-rule-msg"]}, "types": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "dependencies": {"type": "object", "properties": {"@types/meow": {"type": "string"}, "@types/node": {"type": "string"}, "chalk": {"type": "string"}, "get-stdin": {"type": "string"}, "log-symbols": {"type": "string"}, "meow": {"type": "string"}}, "required": ["@types/meow", "@types/node", "chalk", "get-stdin", "log-symbols", "meow"]}, "engines": {"type": "object", "properties": {"node": {"type": "string"}}, "required": ["node"]}, "devDependencies": {"type": "object", "properties": {"ava": {"type": "string"}, "ts-node": {"type": "string"}, "typescript": {"type": "string"}}, "required": ["ava", "ts-node", "typescript"]}, "files": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "version", "description", "main", "scripts", "bin", "types", "repository", "keywords", "author", "license", "bugs", "homepage", "dependencies", "engines", "devDependencies", "files"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "seven-rule-msg", "version" : "1.0.0", "description" : "Minimal, opinionated commit message validator", "main" : "dist/index.js", "scripts" : {"test" : "ava --verbose", "compile" : "tsc", "build" : "npm run compile", "watch" : "tsc -w -p .", "prepublishOnly" : "npm run build"}, "bin" : {"seven-rule-msg" : "dist/cli.js"}, "types" : "dist/index.d.ts", "repository" : {"type" : "git", "url" : "git+https://github.com/shreyasminocha/seven-rule-msg.git"}, "keywords" : ["commit-msg", "commitlint", "git", "sevenrules"], "author" : "Shreyas Minocha", "license" : "MIT", "bugs" : {"url" : "https://github.com/shreyasminocha/seven-rule-msg/issues"}, "homepage" : "https://github.com/shreyasminocha/seven-rule-msg#readme", "dependencies" : {"@types/meow" : "^5.0.0", "@types/node" : "^12.6.8", "chalk" : "^2.4.2", "get-stdin" : "^7.0.0", "log-symbols" : "^2.2.0", "meow" : "^5.0.0"}, "engines" : {"node" : ">=10.1.0"}, "devDependencies" : {"ava" : "^1.4.1", "ts-node" : "^8.3.0", "typescript" : "^3.5.3"}, "files" : ["dist/**/*.js", "usage.txt"]} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "compile": {"type": "string"}, "build": {"type": "string"}, "watch": {"type": "string"}, "prepublishOnly": {"type": "string"}}, "required": ["test", "compile", "build", "watch", "prepublishOnly"]}, "bin": {"type": "object", "properties": {"seven-rule-msg": {"type": "string"}}, "required": ["seven-rule-msg"]}, "types": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "dependencies": {"type": "object", "properties": {"@types/meow": {"type": "string"}, "@types/node": {"type": "string"}, "chalk": {"type": "string"}, "get-stdin": {"type": "string"}, "log-symbols": {"type": "string"}, "meow": {"type": "string"}}, "required": ["@types/meow", "@types/node", "chalk", "get-stdin", "log-symbols", "meow"]}, "engines": {"type": "object", "properties": {"node": {"type": "string"}}, "required": ["node"]}, "devDependencies": {"type": "object", "properties": {"ava": {"type": "string"}, "ts-node": {"type": "string"}, "typescript": {"type": "string"}}, "required": ["ava", "ts-node", "typescript"]}, "files": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "version", "description", "main", "scripts", "bin", "types", "repository", "keywords", "author", "license", "bugs", "homepage", "dependencies", "engines", "devDependencies", "files"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"ShutUpGunshot": {"type": "array", "items": {"type": "string"}}}, "required": ["ShutUpGunshot"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"ShutUpGunshot" : ["BigShutUp", "NoisyShutUp", "FiringInTheAirALot", "ShoutingShooter", "SubTrope", "ThreateningMediator", "DidntThinkThisThrough", "AuctionOfEvil", "SpontaneousChoreography", "QuickChange", "UnusuallyUninterestingSight", "YouAreTooLate", "FreakOut", "CatFight", "BarBrawl", "TwoShotsFromBehindThebar", "ParodyFic", "LaResistance", "SeriousBusiness", "RecruitingTheCriminal", "TheDreaded", "StateSec", "BigShutUp", "AmbiguousSituation", "BrickJoke", "TheReasonYouSuckSpeech", "ShamingTheMob", "BarBrawl", "TruceZone", "EatsBabies", "BreakThemByTalking", "BarBrawl", "MissionBriefing", "CowboyEpisode", "BarBrawl", "HistoricalVillainUpgrade", "TheReasonYouSuckSpeech", "ActionGirl", "OneWomanArmy", "RidiculouslyHumanRobot", "TheAce", "TheDayTheMusicLied", "CampGay", "RealityEnsues", "BarBrawl", "IAlwaysWantedToSayThat"]} | json_instruct | {"type": "object", "properties": {"ShutUpGunshot": {"type": "array", "items": {"type": "string"}}}, "required": ["ShutUpGunshot"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"title": {"type": "string"}, "fields": {"type": "array", "items": {"type": "string"}}, "abstract": {"type": "string"}, "citation": {"type": "string"}, "year": {"type": "string"}, "departments": {"type": "array", "items": {"type": "string"}}, "conf": {"type": "string"}, "authors": {"type": "array", "items": {"type": "string"}}, "pages": {"type": "integer"}}, "required": ["title", "fields", "abstract", "citation", "year", "departments", "conf", "authors", "pages"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"title" : "Modeling and understanding end-to-end class of service policies in operational networks.", "fields" : ["private network", "class of service", "differentiated service", "access control list", "end to end principle"], "abstract" : "Business and economic considerations are driving the extensive use of service differentiation in Virtual Private Networks (VPNs) operated for business enterprises today. The resulting Class of Service (CoS) designs embed complex policy decisions based on the described priorities of various applications, extent of bandwidth availability, and cost considerations. These inherently complex high-level policies are realized through low-level router configurations. The configuration process is tedious and error-prone given the highly intertwined nature of CoS configuration, the multiple router configurations over which the policies are instantiated, and the complex access control lists (ACLs) involved. Our contributions include (i) a formal approach to modeling CoS policies from router configuration files in a precise manner; (ii) a practical and computationally efficient tool that can determine the CoS treatment received by an arbitrary set of flows across multiple routers; and (iii) a validation of our approach in enabling applications such as troubleshooting, auditing, and visualization of network-wide CoS design, using router configuration data from a cross-section of 150 diverse enterprise VPNs. To our knowledge, this is the first effort aimed at modeling and analyzing CoS configurations.", "citation" : "Citations (55)", "year" : "2009", "departments" : ["Purdue University", "AT&T Labs", "AT&T", "Purdue University", "AT&T Labs"], "conf" : "sigcomm", "authors" : ["Yu-Wei Eric Sung.....http://dblp.org/pers/hd/s/Sung:Yu=Wei_Eric", "Carsten Lund.....http://dblp.org/pers/hd/l/Lund:Carsten", "Mark Lyn.....http://dblp.org/pers/hd/l/Lyn:Mark", "Sanjay G. Rao.....http://dblp.org/pers/hd/r/Rao:Sanjay_G=", "Subhabrata Sen.....http://dblp.org/pers/hd/s/Sen:Subhabrata"], "pages" : 12} | json_instruct | {"type": "object", "properties": {"title": {"type": "string"}, "fields": {"type": "array", "items": {"type": "string"}}, "abstract": {"type": "string"}, "citation": {"type": "string"}, "year": {"type": "string"}, "departments": {"type": "array", "items": {"type": "string"}}, "conf": {"type": "string"}, "authors": {"type": "array", "items": {"type": "string"}}, "pages": {"type": "integer"}}, "required": ["title", "fields", "abstract", "citation", "year", "departments", "conf", "authors", "pages"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"id": {"type": "integer"}, "source": {"type": "string"}, "verse_id": {"type": "integer"}, "verse_count": {"type": "integer"}, "reference": {"type": "string"}, "title": {"type": "string"}, "html": {"type": "string"}, "audit": {"type": "null"}}, "required": ["id", "source", "verse_id", "verse_count", "reference", "title", "html", "audit"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : 11123, "source" : "ellicott", "verse_id" : 18091, "verse_count" : 1, "reference" : "23:13", "title" : "", "html" : " <p> (13) Behold, the land of the Chaldeans.\u2014Heb., land of Kasdim. The prophet points to the destruction of one power that had resisted Assyria as an example of what Tyre might expect. The Assyrian inscriptions record the conquests referred to. Sargon relates his victory over the \u201cperverse and rebellious Chald\u00e6ans,\u201d who had rebelled under Mer\u00f4dach-baladan (Records of the Past, vii. 41, 45). Towns were pillaged, 80,570 men carried away captive from a single city. Sennacherib (ibid., p. 59) boasts of having plundered Babylon itself, and all the \u201cstrong cities and castles of the land of the Chald\u00e6ans\u201d; and again, of having crushed another revolt under Suzab the Babylonian (ibid., i. 47-49). The words that follow on this survey are better rendered: This people is no more: Asshur appointeth it for the desert beasts. They set up their towers, they destroy its palaces. The \u201ctowers are those of the Assyrian besiegers attacking Babylon; the palaces, those of the attacked. The words have, however, often been interpreted as pointing to the origin and migration of the Chald\u00e6ans, as having had scarcely any national existence till Assyria had brought them into the plains of the Euphrates. The English version seems based upon this interpretation of the passage. It is obvious, however, that such a fragment of ethnological history does not cohere well with the context, and gives a less satisfactory meaning. It is doubtful, too, whether the supposed history itself rests on any adequate evidence. </p> ", "audit" : null} | json_instruct | {"type": "object", "properties": {"id": {"type": "integer"}, "source": {"type": "string"}, "verse_id": {"type": "integer"}, "verse_count": {"type": "integer"}, "reference": {"type": "string"}, "title": {"type": "string"}, "html": {"type": "string"}, "audit": {"type": "null"}}, "required": ["id", "source", "verse_id", "verse_count", "reference", "title", "html", "audit"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"type": {"type": "string"}, "features": {"type": "array", "items": {"type": "object", "properties": {"geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["type", "coordinates"]}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"cartodb_id": {"type": "integer"}}, "required": ["cartodb_id"]}}, "required": ["geometry", "type", "properties"]}}}, "required": ["type", "features"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"type" : "FeatureCollection", "features" : [{"geometry" : {"type" : "Polygon", "coordinates" : [[[-80.712407, 41.310871], [-80.70528, 41.311204], [-80.705375, 41.331667], [-80.700358, 41.349819], [-80.617774, 41.350269], [-80.61806, 41.311223], [-80.617339, 41.272361], [-80.711744, 41.271927], [-80.71148, 41.293128], [-80.712407, 41.310871]]]}, "type" : "Feature", "properties" : {"cartodb_id" : 50137}}]} | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "features": {"type": "array", "items": {"type": "object", "properties": {"geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["type", "coordinates"]}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"cartodb_id": {"type": "integer"}}, "required": ["cartodb_id"]}}, "required": ["geometry", "type", "properties"]}}}, "required": ["type", "features"], "$schema": "http://json-schema.org/draft-07/schema#"} |
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"}, "start": {"type": "string"}}, "required": ["test", "start"]}, "author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"@vitalets/google-translate-api": {"type": "string"}, "body-parser": {"type": "string"}, "cors": {"type": "string"}, "dotenv": {"type": "string"}, "express": {"type": "string"}, "mongoose": {"type": "string"}, "nodemon": {"type": "string"}}, "required": ["@vitalets/google-translate-api", "body-parser", "cors", "dotenv", "express", "mongoose", "nodemon"]}}, "required": ["name", "version", "description", "main", "scripts", "author", "license", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "translate-text", "version" : "1.0.0", "description" : "The Rest API to translate the text from any language to another.", "main" : "app.js", "scripts" : {"test" : "echo \"Error: no test specified\" && exit 1", "start" : "nodemon app.js"}, "author" : "Sarthak Mittal", "license" : "MIT", "dependencies" : {"@vitalets/google-translate-api" : "^7.0.0", "body-parser" : "^1.19.0", "cors" : "^2.8.5", "dotenv" : "^10.0.0", "express" : "^4.17.1", "mongoose" : "^6.0.13", "nodemon" : "^2.0.15"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "start": {"type": "string"}}, "required": ["test", "start"]}, "author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"@vitalets/google-translate-api": {"type": "string"}, "body-parser": {"type": "string"}, "cors": {"type": "string"}, "dotenv": {"type": "string"}, "express": {"type": "string"}, "mongoose": {"type": "string"}, "nodemon": {"type": "string"}}, "required": ["@vitalets/google-translate-api", "body-parser", "cors", "dotenv", "express", "mongoose", "nodemon"]}}, "required": ["name", "version", "description", "main", "scripts", "author", "license", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "array", "items": {"type": "object", "properties": {"signature": {"type": "string"}, "result": {"type": "string"}}, "required": ["signature", "result"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"signature" : "async BlockNumber();", "result" : "64711"}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"signature": {"type": "string"}, "result": {"type": "string"}}, "required": ["signature", "result"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "damage": {"type": "array", "items": {"type": "integer"}}, "level": {"type": "integer"}}, "required": ["name", "damage", "level"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"name" : "Chuva de papel", "damage" : [10, 27], "level" : 1}, {"name" : "Clone de papel", "damage" : [1, 5], "level" : 2, "effect" : [1, 0]}, {"name" : "Papelada", "damage" : [15, 20], "level" : 3}, {"name" : "Espada de papel", "damage" : [15, 18], "level" : 4, "effect" : [1, 1]}, {"name" : "Meteoro de papel", "damage" : [25, 30], "level" : 5}, {"name" : "Papel explosivo", "damage" : [27, 30], "level" : 6}, {"name" : "Tormenta de papel", "damage" : [28, 31], "level" : 7}, {"name" : "Furia dos papeis", "damage" : [30, 32], "level" : 8}, {"name" : "Papel negro", "damage" : [33, 40], "level" : 10}, {"name" : "Chuva de papel negro", "damage" : [40, 50], "level" : 12}, {"name" : "Papel magico", "damage" : [35, 40], "level" : 13, "effect" : [1, 2], "self" : true}, {"name" : "Estrela de papel", "damage" : [50, 60], "level" : 15}, {"name" : "Chuva de papel magico", "damage" : [42, 47], "level" : 17, "self" : true, "effect" : [1, 2]}, {"name" : "Papel escarlate", "damage" : [50, 57], "level" : 18}, {"name" : "Catastofre", "damage" : [5, 100], "level" : 22}, {"name" : "Big bang de papel", "damage" : [55, 63], "level" : 24}, {"name" : "Universo de papel", "damage" : [65, 90], "level" : 30}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "damage": {"type": "array", "items": {"type": "integer"}}, "level": {"type": "integer"}}, "required": ["name", "damage", "level"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"stationId": {"type": "integer"}, "stationGroupId": {"type": "integer"}, "name": {"type": "string"}, "lineId": {"type": "integer"}, "zipCode": {"type": "string"}, "pref": {"type": "string"}, "city": {"type": "string"}, "town": {"type": "string"}, "longitude": {"type": "number"}, "latitude": {"type": "number"}, "status": {"type": "integer"}}, "required": ["stationId", "stationGroupId", "name", "lineId", "zipCode", "pref", "city", "town", "longitude", "latitude", "status"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"stationId" : 1120217, "stationGroupId" : 1120217, "name" : "\u6a2a\u624b", "lineId" : 11202, "zipCode" : "013-0036", "pref" : "\u79cb\u7530\u770c", "city" : "\u6a2a\u624b\u5e02", "town" : "\u99c5\u524d\u753a", "longitude" : 140.5604, "latitude" : 39.310146, "status" : 0} | json_instruct | {"type": "object", "properties": {"stationId": {"type": "integer"}, "stationGroupId": {"type": "integer"}, "name": {"type": "string"}, "lineId": {"type": "integer"}, "zipCode": {"type": "string"}, "pref": {"type": "string"}, "city": {"type": "string"}, "town": {"type": "string"}, "longitude": {"type": "number"}, "latitude": {"type": "number"}, "status": {"type": "integer"}}, "required": ["stationId", "stationGroupId", "name", "lineId", "zipCode", "pref", "city", "town", "longitude", "latitude", "status"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "url": {"type": "string"}}, "required": ["name", "description", "url"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "NFThub", "description" : "NFThub is aimed at becoming the producthunt of NFTs with a wide variety of useful features along with several direct integrations of 3rd party tools.", "url" : "https://nfthub.xyz/"} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "url": {"type": "string"}}, "required": ["name", "description", "url"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"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" : "0x570690385695a02f4bff0bfae997290ed6a15013e9ca8533c4cfcc3095513b19", "parentHash" : "0x7cbf69d3f139bb53510b5bc8977f9299122b3c7cdd8312bf7ed8977c1cbffdfb", "number" : 23041, "timestamp" : 1438538221, "nonce" : "0xbbf519fd3bf8dc17", "difficulty" : 1051203617018, "gasLimit" : {"_hex" : "0x1388"}, "gasUsed" : {"_hex" : "0x0"}, "miner" : "0x88D74a59454F6cF3B51ef6b9136AFb6b9D405A88", "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#"} |
Based on the schema below, produce a valid JSON object:
{"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" : 404357957, "type" : "Feature", "properties" : {"src:alt_label" : "quattroshapes", "src:geom" : "quattroshapes", "wof:geomhash" : "adfbc8b5255f212017ec4d206d5c6b30", "wof:id" : 404357957, "wof:repo" : "whosonfirst-data-admin-fr"}, "bbox" : [0.39020139974874, 48.63202201115136, 0.43338535659438, 48.6947800992686], "geometry" : {"coordinates" : [[[0.41688090588891, 48.63202201115136], [0.41163417652716, 48.63790193326055], [0.41749512019898, 48.64350998340301], [0.39983900157198, 48.64927268153738], [0.39020139974874, 48.66521636165974], [0.39614958455641, 48.6813656617962], [0.39127649816463, 48.6943173111982], [0.3963919507477, 48.6947800992686], [0.40676707333635, 48.68321701400391], [0.41255187510283, 48.67727710484309], [0.41137473144509, 48.67031294818385], [0.42720914917705, 48.64066931468344], [0.43338535659438, 48.63518677416587], [0.41688090588891, 48.63202201115136]]], "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#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"id": {"type": "integer"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"src:alt_label": {"type": "string"}, "src:geom": {"type": "string"}, "wof:geomhash": {"type": "string"}, "wof:id": {"type": "integer"}, "wof:repo": {"type": "string"}}, "required": ["src:alt_label", "src:geom", "wof:geomhash", "wof:id", "wof:repo"]}, "bbox": {"type": "array", "items": {"type": "number"}}, "geometry": {"type": "object", "properties": {"coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}, "type": {"type": "string"}}, "required": ["coordinates", "type"]}}, "required": ["id", "type", "properties", "bbox", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : 404411341, "type" : "Feature", "properties" : {"src:alt_label" : "quattroshapes", "src:geom" : "quattroshapes", "wof:geomhash" : "fea0804172ea34f92925907fc8e6cbfd", "wof:id" : 404411341, "wof:repo" : "whosonfirst-data-admin-fr"}, "bbox" : [0.32117122627562, 43.43812497308785, 0.36335224144275, 43.46571762556483], "geometry" : {"coordinates" : [[[0.34057083754288, 43.43812497308785], [0.33620708729459, 43.45072823899876], [0.32297696071394, 43.44960097936697], [0.32117122627562, 43.45918836585399], [0.32784991613643, 43.46571762556483], [0.33588347937977, 43.45904697907019], [0.34108915499777, 43.46352273910663], [0.35183328342913, 43.45349677250359], [0.36335224144275, 43.44885376375753], [0.36335162885188, 43.44239955255347], [0.35100316928572, 43.43852462659223], [0.34057083754288, 43.43812497308785]]], "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": {"text": {"type": "string"}, "created": {"type": "string"}, "type": {"type": "string"}}, "required": ["text", "created", "type"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"text" : "Another great Yogi saying: You can observe a lot by watching. ", "created" : "Thu, 23 Nov 2017 19:14:39 GMT", "type" : "outline"} | json_instruct | {"type": "object", "properties": {"text": {"type": "string"}, "created": {"type": "string"}, "type": {"type": "string"}}, "required": ["text", "created", "type"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "array", "items": {"type": "object", "properties": {"postal_code": {"type": "string"}, "place_name": {"type": "string"}, "place_type": {"type": "string"}, "county": {"type": "string"}, "state": {"type": "string"}, "city": {"type": "string"}}, "required": ["postal_code", "place_name", "place_type", "county", "state", "city"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"postal_code" : "79180", "place_name" : "Vergel", "place_type" : "Colonia", "county" : "Ebano", "state" : "San Luis Potos\u00ed", "city" : "\u00c9bano"}] | 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#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"name": {"type": "string"}, "symbol": {"type": "string"}, "id": {"type": "string"}, "decimals": {"type": "integer"}, "coingecko_url": {"type": "string"}, "market_cap_usd": {"type": "integer"}, "market_cap_rank": {"type": "integer"}, "24_hr_volume_usd": {"type": "integer"}, "logoURI": {"type": "string"}}, "required": ["name", "symbol", "id", "decimals", "coingecko_url", "market_cap_usd", "market_cap_rank", "24_hr_volume_usd", "logoURI"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "XIO Network", "symbol" : "XIO", "id" : "0x0f7F961648aE6Db43C75663aC7E5414Eb79b5704", "decimals" : 18, "coingecko_url" : "https://www.coingecko.com/en/coins/xio", "market_cap_usd" : 4264715, "market_cap_rank" : 1635, "24_hr_volume_usd" : 20526, "logoURI" : "https://raw.githubusercontent.com/poolsharks-protocol/token-metadata/master/blockchains/ethereum/assets/0x0f7F961648aE6Db43C75663aC7E5414Eb79b5704/logo.png"} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "symbol": {"type": "string"}, "id": {"type": "string"}, "decimals": {"type": "integer"}, "coingecko_url": {"type": "string"}, "market_cap_usd": {"type": "integer"}, "market_cap_rank": {"type": "integer"}, "24_hr_volume_usd": {"type": "integer"}, "logoURI": {"type": "string"}}, "required": ["name", "symbol", "id", "decimals", "coingecko_url", "market_cap_usd", "market_cap_rank", "24_hr_volume_usd", "logoURI"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"id": {"type": "string"}, "district_id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "district_id", "name"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "9107121005", "district_id" : "9107121", "name" : "ARAR"} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "district_id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "district_id", "name"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "number"}}}, "required": ["type", "coordinates"]}, "type": {"type": "string"}, "id": {"type": "string"}, "properties": {"type": "object", "properties": {"other_cities": {"type": "string"}, "city": {"type": "string"}, "state": {"type": "string"}, "county": {"type": "string"}}, "required": ["other_cities", "city", "state", "county"]}}, "required": ["geometry", "type", "id", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"geometry" : {"type" : "Point", "coordinates" : [-92.06, 30.4]}, "type" : "Feature", "id" : "70584", "properties" : {"other_cities" : "Cankton", "city" : "Sunset", "state" : "LA", "county" : "St Landry Parish"}} | json_instruct | {"type": "object", "properties": {"geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "number"}}}, "required": ["type", "coordinates"]}, "type": {"type": "string"}, "id": {"type": "string"}, "properties": {"type": "object", "properties": {"other_cities": {"type": "string"}, "city": {"type": "string"}, "state": {"type": "string"}, "county": {"type": "string"}}, "required": ["other_cities", "city", "state", "county"]}}, "required": ["geometry", "type", "id", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"project_info": {"type": "object", "properties": {"project_number": {"type": "string"}, "project_id": {"type": "string"}, "storage_bucket": {"type": "string"}}, "required": ["project_number", "project_id", "storage_bucket"]}, "client": {"type": "array", "items": {"type": "object", "properties": {"client_info": {"type": "object", "properties": {"mobilesdk_app_id": {"type": "string"}, "android_client_info": {"type": "object", "properties": {"package_name": {"type": "string"}}, "required": ["package_name"]}}, "required": ["mobilesdk_app_id", "android_client_info"]}, "oauth_client": {"type": "array", "items": {"type": "object", "properties": {"client_id": {"type": "string"}, "client_type": {"type": "integer"}}, "required": ["client_id", "client_type"]}}, "api_key": {"type": "array", "items": {"type": "object", "properties": {"current_key": {"type": "string"}}, "required": ["current_key"]}}, "services": {"type": "object", "properties": {"appinvite_service": {"type": "object", "properties": {"other_platform_oauth_client": {"type": "array", "items": {"type": "object", "properties": {"client_id": {"type": "string"}, "client_type": {"type": "integer"}}, "required": ["client_id", "client_type"]}}}, "required": ["other_platform_oauth_client"]}}, "required": ["appinvite_service"]}}, "required": ["client_info", "oauth_client", "api_key", "services"]}}, "configuration_version": {"type": "string"}}, "required": ["project_info", "client", "configuration_version"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"project_info" : {"project_number" : "787702660658", "project_id" : "recipe-book-7fa2b", "storage_bucket" : "recipe-book-7fa2b.appspot.com"}, "client" : [{"client_info" : {"mobilesdk_app_id" : "1:787702660658:android:fb48fb62b386a45a16062b", "android_client_info" : {"package_name" : "com.example.recipebook"}}, "oauth_client" : [{"client_id" : "787702660658-fsdrtqn60e54g5ohtq53mq8ighl45qte.apps.googleusercontent.com", "client_type" : 3}], "api_key" : [{"current_key" : "AIzaSyAqbev0LCjZzqyRK89rfjyP5agnJ83S9us"}], "services" : {"appinvite_service" : {"other_platform_oauth_client" : [{"client_id" : "787702660658-fsdrtqn60e54g5ohtq53mq8ighl45qte.apps.googleusercontent.com", "client_type" : 3}]}}}], "configuration_version" : "1"} | json_instruct | {"type": "object", "properties": {"project_info": {"type": "object", "properties": {"project_number": {"type": "string"}, "project_id": {"type": "string"}, "storage_bucket": {"type": "string"}}, "required": ["project_number", "project_id", "storage_bucket"]}, "client": {"type": "array", "items": {"type": "object", "properties": {"client_info": {"type": "object", "properties": {"mobilesdk_app_id": {"type": "string"}, "android_client_info": {"type": "object", "properties": {"package_name": {"type": "string"}}, "required": ["package_name"]}}, "required": ["mobilesdk_app_id", "android_client_info"]}, "oauth_client": {"type": "array", "items": {"type": "object", "properties": {"client_id": {"type": "string"}, "client_type": {"type": "integer"}}, "required": ["client_id", "client_type"]}}, "api_key": {"type": "array", "items": {"type": "object", "properties": {"current_key": {"type": "string"}}, "required": ["current_key"]}}, "services": {"type": "object", "properties": {"appinvite_service": {"type": "object", "properties": {"other_platform_oauth_client": {"type": "array", "items": {"type": "object", "properties": {"client_id": {"type": "string"}, "client_type": {"type": "integer"}}, "required": ["client_id", "client_type"]}}}, "required": ["other_platform_oauth_client"]}}, "required": ["appinvite_service"]}}, "required": ["client_info", "oauth_client", "api_key", "services"]}}, "configuration_version": {"type": "string"}}, "required": ["project_info", "client", "configuration_version"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"columns": {"type": "array", "items": {"type": "string"}}, "data": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}}, "required": ["columns", "data"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"columns" : ["goal", "guesses"], "data" : [["ADRED", "0: ABBES 1: ACTED 2: ADRED "]]} | json_instruct | {"type": "object", "properties": {"columns": {"type": "array", "items": {"type": "string"}}, "data": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}}, "required": ["columns", "data"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"JenAttackCoatRack": {"type": "object", "properties": {"sx": {"type": "integer"}, "sy": {"type": "integer"}, "cols": {"type": "integer"}, "tilew": {"type": "integer"}, "tileh": {"type": "integer"}, "frames": {"type": "integer"}}, "required": ["sx", "sy", "cols", "tilew", "tileh", "frames"]}}, "required": ["JenAttackCoatRack"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"JenAttackCoatRack" : {"sx" : 0, "sy" : 1, "cols" : 8, "tilew" : 240, "tileh" : 320, "frames" : 20}} | json_instruct | {"type": "object", "properties": {"JenAttackCoatRack": {"type": "object", "properties": {"sx": {"type": "integer"}, "sy": {"type": "integer"}, "cols": {"type": "integer"}, "tilew": {"type": "integer"}, "tileh": {"type": "integer"}, "frames": {"type": "integer"}}, "required": ["sx", "sy", "cols", "tilew", "tileh", "frames"]}}, "required": ["JenAttackCoatRack"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"baseObjects": {"type": "array", "items": {"type": "string"}}, "returnObjects": {"type": "array", "items": {"type": "string"}}, "callbackArgs": {"type": "array", "items": {}}}, "required": ["baseObjects", "returnObjects", "callbackArgs"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"baseObjects" : ["[\"X9\",\"R\",\"q|\"]"], "returnObjects" : ["\"Error\""], "callbackArgs" : []} | json_instruct | {"type": "object", "properties": {"baseObjects": {"type": "array", "items": {"type": "string"}}, "returnObjects": {"type": "array", "items": {"type": "string"}}, "callbackArgs": {"type": "array", "items": {}}}, "required": ["baseObjects", "returnObjects", "callbackArgs"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"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" : "Hi Chris,\n\n\nI think the higher resolution BSDF definitions, using the tensor tree\nrepresentation, will be important for accurate glare analysis. In Andy and\nGreg's presentation here:\n\n\nhttp://www.radiance-online.org/community/workshops/2011-berkeley-ca/presentations/day1/GW3_Multires_BSDF.pdf\n\n\n\n\non page 15 it compares a Klems BSDF with a 2X and 4X version, resulting in\nthe glare index dropping from 9% to 2%. They show the Klems resolution is\nfine for predicting annual quantities of light. But we should be careful,\nor really just use the tensor tree versions, when using them for glare\nanalysis. The 145 Klems patches just spread the lumens too much,\nparticularly for systems that may have a more focused or directional optic\nwith sharp cut-offs.\n\n\nRegards,\nZack\n___\n<sup>Automatically generated content from [radiance mailing-list](https://radiance-online.org/pipermail/radiance-general/2013-January/009172.html).</sup>", "attachments" : [], "created_by_name" : "Zack Rogers", "created_at" : "January 14, 2013 at 12:59PM", "created_by" : "Zack_Rogers", "parent_id" : "radiance-general_009166", "id" : "radiance-general_009172"} | 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": "object", "properties": {"no_of_atoms": {"type": "integer"}, "centre_of_mass": {"type": "array", "items": {"type": "number"}}, "maximum_diameter": {"type": "object", "properties": {"diameter": {"type": "number"}, "atom_1": {"type": "integer"}, "atom_2": {"type": "integer"}}, "required": ["diameter", "atom_1", "atom_2"]}, "pore_diameter": {"type": "object", "properties": {"diameter": {"type": "number"}, "atom": {"type": "integer"}}, "required": ["diameter", "atom"]}, "pore_volume": {"type": "number"}, "pore_diameter_opt": {"type": "object", "properties": {"diameter": {"type": "number"}, "atom_1": {"type": "integer"}, "centre_of_mass": {"type": "array", "items": {"type": "number"}}}, "required": ["diameter", "atom_1", "centre_of_mass"]}, "pore_volume_opt": {"type": "number"}, "windows": {"type": "object", "properties": {"diameters": {"type": "array", "items": {"type": "number"}}, "centre_of_mass": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}, "required": ["diameters", "centre_of_mass"]}}, "required": ["no_of_atoms", "centre_of_mass", "maximum_diameter", "pore_diameter", "pore_volume", "pore_diameter_opt", "pore_volume_opt", "windows"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"no_of_atoms" : 96, "centre_of_mass" : [19.22260850943634, 14.855875083646918, 5.525282041614947], "maximum_diameter" : {"diameter" : 21.92787261960133, "atom_1" : 65, "atom_2" : 80}, "pore_diameter" : {"diameter" : 5.361664456013552, "atom" : 76}, "pore_volume" : 80.70445641679395, "pore_diameter_opt" : {"diameter" : 5.540547970604196, "atom_1" : 18, "centre_of_mass" : [19.15653265309761, 14.802809085759286, 5.496684671523431]}, "pore_volume_opt" : 89.05468677791568, "windows" : {"diameters" : [5.328140477148471, 5.0716179515941935], "centre_of_mass" : [[19.502468625156723, 13.673622344286489, 6.206144341992648], [18.698849292111053, 16.145258807488304, 4.667742046521835]]}} | json_instruct | {"type": "object", "properties": {"no_of_atoms": {"type": "integer"}, "centre_of_mass": {"type": "array", "items": {"type": "number"}}, "maximum_diameter": {"type": "object", "properties": {"diameter": {"type": "number"}, "atom_1": {"type": "integer"}, "atom_2": {"type": "integer"}}, "required": ["diameter", "atom_1", "atom_2"]}, "pore_diameter": {"type": "object", "properties": {"diameter": {"type": "number"}, "atom": {"type": "integer"}}, "required": ["diameter", "atom"]}, "pore_volume": {"type": "number"}, "pore_diameter_opt": {"type": "object", "properties": {"diameter": {"type": "number"}, "atom_1": {"type": "integer"}, "centre_of_mass": {"type": "array", "items": {"type": "number"}}}, "required": ["diameter", "atom_1", "centre_of_mass"]}, "pore_volume_opt": {"type": "number"}, "windows": {"type": "object", "properties": {"diameters": {"type": "array", "items": {"type": "number"}}, "centre_of_mass": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}, "required": ["diameters", "centre_of_mass"]}}, "required": ["no_of_atoms", "centre_of_mass", "maximum_diameter", "pore_diameter", "pore_volume", "pore_diameter_opt", "pore_volume_opt", "windows"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"body": {"type": "string"}, "user": {"type": "string"}, "url": {"type": "string"}, "updated_at": {"type": "string"}, "created_at": {"type": "string"}, "closed_at": {"type": "string"}, "state": {"type": "string"}, "title": {"type": "string"}, "number": {"type": "integer"}, "milestone": {"type": "null"}, "labels": {"type": "array", "items": {"type": "string"}}, "id": {"type": "integer"}, "html_url": {"type": "string"}, "assignees": {"type": "array", "items": {}}, "comments": {"type": "integer"}}, "required": ["body", "user", "url", "updated_at", "created_at", "closed_at", "state", "title", "number", "milestone", "labels", "id", "html_url", "assignees", "comments"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"body" : "Successfully builds and passes all tests on macOS 10.15.7 with Python 3.8.11 and Apple Clang 12.0.0.\r\n\r\nFixes #25102 @fabratu \r\n\r\nSee https://github.com/serge-sans-paille/pythran/pull/1856", "user" : "adamjstewart", "url" : "https://api.github.com/repos/spack/spack/issues/25137", "updated_at" : "2021-08-22 14:38:48", "created_at" : "2021-07-29 18:45:17", "closed_at" : "2021-08-22 07:02:21", "state" : "closed", "title" : "py-pythran: add OpenMP dependency", "number" : 25137, "milestone" : null, "labels" : ["python", "dependencies", "patch", "update-package"], "id" : 956112263, "html_url" : "https://github.com/spack/spack/pull/25137", "assignees" : [], "comments" : 12} | json_instruct | {"type": "object", "properties": {"body": {"type": "string"}, "user": {"type": "string"}, "url": {"type": "string"}, "updated_at": {"type": "string"}, "created_at": {"type": "string"}, "closed_at": {"type": "string"}, "state": {"type": "string"}, "title": {"type": "string"}, "number": {"type": "integer"}, "milestone": {"type": "null"}, "labels": {"type": "array", "items": {"type": "string"}}, "id": {"type": "integer"}, "html_url": {"type": "string"}, "assignees": {"type": "array", "items": {}}, "comments": {"type": "integer"}}, "required": ["body", "user", "url", "updated_at", "created_at", "closed_at", "state", "title", "number", "milestone", "labels", "id", "html_url", "assignees", "comments"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "authors": {"type": "array", "items": {"type": "string"}}, "license": {"type": "string"}, "homepage": {"type": "string"}, "moduleType": {"type": "array", "items": {}}, "dependencies": {"type": "object", "properties": {"font-awesome": {"type": "string"}, "bootstrap": {"type": "string"}}, "required": ["font-awesome", "bootstrap"]}}, "required": ["name", "description", "main", "authors", "license", "homepage", "moduleType", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "CV", "description" : "https://clemente.io", "main" : "", "authors" : ["Lucas Clemente"], "license" : "MIT", "homepage" : "https://clemente.io", "moduleType" : [], "dependencies" : {"font-awesome" : "fontawesome#^4.5.0", "bootstrap" : "v4.0.0-alpha.2"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "authors": {"type": "array", "items": {"type": "string"}}, "license": {"type": "string"}, "homepage": {"type": "string"}, "moduleType": {"type": "array", "items": {}}, "dependencies": {"type": "object", "properties": {"font-awesome": {"type": "string"}, "bootstrap": {"type": "string"}}, "required": ["font-awesome", "bootstrap"]}}, "required": ["name", "description", "main", "authors", "license", "homepage", "moduleType", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"idf.portWin": {"type": "string"}}, "required": ["idf.portWin"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"idf.portWin" : "COM5"} | json_instruct | {"type": "object", "properties": {"idf.portWin": {"type": "string"}}, "required": ["idf.portWin"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"word" : "relativeness", "definition" : "The state of being relative, or having relation; relativity."} | json_instruct | {"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"sources": {"type": "array", "items": {"type": "object", "properties": {"src": {"type": "string"}, "type": {"type": "string"}, "size": {"type": "integer"}}, "required": ["src", "type", "size"]}}, "tracks": {"type": "array", "items": {}}, "posters": {"type": "array", "items": {"type": "object", "properties": {"src": {"type": "string"}, "type": {"type": "string"}}, "required": ["src", "type"]}}, "season": {"type": "integer"}, "episode": {"type": "integer"}, "title": {"type": "string"}, "description": {"type": "string"}, "date": {"type": "integer"}, "duration": {"type": "integer"}}, "required": ["sources", "tracks", "posters", "season", "episode", "title", "description", "date", "duration"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"sources" : [{"src" : "//cdn.unusann.us/01/047/1080.mp4", "type" : "video/mp4", "size" : 1080}, {"src" : "//cdn.unusann.us/01/047/720.mp4", "type" : "video/mp4", "size" : 720}, {"src" : "//cdn.unusann.us/01/047/480.mp4", "type" : "video/mp4", "size" : 480}, {"src" : "//cdn.unusann.us/01/047/360.mp4", "type" : "video/mp4", "size" : 360}, {"src" : "//cdn.unusann.us/01/047/240.mp4", "type" : "video/mp4", "size" : 240}], "tracks" : [], "posters" : [{"src" : "//cdn.unusann.us/thumbnails/01/047.webp", "type" : "image/webp"}, {"src" : "//cdn.unusann.us/thumbnails/01/047.jpg", "type" : "image/jpeg"}], "season" : 1, "episode" : 47, "title" : "You Blink You Lose", "description" : "The eyes are the window into the soul. You better not look away... you might miss something.<br>PEEN \u25ba<a target=\"blank\" href=\"https://youtu.be/553CfZAADag\">https://youtu.be/553CfZAADag</a><br><br>Edited by \u25ba <a target=\"blank\" href=\"http://www.youtube.com/crankgameplays\">http://www.youtube.com/crankgameplays</a><br><br>This channel, along with every video that has or will ever be uploaded on this channel, will be deleted after our year has ended. This is inevitable. Inescapable. Irreversible.<br>Do not archive or re-upload anything. This is our last wish. Our parting gift. Stay true to the purpose of our final year or we shall lay down wrath upon those that attempt to escape the end.<br><br>Memento Mori.<br>Unus Annus.", "date" : 1577732400000, "duration" : 784} | json_instruct | {"type": "object", "properties": {"sources": {"type": "array", "items": {"type": "object", "properties": {"src": {"type": "string"}, "type": {"type": "string"}, "size": {"type": "integer"}}, "required": ["src", "type", "size"]}}, "tracks": {"type": "array", "items": {}}, "posters": {"type": "array", "items": {"type": "object", "properties": {"src": {"type": "string"}, "type": {"type": "string"}}, "required": ["src", "type"]}}, "season": {"type": "integer"}, "episode": {"type": "integer"}, "title": {"type": "string"}, "description": {"type": "string"}, "date": {"type": "integer"}, "duration": {"type": "integer"}}, "required": ["sources", "tracks", "posters", "season", "episode", "title", "description", "date", "duration"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"Bacon.js": {"type": "string"}, "Bacon.min.js": {"type": "string"}}, "required": ["Bacon.js", "Bacon.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"Bacon.js" : "sha256-/BRFT01KGiyewP7tIYh2qOJxDmORukz1qSa9DVoX8dk=", "Bacon.min.js" : "sha256-UlVzW7ZsAjE1hqIs5t06ClBYMwL1AFkDOrmDjSLF5cY="} | json_instruct | {"type": "object", "properties": {"Bacon.js": {"type": "string"}, "Bacon.min.js": {"type": "string"}}, "required": ["Bacon.js", "Bacon.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"decimals": {"type": "integer"}, "isBooleanAmount": {"type": "boolean"}, "name": {"type": "string"}, "description": {"type": "string"}, "tags": {"type": "array", "items": {"type": "string"}}, "minter": {"type": "string"}, "artifactUri": {"type": "string"}}, "required": ["decimals", "isBooleanAmount", "name", "description", "tags", "minter", "artifactUri"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"decimals" : 0, "isBooleanAmount" : true, "name" : "Pixelnaut #010", "description" : "We are all astronauts in the space..\n\nWe are all astronauts in the space of life. Each day we explore new horizons and experience new adventures. We may encounter challenges and setbacks, but we must continue on our journey, for it is only through exploration that we can discover our true potential. Let us embrace the unknown and celebrate the journey of life", "tags" : ["ai", "pixelart", "astronauts"], "minter" : "tz1M2CgoaEQJ6x2QkMgtP3eNs6FpUPNLvpKU", "artifactUri" : "ipfs://QmT8id6UTb35fHZr5bRMVsbYbUo8kckMs7AXcmsPMJZk3L"} | json_instruct | {"type": "object", "properties": {"decimals": {"type": "integer"}, "isBooleanAmount": {"type": "boolean"}, "name": {"type": "string"}, "description": {"type": "string"}, "tags": {"type": "array", "items": {"type": "string"}}, "minter": {"type": "string"}, "artifactUri": {"type": "string"}}, "required": ["decimals", "isBooleanAmount", "name", "description", "tags", "minter", "artifactUri"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"id": {"type": "integer"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"src:alt_label": {"type": "string"}, "src:geom": {"type": "string"}, "wof:geomhash": {"type": "string"}, "wof:id": {"type": "integer"}, "wof:repo": {"type": "string"}}, "required": ["src:alt_label", "src:geom", "wof:geomhash", "wof:id", "wof:repo"]}, "bbox": {"type": "array", "items": {"type": "number"}}, "geometry": {"type": "object", "properties": {"coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}, "type": {"type": "string"}}, "required": ["coordinates", "type"]}}, "required": ["id", "type", "properties", "bbox", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : 404388191, "type" : "Feature", "properties" : {"src:alt_label" : "quattroshapes", "src:geom" : "quattroshapes", "wof:geomhash" : "f7042688bd298f443145901b4c668c71", "wof:id" : 404388191, "wof:repo" : "whosonfirst-data-admin-fr"}, "bbox" : [6.26153598496847, 48.84942857807706, 6.30011133865634, 48.86836083185174], "geometry" : {"coordinates" : [[[6.28547206148185, 48.84942857807706], [6.26814909200324, 48.85222552521059], [6.26153598496847, 48.85617745013472], [6.26685597346059, 48.86096473877429], [6.28895895363501, 48.86836083185174], [6.29746267705041, 48.86647954789395], [6.30011133865634, 48.85251789078903], [6.28547206148185, 48.84942857807706]]], "type" : "Polygon"}} | json_instruct | {"type": "object", "properties": {"id": {"type": "integer"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"src:alt_label": {"type": "string"}, "src:geom": {"type": "string"}, "wof:geomhash": {"type": "string"}, "wof:id": {"type": "integer"}, "wof:repo": {"type": "string"}}, "required": ["src:alt_label", "src:geom", "wof:geomhash", "wof:id", "wof:repo"]}, "bbox": {"type": "array", "items": {"type": "number"}}, "geometry": {"type": "object", "properties": {"coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}, "type": {"type": "string"}}, "required": ["coordinates", "type"]}}, "required": ["id", "type", "properties", "bbox", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "array", "items": {"type": "object", "properties": {"\u7ea7\u522b": {"type": "string"}, "\u53c2\u6570": {"type": "string"}, "\u5168\u79f0": {"type": "string"}, "\u610f\u4e49": {"type": "string"}, "\u5fc5\u8981": {"type": "string"}, "\u578b\u522b": {"type": "string"}, "\u53ef\u586b\u503c": {"type": "string"}}, "required": ["\u7ea7\u522b", "\u53c2\u6570", "\u5168\u79f0", "\u610f\u4e49", "\u5fc5\u8981", "\u578b\u522b", "\u53ef\u586b\u503c"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"\u7ea7\u522b" : "0", "\u53c2\u6570" : "p1", "\u5168\u79f0" : "touch", "\u610f\u4e49" : "\u884c\u4e3a\u52a8\u4f5c", "\u5fc5\u8981" : "\u5fc5\u8981", "\u578b\u522b" : "str", "\u53ef\u586b\u503c" : "push"}, {"\u7ea7\u522b" : "1", "\u53c2\u6570" : "refer", "\u5168\u79f0" : "control", "\u610f\u4e49" : "\u4e1a\u52a1\u96c6\u5408", "\u5fc5\u8981" : "\u5fc5\u8981", "\u578b\u522b" : "str", "\u53ef\u586b\u503c" : "\u4f9d\u8be6\u7ec6\u4e1a\u52a1\u5217\u4e3e"}, {"\u7ea7\u522b" : "2", "\u53c2\u6570" : "page", "\u5168\u79f0" : "page", "\u610f\u4e49" : "\u4e3b\u8981\u5206\u9875", "\u5fc5\u8981" : "\u5fc5\u8981", "\u578b\u522b" : "str", "\u53ef\u586b\u503c" : "\u4f9d\u8be6\u7ec6\u4e1a\u52a1\u5217\u4e3e"}, {"\u7ea7\u522b" : "6", "\u53c2\u6570" : "vlu", "\u5168\u79f0" : "value", "\u610f\u4e49" : "\u9644\u52a0\u53c2\u6570", "\u5fc5\u8981" : "\u5fc5\u8981", "\u578b\u522b" : "jason", "\u53ef\u586b\u503c" : "\u4f9d\u8be6\u7ec6\u4e1a\u52a1\u5217\u4e3e"}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"\u7ea7\u522b": {"type": "string"}, "\u53c2\u6570": {"type": "string"}, "\u5168\u79f0": {"type": "string"}, "\u610f\u4e49": {"type": "string"}, "\u5fc5\u8981": {"type": "string"}, "\u578b\u522b": {"type": "string"}, "\u53ef\u586b\u503c": {"type": "string"}}, "required": ["\u7ea7\u522b", "\u53c2\u6570", "\u5168\u79f0", "\u610f\u4e49", "\u5fc5\u8981", "\u578b\u522b", "\u53ef\u586b\u503c"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "code": {"type": "string"}, "address": {"type": "object", "properties": {"addressLine1": {"type": "string"}, "addressLine2": {"type": "string"}, "town": {"type": "string"}, "postcode": {"type": "string"}}, "required": ["addressLine1", "addressLine2", "town", "postcode"]}, "organisation": {"type": "object", "properties": {"id": {"type": "string"}, "code": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "code", "name"]}}, "required": ["id", "name", "code", "address", "organisation"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "08ee8049-0fc5-47c0-a535-a6a3e7b804a4", "name" : "St Anne's Catholic Primary School", "code" : "8", "address" : {"addressLine1" : "Underwood Road", "addressLine2" : "Whitechapel", "town" : "London", "postcode" : "E1 5AW"}, "organisation" : {"id" : "8eaad1be-be05-4b10-b15d-02ba86607a43", "code" : "15O", "name" : "Saint John Southworth Enterprise and Research Alliance"}} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "code": {"type": "string"}, "address": {"type": "object", "properties": {"addressLine1": {"type": "string"}, "addressLine2": {"type": "string"}, "town": {"type": "string"}, "postcode": {"type": "string"}}, "required": ["addressLine1", "addressLine2", "town", "postcode"]}, "organisation": {"type": "object", "properties": {"id": {"type": "string"}, "code": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "code", "name"]}}, "required": ["id", "name", "code", "address", "organisation"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"scripts": {"type": "object", "properties": {"build": {"type": "string"}}, "required": ["build"]}, "engines": {"type": "object", "properties": {"node": {"type": "string"}}, "required": ["node"]}, "dependencies": {"type": "object", "properties": {"autoprefixer": {"type": "string"}, "postcss": {"type": "string"}, "tailwindcss": {"type": "string"}}, "required": ["autoprefixer", "postcss", "tailwindcss"]}}, "required": ["scripts", "engines", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"scripts" : {"build" : "tailwindcss build frontend/site.css -c frontend/tailwind.config.js -o static/site.css"}, "engines" : {"node" : "15.x"}, "dependencies" : {"autoprefixer" : "^10.2.5", "postcss" : "^8.2.12", "tailwindcss" : "^2.1.2"}} | json_instruct | {"type": "object", "properties": {"scripts": {"type": "object", "properties": {"build": {"type": "string"}}, "required": ["build"]}, "engines": {"type": "object", "properties": {"node": {"type": "string"}}, "required": ["node"]}, "dependencies": {"type": "object", "properties": {"autoprefixer": {"type": "string"}, "postcss": {"type": "string"}, "tailwindcss": {"type": "string"}}, "required": ["autoprefixer", "postcss", "tailwindcss"]}}, "required": ["scripts", "engines", "dependencies"], "$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" : "3526050017", "district_id" : "3526050", "name" : "NYOR MANIS"} | 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#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"cropper.css": {"type": "string"}, "cropper.js": {"type": "string"}, "cropper.min.css": {"type": "string"}, "cropper.min.js": {"type": "string"}}, "required": ["cropper.css", "cropper.js", "cropper.min.css", "cropper.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"cropper.css" : "sha512-QQy7ZHnwQ6hIzilvHfnylmm7wCEK5bO8lbyqUom7CBLjugWXNTJBQ1mk0Kz1D1udOpZPp6GLDb6+ea3g0UakGQ==", "cropper.js" : "sha512-2+wspPCEhjLG2LoHe8qnDPnG2c3LKwXxUQczv6PdpttZ8/AygbqNKLUTM37U5qOEb55W3R5PA28nMUvOGxk8CA==", "cropper.min.css" : "sha512-FRnZGqDO4JzhXuf5eI1A2jA7xGwkjwnmoZkuY93hmqvvAWi7j5sgsCmTF1LSbN1/g5O4YH2/IXbatQqkOINjwQ==", "cropper.min.js" : "sha512-kJYDxmMIPb7GpmjUEvCXr1chy806zr9em2+FGRhotnbMXv6dlOCS2LmCdy6/wpPQZIbpvHguNVW+7Hx+j1/rsA=="} | json_instruct | {"type": "object", "properties": {"cropper.css": {"type": "string"}, "cropper.js": {"type": "string"}, "cropper.min.css": {"type": "string"}, "cropper.min.js": {"type": "string"}}, "required": ["cropper.css", "cropper.js", "cropper.min.css", "cropper.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "private": {"type": "boolean"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "build": {"type": "string"}, "start": {"type": "string"}, "watch": {"type": "string"}, "server": {"type": "string"}}, "required": ["test", "build", "start", "watch", "server"]}, "keywords": {"type": "array", "items": {}}, "author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"@convergence/color-assigner": {"type": "string"}, "monaco-editor": {"type": "string"}, "peer": {"type": "string"}, "peerjs": {"type": "string"}}, "required": ["@convergence/color-assigner", "monaco-editor", "peer", "peerjs"]}, "devDependencies": {"type": "object", "properties": {"@convergencelabs/monaco-collab-ext": {"type": "string"}, "clean-webpack-plugin": {"type": "string"}, "css-loader": {"type": "string"}, "dart-sass": {"type": "string"}, "express": {"type": "string"}, "html-webpack-plugin": {"type": "string"}, "mini-css-extract-plugin": {"type": "string"}, "sass-loader": {"type": "string"}, "style-loader": {"type": "string"}, "ts-loader": {"type": "string"}, "typescript": {"type": "string"}, "webpack": {"type": "string"}, "webpack-cli": {"type": "string"}, "webpack-dev-middleware": {"type": "string"}, "webpack-dev-server": {"type": "string"}}, "required": ["@convergencelabs/monaco-collab-ext", "clean-webpack-plugin", "css-loader", "dart-sass", "express", "html-webpack-plugin", "mini-css-extract-plugin", "sass-loader", "style-loader", "ts-loader", "typescript", "webpack", "webpack-cli", "webpack-dev-middleware", "webpack-dev-server"]}}, "required": ["name", "version", "description", "private", "scripts", "keywords", "author", "license", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "eb-editor", "version" : "1.0.0", "description" : "", "private" : true, "scripts" : {"test" : "echo \"Error: no test specified\" && exit 1", "build" : "webpack", "start" : "webpack-dev-server --open", "watch" : "webpack --watch", "server" : "node server.js"}, "keywords" : [], "author" : "", "license" : "MIT", "dependencies" : {"@convergence/color-assigner" : "^0.3.0", "monaco-editor" : "^0.17.0", "peer" : "^0.2.10", "peerjs" : "^1.0.0"}, "devDependencies" : {"@convergencelabs/monaco-collab-ext" : "^0.1.1", "clean-webpack-plugin" : "^2.0.2", "css-loader" : "^2.1.1", "dart-sass" : "^1.20.1", "express" : "^4.17.0", "html-webpack-plugin" : "^3.2.0", "mini-css-extract-plugin" : "^0.6.0", "sass-loader" : "^7.1.0", "style-loader" : "^0.23.1", "ts-loader" : "^6.0.1", "typescript" : "^3.4.5", "webpack" : "^4.31.0", "webpack-cli" : "^3.3.2", "webpack-dev-middleware" : "^3.7.0", "webpack-dev-server" : "^3.4.1"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "private": {"type": "boolean"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "build": {"type": "string"}, "start": {"type": "string"}, "watch": {"type": "string"}, "server": {"type": "string"}}, "required": ["test", "build", "start", "watch", "server"]}, "keywords": {"type": "array", "items": {}}, "author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"@convergence/color-assigner": {"type": "string"}, "monaco-editor": {"type": "string"}, "peer": {"type": "string"}, "peerjs": {"type": "string"}}, "required": ["@convergence/color-assigner", "monaco-editor", "peer", "peerjs"]}, "devDependencies": {"type": "object", "properties": {"@convergencelabs/monaco-collab-ext": {"type": "string"}, "clean-webpack-plugin": {"type": "string"}, "css-loader": {"type": "string"}, "dart-sass": {"type": "string"}, "express": {"type": "string"}, "html-webpack-plugin": {"type": "string"}, "mini-css-extract-plugin": {"type": "string"}, "sass-loader": {"type": "string"}, "style-loader": {"type": "string"}, "ts-loader": {"type": "string"}, "typescript": {"type": "string"}, "webpack": {"type": "string"}, "webpack-cli": {"type": "string"}, "webpack-dev-middleware": {"type": "string"}, "webpack-dev-server": {"type": "string"}}, "required": ["@convergencelabs/monaco-collab-ext", "clean-webpack-plugin", "css-loader", "dart-sass", "express", "html-webpack-plugin", "mini-css-extract-plugin", "sass-loader", "style-loader", "ts-loader", "typescript", "webpack", "webpack-cli", "webpack-dev-middleware", "webpack-dev-server"]}}, "required": ["name", "version", "description", "private", "scripts", "keywords", "author", "license", "dependencies", "devDependencies"], "$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:server": {"type": "string"}}, "required": ["start:server"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "dependencies": {"type": "object", "properties": {"json-server": {"type": "string"}, "lodash": {"type": "string"}}, "required": ["json-server", "lodash"]}}, "required": ["name", "version", "description", "main", "scripts", "repository", "keywords", "author", "license", "bugs", "homepage", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "json-server-multiples-files", "version" : "1.0.0", "description" : "A way to serve multiple json files using the json-server package", "main" : "json-server.index.js", "scripts" : {"start:server" : "nodemon --watch test/mock json-server.index.js"}, "repository" : {"type" : "git", "url" : "git+https://github.com/JeanReneRobin/json-server-multiple-files.git"}, "keywords" : ["json", "server", "mockup"], "author" : "Jean-Ren\u00e9 Robin", "license" : "MIT", "bugs" : {"url" : "https://github.com/JeanReneRobin/json-server-multiple-files/issues"}, "homepage" : "https://github.com/JeanReneRobin/json-server-multiple-files#readme", "dependencies" : {"json-server" : "^0.14.2", "lodash" : ">=4.17.13"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"start:server": {"type": "string"}}, "required": ["start:server"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "dependencies": {"type": "object", "properties": {"json-server": {"type": "string"}, "lodash": {"type": "string"}}, "required": ["json-server", "lodash"]}}, "required": ["name", "version", "description", "main", "scripts", "repository", "keywords", "author", "license", "bugs", "homepage", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [[1959, 6], [1962, 5], [1963, 6], [1964, 5], [1965, 9], [1966, 8], [1967, 6], [1968, 7], [1969, 9], [1971, 9], [1972, 8], [1973, 7], [1975, 8], [1976, 7], [1981, 6], [1982, 5], [1983, 5]] | json_instruct | {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"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" : "Fontenotte", "dpt" : "Doubs", "inscrits" : 49, "abs" : 9, "votants" : 40, "blancs" : 5, "nuls" : 2, "exp" : 33, "res" : [{"panneau" : "1", "voix" : 19}, {"panneau" : "2", "voix" : 14}]} | 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#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"text": {"type": "string"}, "url": {"type": "string"}}, "required": ["text", "url"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"text" : " Graphing a Piecewise Function\n\ng(x)\\left\\{\\begin{array}{cc}\\n-2 & \\text { if } x<-4 \\\\\\nx-3 & \\text { if }-1 \\leq x \\leq 5 \\\\\\n2 x-15 & \\text { if } x>7\\n\\end{array}\\right.[imath]-2 & \\text { if } x<-4 [/imath] [imath]x-3 & \\text { if }-1 \\leq x \\leq 5 [/imath] [imath]2 x-15 & \\text { if } x>7[/imath] \n\n\n", "url" : "https://www.youtube.com/watch?v=QIG8LvPNNJQ"} | json_instruct | {"type": "object", "properties": {"text": {"type": "string"}, "url": {"type": "string"}}, "required": ["text", "url"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"id": {"type": "string"}, "text": {"type": "string"}}, "required": ["id", "text"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "d1708-5", "text" : "6\nUNIVERSITY OF MICHIGAN\nJanuary 8\nPrenatal Development. \u2014 Bradley M. Patten, Professor of\nAnatomy and Director of the Anatomical Laboratories\nJanuary 15\nPrenatal Care.\u2014John L. Law, M.D., Assistant Professor of\nPediatrics and Infectious Diseases\nJanuary 22\nChild Conservation.\u2014Lavinia G. MacKaye, M.D., Pediatri'\ncian in the University Elementary School\nFebruary 19\nPsychological Development in Infancy.\u2014Martha G. Colby,\nAssociate Professor of Psychology\nFebruary 26\nThe Significance of Mental Hygiene for Adolescents.\u2014Paul\nJordan, M.D., Neuropsychiatric Institute\nMarch 5\nHeredity and the Family.\u2014A. Franklin Shull, Professor of\nZoology\nMarch 12\nThe Relation of the Family to Delinquency.\u2014Lowell J. Carr,\nAssociate Professor of Sociology\nMarch 19\nThe Family Diet.\u2014Mable McLachlan, Lecturer in Hygiene\nMarch 26\nThe Health of a Family.\u2014Herman H. Riecker, Associate\nProfessor of Internal Medicine\nApril 2\nSpace and Equipment for the Young Child.\u2014Myrtle B. Fire-\nstone, Instructor in Elementary Education\nApril 9\nComparison Between Urban and Rural Family Life.\u2014Roy\nH. Holmes, Assistant Professor of Sociology\nLET\u2019S SING\nMondays, 3:00-3:30 p.m.\nJoseph E. Maddy, Professor of Radio Music Instruction in the\nExtension Service, will conduct each Monday a class in elementary\nsinging designed for schools and for adult listeners. In presenting"} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "text": {"type": "string"}}, "required": ["id", "text"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"rustc": {"type": "integer"}, "features": {"type": "string"}, "target": {"type": "integer"}, "profile": {"type": "integer"}, "path": {"type": "integer"}, "deps": {"type": "array", "items": {}}, "local": {"type": "array", "items": {"type": "object", "properties": {"CheckDepInfo": {"type": "object", "properties": {"dep_info": {"type": "string"}}, "required": ["dep_info"]}}, "required": ["CheckDepInfo"]}}, "rustflags": {"type": "array", "items": {}}, "metadata": {"type": "integer"}}, "required": ["rustc", "features", "target", "profile", "path", "deps", "local", "rustflags", "metadata"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"rustc" : 951959831004604366, "features" : "[\"default\", \"proc-macro\"]", "target" : 10429514197457385088, "profile" : 9935990280773120926, "path" : 15949328775536069176, "deps" : [], "local" : [{"CheckDepInfo" : {"dep_info" : "debug/.fingerprint/proc-macro2-3244c9f6b9799710/dep-build-script-build_script_build-3244c9f6b9799710"}}], "rustflags" : [], "metadata" : 14399165043509735265} | json_instruct | {"type": "object", "properties": {"rustc": {"type": "integer"}, "features": {"type": "string"}, "target": {"type": "integer"}, "profile": {"type": "integer"}, "path": {"type": "integer"}, "deps": {"type": "array", "items": {}}, "local": {"type": "array", "items": {"type": "object", "properties": {"CheckDepInfo": {"type": "object", "properties": {"dep_info": {"type": "string"}}, "required": ["dep_info"]}}, "required": ["CheckDepInfo"]}}, "rustflags": {"type": "array", "items": {}}, "metadata": {"type": "integer"}}, "required": ["rustc", "features", "target", "profile", "path", "deps", "local", "rustflags", "metadata"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"copyright_text": {"type": "string"}, "description": {"type": "string"}, "duration": {"type": "integer"}, "language": {"type": "string"}, "recorded": {"type": "string"}, "speakers": {"type": "array", "items": {"type": "string"}}, "tags": {"type": "array", "items": {"type": "string"}}, "thumbnail_url": {"type": "string"}, "title": {"type": "string"}, "videos": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}}}, "required": ["copyright_text", "description", "duration", "language", "recorded", "speakers", "tags", "thumbnail_url", "title", "videos"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"copyright_text" : "Creative Commons Attribution license (reuse allowed)", "description" : "Lightning Talks from PyGotham 2017", "duration" : 3927, "language" : "eng", "recorded" : "2017-10-06", "speakers" : ["Fangfei Shen", "Evan Monkawa", "Paul Ganssle", "Timothy Allen", "Todd Green", "Eric Schles", "Aabir Abubaker Kar", "Kevin Najimi", "Kenneth Love", "Matthew Rocklin", "Ernest W. Durbin III"], "tags" : ["lightning talks"], "thumbnail_url" : "https://i.ytimg.com/vi/F9_PGp4zR-8/maxresdefault.jpg", "title" : "The Ministry of Silly Talks", "videos" : [{"type" : "youtube", "url" : "https://www.youtube.com/watch?v=F9_PGp4zR-8"}]} | json_instruct | {"type": "object", "properties": {"copyright_text": {"type": "string"}, "description": {"type": "string"}, "duration": {"type": "integer"}, "language": {"type": "string"}, "recorded": {"type": "string"}, "speakers": {"type": "array", "items": {"type": "string"}}, "tags": {"type": "array", "items": {"type": "string"}}, "thumbnail_url": {"type": "string"}, "title": {"type": "string"}, "videos": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}}}, "required": ["copyright_text", "description", "duration", "language", "recorded", "speakers", "tags", "thumbnail_url", "title", "videos"], "$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"}, "aliases": {"type": "array", "items": {"type": "string"}}, "description": {"type": "string"}, "website": {"type": "string"}, "license": {"type": "array", "items": {"type": "object", "properties": {"spdx": {"type": "string"}, "licenseURL": {"type": "string"}}, "required": ["spdx", "licenseURL"]}}, "SDGs": {"type": "array", "items": {"type": "object", "properties": {"SDGNumber": {"type": "integer"}, "evidenceText": {"type": "string"}}, "required": ["SDGNumber", "evidenceText"]}}, "sectors": {"type": "array", "items": {"type": "string"}}, "type": {"type": "array", "items": {"type": "string"}}, "repositories": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "url": {"type": "string"}}, "required": ["name", "url"]}}, "organizations": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "website": {"type": "string"}, "org_type": {"type": "string"}, "contact_name": {"type": "string"}, "contact_email": {"type": "string"}}, "required": ["name", "website", "org_type", "contact_name", "contact_email"]}}, "stage": {"type": "string"}}, "required": ["name", "aliases", "description", "website", "license", "SDGs", "sectors", "type", "repositories", "organizations", "stage"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "Aam Digital", "aliases" : [""], "description" : "Open source case management software for the social Sector. It provides an easy-to-use case management web app for NGOs anywhere in the world.", "website" : "https://www.aam-digital.com", "license" : [{"spdx" : "GPL-3.0", "licenseURL" : "https://github.com/Aam-Digital/ndb-core/blob/master/LICENSE.md"}], "SDGs" : [{"SDGNumber" : 1, "evidenceText" : "Aam Digital is used by social sector organizations that directly work with beneficiaries on the ground. It thereby contributes to the eradication of poverty."}, {"SDGNumber" : 3, "evidenceText" : "Aam Digital is used in projects, with the objective of improving beneficiaries' health and thereby contributes to SDG 4."}, {"SDGNumber" : 4, "evidenceText" : "Aam Digital is used in educational projects and thereby contributes to SDG 4."}, {"SDGNumber" : 5, "evidenceText" : "Aam Digital can be used in projects with a focus on gender equity and thereby contribute to SGD 5."}, {"SDGNumber" : 10, "evidenceText" : "As a tool for social sector organizations that work with marginalized communities, it contributes to SDG 10."}], "sectors" : ["Gender and Minority Groups"], "type" : ["software"], "repositories" : [{"name" : "main", "url" : "https://github.com/Aam-Digital/ndb-core"}], "organizations" : [{"name" : "Aam Digital GmbH", "website" : "https://www.aam-digital.com", "org_type" : "maintainer", "contact_name" : "Sebastian Leidig", "contact_email" : "[email protected]"}], "stage" : "DPG"} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "aliases": {"type": "array", "items": {"type": "string"}}, "description": {"type": "string"}, "website": {"type": "string"}, "license": {"type": "array", "items": {"type": "object", "properties": {"spdx": {"type": "string"}, "licenseURL": {"type": "string"}}, "required": ["spdx", "licenseURL"]}}, "SDGs": {"type": "array", "items": {"type": "object", "properties": {"SDGNumber": {"type": "integer"}, "evidenceText": {"type": "string"}}, "required": ["SDGNumber", "evidenceText"]}}, "sectors": {"type": "array", "items": {"type": "string"}}, "type": {"type": "array", "items": {"type": "string"}}, "repositories": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "url": {"type": "string"}}, "required": ["name", "url"]}}, "organizations": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "website": {"type": "string"}, "org_type": {"type": "string"}, "contact_name": {"type": "string"}, "contact_email": {"type": "string"}}, "required": ["name", "website", "org_type", "contact_name", "contact_email"]}}, "stage": {"type": "string"}}, "required": ["name", "aliases", "description", "website", "license", "SDGs", "sectors", "type", "repositories", "organizations", "stage"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"uuid": {"type": "string"}, "children": {"type": "array", "items": {"type": "string"}}, "befores": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "status": {"type": "string"}, "start": {"type": "integer"}, "stop": {"type": "integer"}}, "required": ["name", "status", "start", "stop"]}}, "start": {"type": "integer"}, "stop": {"type": "integer"}}, "required": ["uuid", "children", "befores", "start", "stop"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"uuid" : "4f6020a7-4559-451d-b757-244d4d75adb3", "children" : ["55357ba4-325d-4c52-8ef3-b808c2246bce"], "befores" : [{"name" : "app", "status" : "passed", "start" : 1600232482241, "stop" : 1600232482379}], "start" : 1600232482241, "stop" : 1600232483872} | json_instruct | {"type": "object", "properties": {"uuid": {"type": "string"}, "children": {"type": "array", "items": {"type": "string"}}, "befores": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "status": {"type": "string"}, "start": {"type": "integer"}, "stop": {"type": "integer"}}, "required": ["name", "status", "start", "stop"]}}, "start": {"type": "integer"}, "stop": {"type": "integer"}}, "required": ["uuid", "children", "befores", "start", "stop"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"ja232:2.4": {"type": "string"}, "ja232:3.1": {"type": "string"}}, "required": ["ja232:2.4", "ja232:3.1"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"ja232:2.4" : "yath\u0101 vi\u1e47\u0101\u201dti \u2192 thu\u1e47\u0101ti (bj)", "ja232:3.1" : "V\u012b\u1e47\u0101gu\u1e47aj\u0101taka\u1e41 \u2192 v\u012b\u1e47\u0101th\u016b\u1e47aj\u0101taka\u1e41 (sya1ed, sya2ed, pts-vp-pli1)"} | json_instruct | {"type": "object", "properties": {"ja232:2.4": {"type": "string"}, "ja232:3.1": {"type": "string"}}, "required": ["ja232:2.4", "ja232:3.1"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"black": {"type": "string"}, "white": {"type": "string"}, "winner": {"type": "string"}, "playedAt": {"type": "string"}, "location": {"type": "string"}, "event": {"type": "string"}, "moves": {"type": "string"}}, "required": ["black", "white", "winner", "playedAt", "location", "event", "moves"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"black" : "Mamedjarova,Z", "white" : "Chiburdanidze,M", "winner" : "White", "playedAt" : "2009.03.14", "location" : "Istanbul TUR", "event" : "2009-10 FIDE Women's Grand Prix", "moves" : "pgn1.d4 d5 2.Nf3 Nf6 3.c4 e6 4.Nc3 Be7 5.Bg5 O-O 6.e3 h6 7.Bf4 c6 8.a3 Nbd7\n9.cxd5 Nxd5 10.Nxd5 exd5 11.Bd3 Nf6 12.Ne5 Bd6 13.Bc2 Ne4 14.f3 Ng5\n15.Qd3 f5 16.h4 Nf7 17.Ng6 Re8 18.O-O-O b5 19.g4 b4 20.a4 b3\n21.Bxb3 Rb8 22.Bc2 Qb6 23.b3 Ba6 24.Qxf5 Ba3+ 25.Kb1 Bc4 26.Rd3 Rb7\n27.Ka1 Nd6 28.Bxd6 Rf7 29.Bxa3 Rxf5 30.bxc4 dxc4 31.Rc3 Rxf3 32.Rb1 Qa5\n33.Bb4 Qa6 34.Ne5 Rf2 35.Nxc4 Rb8 36.a5 c5 37.Bxc5 Rxb1+ 38.Bxb1 Rf1\n39.Ka2 Qb5 40.Bc2 Rf2 41.Ba3 Rg2 42.Nd6 Qd7 43.g5 hxg5 44.hxg5 g6 45.e4 Qa4\n46.Kb2 Qxa5 47.d5 Qb6+ 48.Ka2 Qa5 49.Rc4 Rg3 50.Rc8+ Kh7 51.Nc4 Qa6\n52.Rc7+ Kg8 53.Rc6 Qb5 54.Bb2 Qb7 55.Nd6 1-0\n"} | json_instruct | {"type": "object", "properties": {"black": {"type": "string"}, "white": {"type": "string"}, "winner": {"type": "string"}, "playedAt": {"type": "string"}, "location": {"type": "string"}, "event": {"type": "string"}, "moves": {"type": "string"}}, "required": ["black", "white", "winner", "playedAt", "location", "event", "moves"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"type": {"type": "string"}, "pattern": {"type": "array", "items": {"type": "string"}}, "key": {"type": "object", "properties": {"B": {"type": "object", "properties": {"tag": {"type": "string"}}, "required": ["tag"]}, "I": {"type": "object", "properties": {"tag": {"type": "string"}}, "required": ["tag"]}}, "required": ["B", "I"]}, "result": {"type": "object", "properties": {"item": {"type": "string"}, "count": {"type": "integer"}}, "required": ["item", "count"]}}, "required": ["type", "pattern", "key", "result"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"type" : "minecraft:crafting_shaped", "pattern" : ["BBB", " I ", "III"], "key" : {"B" : {"tag" : "rankine:anvil_blocks"}, "I" : {"tag" : "rankine:anvil_ingots"}}, "result" : {"item" : "minecraft:anvil", "count" : 1}} | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "pattern": {"type": "array", "items": {"type": "string"}}, "key": {"type": "object", "properties": {"B": {"type": "object", "properties": {"tag": {"type": "string"}}, "required": ["tag"]}, "I": {"type": "object", "properties": {"tag": {"type": "string"}}, "required": ["tag"]}}, "required": ["B", "I"]}, "result": {"type": "object", "properties": {"item": {"type": "string"}, "count": {"type": "integer"}}, "required": ["item", "count"]}}, "required": ["type", "pattern", "key", "result"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "frequency": {"type": "integer"}, "gender": {"type": "string"}}, "required": ["name", "frequency", "gender"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"name" : "JEAN-EDOUARD", "frequency" : 12, "gender" : "male"}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "frequency": {"type": "integer"}, "gender": {"type": "string"}}, "required": ["name", "frequency", "gender"]}, "$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"}, "features": {"type": "array", "items": {"type": "object", "properties": {"geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["type", "coordinates"]}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"cartodb_id": {"type": "integer"}}, "required": ["cartodb_id"]}}, "required": ["geometry", "type", "properties"]}}}, "required": ["type", "features"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"type" : "FeatureCollection", "features" : [{"geometry" : {"type" : "Polygon", "coordinates" : [[[-93.155658, 44.908692], [-93.149228, 44.91243], [-93.146646, 44.919669], [-93.146603, 44.926937], [-93.144941, 44.92693], [-93.143636, 44.92917], [-93.141663, 44.93059], [-93.144931, 44.930573], [-93.150173, 44.934188], [-93.13773, 44.934138], [-93.137776, 44.932283], [-93.136389, 44.932475], [-93.136427, 44.922366], [-93.135131, 44.921447], [-93.135135, 44.919658], [-93.13109, 44.919456], [-93.129475, 44.920564], [-93.128499, 44.919689], [-93.131224, 44.916023], [-93.133666, 44.908777], [-93.136513, 44.905147], [-93.138708, 44.903837], [-93.142625, 44.908092], [-93.143984, 44.910857], [-93.153675, 44.90514], [-93.155658, 44.908692]]]}, "type" : "Feature", "properties" : {"cartodb_id" : 35057}}]} | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "features": {"type": "array", "items": {"type": "object", "properties": {"geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["type", "coordinates"]}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"cartodb_id": {"type": "integer"}}, "required": ["cartodb_id"]}}, "required": ["geometry", "type", "properties"]}}}, "required": ["type", "features"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"type": {"type": "string"}, "id": {"type": "string"}, "properties": {"type": "object", "properties": {"building": {"type": "string"}, "produce": {"type": "string"}, "ref:bag": {"type": "string"}, "shop": {"type": "string"}, "source": {"type": "string"}, "source:date": {"type": "string"}, "start_date": {"type": "string"}, "id": {"type": "string"}}, "required": ["building", "produce", "ref:bag", "shop", "source", "source:date", "start_date", "id"]}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "number"}}}, "required": ["type", "coordinates"]}}, "required": ["type", "id", "properties", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"type" : "Feature", "id" : "way/283239359", "properties" : {"building" : "house", "produce" : "eggs", "ref:bag" : "1672100000000737", "shop" : "farm", "source" : "BAG", "source:date" : "2014-05-20", "start_date" : "1895", "id" : "way/283239359"}, "geometry" : {"type" : "Point", "coordinates" : [4.5992049, 52.1304219]}} | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "id": {"type": "string"}, "properties": {"type": "object", "properties": {"building": {"type": "string"}, "produce": {"type": "string"}, "ref:bag": {"type": "string"}, "shop": {"type": "string"}, "source": {"type": "string"}, "source:date": {"type": "string"}, "start_date": {"type": "string"}, "id": {"type": "string"}}, "required": ["building", "produce", "ref:bag", "shop", "source", "source:date", "start_date", "id"]}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "number"}}}, "required": ["type", "coordinates"]}}, "required": ["type", "id", "properties", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "frequency": {"type": "integer"}, "gender": {"type": "string"}}, "required": ["name", "frequency", "gender"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"name" : "LUISA PATRICIA", "frequency" : 27, "gender" : "female"}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "frequency": {"type": "integer"}, "gender": {"type": "string"}}, "required": ["name", "frequency", "gender"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"department": {"type": "string"}, "description": {"type": "array", "items": {"type": "string"}}, "fullname": {"type": "string"}, "number": {"type": "integer"}, "section": {"type": "string"}, "semester": {"type": "integer"}, "shortname": {"type": "string"}, "type": {"type": "string"}, "year": {"type": "integer"}}, "required": ["department", "description", "fullname", "number", "section", "semester", "shortname", "type", "year"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"department" : "SOAN", "description" : ["This course explores the forces that shape contemporary Latin America society, including", "material and cultural interactions with Europe, Africa and the U.S. Emphasis is placed on", "understanding the formation of the region in terms of the responses of key groups of actors", "(indigenous peoples, women, peasants, workers, the poor, revolutionaries) to the actions of", "outside and/or more powerful forces and institutions (conquerors, the state, the military,", "missionaries, multinational corporations). Offered Fall or Spring Semester."], "fullname" : "Forging a Latin American Culture", "number" : 237, "section" : "B", "semester" : 1, "shortname" : "Latin Am Culture", "type" : "R", "year" : 2005} | json_instruct | {"type": "object", "properties": {"department": {"type": "string"}, "description": {"type": "array", "items": {"type": "string"}}, "fullname": {"type": "string"}, "number": {"type": "integer"}, "section": {"type": "string"}, "semester": {"type": "integer"}, "shortname": {"type": "string"}, "type": {"type": "string"}, "year": {"type": "integer"}}, "required": ["department", "description", "fullname", "number", "section", "semester", "shortname", "type", "year"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"Units": {"type": "array", "items": {"type": "string"}}, "Formats": {"type": "array", "items": {"type": "string"}}}, "required": ["Units", "Formats"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"Units" : ["certs-a-compute"], "Formats" : ["scripts"]} | json_instruct | {"type": "object", "properties": {"Units": {"type": "array", "items": {"type": "string"}}, "Formats": {"type": "array", "items": {"type": "string"}}}, "required": ["Units", "Formats"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"packageName": {"type": "string"}, "projectName": {"type": "string"}, "packageVersion": {"type": "string"}, "packageUrl": {"type": "string"}}, "required": ["packageName", "projectName", "packageVersion", "packageUrl"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"packageName" : "oldp_client", "projectName" : "oldp-api", "packageVersion" : "0.1.0", "packageUrl" : "https://github.com/openlegaldata/oldp-sdk-php"} | json_instruct | {"type": "object", "properties": {"packageName": {"type": "string"}, "projectName": {"type": "string"}, "packageVersion": {"type": "string"}, "packageUrl": {"type": "string"}}, "required": ["packageName", "projectName", "packageVersion", "packageUrl"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"type": {"type": "string"}, "id": {"type": "string"}, "spec_version": {"type": "string"}, "objects": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "id": {"type": "string"}, "created_by_ref": {"type": "string"}, "created": {"type": "string"}, "modified": {"type": "string"}, "relationship_type": {"type": "string"}, "source_ref": {"type": "string"}, "target_ref": {"type": "string"}, "object_marking_refs": {"type": "array", "items": {"type": "string"}}}, "required": ["type", "id", "created_by_ref", "created", "modified", "relationship_type", "source_ref", "target_ref", "object_marking_refs"]}}}, "required": ["type", "id", "spec_version", "objects"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"type" : "bundle", "id" : "bundle--9c3cea3b-dfdc-4eb3-8c82-f4945ffe9115", "spec_version" : "2.0", "objects" : [{"type" : "relationship", "id" : "relationship--ecf4a02c-e550-47eb-b1e6-ab0cc6988679", "created_by_ref" : "identity--31f421d4-bb36-4dbf-9dfc-c116a91de14b", "created" : "2017-02-01T00:00:00.000Z", "modified" : "2017-02-01T00:00:00.000Z", "relationship_type" : "mitigates", "source_ref" : "course-of-action--b4edf15d-d578-466c-a697-38781f55fb0c", "target_ref" : "attack-pattern--c9afbdbd-5361-465e-b43a-83de49768eb4", "object_marking_refs" : ["marking-definition--b345b2a9-b539-4d88-8a9a-1ebcc9f77507"]}]} | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "id": {"type": "string"}, "spec_version": {"type": "string"}, "objects": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "id": {"type": "string"}, "created_by_ref": {"type": "string"}, "created": {"type": "string"}, "modified": {"type": "string"}, "relationship_type": {"type": "string"}, "source_ref": {"type": "string"}, "target_ref": {"type": "string"}, "object_marking_refs": {"type": "array", "items": {"type": "string"}}}, "required": ["type", "id", "created_by_ref", "created", "modified", "relationship_type", "source_ref", "target_ref", "object_marking_refs"]}}}, "required": ["type", "id", "spec_version", "objects"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "id": {"type": "string"}, "isDefault": {"type": "boolean"}, "gains": {"type": "object", "properties": {"global": {"type": "number"}, "bands": {"type": "array", "items": {"type": "number"}}}, "required": ["global", "bands"]}}, "required": ["name", "id", "isDefault", "gains"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"name" : "ZMF Verite Closed (hybrid Universe earpads)", "id" : "fefffa8afcdfcbe0eb29c17fd5fdac8628377d6a", "isDefault" : false, "gains" : {"global" : -3.3, "bands" : [-0.8, -1.7, -3.9, -0.6, -2.3, -0.1, 2.4, 2.5, 1.4, -0.8]}}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "id": {"type": "string"}, "isDefault": {"type": "boolean"}, "gains": {"type": "object", "properties": {"global": {"type": "number"}, "bands": {"type": "array", "items": {"type": "number"}}}, "required": ["global", "bands"]}}, "required": ["name", "id", "isDefault", "gains"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"name": {"type": "string"}, "categoryType": {"type": "string"}, "description": {"type": "string"}, "children": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}}, "required": ["name", "description"]}}}, "required": ["name", "categoryType", "description", "children"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "PersonalData", "categoryType" : "Classification", "description" : "Tags related classifying **Personal data** as defined by **GDPR.**<br/><br/>_Note to Legal - This tag category is provided as a starting point. Please review and update the tags based on your company policy. Also, add a reference to your GDPR policy document in this description._", "children" : [{"name" : "Personal", "description" : "Data that can be used to directly or indirectly identify a person."}, {"name" : "SpecialCategory", "description" : "GDPR special category data is personal information of data subjects that is especially sensitive, the exposure of which could significantly impact the rights and freedoms of data subjects and potentially be used against them for unlawful discrimination."}]} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "categoryType": {"type": "string"}, "description": {"type": "string"}, "children": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}}, "required": ["name", "description"]}}}, "required": ["name", "categoryType", "description", "children"], "$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"}}}, "required": ["name", "symbol", "logoURI", "decimals", "address", "chainId", "tags"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "CloudAtlasTech Coin", "symbol" : "CAT", "logoURI" : "https://raw.githubusercontent.com/trekk/Cloud-Atlas-Tech-Coin/main/logo.png", "decimals" : 4, "address" : "39BGw1FfdTz8JmdwUp6m3HhXGZ15mJgjnMfrQHx2Ypx8", "chainId" : 101, "tags" : ["utility-token", "social-token"]} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "symbol": {"type": "string"}, "logoURI": {"type": "string"}, "decimals": {"type": "integer"}, "address": {"type": "string"}, "chainId": {"type": "integer"}, "tags": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "symbol", "logoURI", "decimals", "address", "chainId", "tags"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"version": {"type": "string"}, "private": {"type": "boolean"}, "name": {"type": "string"}, "description": {"type": "string"}, "repository": {"type": "string"}, "license": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"bower": {"type": "string"}, "browser-sync": {"type": "string"}, "gulp": {"type": "string"}, "gulp-autoprefixer": {"type": "string"}, "gulp-concat": {"type": "string"}, "gulp-connect": {"type": "string"}, "gulp-filter": {"type": "string"}, "gulp-gh-pages": {"type": "string"}, "gulp-minify-css": {"type": "string"}, "gulp-notify": {"type": "string"}, "gulp-plumber": {"type": "string"}, "gulp-rename": {"type": "string"}, "gulp-sass": {"type": "string"}, "gulp-uglify": {"type": "string"}, "main-bower-files": {"type": "string"}}, "required": ["bower", "browser-sync", "gulp", "gulp-autoprefixer", "gulp-concat", "gulp-connect", "gulp-filter", "gulp-gh-pages", "gulp-minify-css", "gulp-notify", "gulp-plumber", "gulp-rename", "gulp-sass", "gulp-uglify", "main-bower-files"]}, "scripts": {"type": "object", "properties": {"postinstall": {"type": "string"}, "prestart": {"type": "string"}, "start": {"type": "string"}}, "required": ["postinstall", "prestart", "start"]}}, "required": ["version", "private", "name", "description", "repository", "license", "devDependencies", "scripts"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"version" : "6.0.0", "private" : true, "name" : "ZacHalbert.com", "description" : "Personal website of Zac Halbert", "repository" : "https://github.com/zachalbert/zachalbert.com_v6", "license" : "MIT", "devDependencies" : {"bower" : "^1.3.12", "browser-sync" : "^1.7.1", "gulp" : "^3.8.7", "gulp-autoprefixer" : "0.0.10", "gulp-concat" : "^2.3.4", "gulp-connect" : "^2.2.0", "gulp-filter" : "^1.0.2", "gulp-gh-pages" : "^0.4.0", "gulp-minify-css" : "^0.3.7", "gulp-notify" : "^1.8.0", "gulp-plumber" : "^0.6.5", "gulp-rename" : "^1.2.0", "gulp-sass" : "^0.7.3", "gulp-uglify" : "^1.0.0", "main-bower-files" : "^2.4.1"}, "scripts" : {"postinstall" : "bower install", "prestart" : "npm install", "start" : "gulp"}} | json_instruct | {"type": "object", "properties": {"version": {"type": "string"}, "private": {"type": "boolean"}, "name": {"type": "string"}, "description": {"type": "string"}, "repository": {"type": "string"}, "license": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"bower": {"type": "string"}, "browser-sync": {"type": "string"}, "gulp": {"type": "string"}, "gulp-autoprefixer": {"type": "string"}, "gulp-concat": {"type": "string"}, "gulp-connect": {"type": "string"}, "gulp-filter": {"type": "string"}, "gulp-gh-pages": {"type": "string"}, "gulp-minify-css": {"type": "string"}, "gulp-notify": {"type": "string"}, "gulp-plumber": {"type": "string"}, "gulp-rename": {"type": "string"}, "gulp-sass": {"type": "string"}, "gulp-uglify": {"type": "string"}, "main-bower-files": {"type": "string"}}, "required": ["bower", "browser-sync", "gulp", "gulp-autoprefixer", "gulp-concat", "gulp-connect", "gulp-filter", "gulp-gh-pages", "gulp-minify-css", "gulp-notify", "gulp-plumber", "gulp-rename", "gulp-sass", "gulp-uglify", "main-bower-files"]}, "scripts": {"type": "object", "properties": {"postinstall": {"type": "string"}, "prestart": {"type": "string"}, "start": {"type": "string"}}, "required": ["postinstall", "prestart", "start"]}}, "required": ["version", "private", "name", "description", "repository", "license", "devDependencies", "scripts"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"towns": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "url": {"type": "string"}}, "required": ["name", "url"]}}}, "required": ["towns"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"towns" : [{"name" : "Brest", "url" : "brest"}]} | json_instruct | {"type": "object", "properties": {"towns": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "url": {"type": "string"}}, "required": ["name", "url"]}}}, "required": ["towns"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "array", "items": {"type": "object", "properties": {"code": {"type": "string"}, "name": {"type": "string"}, "name_kana": {"type": "string"}}, "required": ["code", "name", "name_kana"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"code" : "103", "name" : "\u30ab\u30e9\u30d5\u30eb\u30bf\u30a6\u30f3\u5c90\u961c\u51fa\u5f35\u6240", "name_kana" : "\uff76\uff97\uff8c\uff99\uff80\uff73\uff9d\uff77\uff9e\uff8c"}, {"code" : "158", "name" : "\u93e1\u5cf6", "name_kana" : "\uff76\uff76\uff9e\uff7c\uff8f"}, {"code" : "171", "name" : "\u52a0\u7d0d", "name_kana" : "\uff76\uff89\uff73"}, {"code" : "191", "name" : "\u5404\u52d9\u539f", "name_kana" : "\uff76\uff76\uff90\uff76\uff9e\uff8a\uff97"}, {"code" : "273", "name" : "\u53ef\u5150", "name_kana" : "\uff76\uff86"}, {"code" : "463", "name" : "\u7b20\u677e", "name_kana" : "\uff76\uff7b\uff8f\uff82"}, {"code" : "502", "name" : "\u5ddd\u5cf6", "name_kana" : "\uff76\uff9c\uff7c\uff8f"}, {"code" : "509", "name" : "\u52dd\u5ddd", "name_kana" : "\uff76\uff81\uff76\uff9e\uff9c"}, {"code" : "513", "name" : "\u87f9\u6c5f", "name_kana" : "\uff76\uff86\uff74"}, {"code" : "518", "name" : "\u6625\u65e5\u4e95", "name_kana" : "\uff76\uff7d\uff76\uff9e\uff72"}, {"code" : "581", "name" : "\u5208\u8c37", "name_kana" : "\uff76\uff98\uff94"}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"code": {"type": "string"}, "name": {"type": "string"}, "name_kana": {"type": "string"}}, "required": ["code", "name", "name_kana"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"summary": {"type": "object", "properties": {"byte_size": {"type": "integer"}, "kb_size": {"type": "integer"}, "mb_size": {"type": "number"}, "collect_input": {"type": "boolean"}, "layers": {"type": "array", "items": {"type": "object", "properties": {"bits:": {"type": "integer"}, "size:": {"type": "integer"}, "byte_size:": {"type": "integer"}, "foz:": {"type": "number"}, "zeros:": {"type": "integer"}, "sum:": {"type": "integer"}, "min:": {"type": "integer"}, "max:": {"type": "integer"}, "mean:": {"type": "number"}}, "required": ["bits:", "size:", "byte_size:", "foz:", "zeros:", "sum:", "min:", "max:", "mean:"]}}}, "required": ["byte_size", "kb_size", "mb_size", "collect_input", "layers"]}, "perf": {"type": "object", "properties": {"query_time": {"type": "number"}, "times": {"type": "array", "items": {"type": "number"}}, "num_queries": {"type": "integer"}, "insert_time": {"type": "number"}}, "required": ["query_time", "times", "num_queries", "insert_time"]}}, "required": ["summary", "perf"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"summary" : {"byte_size" : 67174400, "kb_size" : 65600, "mb_size" : 64.0625, "collect_input" : false, "layers" : [{"bits:" : 8, "size:" : 65536, "byte_size:" : 65536, "foz:" : 0.104065, "zeros:" : 6820, "sum:" : 2023244, "min:" : 0, "max:" : 255, "mean:" : 30.8723}, {"bits:" : 32, "size:" : 16777216, "byte_size:" : 67108864, "foz:" : 0.0622715, "zeros:" : 1044742, "sum:" : 481850208, "min:" : 0, "max:" : 1557805, "mean:" : 28.7205}]}, "perf" : {"query_time" : 0.676743, "times" : [5.82e-07, 0.068754, 0.136296, 0.204097, 0.271421, 0.33883, 0.406729, 0.474298, 0.541922, 0.609335], "num_queries" : 10000000, "insert_time" : 59.9577}} | json_instruct | {"type": "object", "properties": {"summary": {"type": "object", "properties": {"byte_size": {"type": "integer"}, "kb_size": {"type": "integer"}, "mb_size": {"type": "number"}, "collect_input": {"type": "boolean"}, "layers": {"type": "array", "items": {"type": "object", "properties": {"bits:": {"type": "integer"}, "size:": {"type": "integer"}, "byte_size:": {"type": "integer"}, "foz:": {"type": "number"}, "zeros:": {"type": "integer"}, "sum:": {"type": "integer"}, "min:": {"type": "integer"}, "max:": {"type": "integer"}, "mean:": {"type": "number"}}, "required": ["bits:", "size:", "byte_size:", "foz:", "zeros:", "sum:", "min:", "max:", "mean:"]}}}, "required": ["byte_size", "kb_size", "mb_size", "collect_input", "layers"]}, "perf": {"type": "object", "properties": {"query_time": {"type": "number"}, "times": {"type": "array", "items": {"type": "number"}}, "num_queries": {"type": "integer"}, "insert_time": {"type": "number"}}, "required": ["query_time", "times", "num_queries", "insert_time"]}}, "required": ["summary", "perf"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"title": {"type": "string"}, "explanation": {"type": "string"}, "date": {"type": "string"}, "hdurl": {"type": "string"}, "service_version": {"type": "string"}, "copyright": {"type": "string"}, "media_type": {"type": "string"}, "url": {"type": "string"}}, "required": ["title", "explanation", "date", "hdurl", "service_version", "copyright", "media_type", "url"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"title" : "Geminid Meteors over Chile", "explanation" : "Are meteors streaming out from a point in the sky? Yes, in a way. When the Earth crosses a stream of Sun-orbiting meteors, these meteors appear to come from the direction of the stream -- with the directional point called the radiant.\ufffd An example occurs every mid-December for the Geminids meteor shower, as apparent in the featured image.\ufffd Recorded near the shower's peak in 2013, the featured skyscape captures Gemini's shooting stars in a four-hour composite from the dark skies of the Las Campanas Observatory in Chile. In the foreground the 2.5-meter du Pont Telescope is visible as well as the 1-meter SWOPE telescope. The skies beyond the meteors are highlighted by Jupiter, seen as the bright spot near the image center, the central band of our Milky Way Galaxy, seen vertically on the image left, and the pinkish Orion Nebula on the far left. Dust swept up from the orbit of active asteroid 3200 Phaethon, Gemini's meteors enter the atmosphere traveling at about 22 kilometers per second. The 2019 Geminid meteor shower peaks again this coming weekend.", "date" : "2019-12-08", "hdurl" : "https://apod.nasa.gov/apod/image/1912/geminids2013_beletsky_1081.jpg", "service_version" : "v1", "copyright" : "Yuri Beletsky (Carnegie Las Campanas Observatory, TWAN)", "media_type" : "image", "url" : "https://apod.nasa.gov/apod/image/1912/geminids2013_beletsky_960.jpg"} | json_instruct | {"type": "object", "properties": {"title": {"type": "string"}, "explanation": {"type": "string"}, "date": {"type": "string"}, "hdurl": {"type": "string"}, "service_version": {"type": "string"}, "copyright": {"type": "string"}, "media_type": {"type": "string"}, "url": {"type": "string"}}, "required": ["title", "explanation", "date", "hdurl", "service_version", "copyright", "media_type", "url"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"nft": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "description": {"type": "string"}, "image": {"type": "string"}, "attributes": {"type": "array", "items": {"type": "object", "properties": {"trait_type": {"type": "string"}, "value": {"type": "string"}}, "required": ["trait_type", "value"]}}}, "required": ["id", "name", "description", "image", "attributes"]}, "attributeRarities": {"type": "array", "items": {"type": "object", "properties": {"trait_type": {"type": "string"}, "value": {"type": "string"}, "count": {"type": "integer"}, "ratio": {"type": "number"}, "ratioScore": {"type": "number"}}, "required": ["trait_type", "value", "count", "ratio", "ratioScore"]}}, "rarityScore": {"type": "number"}, "rank": {"type": "integer"}}, "required": ["nft", "attributeRarities", "rarityScore", "rank"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"nft" : {"id" : "5045", "name" : "PixelFreak #05045", "description" : "They call us ugly, and misfits, but we prefer to call ourselves freaks", "image" : "ipfs://QmQ1xJEZCdZocaDYRMCELaDpMHi9hF91gygeV9z5onbHvj", "attributes" : [{"trait_type" : "pet", "value" : "None"}, {"trait_type" : "body", "value" : "Warrior"}, {"trait_type" : "eyes", "value" : "Cyclop-Robo"}, {"trait_type" : "head", "value" : "Heky"}, {"trait_type" : "nose", "value" : "Njuska"}, {"trait_type" : "extra", "value" : "Zaleplon"}, {"trait_type" : "mouth", "value" : "oOo"}, {"trait_type" : "background", "value" : "RandomColor"}, {"trait_type" : "Trait Count", "value" : "8"}]}, "attributeRarities" : [{"trait_type" : "pet", "value" : "None", "count" : 9511, "ratio" : 0.9511, "ratioScore" : 1.0514141520344864}, {"trait_type" : "body", "value" : "Warrior", "count" : 140, "ratio" : 0.014, "ratioScore" : 71.42857142857143}, {"trait_type" : "eyes", "value" : "Cyclop-Robo", "count" : 312, "ratio" : 0.0312, "ratioScore" : 32.05128205128205}, {"trait_type" : "head", "value" : "Heky", "count" : 755, "ratio" : 0.0755, "ratioScore" : 13.245033112582782}, {"trait_type" : "nose", "value" : "Njuska", "count" : 1075, "ratio" : 0.1075, "ratioScore" : 9.30232558139535}, {"trait_type" : "extra", "value" : "Zaleplon", "count" : 414, "ratio" : 0.0414, "ratioScore" : 24.154589371980677}, {"trait_type" : "mouth", "value" : "oOo", "count" : 82, "ratio" : 0.0082, "ratioScore" : 121.95121951219511}, {"trait_type" : "background", "value" : "RandomColor", "count" : 9595, "ratio" : 0.9595, "ratioScore" : 1.0422094841063054}, {"trait_type" : "Trait Count", "value" : "8", "count" : 10000, "ratio" : 1, "ratioScore" : 1}], "rarityScore" : 275.2266446941482, "rank" : 1695} | json_instruct | {"type": "object", "properties": {"nft": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "description": {"type": "string"}, "image": {"type": "string"}, "attributes": {"type": "array", "items": {"type": "object", "properties": {"trait_type": {"type": "string"}, "value": {"type": "string"}}, "required": ["trait_type", "value"]}}}, "required": ["id", "name", "description", "image", "attributes"]}, "attributeRarities": {"type": "array", "items": {"type": "object", "properties": {"trait_type": {"type": "string"}, "value": {"type": "string"}, "count": {"type": "integer"}, "ratio": {"type": "number"}, "ratioScore": {"type": "number"}}, "required": ["trait_type", "value", "count", "ratio", "ratioScore"]}}, "rarityScore": {"type": "number"}, "rank": {"type": "integer"}}, "required": ["nft", "attributeRarities", "rarityScore", "rank"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"blogApp": {"type": "object", "properties": {"post": {"type": "object", "properties": {"home": {"type": "object", "properties": {"title": {"type": "string"}, "refreshListLabel": {"type": "string"}, "createLabel": {"type": "string"}, "createOrEditLabel": {"type": "string"}, "notFound": {"type": "string"}}, "required": ["title", "refreshListLabel", "createLabel", "createOrEditLabel", "notFound"]}, "created": {"type": "string"}, "updated": {"type": "string"}, "deleted": {"type": "string"}, "delete": {"type": "object", "properties": {"question": {"type": "string"}}, "required": ["question"]}, "detail": {"type": "object", "properties": {"title": {"type": "string"}}, "required": ["title"]}, "id": {"type": "string"}, "title": {"type": "string"}, "content": {"type": "string"}, "date": {"type": "string"}, "blog": {"type": "string"}, "tag": {"type": "string"}}, "required": ["home", "created", "updated", "deleted", "delete", "detail", "id", "title", "content", "date", "blog", "tag"]}}, "required": ["post"]}}, "required": ["blogApp"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"blogApp" : {"post" : {"home" : {"title" : "Posts", "refreshListLabel" : "Refrescar lista", "createLabel" : "Crear nuevo Post", "createOrEditLabel" : "Crear o editar Post", "notFound" : "Ning\u00fan Posts encontrado"}, "created" : "Un nuevo Post ha sido creado con el identificador {{ param }}", "updated" : "Un Post ha sido actualizado con el identificador {{ param }}", "deleted" : "Un Post ha sido eliminado con el identificador {{ param }}", "delete" : {"question" : "\u00bfSeguro que quiere eliminar Post {{ id }}?"}, "detail" : {"title" : "Post"}, "id" : "ID", "title" : "Title", "content" : "Content", "date" : "Date", "blog" : "Blog", "tag" : "Tag"}}} | json_instruct | {"type": "object", "properties": {"blogApp": {"type": "object", "properties": {"post": {"type": "object", "properties": {"home": {"type": "object", "properties": {"title": {"type": "string"}, "refreshListLabel": {"type": "string"}, "createLabel": {"type": "string"}, "createOrEditLabel": {"type": "string"}, "notFound": {"type": "string"}}, "required": ["title", "refreshListLabel", "createLabel", "createOrEditLabel", "notFound"]}, "created": {"type": "string"}, "updated": {"type": "string"}, "deleted": {"type": "string"}, "delete": {"type": "object", "properties": {"question": {"type": "string"}}, "required": ["question"]}, "detail": {"type": "object", "properties": {"title": {"type": "string"}}, "required": ["title"]}, "id": {"type": "string"}, "title": {"type": "string"}, "content": {"type": "string"}, "date": {"type": "string"}, "blog": {"type": "string"}, "tag": {"type": "string"}}, "required": ["home", "created", "updated", "deleted", "delete", "detail", "id", "title", "content", "date", "blog", "tag"]}}, "required": ["post"]}}, "required": ["blogApp"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "summary": {"type": "string"}, "description": {"type": "string"}, "homepage": {"type": "string"}, "license": {"type": "object", "properties": {"type": {"type": "string"}, "file": {"type": "string"}}, "required": ["type", "file"]}, "authors": {"type": "object", "properties": {"Sternapara": {"type": "string"}}, "required": ["Sternapara"]}, "source": {"type": "object", "properties": {"git": {"type": "string"}, "tag": {"type": "string"}}, "required": ["git", "tag"]}, "platforms": {"type": "object", "properties": {"ios": {"type": "string"}}, "required": ["ios"]}, "source_files": {"type": "string"}, "resources": {"type": "string"}, "dependencies": {"type": "object", "properties": {"RegExCategories": {"type": "array", "items": {"type": "string"}}, "NJKWebViewProgress": {"type": "array", "items": {"type": "string"}}}, "required": ["RegExCategories", "NJKWebViewProgress"]}}, "required": ["name", "version", "summary", "description", "homepage", "license", "authors", "source", "platforms", "source_files", "resources", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "YXWebBrowser", "version" : "0.1.0", "summary" : "A web browser for iOS7 and above.", "description" : "TODO: Add long description of the pod here.", "homepage" : "https://github.com/yxuan426/YXWebBrowser", "license" : {"type" : "MIT", "file" : "LICENSE"}, "authors" : {"Sternapara" : "[email protected]"}, "source" : {"git" : "https://github.com/yxuan426/YXWebBrowser.git", "tag" : "0.1.0"}, "platforms" : {"ios" : "7.0"}, "source_files" : "YXWebBrowser/Classes/**/*", "resources" : "YXWebBrowser/Assets/YXWebBrowser.bundle", "dependencies" : {"RegExCategories" : ["~> 1.0"], "NJKWebViewProgress" : ["~> 0.2.3"]}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "summary": {"type": "string"}, "description": {"type": "string"}, "homepage": {"type": "string"}, "license": {"type": "object", "properties": {"type": {"type": "string"}, "file": {"type": "string"}}, "required": ["type", "file"]}, "authors": {"type": "object", "properties": {"Sternapara": {"type": "string"}}, "required": ["Sternapara"]}, "source": {"type": "object", "properties": {"git": {"type": "string"}, "tag": {"type": "string"}}, "required": ["git", "tag"]}, "platforms": {"type": "object", "properties": {"ios": {"type": "string"}}, "required": ["ios"]}, "source_files": {"type": "string"}, "resources": {"type": "string"}, "dependencies": {"type": "object", "properties": {"RegExCategories": {"type": "array", "items": {"type": "string"}}, "NJKWebViewProgress": {"type": "array", "items": {"type": "string"}}}, "required": ["RegExCategories", "NJKWebViewProgress"]}}, "required": ["name", "version", "summary", "description", "homepage", "license", "authors", "source", "platforms", "source_files", "resources", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}}, "required": ["name", "version", "description", "main", "repository", "keywords", "author", "license", "bugs", "homepage"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "notnewline", "version" : "1.0.0", "description" : "console.log without the newline", "main" : "index.js", "repository" : {"type" : "git", "url" : "git+ssh://[email protected]/finngreiter/notnewline.git"}, "keywords" : ["log", "console", "newlineless"], "author" : "Felgee", "license" : "MIT", "bugs" : {"url" : "https://github.com/finngreiter/notnewline/issues"}, "homepage" : "https://github.com/finngreiter/notnewline#readme"} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}}, "required": ["name", "version", "description", "main", "repository", "keywords", "author", "license", "bugs", "homepage"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible 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": {"type": "string"}}, "title": {"type": "string"}, "url": {"type": "string"}}, "required": ["directions", "ingredients", "language", "source", "tags", "title", "url"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"directions" : ["Whip cream with 3 tablespoons brown sugar to soft peaks. Add 3 tablespoons Sherry and beat to firm peaks. Cover and chill. (Can be prepared 6 hours ahead.)", "Preheat broiler. Arrange oranges in ring around center of each plate. Top with mint. Arrange figs cut side up in broilerproof pan. Sprinkle with brown sugar and Sherry. Broil until sugar begins to caramelize. Mound cream in center of each plate. Top with figs and serve."], "ingredients" : ["1 cup chilled whipping cream", "3 tablespoons golden brown sugar", "3 tablespoons cream Sherry", "6 oranges, peeled, white pith removed, sliced into rounds", "Chopped fresh mint", "12 fresh figs, halved lengthwise", "Golden brown sugar", "Cream Sherry"], "language" : "en-US", "source" : "www.epicurious.com", "tags" : ["Citrus", "Dairy", "Fruit", "Dessert", "Broil", "High Fiber", "Low Sodium", "Orange", "Fig", "Sherry", "Summer"], "title" : "Broiled Figs with Oranges and Sherry Cream", "url" : "http://www.epicurious.com/recipes/food/views/broiled-figs-with-oranges-and-sherry-cream-2208"} | json_instruct | {"type": "object", "properties": {"directions": {"type": "array", "items": {"type": "string"}}, "ingredients": {"type": "array", "items": {"type": "string"}}, "language": {"type": "string"}, "source": {"type": "string"}, "tags": {"type": "array", "items": {"type": "string"}}, "title": {"type": "string"}, "url": {"type": "string"}}, "required": ["directions", "ingredients", "language", "source", "tags", "title", "url"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"__type__": {"type": "string"}, "content": {"type": "object", "properties": {"name": {"type": "string"}, "texture": {"type": "string"}, "rect": {"type": "array", "items": {"type": "integer"}}, "offset": {"type": "array", "items": {"type": "integer"}}, "originalSize": {"type": "array", "items": {"type": "integer"}}, "capInsets": {"type": "array", "items": {"type": "integer"}}}, "required": ["name", "texture", "rect", "offset", "originalSize", "capInsets"]}}, "required": ["__type__", "content"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"__type__" : "cc.SpriteFrame", "content" : {"name" : "pi_selectarrow", "texture" : "8asQfoZP1IW4FXH91rpv0Q", "rect" : [0, 0, 20, 10], "offset" : [0, 0], "originalSize" : [20, 10], "capInsets" : [0, 0, 0, 0]}} | json_instruct | {"type": "object", "properties": {"__type__": {"type": "string"}, "content": {"type": "object", "properties": {"name": {"type": "string"}, "texture": {"type": "string"}, "rect": {"type": "array", "items": {"type": "integer"}}, "offset": {"type": "array", "items": {"type": "integer"}}, "originalSize": {"type": "array", "items": {"type": "integer"}}, "capInsets": {"type": "array", "items": {"type": "integer"}}}, "required": ["name", "texture", "rect", "offset", "originalSize", "capInsets"]}}, "required": ["__type__", "content"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"data": {"type": "object", "properties": {"v": {"type": "string"}, "achievements": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "desc": {"type": "string"}, "criteria": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}, "hidden": {"type": "boolean"}}, "required": ["id", "name", "desc", "criteria", "hidden"]}}}, "required": ["v", "achievements"]}}, "required": ["data"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"data" : {"v" : "0.1", "achievements" : [{"id" : "1", "name" : "Getting started", "desc" : "Buy a business", "criteria" : [[6, 1, 3]], "hidden" : false}, {"id" : "2", "name" : "Pulling the lever", "desc" : "Start progress", "criteria" : [[7, 1, 3]], "hidden" : false}, {"id" : "3", "name" : "Mini-mogul", "desc" : "Own 10 businesses", "criteria" : [[6, 10, 3]], "hidden" : false}, {"id" : "4", "name" : "Full shift", "desc" : "Pull the lever 8 times", "criteria" : [[7, 8, 3]], "hidden" : true}, {"id" : "5", "name" : "Diversify", "desc" : "Own one of each starting business", "criteria" : [[201, 1, 3], [202, 1, 3], [203, 1, 3]], "hidden" : true}, {"id" : "6", "name" : "Big Spender", "desc" : "Spend $1,000.00", "criteria" : [[2, 1000, 3]], "hidden" : false}, {"id" : "7", "name" : "Full Crew", "desc" : "Hire three managers", "criteria" : [[4, 3, 3]], "hidden" : false}, {"id" : "8", "name" : "Getting Caffienated", "desc" : "Own five coffee shops", "criteria" : [[206, 5, 3]], "hidden" : false}]}} | json_instruct | {"type": "object", "properties": {"data": {"type": "object", "properties": {"v": {"type": "string"}, "achievements": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "desc": {"type": "string"}, "criteria": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}, "hidden": {"type": "boolean"}}, "required": ["id", "name", "desc", "criteria", "hidden"]}}}, "required": ["v", "achievements"]}}, "required": ["data"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "repository": {"type": "string"}, "version": {"type": "string"}, "dependencies": {"type": "object", "properties": {}, "required": []}, "devDependencies": {"type": "object", "properties": {"coffee-script": {"type": "string"}, "gulp": {"type": "string"}, "gulp-clean": {"type": "string"}, "gulp-coffee": {"type": "string"}, "gulp-util": {"type": "string"}}, "required": ["coffee-script", "gulp", "gulp-clean", "gulp-coffee", "gulp-util"]}}, "required": ["name", "description", "repository", "version", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "angular-multirange-slider", "description" : "A multi-range slider directive for AngularJS", "repository" : "https://github.com/anandthakker/angular-multirange-slider", "version" : "1.1.1", "dependencies" : {}, "devDependencies" : {"coffee-script" : "^1.7.1", "gulp" : "^3.8", "gulp-clean" : "^0.3.0", "gulp-coffee" : "^2.0.0", "gulp-util" : "^2.2.16"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "repository": {"type": "string"}, "version": {"type": "string"}, "dependencies": {"type": "object", "properties": {}, "required": []}, "devDependencies": {"type": "object", "properties": {"coffee-script": {"type": "string"}, "gulp": {"type": "string"}, "gulp-clean": {"type": "string"}, "gulp-coffee": {"type": "string"}, "gulp-util": {"type": "string"}}, "required": ["coffee-script", "gulp", "gulp-clean", "gulp-coffee", "gulp-util"]}}, "required": ["name", "description", "repository", "version", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"name": {"type": "string"}, "id": {"type": "string"}, "address": {"type": "string"}, "school_type": {"type": "string"}, "fax": {"type": "string"}, "phone": {"type": "string"}, "website": {"type": "string"}, "state": {"type": "string"}, "programs": {"type": "object", "properties": {"programs": {"type": "array", "items": {}}}, "required": ["programs"]}, "full_time_school": {"type": "boolean"}, "lon": {"type": "number"}, "lat": {"type": "number"}}, "required": ["name", "id", "address", "school_type", "fax", "phone", "website", "state", "programs", "full_time_school", "lon", "lat"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "James Kr\u00fcss-Grundschule Gilching", "id" : "BY-2058", "address" : "Landsberger Str. 17 82205 Gilching", "school_type" : "Grundschule", "fax" : "08105 379419", "phone" : "08105 37940", "website" : "http://www.gs-gilching-sued.de", "state" : "BY", "programs" : {"programs" : []}, "full_time_school" : false, "lon" : 11.299336, "lat" : 48.10305} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "id": {"type": "string"}, "address": {"type": "string"}, "school_type": {"type": "string"}, "fax": {"type": "string"}, "phone": {"type": "string"}, "website": {"type": "string"}, "state": {"type": "string"}, "programs": {"type": "object", "properties": {"programs": {"type": "array", "items": {}}}, "required": ["programs"]}, "full_time_school": {"type": "boolean"}, "lon": {"type": "number"}, "lat": {"type": "number"}}, "required": ["name", "id", "address", "school_type", "fax", "phone", "website", "state", "programs", "full_time_school", "lon", "lat"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [[1919, 9], [1921, 6], [1922, 6], [1923, 9], [1925, 11], [1927, 11], [1928, 7], [1929, 6], [1930, 8], [1931, 7], [1932, 7], [1934, 7], [1937, 7], [1938, 5], [1941, 9], [1943, 9], [1954, 5], [1956, 5], [1957, 5], [1959, 8], [1963, 9], [1965, 5]] | json_instruct | {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$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"}, "description": {"type": "string"}, "image": {"type": "string"}, "dna": {"type": "string"}, "edition": {"type": "integer"}, "date": {"type": "integer"}, "attributes": {"type": "array", "items": {"type": "object", "properties": {"trait_type": {"type": "string"}, "value": {"type": "string"}}, "required": ["trait_type", "value"]}}}, "required": ["name", "description", "image", "dna", "edition", "date", "attributes"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "Crypto BAYC #251", "description" : "", "image" : "ipfs://QmXZWjCdRevZ3J2AUd9PvTbwo4ef5re6oouoFBX7D2whfC/251.png", "dna" : "216a4265de448fba04505f4ffa9b62ec86fdd93a", "edition" : 251, "date" : 1645298536510, "attributes" : [{"trait_type" : "TYPE", "value" : "Brown"}, {"trait_type" : "MOUTH", "value" : "Annoyed"}, {"trait_type" : "ACCESSORY", "value" : "Teardrop"}, {"trait_type" : "ACCESSORY", "value" : "1 Attributes"}]} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "image": {"type": "string"}, "dna": {"type": "string"}, "edition": {"type": "integer"}, "date": {"type": "integer"}, "attributes": {"type": "array", "items": {"type": "object", "properties": {"trait_type": {"type": "string"}, "value": {"type": "string"}}, "required": ["trait_type", "value"]}}}, "required": ["name", "description", "image", "dna", "edition", "date", "attributes"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {}}, "productReviews": {"type": "array", "items": {"type": "object", "properties": {"productId": {"type": "integer"}, "reviewText": {"type": "string"}, "reviewDate": {"type": "string"}}, "required": ["productId", "reviewText", "reviewDate"]}}}, "required": ["userId", "cartId", "preferredProducts", "productReviews"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"userId" : 63213, "cartId" : "a94040b4-5746-459e-92b4-6e4521093f2d", "preferredProducts" : [], "productReviews" : [{"productId" : 2046, "reviewText" : "My neighbor Albertina has one of these. She works as a gardener and she says it looks humongous.", "reviewDate" : "2020-01-13T22:44:10.2025594+02:00"}, {"productId" : 3443, "reviewText" : "I saw one of these in Nauru and I bought one.", "reviewDate" : "2016-10-09T01:08:17.1478671+03:00"}, {"productId" : 2061, "reviewText" : "My demon loves to play with it.", "reviewDate" : "2018-06-24T09:42:36.5978063+03:00"}, {"productId" : 2423, "reviewText" : "heard about this on ndombolo radio, decided to give it a try.", "reviewDate" : "2019-08-25T11:55:06.5323231+03:00"}, {"productId" : 2486, "reviewText" : "i use it until further notice when i'm in my station.", "reviewDate" : "2019-04-12T14:01:49.1297236+03:00"}]} | json_instruct | {"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {}}, "productReviews": {"type": "array", "items": {"type": "object", "properties": {"productId": {"type": "integer"}, "reviewText": {"type": "string"}, "reviewDate": {"type": "string"}}, "required": ["productId", "reviewText", "reviewDate"]}}}, "required": ["userId", "cartId", "preferredProducts", "productReviews"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"task_meta": {"type": "object", "properties": {}, "required": []}, "annotations": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "new": {"type": "boolean"}, "parent_id": {"type": "null"}, "created_by": {"type": "string"}, "created_at": {"type": "string"}, "deprecated": {"type": "boolean"}, "spatial_type": {"type": "string"}, "spatial_payload": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}, "classification_payloads": {"type": "array", "items": {"type": "object", "properties": {"class_id": {"type": "integer"}, "confidence": {"type": "number"}}, "required": ["class_id", "confidence"]}}, "line_size": {"type": "integer"}, "containing_box": {"type": "null"}, "frame": {"type": "null"}, "text_payload": {"type": "string"}}, "required": ["id", "new", "parent_id", "created_by", "created_at", "deprecated", "spatial_type", "spatial_payload", "classification_payloads", "line_size", "containing_box", "frame", "text_payload"]}}, "import_fname": {"type": "string"}}, "required": ["task_meta", "annotations", "import_fname"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"task_meta" : {}, "annotations" : [{"id" : "096b68c7-6ed6-4c5c-ae64-effdb92621de", "new" : true, "parent_id" : null, "created_by" : "sarah_peterson", "created_at" : "2020-06-02T21:29:23Z", "deprecated" : false, "spatial_type" : "bbox3", "spatial_payload" : [[70.83333333333334, 159.16666666666669, 328.0], [423.61125000000004, 406.38875, 357.0]], "classification_payloads" : [{"class_id" : 6, "confidence" : 1.0}], "line_size" : 4, "containing_box" : null, "frame" : null, "text_payload" : ""}], "import_fname" : "1591133363_sarah_peterson.json"} | json_instruct | {"type": "object", "properties": {"task_meta": {"type": "object", "properties": {}, "required": []}, "annotations": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "new": {"type": "boolean"}, "parent_id": {"type": "null"}, "created_by": {"type": "string"}, "created_at": {"type": "string"}, "deprecated": {"type": "boolean"}, "spatial_type": {"type": "string"}, "spatial_payload": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}, "classification_payloads": {"type": "array", "items": {"type": "object", "properties": {"class_id": {"type": "integer"}, "confidence": {"type": "number"}}, "required": ["class_id", "confidence"]}}, "line_size": {"type": "integer"}, "containing_box": {"type": "null"}, "frame": {"type": "null"}, "text_payload": {"type": "string"}}, "required": ["id", "new", "parent_id", "created_by", "created_at", "deprecated", "spatial_type", "spatial_payload", "classification_payloads", "line_size", "containing_box", "frame", "text_payload"]}}, "import_fname": {"type": "string"}}, "required": ["task_meta", "annotations", "import_fname"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"kefir.js": {"type": "string"}, "kefir.min.js": {"type": "string"}}, "required": ["kefir.js", "kefir.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"kefir.js" : "sha256-ggUFRjBD2iPbA5YQO+T9ekw+U3jMudkJpTqCXAGlchE=", "kefir.min.js" : "sha256-qP1zaZsxr9M5xM9AkjPf3USvHr+3QRqfC27MdqIw5JM="} | json_instruct | {"type": "object", "properties": {"kefir.js": {"type": "string"}, "kefir.min.js": {"type": "string"}}, "required": ["kefir.js", "kefir.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "array", "items": {"type": "object", "properties": {"description": {"type": "string"}, "tests": {"type": "array", "items": {"type": "object", "properties": {"description": {"type": "string"}, "schema": {"type": "object", "properties": {"$schema": {"type": "string"}, "title": {"type": "string"}, "id": {"type": "string"}, "description": {"type": "string"}, "allOf": {"type": "array", "items": {"type": "object", "properties": {"$ref": {"type": "string"}}, "required": ["$ref"]}}}, "required": ["$schema", "title", "id", "description", "allOf"]}, "valid": {"type": "boolean"}}, "required": ["description", "schema", "valid"]}}}, "required": ["description", "tests"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"description" : "using JSON pointers in external $ref", "tests" : [{"description" : "should resolve from remote definitions", "schema" : {"$schema" : "http://json-schema.org/draft-04/schema#", "title" : "Static Analysis Results Format (SARIF) Version 2.1.0-rtm.5 address fragment", "id" : "https://sarif/address-fragment.json", "description" : "A dynamic fragment of a SARIF schema.", "allOf" : [{"$ref" : "https://raw.githubusercontent.com/schemastore/schemastore/master/src/schemas/json/sarif-2.1.0-rtm.5.json#/definitions/address"}]}, "valid" : true}]}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"description": {"type": "string"}, "tests": {"type": "array", "items": {"type": "object", "properties": {"description": {"type": "string"}, "schema": {"type": "object", "properties": {"$schema": {"type": "string"}, "title": {"type": "string"}, "id": {"type": "string"}, "description": {"type": "string"}, "allOf": {"type": "array", "items": {"type": "object", "properties": {"$ref": {"type": "string"}}, "required": ["$ref"]}}}, "required": ["$schema", "title", "id", "description", "allOf"]}, "valid": {"type": "boolean"}}, "required": ["description", "schema", "valid"]}}}, "required": ["description", "tests"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"d3.js": {"type": "string"}, "d3.min.js": {"type": "string"}}, "required": ["d3.js", "d3.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"d3.js" : "sha512-BfrWc0JDWFqAdTAwL8boTPth6ii6gLobS4LHGd/wDSqKAagOTfhuQBihi1O6ryDUjp5/AjhfFkK6rjVSBWykJA==", "d3.min.js" : "sha512-1grOEEkgIqmW3Z7xNTn3pqjOiJoXQi6BrzYCAEmlmIETTnZ9VLoNYxysvtfaoXyn8KB356XzlkHb3X2sBVGtYw=="} | json_instruct | {"type": "object", "properties": {"d3.js": {"type": "string"}, "d3.min.js": {"type": "string"}}, "required": ["d3.js", "d3.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"imageUrl": {"type": "string"}, "title": {"type": "string"}, "description": {"type": "string"}}, "required": ["imageUrl", "title", "description"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"imageUrl" : "https://flipperguy.github.io/images/shoe-two.png", "title" : "Shoe Two", "description" : "This is an Adidas NMD. Sed ut perspiciatis, unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam eaque ipsa, quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt, explicabo. Nemo enim ipsam voluptatem, quia voluptas sit."} | json_instruct | {"type": "object", "properties": {"imageUrl": {"type": "string"}, "title": {"type": "string"}, "description": {"type": "string"}}, "required": ["imageUrl", "title", "description"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"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"}}, "required": ["id", "name"]}}, "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" : 132842, "info" : {"name" : "Game20.gr Dark Theme", "description" : "A simple dark theme for Game20.gr", "additionalInfo" : null, "format" : "uso", "category" : "game20", "createdAt" : "2016-09-19T02:20:51.000Z", "updatedAt" : "2017-05-22T21:41:33.000Z", "license" : "CC-BY-SA-4.0", "author" : {"id" : 357990, "name" : "Fran\u00e7ois l'Olonnais"}}, "stats" : {"installs" : {"total" : 9, "weekly" : 0}}, "screenshots" : {"main" : {"name" : "132842_after.png", "archived" : false}}, "discussions" : {"stats" : {"discussionsCount" : 0, "commentsCount" : 0}, "data" : []}, "style" : {"css" : "@namespace url(http://www.w3.org/1999/xhtml);\r\n\r\n@-moz-document domain(\"game20.gr\") {\r\n \r\n article, section, .post-title, body{\r\n background: #262630 !important;\r\n color: #eee !important;\r\n }\r\n a{\r\n color: #ddd !important;\r\n }\r\n .author > a{\r\n color: #98c !important;\r\n }\r\np > a{\r\n color: #66f !important;\r\n }\r\n .date-author > a{\r\n color: #f11 !important;\r\n }\r\n .header{\r\n filter: invert(100%) hue-rotate(180deg) saturate(360%) brightness(0.3) !important;\r\n }\r\n .sub > li > a > span{\r\n color: #000;\r\n }\r\n .logo a{\r\n height: 103px !important;\r\n }\r\n .content > p, .yarpp-thumbnail-title, .search > div > h2, .newsletter > p{\r\n color: #eee !important;\r\n }\r\n .comments-info, #disqus_thread{\r\n background: #222229 !important;\r\n color: #eee !important;\r\n }\r\n h2{\r\n background: #202023 !important;\r\n }\r\n .page-numbers, .page-numbers a{\r\n background: #575260 !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"}}, "required": ["id", "name"]}}, "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#"} |
Please provide a valid JSON object following this schema:
{"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "text": {"type": "string"}}, "required": ["id", "text"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"id" : "430521119001", "text" : "\u5f53\u5bb6\u5c45\u59d4\u4f1a"}, {"id" : "430521119002", "text" : "\u5411\u8363\u5c45\u59d4\u4f1a"}, {"id" : "430521119201", "text" : "\u754c\u5cad\u6751\u59d4\u4f1a"}, {"id" : "430521119207", "text" : "\u96c6\u4e2d\u6751\u59d4\u4f1a"}, {"id" : "430521119215", "text" : "\u5927\u4e30\u6751\u59d4\u4f1a"}, {"id" : "430521119220", "text" : "\u91d1\u4ed9\u94fa\u6751\u59d4\u4f1a"}, {"id" : "430521119221", "text" : "\u814a\u6811\u6751\u59d4\u4f1a"}, {"id" : "430521119222", "text" : "\u957f\u5858\u6751\u59d4\u4f1a"}, {"id" : "430521119225", "text" : "\u7231\u7a91\u6751\u59d4\u4f1a"}, {"id" : "430521119229", "text" : "\u5357\u51b2\u6751\u59d4\u4f1a"}, {"id" : "430521119230", "text" : "\u91d1\u94f6\u6751"}, {"id" : "430521119231", "text" : "\u91d1\u65d7\u6751"}, {"id" : "430521119232", "text" : "\u7fa4\u529b\u6751"}, {"id" : "430521119233", "text" : "\u7ea2\u661f\u6751"}, {"id" : "430521119234", "text" : "\u5c71\u864e\u6751"}, {"id" : "430521119235", "text" : "\u5cf0\u534e\u6751"}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "text": {"type": "string"}}, "required": ["id", "text"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "directories": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "compile": {"type": "string"}, "migrate": {"type": "string"}, "dev-setup": {"type": "string"}, "test-setup": {"type": "string"}, "flatten": {"type": "string"}, "doc": {"type": "string"}}, "required": ["test", "compile", "migrate", "dev-setup", "test-setup", "flatten", "doc"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"@maticnetwork/maticjs": {"type": "string"}, "@openzeppelin/contracts": {"type": "string"}, "@openzeppelin/test-helpers": {"type": "string"}, "@poanet/solidity-flattener": {"type": "string"}, "@truffle/hdwallet-provider": {"type": "string"}, "dotenv": {"type": "string"}, "solc-0.8": {"type": "string"}, "solidity-docgen": {"type": "string"}}, "required": ["@maticnetwork/maticjs", "@openzeppelin/contracts", "@openzeppelin/test-helpers", "@poanet/solidity-flattener", "@truffle/hdwallet-provider", "dotenv", "solc-0.8", "solidity-docgen"]}}, "required": ["name", "version", "description", "main", "directories", "scripts", "repository", "keywords", "author", "license", "bugs", "homepage", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "freeport", "version" : "1.0.0", "description" : "The Freeport smart contracts", "main" : "truffle-config.js", "directories" : {"test" : "test"}, "scripts" : {"test" : "truffle test --network=$npm_config_network", "compile" : "truffle compile", "migrate" : "truffle migrate --network=$npm_config_network", "dev-setup" : "truffle exec scripts/dev_setup.js --network=$npm_config_network", "test-setup" : "truffle exec scripts/test_setup.js --network=$npm_config_network", "flatten" : "npx poa-solidity-flattener contracts/Freeport.sol", "doc" : "npx solidity-docgen --solc-module=solc-0.8 -t doc_template -o docs"}, "repository" : {"type" : "git", "url" : "git+https://github.com/Cerebellum-Network/Freeport-Smart-Contracts.git"}, "keywords" : ["Cere", "Polygon", "Freeport", "NFT"], "author" : "Aur\u00e9lien Nicolas and team", "license" : "Apache-2.0", "bugs" : {"url" : "https://github.com/Cerebellum-Network/Freeport-Smart-Contracts/issues"}, "homepage" : "https://github.com/Cerebellum-Network/Freeport-Smart-Contracts#readme", "devDependencies" : {"@maticnetwork/maticjs" : "^2.0.40", "@openzeppelin/contracts" : "4.1.0", "@openzeppelin/test-helpers" : "^0.5.12", "@poanet/solidity-flattener" : "^3.0.6", "@truffle/hdwallet-provider" : "^1.4.1", "dotenv" : "^9.0.0", "solc-0.8" : "npm:[email protected]", "solidity-docgen" : "^0.5.13"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "directories": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "compile": {"type": "string"}, "migrate": {"type": "string"}, "dev-setup": {"type": "string"}, "test-setup": {"type": "string"}, "flatten": {"type": "string"}, "doc": {"type": "string"}}, "required": ["test", "compile", "migrate", "dev-setup", "test-setup", "flatten", "doc"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"@maticnetwork/maticjs": {"type": "string"}, "@openzeppelin/contracts": {"type": "string"}, "@openzeppelin/test-helpers": {"type": "string"}, "@poanet/solidity-flattener": {"type": "string"}, "@truffle/hdwallet-provider": {"type": "string"}, "dotenv": {"type": "string"}, "solc-0.8": {"type": "string"}, "solidity-docgen": {"type": "string"}}, "required": ["@maticnetwork/maticjs", "@openzeppelin/contracts", "@openzeppelin/test-helpers", "@poanet/solidity-flattener", "@truffle/hdwallet-provider", "dotenv", "solc-0.8", "solidity-docgen"]}}, "required": ["name", "version", "description", "main", "directories", "scripts", "repository", "keywords", "author", "license", "bugs", "homepage", "devDependencies"], "$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"}, "properties": {"type": "object", "properties": {"requestBody": {"type": "object", "properties": {"additionalProperties": {"type": "boolean"}, "properties": {"type": "object", "properties": {"expand": {"type": "object", "properties": {"description": {"type": "string"}, "items": {"type": "object", "properties": {"maxLength": {"type": "integer"}, "type": {"type": "string"}}, "required": ["maxLength", "type"]}, "type": {"type": "string"}}, "required": ["description", "items", "type"]}, "location": {"type": "object", "properties": {"description": {"type": "string"}, "maxLength": {"type": "integer"}, "type": {"type": "string"}}, "required": ["description", "maxLength", "type"]}}, "required": ["expand", "location"]}, "type": {"type": "string"}}, "required": ["additionalProperties", "properties", "type"]}}, "required": ["requestBody"]}}, "required": ["type", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"type" : "object", "properties" : {"requestBody" : {"additionalProperties" : false, "properties" : {"expand" : {"description" : "Specifies which fields in the response should be expanded.", "items" : {"maxLength" : 5000, "type" : "string"}, "type" : "array"}, "location" : {"description" : "The id of the location that this connection token is scoped to. If specified the connection token will only be usable with readers assigned to that location, otherwise the connection token will be usable with all readers. Note that location scoping only applies to internet-connected readers. For more details, see [the docs on scoping connection tokens](https://stripe.com/docs/terminal/fleet/locations#connection-tokens).", "maxLength" : 5000, "type" : "string"}}, "type" : "object"}}} | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"requestBody": {"type": "object", "properties": {"additionalProperties": {"type": "boolean"}, "properties": {"type": "object", "properties": {"expand": {"type": "object", "properties": {"description": {"type": "string"}, "items": {"type": "object", "properties": {"maxLength": {"type": "integer"}, "type": {"type": "string"}}, "required": ["maxLength", "type"]}, "type": {"type": "string"}}, "required": ["description", "items", "type"]}, "location": {"type": "object", "properties": {"description": {"type": "string"}, "maxLength": {"type": "integer"}, "type": {"type": "string"}}, "required": ["description", "maxLength", "type"]}}, "required": ["expand", "location"]}, "type": {"type": "string"}}, "required": ["additionalProperties", "properties", "type"]}}, "required": ["requestBody"]}}, "required": ["type", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"name": {"type": "string"}, "symbol": {"type": "string"}, "address": {"type": "string"}, "decimals": {"type": "integer"}, "dharmaVerificationStatus": {"type": "string"}}, "required": ["name", "symbol", "address", "decimals", "dharmaVerificationStatus"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "QVANT.FINANCE", "symbol" : "QVANT", "address" : "0x04F118DDe1441889DC485Cb614049E7E9f4Dd16b", "decimals" : 18, "dharmaVerificationStatus" : "UNVERIFIED"} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "symbol": {"type": "string"}, "address": {"type": "string"}, "decimals": {"type": "integer"}, "dharmaVerificationStatus": {"type": "string"}}, "required": ["name", "symbol", "address", "decimals", "dharmaVerificationStatus"], "$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.