input
stringlengths
159
2.05k
output
stringlengths
5
10.3k
task
stringclasses
1 value
schema
stringlengths
100
1.99k
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {"type": "integer"}}, "productReviews": {"type": "array", "items": {}}}, "required": ["userId", "cartId", "preferredProducts", "productReviews"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"userId" : 42781, "cartId" : "ee9092b3-5127-4f8b-9c03-21806296f3b5", "preferredProducts" : [902, 4259, 4397], "productReviews" : []}
json_instruct
{"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {"type": "integer"}}, "productReviews": {"type": "array", "items": {}}}, "required": ["userId", "cartId", "preferredProducts", "productReviews"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "dependencies": {"type": "object", "properties": {"mongoose": {"type": "string"}, "ejs": {"type": "string"}, "express": {"type": "string"}, "gopher": {"type": "string"}, "jquery": {"type": "string"}, "twilio": {"type": "string"}, "node-buzz": {"type": "string"}, "sanitizer": {"type": "string"}}, "required": ["mongoose", "ejs", "express", "gopher", "jquery", "twilio", "node-buzz", "sanitizer"]}, "engines": {"type": "object", "properties": {"node": {"type": "string"}}, "required": ["node"]}}, "required": ["name", "version", "description", "main", "scripts", "repository", "keywords", "author", "license", "bugs", "dependencies", "engines"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "raffler", "version" : "0.0.1", "description" : "The Raffler makes it easy to setup SMS raffles to give out prizes at your events!", "main" : "app.js", "scripts" : {"test" : "echo \"Error: no test specified\" && exit 1"}, "repository" : {"type" : "git", "url" : "https://github.com/kwhinnery/raffler.git"}, "keywords" : ["sms", "raffle", "twilio"], "author" : "Kevin Whinnery", "license" : "MIT", "bugs" : {"url" : "https://github.com/kwhinnery/raffler/issues"}, "dependencies" : {"mongoose" : "~3.8.8", "ejs" : "~0.8.5", "express" : "~3.4.8", "gopher" : "0.0.7", "jquery" : "~2.1.0", "twilio" : "~1.6.0", "node-buzz" : "~1.1.0", "sanitizer" : "~0.1.1"}, "engines" : {"node" : "0.10.26"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "dependencies": {"type": "object", "properties": {"mongoose": {"type": "string"}, "ejs": {"type": "string"}, "express": {"type": "string"}, "gopher": {"type": "string"}, "jquery": {"type": "string"}, "twilio": {"type": "string"}, "node-buzz": {"type": "string"}, "sanitizer": {"type": "string"}}, "required": ["mongoose", "ejs", "express", "gopher", "jquery", "twilio", "node-buzz", "sanitizer"]}, "engines": {"type": "object", "properties": {"node": {"type": "string"}}, "required": ["node"]}}, "required": ["name", "version", "description", "main", "scripts", "repository", "keywords", "author", "license", "bugs", "dependencies", "engines"], "$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" : "Guargual\u00e9", "dpt" : "Corse-du-Sud", "inscrits" : 142, "abs" : 22, "votants" : 120, "blancs" : 47, "nuls" : 2, "exp" : 71, "res" : [{"panneau" : "1", "voix" : 41}, {"panneau" : "2", "voix" : 30}]}
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#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"@yggdrasilts/core": {"type": "string"}, "class-validator": {"type": "string"}, "express": {"type": "string"}, "mysql": {"type": "string"}, "sqlite3": {"type": "string"}, "typeorm": {"type": "string"}}, "required": ["@yggdrasilts/core", "class-validator", "express", "mysql", "sqlite3", "typeorm"]}}, "required": ["name", "version", "author", "license", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "@yggdrasilts/data", "version" : "0.0.1-alpha.0", "author" : "David Lopez", "license" : "MIT", "dependencies" : {"@yggdrasilts/core" : "canary", "class-validator" : "^0.9.1", "express" : "^4.16.4", "mysql" : "^2.16.0", "sqlite3" : "^4.0.4", "typeorm" : "^0.2.9"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"@yggdrasilts/core": {"type": "string"}, "class-validator": {"type": "string"}, "express": {"type": "string"}, "mysql": {"type": "string"}, "sqlite3": {"type": "string"}, "typeorm": {"type": "string"}}, "required": ["@yggdrasilts/core", "class-validator", "express", "mysql", "sqlite3", "typeorm"]}}, "required": ["name", "version", "author", "license", "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"}, "author": {"type": "string"}, "license": {"type": "string"}, "description": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "homepage": {"type": "string"}, "bugs": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "main": {"type": "string"}, "dependencies": {"type": "object", "properties": {"loader-utils": {"type": "string"}}, "required": ["loader-utils"]}, "peerDependencies": {"type": "object", "properties": {"typescript": {"type": "string"}}, "required": ["typescript"]}, "devDependencies": {"type": "object", "properties": {"typescript": {"type": "string"}}, "required": ["typescript"]}}, "required": ["name", "version", "author", "license", "description", "keywords", "homepage", "bugs", "repository", "main", "dependencies", "peerDependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "webpack-typescript", "version" : "0.5.6", "author" : "Denis Nedelyaev", "license" : "MIT", "description" : "Lightweight, cleanly designed TypeScript Loader for webpack.", "keywords" : ["typescript-loader", "ts-loader", "webpack-loader", "typescript", "loader", "webpack", "ts", "tsx", "jsx"], "homepage" : "https://github.com/denvned/webpack-typescript", "bugs" : "https://github.com/denvned/webpack-typescript/issues", "repository" : {"type" : "git", "url" : "https://github.com/denvned/webpack-typescript.git"}, "main" : "lib/index.js", "dependencies" : {"loader-utils" : "^0.2.11"}, "peerDependencies" : {"typescript" : "^1.5.3 || >1.7.0-dev || >1.8.0-dev"}, "devDependencies" : {"typescript" : "^1.6.2"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "author": {"type": "string"}, "license": {"type": "string"}, "description": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "homepage": {"type": "string"}, "bugs": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "main": {"type": "string"}, "dependencies": {"type": "object", "properties": {"loader-utils": {"type": "string"}}, "required": ["loader-utils"]}, "peerDependencies": {"type": "object", "properties": {"typescript": {"type": "string"}}, "required": ["typescript"]}, "devDependencies": {"type": "object", "properties": {"typescript": {"type": "string"}}, "required": ["typescript"]}}, "required": ["name", "version", "author", "license", "description", "keywords", "homepage", "bugs", "repository", "main", "dependencies", "peerDependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"version": {"type": "string"}, "flags": {"type": "object", "properties": {}, "required": []}, "shapes": {"type": "array", "items": {"type": "object", "properties": {"label": {"type": "string"}, "points": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}, "group_id": {"type": "integer"}, "shape_type": {"type": "string"}, "flags": {"type": "object", "properties": {}, "required": []}}, "required": ["label", "points", "group_id", "shape_type", "flags"]}}, "imagePath": {"type": "string"}, "imageData": {"type": "string"}, "imageWidth": {"type": "integer"}, "imageHeight": {"type": "integer"}}, "required": ["version", "flags", "shapes", "imagePath", "imageData", "imageWidth", "imageHeight"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"version" : "4.5.6", "flags" : {}, "shapes" : [{"label" : "null", "points" : [[630, 518], [781, 513], [815, 1152], [625, 1155]], "group_id" : 0, "shape_type" : "polygon", "flags" : {}}], "imagePath" : "img_2222.jpg", "imageData" : "null", "imageWidth" : 1024, "imageHeight" : 1365}
json_instruct
{"type": "object", "properties": {"version": {"type": "string"}, "flags": {"type": "object", "properties": {}, "required": []}, "shapes": {"type": "array", "items": {"type": "object", "properties": {"label": {"type": "string"}, "points": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}, "group_id": {"type": "integer"}, "shape_type": {"type": "string"}, "flags": {"type": "object", "properties": {}, "required": []}}, "required": ["label", "points", "group_id", "shape_type", "flags"]}}, "imagePath": {"type": "string"}, "imageData": {"type": "string"}, "imageWidth": {"type": "integer"}, "imageHeight": {"type": "integer"}}, "required": ["version", "flags", "shapes", "imagePath", "imageData", "imageWidth", "imageHeight"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}, "dev": {"type": "string"}, "test": {"type": "string"}}, "required": ["start", "dev", "test"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "dependencies": {"type": "object", "properties": {"@prisma/client": {"type": "string"}, "axios": {"type": "string"}, "discord.js": {"type": "string"}, "dotenv": {"type": "string"}}, "required": ["@prisma/client", "axios", "discord.js", "dotenv"]}, "devDependencies": {"type": "object", "properties": {"eslint": {"type": "string"}, "nodemon": {"type": "string"}, "prisma": {"type": "string"}}, "required": ["eslint", "nodemon", "prisma"]}}, "required": ["name", "version", "description", "main", "scripts", "repository", "keywords", "author", "license", "bugs", "homepage", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "discord-bot-rastreadorencomendassequoia", "version" : "0.1.0", "description" : "Um bot criado para rastrear encomendas da entregadora Sequoia", "main" : "index.js", "scripts" : {"start" : "node ./index.js", "dev" : "npx nodemon ./index.js", "test" : "echo \"Error: no test specified\" && exit 1"}, "repository" : {"type" : "git", "url" : "git+https://github.com/raiomarco/discord-bot-rastreadorEncomendasSequoia.git"}, "keywords" : ["discord", "bot", "encomendas", "rastreador", "sequoia"], "author" : "raiomarco", "license" : "ISC", "bugs" : {"url" : "https://github.com/raiomarco/discord-bot-rastreadorEncomendasSequoia/issues"}, "homepage" : "https://github.com/raiomarco/discord-bot-rastreadorEncomendasSequoia#readme", "dependencies" : {"@prisma/client" : "^2.24.1", "axios" : "^0.21.1", "discord.js" : "^12.5.3", "dotenv" : "^10.0.0"}, "devDependencies" : {"eslint" : "^7.28.0", "nodemon" : "^2.0.7", "prisma" : "^2.24.1"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}, "dev": {"type": "string"}, "test": {"type": "string"}}, "required": ["start", "dev", "test"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "dependencies": {"type": "object", "properties": {"@prisma/client": {"type": "string"}, "axios": {"type": "string"}, "discord.js": {"type": "string"}, "dotenv": {"type": "string"}}, "required": ["@prisma/client", "axios", "discord.js", "dotenv"]}, "devDependencies": {"type": "object", "properties": {"eslint": {"type": "string"}, "nodemon": {"type": "string"}, "prisma": {"type": "string"}}, "required": ["eslint", "nodemon", "prisma"]}}, "required": ["name", "version", "description", "main", "scripts", "repository", "keywords", "author", "license", "bugs", "homepage", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "exports": {"type": "object", "properties": {".": {"type": "string"}, "./": {"type": "string"}}, "required": [".", "./"]}, "type": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "lint": {"type": "string"}, "clear": {"type": "string"}}, "required": ["test", "lint", "clear"]}, "author": {"type": "string"}, "license": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "dependencies": {"type": "object", "properties": {"javascript-algebra": {"type": "string"}}, "required": ["javascript-algebra"]}, "devDependencies": {"type": "object", "properties": {"@types/node": {"type": "string"}, "babel-eslint": {"type": "string"}, "eslint": {"type": "string"}, "eslint-config-standard": {"type": "string"}, "eslint-plugin-import": {"type": "string"}, "eslint-plugin-node": {"type": "string"}, "eslint-plugin-promise": {"type": "string"}}, "required": ["@types/node", "babel-eslint", "eslint", "eslint-config-standard", "eslint-plugin-import", "eslint-plugin-node", "eslint-plugin-promise"]}, "homepage": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}}, "required": ["name", "version", "description", "main", "exports", "type", "scripts", "author", "license", "keywords", "dependencies", "devDependencies", "homepage", "repository", "bugs"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "javascript-canvas", "version" : "1.1.10", "description" : "\u0420\u0438\u0441\u043e\u0432\u0430\u043d\u0438\u0435 \u0441 \u043f\u043e\u043c\u043e\u0449\u044c\u044e Canvas API @2d", "main" : "index.js", "exports" : {"." : "./index.js", "./" : "./library/"}, "type" : "module", "scripts" : {"test" : "echo \"Error: no test specified\" && exit 1", "lint" : "./node_modules/eslint/bin/eslint.js .", "clear" : "rm -rf node_modules package-lock.json"}, "author" : "https://github.com/xaota", "license" : "Unlicense", "keywords" : ["javascript", "canvas", "math", "algebra", "2d", "graphics", "primitive"], "dependencies" : {"javascript-algebra" : "latest"}, "devDependencies" : {"@types/node" : "^15.12.5", "babel-eslint" : "^10.1.0", "eslint" : "^7.24.0", "eslint-config-standard" : "^16.0.2", "eslint-plugin-import" : "^2.22.1", "eslint-plugin-node" : "^11.1.0", "eslint-plugin-promise" : "^4.3.1"}, "homepage" : "https://github.com/xaota/javascript-canvas#readme", "repository" : {"type" : "git", "url" : "git+https://github.com/xaota/javascript-canvas.git"}, "bugs" : {"url" : "https://github.com/xaota/javascript-canvas/issues"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "exports": {"type": "object", "properties": {".": {"type": "string"}, "./": {"type": "string"}}, "required": [".", "./"]}, "type": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "lint": {"type": "string"}, "clear": {"type": "string"}}, "required": ["test", "lint", "clear"]}, "author": {"type": "string"}, "license": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "dependencies": {"type": "object", "properties": {"javascript-algebra": {"type": "string"}}, "required": ["javascript-algebra"]}, "devDependencies": {"type": "object", "properties": {"@types/node": {"type": "string"}, "babel-eslint": {"type": "string"}, "eslint": {"type": "string"}, "eslint-config-standard": {"type": "string"}, "eslint-plugin-import": {"type": "string"}, "eslint-plugin-node": {"type": "string"}, "eslint-plugin-promise": {"type": "string"}}, "required": ["@types/node", "babel-eslint", "eslint", "eslint-config-standard", "eslint-plugin-import", "eslint-plugin-node", "eslint-plugin-promise"]}, "homepage": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}}, "required": ["name", "version", "description", "main", "exports", "type", "scripts", "author", "license", "keywords", "dependencies", "devDependencies", "homepage", "repository", "bugs"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"title": {"type": "string"}, "fields": {"type": "array", "items": {"type": "string"}}, "abstract": {"type": "string"}, "citation": {"type": "string"}, "departments": {"type": "array", "items": {"type": "string"}}, "authors": {"type": "array", "items": {"type": "string"}}, "conf": {"type": "string"}, "year": {"type": "string"}, "pages": {"type": "integer"}}, "required": ["title", "fields", "abstract", "citation", "departments", "authors", "conf", "year", "pages"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"title" : "Individual models of color differentiation to improve interpretability of information visualization.", "fields" : ["visualization", "interpretability", "information visualization", "color normalization", "color vision"], "abstract" : "Color is commonly used to represent categories and values in many computer applications, but differentiating these colors can be difficult in many situations (e.g., for users with color vision deficiency (CVD), or in bright light). Current solutions to this problem can adapt colors based on standard simulations of CVD, but these models cover only a fraction of the ways in which color perception can vary. To improve the specificity and accuracy of these approaches, we have developed the first ever individualized model of color differentiation (ICD). The model is based on a short calibration performed by a particular user for a particular display, and so automatically covers all aspects of the user's ability to see and differentiate colors in an environment. In this paper we introduce the new model and the manner in which differentiability limits are predicted. We gathered empirical data from 16 users to assess the model's accuracy and robustness. We found that the model is highly effective at capturing individual differentiation abilities, works for users with and without CVD, can be tuned to balance accuracy and color availability, and can serve as the basis for improved color adaptation schemes.", "citation" : "Citations (15)", "departments" : ["University of Saskatchewan", "University of Saskatchewan"], "authors" : ["David R. Flatla.....http://dblp.org/pers/hd/f/Flatla:David_R=", "Carl Gutwin.....http://dblp.org/pers/hd/g/Gutwin:Carl"], "conf" : "chi", "year" : "2010", "pages" : 10}
json_instruct
{"type": "object", "properties": {"title": {"type": "string"}, "fields": {"type": "array", "items": {"type": "string"}}, "abstract": {"type": "string"}, "citation": {"type": "string"}, "departments": {"type": "array", "items": {"type": "string"}}, "authors": {"type": "array", "items": {"type": "string"}}, "conf": {"type": "string"}, "year": {"type": "string"}, "pages": {"type": "integer"}}, "required": ["title", "fields", "abstract", "citation", "departments", "authors", "conf", "year", "pages"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"timestamp": {"type": "integer"}, "object_list": {"type": "array", "items": {"type": "object", "properties": {"position": {"type": "array", "items": {"type": "number"}}, "id": {"type": "integer"}}, "required": ["position", "id"]}}, "frame": {"type": "integer"}, "size": {"type": "integer"}}, "required": ["timestamp", "object_list", "frame", "size"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"timestamp" : 931, "object_list" : [{"position" : [2.68911270569, 12.8857199061], "id" : 606}, {"position" : [3.37417663752, 12.5506415473], "id" : 607}, {"position" : [11.6808135842, 12.6489693848], "id" : 608}, {"position" : [4.28401730643, 10.2688152023], "id" : 613}, {"position" : [1.66898831933, 7.4996455462], "id" : 615}, {"position" : [0.0631395328877, 6.46768057223], "id" : 616}, {"position" : [7.91874974966, 3.53980214935], "id" : 617}, {"position" : [2.80739409729, 4.4152062947], "id" : 618}, {"position" : [8.82353925594, 5.48631147581], "id" : 619}, {"position" : [1.08536857034, 5.57175168411], "id" : 620}, {"position" : [0.759568580639, 4.93381403948], "id" : 621}, {"position" : [12.0762775252, 10.7707167611], "id" : 706}, {"position" : [3.92622662006, 11.2239317207], "id" : 777}, {"position" : [4.2703370743, 11.5296549242], "id" : 778}, {"position" : [13.9628867679, 12.1921745282], "id" : 785}, {"position" : [13.632877476, 1.9152448927], "id" : 848}], "frame" : 931, "size" : 16}
json_instruct
{"type": "object", "properties": {"timestamp": {"type": "integer"}, "object_list": {"type": "array", "items": {"type": "object", "properties": {"position": {"type": "array", "items": {"type": "number"}}, "id": {"type": "integer"}}, "required": ["position", "id"]}}, "frame": {"type": "integer"}, "size": {"type": "integer"}}, "required": ["timestamp", "object_list", "frame", "size"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"messageType": {"type": "string"}, "hexData": {"type": "string"}, "hexId": {"type": "string"}, "countryCode": {"type": "integer"}, "protocolType": {"type": "string"}, "aircraft24BitAddressHex": {"type": "string"}, "aircraft24BitAddressOctal": {"type": "string"}, "errorCorrectingCode1": {"type": "string"}, "encodedPositionSource": {"type": "string"}, "homing121_5MHz": {"type": "boolean"}, "errorCorrectingCode2": {"type": "string"}}, "required": ["messageType", "hexData", "hexId", "countryCode", "protocolType", "aircraft24BitAddressHex", "aircraft24BitAddressOctal", "errorCorrectingCode1", "encodedPositionSource", "homing121_5MHz", "errorCorrectingCode2"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"messageType" : "Standard Location (Long)", "hexData" : "96E3AAAAAA7FDFF8211F3583E0FAA8", "hexId" : "2DC7555554FFBFF", "countryCode" : 366, "protocolType" : "Aircraft Address", "aircraft24BitAddressHex" : "AAAAAA", "aircraft24BitAddressOctal" : "52525252", "errorCorrectingCode1" : "000001000010001111100", "encodedPositionSource" : "EXTERNAL", "homing121_5MHz" : true, "errorCorrectingCode2" : "101010101000"}
json_instruct
{"type": "object", "properties": {"messageType": {"type": "string"}, "hexData": {"type": "string"}, "hexId": {"type": "string"}, "countryCode": {"type": "integer"}, "protocolType": {"type": "string"}, "aircraft24BitAddressHex": {"type": "string"}, "aircraft24BitAddressOctal": {"type": "string"}, "errorCorrectingCode1": {"type": "string"}, "encodedPositionSource": {"type": "string"}, "homing121_5MHz": {"type": "boolean"}, "errorCorrectingCode2": {"type": "string"}}, "required": ["messageType", "hexData", "hexId", "countryCode", "protocolType", "aircraft24BitAddressHex", "aircraft24BitAddressOctal", "errorCorrectingCode1", "encodedPositionSource", "homing121_5MHz", "errorCorrectingCode2"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"jquery.details.js": {"type": "string"}, "jquery.details.min.js": {"type": "string"}}, "required": ["jquery.details.js", "jquery.details.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"jquery.details.js" : "sha512-GoDPcEEWrWXyutD9wK1ld2SLa/xcLFymuehZ0yan/MZtCMkXbTMs95UG0/9Yt4GhqetjCmYbhX5sp+rmR3OZxg==", "jquery.details.min.js" : "sha512-pIgpH1UobYqt7AgeJUHu44Yy2OuQvpPelbatOFfeKmzd52Em/wWmrFrMjUqwQ7dzV61bCCp1UnlT9eoqoxuDmQ=="}
json_instruct
{"type": "object", "properties": {"jquery.details.js": {"type": "string"}, "jquery.details.min.js": {"type": "string"}}, "required": ["jquery.details.js", "jquery.details.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"url": {"type": "string"}, "sha1": {"type": "string"}}, "required": ["url", "sha1"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"url" : "https://static.wikia.nocookie.net/griftlands_gamepedia_en/images/d/da/Regenerating_Thickness.png/revision/latest?cb=20210808160757", "sha1" : "529741a6b8e45aa58a101a01bba1de2cdebeb1da"}
json_instruct
{"type": "object", "properties": {"url": {"type": "string"}, "sha1": {"type": "string"}}, "required": ["url", "sha1"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"track": {"type": "string"}, "exercise": {"type": "string"}, "id": {"type": "string"}, "url": {"type": "string"}, "handle": {"type": "string"}, "is_requester": {"type": "boolean"}, "auto_approve": {"type": "boolean"}}, "required": ["track", "exercise", "id", "url", "handle", "is_requester", "auto_approve"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"track" : "csharp", "exercise" : "hangman", "id" : "39e8520b7f514c6eb59a78e0ac8efbb1", "url" : "https://exercism.org/tracks/csharp/exercises/hangman", "handle" : "ErikSchierboom", "is_requester" : true, "auto_approve" : false}
json_instruct
{"type": "object", "properties": {"track": {"type": "string"}, "exercise": {"type": "string"}, "id": {"type": "string"}, "url": {"type": "string"}, "handle": {"type": "string"}, "is_requester": {"type": "boolean"}, "auto_approve": {"type": "boolean"}}, "required": ["track", "exercise", "id", "url", "handle", "is_requester", "auto_approve"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"}
["q-test-test"]
json_instruct
{"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"@metadata": {"type": "object", "properties": {"authors": {"type": "array", "items": {"type": "string"}}}, "required": ["authors"]}, "passwordlesslogin": {"type": "string"}, "passwordlesslogin-desc": {"type": "string"}, "passwordlesslogin-verify-request": {"type": "string"}, "passwordlesslogin-error-no-authentication-workflow": {"type": "string"}, "passwordlesslogin-verification-pending": {"type": "string"}, "passwordlesslogin-pair-device-step": {"type": "string"}, "passwordlesslogin-no-device-paired": {"type": "string"}, "passwordlesslogin-pair-device": {"type": "string"}, "passwordlesslogin-login": {"type": "string"}, "passwordlesslogin-pair-step-1": {"type": "string"}, "passwordlesslogin-pair-step-2": {"type": "string"}, "passwordlesslogin-pair-step-3": {"type": "string"}, "passwordlesslogin-authentication-app": {"type": "string"}}, "required": ["@metadata", "passwordlesslogin", "passwordlesslogin-desc", "passwordlesslogin-verify-request", "passwordlesslogin-error-no-authentication-workflow", "passwordlesslogin-verification-pending", "passwordlesslogin-pair-device-step", "passwordlesslogin-no-device-paired", "passwordlesslogin-pair-device", "passwordlesslogin-login", "passwordlesslogin-pair-step-1", "passwordlesslogin-pair-step-2", "passwordlesslogin-pair-step-3", "passwordlesslogin-authentication-app"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"@metadata" : {"authors" : ["Ykhwong"]}, "passwordlesslogin" : "\ube44\ubc00\ubc88\ud638 \uc5c6\ub294 \ub85c\uadf8\uc778", "passwordlesslogin-desc" : "\uc5f0\uacb0\ub41c \uc7a5\uce58\uc5d0\uc11c \ub85c\uadf8\uc778\uc744 \ud655\uc778\ud568\uc73c\ub85c\uc368 \ube44\ubc00\ubc88\ud638 \uc5c6\uc774 \ub85c\uadf8\uc778\ud558\ub294 \ubc29\ubc95\uc744 \uc81c\uacf5\ud569\ub2c8\ub2e4.", "passwordlesslogin-verify-request" : "\uc804\ud654\uc5d0\uc11c \ub85c\uadf8\uc778\uc744 \ud655\uc778\ud574 \uc8fc\uc2ed\uc2dc\uc624.", "passwordlesslogin-error-no-authentication-workflow" : "\uc778\uc99d \uc6cc\ud06c\ud50c\ub85c\uac00 \uc608\uae30\uce58 \uc54a\uac8c \uc885\ub8cc\ub418\uc5c8\uc2b5\ub2c8\ub2e4.", "passwordlesslogin-verification-pending" : "\uc778\uc99d\uc774 \uc544\uc9c1 \ud655\uc778\ub418\uc9c0 \uc54a\uc558\uc2b5\ub2c8\ub2e4. \uc5f0\uacb0\ub41c \uc7a5\uce58\uc5d0\uc11c \ub85c\uadf8\uc778 \uc694\uccad\uc744 \ud655\uc778\ud574 \uc8fc\uc2ed\uc2dc\uc624.", "passwordlesslogin-pair-device-step" : "\uc0c8 \uc7a5\uce58\ub97c \ud398\uc5b4\ub9c1\ud558\ub824\uba74 \uc548\ub0b4\ub97c \uc900\uc218\ud574 \uc8fc\uc2ed\uc2dc\uc624.", "passwordlesslogin-no-device-paired" : "\ud398\uc5b4\ub9c1\ub41c \uc7a5\uce58\uac00 \uc544\uc9c1 \uc5c6\uc2b5\ub2c8\ub2e4.", "passwordlesslogin-pair-device" : "\ube44\ubc00\ubc88\ud638 \uc5c6\ub294 \ub85c\uadf8\uc778\uc744 \uc704\ud574 \uc7a5\uce58\ub97c \ud398\uc5b4\ub9c1\ud569\ub2c8\ub2e4", "passwordlesslogin-login" : "\ub0b4 \uc2a4\ub9c8\ud2b8\ud3f0\uc73c\ub85c \ub85c\uadf8\uc778", "passwordlesslogin-pair-step-1" : "1. MediaWiki PasswordlessLogin \uc571\uc744 \ub2e4\uc6b4\ub85c\ub4dc\ud569\ub2c8\ub2e4", "passwordlesslogin-pair-step-2" : "2. \uc571\uc73c\ub85c QR \ucf54\ub4dc\ub97c \uc2a4\uce94\ud569\ub2c8\ub2e4", "passwordlesslogin-pair-step-3" : "3. \uc571 \uc124\uce58\uac00 \ub05d\ub098\uba74 \ub2e4\uc74c \ub2e8\uacc4\ub85c \uacc4\uc18d\ud569\ub2c8\ub2e4", "passwordlesslogin-authentication-app" : "\uc778\uc99d \uc571"}
json_instruct
{"type": "object", "properties": {"@metadata": {"type": "object", "properties": {"authors": {"type": "array", "items": {"type": "string"}}}, "required": ["authors"]}, "passwordlesslogin": {"type": "string"}, "passwordlesslogin-desc": {"type": "string"}, "passwordlesslogin-verify-request": {"type": "string"}, "passwordlesslogin-error-no-authentication-workflow": {"type": "string"}, "passwordlesslogin-verification-pending": {"type": "string"}, "passwordlesslogin-pair-device-step": {"type": "string"}, "passwordlesslogin-no-device-paired": {"type": "string"}, "passwordlesslogin-pair-device": {"type": "string"}, "passwordlesslogin-login": {"type": "string"}, "passwordlesslogin-pair-step-1": {"type": "string"}, "passwordlesslogin-pair-step-2": {"type": "string"}, "passwordlesslogin-pair-step-3": {"type": "string"}, "passwordlesslogin-authentication-app": {"type": "string"}}, "required": ["@metadata", "passwordlesslogin", "passwordlesslogin-desc", "passwordlesslogin-verify-request", "passwordlesslogin-error-no-authentication-workflow", "passwordlesslogin-verification-pending", "passwordlesslogin-pair-device-step", "passwordlesslogin-no-device-paired", "passwordlesslogin-pair-device", "passwordlesslogin-login", "passwordlesslogin-pair-step-1", "passwordlesslogin-pair-step-2", "passwordlesslogin-pair-step-3", "passwordlesslogin-authentication-app"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"type": {"type": "string"}, "level": {"type": "string"}, "label": {"type": "string"}, "locale": {"type": "string"}, "country_id": {"type": "integer"}, "country_reference": {"type": "integer"}, "country_name": {"type": "string"}, "region_id": {"type": "string"}, "region_reference": {"type": "string"}, "region_name": {"type": "string"}, "province_id": {"type": "string"}, "province_reference": {"type": "string"}, "province_name": {"type": "string"}, "city_id": {"type": "string"}, "city_reference": {"type": "string"}, "city_name": {"type": "string"}, "barangay_id": {"type": "string"}, "barangay_reference": {"type": "string"}, "barangay_name": {"type": "string"}}, "required": ["type", "level", "label", "locale", "country_id", "country_reference", "country_name", "region_id", "region_reference", "region_name", "province_id", "province_reference", "province_name", "city_id", "city_reference", "city_name", "barangay_id", "barangay_reference", "barangay_name"]}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}}, "required": ["type", "coordinates"]}}, "required": ["type", "properties", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"type" : "Feature", "properties" : {"type" : "barangay", "level" : "4", "label" : "Caganayan, Tineg, Abra, Cordillera Administrative Region (CAR), PH", "locale" : "ph.cordillera-administrative-region-car.abra.tineg.caganayan", "country_id" : 177, "country_reference" : 177, "country_name" : "Philippines", "region_id" : "8", "region_reference" : "142", "region_name" : "Cordillera Administrative Region (CAR)", "province_id" : "1", "province_reference" : "1", "province_name" : "Abra", "city_id" : "1349", "city_reference" : "25", "city_name" : "Tineg", "barangay_id" : "39717", "barangay_reference" : "280", "barangay_name" : "Caganayan"}, "geometry" : {"type" : "MultiPolygon", "coordinates" : [[[[120.825569, 17.95528], [120.846069, 17.91954], [120.847618, 17.919121], [120.848831, 17.918131], [120.850029, 17.91782], [120.850632, 17.91643], [120.8508, 17.914499], [120.85144, 17.91345], [120.8564, 17.904551], [120.886909, 17.858179], [120.90374, 17.83177], [120.9048, 17.829741], [120.862869, 17.808571], [120.803459, 17.78373], [120.77346, 17.80859], [120.742867, 17.834249], [120.71241, 17.86031], [120.713699, 17.86305], [120.714653, 17.865549], [120.716118, 17.870621], [120.717163, 17.87369], [120.718178, 17.875799], [120.719337, 17.878019], [120.720619, 17.879829], [120.722237, 17.883619], [120.723297, 17.885349], [120.724571, 17.88788], [120.726242, 17.89093], [120.727547, 17.892891], [120.729523, 17.894171], [120.731911, 17.896549], [120.735718, 17.89883], [120.739326, 17.900539], [120.742996, 17.90181], [120.74752, 17.902679], [120.749634, 17.90308], [120.754913, 17.90361], [120.762589, 17.90657], [120.765251, 17.907089], [120.769409, 17.907391], [120.775253, 17.909691], [120.783218, 17.911699], [120.786636, 17.914289], [120.792061, 17.91881], [120.797508, 17.92384], [120.804092, 17.929939], [120.80957, 17.935551], [120.817329, 17.944269], [120.820679, 17.94912], [120.825569, 17.95528]]]]}}
json_instruct
{"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"type": {"type": "string"}, "level": {"type": "string"}, "label": {"type": "string"}, "locale": {"type": "string"}, "country_id": {"type": "integer"}, "country_reference": {"type": "integer"}, "country_name": {"type": "string"}, "region_id": {"type": "string"}, "region_reference": {"type": "string"}, "region_name": {"type": "string"}, "province_id": {"type": "string"}, "province_reference": {"type": "string"}, "province_name": {"type": "string"}, "city_id": {"type": "string"}, "city_reference": {"type": "string"}, "city_name": {"type": "string"}, "barangay_id": {"type": "string"}, "barangay_reference": {"type": "string"}, "barangay_name": {"type": "string"}}, "required": ["type", "level", "label", "locale", "country_id", "country_reference", "country_name", "region_id", "region_reference", "region_name", "province_id", "province_reference", "province_name", "city_id", "city_reference", "city_name", "barangay_id", "barangay_reference", "barangay_name"]}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}}, "required": ["type", "coordinates"]}}, "required": ["type", "properties", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"all_tests": {"type": "array", "items": {}}, "git": {"type": "string"}, "timeStarted": {"type": "string"}, "timeStopped": {"type": "string"}, "platform": {"type": "string"}}, "required": ["all_tests", "git", "timeStarted", "timeStopped", "platform"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"all_tests" : [], "git" : "ac605491897bd2e5e05f75319069d2ba3beca16f", "timeStarted" : "2022-02-16T07:37:41.501Z", "timeStopped" : "2022-02-16T07:40:06.905Z", "platform" : "iOS"}
json_instruct
{"type": "object", "properties": {"all_tests": {"type": "array", "items": {}}, "git": {"type": "string"}, "timeStarted": {"type": "string"}, "timeStopped": {"type": "string"}, "platform": {"type": "string"}}, "required": ["all_tests", "git", "timeStarted", "timeStopped", "platform"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"data": {"type": "object", "properties": {"site": {"type": "object", "properties": {"siteMetadata": {"type": "object", "properties": {"author": {"type": "object", "properties": {"name": {"type": "string"}, "contacts": {"type": "object", "properties": {"twitter": {"type": "string"}}, "required": ["twitter"]}}, "required": ["name", "contacts"]}, "disqusShortname": {"type": "string"}, "subtitle": {"type": "string"}, "title": {"type": "string"}, "url": {"type": "string"}}, "required": ["author", "disqusShortname", "subtitle", "title", "url"]}}, "required": ["siteMetadata"]}, "markdownRemark": {"type": "null"}}, "required": ["site", "markdownRemark"]}, "pageContext": {"type": "object", "properties": {"slug": {"type": "string"}}, "required": ["slug"]}}, "required": ["data", "pageContext"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"data" : {"site" : {"siteMetadata" : {"author" : {"name" : "Hallgeir Gustavsen", "contacts" : {"twitter" : "#"}}, "disqusShortname" : "", "subtitle" : "Pellentesque odio nisi, euismod in, pharetra a, ultricies in, diam. Sed arcu.", "title" : "Blog by Hallgeir Gustavsen", "url" : "https://lumen.netlify.com"}}, "markdownRemark" : null}, "pageContext" : {"slug" : "/posts/the-birth-of-movable-type/"}}
json_instruct
{"type": "object", "properties": {"data": {"type": "object", "properties": {"site": {"type": "object", "properties": {"siteMetadata": {"type": "object", "properties": {"author": {"type": "object", "properties": {"name": {"type": "string"}, "contacts": {"type": "object", "properties": {"twitter": {"type": "string"}}, "required": ["twitter"]}}, "required": ["name", "contacts"]}, "disqusShortname": {"type": "string"}, "subtitle": {"type": "string"}, "title": {"type": "string"}, "url": {"type": "string"}}, "required": ["author", "disqusShortname", "subtitle", "title", "url"]}}, "required": ["siteMetadata"]}, "markdownRemark": {"type": "null"}}, "required": ["site", "markdownRemark"]}, "pageContext": {"type": "object", "properties": {"slug": {"type": "string"}}, "required": ["slug"]}}, "required": ["data", "pageContext"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"groups": {"type": "object", "properties": {"config": {"type": "object", "properties": {"dir": {"type": "string"}, "data": {"type": "object", "properties": {"type": {"type": "string"}}, "required": ["type"]}}, "required": ["dir", "data"]}, "commons": {"type": "object", "properties": {"dir": {"type": "string"}, "data": {"type": "object", "properties": {"type": {"type": "string"}}, "required": ["type"]}}, "required": ["dir", "data"]}, "express": {"type": "object", "properties": {"dir": {"type": "string"}, "data": {"type": "object", "properties": {"type": {"type": "string"}}, "required": ["type"]}}, "required": ["dir", "data"]}, "models": {"type": "object", "properties": {"dir": {"type": "string"}, "data": {"type": "object", "properties": {"type": {"type": "string"}}, "required": ["type"]}}, "required": ["dir", "data"]}, "services": {"type": "object", "properties": {"dir": {"type": "string"}, "data": {"type": "object", "properties": {"type": {"type": "string"}, "initiate": {"type": "string"}}, "required": ["type", "initiate"]}}, "required": ["dir", "data"]}, "routes": {"type": "object", "properties": {"dir": {"type": "string"}, "data": {"type": "object", "properties": {"type": {"type": "string"}}, "required": ["type"]}}, "required": ["dir", "data"]}}, "required": ["config", "commons", "express", "models", "services", "routes"]}, "npm": {"type": "object", "properties": {}, "required": []}, "node": {"type": "object", "properties": {}, "required": []}, "modules": {"type": "object", "properties": {"app": {"type": "object", "properties": {"module": {"type": "string"}, "type": {"type": "string"}}, "required": ["module", "type"]}}, "required": ["app"]}}, "required": ["groups", "npm", "node", "modules"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"groups" : {"config" : {"dir" : "/src/config", "data" : {"type" : "object"}}, "commons" : {"dir" : "/src/common", "data" : {"type" : "object"}}, "express" : {"dir" : "/src/express", "data" : {"type" : "function"}}, "models" : {"dir" : "/src/model", "data" : {"type" : "function"}}, "services" : {"dir" : "/src/services", "data" : {"type" : "class", "initiate" : "singleton"}}, "routes" : {"dir" : "/src/routes", "data" : {"type" : "function"}}}, "npm" : {}, "node" : {}, "modules" : {"app" : {"module" : "/src/app", "type" : "function"}}}
json_instruct
{"type": "object", "properties": {"groups": {"type": "object", "properties": {"config": {"type": "object", "properties": {"dir": {"type": "string"}, "data": {"type": "object", "properties": {"type": {"type": "string"}}, "required": ["type"]}}, "required": ["dir", "data"]}, "commons": {"type": "object", "properties": {"dir": {"type": "string"}, "data": {"type": "object", "properties": {"type": {"type": "string"}}, "required": ["type"]}}, "required": ["dir", "data"]}, "express": {"type": "object", "properties": {"dir": {"type": "string"}, "data": {"type": "object", "properties": {"type": {"type": "string"}}, "required": ["type"]}}, "required": ["dir", "data"]}, "models": {"type": "object", "properties": {"dir": {"type": "string"}, "data": {"type": "object", "properties": {"type": {"type": "string"}}, "required": ["type"]}}, "required": ["dir", "data"]}, "services": {"type": "object", "properties": {"dir": {"type": "string"}, "data": {"type": "object", "properties": {"type": {"type": "string"}, "initiate": {"type": "string"}}, "required": ["type", "initiate"]}}, "required": ["dir", "data"]}, "routes": {"type": "object", "properties": {"dir": {"type": "string"}, "data": {"type": "object", "properties": {"type": {"type": "string"}}, "required": ["type"]}}, "required": ["dir", "data"]}}, "required": ["config", "commons", "express", "models", "services", "routes"]}, "npm": {"type": "object", "properties": {}, "required": []}, "node": {"type": "object", "properties": {}, "required": []}, "modules": {"type": "object", "properties": {"app": {"type": "object", "properties": {"module": {"type": "string"}, "type": {"type": "string"}}, "required": ["module", "type"]}}, "required": ["app"]}}, "required": ["groups", "npm", "node", "modules"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"ok": {"type": "boolean"}, "pass": {"type": "integer"}, "fail": {"type": "integer"}}, "required": ["ok", "pass", "fail"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"ok" : false, "pass" : 5, "fail" : 5}
json_instruct
{"type": "object", "properties": {"ok": {"type": "boolean"}, "pass": {"type": "integer"}, "fail": {"type": "integer"}}, "required": ["ok", "pass", "fail"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"name": {"type": "string"}, "premiered": {"type": "string"}, "genres": {"type": "array", "items": {"type": "string"}}, "runtime": {"type": "string"}, "no_of_seasons": {"type": "integer"}, "imdb_rating": {"type": "number"}, "imdb_link": {"type": "string"}}, "required": ["name", "premiered", "genres", "runtime", "no_of_seasons", "imdb_rating", "imdb_link"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "Mr Robot", "premiered" : "24-06-2015", "genres" : ["Drama", "Crime", "Thriller"], "runtime" : "60min", "no_of_seasons" : 4, "imdb_rating" : 8.5, "imdb_link" : "tt4158110"}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "premiered": {"type": "string"}, "genres": {"type": "array", "items": {"type": "string"}}, "runtime": {"type": "string"}, "no_of_seasons": {"type": "integer"}, "imdb_rating": {"type": "number"}, "imdb_link": {"type": "string"}}, "required": ["name", "premiered", "genres", "runtime", "no_of_seasons", "imdb_rating", "imdb_link"], "$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"}, "keywords": {"type": "array", "items": {"type": "string"}}, "type": {"type": "string"}, "license": {"type": "string"}, "require": {"type": "object", "properties": {"ext-json": {"type": "string"}, "guzzlehttp/guzzle": {"type": "string"}, "illuminate/bus": {"type": "string"}, "illuminate/events": {"type": "string"}, "illuminate/http": {"type": "string"}, "illuminate/queue": {"type": "string"}, "illuminate/database": {"type": "string"}, "illuminate/support": {"type": "string"}}, "required": ["ext-json", "guzzlehttp/guzzle", "illuminate/bus", "illuminate/events", "illuminate/http", "illuminate/queue", "illuminate/database", "illuminate/support"]}, "autoload": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"Larva\\Baidu\\Push\\": {"type": "string"}}, "required": ["Larva\\Baidu\\Push\\"]}}, "required": ["psr-4"]}, "extra": {"type": "object", "properties": {"branch-alias": {"type": "object", "properties": {"dev-master": {"type": "string"}}, "required": ["dev-master"]}, "laravel": {"type": "object", "properties": {"providers": {"type": "array", "items": {"type": "string"}}}, "required": ["providers"]}}, "required": ["branch-alias", "laravel"]}, "prefer-stable": {"type": "boolean"}}, "required": ["name", "description", "keywords", "type", "license", "require", "autoload", "extra", "prefer-stable"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "larva/laravel-baidu-push", "description" : "This is a baidu push.", "keywords" : ["laravel", "baidu", "larva"], "type" : "library", "license" : "MIT", "require" : {"ext-json" : "*", "guzzlehttp/guzzle" : "^6.5 || ^7.2", "illuminate/bus" : "^6.0 || ^7.0 || ^8.0", "illuminate/events" : "^6.0 || ^7.0 || ^8.0", "illuminate/http" : "^6.0 || ^7.0 || ^8.0", "illuminate/queue" : "^6.0 || ^7.0 || ^8.0", "illuminate/database" : "^6.0 || ^7.0 || ^8.0", "illuminate/support" : "^6.0 || ^7.0 || ^8.0"}, "autoload" : {"psr-4" : {"Larva\\Baidu\\Push\\" : "src"}}, "extra" : {"branch-alias" : {"dev-master" : "1.0-dev"}, "laravel" : {"providers" : ["Larva\\Baidu\\Push\\BaiduPushServiceProvider"]}}, "prefer-stable" : true}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "type": {"type": "string"}, "license": {"type": "string"}, "require": {"type": "object", "properties": {"ext-json": {"type": "string"}, "guzzlehttp/guzzle": {"type": "string"}, "illuminate/bus": {"type": "string"}, "illuminate/events": {"type": "string"}, "illuminate/http": {"type": "string"}, "illuminate/queue": {"type": "string"}, "illuminate/database": {"type": "string"}, "illuminate/support": {"type": "string"}}, "required": ["ext-json", "guzzlehttp/guzzle", "illuminate/bus", "illuminate/events", "illuminate/http", "illuminate/queue", "illuminate/database", "illuminate/support"]}, "autoload": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"Larva\\Baidu\\Push\\": {"type": "string"}}, "required": ["Larva\\Baidu\\Push\\"]}}, "required": ["psr-4"]}, "extra": {"type": "object", "properties": {"branch-alias": {"type": "object", "properties": {"dev-master": {"type": "string"}}, "required": ["dev-master"]}, "laravel": {"type": "object", "properties": {"providers": {"type": "array", "items": {"type": "string"}}}, "required": ["providers"]}}, "required": ["branch-alias", "laravel"]}, "prefer-stable": {"type": "boolean"}}, "required": ["name", "description", "keywords", "type", "license", "require", "autoload", "extra", "prefer-stable"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "array", "items": {"type": "object", "properties": {"p": {"type": "string"}, "d": {"type": "integer"}}, "required": ["p", "d"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"p" : "d9017faf-3748-4c8b-8be5-660c782e3ed3", "d" : 371}, {"p" : "25c56fad-6844-4cf4-aea4-edb3a1214e24", "d" : 85}, {"p" : "70210ddc-b7eb-48a9-aed6-2180a1bc3009", "d" : 63}, {"p" : "bccefb7b-3488-406f-83ed-2a333430cf97", "d" : 48}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"p": {"type": "string"}, "d": {"type": "integer"}}, "required": ["p", "d"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"logdown.js": {"type": "string"}, "logdown.min.js": {"type": "string"}}, "required": ["logdown.js", "logdown.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"logdown.js" : "sha512-hbXYb4MDmE4Z25vgXj4XamLv/QbMnzg4SuaH6FLtt0JFWSbQVPdTaU+xxpp28cw5RNrA3uTk9AmYp5EQo+k5Nw==", "logdown.min.js" : "sha512-4wCMVdiwZVM/X8yIDFhEekXIhvwYoLBdvHhIUfXimKKpqJkd10WpHyPKakKpT++ZD7IuIyaUatQBxsi7w/kEag=="}
json_instruct
{"type": "object", "properties": {"logdown.js": {"type": "string"}, "logdown.min.js": {"type": "string"}}, "required": ["logdown.js", "logdown.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"compilerOptions": {"type": "object", "properties": {"baseUrl": {"type": "string"}, "paths": {"type": "object", "properties": {"@mpkit/*": {"type": "array", "items": {"type": "string"}}}, "required": ["@mpkit/*"]}, "declaration": {"type": "boolean"}, "lib": {"type": "array", "items": {"type": "string"}}}, "required": ["baseUrl", "paths", "declaration", "lib"]}, "include": {"type": "array", "items": {"type": "string"}}, "exclude": {"type": "array", "items": {"type": "string"}}}, "required": ["compilerOptions", "include", "exclude"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"compilerOptions" : {"baseUrl" : ".", "paths" : {"@mpkit/*" : ["packages/*"]}, "declaration" : true, "lib" : ["ES2015"]}, "include" : ["packages/**/*.ts", "global.d.ts"], "exclude" : ["node_modules", "dist", "*.d.ts"]}
json_instruct
{"type": "object", "properties": {"compilerOptions": {"type": "object", "properties": {"baseUrl": {"type": "string"}, "paths": {"type": "object", "properties": {"@mpkit/*": {"type": "array", "items": {"type": "string"}}}, "required": ["@mpkit/*"]}, "declaration": {"type": "boolean"}, "lib": {"type": "array", "items": {"type": "string"}}}, "required": ["baseUrl", "paths", "declaration", "lib"]}, "include": {"type": "array", "items": {"type": "string"}}, "exclude": {"type": "array", "items": {"type": "string"}}}, "required": ["compilerOptions", "include", "exclude"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"code": {"type": "integer"}, "parent": {"type": "integer"}, "name": {"type": "string"}, "latitude": {"type": "string"}, "longitude": {"type": "string"}, "postal": {"type": "array", "items": {"type": "integer"}}, "children": {"type": "array", "items": {"type": "integer"}}}, "required": ["code", "parent", "name", "latitude", "longitude", "postal", "children"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"code" : 3215050, "parent" : 3215, "name" : "CIKAMPEK", "latitude" : "-6.4163914490299", "longitude" : "107.43494500051", "postal" : [41373], "children" : [3215050001, 3215050002, 3215050006, 3215050007, 3215050008, 3215050009, 3215050011, 3215050012, 3215050013, 3215050014]}
json_instruct
{"type": "object", "properties": {"code": {"type": "integer"}, "parent": {"type": "integer"}, "name": {"type": "string"}, "latitude": {"type": "string"}, "longitude": {"type": "string"}, "postal": {"type": "array", "items": {"type": "integer"}}, "children": {"type": "array", "items": {"type": "integer"}}}, "required": ["code", "parent", "name", "latitude", "longitude", "postal", "children"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"rating": {"type": "string"}, "uuid": {"type": "string"}, "review_date": {"type": "string"}, "helpful": {"type": "string"}, "reviewer_id": {"type": "string"}, "not_helpful": {"type": "string"}, "review_text": {"type": "string"}, "summary": {"type": "string"}, "product_name": {"type": "string"}, "product_id": {"type": "string"}}, "required": ["rating", "uuid", "review_date", "helpful", "reviewer_id", "not_helpful", "review_text", "summary", "product_name", "product_id"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"rating" : "5", "uuid" : "80", "review_date" : "2012-05-21", "helpful" : "0", "reviewer_id" : "A2B02BTRVVFVMX", "not_helpful" : "0", "review_text" : "I've always loved cake decorating, ever since I took my first Wilton class. Gum Paste and Fondant seemed beyond my capabilities but when I saw this book I decided to give it a try. The book is very easy to follow with lots of step by step pictures. It's a lot of fun but, I admit, a bit frustrating. No matter how closely I follow the steps, my creations never turn out exactly like the pictures. I think part of the problem is that I'm a perfectionist at heart but....grrrr.....I can't fault the book, as all Wilton Lesson Plans, it's great.", "summary" : "Lots of Fun and Frustration!!!", "product_name" : "Wilton Decorating Cakes Book (The Wilton school)", "product_id" : "0912696591"}
json_instruct
{"type": "object", "properties": {"rating": {"type": "string"}, "uuid": {"type": "string"}, "review_date": {"type": "string"}, "helpful": {"type": "string"}, "reviewer_id": {"type": "string"}, "not_helpful": {"type": "string"}, "review_text": {"type": "string"}, "summary": {"type": "string"}, "product_name": {"type": "string"}, "product_id": {"type": "string"}}, "required": ["rating", "uuid", "review_date", "helpful", "reviewer_id", "not_helpful", "review_text", "summary", "product_name", "product_id"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"}
["machinepack-gateway", "reactcrm"]
json_instruct
{"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"allThreadsRelatedToChannelId": {"type": "object", "properties": {"type": {"type": "string"}}, "required": ["type"]}, "channelId": {"type": "object", "properties": {"type": {"type": "string"}}, "required": ["type"]}, "id": {"type": "object", "properties": {"type": {"type": "string"}}, "required": ["type"]}, "maxResults": {"type": "object", "properties": {"type": {"type": "string"}, "minimum": {"type": "integer"}, "maximum": {"type": "integer"}, "default": {"type": "integer"}}, "required": ["type", "minimum", "maximum", "default"]}, "moderationStatus": {"type": "object", "properties": {"type": {"type": "string"}, "enum": {"type": "array", "items": {"type": "string"}}, "default": {"type": "string"}}, "required": ["type", "enum", "default"]}, "order": {"type": "object", "properties": {"type": {"type": "string"}, "enum": {"type": "array", "items": {"type": "string"}}}, "required": ["type", "enum"]}, "pageToken": {"type": "object", "properties": {"type": {"type": "string"}}, "required": ["type"]}, "part": {"type": "object", "properties": {"required": {"type": "boolean"}, "type": {"type": "string"}}, "required": ["required", "type"]}, "searchTerms": {"type": "object", "properties": {"type": {"type": "string"}}, "required": ["type"]}, "textFormat": {"type": "object", "properties": {"type": {"type": "string"}, "enum": {"type": "array", "items": {"type": "string"}}, "default": {"type": "string"}}, "required": ["type", "enum", "default"]}, "videoId": {"type": "object", "properties": {"type": {"type": "string"}}, "required": ["type"]}}, "required": ["allThreadsRelatedToChannelId", "channelId", "id", "maxResults", "moderationStatus", "order", "pageToken", "part", "searchTerms", "textFormat", "videoId"]}}, "required": ["type", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"type" : "object", "properties" : {"allThreadsRelatedToChannelId" : {"type" : "string"}, "channelId" : {"type" : "string"}, "id" : {"type" : "string"}, "maxResults" : {"type" : "integer", "minimum" : 1, "maximum" : 100, "default" : 20}, "moderationStatus" : {"type" : "string", "enum" : ["heldForReview", "likelySpam", "published"], "default" : "published"}, "order" : {"type" : "string", "enum" : ["relevance", "time"]}, "pageToken" : {"type" : "string"}, "part" : {"required" : true, "type" : "string"}, "searchTerms" : {"type" : "string"}, "textFormat" : {"type" : "string", "enum" : ["html", "plainText"], "default" : "html"}, "videoId" : {"type" : "string"}}}
json_instruct
{"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"allThreadsRelatedToChannelId": {"type": "object", "properties": {"type": {"type": "string"}}, "required": ["type"]}, "channelId": {"type": "object", "properties": {"type": {"type": "string"}}, "required": ["type"]}, "id": {"type": "object", "properties": {"type": {"type": "string"}}, "required": ["type"]}, "maxResults": {"type": "object", "properties": {"type": {"type": "string"}, "minimum": {"type": "integer"}, "maximum": {"type": "integer"}, "default": {"type": "integer"}}, "required": ["type", "minimum", "maximum", "default"]}, "moderationStatus": {"type": "object", "properties": {"type": {"type": "string"}, "enum": {"type": "array", "items": {"type": "string"}}, "default": {"type": "string"}}, "required": ["type", "enum", "default"]}, "order": {"type": "object", "properties": {"type": {"type": "string"}, "enum": {"type": "array", "items": {"type": "string"}}}, "required": ["type", "enum"]}, "pageToken": {"type": "object", "properties": {"type": {"type": "string"}}, "required": ["type"]}, "part": {"type": "object", "properties": {"required": {"type": "boolean"}, "type": {"type": "string"}}, "required": ["required", "type"]}, "searchTerms": {"type": "object", "properties": {"type": {"type": "string"}}, "required": ["type"]}, "textFormat": {"type": "object", "properties": {"type": {"type": "string"}, "enum": {"type": "array", "items": {"type": "string"}}, "default": {"type": "string"}}, "required": ["type", "enum", "default"]}, "videoId": {"type": "object", "properties": {"type": {"type": "string"}}, "required": ["type"]}}, "required": ["allThreadsRelatedToChannelId", "channelId", "id", "maxResults", "moderationStatus", "order", "pageToken", "part", "searchTerms", "textFormat", "videoId"]}}, "required": ["type", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"completed_task": {"type": "object", "properties": {"total_completed_task": {"type": "integer"}, "completed_task_cloud": {"type": "integer"}, "completed_task_edge": {"type": "integer"}, "completed_task_mobile": {"type": "integer"}}, "required": ["total_completed_task", "completed_task_cloud", "completed_task_edge", "completed_task_mobile"]}, "service_time": {"type": "number"}, "processing_delay": {"type": "object", "properties": {"processing_time": {"type": "number"}, "processing_time_cloud_avg": {"type": "integer"}, "processing_time_edge_avg": {"type": "number"}, "processing_time_mobile_avg": {"type": "integer"}}, "required": ["processing_time", "processing_time_cloud_avg", "processing_time_edge_avg", "processing_time_mobile_avg"]}, "network_delay": {"type": "object", "properties": {"network_time": {"type": "number"}, "network_delay_gsm": {"type": "integer"}, "network_delay_wan": {"type": "number"}, "network_delay_man": {"type": "number"}, "network_delay_lan": {"type": "integer"}}, "required": ["network_time", "network_delay_gsm", "network_delay_wan", "network_delay_man", "network_delay_lan"]}, "buffering_delay": {"type": "object", "properties": {"buffering_time": {"type": "number"}, "buffering_time_cloud": {"type": "integer"}, "buffering_time_edge": {"type": "number"}, "buffering_time_mobile": {"type": "integer"}}, "required": ["buffering_time", "buffering_time_cloud", "buffering_time_edge", "buffering_time_mobile"]}}, "required": ["completed_task", "service_time", "processing_delay", "network_delay", "buffering_delay"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"completed_task" : {"total_completed_task" : 1968, "completed_task_cloud" : 785, "completed_task_edge" : 1183, "completed_task_mobile" : 0}, "service_time" : 62.377720493134426, "processing_delay" : {"processing_time" : 41.78095966313501, "processing_time_cloud_avg" : 0, "processing_time_edge_avg" : 41.78095966313501, "processing_time_mobile_avg" : 0}, "network_delay" : {"network_time" : 1.3833910907283358, "network_delay_gsm" : 0, "network_delay_wan" : 0.66557484884231, "network_delay_man" : 0.7178162418860154, "network_delay_lan" : 0}, "buffering_delay" : {"buffering_time" : 19.21336973927113, "buffering_time_cloud" : 0, "buffering_time_edge" : 19.21336973927113, "buffering_time_mobile" : 0}}
json_instruct
{"type": "object", "properties": {"completed_task": {"type": "object", "properties": {"total_completed_task": {"type": "integer"}, "completed_task_cloud": {"type": "integer"}, "completed_task_edge": {"type": "integer"}, "completed_task_mobile": {"type": "integer"}}, "required": ["total_completed_task", "completed_task_cloud", "completed_task_edge", "completed_task_mobile"]}, "service_time": {"type": "number"}, "processing_delay": {"type": "object", "properties": {"processing_time": {"type": "number"}, "processing_time_cloud_avg": {"type": "integer"}, "processing_time_edge_avg": {"type": "number"}, "processing_time_mobile_avg": {"type": "integer"}}, "required": ["processing_time", "processing_time_cloud_avg", "processing_time_edge_avg", "processing_time_mobile_avg"]}, "network_delay": {"type": "object", "properties": {"network_time": {"type": "number"}, "network_delay_gsm": {"type": "integer"}, "network_delay_wan": {"type": "number"}, "network_delay_man": {"type": "number"}, "network_delay_lan": {"type": "integer"}}, "required": ["network_time", "network_delay_gsm", "network_delay_wan", "network_delay_man", "network_delay_lan"]}, "buffering_delay": {"type": "object", "properties": {"buffering_time": {"type": "number"}, "buffering_time_cloud": {"type": "integer"}, "buffering_time_edge": {"type": "number"}, "buffering_time_mobile": {"type": "integer"}}, "required": ["buffering_time", "buffering_time_cloud", "buffering_time_edge", "buffering_time_mobile"]}}, "required": ["completed_task", "service_time", "processing_delay", "network_delay", "buffering_delay"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"key": {"type": "string"}, "type": {"type": "string"}, "label": {"type": "string"}}, "required": ["key", "type", "label"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"key" : "luminous", "type" : "check", "label" : "Luminous (emitting light)"}
json_instruct
{"type": "object", "properties": {"key": {"type": "string"}, "type": {"type": "string"}, "label": {"type": "string"}}, "required": ["key", "type", "label"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"Terra.application.tabs.more": {"type": "string"}}, "required": ["Terra.application.tabs.more"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"Terra.application.tabs.more" : "More"}
json_instruct
{"type": "object", "properties": {"Terra.application.tabs.more": {"type": "string"}}, "required": ["Terra.application.tabs.more"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"id": {"type": "string"}, "provinceId": {"type": "string"}, "regencyId": {"type": "string"}, "districtId": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "provinceId", "regencyId", "districtId", "name"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : "2006", "provinceId" : "91", "regencyId" : "02", "districtId" : "56", "name" : "Okwa"}
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "provinceId": {"type": "string"}, "regencyId": {"type": "string"}, "districtId": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "provinceId", "regencyId", "districtId", "name"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"type": {"type": "string"}, "features": {"type": "array", "items": {"type": "object", "properties": {"geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["type", "coordinates"]}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"cartodb_id": {"type": "integer"}}, "required": ["cartodb_id"]}}, "required": ["geometry", "type", "properties"]}}}, "required": ["type", "features"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"type" : "FeatureCollection", "features" : [{"geometry" : {"type" : "Polygon", "coordinates" : [[[-118.502671, 34.418503], [-118.502301, 34.420173], [-118.491168, 34.421578], [-118.48718, 34.421368], [-118.483322, 34.419909], [-118.480629, 34.41681], [-118.477357, 34.415721], [-118.475878, 34.413709], [-118.47306, 34.412145], [-118.474677, 34.410417], [-118.476676, 34.409686], [-118.483121, 34.411073], [-118.491, 34.409052], [-118.498892, 34.410266], [-118.499579, 34.409594], [-118.500784, 34.412488], [-118.502276, 34.412892], [-118.50191, 34.417068], [-118.502671, 34.418503]]]}, "type" : "Feature", "properties" : {"cartodb_id" : 6292}}]}
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 sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"id": {"type": "integer"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"src:alt_label": {"type": "string"}, "src:geom": {"type": "string"}, "wof:geomhash": {"type": "string"}, "wof:id": {"type": "integer"}, "wof:repo": {"type": "string"}}, "required": ["src:alt_label", "src:geom", "wof:geomhash", "wof:id", "wof:repo"]}, "bbox": {"type": "array", "items": {"type": "number"}}, "geometry": {"type": "object", "properties": {"coordinates": {"type": "array", "items": {"type": "number"}}, "type": {"type": "string"}}, "required": ["coordinates", "type"]}}, "required": ["id", "type", "properties", "bbox", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : 101833899, "type" : "Feature", "properties" : {"src:alt_label" : "quattroshapes_pg", "src:geom" : "quattroshapes_pg", "wof:geomhash" : "1f6671ed8178fd3bac427dc9b79e904e", "wof:id" : 101833899, "wof:repo" : "whosonfirst-data-admin-ro"}, "bbox" : [25.53333, 47.68333, 25.53333, 47.68333], "geometry" : {"coordinates" : [25.53333, 47.68333], "type" : "Point"}}
json_instruct
{"type": "object", "properties": {"id": {"type": "integer"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"src:alt_label": {"type": "string"}, "src:geom": {"type": "string"}, "wof:geomhash": {"type": "string"}, "wof:id": {"type": "integer"}, "wof:repo": {"type": "string"}}, "required": ["src:alt_label", "src:geom", "wof:geomhash", "wof:id", "wof:repo"]}, "bbox": {"type": "array", "items": {"type": "number"}}, "geometry": {"type": "object", "properties": {"coordinates": {"type": "array", "items": {"type": "number"}}, "type": {"type": "string"}}, "required": ["coordinates", "type"]}}, "required": ["id", "type", "properties", "bbox", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"Name": {"type": "string"}, "Guid": {"type": "string"}, "From": {"type": "string"}}, "required": ["Name", "Guid", "From"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"Name" : "OracleCurseVampirism", "Guid" : "b7cf40d93bfa4f46b21d2ba4f2047cf7", "From" : "loc:OracleCurseVampirismHindranceFeature"}
json_instruct
{"type": "object", "properties": {"Name": {"type": "string"}, "Guid": {"type": "string"}, "From": {"type": "string"}}, "required": ["Name", "Guid", "From"], "$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"}, "homepage": {"type": "string"}, "engines": {"type": "object", "properties": {"electron": {"type": "string"}}, "required": ["electron"]}, "files": {"type": "array", "items": {"type": "string"}}, "scripts": {"type": "object", "properties": {"lint": {"type": "string"}}, "required": ["lint"]}, "repository": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"eslint": {"type": "string"}}, "required": ["eslint"]}, "peerDependencies": {"type": "object", "properties": {"electron": {"type": "string"}}, "required": ["electron"]}, "dependencies": {"type": "object", "properties": {"lodash.clonedeep": {"type": "string"}}, "required": ["lodash.clonedeep"]}}, "required": ["name", "version", "description", "main", "homepage", "engines", "files", "scripts", "repository", "keywords", "author", "license", "devDependencies", "peerDependencies", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "electron-bus", "version" : "0.1.0", "description" : "A message bus for Electron applications", "main" : "ElectronBus.js", "homepage" : "https://github.com/mikehall314/electron-bus", "engines" : {"electron" : "*"}, "files" : ["ElectronBus.js", "MessageEnvelope.js"], "scripts" : {"lint" : "./node_modules/.bin/eslint *.js"}, "repository" : "mikehall314/electron-bus", "keywords" : ["electron", "rpc", "ipc", "message bus"], "author" : "Mike Hall <mikehall314@gmail.com>", "license" : "MIT", "devDependencies" : {"eslint" : "^4.19.1"}, "peerDependencies" : {"electron" : "*"}, "dependencies" : {"lodash.clonedeep" : "^4.5.0"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "homepage": {"type": "string"}, "engines": {"type": "object", "properties": {"electron": {"type": "string"}}, "required": ["electron"]}, "files": {"type": "array", "items": {"type": "string"}}, "scripts": {"type": "object", "properties": {"lint": {"type": "string"}}, "required": ["lint"]}, "repository": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"eslint": {"type": "string"}}, "required": ["eslint"]}, "peerDependencies": {"type": "object", "properties": {"electron": {"type": "string"}}, "required": ["electron"]}, "dependencies": {"type": "object", "properties": {"lodash.clonedeep": {"type": "string"}}, "required": ["lodash.clonedeep"]}}, "required": ["name", "version", "description", "main", "homepage", "engines", "files", "scripts", "repository", "keywords", "author", "license", "devDependencies", "peerDependencies", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"type": {"type": "string"}, "features": {"type": "array", "items": {"type": "object", "properties": {"geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["type", "coordinates"]}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"cartodb_id": {"type": "integer"}}, "required": ["cartodb_id"]}}, "required": ["geometry", "type", "properties"]}}}, "required": ["type", "features"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"type" : "FeatureCollection", "features" : [{"geometry" : {"type" : "Polygon", "coordinates" : [[[-120.977316, 37.609271], [-120.957044, 37.609236], [-120.956896, 37.59475], [-120.960873, 37.594503], [-120.977316, 37.609271]]]}, "type" : "Feature", "properties" : {"cartodb_id" : 9330}}]}
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#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"name": {"type": "string"}, "website": {"type": "string"}, "description": {"type": "string"}, "explorer": {"type": "string"}, "research": {"type": "string"}, "type": {"type": "string"}, "symbol": {"type": "string"}, "decimals": {"type": "integer"}, "status": {"type": "string"}, "id": {"type": "string"}}, "required": ["name", "website", "description", "explorer", "research", "type", "symbol", "decimals", "status", "id"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "Binance-Peg Cardano Token", "website" : "https://cardano.org", "description" : "Binance-Peg Cardano Token (ADA BEP20) is a token issued by Binance on Smart Chain; its price is pegged to Cardano (ADA) at a ratio of 1:1.", "explorer" : "https://bscscan.com/token/0x3EE2200Efb3400fAbB9AacF31297cBdD1d435D47", "research" : "https://research.binance.com/en/projects/cardano", "type" : "BEP20", "symbol" : "ADA", "decimals" : 18, "status" : "active", "id" : "0x3EE2200Efb3400fAbB9AacF31297cBdD1d435D47"}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "website": {"type": "string"}, "description": {"type": "string"}, "explorer": {"type": "string"}, "research": {"type": "string"}, "type": {"type": "string"}, "symbol": {"type": "string"}, "decimals": {"type": "integer"}, "status": {"type": "string"}, "id": {"type": "string"}}, "required": ["name", "website", "description", "explorer", "research", "type", "symbol", "decimals", "status", "id"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"layout": {"type": "string"}, "category": {"type": "string"}, "tags": {"type": "array", "items": {"type": "string"}}}, "required": ["layout", "category", "tags"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"layout" : "layouts/article/article", "category" : "DIY", "tags" : ["diy"]}
json_instruct
{"type": "object", "properties": {"layout": {"type": "string"}, "category": {"type": "string"}, "tags": {"type": "array", "items": {"type": "string"}}}, "required": ["layout", "category", "tags"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"private": {"type": "boolean"}, "name": {"type": "string"}}, "required": ["private", "name"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"private" : true, "name" : "nuxt-graphql-client-playground"}
json_instruct
{"type": "object", "properties": {"private": {"type": "boolean"}, "name": {"type": "string"}}, "required": ["private", "name"], "$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"}, "type": {"type": "string"}, "license": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}}, "minimum-stability": {"type": "string"}, "require": {"type": "object", "properties": {"php": {"type": "string"}, "aws/aws-sdk-php": {"type": "string"}, "cakephp/cakephp": {"type": "string"}}, "required": ["php", "aws/aws-sdk-php", "cakephp/cakephp"]}, "require-dev": {"type": "object", "properties": {"cakephp/cakephp-codesniffer": {"type": "string"}, "phpstan/phpstan": {"type": "string"}, "phpunit/phpunit": {"type": "string"}}, "required": ["cakephp/cakephp-codesniffer", "phpstan/phpstan", "phpunit/phpunit"]}, "autoload": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"S3Bucket\\": {"type": "string"}}, "required": ["S3Bucket\\"]}}, "required": ["psr-4"]}, "autoload-dev": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"S3Bucket\\Test\\": {"type": "string"}, "Cake\\Test\\": {"type": "string"}}, "required": ["S3Bucket\\Test\\", "Cake\\Test\\"]}}, "required": ["psr-4"]}}, "required": ["name", "description", "type", "license", "authors", "minimum-stability", "require", "require-dev", "autoload", "autoload-dev"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "horidaisuke/cakephp-aws-s3bucket", "description" : "AWS S3Bucket plugin for CakePHP 4.x", "type" : "cakephp-plugin", "license" : "MIT", "authors" : [{"name" : "Hori, Daisuke", "email" : "hori.daisuke@polymorphics.jp"}], "minimum-stability" : "stable", "require" : {"php" : ">=7.2", "aws/aws-sdk-php" : "^3.133", "cakephp/cakephp" : "^4.0"}, "require-dev" : {"cakephp/cakephp-codesniffer" : "^4.0", "phpstan/phpstan" : "^0.12.8", "phpunit/phpunit" : "^8.0"}, "autoload" : {"psr-4" : {"S3Bucket\\" : "src/"}}, "autoload-dev" : {"psr-4" : {"S3Bucket\\Test\\" : "tests/", "Cake\\Test\\" : "vendor/cakephp/cakephp/tests/"}}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "type": {"type": "string"}, "license": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}}, "minimum-stability": {"type": "string"}, "require": {"type": "object", "properties": {"php": {"type": "string"}, "aws/aws-sdk-php": {"type": "string"}, "cakephp/cakephp": {"type": "string"}}, "required": ["php", "aws/aws-sdk-php", "cakephp/cakephp"]}, "require-dev": {"type": "object", "properties": {"cakephp/cakephp-codesniffer": {"type": "string"}, "phpstan/phpstan": {"type": "string"}, "phpunit/phpunit": {"type": "string"}}, "required": ["cakephp/cakephp-codesniffer", "phpstan/phpstan", "phpunit/phpunit"]}, "autoload": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"S3Bucket\\": {"type": "string"}}, "required": ["S3Bucket\\"]}}, "required": ["psr-4"]}, "autoload-dev": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"S3Bucket\\Test\\": {"type": "string"}, "Cake\\Test\\": {"type": "string"}}, "required": ["S3Bucket\\Test\\", "Cake\\Test\\"]}}, "required": ["psr-4"]}}, "required": ["name", "description", "type", "license", "authors", "minimum-stability", "require", "require-dev", "autoload", "autoload-dev"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"answers": {"type": "array", "items": {"type": "string"}}, "centerLetter": {"type": "string"}, "letterString": {"type": "string"}, "outerLetters": {"type": "array", "items": {"type": "string"}}, "pangrams": {"type": "array", "items": {"type": "string"}}, "validLetters": {"type": "array", "items": {"type": "string"}}}, "required": ["answers", "centerLetter", "letterString", "outerLetters", "pangrams", "validLetters"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"answers" : ["beezer", "benzene", "benzin", "benzine", "bezzie", "bezzy", "bize", "bizzy", "breeze", "breezier", "breezy", "brize", "ebenezer", "ezine", "neeze", "rizzer", "zebrine", "zebrinny", "zein", "zeze", "zine", "zineb", "zizz"], "centerLetter" : "z", "letterString" : "zbeinry", "outerLetters" : ["b", "e", "i", "n", "r", "y"], "pangrams" : ["zebrinny"], "validLetters" : ["b", "e", "i", "n", "r", "y", "z"]}
json_instruct
{"type": "object", "properties": {"answers": {"type": "array", "items": {"type": "string"}}, "centerLetter": {"type": "string"}, "letterString": {"type": "string"}, "outerLetters": {"type": "array", "items": {"type": "string"}}, "pangrams": {"type": "array", "items": {"type": "string"}}, "validLetters": {"type": "array", "items": {"type": "string"}}}, "required": ["answers", "centerLetter", "letterString", "outerLetters", "pangrams", "validLetters"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"\uc774\ub984": {"type": "string"}, "\ud55c\ubb38\uba85": {"type": "string"}, "\uc0dd\ub144\uc6d4\uc77c": {"type": "string"}, "\uc815\ub2f9": {"type": "string"}, "\uc120\uac70\uad6c": {"type": "string"}, "\ub2f9\uc120\ud69f\uc218": {"type": "string"}, "\ub2f9\uc120\ub300\uc218": {"type": "string"}}, "required": ["\uc774\ub984", "\ud55c\ubb38\uba85", "\uc0dd\ub144\uc6d4\uc77c", "\uc815\ub2f9", "\uc120\uac70\uad6c", "\ub2f9\uc120\ud69f\uc218", "\ub2f9\uc120\ub300\uc218"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"\uc774\ub984" : "\uae40\uc131\ud638", "\ud55c\ubb38\uba85" : "\u91d1\u8072\u6d69", "\uc0dd\ub144\uc6d4\uc77c" : "1899-09-05", "\uc815\ub2f9" : "\uc790\uc720\ub2f9", "\uc120\uac70\uad6c" : "\uc804\ub0a8 \uac15\uc9c4", "\ub2f9\uc120\ud69f\uc218" : "\ucd08\uc120", "\ub2f9\uc120\ub300\uc218" : "3"}
json_instruct
{"type": "object", "properties": {"\uc774\ub984": {"type": "string"}, "\ud55c\ubb38\uba85": {"type": "string"}, "\uc0dd\ub144\uc6d4\uc77c": {"type": "string"}, "\uc815\ub2f9": {"type": "string"}, "\uc120\uac70\uad6c": {"type": "string"}, "\ub2f9\uc120\ud69f\uc218": {"type": "string"}, "\ub2f9\uc120\ub300\uc218": {"type": "string"}}, "required": ["\uc774\ub984", "\ud55c\ubb38\uba85", "\uc0dd\ub144\uc6d4\uc77c", "\uc815\ub2f9", "\uc120\uac70\uad6c", "\ub2f9\uc120\ud69f\uc218", "\ub2f9\uc120\ub300\uc218"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"symbol": {"type": "string"}, "name": {"type": "string"}, "decimals": {"type": "integer"}, "address": {"type": "string"}}, "required": ["symbol", "name", "decimals", "address"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"symbol" : "cyFRAX", "name" : "Yearn Frax", "decimals" : 8, "address" : "0x9925f2f869048934e62720120798e7cce7e777bb"}
json_instruct
{"type": "object", "properties": {"symbol": {"type": "string"}, "name": {"type": "string"}, "decimals": {"type": "integer"}, "address": {"type": "string"}}, "required": ["symbol", "name", "decimals", "address"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"categories": {"type": "array", "items": {"type": "string"}}, "desc": {"type": "string"}, "details": {"type": "object", "properties": {"authors": {"type": "string"}, "format": {"type": "string"}, "isbn-10": {"type": "string"}, "isbn-13": {"type": "string"}, "pages": {"type": "string"}, "publication date": {"type": "string"}, "publisher": {"type": "string"}, "size": {"type": "string"}}, "required": ["authors", "format", "isbn-10", "isbn-13", "pages", "publication date", "publisher", "size"]}, "img": {"type": "string"}, "link": {"type": "string"}, "title": {"type": "string"}}, "required": ["categories", "desc", "details", "img", "link", "title"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"categories" : ["Manual", "Software", "Web Development"], "desc" : " Packed with more than one thousand pages of hands-on instruction and step-by-step tutorials, the bestseller returns with everything you need to know to harness the power of Dreamweaver CS4. This comprehensive resource guides you through the ins and outs of Dreamweaver CS4 so you can quickly get started building dynamic, data-driven sites. The book demonstrates building interactive forms; creating client-side image maps; connecting to a live database; working with layers, style sheets, and dynamic HTML; inserting, deleting, and updating data from Web pages; designing with templates; and integrating with Photoshop, Bridge, Flex, Fireworks, and Cold Fusion, as well as CSS and Ajax.", "details" : {"authors" : "Joseph Lowery", "format" : "pdf", "isbn-10" : "047038252X", "isbn-13" : "978-0470382523", "pages" : "1296 pages", "publication date" : "March 30, 2009", "publisher" : "Wiley", "size" : "9.80Mb"}, "img" : "http://23.95.221.108/covers/33/3384aa2b3efc8ce3057756d684c9000a.jpg", "link" : "https://rapidhosting.info/files/fc3", "title" : "Dreamweaver CS4 Bible"}
json_instruct
{"type": "object", "properties": {"categories": {"type": "array", "items": {"type": "string"}}, "desc": {"type": "string"}, "details": {"type": "object", "properties": {"authors": {"type": "string"}, "format": {"type": "string"}, "isbn-10": {"type": "string"}, "isbn-13": {"type": "string"}, "pages": {"type": "string"}, "publication date": {"type": "string"}, "publisher": {"type": "string"}, "size": {"type": "string"}}, "required": ["authors", "format", "isbn-10", "isbn-13", "pages", "publication date", "publisher", "size"]}, "img": {"type": "string"}, "link": {"type": "string"}, "title": {"type": "string"}}, "required": ["categories", "desc", "details", "img", "link", "title"], "$schema": "http://json-schema.org/draft-07/schema#"}
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" : [[[-78.684165, 35.841384], [-78.681277, 35.843029], [-78.680151, 35.844742], [-78.68057, 35.859519], [-78.67681, 35.856704], [-78.670504, 35.856541], [-78.666787, 35.857804], [-78.66294, 35.856639], [-78.661533, 35.855346], [-78.663, 35.854661], [-78.664088, 35.851722], [-78.663428, 35.848772], [-78.660932, 35.847519], [-78.663071, 35.845405], [-78.662054, 35.841438], [-78.663599, 35.840213], [-78.664007, 35.838149], [-78.66637, 35.838215], [-78.668929, 35.839497], [-78.671652, 35.838136], [-78.673804, 35.838029], [-78.67516, 35.836578], [-78.676986, 35.836787], [-78.684165, 35.841384]]]}, "type" : "Feature", "properties" : {"cartodb_id" : 48089}}]}
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"}, "properties": {"type": "object", "properties": {"type": {"type": "string"}, "level": {"type": "string"}, "label": {"type": "string"}, "locale": {"type": "string"}, "country_id": {"type": "integer"}, "country_reference": {"type": "integer"}, "country_name": {"type": "string"}, "region_id": {"type": "string"}, "region_reference": {"type": "string"}, "region_name": {"type": "string"}, "province_id": {"type": "string"}, "province_reference": {"type": "string"}, "province_name": {"type": "string"}, "city_id": {"type": "string"}, "city_reference": {"type": "string"}, "city_name": {"type": "string"}, "barangay_id": {"type": "string"}, "barangay_reference": {"type": "string"}, "barangay_name": {"type": "string"}}, "required": ["type", "level", "label", "locale", "country_id", "country_reference", "country_name", "region_id", "region_reference", "region_name", "province_id", "province_reference", "province_name", "city_id", "city_reference", "city_name", "barangay_id", "barangay_reference", "barangay_name"]}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}}, "required": ["type", "coordinates"]}}, "required": ["type", "properties", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"type" : "Feature", "properties" : {"type" : "barangay", "level" : "4", "label" : "Bubong, Kolambugan, Lanao del Norte, Northern Mindanao (Region X), PH", "locale" : "ph.northern-mindanao-region-x.lanao-del-norte.kolambugan.bubong", "country_id" : 177, "country_reference" : 177, "country_name" : "Philippines", "region_id" : "14", "region_reference" : "10", "region_name" : "Northern Mindanao (Region X)", "province_id" : "41", "province_reference" : "41", "province_name" : "Lanao del Norte", "city_id" : "619", "city_reference" : "797", "city_name" : "Kolambugan", "barangay_id" : "17408", "barangay_reference" : "19926", "barangay_name" : "Bubong"}, "geometry" : {"type" : "MultiPolygon", "coordinates" : [[[[123.913048, 8.09697], [123.920853, 8.10526], [123.927902, 8.07006], [123.922043, 8.06731], [123.91481, 8.06497], [123.912727, 8.0819], [123.911324, 8.09509], [123.913048, 8.09697]]]]}}
json_instruct
{"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"type": {"type": "string"}, "level": {"type": "string"}, "label": {"type": "string"}, "locale": {"type": "string"}, "country_id": {"type": "integer"}, "country_reference": {"type": "integer"}, "country_name": {"type": "string"}, "region_id": {"type": "string"}, "region_reference": {"type": "string"}, "region_name": {"type": "string"}, "province_id": {"type": "string"}, "province_reference": {"type": "string"}, "province_name": {"type": "string"}, "city_id": {"type": "string"}, "city_reference": {"type": "string"}, "city_name": {"type": "string"}, "barangay_id": {"type": "string"}, "barangay_reference": {"type": "string"}, "barangay_name": {"type": "string"}}, "required": ["type", "level", "label", "locale", "country_id", "country_reference", "country_name", "region_id", "region_reference", "region_name", "province_id", "province_reference", "province_name", "city_id", "city_reference", "city_name", "barangay_id", "barangay_reference", "barangay_name"]}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}}, "required": ["type", "coordinates"]}}, "required": ["type", "properties", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"address": {"type": "string"}, "cert_auth_type": {"type": "string"}, "cert_sign": {"type": "string"}, "cert_user_id": {"type": "string"}, "files": {"type": "object", "properties": {}, "required": []}, "inner_path": {"type": "string"}, "modified": {"type": "number"}, "signs": {"type": "object", "properties": {"15zGz5RTJi8EChfGcTDa8pGnkW71927w5L": {"type": "string"}}, "required": ["15zGz5RTJi8EChfGcTDa8pGnkW71927w5L"]}, "user": {"type": "array", "items": {"type": "object", "properties": {"avatar": {"type": "string"}, "date_added": {"type": "integer"}, "hub": {"type": "string"}, "intro": {"type": "string"}, "user_name": {"type": "string"}}, "required": ["avatar", "date_added", "hub", "intro", "user_name"]}}}, "required": ["address", "cert_auth_type", "cert_sign", "cert_user_id", "files", "inner_path", "modified", "signs", "user"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"address" : "1UDbADib99KE9d3qZ87NqJF2QLTHmMkoV", "cert_auth_type" : "web", "cert_sign" : "HLCV7qGmCPdTcJ4D0RLiqIDblB7n4caGW8/AXtDDcN3SctNeCPEkZnY+drOPTVmZxODQsNQIpwDbgm+FQtFCM8w=", "cert_user_id" : "krossx@zeroid.bit", "files" : {}, "inner_path" : "data/userdb/15zGz5RTJi8EChfGcTDa8pGnkW71927w5L/content.json", "modified" : 1472440680.724, "signs" : {"15zGz5RTJi8EChfGcTDa8pGnkW71927w5L" : "HNE6wgRF1XtShYzAI043zW5SeNL9rEgnsw4Ya312AB6PbgHj7QBdUPvyYWaccB42JZ9F7n4e2fCRHzu5csKc3qs="}, "user" : [{"avatar" : "generate", "date_added" : 1472440671, "hub" : "1BLueGvui1GdbtsjcKqCf4F67uKfritG49", "intro" : "Random ZeroNet user", "user_name" : "Krossx"}]}
json_instruct
{"type": "object", "properties": {"address": {"type": "string"}, "cert_auth_type": {"type": "string"}, "cert_sign": {"type": "string"}, "cert_user_id": {"type": "string"}, "files": {"type": "object", "properties": {}, "required": []}, "inner_path": {"type": "string"}, "modified": {"type": "number"}, "signs": {"type": "object", "properties": {"15zGz5RTJi8EChfGcTDa8pGnkW71927w5L": {"type": "string"}}, "required": ["15zGz5RTJi8EChfGcTDa8pGnkW71927w5L"]}, "user": {"type": "array", "items": {"type": "object", "properties": {"avatar": {"type": "string"}, "date_added": {"type": "integer"}, "hub": {"type": "string"}, "intro": {"type": "string"}, "user_name": {"type": "string"}}, "required": ["avatar", "date_added", "hub", "intro", "user_name"]}}}, "required": ["address", "cert_auth_type", "cert_sign", "cert_user_id", "files", "inner_path", "modified", "signs", "user"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
[[1920, 6], [1921, 6], [1932, 5], [1951, 48], [1952, 14], [1953, 13], [1954, 10], [1955, 8], [1956, 9], [1957, 7], [1959, 7], [1960, 5], [1961, 14], [1962, 6], [1965, 8], [1967, 6], [1970, 7], [1971, 6], [1972, 5], [1975, 5]]
json_instruct
{"type": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"template": {"type": "object", "properties": {"small": {"type": "string"}, "medium": {"type": "string"}, "large": {"type": "string"}}, "required": ["small", "medium", "large"]}, "channels": {"type": "object", "properties": {"nebsytv": {"type": "object", "properties": {"title": {"type": "string"}, "channel_id": {"type": "integer"}, "link": {"type": "string"}, "desc": {"type": "null"}, "plans": {"type": "object", "properties": {"$4.99": {"type": "string"}, "$9.99": {"type": "string"}, "$24.99": {"type": "string"}}, "required": ["$4.99", "$9.99", "$24.99"]}, "id": {"type": "string"}, "first_seen": {"type": "string"}, "badge": {"type": "null"}, "badge_starting": {"type": "null"}, "badge_3m": {"type": "null"}, "badge_6m": {"type": "null"}, "badge_12m": {"type": "null"}, "badge_24m": {"type": "null"}, "badges": {"type": "null"}, "bits_badges": {"type": "null"}, "cheermote1": {"type": "null"}, "cheermote100": {"type": "null"}, "cheermote1000": {"type": "null"}, "cheermote5000": {"type": "null"}, "cheermote10000": {"type": "null"}, "set": {"type": "integer"}, "emotes": {"type": "array", "items": {"type": "object", "properties": {"code": {"type": "string"}, "image_id": {"type": "integer"}, "set": {"type": "integer"}}, "required": ["code", "image_id", "set"]}}}, "required": ["title", "channel_id", "link", "desc", "plans", "id", "first_seen", "badge", "badge_starting", "badge_3m", "badge_6m", "badge_12m", "badge_24m", "badges", "bits_badges", "cheermote1", "cheermote100", "cheermote1000", "cheermote5000", "cheermote10000", "set", "emotes"]}}, "required": ["nebsytv"]}}, "required": ["template", "channels"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"template" : {"small" : "https://static-cdn.jtvnw.net/emoticons/v1/{image_id}/1.0", "medium" : "https://static-cdn.jtvnw.net/emoticons/v1/{image_id}/2.0", "large" : "https://static-cdn.jtvnw.net/emoticons/v1/{image_id}/3.0"}, "channels" : {"nebsytv" : {"title" : "nebsytv", "channel_id" : 123837202, "link" : "http://twitch.tv/nebsytv", "desc" : null, "plans" : {"$4.99" : "199010", "$9.99" : "199011", "$24.99" : "199012"}, "id" : "nebsytv", "first_seen" : "2017-06-29 21:20:04", "badge" : null, "badge_starting" : null, "badge_3m" : null, "badge_6m" : null, "badge_12m" : null, "badge_24m" : null, "badges" : null, "bits_badges" : null, "cheermote1" : null, "cheermote100" : null, "cheermote1000" : null, "cheermote5000" : null, "cheermote10000" : null, "set" : 199010, "emotes" : [{"code" : "nebsytAH", "image_id" : 230001, "set" : 199010}]}}}
json_instruct
{"type": "object", "properties": {"template": {"type": "object", "properties": {"small": {"type": "string"}, "medium": {"type": "string"}, "large": {"type": "string"}}, "required": ["small", "medium", "large"]}, "channels": {"type": "object", "properties": {"nebsytv": {"type": "object", "properties": {"title": {"type": "string"}, "channel_id": {"type": "integer"}, "link": {"type": "string"}, "desc": {"type": "null"}, "plans": {"type": "object", "properties": {"$4.99": {"type": "string"}, "$9.99": {"type": "string"}, "$24.99": {"type": "string"}}, "required": ["$4.99", "$9.99", "$24.99"]}, "id": {"type": "string"}, "first_seen": {"type": "string"}, "badge": {"type": "null"}, "badge_starting": {"type": "null"}, "badge_3m": {"type": "null"}, "badge_6m": {"type": "null"}, "badge_12m": {"type": "null"}, "badge_24m": {"type": "null"}, "badges": {"type": "null"}, "bits_badges": {"type": "null"}, "cheermote1": {"type": "null"}, "cheermote100": {"type": "null"}, "cheermote1000": {"type": "null"}, "cheermote5000": {"type": "null"}, "cheermote10000": {"type": "null"}, "set": {"type": "integer"}, "emotes": {"type": "array", "items": {"type": "object", "properties": {"code": {"type": "string"}, "image_id": {"type": "integer"}, "set": {"type": "integer"}}, "required": ["code", "image_id", "set"]}}}, "required": ["title", "channel_id", "link", "desc", "plans", "id", "first_seen", "badge", "badge_starting", "badge_3m", "badge_6m", "badge_12m", "badge_24m", "badges", "bits_badges", "cheermote1", "cheermote100", "cheermote1000", "cheermote5000", "cheermote10000", "set", "emotes"]}}, "required": ["nebsytv"]}}, "required": ["template", "channels"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"processing.js": {"type": "string"}, "processing.min.js": {"type": "string"}}, "required": ["processing.js", "processing.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"processing.js" : "sha512-ggiuz+MyWXxp+qHY/X5jFawKnYKXUbn37I5Fk7T8flWXPHBdNcZI8LdRnsC/tRRjcyeQ7gHZx5KysNcfEuVY7w==", "processing.min.js" : "sha512-hRVmI93myvn6s448QrdHROd/Ya4RuIHyvTozkE/FOMbZ/Pw3Rs2J67/+rJ9Pensvxf4P4ztHAi0sVGyoe94U9Q=="}
json_instruct
{"type": "object", "properties": {"processing.js": {"type": "string"}, "processing.min.js": {"type": "string"}}, "required": ["processing.js", "processing.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "start": {"type": "string"}}, "required": ["test", "start"]}, "author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"mongoose": {"type": "string"}, "restify": {"type": "string"}}, "required": ["mongoose", "restify"]}, "devDependencies": {"type": "object", "properties": {"chai": {"type": "string"}, "mocha": {"type": "string"}, "request": {"type": "string"}, "request-promise": {"type": "string"}}, "required": ["chai", "mocha", "request", "request-promise"]}}, "required": ["name", "version", "description", "main", "scripts", "author", "license", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "api-docker", "version" : "1.0.0", "description" : "", "main" : "index.js", "scripts" : {"test" : "./node_modules/.bin/mocha --reporter spec", "start" : "node --harmony index.js"}, "author" : "Phil Senger", "license" : "ISC", "dependencies" : {"mongoose" : "^4.13.7", "restify" : "^6.3.4"}, "devDependencies" : {"chai" : "^4.1.2", "mocha" : "^4.0.1", "request" : "^2.83.0", "request-promise" : "^4.2.2"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "start": {"type": "string"}}, "required": ["test", "start"]}, "author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"mongoose": {"type": "string"}, "restify": {"type": "string"}}, "required": ["mongoose", "restify"]}, "devDependencies": {"type": "object", "properties": {"chai": {"type": "string"}, "mocha": {"type": "string"}, "request": {"type": "string"}, "request-promise": {"type": "string"}}, "required": ["chai", "mocha", "request", "request-promise"]}}, "required": ["name", "version", "description", "main", "scripts", "author", "license", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "object", "properties": {"en": {"type": "string"}}, "required": ["en"]}, "country": {"type": "string"}, "region": {"type": "string"}, "identifiers": {"type": "object", "properties": {"wmo": {"type": "string"}, "usaf": {"type": "string"}}, "required": ["wmo", "usaf"]}, "location": {"type": "object", "properties": {"latitude": {"type": "number"}, "longitude": {"type": "number"}, "elevation": {"type": "integer"}}, "required": ["latitude", "longitude", "elevation"]}, "timezone": {"type": "string"}}, "required": ["id", "name", "country", "region", "identifiers", "location", "timezone"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : "15044", "name" : {"en" : "Supuru De Jos"}, "country" : "RO", "region" : "SM", "identifiers" : {"wmo" : "15044", "usaf" : "150440"}, "location" : {"latitude" : 47.4667, "longitude" : 22.8, "elevation" : 162}, "timezone" : "Europe/Bucharest"}
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "object", "properties": {"en": {"type": "string"}}, "required": ["en"]}, "country": {"type": "string"}, "region": {"type": "string"}, "identifiers": {"type": "object", "properties": {"wmo": {"type": "string"}, "usaf": {"type": "string"}}, "required": ["wmo", "usaf"]}, "location": {"type": "object", "properties": {"latitude": {"type": "number"}, "longitude": {"type": "number"}, "elevation": {"type": "integer"}}, "required": ["latitude", "longitude", "elevation"]}, "timezone": {"type": "string"}}, "required": ["id", "name", "country", "region", "identifiers", "location", "timezone"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"type": {"type": "string"}, "features": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "null"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["type", "coordinates"]}}, "required": ["type", "properties", "geometry"]}}}, "required": ["type", "features"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"type" : "FeatureCollection", "features" : [{"type" : "Feature", "properties" : null, "geometry" : {"type" : "Polygon", "coordinates" : [[[-89.1214798, 30.2253957], [-89.12099375, 30.225243895877554], [-89.1205, 30.224], [-89.1205, 30.226], [-89.1214798, 30.2253957]]]}}, {"type" : "Feature", "properties" : null, "geometry" : {"type" : "Polygon", "coordinates" : [[[-89.12119375, 30.223], [-89.12, 30.223], [-89.12, 30.2251544], [-89.1207072, 30.2251544], [-89.12119375, 30.225306360283458], [-89.12119375, 30.223]]]}}]}
json_instruct
{"type": "object", "properties": {"type": {"type": "string"}, "features": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "null"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["type", "coordinates"]}}, "required": ["type", "properties", "geometry"]}}}, "required": ["type", "features"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"16-a-1": {"type": "array", "items": {"type": "object", "properties": {"metadata": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "goal": {"type": "string"}, "target": {"type": "string"}, "definition": {"type": "string"}, "unit": {"type": "string"}, "dimensions": {"type": "string"}, "methodology": {"type": "string"}, "source": {"type": "string"}, "availability": {"type": "string"}, "notes": {"type": "string"}}, "required": ["name", "goal", "target", "definition", "unit", "dimensions", "methodology", "source", "availability", "notes"]}}, "data": {"type": "array", "items": {"type": "object", "properties": {}, "required": []}}}, "required": ["metadata", "data"]}}}, "required": ["16-a-1"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"16-a-1" : [{"metadata" : [{"name" : "16.a.1 Existence of independent National Human Rights Institutions in compliance with the Paris Principles", "goal" : "Goal 16. Peace, justice and strong institutions", "target" : "16.a Strengthen relevant national institutions, including through international cooperation, for building capacity at all levels, in particular in developing countries, to prevent violence and combat terrorism and crime", "definition" : "", "unit" : "", "dimensions" : "", "methodology" : "", "source" : "", "availability" : "", "notes" : ""}], "data" : [{}]}]}
json_instruct
{"type": "object", "properties": {"16-a-1": {"type": "array", "items": {"type": "object", "properties": {"metadata": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "goal": {"type": "string"}, "target": {"type": "string"}, "definition": {"type": "string"}, "unit": {"type": "string"}, "dimensions": {"type": "string"}, "methodology": {"type": "string"}, "source": {"type": "string"}, "availability": {"type": "string"}, "notes": {"type": "string"}}, "required": ["name", "goal", "target", "definition", "unit", "dimensions", "methodology", "source", "availability", "notes"]}}, "data": {"type": "array", "items": {"type": "object", "properties": {}, "required": []}}}, "required": ["metadata", "data"]}}}, "required": ["16-a-1"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"dbmodel": {"type": "array", "items": {"type": "string"}}, "license": {"type": "array", "items": {"type": "string"}}}, "required": ["dbmodel", "license"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"dbmodel" : ["Multivalue DBMS"], "license" : ["Open Source"]}
json_instruct
{"type": "object", "properties": {"dbmodel": {"type": "array", "items": {"type": "string"}}, "license": {"type": "array", "items": {"type": "string"}}}, "required": ["dbmodel", "license"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "img": {"type": "string"}, "email": {"type": "string"}, "links": {"type": "object", "properties": {"website": {"type": "string"}, "linkedin": {"type": "string"}, "github": {"type": "string"}}, "required": ["website", "linkedin", "github"]}, "jobTitle": {"type": "string"}, "location": {"type": "object", "properties": {"city": {"type": "string"}, "state": {"type": "string"}, "country": {"type": "string"}}, "required": ["city", "state", "country"]}}, "required": ["id", "name", "img", "email", "links", "jobTitle", "location"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : "63f89b96-cf9f-4289-b281-09f8c41eab97", "name" : "Rajnish Kr Singh", "img" : "https://media.licdn.com/dms/image/C5103AQFCTSzJ-qni8Q/profile-displayphoto-shrink_200_200/0?e=1577318400&v=beta&t=iAdUxzlVtGmSIHm9I9EzsIqIuup4kKiJdyNwuDEwCTk", "email" : "", "links" : {"website" : "https://rajnishkrsingh.github.io/my_portfolio", "linkedin" : "https://www.linkedin.com/in/rajnish-kr-singh-165272184/", "github" : "https://github.com/RajnishKrSingh"}, "jobTitle" : "Web Developer | Programmer | ReactJS Enthusiast", "location" : {"city" : "Kolkata", "state" : "", "country" : "India"}}
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "img": {"type": "string"}, "email": {"type": "string"}, "links": {"type": "object", "properties": {"website": {"type": "string"}, "linkedin": {"type": "string"}, "github": {"type": "string"}}, "required": ["website", "linkedin", "github"]}, "jobTitle": {"type": "string"}, "location": {"type": "object", "properties": {"city": {"type": "string"}, "state": {"type": "string"}, "country": {"type": "string"}}, "required": ["city", "state", "country"]}}, "required": ["id", "name", "img", "email", "links", "jobTitle", "location"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"smtp_server": {"type": "string"}, "smtp_port": {"type": "integer"}, "tracing_enabled": {"type": "integer"}, "show_message_details": {"type": "integer"}, "show_prog_warnings": {"type": "integer"}, "db_type": {"type": "string"}, "db_server": {"type": "string"}, "db_name": {"type": "string"}, "db_user": {"type": "string"}, "db_password": {"type": "string"}, "db_prefix": {"type": "string"}}, "required": ["smtp_server", "smtp_port", "tracing_enabled", "show_message_details", "show_prog_warnings", "db_type", "db_server", "db_name", "db_user", "db_password", "db_prefix"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"smtp_server" : "127.0.0.1", "smtp_port" : 25, "tracing_enabled" : 1, "show_message_details" : 1, "show_prog_warnings" : 1, "db_type" : "MySQL", "db_server" : "localhost", "db_name" : "framework_demo", "db_user" : "root", "db_password" : "", "db_prefix" : "V1"}
json_instruct
{"type": "object", "properties": {"smtp_server": {"type": "string"}, "smtp_port": {"type": "integer"}, "tracing_enabled": {"type": "integer"}, "show_message_details": {"type": "integer"}, "show_prog_warnings": {"type": "integer"}, "db_type": {"type": "string"}, "db_server": {"type": "string"}, "db_name": {"type": "string"}, "db_user": {"type": "string"}, "db_password": {"type": "string"}, "db_prefix": {"type": "string"}}, "required": ["smtp_server", "smtp_port", "tracing_enabled", "show_message_details", "show_prog_warnings", "db_type", "db_server", "db_name", "db_user", "db_password", "db_prefix"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "array", "items": {"type": "object", "properties": {"review": {"type": "string"}, "date": {"type": "string"}, "rating": {"type": "string"}, "author": {"type": "string"}, "review_id": {"type": "string"}, "movie_id": {"type": "string"}}, "required": ["review", "date", "rating", "author", "review_id", "movie_id"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"review" : "\uc5b4\ub838\uc744\ub54c \ubd24\ub358 \uc601\ud654\uc778\ub370 \uc9c0\uae08\ub2e4\uc2dc \ubcf4\uae34 \uc880 \uadf8\ub807\uace0 \uac00\ub054 30\ubd84\ucbe4 \ub098\uc624\ub294 \ub178\ub798\ub9cc \ub4e3\ub294\ub370 \uc88b\uc74c", "date" : "14.07.22", "rating" : "9", "author" : "gras****", "review_id" : "8939893", "movie_id" : "18584"}, {"review" : "\uc8fc\uc81c\uac00\uac00 \ub108\ubb34 \uc7ac\ubbf8\uc788\uace0, \ube44\uadf9\uc73c\ub85c \uac00\ub2e4\uac00 \ud574\ud53c\uc5d4\ub529\uc73c\ub85c \ub05d\ub0a8.", "date" : "06.04.13", "rating" : "10", "author" : "simm****", "review_id" : "760085", "movie_id" : "18584"}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"review": {"type": "string"}, "date": {"type": "string"}, "rating": {"type": "string"}, "author": {"type": "string"}, "review_id": {"type": "string"}, "movie_id": {"type": "string"}}, "required": ["review", "date", "rating", "author", "review_id", "movie_id"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "provinceId": {"type": "string"}, "regencyId": {"type": "string"}, "districtId": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "provinceId", "regencyId", "districtId", "name"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"id" : "2001", "provinceId" : "62", "regencyId" : "03", "districtId" : "03", "name" : "Anjir Serapat Timur"}, {"id" : "2002", "provinceId" : "62", "regencyId" : "03", "districtId" : "03", "name" : "Anjir Serapat Tengah"}, {"id" : "2003", "provinceId" : "62", "regencyId" : "03", "districtId" : "03", "name" : "Anjir Serapat Barat"}, {"id" : "2004", "provinceId" : "62", "regencyId" : "03", "districtId" : "03", "name" : "Anjir Mambulau Timur"}, {"id" : "2005", "provinceId" : "62", "regencyId" : "03", "districtId" : "03", "name" : "Anjir Mambulau Tengah"}, {"id" : "2006", "provinceId" : "62", "regencyId" : "03", "districtId" : "03", "name" : "Anjir Mambulau Barat"}, {"id" : "2007", "provinceId" : "62", "regencyId" : "03", "districtId" : "03", "name" : "Anjir Serapat Baru"}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "provinceId": {"type": "string"}, "regencyId": {"type": "string"}, "districtId": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "provinceId", "regencyId", "districtId", "name"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"parameters": {"type": "object", "properties": {"subscriptionId": {"type": "string"}, "api-version": {"type": "string"}, "location": {"type": "string"}}, "required": ["subscriptionId", "api-version", "location"]}, "responses": {"type": "object", "properties": {"200": {"type": "object", "properties": {"body": {"type": "object", "properties": {"hostsRemaining": {"type": "object", "properties": {"AV20": {"type": "integer"}, "AV36": {"type": "integer"}}, "required": ["AV20", "AV36"]}, "quotaEnabled": {"type": "string"}}, "required": ["hostsRemaining", "quotaEnabled"]}}, "required": ["body"]}}, "required": ["200"]}}, "required": ["parameters", "responses"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"parameters" : {"subscriptionId" : "{subscription-id}", "api-version" : "2021-06-01", "location" : "eastus"}, "responses" : {"200" : {"body" : {"hostsRemaining" : {"AV20" : 0, "AV36" : 999}, "quotaEnabled" : "Enabled"}}}}
json_instruct
{"type": "object", "properties": {"parameters": {"type": "object", "properties": {"subscriptionId": {"type": "string"}, "api-version": {"type": "string"}, "location": {"type": "string"}}, "required": ["subscriptionId", "api-version", "location"]}, "responses": {"type": "object", "properties": {"200": {"type": "object", "properties": {"body": {"type": "object", "properties": {"hostsRemaining": {"type": "object", "properties": {"AV20": {"type": "integer"}, "AV36": {"type": "integer"}}, "required": ["AV20", "AV36"]}, "quotaEnabled": {"type": "string"}}, "required": ["hostsRemaining", "quotaEnabled"]}}, "required": ["body"]}}, "required": ["200"]}}, "required": ["parameters", "responses"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"stat.flyOneCm": {"type": "integer"}, "stat.walkOneCm": {"type": "integer"}, "stat.jump": {"type": "integer"}, "stat.useItem.minecraft.writable_book": {"type": "integer"}, "stat.playOneMinute": {"type": "integer"}, "stat.timeSinceDeath": {"type": "integer"}, "stat.useItem.minecraft.written_book": {"type": "integer"}, "stat.sprintOneCm": {"type": "integer"}}, "required": ["stat.flyOneCm", "stat.walkOneCm", "stat.jump", "stat.useItem.minecraft.writable_book", "stat.playOneMinute", "stat.timeSinceDeath", "stat.useItem.minecraft.written_book", "stat.sprintOneCm"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"stat.flyOneCm" : 2120, "stat.walkOneCm" : 942, "stat.jump" : 11, "stat.useItem.minecraft.writable_book" : 4, "stat.playOneMinute" : 2507, "stat.timeSinceDeath" : 2507, "stat.useItem.minecraft.written_book" : 1, "stat.sprintOneCm" : 597}
json_instruct
{"type": "object", "properties": {"stat.flyOneCm": {"type": "integer"}, "stat.walkOneCm": {"type": "integer"}, "stat.jump": {"type": "integer"}, "stat.useItem.minecraft.writable_book": {"type": "integer"}, "stat.playOneMinute": {"type": "integer"}, "stat.timeSinceDeath": {"type": "integer"}, "stat.useItem.minecraft.written_book": {"type": "integer"}, "stat.sprintOneCm": {"type": "integer"}}, "required": ["stat.flyOneCm", "stat.walkOneCm", "stat.jump", "stat.useItem.minecraft.writable_book", "stat.playOneMinute", "stat.timeSinceDeath", "stat.useItem.minecraft.written_book", "stat.sprintOneCm"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"template": {"type": "string"}, "description": {"type": "string"}, "execution_order": {"type": "integer"}, "enabled": {"type": "boolean"}, "action": {"type": "string"}, "find": {"type": "string"}, "replace": {"type": "string"}}, "required": ["template", "description", "execution_order", "enabled", "action", "find", "replace"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"template" : "xfrm_resource_wrapper_macros", "description" : "Add tab in resource view", "execution_order" : 10, "enabled" : true, "action" : "str_replace", "find" : "<xf:if is=\"$resource.hasViewableDiscussion()\">", "replace" : "<xf:if is=\"$resource.canEdit()\">\n\t<a class=\"tabs-tab {{ $selected == 'buyers' ? 'is-active' : '' }}\" href=\"{{ link('resources/buyers', $resource) }}\">{{ phrase('xfrmc_buyers') }}</a>\n</xf:if>\n\n$0"}
json_instruct
{"type": "object", "properties": {"template": {"type": "string"}, "description": {"type": "string"}, "execution_order": {"type": "integer"}, "enabled": {"type": "boolean"}, "action": {"type": "string"}, "find": {"type": "string"}, "replace": {"type": "string"}}, "required": ["template", "description", "execution_order", "enabled", "action", "find", "replace"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"sn3.21:1.1": {"type": "string"}, "sn3.21:2.1": {"type": "string"}, "sn3.21:3.1": {"type": "string"}, "sn3.21:4.1": {"type": "string"}, "sn3.21:5.1": {"type": "string"}, "sn3.21:6.1": {"type": "string"}, "sn3.21:7.1": {"type": "string"}, "sn3.21:8.1": {"type": "string"}, "sn3.21:9.1": {"type": "string"}, "sn3.21:10.1": {"type": "string"}, "sn3.21:11.1": {"type": "string"}, "sn3.21:12.1": {"type": "string"}, "sn3.21:13.1": {"type": "string"}, "sn3.21:14.1": {"type": "string"}, "sn3.21:15.1": {"type": "string"}, "sn3.21:16.1": {"type": "string"}, "sn3.21:17.1": {"type": "string"}, "sn3.21:18.1": {"type": "string"}, "sn3.21:19.1": {"type": "string"}, "sn3.21:20.1": {"type": "string"}, "sn3.21:21.1": {"type": "string"}}, "required": ["sn3.21:1.1", "sn3.21:2.1", "sn3.21:3.1", "sn3.21:4.1", "sn3.21:5.1", "sn3.21:6.1", "sn3.21:7.1", "sn3.21:8.1", "sn3.21:9.1", "sn3.21:10.1", "sn3.21:11.1", "sn3.21:12.1", "sn3.21:13.1", "sn3.21:14.1", "sn3.21:15.1", "sn3.21:16.1", "sn3.21:17.1", "sn3.21:18.1", "sn3.21:19.1", "sn3.21:20.1", "sn3.21:21.1"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"sn3.21:1.1" : "cck15.128, csp1ed12.94, csp2ed12.94, dr15.128, ms12S1_717, msdiv132, pts-vp-pli2ed1.210, sc1, sya15.136, vri23.112", "sn3.21:2.1" : "bj13.172, ms12S1_718, ndp12.93, pts-vp-pli1ed1.94, pts-vp-pli2ed1.211, sc2", "sn3.21:3.1" : "dr15.129, ms12S1_719, sc3, sya15.137", "sn3.21:4.1" : "cck15.129, csp1ed12.95, csp2ed12.95, ms12S1_720, sc4, vri23.113", "sn3.21:5.1" : "ms12S1_721, pts-vp-pli2ed1.212, sc5", "sn3.21:6.1" : "bj13.174, cck15.130, dr15.130, ms12S1_722, ndp12.94, pts-vp-pli1ed1.95, sc6, sya15.138", "sn3.21:7.1" : "ms12S1_723, sc7", "sn3.21:8.1" : "cck15.131, csp1ed12.96, csp2ed12.96, ms12S1_724, pts-vp-pli2ed1.213, sc8, sya15.139, vri23.114", "sn3.21:9.1" : "dr15.131, ms12S1_725, ndp12.95, pts-vp-pli1ed1.96, sc9", "sn3.21:10.1" : "ms12S1_726, sc10", "sn3.21:11.1" : "ms12S1_727, pts-vp-pli2ed1.214, sc11", "sn3.21:12.1" : "ms12S1_728, sc12", "sn3.21:13.1" : "ms12S1_729, sc13, sya15.140", "sn3.21:14.1" : "bj13.176, ms12S1_730, ndp12.96, sc14", "sn3.21:15.1" : "cck15.132, ms12S1_731, pts-vp-pli2ed1.215, sc15, vri23.115", "sn3.21:16.1" : "csp1ed12.97, csp2ed12.97, ms12S1_732, sc16", "sn3.21:17.1" : "dr15.132, ms12S1_733, sc17", "sn3.21:18.1" : "ms12S1_734, sc18", "sn3.21:19.1" : "ms12S1_735, pts-vp-pli2ed1.216, sc19", "sn3.21:20.1" : "ms12S1_736, sc20", "sn3.21:21.1" : "ms12S1_737, sc21"}
json_instruct
{"type": "object", "properties": {"sn3.21:1.1": {"type": "string"}, "sn3.21:2.1": {"type": "string"}, "sn3.21:3.1": {"type": "string"}, "sn3.21:4.1": {"type": "string"}, "sn3.21:5.1": {"type": "string"}, "sn3.21:6.1": {"type": "string"}, "sn3.21:7.1": {"type": "string"}, "sn3.21:8.1": {"type": "string"}, "sn3.21:9.1": {"type": "string"}, "sn3.21:10.1": {"type": "string"}, "sn3.21:11.1": {"type": "string"}, "sn3.21:12.1": {"type": "string"}, "sn3.21:13.1": {"type": "string"}, "sn3.21:14.1": {"type": "string"}, "sn3.21:15.1": {"type": "string"}, "sn3.21:16.1": {"type": "string"}, "sn3.21:17.1": {"type": "string"}, "sn3.21:18.1": {"type": "string"}, "sn3.21:19.1": {"type": "string"}, "sn3.21:20.1": {"type": "string"}, "sn3.21:21.1": {"type": "string"}}, "required": ["sn3.21:1.1", "sn3.21:2.1", "sn3.21:3.1", "sn3.21:4.1", "sn3.21:5.1", "sn3.21:6.1", "sn3.21:7.1", "sn3.21:8.1", "sn3.21:9.1", "sn3.21:10.1", "sn3.21:11.1", "sn3.21:12.1", "sn3.21:13.1", "sn3.21:14.1", "sn3.21:15.1", "sn3.21:16.1", "sn3.21:17.1", "sn3.21:18.1", "sn3.21:19.1", "sn3.21:20.1", "sn3.21:21.1"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"appid": {"type": "integer"}, "name": {"type": "string"}, "windows": {"type": "boolean"}, "mac": {"type": "boolean"}, "linux": {"type": "boolean"}, "early_access": {"type": "boolean"}, "lookup_time": {"type": "integer"}}, "required": ["appid", "name", "windows", "mac", "linux", "early_access", "lookup_time"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"appid" : 71113, "name" : "Sonic the Hedgehog", "windows" : true, "mac" : false, "linux" : false, "early_access" : false, "lookup_time" : 1490967021}
json_instruct
{"type": "object", "properties": {"appid": {"type": "integer"}, "name": {"type": "string"}, "windows": {"type": "boolean"}, "mac": {"type": "boolean"}, "linux": {"type": "boolean"}, "early_access": {"type": "boolean"}, "lookup_time": {"type": "integer"}}, "required": ["appid", "name", "windows", "mac", "linux", "early_access", "lookup_time"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"dataType": {"type": "string"}, "longName": {"type": "string"}, "hl7Table": {"type": "string"}}, "required": ["dataType", "longName", "hl7Table"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"dataType" : "IS", "longName" : "Transaction Type", "hl7Table" : "HL70017"}
json_instruct
{"type": "object", "properties": {"dataType": {"type": "string"}, "longName": {"type": "string"}, "hl7Table": {"type": "string"}}, "required": ["dataType", "longName", "hl7Table"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"id": {"type": "string"}, "playerTags": {"type": "array", "items": {"type": "string"}}, "teamTags": {"type": "array", "items": {}}, "gameTags": {"type": "array", "items": {"type": "string"}}, "metadata": {"type": "object", "properties": {"mod": {"type": "string"}, "play": {"type": "integer"}, "type": {"type": "integer"}, "parent": {"type": "string"}, "subPlay": {"type": "integer"}}, "required": ["mod", "play", "type", "parent", "subPlay"]}, "created": {"type": "string"}, "season": {"type": "integer"}, "tournament": {"type": "integer"}, "type": {"type": "integer"}, "day": {"type": "integer"}, "phase": {"type": "integer"}, "category": {"type": "integer"}, "description": {"type": "string"}, "nuts": {"type": "integer"}}, "required": ["id", "playerTags", "teamTags", "gameTags", "metadata", "created", "season", "tournament", "type", "day", "phase", "category", "description", "nuts"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : "b0d6530f-6503-43f0-ae79-b6e934a416ed", "playerTags" : ["c83a13f6-ee66-4b1c-9747-faa67395a6f1"], "teamTags" : [], "gameTags" : ["1a0e91ae-6028-4de9-b8ab-91675acce531"], "metadata" : {"mod" : "INHABITING", "play" : 180, "type" : 0, "parent" : "dec17a3d-f565-4396-8c5e-b855e4ecfa1b", "subPlay" : 0}, "created" : "2021-04-14T11:15:28.732Z", "season" : 15, "tournament" : -1, "type" : 106, "day" : 41, "phase" : 4, "category" : 1, "description" : "Zi Delacruz is Inhabiting Esme Ramsey!", "nuts" : 0}
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "playerTags": {"type": "array", "items": {"type": "string"}}, "teamTags": {"type": "array", "items": {}}, "gameTags": {"type": "array", "items": {"type": "string"}}, "metadata": {"type": "object", "properties": {"mod": {"type": "string"}, "play": {"type": "integer"}, "type": {"type": "integer"}, "parent": {"type": "string"}, "subPlay": {"type": "integer"}}, "required": ["mod", "play", "type", "parent", "subPlay"]}, "created": {"type": "string"}, "season": {"type": "integer"}, "tournament": {"type": "integer"}, "type": {"type": "integer"}, "day": {"type": "integer"}, "phase": {"type": "integer"}, "category": {"type": "integer"}, "description": {"type": "string"}, "nuts": {"type": "integer"}}, "required": ["id", "playerTags", "teamTags", "gameTags", "metadata", "created", "season", "tournament", "type", "day", "phase", "category", "description", "nuts"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"pools": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "entries": {"type": "array", "items": {"type": "object", "properties": {"entryName": {"type": "string"}, "weight": {"type": "integer"}, "quality": {"type": "integer"}, "type": {"type": "string"}, "name": {"type": "string"}}, "required": ["entryName", "weight", "quality", "type", "name"]}}, "rolls": {"type": "number"}}, "required": ["name", "entries", "rolls"]}}}, "required": ["pools"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"pools" : [{"name" : "main", "entries" : [{"entryName" : "twilightforest:charm_of_life_1", "weight" : 1, "quality" : 0, "type" : "item", "name" : "twilightforest:charm_of_life_1"}, {"entryName" : "ff", "weight" : 1, "quality" : 0, "type" : "item", "functions" : [{"enchantments" : {"minecraft:feather_falling" : 3}, "function" : "twilightforest:enchant"}], "name" : "minecraft:enchanted_book"}, {"entryName" : "knock", "weight" : 1, "quality" : 0, "type" : "item", "functions" : [{"enchantments" : {"minecraft:knockback" : 2}, "function" : "twilightforest:enchant"}], "name" : "minecraft:enchanted_book"}, {"entryName" : "eff", "weight" : 1, "quality" : 0, "type" : "item", "functions" : [{"enchantments" : {"minecraft:efficiency" : 3}, "function" : "twilightforest:enchant"}], "name" : "minecraft:enchanted_book"}], "rolls" : 1.0}]}
json_instruct
{"type": "object", "properties": {"pools": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "entries": {"type": "array", "items": {"type": "object", "properties": {"entryName": {"type": "string"}, "weight": {"type": "integer"}, "quality": {"type": "integer"}, "type": {"type": "string"}, "name": {"type": "string"}}, "required": ["entryName", "weight", "quality", "type", "name"]}}, "rolls": {"type": "number"}}, "required": ["name", "entries", "rolls"]}}}, "required": ["pools"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"n_dim": {"type": "integer"}, "n_trials": {"type": "integer"}, "objective": {"type": "string"}, "white": {"type": "string"}, "black": {"type": "string"}, "traceback": {"type": "array", "items": {"type": "string"}}, "best_val": {"type": "array", "items": {"type": "number"}}, "best_x": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}, "feval_count": {"type": "array", "items": {"type": "integer"}}, "n_trials_instructed": {"type": "array", "items": {"type": "integer"}}, "passing": {"type": "array", "items": {"type": "boolean"}}, "completed": {"type": "boolean"}, "points": {"type": "number"}, "winner": {"type": "string"}, "loser": {"type": "string"}}, "required": ["n_dim", "n_trials", "objective", "white", "black", "traceback", "best_val", "best_x", "feval_count", "n_trials_instructed", "passing", "completed", "points", "winner", "loser"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"n_dim" : 8, "n_trials" : 50, "objective" : "rotated_hyper_ellipsoid_on_cube", "white" : "bayesopt_poi", "black" : "hyperopt_atpe", "traceback" : ["passing", "passing"], "best_val" : [109.3164420127518, 1066.698787791662], "best_x" : [[0.4390949783744464, 0.4187654039473436, 0.435162705623744, 0.4594553731163044, 0.4276204076937005, 0.4762376860215357, 0.30088286337004855, 0.6103923909216648], [0.4314746217733479, 0.3201053155902467, 0.24210965403012094, 0.5536700023455882, 0.4105830344933885, 0.5295880567639546, 0.6845668858303597, 0.8572669375397872]], "feval_count" : [50, 50], "n_trials_instructed" : [50, 50], "passing" : [true, true], "completed" : true, "points" : 1.0, "winner" : "bayesopt_poi", "loser" : "hyperopt_atpe"}
json_instruct
{"type": "object", "properties": {"n_dim": {"type": "integer"}, "n_trials": {"type": "integer"}, "objective": {"type": "string"}, "white": {"type": "string"}, "black": {"type": "string"}, "traceback": {"type": "array", "items": {"type": "string"}}, "best_val": {"type": "array", "items": {"type": "number"}}, "best_x": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}, "feval_count": {"type": "array", "items": {"type": "integer"}}, "n_trials_instructed": {"type": "array", "items": {"type": "integer"}}, "passing": {"type": "array", "items": {"type": "boolean"}}, "completed": {"type": "boolean"}, "points": {"type": "number"}, "winner": {"type": "string"}, "loser": {"type": "string"}}, "required": ["n_dim", "n_trials", "objective", "white", "black", "traceback", "best_val", "best_x", "feval_count", "n_trials_instructed", "passing", "completed", "points", "winner", "loser"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "authors": {"type": "array", "items": {"type": "string"}}, "license": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "homepage": {"type": "string"}, "ignore": {"type": "array", "items": {"type": "string"}}, "dependencies": {"type": "object", "properties": {"angular-material-icons": {"type": "string"}, "angular-material": {"type": "string"}}, "required": ["angular-material-icons", "angular-material"]}}, "required": ["name", "description", "main", "authors", "license", "keywords", "homepage", "ignore", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "furkan-angular7-node12-npm6", "description" : "", "main" : "index.js", "authors" : ["Onur Furkan Unal"], "license" : "MIT", "keywords" : ["forum", "advertisement"], "homepage" : "https://github.com/OnurFurkanUnal/furkan-angular7-node12-npm6", "ignore" : ["**/.*", "node_modules", "bower_components", "test", "tests"], "dependencies" : {"angular-material-icons" : "^0.7.1", "angular-material" : "^1.1.19"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "authors": {"type": "array", "items": {"type": "string"}}, "license": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "homepage": {"type": "string"}, "ignore": {"type": "array", "items": {"type": "string"}}, "dependencies": {"type": "object", "properties": {"angular-material-icons": {"type": "string"}, "angular-material": {"type": "string"}}, "required": ["angular-material-icons", "angular-material"]}}, "required": ["name", "description", "main", "authors", "license", "keywords", "homepage", "ignore", "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": {"year": {"type": "integer"}, "sex": {"type": "string"}, "n": {"type": "integer"}, "prop": {"type": "number"}}, "required": ["year", "sex", "n", "prop"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"year" : 1918, "sex" : "F", "n" : 7, "prop" : 5.82e-06}, {"year" : 1958, "sex" : "F", "n" : 5, "prop" : 2.42e-06}, {"year" : 1970, "sex" : "F", "n" : 5, "prop" : 2.73e-06}, {"year" : 1975, "sex" : "F", "n" : 5, "prop" : 3.2e-06}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"year": {"type": "integer"}, "sex": {"type": "string"}, "n": {"type": "integer"}, "prop": {"type": "number"}}, "required": ["year", "sex", "n", "prop"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"id": {"type": "string"}, "expression": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}}, "required": ["id"]}}}, "required": ["id", "expression"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : "http://data.doremus.org/performance/cf09c42c-b363-3a6c-8f5c-b6916b2c5607", "expression" : [{"id" : "http://data.doremus.org/expression/a0751226-9338-3c12-806e-868f370d942a"}, {"composer" : "http://data.doremus.org/artist/73fb2260-be2c-3859-9752-c557f7457d8c", "id" : "http://data.doremus.org/expression/c044e713-fd42-3d74-ac7d-863ad8f63515"}, {"composer" : "http://data.doremus.org/artist/73fb2260-be2c-3859-9752-c557f7457d8c", "id" : "http://data.doremus.org/expression/92d40e6b-aa7c-3799-9a72-d15956fae748"}, {"id" : "http://data.doremus.org/expression/eabf32de-b73a-348a-a30f-ec27be224e44"}, {"id" : "http://data.doremus.org/expression/061d1258-7060-373d-b525-461faba091e4"}, {"composer" : "http://data.doremus.org/artist/bcf39e82-e208-3049-b550-1feaae6071a6", "id" : "http://data.doremus.org/expression/2cbbfe53-0627-3c3a-928d-e47d1b2b3dc0"}, {"id" : "http://data.doremus.org/expression/3450f819-66fe-32f0-b0f1-0b2ba8fa10b9"}, {"id" : "http://data.doremus.org/expression/a8c2c313-66ba-34db-a6aa-a4d8d569332a"}, {"composer" : "http://data.doremus.org/artist/a4e8f64d-3411-3eb4-8e09-59e24bc26bf3", "id" : "http://data.doremus.org/expression/6dbf136e-73dd-3f0f-b2e7-33c9e6bac216"}, {"composer" : "http://data.doremus.org/artist/c02d29d9-0ab1-376e-a104-ae6184064092", "id" : "http://data.doremus.org/expression/f29e3068-32e0-3e7d-a985-01c51461275a"}]}
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "expression": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}}, "required": ["id"]}}}, "required": ["id", "expression"], "$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"}, "dependencies": {"type": "object", "properties": {"apify": {"type": "string"}, "apify-shared": {"type": "string"}, "puppeteer": {"type": "string"}, "underscore": {"type": "string"}}, "required": ["apify", "apify-shared", "puppeteer", "underscore"]}, "devDependencies": {"type": "object", "properties": {}, "required": []}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}, "test": {"type": "string"}}, "required": ["start", "test"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "author": {"type": "string"}, "license": {"type": "string"}, "homepage": {"type": "string"}}, "required": ["name", "version", "description", "main", "dependencies", "devDependencies", "scripts", "repository", "author", "license", "homepage"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "actor-find-broken-links", "version" : "1.0.0", "description" : "Crawl a number of web pages using headless Chrome and Puppeteer", "main" : "main.js", "dependencies" : {"apify" : "^0.8.19", "apify-shared" : "^0.1.6", "puppeteer" : "^1.9.0", "underscore" : "^1.9.1"}, "devDependencies" : {}, "scripts" : {"start" : "node main.js", "test" : "echo \"Error: no test specified\" && exit 1"}, "repository" : {"type" : "git", "url" : ""}, "author" : "", "license" : "ISC", "homepage" : ""}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "dependencies": {"type": "object", "properties": {"apify": {"type": "string"}, "apify-shared": {"type": "string"}, "puppeteer": {"type": "string"}, "underscore": {"type": "string"}}, "required": ["apify", "apify-shared", "puppeteer", "underscore"]}, "devDependencies": {"type": "object", "properties": {}, "required": []}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}, "test": {"type": "string"}}, "required": ["start", "test"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "author": {"type": "string"}, "license": {"type": "string"}, "homepage": {"type": "string"}}, "required": ["name", "version", "description", "main", "dependencies", "devDependencies", "scripts", "repository", "author", "license", "homepage"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "array", "items": {"type": "array", "items": {"type": "string"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
[["650106014200", "\u4e1c\u5357\u6c9f\u6751\u59d4\u4f1a", "111", "0"], ["650106014201", "\u8428\u5c14\u8fbe\u5742\u6751\u59d4\u4f1a", "112", "0"], ["650106014202", "\u9a6c\u5bb6\u5e84\u5b50\u6751\u59d4\u4f1a", "112", "0"], ["650106014203", "\u5927\u6cc9\u6751\u59d4\u4f1a", "112", "0"], ["650106014204", "\u963f\u5408\u4e54\u514b\u6751", "112", "0"]]
json_instruct
{"type": "array", "items": {"type": "array", "items": {"type": "string"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "category": {"type": "string"}, "type": {"type": "string"}, "homeurl": {"type": "string"}, "frequency": {"type": "string"}, "issues": {"type": "string"}, "url": {"type": "string"}, "license": {"type": "string"}, "numberofrules": {"type": "integer"}, "lastupdate": {"type": "string"}, "activerules": {"type": "integer"}, "lastupdateactiverule": {"type": "string"}}, "required": ["name", "description", "category", "type", "homeurl", "frequency", "issues", "url", "license", "numberofrules", "lastupdate", "activerules", "lastupdateactiverule"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "adguard.spyware", "description" : "Comprehensive list of various online counters and web analytics tools", "category" : "Ads", "type" : "domain", "homeurl" : "https://github.com/AdguardTeam/AdguardFilters", "frequency" : "occasionally", "issues" : "https://github.com/AdguardTeam/AdguardFilters/issues", "url" : "https://filters.adtidy.org/extension/chromium/filters/3.txt", "license" : "CC BY-SA 3.0", "numberofrules" : 3938, "lastupdate" : "01/06/2020 00:00 UTC+8", "activerules" : 0, "lastupdateactiverule" : ""}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "category": {"type": "string"}, "type": {"type": "string"}, "homeurl": {"type": "string"}, "frequency": {"type": "string"}, "issues": {"type": "string"}, "url": {"type": "string"}, "license": {"type": "string"}, "numberofrules": {"type": "integer"}, "lastupdate": {"type": "string"}, "activerules": {"type": "integer"}, "lastupdateactiverule": {"type": "string"}}, "required": ["name", "description", "category", "type", "homeurl", "frequency", "issues", "url", "license", "numberofrules", "lastupdate", "activerules", "lastupdateactiverule"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "version": {"type": "string"}, "homepage": {"type": "string"}, "main": {"type": "string"}, "files": {"type": "array", "items": {"type": "string"}}, "scripts": {"type": "object", "properties": {"test": {"type": "array", "items": {"type": "string"}}}, "required": ["test"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}, "url": {"type": "string"}}, "required": ["name", "email", "url"]}, "contributors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}, "url": {"type": "string"}}, "required": ["name", "email", "url"]}}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}, "email": {"type": "string"}}, "required": ["url", "email"]}, "licenses": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}}, "devDependencies": {"type": "object", "properties": {"chai": {"type": "string"}, "karma-mocha": {"type": "string"}, "karma-chrome-launcher": {"type": "string"}}, "required": ["chai", "karma-mocha", "karma-chrome-launcher"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}}, "required": ["name", "description", "version", "homepage", "main", "files", "scripts", "keywords", "author", "contributors", "bugs", "licenses", "devDependencies", "repository"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "Classy", "description" : "An object-oriented library for Javascript", "version" : "1.0.0", "homepage" : "https://github.com/mblinsitu/Classy", "main" : "classy.js", "files" : ["classy.js", "oo.js", "assets"], "scripts" : {"test" : ["mocha", "karma start"]}, "keywords" : ["object-oriented framework", "classes", "mixins", "wrappers"], "author" : {"name" : "Michel Beaudouin-Lafon", "email" : "mbl@lri.fr", "url" : "http://www.lri.fr/~mbl"}, "contributors" : [{"name" : "Michel Beaudouin-Lafon", "email" : "mbl@lri.fr", "url" : "http://www.lri.fr/~mbl"}], "bugs" : {"url" : "https://github.com/mblinsitu/Classy/issues", "email" : "mbl@lri.fr"}, "licenses" : [{"type" : "MIT", "url" : "http://opensource.org/licenses/MIT"}], "devDependencies" : {"chai" : ">=1.9.1", "karma-mocha" : ">0.1.7", "karma-chrome-launcher" : ">0.1.4"}, "repository" : {"type" : "git", "url" : "https://github.com/mblinsitu/Classy.git"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "version": {"type": "string"}, "homepage": {"type": "string"}, "main": {"type": "string"}, "files": {"type": "array", "items": {"type": "string"}}, "scripts": {"type": "object", "properties": {"test": {"type": "array", "items": {"type": "string"}}}, "required": ["test"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}, "url": {"type": "string"}}, "required": ["name", "email", "url"]}, "contributors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}, "url": {"type": "string"}}, "required": ["name", "email", "url"]}}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}, "email": {"type": "string"}}, "required": ["url", "email"]}, "licenses": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}}, "devDependencies": {"type": "object", "properties": {"chai": {"type": "string"}, "karma-mocha": {"type": "string"}, "karma-chrome-launcher": {"type": "string"}}, "required": ["chai", "karma-mocha", "karma-chrome-launcher"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}}, "required": ["name", "description", "version", "homepage", "main", "files", "scripts", "keywords", "author", "contributors", "bugs", "licenses", "devDependencies", "repository"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"id_0506": {"type": "object", "properties": {"publicdate": {"type": "string"}, "title": {"type": "string"}}, "required": ["publicdate", "title"]}}, "required": ["id_0506"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id_0506" : {"publicdate" : "2007-01-26 09:32:41", "title" : "Book of Matthew"}}
json_instruct
{"type": "object", "properties": {"id_0506": {"type": "object", "properties": {"publicdate": {"type": "string"}, "title": {"type": "string"}}, "required": ["publicdate", "title"]}}, "required": ["id_0506"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"n_dim": {"type": "integer"}, "n_trials": {"type": "integer"}, "objective": {"type": "string"}, "white": {"type": "string"}, "black": {"type": "string"}, "traceback": {"type": "array", "items": {"type": "string"}}, "best_val": {"type": "array", "items": {"type": "number"}}, "best_x": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}, "feval_count": {"type": "array", "items": {"type": "integer"}}, "n_trials_instructed": {"type": "array", "items": {"type": "integer"}}, "passing": {"type": "array", "items": {"type": "boolean"}}, "completed": {"type": "boolean"}, "points": {"type": "number"}, "winner": {"type": "string"}, "loser": {"type": "string"}}, "required": ["n_dim", "n_trials", "objective", "white", "black", "traceback", "best_val", "best_x", "feval_count", "n_trials_instructed", "passing", "completed", "points", "winner", "loser"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"n_dim" : 21, "n_trials" : 130, "objective" : "rosenbrock_on_cube", "white" : "platypus_evolutionary", "black" : "bobyqa_default", "traceback" : ["passing", "passing"], "best_val" : [136714641164.42241, 84779.89934436129], "best_x" : [[0.6902292090522321, 0.6567173568701146, 0.6261408547079198, 0.8236868131352056, 0.5607255174758186, 0.19668247411062756, 0.7751241985723264, 0.4339250021345037, 0.2102634026244976, 0.46743420084010445, 0.6232485930489471, 0.4832790472639741, 0.5139830158904197, 0.787227667290217, 0.5642588272135179, 0.6652879077026892, 0.8259607148165868, 0.9064437762882582, 0.5989578094527515, 0.619159793967452, 0.8945060754118609], [0.5329849664094453, 0.5348720294165946, 0.5394855668274352, 0.5360938234448499, 0.535743154694848, 0.5261016017752628, 0.5330904112864088, 0.5335420291749432, 0.5332371283645473, 0.5336798850481523, 0.5254209865566324, 0.5336714939393385, 0.5247008604427984, 0.530025038428182, 0.5264717853946604, 0.526498768382944, 0.5324507544477604, 0.5310178507208516, 0.5255325072100261, 0.5333762309944143, 0.5065946562785727]], "feval_count" : [100, 100], "n_trials_instructed" : [91, 100], "passing" : [true, true], "completed" : true, "points" : 0.0, "winner" : "bobyqa_default_cube", "loser" : "platypus_evolutionary_cube"}
json_instruct
{"type": "object", "properties": {"n_dim": {"type": "integer"}, "n_trials": {"type": "integer"}, "objective": {"type": "string"}, "white": {"type": "string"}, "black": {"type": "string"}, "traceback": {"type": "array", "items": {"type": "string"}}, "best_val": {"type": "array", "items": {"type": "number"}}, "best_x": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}, "feval_count": {"type": "array", "items": {"type": "integer"}}, "n_trials_instructed": {"type": "array", "items": {"type": "integer"}}, "passing": {"type": "array", "items": {"type": "boolean"}}, "completed": {"type": "boolean"}, "points": {"type": "number"}, "winner": {"type": "string"}, "loser": {"type": "string"}}, "required": ["n_dim", "n_trials", "objective", "white", "black", "traceback", "best_val", "best_x", "feval_count", "n_trials_instructed", "passing", "completed", "points", "winner", "loser"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"pageTitle": {"type": "string"}, "joinUs": {"type": "string"}, "joinUsStatement": {"type": "string"}, "ourValues": {"type": "string"}, "values1": {"type": "string"}, "valuesMotto": {"type": "string"}, "values2": {"type": "string"}, "valuesMotto2": {"type": "string"}, "values3": {"type": "string"}, "joinCelo": {"type": "string"}, "joinCeloStatement": {"type": "string"}}, "required": ["pageTitle", "joinUs", "joinUsStatement", "ourValues", "values1", "valuesMotto", "values2", "valuesMotto2", "values3", "joinCelo", "joinCeloStatement"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"pageTitle" : "Celo Carreras: crear productos para la inclusi\u00f3n financiera", "joinUs" : "\u00danase a nosotros", "joinUsStatement" : "Vamos a crear un sistema monetario que genere las condiciones para la prosperidad de todos", "ourValues" : "Nuestros valores", "values1" : "Creemos que todas las personas tienen su propia trayectoria de crecimiento, y que la realizaci\u00f3n personal depende en gran medida de ser capaz de alcanzar el potencial de uno a lo largo de esa trayectoria. Adoptamos valores que permiten que las personas desarrollen todo su potencial:", "valuesMotto" : "autonom\u00eda, responsabilidad individual, reflexi\u00f3n meditada y enfoque a largo plazo.", "values2" : "Al mismo tiempo, creemos que las personas viven principalmente en conexi\u00f3n con las dem\u00e1s personas. Reconocemos que las personas son m\u00e1s felices y m\u00e1s saludables cuando forman parte de una comunidad social s\u00f3lida con relaciones significativas; es decir, cuando viven en un todo feliz y saludable. Adoptamos valores que fortalecen a la comunidad:", "valuesMotto2" : "amabilidad, empat\u00eda, hol\u00edstica y apoyo mutuo.", "values3" : "Tenemos como objetivo de nuestra cultura interna, as\u00ed como tambi\u00e9n de las herramientas que creamos, reflejar estos valores fundamentales. Como equipo, aspiramos a tomar decisiones claves en una escala de tiempo a largo plazo.", "joinCelo" : "\u00danase a Celo", "joinCeloStatement" : "Para crear productos amados y usados por personas alrededor del mundo, necesitamos un equipo con todo tipo de perspectivas, experiencias y antecedentes diferentes."}
json_instruct
{"type": "object", "properties": {"pageTitle": {"type": "string"}, "joinUs": {"type": "string"}, "joinUsStatement": {"type": "string"}, "ourValues": {"type": "string"}, "values1": {"type": "string"}, "valuesMotto": {"type": "string"}, "values2": {"type": "string"}, "valuesMotto2": {"type": "string"}, "values3": {"type": "string"}, "joinCelo": {"type": "string"}, "joinCeloStatement": {"type": "string"}}, "required": ["pageTitle", "joinUs", "joinUsStatement", "ourValues", "values1", "valuesMotto", "values2", "valuesMotto2", "values3", "joinCelo", "joinCeloStatement"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"yasgui.bundled.min.js": {"type": "string"}, "yasgui.min.css": {"type": "string"}, "yasgui.min.js": {"type": "string"}}, "required": ["yasgui.bundled.min.js", "yasgui.min.css", "yasgui.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"yasgui.bundled.min.js" : "sha512-Xt6EZcVMsQ3s3M5VJn5fDAGKqQNrpddoqmi7xoCCZD327GuiHYF5V7MwhD3liSyQujGbv6NHM1xcom+ew1x5rw==", "yasgui.min.css" : "sha512-UO08D9m2FNLAQAzAc4MxXWtkQhi8oJpi9PoBF7lO8Fvkj9iTnFWKvggY0D7H8ZlKJO0IzEkZbA69hOnGM+ZYIg==", "yasgui.min.js" : "sha512-Xt6EZcVMsQ3s3M5VJn5fDAGKqQNrpddoqmi7xoCCZD327GuiHYF5V7MwhD3liSyQujGbv6NHM1xcom+ew1x5rw=="}
json_instruct
{"type": "object", "properties": {"yasgui.bundled.min.js": {"type": "string"}, "yasgui.min.css": {"type": "string"}, "yasgui.min.js": {"type": "string"}}, "required": ["yasgui.bundled.min.js", "yasgui.min.css", "yasgui.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "array", "items": {"type": "object", "properties": {"year": {"type": "integer"}, "sex": {"type": "string"}, "n": {"type": "integer"}, "prop": {"type": "number"}}, "required": ["year", "sex", "n", "prop"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"year" : 1984, "sex" : "F", "n" : 7, "prop" : 3.88e-06}, {"year" : 1986, "sex" : "F", "n" : 9, "prop" : 4.88e-06}, {"year" : 1987, "sex" : "F", "n" : 8, "prop" : 4.27e-06}, {"year" : 1988, "sex" : "F", "n" : 9, "prop" : 4.68e-06}, {"year" : 1989, "sex" : "F", "n" : 12, "prop" : 6.02e-06}, {"year" : 1990, "sex" : "F", "n" : 23, "prop" : 0}, {"year" : 1991, "sex" : "F", "n" : 29, "prop" : 0}, {"year" : 1992, "sex" : "F", "n" : 42, "prop" : 0}, {"year" : 1993, "sex" : "F", "n" : 54, "prop" : 0}, {"year" : 1994, "sex" : "F", "n" : 55, "prop" : 0}, {"year" : 1995, "sex" : "F", "n" : 69, "prop" : 0}, {"year" : 1996, "sex" : "F", "n" : 81, "prop" : 0}, {"year" : 1997, "sex" : "F", "n" : 99, "prop" : 0.0001}, {"year" : 1998, "sex" : "F", "n" : 121, "prop" : 0.0001}, {"year" : 1999, "sex" : "F", "n" : 121, "prop" : 0.0001}, {"year" : 2000, "sex" : "F", "n" : 138, "prop" : 0.0001}, {"year" : 2001, "sex" : "F", "n" : 127, "prop" : 0.0001}, {"year" : 2002, "sex" : "F", "n" : 115, "prop" : 0.0001}, {"year" : 2003, "sex" : "F", "n" : 149, "prop" : 0.0001}, {"year" : 2004, "sex" : "F", "n" : 137, "prop" : 0.0001}, {"year" : 2005, "sex" : "F", "n" : 145, "prop" : 0.0001}, {"year" : 2006, "sex" : "F", "n" : 162, "prop" : 0.0001}, {"year" : 2007, "sex" : "F", "n" : 136, "prop" : 0.0001}, {"year" : 2008, "sex" : "F", "n" : 238, "prop" : 0.0001}, {"year" : 2009, "sex" : "F", "n" : 175, "prop" : 0.0001}, {"year" : 2010, "sex" : "F", "n" : 148, "prop" : 0.0001}, {"year" : 2011, "sex" : "F", "n" : 181, "prop" : 0.0001}, {"year" : 2012, "sex" : "F", "n" : 137, "prop" : 0.0001}, {"year" : 2013, "sex" : "F", "n" : 135, "prop" : 0.0001}, {"year" : 2014, "sex" : "F", "n" : 144, "prop" : 0.0001}, {"year" : 2015, "sex" : "F", "n" : 117, "prop" : 0.0001}, {"year" : 2016, "sex" : "F", "n" : 97, "prop" : 0.0001}, {"year" : 2017, "sex" : "F", "n" : 65, "prop" : 0}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"year": {"type": "integer"}, "sex": {"type": "string"}, "n": {"type": "integer"}, "prop": {"type": "number"}}, "required": ["year", "sex", "n", "prop"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"track": {"type": "string"}, "exercise": {"type": "string"}, "id": {"type": "string"}, "url": {"type": "string"}, "handle": {"type": "string"}, "is_requester": {"type": "boolean"}, "auto_approve": {"type": "boolean"}}, "required": ["track", "exercise", "id", "url", "handle", "is_requester", "auto_approve"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"track" : "typescript", "exercise" : "secret-handshake", "id" : "a5acba35f6eb4bd889ebf79f47c3bcbe", "url" : "https://exercism.io/my/solutions/a5acba35f6eb4bd889ebf79f47c3bcbe", "handle" : "rootulp", "is_requester" : true, "auto_approve" : false}
json_instruct
{"type": "object", "properties": {"track": {"type": "string"}, "exercise": {"type": "string"}, "id": {"type": "string"}, "url": {"type": "string"}, "handle": {"type": "string"}, "is_requester": {"type": "boolean"}, "auto_approve": {"type": "boolean"}}, "required": ["track", "exercise", "id", "url", "handle", "is_requester", "auto_approve"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"output": {"type": "string"}, "input": {"type": "string"}, "level": {"type": "integer"}, "name": {"type": "string"}, "has_images": {"type": "boolean"}, "description": {"type": "string"}, "id": {"type": "string"}, "category": {"type": "string"}, "statistics": {"type": "object", "properties": {"level": {"type": "string"}, "submissions": {"type": "integer"}, "solved": {"type": "integer"}, "ratio": {"type": "string"}}, "required": ["level", "submissions", "solved", "ratio"]}}, "required": ["output", "input", "level", "name", "has_images", "description", "id", "category", "statistics"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"output" : "For each test case in the input, your program must print the integer represented by n or \"error\" if n is not a valid non-negative integer. Note: an empty string does not represent a valid integer.", "input" : "Each line of input is one test case and contains one string n. This n will contain between 0 and 50, inclusive, letters,\n numbers, spaces, or commas.", "level" : 8, "name" : "Friendly Int Parser", "has_images" : false, "description" : "Computers have made their way into a significant\n percentage of the homes in the world, and as programmers we\n are responsible for designing user interfaces that everyone\n can use. User interfaces need to be flexible so that if a\n user makes some non-fatal error, the interface can still\n figure out what the user meant.\n \n Your task is to write a program which processes a text\n input representing an integer, however, because this is a\n friendly user interface, we cut the user a little more\n slack:\n \n 1. If the user types the letter \"O\" or \"o\", we assume that they meant the digit \"0\".\n \n 2. If the user types the letter \"l\", we assume that they meant the digit \"1\".\n \n 3. Commas and spaces are allowed, but are not processed (ignore them).\n \n If the user has still not entered a valid non-negative\n integer (even with the rules above), print the string\n \"error\". Overflow (a value greater than 2147483647) is\n considered invalid and \"error\" should be printed.", "id" : "1287", "category" : "Strings", "statistics" : {"level" : "8 / 10", "submissions" : 5964, "solved" : 1253, "ratio" : "21.01%"}}
json_instruct
{"type": "object", "properties": {"output": {"type": "string"}, "input": {"type": "string"}, "level": {"type": "integer"}, "name": {"type": "string"}, "has_images": {"type": "boolean"}, "description": {"type": "string"}, "id": {"type": "string"}, "category": {"type": "string"}, "statistics": {"type": "object", "properties": {"level": {"type": "string"}, "submissions": {"type": "integer"}, "solved": {"type": "integer"}, "ratio": {"type": "string"}}, "required": ["level", "submissions", "solved", "ratio"]}}, "required": ["output", "input", "level", "name", "has_images", "description", "id", "category", "statistics"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"js-yaml": {"type": "string"}}, "required": ["js-yaml"]}, "devDependencies": {"type": "object", "properties": {"@tecfu/yup": {"type": "string"}}, "required": ["@tecfu/yup"]}}, "required": ["name", "version", "description", "main", "scripts", "author", "license", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "yup-to-swagger", "version" : "0.0.5", "description" : "Convert your Yup schema to a Swagger schema", "main" : "src/main.js", "scripts" : {"test" : "echo \"Error: no test specified\" && exit 1"}, "author" : "tecfu <help@tecfu.com>", "license" : "MIT", "dependencies" : {"js-yaml" : "^3.13.1"}, "devDependencies" : {"@tecfu/yup" : "^0.27.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"}}, "required": ["test"]}, "author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"js-yaml": {"type": "string"}}, "required": ["js-yaml"]}, "devDependencies": {"type": "object", "properties": {"@tecfu/yup": {"type": "string"}}, "required": ["@tecfu/yup"]}}, "required": ["name", "version", "description", "main", "scripts", "author", "license", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"h": {"type": "string"}, "c": {"type": "object", "properties": {"app": {"type": "boolean"}}, "required": ["app"]}}, "required": ["h", "c"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"h" : "e247d1cb63dd069ff766", "c" : {"app" : true}}
json_instruct
{"type": "object", "properties": {"h": {"type": "string"}, "c": {"type": "object", "properties": {"app": {"type": "boolean"}}, "required": ["app"]}}, "required": ["h", "c"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"final seeds": {"type": "string"}, "diameter_out": {"type": "string"}, "total_seeds": {"type": "integer"}, "archive_len": {"type": "string"}, "min_members_dist": {"type": "string"}, "radius_in": {"type": "string"}, "max_members_dist": {"type": "string"}, "avg_members_dist": {"type": "string"}, "std_members_dist": {"type": "string"}, "radius_out": {"type": "string"}, "covered_seeds": {"type": "integer"}, "sparseness": {"type": "string"}, "diameter_in": {"type": "string"}}, "required": ["final seeds", "diameter_out", "total_seeds", "archive_len", "min_members_dist", "radius_in", "max_members_dist", "avg_members_dist", "std_members_dist", "radius_out", "covered_seeds", "sparseness", "diameter_in"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"final seeds" : "25", "diameter_out" : "12.662275", "total_seeds" : 100, "archive_len" : "40", "min_members_dist" : "0.751285", "radius_in" : "4.071603", "max_members_dist" : "11.690177", "avg_members_dist" : "4.5390334", "std_members_dist" : "2.6451013", "radius_out" : "5.1927004", "covered_seeds" : 25, "sparseness" : "10.34412338091777", "diameter_in" : "12.700239"}
json_instruct
{"type": "object", "properties": {"final seeds": {"type": "string"}, "diameter_out": {"type": "string"}, "total_seeds": {"type": "integer"}, "archive_len": {"type": "string"}, "min_members_dist": {"type": "string"}, "radius_in": {"type": "string"}, "max_members_dist": {"type": "string"}, "avg_members_dist": {"type": "string"}, "std_members_dist": {"type": "string"}, "radius_out": {"type": "string"}, "covered_seeds": {"type": "integer"}, "sparseness": {"type": "string"}, "diameter_in": {"type": "string"}}, "required": ["final seeds", "diameter_out", "total_seeds", "archive_len", "min_members_dist", "radius_in", "max_members_dist", "avg_members_dist", "std_members_dist", "radius_out", "covered_seeds", "sparseness", "diameter_in"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "array", "items": {"type": "array", "items": {"type": "string"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
[["PRP", "VBP", "DT", "NN", "."], ["DT", "JJ", "NN"], ["NN", "VBZ", "RB"], ["DT", "JJ", "NN", "NNS"], ["DT", "JJ", "NN"], ["RB", "RB", "JJ"], ["NN", "VBP", "NN"], ["JJ", "VBP", "NN"], ["PRP$", "NN"], ["PRP", "VBP", "PRP$", "NN"], ["WRB", "MD", "PRP", "VB", "."], ["WP", "VBZ", "RB", "."], ["IN", "DT", "NN"], ["IN", "DT", "NN", "RB"], ["JJ", "IN", "DT", "NN"], ["IN", "DT", "NN"], ["NN", "VBP", "NNS"], ["WRB", "VBP", "PRP$", "NNS"], ["WRB", "VBP"], ["PRP$", "NNS"], ["NN", "VBD", "VBN"], ["VBP", "NN"], ["VBP", "NN"]]
json_instruct
{"type": "array", "items": {"type": "array", "items": {"type": "string"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"react-bootstrap.js": {"type": "string"}, "react-bootstrap.min.js": {"type": "string"}}, "required": ["react-bootstrap.js", "react-bootstrap.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"react-bootstrap.js" : "sha512-WUVLXvJHYfdkVhRMmPGZetD7yqVeCKVeGFViHVqEB/eJNavyvbeNFLwN3gpA65Ovk5n6tVc8YUs4Ltg3oOZcxw==", "react-bootstrap.min.js" : "sha512-y5/IM1tf88WP0WvoejyHRRL46lvz03PXObo0uY02Da4VTLFZXOsgkekh3/7Z4MrwNPX37QM8XNlKGIGHhusNxA=="}
json_instruct
{"type": "object", "properties": {"react-bootstrap.js": {"type": "string"}, "react-bootstrap.min.js": {"type": "string"}}, "required": ["react-bootstrap.js", "react-bootstrap.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "author": {"type": "string"}, "license": {"type": "string"}, "main": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "scripts": {"type": "object", "properties": {"build": {"type": "string"}, "prepublish": {"type": "string"}, "test": {"type": "string"}, "test:watch": {"type": "string"}, "testalt": {"type": "string"}, "clean": {"type": "string"}, "lint": {"type": "string"}}, "required": ["build", "prepublish", "test", "test:watch", "testalt", "clean", "lint"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "dependencies": {"type": "object", "properties": {}, "required": []}, "devDependencies": {"type": "object", "properties": {"babel-cli": {"type": "string"}, "babel-core": {"type": "string"}, "babel-preset-es2015": {"type": "string"}, "rimraf": {"type": "string"}, "watch": {"type": "string"}}, "required": ["babel-cli", "babel-core", "babel-preset-es2015", "rimraf", "watch"]}, "babel": {"type": "object", "properties": {"presets": {"type": "array", "items": {"type": "string"}}}, "required": ["presets"]}}, "required": ["name", "version", "description", "author", "license", "main", "repository", "bugs", "scripts", "keywords", "dependencies", "devDependencies", "babel"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "soljs", "version" : "6.0.0", "description" : "SolJS Javascript implementation of solar radiation utilities for building science", "author" : "Rafael Villar Burke <pachi@rvburke.com> (http://www.rvburke.com)", "license" : "MIT", "main" : "lib/index.js", "repository" : {"type" : "git", "url" : "git+https://github.com/pachi/soljs.git"}, "bugs" : {"url" : "https://github.com/pachi/soljs/issues"}, "scripts" : {"build" : "rimraf lib/* && babel ./src --out-dir ./lib && cp ./src/zonaD3.met ./lib", "prepublish" : "npm run build", "test" : "echo \"Testing soljs\" && node src/test.js", "test:watch" : "watch 'npm run test' ./src", "testalt" : "echo \"Testing soljsalt\" && node src/testalt.js && node src/testaltcte.js", "clean" : "rimraf lib/*", "lint" : "eslint --ignore-pattern lib/*.js --ext .js src/"}, "keywords" : ["energy", "buildings", "CTE", "energ\u00eda", "edificios", "solar", "sun"], "dependencies" : {}, "devDependencies" : {"babel-cli" : "^6.18.0", "babel-core" : "^6.21.0", "babel-preset-es2015" : "^6.18.0", "rimraf" : "^2.5.4", "watch" : "latest"}, "babel" : {"presets" : ["es2015"]}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "author": {"type": "string"}, "license": {"type": "string"}, "main": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "scripts": {"type": "object", "properties": {"build": {"type": "string"}, "prepublish": {"type": "string"}, "test": {"type": "string"}, "test:watch": {"type": "string"}, "testalt": {"type": "string"}, "clean": {"type": "string"}, "lint": {"type": "string"}}, "required": ["build", "prepublish", "test", "test:watch", "testalt", "clean", "lint"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "dependencies": {"type": "object", "properties": {}, "required": []}, "devDependencies": {"type": "object", "properties": {"babel-cli": {"type": "string"}, "babel-core": {"type": "string"}, "babel-preset-es2015": {"type": "string"}, "rimraf": {"type": "string"}, "watch": {"type": "string"}}, "required": ["babel-cli", "babel-core", "babel-preset-es2015", "rimraf", "watch"]}, "babel": {"type": "object", "properties": {"presets": {"type": "array", "items": {"type": "string"}}}, "required": ["presets"]}}, "required": ["name", "version", "description", "author", "license", "main", "repository", "bugs", "scripts", "keywords", "dependencies", "devDependencies", "babel"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"content": {"type": "string"}, "entities": {"type": "array", "items": {"type": "object", "properties": {"offset": {"type": "integer"}, "type": {"type": "string"}, "id": {"type": "integer"}, "entity": {"type": "string"}}, "required": ["offset", "type", "id", "entity"]}}, "topics": {"type": "array", "items": {"type": "object", "properties": {"topic": {"type": "string"}, "id": {"type": "integer"}}, "required": ["topic", "id"]}}, "tweet_id": {"type": "string"}}, "required": ["content", "entities", "topics", "tweet_id"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"content" : "@ChrisLeslieMP wont commit to #NATO benchmark of 2% defence spend. I will fight for it. Govs 1st duty is the safety of its ppl. #GE2015", "entities" : [{"offset" : 123, "type" : "ne", "id" : 2, "entity" : "ppl"}, {"offset" : 0, "type" : "ne", "id" : 3, "entity" : "@ChrisLeslieMP"}, {"offset" : 31, "type" : "topic keyword", "id" : 4, "entity" : "nato"}, {"offset" : 52, "type" : "topic keyword", "id" : 5, "entity" : "defence"}], "topics" : [{"topic" : "defence", "id" : 1}], "tweet_id" : "574868678929477632"}
json_instruct
{"type": "object", "properties": {"content": {"type": "string"}, "entities": {"type": "array", "items": {"type": "object", "properties": {"offset": {"type": "integer"}, "type": {"type": "string"}, "id": {"type": "integer"}, "entity": {"type": "string"}}, "required": ["offset", "type", "id", "entity"]}}, "topics": {"type": "array", "items": {"type": "object", "properties": {"topic": {"type": "string"}, "id": {"type": "integer"}}, "required": ["topic", "id"]}}, "tweet_id": {"type": "string"}}, "required": ["content", "entities", "topics", "tweet_id"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "repository": {"type": "string"}, "author": {"type": "string"}, "license": {"type": "string"}, "scripts": {"type": "object", "properties": {"dev": {"type": "string"}, "build": {"type": "string"}, "preview": {"type": "string"}}, "required": ["dev", "build", "preview"]}, "devDependencies": {"type": "object", "properties": {"prettier": {"type": "string"}, "typescript": {"type": "string"}, "vite": {"type": "string"}}, "required": ["prettier", "typescript", "vite"]}}, "required": ["name", "version", "repository", "author", "license", "scripts", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "rrwebdebug.com", "version" : "1.0.0", "repository" : "https://github.com/rrweb-io/rrwebdebug.com.git", "author" : "Justin Halsall <Juice10@users.noreply.github.com>", "license" : "MIT", "scripts" : {"dev" : "vite", "build" : "tsc && vite build", "preview" : "vite preview"}, "devDependencies" : {"prettier" : "2.6.0", "typescript" : "^4.5.4", "vite" : "^2.9.0"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "repository": {"type": "string"}, "author": {"type": "string"}, "license": {"type": "string"}, "scripts": {"type": "object", "properties": {"dev": {"type": "string"}, "build": {"type": "string"}, "preview": {"type": "string"}}, "required": ["dev", "build", "preview"]}, "devDependencies": {"type": "object", "properties": {"prettier": {"type": "string"}, "typescript": {"type": "string"}, "vite": {"type": "string"}}, "required": ["prettier", "typescript", "vite"]}}, "required": ["name", "version", "repository", "author", "license", "scripts", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"description": {"type": "string"}, "source": {"type": "string"}, "data": {"type": "array", "items": {"type": "string"}}}, "required": ["description", "source", "data"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"description" : "A list of common Spanish last names.", "source" : "https://github.com/olea/lemarios", "data" : ["Aguilar", "Alonso", "\u00c1lvarez", "Arias", "Ben\u00edtez", "Blanco", "Blesa", "Bravo", "Caballero", "Cabrera", "Calvo", "Cambil", "Campos", "Cano", "Carmona", "Carrasco", "Castillo", "Castro", "Cort\u00e9s", "Crespo", "Cruz", "Delgado", "D\u00edaz", "D\u00edez", "Dom\u00ednguez", "Dur\u00e1n", "Esteban", "Fern\u00e1ndez", "Ferrer", "Flores", "Fuentes", "Gallardo", "Gallego", "Garc\u00eda", "Garrido", "Gil", "Gim\u00e9nez", "G\u00f3mez", "Gonz\u00e1lez", "Guerrero", "Guti\u00e9rrez", "Hern\u00e1ndez", "Herrera", "Herrero", "Hidalgo", "Ib\u00e1\u00f1ez", "Iglesias", "Jim\u00e9nez", "Le\u00f3n", "L\u00f3pez", "Lorenzo", "Lozano", "Mar\u00edn", "M\u00e1rquez", "Mart\u00edn", "Mart\u00ednez", "Medina", "M\u00e9ndez", "Molina", "Montero", "Montoro", "Mora", "Morales", "Moreno", "Moya", "Mu\u00f1oz", "Navarro", "Nieto", "N\u00fa\u00f1ez", "Ortega", "Ortiz", "Parra", "Pascual", "Pastor", "Pe\u00f1a", "P\u00e9rez", "Prieto", "Ram\u00edrez", "Ramos", "Rey", "Reyes", "Rodr\u00edguez", "Rom\u00e1n", "Romero", "Rubio", "Ruiz", "S\u00e1ez", "S\u00e1nchez", "Santana", "Santiago", "Santos", "Sanz", "Serrano", "Soler", "Soto", "Su\u00e1rez", "Torres", "Vargas", "V\u00e1zquez", "Vega", "Velasco", "Vicente", "Vidal"]}
json_instruct
{"type": "object", "properties": {"description": {"type": "string"}, "source": {"type": "string"}, "data": {"type": "array", "items": {"type": "string"}}}, "required": ["description", "source", "data"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"id": {"type": "string"}, "title": {"type": "string"}, "body": {"type": "string"}, "choices": {"type": "array", "items": {"type": "string"}}, "start": {"type": "integer"}, "end": {"type": "integer"}, "snapshot": {"type": "string"}, "state": {"type": "string"}, "author": {"type": "string"}, "space": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "name"]}, "votes": {"type": "integer"}, "votes_data": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "voter": {"type": "string"}, "created": {"type": "integer"}, "choice": {"type": "integer"}, "space": {"type": "object", "properties": {"id": {"type": "string"}}, "required": ["id"]}}, "required": ["id", "voter", "created", "choice", "space"]}}}, "required": ["id", "title", "body", "choices", "start", "end", "snapshot", "state", "author", "space", "votes", "votes_data"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : "0x0b430ffcb378752489b1902357b0d7a2d260eec134ae6a965386bf98b29e7560", "title" : "\u51b2\u8d77\u6765\uff0cxdm", "body" : "", "choices" : ["hold", "holder"], "start" : 1635940200, "end" : 1635998400, "snapshot" : "12331596", "state" : "closed", "author" : "0x177214A2ccf770D8C5DA9731E09aAe9c42681906", "space" : {"id" : "huwacoin.eth", "name" : "HUWA-DAO"}, "votes" : 2, "votes_data" : [{"id" : "0x9f31b57604574050bbc894046d3bac2fb4cefe443c2b5acddac32a4cb43bbb7a", "voter" : "0x279630304EcA93C692E0F26870Def510439A0C5B", "created" : 1635943827, "choice" : 1, "space" : {"id" : "huwacoin.eth"}}, {"id" : "0xb94c544848485f60ea8e2873f0d347af72e61e927d60516e3983d280024f0ce6", "voter" : "0xF6c719DC30FD8a3b8f23D075DDc4e4B00fA2736D", "created" : 1635943685, "choice" : 1, "space" : {"id" : "huwacoin.eth"}}]}
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "title": {"type": "string"}, "body": {"type": "string"}, "choices": {"type": "array", "items": {"type": "string"}}, "start": {"type": "integer"}, "end": {"type": "integer"}, "snapshot": {"type": "string"}, "state": {"type": "string"}, "author": {"type": "string"}, "space": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "name"]}, "votes": {"type": "integer"}, "votes_data": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "voter": {"type": "string"}, "created": {"type": "integer"}, "choice": {"type": "integer"}, "space": {"type": "object", "properties": {"id": {"type": "string"}}, "required": ["id"]}}, "required": ["id", "voter", "created", "choice", "space"]}}}, "required": ["id", "title", "body", "choices", "start", "end", "snapshot", "state", "author", "space", "votes", "votes_data"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"cSpell.words": {"type": "array", "items": {"type": "string"}}, "workbench.colorCustomizations": {"type": "object", "properties": {"activityBar.activeBackground": {"type": "string"}, "activityBar.activeBorder": {"type": "string"}, "activityBar.background": {"type": "string"}, "activityBar.foreground": {"type": "string"}, "activityBar.inactiveForeground": {"type": "string"}, "activityBarBadge.background": {"type": "string"}, "activityBarBadge.foreground": {"type": "string"}, "editorGroup.border": {"type": "string"}, "panel.border": {"type": "string"}, "sash.hoverBorder": {"type": "string"}, "sideBar.border": {"type": "string"}, "statusBar.background": {"type": "string"}, "statusBar.foreground": {"type": "string"}, "statusBarItem.hoverBackground": {"type": "string"}, "statusBarItem.remoteBackground": {"type": "string"}, "statusBarItem.remoteForeground": {"type": "string"}, "titleBar.activeBackground": {"type": "string"}, "titleBar.activeForeground": {"type": "string"}, "titleBar.inactiveBackground": {"type": "string"}, "titleBar.inactiveForeground": {"type": "string"}}, "required": ["activityBar.activeBackground", "activityBar.activeBorder", "activityBar.background", "activityBar.foreground", "activityBar.inactiveForeground", "activityBarBadge.background", "activityBarBadge.foreground", "editorGroup.border", "panel.border", "sash.hoverBorder", "sideBar.border", "statusBar.background", "statusBar.foreground", "statusBarItem.hoverBackground", "statusBarItem.remoteBackground", "statusBarItem.remoteForeground", "titleBar.activeBackground", "titleBar.activeForeground", "titleBar.inactiveBackground", "titleBar.inactiveForeground"]}, "peacock.color": {"type": "string"}}, "required": ["cSpell.words", "workbench.colorCustomizations", "peacock.color"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"cSpell.words" : ["academicons", "allflare", "anchorjs", "ASAS", "asassn", "ASPCAP", "Balmer", "CNAME", "darkmode", "disqus", "Dtwo", "flareprop", "fontawesome", "galpos", "genderq", "Gennady", "jemoji", "jquery", "katex", "Kowalski", "Lacertae", "lineheights", "lineratio", "linkedin", "LSST", "mansory", "mathjax", "nojekyll", "orcid", "panelbear", "Paudel", "premap", "quora", "Rodriguz", "Romy", "rzww", "smallcaps", "Thinkshop", "uvloops", "UW's"], "workbench.colorCustomizations" : {"activityBar.activeBackground" : "#6f65e0", "activityBar.activeBorder" : "#85231b", "activityBar.background" : "#6f65e0", "activityBar.foreground" : "#e7e7e7", "activityBar.inactiveForeground" : "#e7e7e799", "activityBarBadge.background" : "#85231b", "activityBarBadge.foreground" : "#e7e7e7", "editorGroup.border" : "#6f65e0", "panel.border" : "#6f65e0", "sash.hoverBorder" : "#6f65e0", "sideBar.border" : "#6f65e0", "statusBar.background" : "#473ad8", "statusBar.foreground" : "#e7e7e7", "statusBarItem.hoverBackground" : "#6f65e0", "statusBarItem.remoteBackground" : "#473ad8", "statusBarItem.remoteForeground" : "#e7e7e7", "titleBar.activeBackground" : "#473ad8", "titleBar.activeForeground" : "#e7e7e7", "titleBar.inactiveBackground" : "#473ad899", "titleBar.inactiveForeground" : "#e7e7e799"}, "peacock.color" : "#473ad8"}
json_instruct
{"type": "object", "properties": {"cSpell.words": {"type": "array", "items": {"type": "string"}}, "workbench.colorCustomizations": {"type": "object", "properties": {"activityBar.activeBackground": {"type": "string"}, "activityBar.activeBorder": {"type": "string"}, "activityBar.background": {"type": "string"}, "activityBar.foreground": {"type": "string"}, "activityBar.inactiveForeground": {"type": "string"}, "activityBarBadge.background": {"type": "string"}, "activityBarBadge.foreground": {"type": "string"}, "editorGroup.border": {"type": "string"}, "panel.border": {"type": "string"}, "sash.hoverBorder": {"type": "string"}, "sideBar.border": {"type": "string"}, "statusBar.background": {"type": "string"}, "statusBar.foreground": {"type": "string"}, "statusBarItem.hoverBackground": {"type": "string"}, "statusBarItem.remoteBackground": {"type": "string"}, "statusBarItem.remoteForeground": {"type": "string"}, "titleBar.activeBackground": {"type": "string"}, "titleBar.activeForeground": {"type": "string"}, "titleBar.inactiveBackground": {"type": "string"}, "titleBar.inactiveForeground": {"type": "string"}}, "required": ["activityBar.activeBackground", "activityBar.activeBorder", "activityBar.background", "activityBar.foreground", "activityBar.inactiveForeground", "activityBarBadge.background", "activityBarBadge.foreground", "editorGroup.border", "panel.border", "sash.hoverBorder", "sideBar.border", "statusBar.background", "statusBar.foreground", "statusBarItem.hoverBackground", "statusBarItem.remoteBackground", "statusBarItem.remoteForeground", "titleBar.activeBackground", "titleBar.activeForeground", "titleBar.inactiveBackground", "titleBar.inactiveForeground"]}, "peacock.color": {"type": "string"}}, "required": ["cSpell.words", "workbench.colorCustomizations", "peacock.color"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"preset": {"type": "object", "properties": {"name": {"type": "string"}, "statusBarQuery": {"type": "string"}, "statusBarAltQuery": {"type": "string"}}, "required": ["name", "statusBarQuery", "statusBarAltQuery"]}, "statusBarQuery": {"type": "string"}, "statusBarAltQuery": {"type": "string"}, "countComments": {"type": "boolean"}, "collectStats": {"type": "boolean"}}, "required": ["preset", "statusBarQuery", "statusBarAltQuery", "countComments", "collectStats"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"preset" : {"name" : "custom", "statusBarQuery" : "", "statusBarAltQuery" : ""}, "statusBarQuery" : "{word_count} words {character_count} characters {words_today} Today ", "statusBarAltQuery" : "{file_count} files {total_word_count} words {total_sentence_count} Sentences", "countComments" : false, "collectStats" : true}
json_instruct
{"type": "object", "properties": {"preset": {"type": "object", "properties": {"name": {"type": "string"}, "statusBarQuery": {"type": "string"}, "statusBarAltQuery": {"type": "string"}}, "required": ["name", "statusBarQuery", "statusBarAltQuery"]}, "statusBarQuery": {"type": "string"}, "statusBarAltQuery": {"type": "string"}, "countComments": {"type": "boolean"}, "collectStats": {"type": "boolean"}}, "required": ["preset", "statusBarQuery", "statusBarAltQuery", "countComments", "collectStats"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"directions": {"type": "array", "items": {"type": "string"}}, "ingredients": {"type": "array", "items": {"type": "string"}}, "language": {"type": "string"}, "source": {"type": "string"}, "tags": {"type": "array", "items": {}}, "title": {"type": "string"}, "url": {"type": "string"}}, "required": ["directions", "ingredients", "language", "source", "tags", "title", "url"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"directions" : ["Preheat oven to 425 degrees F (220 degrees C). Grease a baking sheet.", "Place carrots in a large bowl; add cornstarch and toss, using your hands, until evenly coated. Sprinkle coconut sugar, cayenne pepper, paprika, garlic powder, onion powder, black pepper, oregano, and thyme over carrots. Drizzle olive oil over seasoned carrots and toss to coat. Spread carrots onto the prepared baking sheet.", "Bake in the preheated oven for 15 minutes; flip and continue baking until lightly browned and crispy, 10 to 15 minutes more."], "ingredients" : ["4 large rainbow carrots, cut into 1/4-inch-thick strips, or more to taste", "1 tablespoon cornstarch", "2 teaspoons coconut sugar", "1 pinch cayenne pepper, or more to taste", "1 pinch paprika, or more to taste", "1 pinch garlic powder, or more to taste", "1 pinch onion powder, or more to taste", "1 pinch ground black pepper, or more to taste", "1 pinch dried oregano, or more to taste", "1 pinch dried thyme, or more to taste", "2 tablespoons olive oil"], "language" : "en-US", "source" : "allrecipes.com", "tags" : [], "title" : "Cajun Rainbow Carrot Fries", "url" : "http://allrecipes.com/recipe/244241/cajun-rainbow-carrot-fries/"}
json_instruct
{"type": "object", "properties": {"directions": {"type": "array", "items": {"type": "string"}}, "ingredients": {"type": "array", "items": {"type": "string"}}, "language": {"type": "string"}, "source": {"type": "string"}, "tags": {"type": "array", "items": {}}, "title": {"type": "string"}, "url": {"type": "string"}}, "required": ["directions", "ingredients", "language", "source", "tags", "title", "url"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "dt": {"type": "integer"}, "ar": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}}, "required": ["id", "name"]}, "al": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "picUrl": {"type": "string"}}, "required": ["id", "name", "picUrl"]}}, "required": ["id", "name", "dt", "ar", "al"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"id" : 4444665, "name" : "Milk-A-*****", "dt" : 220440, "ar" : {"id" : 105882, "name" : "11/5"}, "al" : {"id" : 448472, "name" : "A-1 Yola", "picUrl" : "https://p2.music.126.net/mmJHMJ_T-gBIYFtnP5UtKg==/109951163787176433.jpg"}}, {"id" : 1348853154, "name" : "Upset", "dt" : 282000, "ar" : {"id" : 13898903, "name" : "Groove Chronicles (Noodles)"}, "al" : {"id" : 75722627, "name" : "Upset", "picUrl" : "https://p1.music.126.net/wxd28z_WP9Y3RHj1yz-l3w==/109951165867255619.jpg"}}, {"id" : 1320122206, "name" : "\ud589\ubcf5\ud55c \ub208\ubb3c (DJ \ub9c8\uc2a4\ucf54\ud0c0 Mix) ", "dt" : 277029, "ar" : {"id" : 124517, "name" : "PDBlue"}, "al" : {"id" : 74024224, "name" : "\ub108\ubfd0\uc774\uc57c", "picUrl" : "https://p2.music.126.net/LncGTYRyyOpM6az80NYDdw==/109951163622478922.jpg"}}, {"id" : 1321916372, "name" : "For A Moment (Keys Snow Remix [EOK Edit])", "dt" : 398193, "ar" : {"id" : 30556098, "name" : "Pakjones"}, "al" : {"id" : 74183886, "name" : "A Decade of Keys Snow (Remixes)", "picUrl" : "https://p2.music.126.net/IMopCJHMRWstBQGA-qUJaQ==/109951163638413999.jpg"}}, {"id" : 1344102069, "name" : "Nia's Interlude (feat. Nia)", "dt" : 175073, "ar" : {"id" : 31413310, "name" : "Good Fella Uno"}, "al" : {"id" : 75443155, "name" : "The Perfect Storm", "picUrl" : "https://p2.music.126.net/5jWZTWlDMo1DRJO1n84pyw==/109951163905147823.jpg"}}, {"id" : 1317494070, "name" : "\ubb38 (Moon)", "dt" : 203058, "ar" : {"id" : 30107662, "name" : "NIA"}, "al" : {"id" : 73876739, "name" : "\ubb38 (Moon)", "picUrl" : "https://p1.music.126.net/rjPptrgt7iJR1Yq1-qbXmA==/109951163599477325.jpg"}}, {"id" : 1317494063, "name" : "\uc794\uc0c1", "dt" : 203859, "ar" : {"id" : 30107662, "name" : "NIA"}, "al" : {"id" : 73876737, "name" : "Suppressed Things", "picUrl" : "https://p1.music.126.net/iEwv54OF5KJaOgDiRvAF1A==/109951163599471432.jpg"}}, {"id" : 1317494064, "name" : "Train", "dt" : 207516, "ar" : {"id" : 30107662, "name" : "NIA"}, "al" : {"id" : 73876737, "name" : "Suppressed Things", "picUrl" : "https://p2.music.126.net/iEwv54OF5KJaOgDiRvAF1A==/109951163599471432.jpg"}}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "dt": {"type": "integer"}, "ar": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}}, "required": ["id", "name"]}, "al": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "picUrl": {"type": "string"}}, "required": ["id", "name", "picUrl"]}}, "required": ["id", "name", "dt", "ar", "al"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "null"}}, "required": ["contract", "tool", "start", "end", "duration", "analysis"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"contract" : "0x974d9983c9d9a23cf3bf5665090f277abf5e0537", "tool" : "securify", "start" : 1563266000.089052, "end" : 1563266003.9476295, "duration" : 3.8585774898529053, "analysis" : null}
json_instruct
{"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "null"}}, "required": ["contract", "tool", "start", "end", "duration", "analysis"], "$schema": "http://json-schema.org/draft-07/schema#"}