input
stringlengths
159
2.05k
output
stringlengths
5
10.3k
task
stringclasses
1 value
schema
stringlengths
100
1.99k
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"author": {"type": "string"}, "hero": {"type": "string"}, "Title": {"type": "string"}, "Items": {"type": "object", "properties": {"startingItems": {"type": "array", "items": {"type": "string"}}, "earlyGame": {"type": "array", "items": {"type": "string"}}, "coreItems": {"type": "array", "items": {"type": "string"}}, "luxury": {"type": "array", "items": {"type": "string"}}}, "required": ["startingItems", "earlyGame", "coreItems", "luxury"]}}, "required": ["author", "hero", "Title", "Items"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"author" : "Valve", "hero" : "npc_dota_hero_magnataur", "Title" : "Recommended items for Magnus", "Items" : {"startingItems" : ["tango", "flask", "clarity", "branches", "stout_shield"], "earlyGame" : ["boots", "magic_wand", "bracer", "bottle"], "coreItems" : ["power_treads", "blink", "ancient_janggo", "tpscroll"], "luxury" : ["bfury", "greater_crit", "heart", "assault", "mask_of_madness", "refresher"]}}
json_instruct
{"type": "object", "properties": {"author": {"type": "string"}, "hero": {"type": "string"}, "Title": {"type": "string"}, "Items": {"type": "object", "properties": {"startingItems": {"type": "array", "items": {"type": "string"}}, "earlyGame": {"type": "array", "items": {"type": "string"}}, "coreItems": {"type": "array", "items": {"type": "string"}}, "luxury": {"type": "array", "items": {"type": "string"}}}, "required": ["startingItems", "earlyGame", "coreItems", "luxury"]}}, "required": ["author", "hero", "Title", "Items"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "array", "items": {"type": "object", "properties": {"filesystem": {"type": "string"}, "mount_point": {"type": "string"}, "options": {"type": "array", "items": {"type": "string"}}}, "required": ["filesystem", "mount_point", "options"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"filesystem" : "/dev/disk1s1", "mount_point" : "/", "options" : ["apfs", "local", "journaled"]}, {"filesystem" : "devfs", "mount_point" : "/dev", "options" : ["devfs", "local", "nobrowse"]}, {"filesystem" : "/dev/disk1s4", "mount_point" : "/private/var/vm", "options" : ["apfs", "local", "noexec", "journaled", "noatime", "nobrowse"]}, {"filesystem" : "map -hosts", "mount_point" : "/net", "options" : ["autofs", "nosuid", "automounted", "nobrowse"]}, {"filesystem" : "map auto_home", "mount_point" : "/home", "options" : ["autofs", "automounted", "nobrowse"]}, {"filesystem" : "/dev/disk1s3", "mount_point" : "/Volumes/Recovery", "options" : ["apfs", "local", "journaled", "nobrowse"]}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"filesystem": {"type": "string"}, "mount_point": {"type": "string"}, "options": {"type": "array", "items": {"type": "string"}}}, "required": ["filesystem", "mount_point", "options"]}, "$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"}, "private": {"type": "boolean"}, "version": {"type": "string"}, "description": {"type": "string"}, "repository": {"type": "string"}, "author": {"type": "string"}, "license": {"type": "string"}, "scripts": {"type": "object", "properties": {"start:dev": {"type": "string"}, "start:test": {"type": "string"}}, "required": ["start:dev", "start:test"]}, "devDependencies": {"type": "object", "properties": {"@scalprum/core": {"type": "string"}, "@scalprum/react-core": {"type": "string"}, "@types/history": {"type": "string"}, "@types/react": {"type": "string"}, "@types/react-dom": {"type": "string"}, "@types/react-router-dom": {"type": "string"}, "html-webpack-plugin": {"type": "string"}, "webpack": {"type": "string"}, "webpack-cli": {"type": "string"}, "webpack-dev-server": {"type": "string"}}, "required": ["@scalprum/core", "@scalprum/react-core", "@types/history", "@types/react", "@types/react-dom", "@types/react-router-dom", "html-webpack-plugin", "webpack", "webpack-cli", "webpack-dev-server"]}, "dependencies": {"type": "object", "properties": {"history": {"type": "string"}, "react": {"type": "string"}, "react-dom": {"type": "string"}, "react-router-dom": {"type": "string"}}, "required": ["history", "react", "react-dom", "react-router-dom"]}}, "required": ["name", "private", "version", "description", "repository", "author", "license", "scripts", "devDependencies", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "my-webpack-project", "private" : true, "version" : "1.0.0", "description" : "My webpack project", "repository" : "https://github.com/scalprum/scaffloding.git", "author" : "Martin Marosi <[email protected]>", "license" : "Apache-2.0", "scripts" : {"start:dev" : "webpack-dev-server --hot --open", "start:test" : "webpack-dev-server"}, "devDependencies" : {"@scalprum/core" : "*", "@scalprum/react-core" : "*", "@types/history" : "^4.7.9", "@types/react" : "^17.0.31", "@types/react-dom" : "^17.0.10", "@types/react-router-dom" : "^5.3.1", "html-webpack-plugin" : "^5.5.0", "webpack" : "^5.61.0", "webpack-cli" : "^4.9.1", "webpack-dev-server" : "^4.4.0"}, "dependencies" : {"history" : "^4.0.0", "react" : "^17.0.1", "react-dom" : "^17.0.1", "react-router-dom" : "^5.2.0"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "private": {"type": "boolean"}, "version": {"type": "string"}, "description": {"type": "string"}, "repository": {"type": "string"}, "author": {"type": "string"}, "license": {"type": "string"}, "scripts": {"type": "object", "properties": {"start:dev": {"type": "string"}, "start:test": {"type": "string"}}, "required": ["start:dev", "start:test"]}, "devDependencies": {"type": "object", "properties": {"@scalprum/core": {"type": "string"}, "@scalprum/react-core": {"type": "string"}, "@types/history": {"type": "string"}, "@types/react": {"type": "string"}, "@types/react-dom": {"type": "string"}, "@types/react-router-dom": {"type": "string"}, "html-webpack-plugin": {"type": "string"}, "webpack": {"type": "string"}, "webpack-cli": {"type": "string"}, "webpack-dev-server": {"type": "string"}}, "required": ["@scalprum/core", "@scalprum/react-core", "@types/history", "@types/react", "@types/react-dom", "@types/react-router-dom", "html-webpack-plugin", "webpack", "webpack-cli", "webpack-dev-server"]}, "dependencies": {"type": "object", "properties": {"history": {"type": "string"}, "react": {"type": "string"}, "react-dom": {"type": "string"}, "react-router-dom": {"type": "string"}}, "required": ["history", "react", "react-dom", "react-router-dom"]}}, "required": ["name", "private", "version", "description", "repository", "author", "license", "scripts", "devDependencies", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"id": {"type": "integer"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"src:alt_label": {"type": "string"}, "src:geom": {"type": "string"}, "wof:geomhash": {"type": "string"}, "wof:id": {"type": "integer"}, "wof:repo": {"type": "string"}}, "required": ["src:alt_label", "src:geom", "wof:geomhash", "wof:id", "wof:repo"]}, "bbox": {"type": "array", "items": {"type": "number"}}, "geometry": {"type": "object", "properties": {"coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}, "type": {"type": "string"}}, "required": ["coordinates", "type"]}}, "required": ["id", "type", "properties", "bbox", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : 85919051, "type" : "Feature", "properties" : {"src:alt_label" : "quattroshapes", "src:geom" : "quattroshapes", "wof:geomhash" : "b74aab2574d71bba5e05640c4930ed63", "wof:id" : 85919051, "wof:repo" : "whosonfirst-data-admin-jp"}, "bbox" : [132.31208251950028, 34.34570365720047, 132.33168887152158, 34.35879219637481], "geometry" : {"coordinates" : [[[132.33168887152158, 34.34754063217368], [132.33166864302927, 34.3475572332683], [132.3313213148253, 34.34641224562645], [132.33094256642056, 34.34570365720047], [132.31322247257958, 34.34570365720047], [132.31284372417502, 34.34641224562645], [132.3122746666961, 34.34828817673007], [132.31208251950028, 34.35023907995019], [132.3122746666961, 34.35218998317022], [132.31284372417502, 34.35406591427366], [132.3134250677142, 34.35515353153774], [132.31338854924223, 34.35515712829324], [132.31658935500036, 34.35664838287308], [132.32425843484816, 34.35879219637481], [132.33075963614306, 34.35091728981659], [132.33168887152158, 34.34754063217368]]], "type" : "Polygon"}}
json_instruct
{"type": "object", "properties": {"id": {"type": "integer"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"src:alt_label": {"type": "string"}, "src:geom": {"type": "string"}, "wof:geomhash": {"type": "string"}, "wof:id": {"type": "integer"}, "wof:repo": {"type": "string"}}, "required": ["src:alt_label", "src:geom", "wof:geomhash", "wof:id", "wof:repo"]}, "bbox": {"type": "array", "items": {"type": "number"}}, "geometry": {"type": "object", "properties": {"coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}, "type": {"type": "string"}}, "required": ["coordinates", "type"]}}, "required": ["id", "type", "properties", "bbox", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "repository": {"type": "string"}, "author": {"type": "string"}, "license": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"babel-core": {"type": "string"}, "babel-eslint": {"type": "string"}, "babel-preset-latest": {"type": "string"}, "eslint": {"type": "string"}, "eslint-config-standard": {"type": "string"}, "eslint-plugin-promise": {"type": "string"}, "eslint-plugin-standard": {"type": "string"}, "yarn": {"type": "string"}}, "required": ["babel-core", "babel-eslint", "babel-preset-latest", "eslint", "eslint-config-standard", "eslint-plugin-promise", "eslint-plugin-standard", "yarn"]}, "dependencies": {"type": "object", "properties": {"jquery": {"type": "string"}}, "required": ["jquery"]}}, "required": ["name", "version", "description", "main", "repository", "author", "license", "devDependencies", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "Voat-Enhancement-Suite", "version" : "1.0.0", "description" : "Like Reddit Enhancement Suite, but with more goats.", "main" : "index.js", "repository" : "[email protected]:jayands/Voat-Enhancement-Suite.git", "author" : "Jonathan Sifuentes <[email protected]>", "license" : "WTFPL", "devDependencies" : {"babel-core" : "^6.18.2", "babel-eslint" : "^7.1.1", "babel-preset-latest" : "^6.16.0", "eslint" : "^3.11.1", "eslint-config-standard" : "^6.2.1", "eslint-plugin-promise" : "^3.4.0", "eslint-plugin-standard" : "^2.0.1", "yarn" : "^0.17.10"}, "dependencies" : {"jquery" : "^3.1.1"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "repository": {"type": "string"}, "author": {"type": "string"}, "license": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"babel-core": {"type": "string"}, "babel-eslint": {"type": "string"}, "babel-preset-latest": {"type": "string"}, "eslint": {"type": "string"}, "eslint-config-standard": {"type": "string"}, "eslint-plugin-promise": {"type": "string"}, "eslint-plugin-standard": {"type": "string"}, "yarn": {"type": "string"}}, "required": ["babel-core", "babel-eslint", "babel-preset-latest", "eslint", "eslint-config-standard", "eslint-plugin-promise", "eslint-plugin-standard", "yarn"]}, "dependencies": {"type": "object", "properties": {"jquery": {"type": "string"}}, "required": ["jquery"]}}, "required": ["name", "version", "description", "main", "repository", "author", "license", "devDependencies", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"}
["ne-admin", "ne-gulp", "ne-render"]
json_instruct
{"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"directions": {"type": "array", "items": {"type": "string"}}, "ingredients": {"type": "array", "items": {"type": "string"}}, "language": {"type": "string"}, "source": {"type": "string"}, "tags": {"type": "array", "items": {"type": "string"}}, "title": {"type": "string"}, "url": {"type": "string"}}, "required": ["directions", "ingredients", "language", "source", "tags", "title", "url"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"directions" : ["Bring medium saucepan of water to boil. Add tomatoes and blanch 30 seconds. Drain. Transfer to medium bowl. Cover with cold water; cool. Peel tomatoes. Cut in half; squeeze out juices. Chop tomatoes; transfer to bowl. Add herbs, shallot, vinegar and 1 tablespoon oil. Season with salt and pepper. (Can be made 1 hour ahead. Let stand at room temperature.)", "Prepare barbeque (medium-high heat) or preheat broiler. Brush fish with oil. Sprinkle with generous amount of peppercorns and salt. Grill until just cooked through, about 4 minutes per side. Transfer fish to plates. Spoon tomato salsa over and serve."], "ingredients" : ["4 large fresh plum tomatoes", "1/4 cup chopped fresh basil", "2 tablespoons chopped fresh marjoram", "1 shallot, minced", "2 tablespoons balsamic vinegar", "1 tablespoon olive oil", "4 6-ounce swordfish steaks (3/4 to 1 inch thick)", "Olive oil", "Cracked black peppercorns"], "language" : "en-US", "source" : "www.epicurious.com", "tags" : ["Fish", "Tomato", "Broil", "Low/No Sugar", "Backyard BBQ", "Basil", "Summer", "Grill", "Grill/Barbecue", "Swordfish"], "title" : "Grilled Swordfish with Fresh Tomato-Herb Salsa", "url" : "http://www.epicurious.com/recipes/food/views/grilled-swordfish-with-fresh-tomato-herb-salsa-2127"}
json_instruct
{"type": "object", "properties": {"directions": {"type": "array", "items": {"type": "string"}}, "ingredients": {"type": "array", "items": {"type": "string"}}, "language": {"type": "string"}, "source": {"type": "string"}, "tags": {"type": "array", "items": {"type": "string"}}, "title": {"type": "string"}, "url": {"type": "string"}}, "required": ["directions", "ingredients", "language", "source", "tags", "title", "url"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"title": {"type": "string"}, "gadget": {"type": "string"}}, "required": ["title", "gadget"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"title" : "Missing Gadget XML", "gadget" : "gadget.xml"}
json_instruct
{"type": "object", "properties": {"title": {"type": "string"}, "gadget": {"type": "string"}}, "required": ["title", "gadget"], "$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": {"test": {"type": "string"}}, "required": ["test"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"bindings": {"type": "string"}, "node-addon-api": {"type": "string"}}, "required": ["bindings", "node-addon-api"]}, "devDependencies": {"type": "object", "properties": {"@types/node": {"type": "string"}}, "required": ["@types/node"]}}, "required": ["name", "version", "description", "main", "scripts", "keywords", "author", "license", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "mips-node", "version" : "1.0.4", "description" : "MIPS-1 Emulator (C++) as NPM module", "main" : "index.js", "scripts" : {"test" : "echo \"Error: no test specified\" && exit 1"}, "keywords" : ["mips", "parser", "node"], "author" : "lhl2617", "license" : "MIT", "dependencies" : {"bindings" : "^1.5.0", "node-addon-api" : "^2.0.0"}, "devDependencies" : {"@types/node" : "^13.11.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"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"bindings": {"type": "string"}, "node-addon-api": {"type": "string"}}, "required": ["bindings", "node-addon-api"]}, "devDependencies": {"type": "object", "properties": {"@types/node": {"type": "string"}}, "required": ["@types/node"]}}, "required": ["name", "version", "description", "main", "scripts", "keywords", "author", "license", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"id": {"type": "string"}}, "required": ["id"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : "437e536d28e0aa2598c08fb65266d2e129f8ac0e"}
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}}, "required": ["id"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"t": {"type": "string"}, "h": {"type": "array", "items": {"type": "object", "properties": {"d": {"type": "array", "items": {"type": "object", "properties": {"f": {"type": "string"}, "e": {"type": "array", "items": {"type": "string"}}}, "required": ["f", "e"]}}}, "required": ["d"]}}, "stem": {"type": "string"}}, "required": ["t", "h", "stem"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"t" : "mi'intelan", "h" : [{"d" : [{"f" : "\u628a\u2026\u618e\u6068\u4e86\u3001\u6028\u6068\u4e86\u3001\u4ec7\u8996\u4e86\u3002", "e" : ["\ufff9`Mi'intel~`a~`n~`no~ `tamdamdaw~ `kora~ `tatiihay~ `a~ `fafahiyan~.\ufffa\ufffb\u90a3\u500b\u58de\u5973\u4eba\u62db\u4eba\u6068\u3002"]}, {"f" : "\u6307\u6240\u618e\u6068\u7684\u3001\u6028\u6068\u7684\u3001\u4ec7\u8996\u7684\uff08\u5c0d\u8c61\uff09\u3002", "e" : ["\ufff9`Mi'intel~`a~`n~ `a~ `tamdaw~.\ufffa\ufffb\u6240\u618e\u6068\u7684\u4eba\u3002"], "s" : ["`mi'intexan~"]}]}], "stem" : "'intel"}
json_instruct
{"type": "object", "properties": {"t": {"type": "string"}, "h": {"type": "array", "items": {"type": "object", "properties": {"d": {"type": "array", "items": {"type": "object", "properties": {"f": {"type": "string"}, "e": {"type": "array", "items": {"type": "string"}}}, "required": ["f", "e"]}}}, "required": ["d"]}}, "stem": {"type": "string"}}, "required": ["t", "h", "stem"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "author": {"type": "string"}, "license": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"eslint": {"type": "string"}, "eslint-config-airbnb-base": {"type": "string"}, "eslint-config-prettier": {"type": "string"}, "eslint-plugin-import": {"type": "string"}, "jest": {"type": "string"}, "prettier": {"type": "string"}}, "required": ["eslint", "eslint-config-airbnb-base", "eslint-config-prettier", "eslint-plugin-import", "jest", "prettier"]}, "dependencies": {"type": "object", "properties": {"line-reader": {"type": "string"}}, "required": ["line-reader"]}}, "required": ["name", "version", "description", "scripts", "author", "license", "devDependencies", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "advent-of-code-2020", "version" : "0.0.1", "description" : "Advent of Code 2020", "scripts" : {"test" : "jest"}, "author" : "John Hobbs <[email protected]>", "license" : "MIT", "devDependencies" : {"eslint" : "^7.14.0", "eslint-config-airbnb-base" : "^14.2.1", "eslint-config-prettier" : "^7.0.0", "eslint-plugin-import" : "^2.22.1", "jest" : "^26.6.3", "prettier" : "2.2.1"}, "dependencies" : {"line-reader" : "^0.4.0"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "author": {"type": "string"}, "license": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"eslint": {"type": "string"}, "eslint-config-airbnb-base": {"type": "string"}, "eslint-config-prettier": {"type": "string"}, "eslint-plugin-import": {"type": "string"}, "jest": {"type": "string"}, "prettier": {"type": "string"}}, "required": ["eslint", "eslint-config-airbnb-base", "eslint-config-prettier", "eslint-plugin-import", "jest", "prettier"]}, "dependencies": {"type": "object", "properties": {"line-reader": {"type": "string"}}, "required": ["line-reader"]}}, "required": ["name", "version", "description", "scripts", "author", "license", "devDependencies", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"routes": {"type": "array", "items": {"type": "object", "properties": {"path": {"type": "string"}, "method": {"type": "string"}, "handler": {"type": "object", "properties": {"type": {"type": "string"}, "message": {"type": "string"}, "code": {"type": "integer"}}, "required": ["type", "message", "code"]}}, "required": ["path", "method", "handler"]}}}, "required": ["routes"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"routes" : [{"path" : "/myexample", "method" : "GET", "handler" : {"type" : "text", "message" : "hello everyone", "code" : 200}}, {"path" : "/test/testing/tested", "method" : "GET", "handler" : {"type" : "text", "message" : "world not found", "code" : 404}}, {"path" : "/test/testing/testingAgain", "method" : "GET", "handler" : {"type" : "text", "message" : "Second try!", "code" : 200}}]}
json_instruct
{"type": "object", "properties": {"routes": {"type": "array", "items": {"type": "object", "properties": {"path": {"type": "string"}, "method": {"type": "string"}, "handler": {"type": "object", "properties": {"type": {"type": "string"}, "message": {"type": "string"}, "code": {"type": "integer"}}, "required": ["type", "message", "code"]}}, "required": ["path", "method", "handler"]}}}, "required": ["routes"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"columns": {"type": "array", "items": {"type": "string"}}, "data": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}}, "required": ["columns", "data"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"columns" : ["goal", "guesses"], "data" : [["ACHAR", "0: ABYES 1: ADOZE 2: ACERS 3: ACTIN 4: ACINI 5: ACTON "]]}
json_instruct
{"type": "object", "properties": {"columns": {"type": "array", "items": {"type": "string"}}, "data": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}}, "required": ["columns", "data"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "array", "items": {"type": "object", "properties": {"namaKab": {"type": "string"}, "originalFilename": {"type": "string"}, "namaPartai": {"type": "string"}, "id": {"type": "integer"}, "noUrut": {"type": "integer"}, "nama": {"type": "string"}, "stringJenisKelamin": {"type": "string"}}, "required": ["namaKab", "originalFilename", "namaPartai", "id", "noUrut", "nama", "stringJenisKelamin"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"namaKab" : "MANGGARAI", "originalFilename" : "ADRIANUS GARU.jpg", "namaPartai" : "Partai Hati Nurani Rakyat", "id" : 186679, "noUrut" : 1, "nama" : "ADRIANUS GARU, S.E., M.Si", "stringJenisKelamin" : "Laki-Laki"}, {"namaKab" : "JAKARTA SELATAN", "originalFilename" : "PETRUS SALENTINUS.jpg", "namaPartai" : "Partai Hati Nurani Rakyat", "id" : 57864, "noUrut" : 2, "nama" : "PETRUS SELESTINUS, S.H", "stringJenisKelamin" : "Laki-Laki"}, {"namaKab" : "JAKARTA TIMUR", "originalFilename" : "ELISABETH MARIA MERSIN.jpg", "namaPartai" : "Partai Hati Nurani Rakyat", "id" : 147104, "noUrut" : 3, "nama" : "ELISABETH MARIA MERSIN", "stringJenisKelamin" : "Perempuan"}, {"namaKab" : "SIKKA", "originalFilename" : "PAULUS MOA.jpg", "namaPartai" : "Partai Hati Nurani Rakyat", "id" : 147262, "noUrut" : 4, "nama" : "Drs. PAULUS MOA", "stringJenisKelamin" : "Laki-Laki"}, {"namaKab" : "ENDE", "originalFilename" : "YOHANA AFRA BABORAKI.jpg", "namaPartai" : "Partai Hati Nurani Rakyat", "id" : 255708, "noUrut" : 5, "nama" : "Dra. YOHANA AFRA BABORAKI", "stringJenisKelamin" : "Perempuan"}, {"namaKab" : "JAKARTA TIMUR", "originalFilename" : "MOHAMMAD SALEH GAWI.jpg", "namaPartai" : "Partai Hati Nurani Rakyat", "id" : 56981, "noUrut" : 6, "nama" : "Drs. MOHAMMAD SALEH GAWI", "stringJenisKelamin" : "Laki-Laki"}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"namaKab": {"type": "string"}, "originalFilename": {"type": "string"}, "namaPartai": {"type": "string"}, "id": {"type": "integer"}, "noUrut": {"type": "integer"}, "nama": {"type": "string"}, "stringJenisKelamin": {"type": "string"}}, "required": ["namaKab", "originalFilename", "namaPartai", "id", "noUrut", "nama", "stringJenisKelamin"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"type": {"type": "string"}, "title": {"type": "string"}, "id": {"type": "string"}, "bbox": {"type": "array", "items": {"type": "number"}}, "description": {"type": "string"}, "connectsWith": {"type": "array", "items": {"type": "string"}}, "names": {"type": "array", "items": {"type": "string"}}, "features": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "number"}}}, "required": ["type", "coordinates"]}, "properties": {"type": "object", "properties": {"description": {"type": "string"}}, "required": ["description"]}}, "required": ["type", "geometry", "properties"]}}}, "required": ["type", "title", "id", "bbox", "description", "connectsWith", "names", "features"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"type" : "FeatureCollection", "title" : "Nauplia", "id" : "570501", "bbox" : [22.808706, 37.568123, 22.808706, 37.568123], "description" : "An ancient place, cited: BAtlas 58 D2 Nauplia", "connectsWith" : ["570104"], "names" : ["Nauplia"], "features" : [{"type" : "Feature", "geometry" : {"type" : "Point", "coordinates" : [22.808706, 37.568123]}, "properties" : {"description" : "representative point"}}, {"geometry" : {"type" : "Point", "coordinates" : [22.808706, 37.568123]}, "id" : "darmc-location-24112", "type" : "Feature", "properties" : {"description" : "1:1 million scale representative point location digitized from the Barrington Atlas of the Greek and Roman World by the Digital Atlas of Roman and Medieval Civilizations project at Harvard University.", "location_precision" : "precise", "title" : "DARMC location 24112", "link" : "http://pleiades.stoa.org/places/570501/darmc-location-24112"}}]}
json_instruct
{"type": "object", "properties": {"type": {"type": "string"}, "title": {"type": "string"}, "id": {"type": "string"}, "bbox": {"type": "array", "items": {"type": "number"}}, "description": {"type": "string"}, "connectsWith": {"type": "array", "items": {"type": "string"}}, "names": {"type": "array", "items": {"type": "string"}}, "features": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "number"}}}, "required": ["type", "coordinates"]}, "properties": {"type": "object", "properties": {"description": {"type": "string"}}, "required": ["description"]}}, "required": ["type", "geometry", "properties"]}}}, "required": ["type", "title", "id", "bbox", "description", "connectsWith", "names", "features"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "data": {"type": "array", "items": {"type": "object", "properties": {"text": {"type": "string"}, "userDefined": {"type": "boolean"}}, "required": ["text", "userDefined"]}}, "isTemplate": {"type": "boolean"}, "count": {"type": "integer"}, "lang": {"type": "string"}, "updated": {"type": "integer"}}, "required": ["id", "data", "isTemplate", "count", "lang", "updated"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"id" : "8b52bdb7-595f-4c4d-869c-8d715bd7a399", "data" : [{"text" : "\u0434\u043b\u044f \u0441\u043a\u043e\u0440\u043f\u0438\u043e\u0448\u0435\u043a", "userDefined" : false}], "isTemplate" : false, "count" : 0, "lang" : "ru", "updated" : 0}, {"id" : "a2cd02bc-b901-41e3-b1df-06ec93e9140a", "data" : [{"text" : "\u0433\u043e\u0440\u043e\u0441\u043a\u043e\u043f \u043f\u0440\u043e ", "userDefined" : false}, {"text" : "\u0441\u043a\u043e\u0440\u043f\u0438\u043e\u043d\u043e\u0432", "userDefined" : false}], "isTemplate" : false, "count" : 0, "lang" : "ru", "updated" : 0}, {"id" : "bc754de2-c115-4fa2-b27f-adf0ff5a1499", "data" : [{"text" : "\u0433\u043e\u0440\u043e\u0441\u043a\u043e\u043f \u0434\u043b\u044f ", "userDefined" : false}, {"text" : "\u0441\u043a\u043e\u0440\u043f\u0438\u043e\u043d\u043e\u0432", "userDefined" : false}], "isTemplate" : false, "count" : 0, "lang" : "ru", "updated" : 0}, {"id" : "7d41444b-4428-4095-9ee4-04b1855a0d0a", "data" : [{"text" : "\u043f\u0440\u043e ", "userDefined" : false}, {"text" : "\u0441\u043a\u043e\u0440\u043f\u0438\u043e\u043d\u043e\u0432", "userDefined" : false}], "isTemplate" : false, "count" : 0, "lang" : "ru", "updated" : 0}, {"id" : "a4283cb1-4680-4748-b5cd-e77ae66827d7", "data" : [{"text" : "\u0434\u043b\u044f ", "userDefined" : false}, {"text" : "\u0441\u043a\u043e\u0440\u043f\u0438\u043e\u043d\u043e\u0432", "userDefined" : false}], "isTemplate" : false, "count" : 0, "lang" : "ru", "updated" : 0}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "data": {"type": "array", "items": {"type": "object", "properties": {"text": {"type": "string"}, "userDefined": {"type": "boolean"}}, "required": ["text", "userDefined"]}}, "isTemplate": {"type": "boolean"}, "count": {"type": "integer"}, "lang": {"type": "string"}, "updated": {"type": "integer"}}, "required": ["id", "data", "isTemplate", "count", "lang", "updated"]}, "$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"}, "license": {"type": "string"}, "author": {"type": "string"}, "main": {"type": "string"}, "module": {"type": "string"}, "typings": {"type": "string"}, "files": {"type": "array", "items": {"type": "string"}}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}, "build": {"type": "string"}, "test": {"type": "string"}, "lint": {"type": "string"}}, "required": ["start", "build", "test", "lint"]}, "peerDependencies": {"type": "object", "properties": {}, "required": []}, "husky": {"type": "object", "properties": {"hooks": {"type": "object", "properties": {"pre-commit": {"type": "string"}}, "required": ["pre-commit"]}}, "required": ["hooks"]}, "prettier": {"type": "object", "properties": {"printWidth": {"type": "integer"}, "semi": {"type": "boolean"}, "singleQuote": {"type": "boolean"}, "trailingComma": {"type": "string"}}, "required": ["printWidth", "semi", "singleQuote", "trailingComma"]}, "devDependencies": {"type": "object", "properties": {"@types/jest": {"type": "string"}, "husky": {"type": "string"}, "tsdx": {"type": "string"}, "tslib": {"type": "string"}, "typescript": {"type": "string"}}, "required": ["@types/jest", "husky", "tsdx", "tslib", "typescript"]}, "jest": {"type": "object", "properties": {"globals": {"type": "object", "properties": {"ts-jest": {"type": "object", "properties": {"tsConfig": {"type": "string"}}, "required": ["tsConfig"]}}, "required": ["ts-jest"]}, "testEnvironment": {"type": "string"}}, "required": ["globals", "testEnvironment"]}}, "required": ["name", "version", "license", "author", "main", "module", "typings", "files", "scripts", "peerDependencies", "husky", "prettier", "devDependencies", "jest"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "ts-algs", "version" : "0.1.2", "license" : "MIT", "author" : "builden", "main" : "dist/index.js", "module" : "dist/ts-algs.esm.js", "typings" : "dist/index.d.ts", "files" : ["dist"], "scripts" : {"start" : "tsdx watch", "build" : "tsdx build", "test" : "tsdx test", "lint" : "tsdx lint"}, "peerDependencies" : {}, "husky" : {"hooks" : {"pre-commit" : "tsdx lint"}}, "prettier" : {"printWidth" : 100, "semi" : true, "singleQuote" : true, "trailingComma" : "es5"}, "devDependencies" : {"@types/jest" : "^24.0.23", "husky" : "^3.1.0", "tsdx" : "^0.11.0", "tslib" : "^1.10.0", "typescript" : "^3.7.2"}, "jest" : {"globals" : {"ts-jest" : {"tsConfig" : "tsconfig.jest.json"}}, "testEnvironment" : "node"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "license": {"type": "string"}, "author": {"type": "string"}, "main": {"type": "string"}, "module": {"type": "string"}, "typings": {"type": "string"}, "files": {"type": "array", "items": {"type": "string"}}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}, "build": {"type": "string"}, "test": {"type": "string"}, "lint": {"type": "string"}}, "required": ["start", "build", "test", "lint"]}, "peerDependencies": {"type": "object", "properties": {}, "required": []}, "husky": {"type": "object", "properties": {"hooks": {"type": "object", "properties": {"pre-commit": {"type": "string"}}, "required": ["pre-commit"]}}, "required": ["hooks"]}, "prettier": {"type": "object", "properties": {"printWidth": {"type": "integer"}, "semi": {"type": "boolean"}, "singleQuote": {"type": "boolean"}, "trailingComma": {"type": "string"}}, "required": ["printWidth", "semi", "singleQuote", "trailingComma"]}, "devDependencies": {"type": "object", "properties": {"@types/jest": {"type": "string"}, "husky": {"type": "string"}, "tsdx": {"type": "string"}, "tslib": {"type": "string"}, "typescript": {"type": "string"}}, "required": ["@types/jest", "husky", "tsdx", "tslib", "typescript"]}, "jest": {"type": "object", "properties": {"globals": {"type": "object", "properties": {"ts-jest": {"type": "object", "properties": {"tsConfig": {"type": "string"}}, "required": ["tsConfig"]}}, "required": ["ts-jest"]}, "testEnvironment": {"type": "string"}}, "required": ["globals", "testEnvironment"]}}, "required": ["name", "version", "license", "author", "main", "module", "typings", "files", "scripts", "peerDependencies", "husky", "prettier", "devDependencies", "jest"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "author": {"type": "string"}, "private": {"type": "boolean"}, "license": {"type": "string"}, "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"]}, "engines": {"type": "object", "properties": {"node": {"type": "string"}, "yarn": {"type": "string"}}, "required": ["node", "yarn"]}}, "required": ["name", "version", "description", "author", "private", "license", "homepage", "repository", "bugs", "engines"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "pac42", "version" : "0.1.0", "description" : "Online multi-agent system Pacman game", "author" : "Simon Relet", "private" : true, "license" : "MIT", "homepage" : "https://github.com/simonrelet/pac42#readme", "repository" : {"type" : "git", "url" : "git+https://github.com/simonrelet/pac42.git"}, "bugs" : {"url" : "https://github.com/simonrelet/pac42/issues"}, "engines" : {"node" : "^8.1.0", "yarn" : "^1.0.0"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "author": {"type": "string"}, "private": {"type": "boolean"}, "license": {"type": "string"}, "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"]}, "engines": {"type": "object", "properties": {"node": {"type": "string"}, "yarn": {"type": "string"}}, "required": ["node", "yarn"]}}, "required": ["name", "version", "description", "author", "private", "license", "homepage", "repository", "bugs", "engines"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"mocha.css": {"type": "string"}, "mocha.js": {"type": "string"}, "mocha.min.css": {"type": "string"}, "mocha.min.js": {"type": "string"}}, "required": ["mocha.css", "mocha.js", "mocha.min.css", "mocha.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"mocha.css" : "sha512-bPjDznU+5LXc50JbNKZfvIS73b69YS1TLanniJl5He8xcepul4+BYr3awtwxZWQOCboXmcG1jgWMN/tscbXcjA==", "mocha.js" : "sha512-bhHbeL4xdGKmexYmoRwysimINw5l5f7e6LgOPnMzs3eyHl6242GtYXbv1yPFfwZLVHqpNnJhTFbX/YvlQJXVgA==", "mocha.min.css" : "sha512-QfyW3x+egDmknxw1fhv4ahKwM6yNIxHeTiOz7S2xuTg6tta0H6itDpP5dd7LWtqJf/rydjwldz1cfXK0vp3GeA==", "mocha.min.js" : "sha512-qnVVikok7DHbyN6v1pkmjsLSupQL79/YQfKm1YhrSLsfnLyhiZYd82sXfWY6QIu3PGvTQsa/VjrougKv4xMfyQ=="}
json_instruct
{"type": "object", "properties": {"mocha.css": {"type": "string"}, "mocha.js": {"type": "string"}, "mocha.min.css": {"type": "string"}, "mocha.min.js": {"type": "string"}}, "required": ["mocha.css", "mocha.js", "mocha.min.css", "mocha.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"id": {"type": "string"}, "variable1": {"type": "number"}, "variable2": {"type": "number"}, "variable3": {"type": "string"}}, "required": ["id", "variable1", "variable2", "variable3"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : "170702020905", "variable1" : 0.8624, "variable2" : 0.8003, "variable3" : "C"}
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "variable1": {"type": "number"}, "variable2": {"type": "number"}, "variable3": {"type": "string"}}, "required": ["id", "variable1", "variable2", "variable3"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"J1741+1351_430_ASP_efac": {"type": "number"}, "J1741+1351_430_ASP_log10_ecorr": {"type": "number"}, "J1741+1351_430_ASP_log10_equad": {"type": "number"}, "J1741+1351_430_PUPPI_efac": {"type": "number"}, "J1741+1351_430_PUPPI_log10_ecorr": {"type": "number"}, "J1741+1351_430_PUPPI_log10_equad": {"type": "number"}, "J1741+1351_L-wide_ASP_efac": {"type": "number"}, "J1741+1351_L-wide_ASP_log10_ecorr": {"type": "number"}, "J1741+1351_L-wide_ASP_log10_equad": {"type": "number"}, "J1741+1351_L-wide_PUPPI_efac": {"type": "number"}, "J1741+1351_L-wide_PUPPI_log10_ecorr": {"type": "number"}, "J1741+1351_L-wide_PUPPI_log10_equad": {"type": "number"}, "J1741+1351_S-wide_ASP_efac": {"type": "number"}, "J1741+1351_S-wide_ASP_log10_ecorr": {"type": "number"}, "J1741+1351_S-wide_ASP_log10_equad": {"type": "number"}, "J1741+1351_gamma": {"type": "number"}, "J1741+1351_log10_A": {"type": "number"}}, "required": ["J1741+1351_430_ASP_efac", "J1741+1351_430_ASP_log10_ecorr", "J1741+1351_430_ASP_log10_equad", "J1741+1351_430_PUPPI_efac", "J1741+1351_430_PUPPI_log10_ecorr", "J1741+1351_430_PUPPI_log10_equad", "J1741+1351_L-wide_ASP_efac", "J1741+1351_L-wide_ASP_log10_ecorr", "J1741+1351_L-wide_ASP_log10_equad", "J1741+1351_L-wide_PUPPI_efac", "J1741+1351_L-wide_PUPPI_log10_ecorr", "J1741+1351_L-wide_PUPPI_log10_equad", "J1741+1351_S-wide_ASP_efac", "J1741+1351_S-wide_ASP_log10_ecorr", "J1741+1351_S-wide_ASP_log10_equad", "J1741+1351_gamma", "J1741+1351_log10_A"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"J1741+1351_430_ASP_efac" : 0.933686, "J1741+1351_430_ASP_log10_ecorr" : -5.47059, "J1741+1351_430_ASP_log10_equad" : -6.39579, "J1741+1351_430_PUPPI_efac" : 1.05057, "J1741+1351_430_PUPPI_log10_ecorr" : -8.38478, "J1741+1351_430_PUPPI_log10_equad" : -6.57954, "J1741+1351_L-wide_ASP_efac" : 1.03822, "J1741+1351_L-wide_ASP_log10_ecorr" : -6.93261, "J1741+1351_L-wide_ASP_log10_equad" : -7.16934, "J1741+1351_L-wide_PUPPI_efac" : 1.04646, "J1741+1351_L-wide_PUPPI_log10_ecorr" : -6.99727, "J1741+1351_L-wide_PUPPI_log10_equad" : -7.19625, "J1741+1351_S-wide_ASP_efac" : 0.668539, "J1741+1351_S-wide_ASP_log10_ecorr" : -7.97708, "J1741+1351_S-wide_ASP_log10_equad" : -8.61321, "J1741+1351_gamma" : 1.32631, "J1741+1351_log10_A" : -13.7208}
json_instruct
{"type": "object", "properties": {"J1741+1351_430_ASP_efac": {"type": "number"}, "J1741+1351_430_ASP_log10_ecorr": {"type": "number"}, "J1741+1351_430_ASP_log10_equad": {"type": "number"}, "J1741+1351_430_PUPPI_efac": {"type": "number"}, "J1741+1351_430_PUPPI_log10_ecorr": {"type": "number"}, "J1741+1351_430_PUPPI_log10_equad": {"type": "number"}, "J1741+1351_L-wide_ASP_efac": {"type": "number"}, "J1741+1351_L-wide_ASP_log10_ecorr": {"type": "number"}, "J1741+1351_L-wide_ASP_log10_equad": {"type": "number"}, "J1741+1351_L-wide_PUPPI_efac": {"type": "number"}, "J1741+1351_L-wide_PUPPI_log10_ecorr": {"type": "number"}, "J1741+1351_L-wide_PUPPI_log10_equad": {"type": "number"}, "J1741+1351_S-wide_ASP_efac": {"type": "number"}, "J1741+1351_S-wide_ASP_log10_ecorr": {"type": "number"}, "J1741+1351_S-wide_ASP_log10_equad": {"type": "number"}, "J1741+1351_gamma": {"type": "number"}, "J1741+1351_log10_A": {"type": "number"}}, "required": ["J1741+1351_430_ASP_efac", "J1741+1351_430_ASP_log10_ecorr", "J1741+1351_430_ASP_log10_equad", "J1741+1351_430_PUPPI_efac", "J1741+1351_430_PUPPI_log10_ecorr", "J1741+1351_430_PUPPI_log10_equad", "J1741+1351_L-wide_ASP_efac", "J1741+1351_L-wide_ASP_log10_ecorr", "J1741+1351_L-wide_ASP_log10_equad", "J1741+1351_L-wide_PUPPI_efac", "J1741+1351_L-wide_PUPPI_log10_ecorr", "J1741+1351_L-wide_PUPPI_log10_equad", "J1741+1351_S-wide_ASP_efac", "J1741+1351_S-wide_ASP_log10_ecorr", "J1741+1351_S-wide_ASP_log10_equad", "J1741+1351_gamma", "J1741+1351_log10_A"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"directions": {"type": "array", "items": {"type": "string"}}, "ingredients": {"type": "array", "items": {"type": "string"}}, "language": {"type": "string"}, "source": {"type": "string"}, "tags": {"type": "array", "items": {}}, "title": {"type": "string"}, "url": {"type": "string"}}, "required": ["directions", "ingredients", "language", "source", "tags", "title", "url"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"directions" : ["Preheat oven to 350 degrees F (175 degrees C).", "In a bowl combine the mixed vegetables, chicken, cream of chicken soup and milk. Pour mixture into one of the pie crusts. Turn the other crust over and pop out of the tin onto the top of the filled pie. Seal the edges and poke holes in top crust.", "Bake at 350 degrees F (175 degrees C) for 30 minutes or until crust is golden brown."], "ingredients" : ["2 (9 inch) deep dish frozen pie crusts, thawed", "1 (15 ounce) can mixed vegetables, drained", "2 cups cooked, diced chicken breast", "1 (10.75 ounce) can condensed cream of chicken soup", "1/2 cup milk"], "language" : "en-US", "source" : "allrecipes.com", "tags" : [], "title" : "Chicken Pot Pie I", "url" : "http://allrecipes.com/recipe/8618/chicken-pot-pie-i/"}
json_instruct
{"type": "object", "properties": {"directions": {"type": "array", "items": {"type": "string"}}, "ingredients": {"type": "array", "items": {"type": "string"}}, "language": {"type": "string"}, "source": {"type": "string"}, "tags": {"type": "array", "items": {}}, "title": {"type": "string"}, "url": {"type": "string"}}, "required": ["directions", "ingredients", "language", "source", "tags", "title", "url"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}}, "required": ["start"]}, "dependencies": {"type": "object", "properties": {"@petitatelier/osc-stream": {"type": "string"}, "@webcomponents/webcomponentsjs": {"type": "string"}, "lit-element": {"type": "string"}}, "required": ["@petitatelier/osc-stream", "@webcomponents/webcomponentsjs", "lit-element"]}, "devDependencies": {"type": "object", "properties": {"polyserve": {"type": "string"}}, "required": ["polyserve"]}, "author": {"type": "string"}, "contributors": {"type": "array", "items": {"type": "string"}}, "license": {"type": "string"}, "homepage": {"type": "string"}}, "required": ["name", "version", "description", "scripts", "dependencies", "devDependencies", "author", "contributors", "license", "homepage"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "wcp-summary-step04", "version" : "0.1.0", "description" : "Web Components Primer \u00b7\u00a04. Dataflow \u00b7\u00a0Live Coding", "scripts" : {"start" : "polyserve --npm --module-resolution=node"}, "dependencies" : {"@petitatelier/osc-stream" : "^0.2.2", "@webcomponents/webcomponentsjs" : "^2.2.7", "lit-element" : "^2.0.1"}, "devDependencies" : {"polyserve" : "latest"}, "author" : "Olivier Lange", "contributors" : ["Yves Lange"], "license" : "BSD-3-Clause", "homepage" : "https://github.com/petitatelier/web-components-primer/tree/master/live-coding/02-wcp-summary/step-04#readme"}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}}, "required": ["start"]}, "dependencies": {"type": "object", "properties": {"@petitatelier/osc-stream": {"type": "string"}, "@webcomponents/webcomponentsjs": {"type": "string"}, "lit-element": {"type": "string"}}, "required": ["@petitatelier/osc-stream", "@webcomponents/webcomponentsjs", "lit-element"]}, "devDependencies": {"type": "object", "properties": {"polyserve": {"type": "string"}}, "required": ["polyserve"]}, "author": {"type": "string"}, "contributors": {"type": "array", "items": {"type": "string"}}, "license": {"type": "string"}, "homepage": {"type": "string"}}, "required": ["name", "version", "description", "scripts", "dependencies", "devDependencies", "author", "contributors", "license", "homepage"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"$schema": {"type": "string"}, "schematics": {"type": "object", "properties": {"jo": {"type": "object", "properties": {"description": {"type": "string"}, "factory": {"type": "string"}, "schema": {"type": "string"}}, "required": ["description", "factory", "schema"]}}, "required": ["jo"]}}, "required": ["$schema", "schematics"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"$schema" : "../node_modules/@angular-devkit/schematics/collection-schema.json", "schematics" : {"jo" : {"description" : "jo feat main", "factory" : "./jo/index", "schema" : "./jo/schema.json"}}}
json_instruct
{"type": "object", "properties": {"$schema": {"type": "string"}, "schematics": {"type": "object", "properties": {"jo": {"type": "object", "properties": {"description": {"type": "string"}, "factory": {"type": "string"}, "schema": {"type": "string"}}, "required": ["description", "factory", "schema"]}}, "required": ["jo"]}}, "required": ["$schema", "schematics"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"source": {"type": "string"}, "trackCount": {"type": "integer"}, "tracks": {"type": "array", "items": {"type": "object", "properties": {"_id": {"type": "string"}, "names": {"type": "array", "items": {"type": "string"}}, "releases": {"type": "array", "items": {"type": "object", "properties": {"_id": {"type": "string"}, "names": {"type": "array", "items": {"type": "string"}}}, "required": ["_id", "names"]}}, "artists": {"type": "array", "items": {"type": "object", "properties": {"_id": {"type": "string"}, "names": {"type": "array", "items": {"type": "string"}}}, "required": ["_id", "names"]}}}, "required": ["_id", "names", "releases", "artists"]}}, "targets": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "targetId": {"type": "string"}, "trackCount": {"type": "integer"}, "tracks": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "targetId", "trackCount", "tracks"]}}}, "required": ["source", "trackCount", "tracks", "targets"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"source" : "Pest", "trackCount" : 2, "tracks" : [{"_id" : "6985", "names" : ["Possessed (By Satan)"], "releases" : [{"_id" : "1390", "names" : ["Antichrist"]}], "artists" : [{"_id" : "1070", "names" : ["Gorgoroth"]}]}, {"_id" : "6986", "names" : ["Heavens Fall"], "releases" : [{"_id" : "1390", "names" : ["Antichrist"]}], "artists" : [{"_id" : "1070", "names" : ["Gorgoroth"]}]}], "targets" : [{"name" : "Infernus", "targetId" : "6814", "trackCount" : 2, "tracks" : ["6985", "6986"]}, {"name" : "Kjetil \"Frost\" Haraldstad", "targetId" : "6816", "trackCount" : 2, "tracks" : ["6985", "6986"]}]}
json_instruct
{"type": "object", "properties": {"source": {"type": "string"}, "trackCount": {"type": "integer"}, "tracks": {"type": "array", "items": {"type": "object", "properties": {"_id": {"type": "string"}, "names": {"type": "array", "items": {"type": "string"}}, "releases": {"type": "array", "items": {"type": "object", "properties": {"_id": {"type": "string"}, "names": {"type": "array", "items": {"type": "string"}}}, "required": ["_id", "names"]}}, "artists": {"type": "array", "items": {"type": "object", "properties": {"_id": {"type": "string"}, "names": {"type": "array", "items": {"type": "string"}}}, "required": ["_id", "names"]}}}, "required": ["_id", "names", "releases", "artists"]}}, "targets": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "targetId": {"type": "string"}, "trackCount": {"type": "integer"}, "tracks": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "targetId", "trackCount", "tracks"]}}}, "required": ["source", "trackCount", "tracks", "targets"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"ip": {"type": "string"}, "country_code": {"type": "string"}, "country_name": {"type": "string"}, "region_code": {"type": "string"}, "region_name": {"type": "string"}, "city": {"type": "string"}, "zip_code": {"type": "string"}, "time_zone": {"type": "string"}, "latitude": {"type": "number"}, "longitude": {"type": "number"}, "metro_code": {"type": "integer"}}, "required": ["ip", "country_code", "country_name", "region_code", "region_name", "city", "zip_code", "time_zone", "latitude", "longitude", "metro_code"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"ip" : "83.50.22.208", "country_code" : "ES", "country_name" : "Spain", "region_code" : "EX", "region_name" : "Extremadura", "city" : "Montijo", "zip_code" : "06480", "time_zone" : "Europe/Madrid", "latitude" : 38.9084, "longitude" : -6.6179, "metro_code" : 0}
json_instruct
{"type": "object", "properties": {"ip": {"type": "string"}, "country_code": {"type": "string"}, "country_name": {"type": "string"}, "region_code": {"type": "string"}, "region_name": {"type": "string"}, "city": {"type": "string"}, "zip_code": {"type": "string"}, "time_zone": {"type": "string"}, "latitude": {"type": "number"}, "longitude": {"type": "number"}, "metro_code": {"type": "integer"}}, "required": ["ip", "country_code", "country_name", "region_code", "region_name", "city", "zip_code", "time_zone", "latitude", "longitude", "metro_code"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"id": {"type": "string"}}, "required": ["id"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : "4b3e910182d8f2b84dd9d6fcdc4aa68ce805ff05"}
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}}, "required": ["id"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"id": {"type": "string"}, "district_id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "district_id", "name"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : "3522080016", "district_id" : "3522080", "name" : "SIDOREJO"}
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "district_id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "district_id", "name"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"/index": {"type": "string"}, "/_error": {"type": "string"}, "/about": {"type": "string"}, "/_document": {"type": "string"}, "/_app": {"type": "string"}, "/": {"type": "string"}}, "required": ["/index", "/_error", "/about", "/_document", "/_app", "/"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"/index" : "static/hfUysz4EpNjlc0Zts0y6S/pages/index.js", "/_error" : "static/hfUysz4EpNjlc0Zts0y6S/pages/_error.js", "/about" : "static/hfUysz4EpNjlc0Zts0y6S/pages/about.js", "/_document" : "static/hfUysz4EpNjlc0Zts0y6S/pages/_document.js", "/_app" : "static/hfUysz4EpNjlc0Zts0y6S/pages/_app.js", "/" : "static/hfUysz4EpNjlc0Zts0y6S/pages/index.js"}
json_instruct
{"type": "object", "properties": {"/index": {"type": "string"}, "/_error": {"type": "string"}, "/about": {"type": "string"}, "/_document": {"type": "string"}, "/_app": {"type": "string"}, "/": {"type": "string"}}, "required": ["/index", "/_error", "/about", "/_document", "/_app", "/"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies 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" : "073e6199-9add-4913-ab77-949e96ed35fe", "d" : 318}]
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#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"title": {"type": "string"}, "fields": {"type": "array", "items": {"type": "string"}}, "abstract": {"type": "string"}, "citation": {"type": "string"}, "year": {"type": "string"}, "departments": {"type": "array", "items": {"type": "string"}}, "conf": {"type": "string"}, "authors": {"type": "array", "items": {"type": "string"}}, "pages": {"type": "integer"}}, "required": ["title", "fields", "abstract", "citation", "year", "departments", "conf", "authors", "pages"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"title" : "OrpheusDB: A Lightweight Approach to Relational Dataset Versioning.", "fields" : ["revision control", "relational database", "sql", "software versioning", "modalities"], "abstract" : "We demonstrate OrpheusDB, a lightweight approach to versioning of relational datasets. OrpheusDB is built as a thin layer on top of standard relational databases, and therefore inherits much of their benefits while also compactly storing, tracking, and recreating dataset versions on demand. OrpheusDB also supports a range of querying modalities spanning both SQL and git-style version commands. Conference attendees will be able to interact with OrpheusDB via an interactive version browser interface. The demo will highlight underlying design decisions of OrpheusDB, and provide an understanding of how OrpheusDB translates versioning commands into commands understood by a database system that is unaware of the presence of versions. OrpheusDB has been developed as open-source software; code is available at http://orpheus-db.github.io.", "citation" : "Citations (3)", "year" : "2017", "departments" : ["University of Illinois at Urbana\u2013Champaign", "University of Illinois at Urbana\u2013Champaign", "University of Illinois at Urbana\u2013Champaign", "University of Chicago", "University of Illinois at Urbana\u2013Champaign"], "conf" : "sigmod", "authors" : ["Liqi Xu.....http://dblp.org/pers/hd/x/Xu:Liqi", "Silu Huang.....http://dblp.org/pers/hd/h/Huang:Silu", "SiLi Hui.....http://dblp.org/pers/hd/h/Hui:SiLi", "Aaron J. Elmore.....http://dblp.org/pers/hd/e/Elmore:Aaron_J=", "Aditya G. Parameswaran.....http://dblp.org/pers/hd/p/Parameswaran:Aditya_G="], "pages" : 4}
json_instruct
{"type": "object", "properties": {"title": {"type": "string"}, "fields": {"type": "array", "items": {"type": "string"}}, "abstract": {"type": "string"}, "citation": {"type": "string"}, "year": {"type": "string"}, "departments": {"type": "array", "items": {"type": "string"}}, "conf": {"type": "string"}, "authors": {"type": "array", "items": {"type": "string"}}, "pages": {"type": "integer"}}, "required": ["title", "fields", "abstract", "citation", "year", "departments", "conf", "authors", "pages"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"count" : 25}
json_instruct
{"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"], "$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": {"name": {"type": "string"}, "fips": {"type": "string"}, "state_code": {"type": "integer"}, "county_code": {"type": "integer"}, "population": {"type": "integer"}, "countrylevel_id": {"type": "string"}, "census_data": {"type": "object", "properties": {"COUNTYNS": {"type": "string"}, "AFFGEOID": {"type": "string"}, "LSAD": {"type": "string"}, "ALAND": {"type": "integer"}, "AWATER": {"type": "integer"}}, "required": ["COUNTYNS", "AFFGEOID", "LSAD", "ALAND", "AWATER"]}}, "required": ["name", "fips", "state_code", "county_code", "population", "countrylevel_id", "census_data"]}, "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"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"type" : "Feature", "properties" : {"name" : "Nolan County", "fips" : "48353", "state_code" : 48, "county_code" : 353, "population" : 14714, "countrylevel_id" : "fips:48353", "census_data" : {"COUNTYNS" : "01383962", "AFFGEOID" : "0500000US48353", "LSAD" : "06", "ALAND" : 2362061743, "AWATER" : 5052159}}, "geometry" : {"type" : "Polygon", "coordinates" : [[[-100.660626, 32.525312], [-100.146543, 32.522793], [-100.148609, 32.404941], [-100.151911, 32.082637999999996], [-100.235137, 32.082372], [-100.250373, 32.081592], [-100.665353, 32.085407], [-100.660626, 32.525312]]]}}
json_instruct
{"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"name": {"type": "string"}, "fips": {"type": "string"}, "state_code": {"type": "integer"}, "county_code": {"type": "integer"}, "population": {"type": "integer"}, "countrylevel_id": {"type": "string"}, "census_data": {"type": "object", "properties": {"COUNTYNS": {"type": "string"}, "AFFGEOID": {"type": "string"}, "LSAD": {"type": "string"}, "ALAND": {"type": "integer"}, "AWATER": {"type": "integer"}}, "required": ["COUNTYNS", "AFFGEOID", "LSAD", "ALAND", "AWATER"]}}, "required": ["name", "fips", "state_code", "county_code", "population", "countrylevel_id", "census_data"]}, "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"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "qualified_name": {"type": "string"}, "examine": {"type": "string"}, "members": {"type": "boolean"}, "release_date": {"type": "string"}, "quest": {"type": "boolean"}, "weight": {"type": "number"}, "value": {"type": "integer"}, "tradeable": {"type": "boolean"}, "stackable": {"type": "boolean"}, "noteable": {"type": "boolean"}, "equipable": {"type": "boolean"}, "tradeable_ge": {"type": "boolean"}, "icon": {"type": "string"}, "wiki_url": {"type": "string"}}, "required": ["id", "name", "qualified_name", "examine", "members", "release_date", "quest", "weight", "value", "tradeable", "stackable", "noteable", "equipable", "tradeable_ge", "icon", "wiki_url"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : 11046, "name" : "Rope", "qualified_name" : "Rope (Olaf's Quest)", "examine" : "A coil of rope.", "members" : true, "release_date" : "2007-04-10", "quest" : true, "weight" : 0.001, "value" : 0, "tradeable" : false, "stackable" : false, "noteable" : false, "equipable" : false, "tradeable_ge" : false, "icon" : "iVBORw0KGgoAAAANSUhEUgAAACQAAAAgCAYAAAB6kdqOAAACx0lEQVR4Xu2VXWsaURCG3X/Qq97kRvBCCAgiSBARLCFIqASLEonBEgkJXtiADbahKSENTSEQaAul0F87zTObt2638SPRerUHhjXZPWee884756RSyUjGSkdgk2OlI0za3MxYrbRmpfxz67XKNjretqPmumXTz1YFFyYgaX835wDng7p9GjZsdFCwrx/37Py4aGeHBX/X71Rtb2fjf0EFdtLb8iSoAdBZ/6UDfT5t2mW/aD8u9+1qsOG/b97vWq+RtXo17QouGSpURbuOAqEOyaXM7WnZrk9KdvuhbYPXm/5ta7voQPl0ellQgS/+ZdRykHYtY286OQ9K9f2i4xAoQ9lQiiebQKX9etZqlfVleiosF2oA0X1Vcm+wc1T5edV1ZW6GJft1feABJGoSmJ+n5i0IFe4KZdgtiuAbyqWOKhcyVn+Rd0ASHrUrvgF5jk5EJcDw1ALlC72DKjIoZcEfKIA6/u7OJyopwMNu3v//9rDmQNXimn/T2CosYvJxV/Fk1+yeBfGIOgozAwEM5gYyDgQs81HR17h7PkGlwLtKO8ekJEF2yoRP8IygeI9yAgQKIJQlUBpja2NPAro42XEodQ7lIhFdxqIyMlCUkO8oDX4RBN5Tt0XPsbG55y5d4MoAwGLUneRAoQAdx4GoUgGjcmF4AkWjQIAq1IHAjcGmwgVeApKrdEwWFACoEg2VC2UJ2lweUtcRlJI1geYp5SjnTCiSoAKhErJbzp54UDpUQjnKSqgpgCB03bAWKrMuf/PNHCd64ElQQyElVEq/Ru6TRi9boKJHgBQRCO9Vcub4eXV/mk8BYgR/2lyha8Jv9Qf8pIgeAYIRSBSId5S3mJv70AwNp2sBH0VbnuT4Ta2viB4BwPxt3ocDmDmAUqnwo3DSt3eVf1o+HsBNSjYr4rmnjijYrIgnenSyx4x4okkRn5eMZCQjGTPGb+BUbatWsPaGAAAAAElFTkSuQmCC", "wiki_url" : "https://oldschool.runescape.wiki/w/Rope_(Olaf's_Quest)"}
json_instruct
{"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "qualified_name": {"type": "string"}, "examine": {"type": "string"}, "members": {"type": "boolean"}, "release_date": {"type": "string"}, "quest": {"type": "boolean"}, "weight": {"type": "number"}, "value": {"type": "integer"}, "tradeable": {"type": "boolean"}, "stackable": {"type": "boolean"}, "noteable": {"type": "boolean"}, "equipable": {"type": "boolean"}, "tradeable_ge": {"type": "boolean"}, "icon": {"type": "string"}, "wiki_url": {"type": "string"}}, "required": ["id", "name", "qualified_name", "examine", "members", "release_date", "quest", "weight", "value", "tradeable", "stackable", "noteable", "equipable", "tradeable_ge", "icon", "wiki_url"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"position": {"type": "array", "items": {"type": "number"}}, "orientation": {"type": "array", "items": {"type": "number"}}}, "required": ["position", "orientation"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"position" : [0.05110973575308286, 0.08918917586574307, 0.0325], "orientation" : [0.0, 0.0, 0.777433452650142, 0.6289652030919354]}
json_instruct
{"type": "object", "properties": {"position": {"type": "array", "items": {"type": "number"}}, "orientation": {"type": "array", "items": {"type": "number"}}}, "required": ["position", "orientation"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "private": {"type": "boolean"}, "dependencies": {"type": "object", "properties": {"@babel/polyfill": {"type": "string"}, "@googlemaps/js-api-loader": {"type": "string"}, "@reduxjs/toolkit": {"type": "string"}, "bootstrap": {"type": "string"}, "jquery": {"type": "string"}, "moment": {"type": "string"}, "phoenix": {"type": "string"}, "popper.js": {"type": "string"}, "prettier": {"type": "string"}, "react": {"type": "string"}, "react-bootstrap": {"type": "string"}, "react-dom": {"type": "string"}, "react-redux": {"type": "string"}, "react-router-dom": {"type": "string"}, "react-scripts": {"type": "string"}, "redux": {"type": "string"}}, "required": ["@babel/polyfill", "@googlemaps/js-api-loader", "@reduxjs/toolkit", "bootstrap", "jquery", "moment", "phoenix", "popper.js", "prettier", "react", "react-bootstrap", "react-dom", "react-redux", "react-router-dom", "react-scripts", "redux"]}, "devDependencies": {"type": "object", "properties": {"@babel/cli": {"type": "string"}, "@babel/core": {"type": "string"}, "@babel/preset-env": {"type": "string"}}, "required": ["@babel/cli", "@babel/core", "@babel/preset-env"]}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}, "build": {"type": "string"}, "test": {"type": "string"}, "eject": {"type": "string"}}, "required": ["start", "build", "test", "eject"]}}, "required": ["name", "version", "private", "dependencies", "devDependencies", "scripts"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "project", "version" : "0.1.0", "private" : true, "dependencies" : {"@babel/polyfill" : "^7.12.1", "@googlemaps/js-api-loader" : "^1.11.2", "@reduxjs/toolkit" : "^1.5.1", "bootstrap" : "^4.6.0", "jquery" : "^3.6.0", "moment" : "^2.29.1", "phoenix" : "^1.5.8", "popper.js" : "^1.16.1", "prettier" : "^2.2.1", "react" : "^17.0.1", "react-bootstrap" : "^1.5.2", "react-dom" : "^17.0.1", "react-redux" : "^7.2.3", "react-router-dom" : "^5.2.0", "react-scripts" : "0.9.5", "redux" : "^4.0.5"}, "devDependencies" : {"@babel/cli" : "^7.13.10", "@babel/core" : "^7.13.10", "@babel/preset-env" : "^7.13.10"}, "scripts" : {"start" : "react-scripts start", "build" : "react-scripts build", "test" : "react-scripts test --env=jsdom", "eject" : "react-scripts eject"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "private": {"type": "boolean"}, "dependencies": {"type": "object", "properties": {"@babel/polyfill": {"type": "string"}, "@googlemaps/js-api-loader": {"type": "string"}, "@reduxjs/toolkit": {"type": "string"}, "bootstrap": {"type": "string"}, "jquery": {"type": "string"}, "moment": {"type": "string"}, "phoenix": {"type": "string"}, "popper.js": {"type": "string"}, "prettier": {"type": "string"}, "react": {"type": "string"}, "react-bootstrap": {"type": "string"}, "react-dom": {"type": "string"}, "react-redux": {"type": "string"}, "react-router-dom": {"type": "string"}, "react-scripts": {"type": "string"}, "redux": {"type": "string"}}, "required": ["@babel/polyfill", "@googlemaps/js-api-loader", "@reduxjs/toolkit", "bootstrap", "jquery", "moment", "phoenix", "popper.js", "prettier", "react", "react-bootstrap", "react-dom", "react-redux", "react-router-dom", "react-scripts", "redux"]}, "devDependencies": {"type": "object", "properties": {"@babel/cli": {"type": "string"}, "@babel/core": {"type": "string"}, "@babel/preset-env": {"type": "string"}}, "required": ["@babel/cli", "@babel/core", "@babel/preset-env"]}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}, "build": {"type": "string"}, "test": {"type": "string"}, "eject": {"type": "string"}}, "required": ["start", "build", "test", "eject"]}}, "required": ["name", "version", "private", "dependencies", "devDependencies", "scripts"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "array", "items": {"type": "object", "properties": {"code": {"type": "string"}, "name": {"type": "string"}, "name_kana": {"type": "string"}}, "required": ["code", "name", "name_kana"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"code" : "107", "name" : "\u5cf0\u753a", "name_kana" : "\uff90\uff88\uff8f\uff81"}, {"code" : "155", "name" : "\u58ec\u751f", "name_kana" : "\uff90\uff8c\uff9e"}, {"code" : "300", "name" : "\u6c34\u6238", "name_kana" : "\uff90\uff84"}, {"code" : "351", "name" : "\u5357\u6cb3\u5185", "name_kana" : "\uff90\uff85\uff90\uff76\uff9c\uff81"}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"code": {"type": "string"}, "name": {"type": "string"}, "name_kana": {"type": "string"}}, "required": ["code", "name", "name_kana"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"type": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "number"}}}, "required": ["type", "coordinates"]}, "properties": {"type": "object", "properties": {"notes": {"type": "string"}, "organisation": {"type": "string"}, "point": {"type": "string"}, "hectares": {"type": "string"}, "name": {"type": "string"}, "site-address": {"type": "string"}, "minimum-net-dwellings": {"type": "string"}, "start-date": {"type": "string"}, "planning-permission-date": {"type": "string"}, "maximum-net-dwellings": {"type": "string"}, "site": {"type": "string"}, "slug": {"type": "string"}, "entity": {"type": "integer"}, "entry-date": {"type": "string"}}, "required": ["notes", "organisation", "point", "hectares", "name", "site-address", "minimum-net-dwellings", "start-date", "planning-permission-date", "maximum-net-dwellings", "site", "slug", "entity", "entry-date"]}}, "required": ["type", "geometry", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"type" : "Feature", "geometry" : {"type" : "Point", "coordinates" : [-0.072266, 51.501769]}, "properties" : {"notes" : "Conversion of one flat to two flats", "organisation" : "local-authority-eng:SWK", "point" : "POINT(-0.072266 51.501769)", "hectares" : "0.047", "name" : "18-AP-1785", "site-address" : "9,Saffron Wharf,20 Shad Thames,SE1 2YQ", "minimum-net-dwellings" : "2", "start-date" : "2020-03-24", "planning-permission-date" : "2018-08-01", "maximum-net-dwellings" : "2", "site" : "18-AP-1785", "slug" : "/brownfield-land/local-authority-eng/SWK/18-AP-1785", "entity" : 495932, "entry-date" : "2020-03-24"}}
json_instruct
{"type": "object", "properties": {"type": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "number"}}}, "required": ["type", "coordinates"]}, "properties": {"type": "object", "properties": {"notes": {"type": "string"}, "organisation": {"type": "string"}, "point": {"type": "string"}, "hectares": {"type": "string"}, "name": {"type": "string"}, "site-address": {"type": "string"}, "minimum-net-dwellings": {"type": "string"}, "start-date": {"type": "string"}, "planning-permission-date": {"type": "string"}, "maximum-net-dwellings": {"type": "string"}, "site": {"type": "string"}, "slug": {"type": "string"}, "entity": {"type": "integer"}, "entry-date": {"type": "string"}}, "required": ["notes", "organisation", "point", "hectares", "name", "site-address", "minimum-net-dwellings", "start-date", "planning-permission-date", "maximum-net-dwellings", "site", "slug", "entity", "entry-date"]}}, "required": ["type", "geometry", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "array", "items": {"type": "object", "properties": {"errors": {"type": "array", "items": {}}, "file": {"type": "string"}, "name": {"type": "string"}}, "required": ["errors", "file", "name"]}}}, "required": ["contract", "tool", "start", "end", "duration", "analysis"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"contract" : "0xae2faf257ab388e522c110ea5600c1ff530b371f", "tool" : "honeybadger", "start" : 1565849469.5891247, "end" : 1565849529.9913204, "duration" : 60.40219569206238, "analysis" : [{"errors" : [], "file" : "/unique_chucks/32/0xae2faf257ab388e522c110ea5600c1ff530b371f.sol", "name" : "BXBC"}, {"errors" : [], "file" : "/unique_chucks/32/0xae2faf257ab388e522c110ea5600c1ff530b371f.sol", "name" : "StandardToken"}, {"errors" : [], "file" : "/unique_chucks/32/0xae2faf257ab388e522c110ea5600c1ff530b371f.sol", "name" : "Token"}]}
json_instruct
{"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "array", "items": {"type": "object", "properties": {"errors": {"type": "array", "items": {}}, "file": {"type": "string"}, "name": {"type": "string"}}, "required": ["errors", "file", "name"]}}}, "required": ["contract", "tool", "start", "end", "duration", "analysis"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"tor_password": {"type": "string"}, "verbose_logging": {"type": "boolean"}}, "required": ["tor_password", "verbose_logging"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"tor_password" : "enter_your_password_here", "verbose_logging" : false}
json_instruct
{"type": "object", "properties": {"tor_password": {"type": "string"}, "verbose_logging": {"type": "boolean"}}, "required": ["tor_password", "verbose_logging"], "$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"}, "contents": {"type": "array", "items": {"type": "integer"}}}, "required": ["name", "contents"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "birthday7", "contents" : [289]}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "contents": {"type": "array", "items": {"type": "integer"}}}, "required": ["name", "contents"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"name": {"type": "string"}, "address": {"type": "string"}, "age": {"type": "string"}, "bookPage": {"type": "string"}}, "required": ["name", "address", "age", "bookPage"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "Customer Nine", "address" : "090 Ninth St", "age" : "90", "bookPage" : ""}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "address": {"type": "string"}, "age": {"type": "string"}, "bookPage": {"type": "string"}}, "required": ["name", "address", "age", "bookPage"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"name": {"type": "string"}, "flags": {"type": "integer"}, "props": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "name": {"type": "string"}, "flags": {"type": "integer"}}, "required": ["type", "name", "flags"]}}}, "required": ["name", "flags", "props"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "communityCommunityEntryPhaseTimePeriodData", "flags" : 2, "props" : [{"type" : "CName", "name" : "periodName", "flags" : 6627016704}, {"type" : "array:worldGlobalNodeID", "name" : "spotNodeIds", "flags" : 6627016704}, {"type" : "Bool", "name" : "isSequence", "flags" : 6627016704}]}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "flags": {"type": "integer"}, "props": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "name": {"type": "string"}, "flags": {"type": "integer"}}, "required": ["type", "name", "flags"]}}}, "required": ["name", "flags", "props"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"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" : [[[-91.038748, 33.385538], [-91.0377, 33.399549], [-90.968041, 33.400993], [-90.970202, 33.398719], [-90.970365, 33.395834], [-90.968016, 33.393866], [-90.96472, 33.392985], [-90.967986, 33.393071], [-90.971794, 33.391156], [-90.971918, 33.371753], [-91.006097, 33.370947], [-91.006289, 33.385863], [-91.038748, 33.385538]]]}, "type" : "Feature", "properties" : {"cartodb_id" : 35347}}]}
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#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"keV": {"type": "array", "items": {"type": "number"}}, "intensity": {"type": "array", "items": {"type": "number"}}, "halfLife": {"type": "array", "items": {"type": "string"}}}, "required": ["keV", "intensity", "halfLife"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"keV" : [1.48, 11.878, 11.924, 13.284, 13.292, 13.469, 345.2, 432.5, 597.4, 609.8, 840.9, 941.1, 956.2, 987.9, 1082.1, 1191.2, 1207.9, 1246.9, 1373.4, 1427.2, 1450.1, 1552.8, 1599.0, 1701.0, 1724.5, 1795.3, 1944.0, 2029.4, 2091.2, 2234.4, 2245.6, 2304.0, 2417.3, 2446.9, 2455.1, 2542.9, 2550.2, 2565.4, 2584.3, 2601.5, 2724.5, 2871.9, 3007.7, 3396.6, 3479.3, 3539.3, 3555.0, 3625.2, 3655.9, 3683.8, 3741.4, 3774.5, 3827.1, 3954.8], "intensity" : [0.0047, 0.035, 0.067, 0.0047, 0.0092, 0.00092, 46.0, 2.3, 1.33, 2.8, 2.9, 2.5, 4.2, 1.7, 2.5, 0.87, 4.4, 1.6, 1.5, 7.0, 1.8, 0.83, 0.97, 2.1, 2.7, 0.87, 1.1, 1.0, 0.69, 2.9, 0.28, 0.55, 2.2, 0.5, 2.2, 0.74, 1.6, 0.97, 1.8, 1.5, 0.69, 0.64, 3.0, 7.4, 0.69, 1.29, 0.51, 1.06, 3.8, 2.3, 0.69, 2.9, 1.1, 0.78], "halfLife" : ["32.9 s"]}
json_instruct
{"type": "object", "properties": {"keV": {"type": "array", "items": {"type": "number"}}, "intensity": {"type": "array", "items": {"type": "number"}}, "halfLife": {"type": "array", "items": {"type": "string"}}}, "required": ["keV", "intensity", "halfLife"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"target": {"type": "string"}, "coinname": {"type": "string"}, "giturl": {"type": "string"}, "branch": {"type": "string"}, "qtwin32": {"type": "string"}, "qtwin64": {"type": "string"}, "qtlinux": {"type": "string"}, "win32qt": {"type": "integer"}, "win64qt": {"type": "integer"}, "rpidaemon": {"type": "integer"}, "linuxdaemon": {"type": "integer"}, "linuxqt": {"type": "integer"}}, "required": ["target", "coinname", "giturl", "branch", "qtwin32", "qtwin64", "qtlinux", "win32qt", "win64qt", "rpidaemon", "linuxdaemon", "linuxqt"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"target" : "nimbus", "coinname" : "Nimbus", "giturl" : "https://github.com/MyCryptoCoins/Nimbus.git", "branch" : "master", "qtwin32" : "Nimbus-qt-mxe32.pro", "qtwin64" : "Nimbus-qt-mxe64.pro", "qtlinux" : "Nimbus-qt.pro", "win32qt" : 1, "win64qt" : 0, "rpidaemon" : 0, "linuxdaemon" : 0, "linuxqt" : 0}
json_instruct
{"type": "object", "properties": {"target": {"type": "string"}, "coinname": {"type": "string"}, "giturl": {"type": "string"}, "branch": {"type": "string"}, "qtwin32": {"type": "string"}, "qtwin64": {"type": "string"}, "qtlinux": {"type": "string"}, "win32qt": {"type": "integer"}, "win64qt": {"type": "integer"}, "rpidaemon": {"type": "integer"}, "linuxdaemon": {"type": "integer"}, "linuxqt": {"type": "integer"}}, "required": ["target", "coinname", "giturl", "branch", "qtwin32", "qtwin64", "qtlinux", "win32qt", "win64qt", "rpidaemon", "linuxdaemon", "linuxqt"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"versions": {"type": "array", "items": {"type": "object", "properties": {"git-tree": {"type": "string"}, "version-string": {"type": "string"}, "port-version": {"type": "integer"}}, "required": ["git-tree", "version-string", "port-version"]}}}, "required": ["versions"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"versions" : [{"git-tree" : "2897d5bfecd8b5fad871a476cfba4c24f45144cd", "version-string" : "1.2", "port-version" : 2}, {"git-tree" : "b1c36a09a7ddb7b39b5136e2c2be1dc7974bea1a", "version-string" : "1.2-1", "port-version" : 0}, {"git-tree" : "ea0fd5fe0538d3752557ed44ad7c5c1f42dd0bed", "version-string" : "1.2", "port-version" : 0}]}
json_instruct
{"type": "object", "properties": {"versions": {"type": "array", "items": {"type": "object", "properties": {"git-tree": {"type": "string"}, "version-string": {"type": "string"}, "port-version": {"type": "integer"}}, "required": ["git-tree", "version-string", "port-version"]}}}, "required": ["versions"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"origin": {"type": "string"}, "download_link": {"type": "string"}, "views": {"type": "integer"}, "x_resolution": {"type": "integer"}, "filetype": {"type": "string"}, "site": {"type": "string"}, "y_resolution": {"type": "integer"}, "colors": {"type": "array", "items": {"type": "string"}}, "comments": {"type": "array", "items": {"type": "string"}}, "favorites": {"type": "integer"}, "descriptors": {"type": "array", "items": {"type": "string"}}, "uploader": {"type": "string"}}, "required": ["origin", "download_link", "views", "x_resolution", "filetype", "site", "y_resolution", "colors", "comments", "favorites", "descriptors", "uploader"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"origin" : "http://wallbase.cc/wallpaper/287796", "download_link" : "http://wallpapers.wallbase.cc/rozne/wallpaper-287796.png", "views" : 2306, "x_resolution" : 1440, "filetype" : "png", "site" : "wallbase.cc", "y_resolution" : 900, "colors" : ["#ffffff", "#998220", "#45250c", "#010100", "#883811"], "comments" : [""], "favorites" : 11, "descriptors" : ["women", "comics", "Deadpool Wade Wilson", "Marvel Comics"], "uploader" : " 4chan"}
json_instruct
{"type": "object", "properties": {"origin": {"type": "string"}, "download_link": {"type": "string"}, "views": {"type": "integer"}, "x_resolution": {"type": "integer"}, "filetype": {"type": "string"}, "site": {"type": "string"}, "y_resolution": {"type": "integer"}, "colors": {"type": "array", "items": {"type": "string"}}, "comments": {"type": "array", "items": {"type": "string"}}, "favorites": {"type": "integer"}, "descriptors": {"type": "array", "items": {"type": "string"}}, "uploader": {"type": "string"}}, "required": ["origin", "download_link", "views", "x_resolution", "filetype", "site", "y_resolution", "colors", "comments", "favorites", "descriptors", "uploader"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"hash": {"type": "string"}, "parentHash": {"type": "string"}, "number": {"type": "integer"}, "timestamp": {"type": "integer"}, "nonce": {"type": "string"}, "difficulty": {"type": "integer"}, "gasLimit": {"type": "object", "properties": {"_hex": {"type": "string"}}, "required": ["_hex"]}, "gasUsed": {"type": "object", "properties": {"_hex": {"type": "string"}}, "required": ["_hex"]}, "miner": {"type": "string"}, "extraData": {"type": "string"}, "transactions": {"type": "array", "items": {}}}, "required": ["hash", "parentHash", "number", "timestamp", "nonce", "difficulty", "gasLimit", "gasUsed", "miner", "extraData", "transactions"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"hash" : "0xcf6ea49dcc9405ecd848c7806f2044adf4a8fb1835044ace390cc86d243b35dd", "parentHash" : "0x44642ab513af9c355a163730f73de699d114f295a0050e1bbb2368e942fbad16", "number" : 4598, "timestamp" : 1438284473, "nonce" : "0x04be33097ab7617d", "difficulty" : 151699446270, "gasLimit" : {"_hex" : "0x1388"}, "gasUsed" : {"_hex" : "0x0"}, "miner" : "0xAa9164cC61C67064351596c21760491616AA95F4", "extraData" : "0x476574682f4c6976547275322f76312e302e302f6c696e75782f676f312e342e", "transactions" : []}
json_instruct
{"type": "object", "properties": {"hash": {"type": "string"}, "parentHash": {"type": "string"}, "number": {"type": "integer"}, "timestamp": {"type": "integer"}, "nonce": {"type": "string"}, "difficulty": {"type": "integer"}, "gasLimit": {"type": "object", "properties": {"_hex": {"type": "string"}}, "required": ["_hex"]}, "gasUsed": {"type": "object", "properties": {"_hex": {"type": "string"}}, "required": ["_hex"]}, "miner": {"type": "string"}, "extraData": {"type": "string"}, "transactions": {"type": "array", "items": {}}}, "required": ["hash", "parentHash", "number", "timestamp", "nonce", "difficulty", "gasLimit", "gasUsed", "miner", "extraData", "transactions"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"version": {"type": "number"}, "people": {"type": "array", "items": {"type": "object", "properties": {"person_id": {"type": "array", "items": {"type": "integer"}}, "pose_keypoints_2d": {"type": "array", "items": {"type": "number"}}, "face_keypoints_2d": {"type": "array", "items": {}}, "hand_left_keypoints_2d": {"type": "array", "items": {}}, "hand_right_keypoints_2d": {"type": "array", "items": {}}, "pose_keypoints_3d": {"type": "array", "items": {}}, "face_keypoints_3d": {"type": "array", "items": {}}, "hand_left_keypoints_3d": {"type": "array", "items": {}}, "hand_right_keypoints_3d": {"type": "array", "items": {}}}, "required": ["person_id", "pose_keypoints_2d", "face_keypoints_2d", "hand_left_keypoints_2d", "hand_right_keypoints_2d", "pose_keypoints_3d", "face_keypoints_3d", "hand_left_keypoints_3d", "hand_right_keypoints_3d"]}}}, "required": ["version", "people"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"version" : 1.3, "people" : [{"person_id" : [-1], "pose_keypoints_2d" : [153.349, 123.92, 0.827733, 117.992, 163.093, 0.776558, 115.999, 163.181, 0.850591, 125.851, 231.671, 0.786027, 133.652, 290.382, 0.930611, 123.918, 163.001, 0.62205, 131.684, 225.777, 0.0663554, 0, 0, 0, 117.994, 272.877, 0.649338, 116.047, 274.822, 0.726399, 120.022, 380.513, 0.758583, 106.262, 476.6, 0.834765, 119.993, 272.847, 0.561473, 131.721, 374.718, 0.678499, 131.691, 462.853, 0.802654, 149.42, 116.105, 0.929934, 0, 0, 0, 131.698, 116.176, 0.945399, 0, 0, 0, 165.072, 476.476, 0.81743, 163.058, 466.819, 0.710411, 127.83, 474.584, 0.42877, 135.71, 492.197, 0.777134, 125.881, 494.199, 0.764727, 100.369, 484.422, 0.771404], "face_keypoints_2d" : [], "hand_left_keypoints_2d" : [], "hand_right_keypoints_2d" : [], "pose_keypoints_3d" : [], "face_keypoints_3d" : [], "hand_left_keypoints_3d" : [], "hand_right_keypoints_3d" : []}]}
json_instruct
{"type": "object", "properties": {"version": {"type": "number"}, "people": {"type": "array", "items": {"type": "object", "properties": {"person_id": {"type": "array", "items": {"type": "integer"}}, "pose_keypoints_2d": {"type": "array", "items": {"type": "number"}}, "face_keypoints_2d": {"type": "array", "items": {}}, "hand_left_keypoints_2d": {"type": "array", "items": {}}, "hand_right_keypoints_2d": {"type": "array", "items": {}}, "pose_keypoints_3d": {"type": "array", "items": {}}, "face_keypoints_3d": {"type": "array", "items": {}}, "hand_left_keypoints_3d": {"type": "array", "items": {}}, "hand_right_keypoints_3d": {"type": "array", "items": {}}}, "required": ["person_id", "pose_keypoints_2d", "face_keypoints_2d", "hand_left_keypoints_2d", "hand_right_keypoints_2d", "pose_keypoints_3d", "face_keypoints_3d", "hand_left_keypoints_3d", "hand_right_keypoints_3d"]}}}, "required": ["version", "people"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"feedstocks": {"type": "array", "items": {"type": "string"}}}, "required": ["feedstocks"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"feedstocks" : ["classyconf"]}
json_instruct
{"type": "object", "properties": {"feedstocks": {"type": "array", "items": {"type": "string"}}}, "required": ["feedstocks"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "array", "items": {"type": "object", "properties": {"e_id": {"type": "string"}, "title": {"type": "string"}, "content": {"type": "string"}, "picNo": {"type": "string"}, "picUrl": {"type": "array", "items": {}}}, "required": ["e_id", "title", "content", "picNo", "picUrl"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"e_id" : "14991", "title" : "\u620f\u5267\u5bb6\u5965\u5c3c\u5c14\u83b7\u8bfa\u8d1d\u5c14\u6587\u5b66\u5956", "content" : "\n\u00a0\u00a0\u00a0\u00a0\u572885\u5e74\u524d\u7684\u4eca\u5929\uff0c1936\u5e7412\u670810\u65e5(\u519c\u53861936\u5e7410\u670827\u65e5)\uff0c\u620f\u5267\u5bb6\u5965\u5c3c\u5c14\u83b7\u8bfa\u8d1d\u5c14\u6587\u5b66\u5956\u30021936\u5e7412\u670810\u65e5\uff0c\u591a\u4ea7\u5267\u4f5c\u5bb6E\u00b7\u5965\u5c3c\u5c14\u83b7\u8bfa\u8d1d\u5c14\u6587\u5b66\u5956\u3002\u5965\u5c3c\u5c14\u66fe\u4e09\u6b21\u83b7\u5f97\u666e\u5229\u7b56\u5956\u3002\u8fc4\u4eca\u4e3a\u6b62\u4ed6\u5df2\u5199\u4e8620\u591a\u90e8\u4f5c\u54c1\u3002\u4ed6\u662f\u4e00\u4f4d\u4ece\u4e0d\u6ee1\u8db3\u7684\u5267\u4f5c\u5bb6\u3002\u5965\u5c3c\u5c14\u5e74\u8f7b\u7684\u65f6\u5019\u66fe\u4e58\u8239\u53bb\u5357\u7f8e\u3002\u4ed6\u572820\u5e74\u4ee3\u521d\u521b\u4f5c\u7684\u65e9\u671f\u4f5c\u54c1\u4e2d\uff0c\u7ecf\u5e38\u63cf\u5199\u822a\u6d77\u751f\u6d3b\u3002\u8fd9\u4e9b\u90fd\u662f\u7b80\u5355\u7684\u72ec\u5e55\u5267\uff0c\u4e24\u540d\u6f14\u5458\u7ad9\u5728\u6447\u6447\u6643\u6643\u7684\u6728\u677f\u7bb1\u4e0a\u5c31\u50cf\u6728\u7b4f\u4e0a\u7684\u6d41\u6d6a\u8005\u4e00\u6837\u3002\u4ed6\u73b0\u5728\u70ed\u8877\u4e8e\u521b\u4f5c\u8f83\u957f\u7684\u4f5c\u54c1\uff0c\u4f8b\u5982\u4ed6\u7684\u4e09\u90e8\u66f2\u300a\u54c0\u60bc\u300b\uff081931\uff09\u3002\u4ed6\u5728\u98ce\u683c\u4e0a\u4e00\u76f4\u5728\u4e0d\u65ad\u53d8\u5316\u3002\u4ed6\u5927\u91cf\u5730\u501f\u9274\u4e86\u53e4\u5e0c\u814a\u620f\u5267\u548c\u73b0\u4ee3\u7684\u6cd5\u56fd\u5b58\u5728\u4e3b\u4e49\u54f2\u5b66\u300250\u5c81\u7684\u5965\u5c3c\u5c14\u60a3\u6709\u5c11\u89c1\u7684\u6162\u6027\u8870\u9000\u75c7\u3002", "picNo" : "0", "picUrl" : []}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"e_id": {"type": "string"}, "title": {"type": "string"}, "content": {"type": "string"}, "picNo": {"type": "string"}, "picUrl": {"type": "array", "items": {}}}, "required": ["e_id", "title", "content", "picNo", "picUrl"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"ast": {"type": "null"}, "code": {"type": "string"}, "map": {"type": "object", "properties": {"version": {"type": "integer"}, "sources": {"type": "array", "items": {"type": "string"}}, "names": {"type": "array", "items": {"type": "string"}}, "mappings": {"type": "string"}, "sourcesContent": {"type": "array", "items": {"type": "string"}}}, "required": ["version", "sources", "names", "mappings", "sourcesContent"]}, "metadata": {"type": "object", "properties": {}, "required": []}, "sourceType": {"type": "string"}}, "required": ["ast", "code", "map", "metadata", "sourceType"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"ast" : null, "code" : "var _jsxFileName = \"/Users/amir/Places/src/components/Review/Review.js\";\nimport './Review.css';\nimport { Rate } from 'antd';\nimport { Row, Col } from 'antd';\nimport { jsxDEV as _jsxDEV } from \"react/jsx-dev-runtime\";\n\nfunction Review() {\n let name = \"Johnny Li\";\n return /*#__PURE__*/_jsxDEV(\"div\", {\n children: /*#__PURE__*/_jsxDEV(Row, {\n children: /*#__PURE__*/_jsxDEV(Col, {\n className: \"reviewName\",\n flex: 2.5,\n children: name\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 11,\n columnNumber: 17\n }, this)\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 10,\n columnNumber: 13\n }, this)\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 9,\n columnNumber: 9\n }, this);\n}\n\n_c = Review;\nexport default Review;\n\nvar _c;\n\n$RefreshReg$(_c, \"Review\");", "map" : {"version" : 3, "sources" : ["/Users/amir/Places/src/components/Review/Review.js"], "names" : ["Rate", "Row", "Col", "Review", "name"], "mappings" : ";AAAA,OAAO,cAAP;AACA,SAASA,IAAT,QAAqB,MAArB;AACA,SAASC,GAAT,EAAcC,GAAd,QAAyB,MAAzB;;;AAGA,SAASC,MAAT,GAAkB;AACd,MAAIC,IAAI,GAAG,WAAX;AACA,sBACI;AAAA,2BACI,QAAC,GAAD;AAAA,6BACI,QAAC,GAAD;AAAK,QAAA,SAAS,EAAC,YAAf;AAA4B,QAAA,IAAI,EAAE,GAAlC;AAAA,kBAAwCA;AAAxC;AAAA;AAAA;AAAA;AAAA;AADJ;AAAA;AAAA;AAAA;AAAA;AADJ;AAAA;AAAA;AAAA;AAAA,UADJ;AAQH;;KAVQD,M;AAYT,eAAeA,MAAf", "sourcesContent" : ["import './Review.css'\nimport { Rate } from 'antd';\nimport { Row, Col } from 'antd';\n\n\nfunction Review() {\n let name = \"Johnny Li\"\n return (\n <div>\n <Row>\n <Col className=\"reviewName\" flex={2.5}>{name}</Col>\n {/* <Col className=\"reviewRating\" flex={2.5}><Rate allowHalf defaultValue={3.5} /></Col> */}\n </Row> \n </div>\n );\n}\n\nexport default Review;"]}, "metadata" : {}, "sourceType" : "module"}
json_instruct
{"type": "object", "properties": {"ast": {"type": "null"}, "code": {"type": "string"}, "map": {"type": "object", "properties": {"version": {"type": "integer"}, "sources": {"type": "array", "items": {"type": "string"}}, "names": {"type": "array", "items": {"type": "string"}}, "mappings": {"type": "string"}, "sourcesContent": {"type": "array", "items": {"type": "string"}}}, "required": ["version", "sources", "names", "mappings", "sourcesContent"]}, "metadata": {"type": "object", "properties": {}, "required": []}, "sourceType": {"type": "string"}}, "required": ["ast", "code", "map", "metadata", "sourceType"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"timestamp": {"type": "string"}, "data": {"type": "array", "items": {"type": "object", "properties": {"data_type": {"type": "string"}, "value": {"type": "string"}, "max": {"type": "string"}, "min": {"type": "string"}, "sd": {"type": "string"}}, "required": ["data_type", "value", "max", "min", "sd"]}}}, "required": ["timestamp", "data"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"timestamp" : "2020-11-07T14:48:00Z", "data" : [{"data_type" : "pm10", "value" : "9.43", "max" : "12.00", "min" : "6.00", "sd" : "1.33"}, {"data_type" : "pm2.5", "value" : "8.97", "max" : "12.00", "min" : "6.00", "sd" : "1.27"}, {"data_type" : "pm1", "value" : "4.80", "max" : "6.00", "min" : "3.00", "sd" : "1.02"}, {"data_type" : "pm10", "value" : "7.97", "max" : "10.00", "min" : "6.00", "sd" : "1.15", "sensor" : 2}, {"data_type" : "pm2.5", "value" : "7.30", "max" : "9.00", "min" : "5.00", "sd" : "1.10", "sensor" : 2}, {"data_type" : "pm1", "value" : "5.40", "max" : "6.00", "min" : "5.00", "sd" : "0.71", "sensor" : 2}, {"data_type" : "noise", "value" : "33.01", "max" : "39.36", "min" : "29.50", "sd" : "1.31"}, {"data_type" : "illuminance", "value" : "1198.11", "max" : "1271.00", "min" : "1174.00", "sd" : "23.58"}, {"data_type" : "irradiance", "value" : "0.00", "max" : "0.00", "min" : "0.00", "sd" : "0.00"}, {"data_type" : "temperature", "value" : "11.90", "max" : "12.07", "min" : "11.73", "sd" : "0.16"}, {"data_type" : "humidity", "value" : "80.18", "max" : "82.08", "min" : "78.27", "sd" : "0.89"}, {"data_type" : "presure", "value" : "692.87", "max" : "692.92", "min" : "692.81", "sd" : "0.13"}, {"data_type" : "voltage", "value" : "5.04", "max" : "5.04", "min" : "5.03", "sd" : "0.02"}, {"data_type" : "batery", "value" : "3.01", "max" : "3.14", "min" : "2.95", "sd" : "0.08"}, {"data_type" : "panel", "value" : "0.01", "max" : "0.05", "min" : "0.00", "sd" : "0.08"}]}
json_instruct
{"type": "object", "properties": {"timestamp": {"type": "string"}, "data": {"type": "array", "items": {"type": "object", "properties": {"data_type": {"type": "string"}, "value": {"type": "string"}, "max": {"type": "string"}, "min": {"type": "string"}, "sd": {"type": "string"}}, "required": ["data_type", "value", "max", "min", "sd"]}}}, "required": ["timestamp", "data"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"solution_size": {"type": "integer"}, "ok": {"type": "boolean"}, "resemblance": {"type": "number"}, "problem_id": {"type": "integer"}, "solution_spec_hash": {"type": "string"}}, "required": ["solution_size", "ok", "resemblance", "problem_id", "solution_spec_hash"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"solution_size" : 4612, "ok" : true, "resemblance" : 0.503474, "problem_id" : 2332, "solution_spec_hash" : "0589b3b901e3636b63933e861c1e9eb14a94427d"}
json_instruct
{"type": "object", "properties": {"solution_size": {"type": "integer"}, "ok": {"type": "boolean"}, "resemblance": {"type": "number"}, "problem_id": {"type": "integer"}, "solution_spec_hash": {"type": "string"}}, "required": ["solution_size", "ok", "resemblance", "problem_id", "solution_spec_hash"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"PREVALENCE_BY_GENDER_AGE_YEAR": {"type": "object", "properties": {"TRELLIS_NAME": {"type": "array", "items": {}}, "SERIES_NAME": {"type": "array", "items": {}}, "X_CALENDAR_YEAR": {"type": "array", "items": {}}, "Y_PREVALENCE_1000PP": {"type": "array", "items": {}}}, "required": ["TRELLIS_NAME", "SERIES_NAME", "X_CALENDAR_YEAR", "Y_PREVALENCE_1000PP"]}, "PREVALENCE_BY_MONTH": {"type": "object", "properties": {"X_CALENDAR_MONTH": {"type": "array", "items": {}}, "Y_PREVALENCE_1000PP": {"type": "array", "items": {}}}, "required": ["X_CALENDAR_MONTH", "Y_PREVALENCE_1000PP"]}, "CONDITIONS_BY_TYPE": {"type": "object", "properties": {"CONCEPT_NAME": {"type": "string"}, "COUNT_VALUE": {"type": "integer"}}, "required": ["CONCEPT_NAME", "COUNT_VALUE"]}, "AGE_AT_FIRST_DIAGNOSIS": {"type": "object", "properties": {"CATEGORY": {"type": "array", "items": {"type": "string"}}, "MIN_VALUE": {"type": "array", "items": {"type": "integer"}}, "P10_VALUE": {"type": "array", "items": {"type": "integer"}}, "P25_VALUE": {"type": "array", "items": {"type": "integer"}}, "MEDIAN_VALUE": {"type": "array", "items": {"type": "integer"}}, "P75_VALUE": {"type": "array", "items": {"type": "integer"}}, "P90_VALUE": {"type": "array", "items": {"type": "integer"}}, "MAX_VALUE": {"type": "array", "items": {"type": "integer"}}}, "required": ["CATEGORY", "MIN_VALUE", "P10_VALUE", "P25_VALUE", "MEDIAN_VALUE", "P75_VALUE", "P90_VALUE", "MAX_VALUE"]}}, "required": ["PREVALENCE_BY_GENDER_AGE_YEAR", "PREVALENCE_BY_MONTH", "CONDITIONS_BY_TYPE", "AGE_AT_FIRST_DIAGNOSIS"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"PREVALENCE_BY_GENDER_AGE_YEAR" : {"TRELLIS_NAME" : [], "SERIES_NAME" : [], "X_CALENDAR_YEAR" : [], "Y_PREVALENCE_1000PP" : []}, "PREVALENCE_BY_MONTH" : {"X_CALENDAR_MONTH" : [], "Y_PREVALENCE_1000PP" : []}, "CONDITIONS_BY_TYPE" : {"CONCEPT_NAME" : "Observation recorded from EHR", "COUNT_VALUE" : 64}, "AGE_AT_FIRST_DIAGNOSIS" : {"CATEGORY" : ["MALE", "FEMALE"], "MIN_VALUE" : [8, 7], "P10_VALUE" : [15, 18], "P25_VALUE" : [27, 21], "MEDIAN_VALUE" : [33, 26], "P75_VALUE" : [46, 49], "P90_VALUE" : [59, 62], "MAX_VALUE" : [68, 81]}}
json_instruct
{"type": "object", "properties": {"PREVALENCE_BY_GENDER_AGE_YEAR": {"type": "object", "properties": {"TRELLIS_NAME": {"type": "array", "items": {}}, "SERIES_NAME": {"type": "array", "items": {}}, "X_CALENDAR_YEAR": {"type": "array", "items": {}}, "Y_PREVALENCE_1000PP": {"type": "array", "items": {}}}, "required": ["TRELLIS_NAME", "SERIES_NAME", "X_CALENDAR_YEAR", "Y_PREVALENCE_1000PP"]}, "PREVALENCE_BY_MONTH": {"type": "object", "properties": {"X_CALENDAR_MONTH": {"type": "array", "items": {}}, "Y_PREVALENCE_1000PP": {"type": "array", "items": {}}}, "required": ["X_CALENDAR_MONTH", "Y_PREVALENCE_1000PP"]}, "CONDITIONS_BY_TYPE": {"type": "object", "properties": {"CONCEPT_NAME": {"type": "string"}, "COUNT_VALUE": {"type": "integer"}}, "required": ["CONCEPT_NAME", "COUNT_VALUE"]}, "AGE_AT_FIRST_DIAGNOSIS": {"type": "object", "properties": {"CATEGORY": {"type": "array", "items": {"type": "string"}}, "MIN_VALUE": {"type": "array", "items": {"type": "integer"}}, "P10_VALUE": {"type": "array", "items": {"type": "integer"}}, "P25_VALUE": {"type": "array", "items": {"type": "integer"}}, "MEDIAN_VALUE": {"type": "array", "items": {"type": "integer"}}, "P75_VALUE": {"type": "array", "items": {"type": "integer"}}, "P90_VALUE": {"type": "array", "items": {"type": "integer"}}, "MAX_VALUE": {"type": "array", "items": {"type": "integer"}}}, "required": ["CATEGORY", "MIN_VALUE", "P10_VALUE", "P25_VALUE", "MEDIAN_VALUE", "P75_VALUE", "P90_VALUE", "MAX_VALUE"]}}, "required": ["PREVALENCE_BY_GENDER_AGE_YEAR", "PREVALENCE_BY_MONTH", "CONDITIONS_BY_TYPE", "AGE_AT_FIRST_DIAGNOSIS"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"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" : 1917, "sex" : "M", "n" : 5, "prop" : 5.21e-06}, {"year" : 1931, "sex" : "M", "n" : 6, "prop" : 5.61e-06}, {"year" : 2015, "sex" : "M", "n" : 6, "prop" : 2.94e-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#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "license": {"type": "null"}, "starNum": {"type": "integer"}, "folkNum": {"type": "integer"}, "watchNum": {"type": "integer"}, "topic": {"type": "array", "items": {}}}, "required": ["name", "description", "license", "starNum", "folkNum", "watchNum", "topic"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "AlgorithmsByPython", "description" : "\u7b97\u6cd5/\u6570\u636e\u7ed3\u6784/Python/\u5251\u6307offer/\u673a\u5668\u5b66\u4e60/leetcode", "license" : null, "starNum" : 256, "folkNum" : 154, "watchNum" : 256, "topic" : []}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "license": {"type": "null"}, "starNum": {"type": "integer"}, "folkNum": {"type": "integer"}, "watchNum": {"type": "integer"}, "topic": {"type": "array", "items": {}}}, "required": ["name", "description", "license", "starNum", "folkNum", "watchNum", "topic"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}, "build": {"type": "string"}}, "required": ["start", "build"]}, "keywords": {"type": "array", "items": {}}, "author": {"type": "string"}, "license": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"babel-core": {"type": "string"}, "babel-preset-env": {"type": "string"}, "font-awesome": {"type": "string"}, "gulp": {"type": "string"}, "gulp-babel": {"type": "string"}, "gulp-concat": {"type": "string"}, "gulp-htmlmin": {"type": "string"}, "gulp-imagemin": {"type": "string"}, "gulp-sass": {"type": "string"}, "gulp-uglify": {"type": "string"}, "gulp-uglifycss": {"type": "string"}, "gulp-util": {"type": "string"}, "gulp-watch": {"type": "string"}, "gulp-webserver": {"type": "string"}, "run-sequence": {"type": "string"}}, "required": ["babel-core", "babel-preset-env", "font-awesome", "gulp", "gulp-babel", "gulp-concat", "gulp-htmlmin", "gulp-imagemin", "gulp-sass", "gulp-uglify", "gulp-uglifycss", "gulp-util", "gulp-watch", "gulp-webserver", "run-sequence"]}}, "required": ["name", "version", "description", "main", "scripts", "keywords", "author", "license", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "spa-gulp-automator", "version" : "1.0.0", "description" : "", "main" : "gulpfile.js", "scripts" : {"start" : "gulp", "build" : "gulp --production"}, "keywords" : [], "author" : "Xama-dev", "license" : "ISC", "devDependencies" : {"babel-core" : "6.26.3", "babel-preset-env" : "1.6.1", "font-awesome" : "4.7.0", "gulp" : "^4.0.0", "gulp-babel" : "7.0.1", "gulp-concat" : "2.6.1", "gulp-htmlmin" : "4.0.0", "gulp-imagemin" : "^7.1.0", "gulp-sass" : "4.0.1", "gulp-uglify" : "3.0.0", "gulp-uglifycss" : "1.0.9", "gulp-util" : "3.0.8", "gulp-watch" : "5.0.0", "gulp-webserver" : "0.9.1", "run-sequence" : "2.2.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"}, "build": {"type": "string"}}, "required": ["start", "build"]}, "keywords": {"type": "array", "items": {}}, "author": {"type": "string"}, "license": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"babel-core": {"type": "string"}, "babel-preset-env": {"type": "string"}, "font-awesome": {"type": "string"}, "gulp": {"type": "string"}, "gulp-babel": {"type": "string"}, "gulp-concat": {"type": "string"}, "gulp-htmlmin": {"type": "string"}, "gulp-imagemin": {"type": "string"}, "gulp-sass": {"type": "string"}, "gulp-uglify": {"type": "string"}, "gulp-uglifycss": {"type": "string"}, "gulp-util": {"type": "string"}, "gulp-watch": {"type": "string"}, "gulp-webserver": {"type": "string"}, "run-sequence": {"type": "string"}}, "required": ["babel-core", "babel-preset-env", "font-awesome", "gulp", "gulp-babel", "gulp-concat", "gulp-htmlmin", "gulp-imagemin", "gulp-sass", "gulp-uglify", "gulp-uglifycss", "gulp-util", "gulp-watch", "gulp-webserver", "run-sequence"]}}, "required": ["name", "version", "description", "main", "scripts", "keywords", "author", "license", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}, "compile": {"type": "string"}, "test": {"type": "string"}}, "required": ["start", "compile", "test"]}, "devDependencies": {"type": "object", "properties": {"@types/node": {"type": "string"}, "nodemon": {"type": "string"}, "prettier": {"type": "string"}, "ts-node": {"type": "string"}, "typegram": {"type": "string"}, "typescript": {"type": "string"}}, "required": ["@types/node", "nodemon", "prettier", "ts-node", "typegram", "typescript"]}, "dependencies": {"type": "object", "properties": {"telegraf": {"type": "string"}}, "required": ["telegraf"]}}, "required": ["name", "version", "description", "main", "scripts", "devDependencies", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "net-gross-tg-bot", "version" : "1.0.0", "description" : "Calculate net/gross through the Telegram", "main" : "index.js", "scripts" : {"start" : "node dist/index.js", "compile" : "tsc", "test" : "echo \"Error: no test specified\" && exit 1"}, "devDependencies" : {"@types/node" : "^14.14.41", "nodemon" : "^2.0.12", "prettier" : "^2.3.2", "ts-node" : "^10.2.1", "typegram" : "^3.4.3", "typescript" : "^4.4.2"}, "dependencies" : {"telegraf" : "^4.4.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"}, "compile": {"type": "string"}, "test": {"type": "string"}}, "required": ["start", "compile", "test"]}, "devDependencies": {"type": "object", "properties": {"@types/node": {"type": "string"}, "nodemon": {"type": "string"}, "prettier": {"type": "string"}, "ts-node": {"type": "string"}, "typegram": {"type": "string"}, "typescript": {"type": "string"}}, "required": ["@types/node", "nodemon", "prettier", "ts-node", "typegram", "typescript"]}, "dependencies": {"type": "object", "properties": {"telegraf": {"type": "string"}}, "required": ["telegraf"]}}, "required": ["name", "version", "description", "main", "scripts", "devDependencies", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"vendor": {"type": "string"}, "filename": {"type": "string"}, "release_type": {"type": "string"}, "version": {"type": "string"}, "java_version": {"type": "string"}, "jvm_impl": {"type": "string"}, "os": {"type": "string"}, "architecture": {"type": "string"}, "file_type": {"type": "string"}, "image_type": {"type": "string"}, "features": {"type": "array", "items": {}}, "url": {"type": "string"}, "md5": {"type": "string"}, "md5_file": {"type": "string"}, "sha1": {"type": "string"}, "sha1_file": {"type": "string"}, "sha256": {"type": "string"}, "sha256_file": {"type": "string"}, "sha512": {"type": "string"}, "sha512_file": {"type": "string"}, "size": {"type": "integer"}}, "required": ["vendor", "filename", "release_type", "version", "java_version", "jvm_impl", "os", "architecture", "file_type", "image_type", "features", "url", "md5", "md5_file", "sha1", "sha1_file", "sha256", "sha256_file", "sha512", "sha512_file", "size"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"vendor" : "adoptopenjdk", "filename" : "OpenJDK11U-jdk_x64_mac_hotspot_11.0.2_9.tar.gz", "release_type" : "ga", "version" : "11.0.2+9", "java_version" : "11.0.2+9", "jvm_impl" : "hotspot", "os" : "macosx", "architecture" : "x86_64", "file_type" : "tar.gz", "image_type" : "jdk", "features" : [], "url" : "https://github.com/AdoptOpenJDK/openjdk11-binaries/releases/download/jdk-11.0.2%2B9/OpenJDK11U-jdk_x64_mac_hotspot_11.0.2_9.tar.gz", "md5" : "6643ef11cb7e04b609f5f61ccfbf72f7", "md5_file" : "OpenJDK11U-jdk_x64_mac_hotspot_11.0.2_9.tar.gz.md5", "sha1" : "3d2a997940c326fc4b8ec6be77fc4a20cb8d05c4", "sha1_file" : "OpenJDK11U-jdk_x64_mac_hotspot_11.0.2_9.tar.gz.sha1", "sha256" : "fffd4ed283e5cd443760a8ec8af215c8ca4d33ec5050c24c1277ba64b5b5e81a", "sha256_file" : "OpenJDK11U-jdk_x64_mac_hotspot_11.0.2_9.tar.gz.sha256", "sha512" : "34c6b83dd4a23c76000faaeb7d73af3cfa798d74da28933c99fc04a7e0935fe542d88f108cca135376e949fefb33924e90959ef046ba1542ea914e1c32cc22d7", "sha512_file" : "OpenJDK11U-jdk_x64_mac_hotspot_11.0.2_9.tar.gz.sha512", "size" : 189838454}
json_instruct
{"type": "object", "properties": {"vendor": {"type": "string"}, "filename": {"type": "string"}, "release_type": {"type": "string"}, "version": {"type": "string"}, "java_version": {"type": "string"}, "jvm_impl": {"type": "string"}, "os": {"type": "string"}, "architecture": {"type": "string"}, "file_type": {"type": "string"}, "image_type": {"type": "string"}, "features": {"type": "array", "items": {}}, "url": {"type": "string"}, "md5": {"type": "string"}, "md5_file": {"type": "string"}, "sha1": {"type": "string"}, "sha1_file": {"type": "string"}, "sha256": {"type": "string"}, "sha256_file": {"type": "string"}, "sha512": {"type": "string"}, "sha512_file": {"type": "string"}, "size": {"type": "integer"}}, "required": ["vendor", "filename", "release_type", "version", "java_version", "jvm_impl", "os", "architecture", "file_type", "image_type", "features", "url", "md5", "md5_file", "sha1", "sha1_file", "sha256", "sha256_file", "sha512", "sha512_file", "size"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"endpoint": {"type": "string"}, "port": {"type": "string"}, "user": {"type": "string"}, "password": {"type": "string"}, "protocol": {"type": "string"}}, "required": ["endpoint", "port", "user", "password", "protocol"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"endpoint" : "< Host url >", "port" : "< Host Port >", "user" : "< Elasticsearch user >", "password" : "< User password >", "protocol" : "< Http/Https >"}
json_instruct
{"type": "object", "properties": {"endpoint": {"type": "string"}, "port": {"type": "string"}, "user": {"type": "string"}, "password": {"type": "string"}, "protocol": {"type": "string"}}, "required": ["endpoint", "port", "user", "password", "protocol"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"latest_version": {"type": "array", "items": {"type": "string"}}, "meta": {"type": "object", "properties": {"description": {"type": "string"}, "homepage": {"type": "string"}}, "required": ["description", "homepage"]}, "versions": {"type": "object", "properties": {}, "required": []}}, "required": ["latest_version", "meta", "versions"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"latest_version" : ["1.0"], "meta" : {"description" : "Opens a Python module in a text editor - e.g, \"pysrc django.core.management\"", "homepage" : "UNKNOWN"}, "versions" : {}}
json_instruct
{"type": "object", "properties": {"latest_version": {"type": "array", "items": {"type": "string"}}, "meta": {"type": "object", "properties": {"description": {"type": "string"}, "homepage": {"type": "string"}}, "required": ["description", "homepage"]}, "versions": {"type": "object", "properties": {}, "required": []}}, "required": ["latest_version", "meta", "versions"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"resourceType": {"type": "string"}, "id": {"type": "string"}, "text": {"type": "object", "properties": {"status": {"type": "string"}, "div": {"type": "string"}}, "required": ["status", "div"]}, "code": {"type": "object", "properties": {"coding": {"type": "array", "items": {"type": "object", "properties": {"system": {"type": "string"}, "code": {"type": "string"}, "display": {"type": "string"}}, "required": ["system", "code", "display"]}}}, "required": ["coding"]}}, "required": ["resourceType", "id", "text", "code"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"resourceType" : "ObservationDefinition", "id" : "observation-definition-loinc-4544-3", "text" : {"status" : "generated", "div" : "<div xmlns=\"http://www.w3.org/1999/xhtml\">Observation for Hematocrit [Volume Fraction] of Blood by Automated count</div>"}, "code" : {"coding" : [{"system" : "http://loinc.org", "code" : "4544-3", "display" : "Hematocrit [Volume Fraction] of Blood by Automated count"}]}}
json_instruct
{"type": "object", "properties": {"resourceType": {"type": "string"}, "id": {"type": "string"}, "text": {"type": "object", "properties": {"status": {"type": "string"}, "div": {"type": "string"}}, "required": ["status", "div"]}, "code": {"type": "object", "properties": {"coding": {"type": "array", "items": {"type": "object", "properties": {"system": {"type": "string"}, "code": {"type": "string"}, "display": {"type": "string"}}, "required": ["system", "code", "display"]}}}, "required": ["coding"]}}, "required": ["resourceType", "id", "text", "code"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"schemaType": {"type": "string"}, "id": {"type": "string"}, "displayName": {"type": "string"}, "description": {"type": "string"}}, "required": ["schemaType", "id", "displayName", "description"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"schemaType" : "NERDPACK", "id" : "70584397-4426-4b8a-a8e2-8bd091ede5e4", "displayName" : "Integrations Manager", "description" : "Reduce the effort to create, manage and deploy new integrations."}
json_instruct
{"type": "object", "properties": {"schemaType": {"type": "string"}, "id": {"type": "string"}, "displayName": {"type": "string"}, "description": {"type": "string"}}, "required": ["schemaType", "id", "displayName", "description"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"parent": {"type": "string"}}, "required": ["parent"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"parent" : "allthecompressed:block/spruce_log_block_1x"}
json_instruct
{"type": "object", "properties": {"parent": {"type": "string"}}, "required": ["parent"], "$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"}, "lint": {"type": "string"}}, "required": ["test", "lint"]}, "author": {"type": "string"}, "license": {"type": "string"}, "engines": {"type": "object", "properties": {"node": {"type": "string"}}, "required": ["node"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "devDependencies": {"type": "object", "properties": {"chai": {"type": "string"}, "eslint": {"type": "string"}, "mocha": {"type": "string"}}, "required": ["chai", "eslint", "mocha"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}}, "required": ["name", "version", "description", "main", "scripts", "author", "license", "engines", "repository", "devDependencies", "keywords", "bugs", "homepage"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "buffer-indexof-polyfill", "version" : "1.0.1", "description" : "This is a polyfill for Buffer#indexOf introduced in NodeJS 4.0.", "main" : "index.js", "scripts" : {"test" : "mocha", "lint" : "eslint ."}, "author" : "https://github.com/sarosia", "license" : "MIT", "engines" : {"node" : ">=0.10"}, "repository" : {"type" : "git", "url" : "git+https://github.com/sarosia/buffer-indexof-polyfill.git"}, "devDependencies" : {"chai" : "^3.3.0", "eslint" : "^1.10.3", "mocha" : "^2.3.3"}, "keywords" : ["buffer", "indexof", "polyfill"], "bugs" : {"url" : "https://github.com/sarosia/buffer-indexof-polyfill/issues"}, "homepage" : "https://github.com/sarosia/buffer-indexof-polyfill#readme"}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "lint": {"type": "string"}}, "required": ["test", "lint"]}, "author": {"type": "string"}, "license": {"type": "string"}, "engines": {"type": "object", "properties": {"node": {"type": "string"}}, "required": ["node"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "devDependencies": {"type": "object", "properties": {"chai": {"type": "string"}, "eslint": {"type": "string"}, "mocha": {"type": "string"}}, "required": ["chai", "eslint", "mocha"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}}, "required": ["name", "version", "description", "main", "scripts", "author", "license", "engines", "repository", "devDependencies", "keywords", "bugs", "homepage"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"id": {"type": "integer"}, "citation_title": {"type": "string"}, "citation_author": {"type": "array", "items": {"type": "string"}}, "citation_publication_date": {"type": "string"}, "issue_date": {"type": "string"}, "revision_date": {"type": "string"}, "topics": {"type": "array", "items": {"type": "string"}}, "program": {"type": "array", "items": {"type": "string"}}, "projects": {"type": "null"}, "working_groups": {"type": "null"}, "abstract": {"type": "string"}, "acknowledgement": {"type": "string"}}, "required": ["id", "citation_title", "citation_author", "citation_publication_date", "issue_date", "revision_date", "topics", "program", "projects", "working_groups", "abstract", "acknowledgement"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : 487, "citation_title" : "Income Tax Incentives to Promote Saving", "citation_author" : ["Charles Becker", "Don Fullerton"], "citation_publication_date" : "1980-06-01", "issue_date" : "1980-06-01", "revision_date" : "None", "topics" : ["Macroeconomics"], "program" : ["Public Economics"], "projects" : null, "working_groups" : null, "abstract" : "\n\nWe examine six alternative plans which might be discussed in an effort to increase consumer savings through the personal income tax system in the United States. These plans attempt to affect savings through an increase in the real rate of return either by direct tax cuts on savings or by indexing tax rates against inflation. The paper presents estimates of static and dynamic resource allocation effects for the six plans, and compares them to results obtained in earlier work on the impacts of more sweeping reforms. A medium-scale numerical general equilibrium model is used which integrates the U. S. tax system with consumer demand behavior by household and producer behavior by industry.\n\n", "acknowledgement" : "\n"}
json_instruct
{"type": "object", "properties": {"id": {"type": "integer"}, "citation_title": {"type": "string"}, "citation_author": {"type": "array", "items": {"type": "string"}}, "citation_publication_date": {"type": "string"}, "issue_date": {"type": "string"}, "revision_date": {"type": "string"}, "topics": {"type": "array", "items": {"type": "string"}}, "program": {"type": "array", "items": {"type": "string"}}, "projects": {"type": "null"}, "working_groups": {"type": "null"}, "abstract": {"type": "string"}, "acknowledgement": {"type": "string"}}, "required": ["id", "citation_title", "citation_author", "citation_publication_date", "issue_date", "revision_date", "topics", "program", "projects", "working_groups", "abstract", "acknowledgement"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"name": {"type": "string"}, "displayName": {"type": "string"}, "description": {"type": "string"}, "dynamic": {"type": "boolean"}, "fields": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "displayName": {"type": "string"}, "valueConstraints": {"type": "array", "items": {"type": "object", "properties": {"value": {"type": "object", "properties": {"type": {"type": "string"}, "value": {"type": "string"}}, "required": ["type", "value"]}, "displayValue": {"type": "string"}, "propertyList": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "value": {"type": "string"}}, "required": ["name", "value"]}}}, "required": ["value", "displayValue", "propertyList"]}}}, "required": ["name", "displayName", "valueConstraints"]}}}, "required": ["name", "displayName", "description", "dynamic", "fields"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "timix:igVdReference", "displayName" : "Media Content", "description" : "", "dynamic" : false, "fields" : [{"name" : "ti:mediaPicker", "displayName" : "Media Source", "valueConstraints" : [{"value" : {"type" : "String", "value" : "widen"}, "displayValue" : "Widen (DAM)", "propertyList" : [{"name" : "addMixin", "value" : "timix:igVdPickerWd"}]}, {"value" : {"type" : "String", "value" : "jContent"}, "displayValue" : "jContent", "propertyList" : [{"name" : "addMixin", "value" : "timix:igVdPickerJc"}]}]}]}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "displayName": {"type": "string"}, "description": {"type": "string"}, "dynamic": {"type": "boolean"}, "fields": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "displayName": {"type": "string"}, "valueConstraints": {"type": "array", "items": {"type": "object", "properties": {"value": {"type": "object", "properties": {"type": {"type": "string"}, "value": {"type": "string"}}, "required": ["type", "value"]}, "displayValue": {"type": "string"}, "propertyList": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "value": {"type": "string"}}, "required": ["name", "value"]}}}, "required": ["value", "displayValue", "propertyList"]}}}, "required": ["name", "displayName", "valueConstraints"]}}}, "required": ["name", "displayName", "description", "dynamic", "fields"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"template_parameters": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "value": {"type": "string"}}, "required": ["name", "value"]}}}, "required": ["template_parameters"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"template_parameters" : [{"name" : "num_nodes", "value" : "1"}, {"name" : "num_workers_per_node", "value" : "1"}, {"name" : "num_inter_threads", "value" : "2"}, {"name" : "sockets_per_node", "value" : "1"}, {"name" : "physical_cores", "value" : "1"}, {"name" : "total_steps", "value" : "50"}, {"name" : "log_steps", "value" : "20"}, {"name" : "batch_size", "value" : "128"}, {"name" : "data_path", "value" : "/home/nfsshare/mnist"}, {"name" : "output_path", "value" : "/home/nfsshare/mnist/checkpoints"}, {"name" : "no_horovod", "value" : "False"}, {"name" : "learning_rate", "value" : "0.001"}, {"name" : "gpus", "value" : "0"}, {"name" : "node_selector", "value" : "node-type=highmem"}, {"name" : "memory", "value" : "null"}]}
json_instruct
{"type": "object", "properties": {"template_parameters": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "value": {"type": "string"}}, "required": ["name", "value"]}}}, "required": ["template_parameters"], "$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": {"variantName": {"type": "string"}, "type": {"type": "string"}, "props": {"type": "object", "properties": {"defaultValue": {"type": "string"}, "data": {"type": "array", "items": {"type": "string"}}, "data-umyid": {"type": "string"}}, "required": ["defaultValue", "data", "data-umyid"]}}, "required": ["variantName", "type", "props"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"variantName" : "one-column array", "type" : "SelectList", "props" : {"defaultValue" : "orange", "data" : ["orange", "red", "blue", "purple"], "data-umyid" : "11"}}, {"variantName" : "multiple, one-column array", "type" : "SelectList", "props" : {"defaultValue" : "orange", "multiple" : true, "data" : ["orange", "red", "blue", "purple"], "data-umyid" : "11"}}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"variantName": {"type": "string"}, "type": {"type": "string"}, "props": {"type": "object", "properties": {"defaultValue": {"type": "string"}, "data": {"type": "array", "items": {"type": "string"}}, "data-umyid": {"type": "string"}}, "required": ["defaultValue", "data", "data-umyid"]}}, "required": ["variantName", "type", "props"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"version": {"type": "string"}, "tasks": {"type": "array", "items": {"type": "object", "properties": {"label": {"type": "string"}, "type": {"type": "string"}, "command": {"type": "string"}, "args": {"type": "array", "items": {"type": "string"}}, "problemMatcher": {"type": "array", "items": {"type": "string"}}, "group": {"type": "object", "properties": {"kind": {"type": "string"}, "isDefault": {"type": "boolean"}}, "required": ["kind", "isDefault"]}}, "required": ["label", "type", "command", "args", "problemMatcher", "group"]}}}, "required": ["version", "tasks"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"version" : "2.0.0", "tasks" : [{"label" : "build-in-container", "type" : "shell", "command" : "/usr/bin/sshpass", "args" : ["-p", "root", "ssh", "root@localhost", "-p", "2222", "/source/scripts/build.sh"], "problemMatcher" : ["$gcc"], "group" : {"kind" : "build", "isDefault" : true}}, {"label" : "run tests", "type" : "shell", "command" : "/usr/bin/sshpass", "args" : ["-p", "root", "ssh", "root@localhost", "-p", "2222", "/source/scripts/build.sh", "runUnitTest"], "problemMatcher" : ["$gcc"], "group" : {"kind" : "build", "isDefault" : true}}, {"label" : "prepare docker", "type" : "shell", "command" : "./scripts/prepare-docker.sh", "args" : [], "problemMatcher" : ["$gcc"], "group" : {"kind" : "build", "isDefault" : true}}, {"label" : "stop docker", "type" : "shell", "command" : "./scripts/stop-docker.sh", "args" : [], "problemMatcher" : ["$gcc"], "group" : {"kind" : "build", "isDefault" : true}}]}
json_instruct
{"type": "object", "properties": {"version": {"type": "string"}, "tasks": {"type": "array", "items": {"type": "object", "properties": {"label": {"type": "string"}, "type": {"type": "string"}, "command": {"type": "string"}, "args": {"type": "array", "items": {"type": "string"}}, "problemMatcher": {"type": "array", "items": {"type": "string"}}, "group": {"type": "object", "properties": {"kind": {"type": "string"}, "isDefault": {"type": "boolean"}}, "required": ["kind", "isDefault"]}}, "required": ["label", "type", "command", "args", "problemMatcher", "group"]}}}, "required": ["version", "tasks"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "frequency": {"type": "integer"}, "gender": {"type": "string"}}, "required": ["name", "frequency", "gender"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"name" : "ZEMIRAH", "frequency" : 0, "gender" : "male"}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "frequency": {"type": "integer"}, "gender": {"type": "string"}}, "required": ["name", "frequency", "gender"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"api": {"type": "string"}, "auth": {"type": "string"}, "authors": {"type": "array", "items": {"type": "string"}}, "build-depends": {"type": "array", "items": {}}, "depends": {"type": "array", "items": {}}, "description": {"type": "string"}, "license": {"type": "string"}, "name": {"type": "string"}, "perl": {"type": "string"}, "provides": {"type": "object", "properties": {"Acme::Cow": {"type": "string"}, "Acme::Cow::DragonAndCow": {"type": "string"}, "Acme::Cow::Example": {"type": "string"}, "Acme::Cow::Frogs": {"type": "string"}, "Acme::Cow::MechAndCow": {"type": "string"}, "Acme::Cow::Stegosaurus": {"type": "string"}, "Acme::Cow::TuxStab": {"type": "string"}}, "required": ["Acme::Cow", "Acme::Cow::DragonAndCow", "Acme::Cow::Example", "Acme::Cow::Frogs", "Acme::Cow::MechAndCow", "Acme::Cow::Stegosaurus", "Acme::Cow::TuxStab"]}, "resources": {"type": "array", "items": {"type": "string"}}, "source-url": {"type": "string"}, "tags": {"type": "array", "items": {}}, "test-depends": {"type": "array", "items": {}}, "version": {"type": "string"}}, "required": ["api", "auth", "authors", "build-depends", "depends", "description", "license", "name", "perl", "provides", "resources", "source-url", "tags", "test-depends", "version"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"api" : "perl6", "auth" : "cpan:ELIZABETH", "authors" : ["Elizabeth Mattijsen"], "build-depends" : [], "depends" : [], "description" : "Talking barnyard animals (or ASCII art in general)", "license" : "Artistic-2.0", "name" : "Acme::Cow", "perl" : "6.d", "provides" : {"Acme::Cow" : "lib/Acme/Cow.pm6", "Acme::Cow::DragonAndCow" : "lib/Acme/Cow/DragonAndCow.pm6", "Acme::Cow::Example" : "lib/Acme/Cow/Example.pm6", "Acme::Cow::Frogs" : "lib/Acme/Cow/Frogs.pm6", "Acme::Cow::MechAndCow" : "lib/Acme/Cow/MechAndCow.pm6", "Acme::Cow::Stegosaurus" : "lib/Acme/Cow/Stegosaurus.pm6", "Acme::Cow::TuxStab" : "lib/Acme/Cow/TuxStab.pm6"}, "resources" : ["cows/bong.cow", "cows/bunny.cow", "cows/cheese.cow", "cows/cower.cow", "cows/daemon.cow", "cows/default.cow", "cows/dragon.cow", "cows/elephant-in-snake.cow", "cows/elephant.cow", "cows/eyes.cow", "cows/flaming-sheep.cow", "cows/ghostbusters.cow", "cows/head-in.cow", "cows/hellokitty.cow", "cows/jkh.cow", "cows/kiss.cow", "cows/kitty.cow", "cows/koala.cow", "cows/kosh.cow", "cows/luke-koala.cow", "cows/meow.cow", "cows/milk.cow", "cows/moofasa.cow", "cows/moose.cow", "cows/mutilated.cow", "cows/ren.cow", "cows/satanic.cow", "cows/sheep.cow", "cows/skeleton.cow", "cows/small.cow", "cows/sodomized.cow", "cows/stimpy.cow", "cows/supermilker.cow", "cows/surgery.cow", "cows/telebears.cow", "cows/three-eyes.cow", "cows/turkey.cow", "cows/turtle.cow", "cows/tux.cow", "cows/udder.cow", "cows/vader-koala.cow", "cows/vader.cow", "cows/www.cow", "cows/zen-beavis.cow"], "source-url" : "https://github.com/lizmat/Acme-Cow6.git", "tags" : [], "test-depends" : [], "version" : "0.0.3"}
json_instruct
{"type": "object", "properties": {"api": {"type": "string"}, "auth": {"type": "string"}, "authors": {"type": "array", "items": {"type": "string"}}, "build-depends": {"type": "array", "items": {}}, "depends": {"type": "array", "items": {}}, "description": {"type": "string"}, "license": {"type": "string"}, "name": {"type": "string"}, "perl": {"type": "string"}, "provides": {"type": "object", "properties": {"Acme::Cow": {"type": "string"}, "Acme::Cow::DragonAndCow": {"type": "string"}, "Acme::Cow::Example": {"type": "string"}, "Acme::Cow::Frogs": {"type": "string"}, "Acme::Cow::MechAndCow": {"type": "string"}, "Acme::Cow::Stegosaurus": {"type": "string"}, "Acme::Cow::TuxStab": {"type": "string"}}, "required": ["Acme::Cow", "Acme::Cow::DragonAndCow", "Acme::Cow::Example", "Acme::Cow::Frogs", "Acme::Cow::MechAndCow", "Acme::Cow::Stegosaurus", "Acme::Cow::TuxStab"]}, "resources": {"type": "array", "items": {"type": "string"}}, "source-url": {"type": "string"}, "tags": {"type": "array", "items": {}}, "test-depends": {"type": "array", "items": {}}, "version": {"type": "string"}}, "required": ["api", "auth", "authors", "build-depends", "depends", "description", "license", "name", "perl", "provides", "resources", "source-url", "tags", "test-depends", "version"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"IsSuccessStatusCode": {"type": "boolean"}, "StatusCode": {"type": "integer"}, "Headers": {"type": "object", "properties": {"SPRequestGuid": {"type": "string"}, "SPClientServiceRequestDuration": {"type": "string"}, "X-SharePointHealthScore": {"type": "string"}, "X-SP-SERVERSTATE": {"type": "string"}}, "required": ["SPRequestGuid", "SPClientServiceRequestDuration", "X-SharePointHealthScore", "X-SP-SERVERSTATE"]}, "Response": {"type": "string"}}, "required": ["IsSuccessStatusCode", "StatusCode", "Headers", "Response"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"IsSuccessStatusCode" : true, "StatusCode" : 200, "Headers" : {"SPRequestGuid" : "fbf60ca0-60d1-3000-787b-4d96d28871e6", "SPClientServiceRequestDuration" : "28", "X-SharePointHealthScore" : "2", "X-SP-SERVERSTATE" : "ReadOnly=0"}, "Response" : "{\"value\":[{\"FileSystemObjectType\":0,\"Id\":1,\"ServerRedirectedEmbedUri\":null,\"ServerRedirectedEmbedUrl\":\"\",\"ContentTypeId\":\"0x0100E99C124EAF7E0141BBDA793F343DE3CB\",\"Title\":\"Item1\",\"ComplianceAssetId\":null,\"URLField1\":null,\"URLField2\":null,\"UserSingleField1Id\":null,\"UserSingleField1StringId\":null,\"UserMultiField1Id\":null,\"UserMultiField1StringId\":null,\"TaxonomyField1\":null,\"TaxonomyMultiField1\":[],\"ChoiceSingle1\":\"Option B\",\"ChoiceMulti1\":[\"Option B\"],\"LookupSingleField1Id\":null,\"LookupMultiField1Id\":[],\"ID\":1,\"Modified\":\"2021-12-15T08:43:37Z\",\"Created\":\"2021-12-15T08:43:36Z\",\"AuthorId\":11,\"EditorId\":11,\"OData__UIVersionString\":\"1.0\",\"Attachments\":false,\"GUID\":\"e50c549e-6e05-4418-ab49-f11472c2aaeb\"}]}"}
json_instruct
{"type": "object", "properties": {"IsSuccessStatusCode": {"type": "boolean"}, "StatusCode": {"type": "integer"}, "Headers": {"type": "object", "properties": {"SPRequestGuid": {"type": "string"}, "SPClientServiceRequestDuration": {"type": "string"}, "X-SharePointHealthScore": {"type": "string"}, "X-SP-SERVERSTATE": {"type": "string"}}, "required": ["SPRequestGuid", "SPClientServiceRequestDuration", "X-SharePointHealthScore", "X-SP-SERVERSTATE"]}, "Response": {"type": "string"}}, "required": ["IsSuccessStatusCode", "StatusCode", "Headers", "Response"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"Backbone.ModelBinder.min.js": {"type": "string"}}, "required": ["Backbone.ModelBinder.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"Backbone.ModelBinder.min.js" : "sha256-VKXhsYgw+DdzGJ6vz0QHoUG0xieyGkE/hP8DPL17dxg="}
json_instruct
{"type": "object", "properties": {"Backbone.ModelBinder.min.js": {"type": "string"}}, "required": ["Backbone.ModelBinder.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"data": {"type": "array", "items": {"type": "object", "properties": {"file": {"type": "string"}, "head": {"type": "integer"}, "partition": {"type": "integer"}, "table_name": {"type": "string"}, "namespace": {"type": "string"}, "role": {"type": "string"}}, "required": ["file", "head", "partition", "table_name", "namespace", "role"]}}, "tasks": {"type": "object", "properties": {"local_baseline": {"type": "object", "properties": {"conf": {"type": "string"}, "dsl": {"type": "string"}}, "required": ["conf", "dsl"]}, "local_baseline-homo": {"type": "object", "properties": {"conf": {"type": "string"}, "dsl": {"type": "string"}}, "required": ["conf", "dsl"]}}, "required": ["local_baseline", "local_baseline-homo"]}}, "required": ["data", "tasks"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"data" : [{"file" : "examples/data/breast_b.csv", "head" : 1, "partition" : 10, "table_name" : "hetero_breast_b", "namespace" : "hetero_breast_guest", "role" : "guest_0"}, {"file" : "examples/data/breast_a.csv", "head" : 1, "partition" : 10, "table_name" : "hetero_breast_a", "namespace" : "hetero_breast_host", "role" : "host_0"}, {"file" : "examples/data/breast_homo_guest.csv", "head" : 1, "partition" : 10, "table_name" : "homo_breast_b", "namespace" : "homo_breast_guest", "role" : "guest_0"}, {"file" : "examples/data/breast_homo_host.csv", "head" : 1, "partition" : 10, "table_name" : "homo_breast_a", "namespace" : "homo_breast_host", "role" : "host_0"}], "tasks" : {"local_baseline" : {"conf" : "test_local_baseline_job_conf.json", "dsl" : "test_local_baseline_job_dsl.json"}, "local_baseline-homo" : {"conf" : "test_local_baseline_homo_job_conf.json", "dsl" : "test_local_baseline_homo_job_dsl.json"}}}
json_instruct
{"type": "object", "properties": {"data": {"type": "array", "items": {"type": "object", "properties": {"file": {"type": "string"}, "head": {"type": "integer"}, "partition": {"type": "integer"}, "table_name": {"type": "string"}, "namespace": {"type": "string"}, "role": {"type": "string"}}, "required": ["file", "head", "partition", "table_name", "namespace", "role"]}}, "tasks": {"type": "object", "properties": {"local_baseline": {"type": "object", "properties": {"conf": {"type": "string"}, "dsl": {"type": "string"}}, "required": ["conf", "dsl"]}, "local_baseline-homo": {"type": "object", "properties": {"conf": {"type": "string"}, "dsl": {"type": "string"}}, "required": ["conf", "dsl"]}}, "required": ["local_baseline", "local_baseline-homo"]}}, "required": ["data", "tasks"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"first_time": {"type": "string"}, "initial_download_location": {"type": "string"}, "database_name": {"type": "string"}, "table_export_location": {"type": "string"}, "last_clickstream_date": {"type": "string"}, "fist_clickstream_date": {"type": "string"}, "eit_digital_id": {"type": "string"}, "clickstream_purpose": {"type": "string"}, "clickstream_export_location": {"type": "string"}, "purpose_for_requests": {"type": "string"}, "tables_purpose": {"type": "string"}, "database_user": {"type": "string"}}, "required": ["first_time", "initial_download_location", "database_name", "table_export_location", "last_clickstream_date", "fist_clickstream_date", "eit_digital_id", "clickstream_purpose", "clickstream_export_location", "purpose_for_requests", "tables_purpose", "database_user"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"first_time" : "no", "initial_download_location" : ".", "database_name" : "coursera", "table_export_location" : "tables/", "last_clickstream_date" : "2018-11-15", "fist_clickstream_date" : "2018-10-15", "eit_digital_id" : "253", "clickstream_purpose" : "of the clickstream data.", "clickstream_export_location" : "events/", "purpose_for_requests" : "For self study and analysis ", "tables_purpose" : "of the tables data.", "database_user" : "www-data"}
json_instruct
{"type": "object", "properties": {"first_time": {"type": "string"}, "initial_download_location": {"type": "string"}, "database_name": {"type": "string"}, "table_export_location": {"type": "string"}, "last_clickstream_date": {"type": "string"}, "fist_clickstream_date": {"type": "string"}, "eit_digital_id": {"type": "string"}, "clickstream_purpose": {"type": "string"}, "clickstream_export_location": {"type": "string"}, "purpose_for_requests": {"type": "string"}, "tables_purpose": {"type": "string"}, "database_user": {"type": "string"}}, "required": ["first_time", "initial_download_location", "database_name", "table_export_location", "last_clickstream_date", "fist_clickstream_date", "eit_digital_id", "clickstream_purpose", "clickstream_export_location", "purpose_for_requests", "tables_purpose", "database_user"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"App1": {"type": "array", "items": {"type": "object", "properties": {"APP1": {"type": "object", "properties": {"accessLevel": {"type": "string"}, "profileText": {"type": "string"}, "userType": {"type": "string"}}, "required": ["accessLevel", "profileText", "userType"]}}, "required": ["APP1"]}}, "App2": {"type": "array", "items": {"type": "object", "properties": {"APP2": {"type": "object", "properties": {"accessLevel": {"type": "string"}, "profileText": {"type": "string"}, "userType": {"type": "string"}}, "required": ["accessLevel", "profileText", "userType"]}}, "required": ["APP2"]}}}, "required": ["App1", "App2"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"App1" : [{"APP1" : {"accessLevel" : "ADMIN", "profileText" : "Admin", "userType" : "ADMIN"}}], "App2" : [{"APP2" : {"accessLevel" : "ADMIN", "profileText" : "Admin", "userType" : "ADMIN"}}]}
json_instruct
{"type": "object", "properties": {"App1": {"type": "array", "items": {"type": "object", "properties": {"APP1": {"type": "object", "properties": {"accessLevel": {"type": "string"}, "profileText": {"type": "string"}, "userType": {"type": "string"}}, "required": ["accessLevel", "profileText", "userType"]}}, "required": ["APP1"]}}, "App2": {"type": "array", "items": {"type": "object", "properties": {"APP2": {"type": "object", "properties": {"accessLevel": {"type": "string"}, "profileText": {"type": "string"}, "userType": {"type": "string"}}, "required": ["accessLevel", "profileText", "userType"]}}, "required": ["APP2"]}}}, "required": ["App1", "App2"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"citations": {"type": "array", "items": {"type": "object", "properties": {"textCitation": {"type": "string"}}, "required": ["textCitation"]}}, "argumentText": {"type": "string"}, "conclusion": {"type": "string"}, "language": {"type": "string"}, "lookupTerms": {"type": "array", "items": {"type": "string"}}, "metaLanguage": {"type": "string"}, "premises": {"type": "array", "items": {"type": "string"}}}, "required": ["citations", "argumentText", "conclusion", "language", "lookupTerms", "metaLanguage", "premises"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"citations" : [{"textCitation" : "[See pnfnemnf on Metamath](http://us.metamath.org/mpegif/pnfnemnf.html)"}], "argumentText" : "ARGUMENT\n\n| Step | Hyp | Ref | Expression |\n|---|---|---|---|\n\n| 1 | | #P_pnfxr | |- +oo e. RR* |\n| 2 | | #P_pwne | |- ( +oo e. RR* -> ~P +oo =/= +oo ) |\n| 3 | 1, 2 | #P_ax-mp | |- ~P +oo =/= +oo |\n| 4 | 3 | #P_necomi | |- +oo =/= ~P +oo |\n| 5 | | #P_df-mnf | |- -oo = ~P +oo |\n| 6 | 4, 5 | #P_neeqtrri | |- +oo =/= -oo |", "conclusion" : "#P_pnfnemnf", "language" : "METAMATH_SET_MM", "lookupTerms" : ["#T_cpnf", "#T_wcel", "#T_cxr", "#T_cpnf", "#T_wcel", "#T_cxr", "#T_wi", "#T_cpw", "#T_cpnf", "#T_wne", "#T_cpnf", "#T_cpw", "#T_cpnf", "#T_wne", "#T_cpnf", "#T_cpnf", "#T_wne", "#T_cpw", "#T_cpnf", "#T_cmnf", "#T_wceq", "#T_cpw", "#T_cpnf", "#T_cpnf", "#T_wne", "#T_cmnf"], "metaLanguage" : "METAMATH", "premises" : ["#P_ax-mp", "#P_neeqtrri", "#P_pnfxr", "#P_pwne", "#P_necomi", "#P_df-mnf"]}
json_instruct
{"type": "object", "properties": {"citations": {"type": "array", "items": {"type": "object", "properties": {"textCitation": {"type": "string"}}, "required": ["textCitation"]}}, "argumentText": {"type": "string"}, "conclusion": {"type": "string"}, "language": {"type": "string"}, "lookupTerms": {"type": "array", "items": {"type": "string"}}, "metaLanguage": {"type": "string"}, "premises": {"type": "array", "items": {"type": "string"}}}, "required": ["citations", "argumentText", "conclusion", "language", "lookupTerms", "metaLanguage", "premises"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"title": {"type": "string"}, "creation_date": {"type": "string"}, "creation_date_earliest": {"type": "string"}, "creation_date_latest": {"type": "string"}, "medium": {"type": "string"}, "accession_number": {"type": "string"}, "id": {"type": "string"}, "credit_line": {"type": "string"}, "date_acquired": {"type": "string"}, "department": {"type": "string"}, "physical_location": {"type": "string"}, "item_width": {"type": "number"}, "item_height": {"type": "number"}, "item_depth": {"type": "number"}, "item_diameter": {"type": "number"}, "web_url": {"type": "string"}, "provenance_text": {"type": "string"}, "classification": {"type": "string"}, "images": {"type": "array", "items": {"type": "object", "properties": {"image_url": {"type": "string"}}, "required": ["image_url"]}}, "creator": {"type": "array", "items": {"type": "object", "properties": {"artist_id": {"type": "string"}, "party_type": {"type": "string"}, "full_name": {"type": "string"}, "cited_name": {"type": "string"}, "role": {"type": "null"}, "nationality": {"type": "string"}, "birth_date": {"type": "string"}, "death_date": {"type": "null"}, "birth_place": {"type": "null"}, "death_place": {"type": "null"}}, "required": ["artist_id", "party_type", "full_name", "cited_name", "role", "nationality", "birth_date", "death_date", "birth_place", "death_place"]}}}, "required": ["title", "creation_date", "creation_date_earliest", "creation_date_latest", "medium", "accession_number", "id", "credit_line", "date_acquired", "department", "physical_location", "item_width", "item_height", "item_depth", "item_diameter", "web_url", "provenance_text", "classification", "images", "creator"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"title" : "Moon Shadow", "creation_date" : "1999", "creation_date_earliest" : "1999-01-01", "creation_date_latest" : "1999-01-01", "medium" : "Norfolk Island pine", "accession_number" : "2010.36", "id" : "cmoa:things/0f512d4b-42ab-45a7-abbb-050496b5d9f5", "credit_line" : "Gift of Daniel Greenberg and Susan Steinhauser", "date_acquired" : "2010-06-03", "department" : "Decorative Arts and Design", "physical_location" : "Not on View", "item_width" : 18.5, "item_height" : 3.625, "item_depth" : 0.0, "item_diameter" : 0.0, "web_url" : "http://collection.cmoa.org/CollectionDetail.aspx?item=91828", "provenance_text" : "Provenance: Del Mano Gallery, Los Angeles, c. 2001-present [Rachel Delphia, Acquisition Report, 5.11.10]", "classification" : "Wood", "images" : [{"image_url" : "http://collection.cmoa.org/CollectionImage.aspx?irn=100391&size=Medium"}, {"image_url" : "http://collection.cmoa.org/CollectionImage.aspx?irn=100392&size=Medium"}, {"image_url" : "http://collection.cmoa.org/CollectionImage.aspx?irn=100393&size=Medium"}, {"image_url" : "http://collection.cmoa.org/CollectionImage.aspx?irn=100394&size=Medium"}], "creator" : [{"artist_id" : "cmoa:parties/f052c246-9fe7-429d-89d3-9f337a5f7356", "party_type" : "Person", "full_name" : "Ron Kent", "cited_name" : "Kent, Ron", "role" : null, "nationality" : "American", "birth_date" : "1931-01-01", "death_date" : null, "birth_place" : null, "death_place" : null}]}
json_instruct
{"type": "object", "properties": {"title": {"type": "string"}, "creation_date": {"type": "string"}, "creation_date_earliest": {"type": "string"}, "creation_date_latest": {"type": "string"}, "medium": {"type": "string"}, "accession_number": {"type": "string"}, "id": {"type": "string"}, "credit_line": {"type": "string"}, "date_acquired": {"type": "string"}, "department": {"type": "string"}, "physical_location": {"type": "string"}, "item_width": {"type": "number"}, "item_height": {"type": "number"}, "item_depth": {"type": "number"}, "item_diameter": {"type": "number"}, "web_url": {"type": "string"}, "provenance_text": {"type": "string"}, "classification": {"type": "string"}, "images": {"type": "array", "items": {"type": "object", "properties": {"image_url": {"type": "string"}}, "required": ["image_url"]}}, "creator": {"type": "array", "items": {"type": "object", "properties": {"artist_id": {"type": "string"}, "party_type": {"type": "string"}, "full_name": {"type": "string"}, "cited_name": {"type": "string"}, "role": {"type": "null"}, "nationality": {"type": "string"}, "birth_date": {"type": "string"}, "death_date": {"type": "null"}, "birth_place": {"type": "null"}, "death_place": {"type": "null"}}, "required": ["artist_id", "party_type", "full_name", "cited_name", "role", "nationality", "birth_date", "death_date", "birth_place", "death_place"]}}}, "required": ["title", "creation_date", "creation_date_earliest", "creation_date_latest", "medium", "accession_number", "id", "credit_line", "date_acquired", "department", "physical_location", "item_width", "item_height", "item_depth", "item_diameter", "web_url", "provenance_text", "classification", "images", "creator"], "$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": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "patternId": {"type": "string"}, "severity": {"type": "integer"}, "line": {"type": "integer"}, "column": {"type": "integer"}, "content": {"type": "string"}}, "required": ["name", "patternId", "severity", "line", "column", "content"]}}}, "required": ["contract", "tool", "start", "end", "duration", "analysis"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"contract" : "0xfaf378dd7c26ebcfae80f4675fadb3f9d9dfc152", "tool" : "smartcheck", "start" : 1563530511.002339, "end" : 1563530519.5085366, "duration" : 8.506197690963745, "analysis" : [{"name" : "SOLIDITY_UPGRADE_TO_050", "patternId" : "341gim", "severity" : 1, "line" : 47, "column" : 8, "content" : "stringtokenName"}, {"name" : "SOLIDITY_UPGRADE_TO_050", "patternId" : "341gim", "severity" : 1, "line" : 48, "column" : 8, "content" : "stringtokenSymbol"}, {"name" : "SOLIDITY_UPGRADE_TO_050", "patternId" : "341gim", "severity" : 1, "line" : 123, "column" : 8, "content" : "stringtokenName"}, {"name" : "SOLIDITY_UPGRADE_TO_050", "patternId" : "341gim", "severity" : 1, "line" : 124, "column" : 8, "content" : "stringtokenSymbol"}]}
json_instruct
{"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "patternId": {"type": "string"}, "severity": {"type": "integer"}, "line": {"type": "integer"}, "column": {"type": "integer"}, "content": {"type": "string"}}, "required": ["name", "patternId", "severity", "line", "column", "content"]}}}, "required": ["contract", "tool", "start", "end", "duration", "analysis"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"id": {"type": "integer"}, "citation_title": {"type": "string"}, "citation_author": {"type": "array", "items": {"type": "string"}}, "citation_publication_date": {"type": "string"}, "issue_date": {"type": "string"}, "revision_date": {"type": "string"}, "topics": {"type": "array", "items": {"type": "string"}}, "program": {"type": "array", "items": {"type": "string"}}, "projects": {"type": "null"}, "working_groups": {"type": "null"}, "abstract": {"type": "string"}, "acknowledgement": {"type": "string"}}, "required": ["id", "citation_title", "citation_author", "citation_publication_date", "issue_date", "revision_date", "topics", "program", "projects", "working_groups", "abstract", "acknowledgement"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : 8192, "citation_title" : "The Life Cycle of US Economic Expansions", "citation_author" : ["Edward E. Leamer"], "citation_publication_date" : "2001-03-01", "issue_date" : "2001-03-01", "revision_date" : "None", "topics" : ["Macroeconomics", "Business Cycles"], "program" : ["Economic Fluctuations and Growth"], "projects" : null, "working_groups" : null, "abstract" : "\n\nGraphs that allow side by side comparisons of the six longer US expansions since 1950 suggest that these expansions have four distinct phases: (1) a high growth recovery during which the rate of unemployment declines to its pre-recession level, (2) a modest growth plateau during which the rate of unemployment is constant, (3) a growth spurt that drives unemployment down further and (4) a second plateau with modest growth and constant rate of unemployment. There have been only three expansions that have experienced the spurt and none has experienced a second spurt. These phases involve substantially different rates of GDP growth, but within each of these four phases GDP growth is largely unpredictable. Forecast accuracy thus comes mostly from understanding the transitions. This requires both data and economics. The economics takes the form of a predator/prey model of the cycle, where the prey are investment opportunities and the predators are entrepreneurs. A probit model of the transition into recession raises concerns about how much longer the aged Bush/Clinton expansion can last.\n\n", "acknowledgement" : "\n"}
json_instruct
{"type": "object", "properties": {"id": {"type": "integer"}, "citation_title": {"type": "string"}, "citation_author": {"type": "array", "items": {"type": "string"}}, "citation_publication_date": {"type": "string"}, "issue_date": {"type": "string"}, "revision_date": {"type": "string"}, "topics": {"type": "array", "items": {"type": "string"}}, "program": {"type": "array", "items": {"type": "string"}}, "projects": {"type": "null"}, "working_groups": {"type": "null"}, "abstract": {"type": "string"}, "acknowledgement": {"type": "string"}}, "required": ["id", "citation_title", "citation_author", "citation_publication_date", "issue_date", "revision_date", "topics", "program", "projects", "working_groups", "abstract", "acknowledgement"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"build": {"type": "string"}, "prestart": {"type": "string"}, "start": {"type": "string"}, "test": {"type": "string"}}, "required": ["build", "prestart", "start", "test"]}, "repository": {"type": "string"}, "keywords": {"type": "array", "items": {}}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"@takasho/eslint-config": {"type": "string"}, "eslint": {"type": "string"}, "fs": {"type": "string"}, "http": {"type": "string"}, "pug-cli": {"type": "string"}}, "required": ["@takasho/eslint-config", "eslint", "fs", "http", "pug-cli"]}}, "required": ["name", "version", "description", "main", "scripts", "repository", "keywords", "author", "license", "bugs", "homepage", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "node-server", "version" : "0.0.1", "description" : "", "main" : "index.js", "scripts" : {"build" : "pug src/template/pug/*.pug -o src/template/html", "prestart" : "npm run build", "start" : "node src/app.js", "test" : "eslint . --cache"}, "repository" : "git+https://github.com/takasho-tutrial/node-server.git", "keywords" : [], "author" : "taka-sho <[email protected]>", "license" : "ISC", "bugs" : {"url" : "https://github.com/takasho-tutrial/node-server/issues"}, "homepage" : "https://github.com/takasho-tutrial/node-server#readme", "devDependencies" : {"@takasho/eslint-config" : "0.0.3", "eslint" : "3.19.0", "fs" : "0.0.2", "http" : "0.0.0", "pug-cli" : "1.0.0-alpha6"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"build": {"type": "string"}, "prestart": {"type": "string"}, "start": {"type": "string"}, "test": {"type": "string"}}, "required": ["build", "prestart", "start", "test"]}, "repository": {"type": "string"}, "keywords": {"type": "array", "items": {}}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"@takasho/eslint-config": {"type": "string"}, "eslint": {"type": "string"}, "fs": {"type": "string"}, "http": {"type": "string"}, "pug-cli": {"type": "string"}}, "required": ["@takasho/eslint-config", "eslint", "fs", "http", "pug-cli"]}}, "required": ["name", "version", "description", "main", "scripts", "repository", "keywords", "author", "license", "bugs", "homepage", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {".js": {"type": "string"}}, "required": [".js"], "$schema": "http://json-schema.org/draft-07/schema#"}
{".js" : "4f86f14146102d14ee874c96564f643dc27ea157.js"}
json_instruct
{"type": "object", "properties": {".js": {"type": "string"}}, "required": [".js"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"localities": {"type": "array", "items": {"type": "string"}}, "state": {"type": "string"}, "postal_code": {"type": "string"}, "locality": {"type": "string"}, "lat": {"type": "number"}, "region": {"type": "object", "properties": {"fips": {"type": "string"}, "abbr": {"type": "string"}, "name": {"type": "string"}}, "required": ["fips", "abbr", "name"]}, "city": {"type": "string"}, "type": {"type": "string"}, "lng": {"type": "number"}, "counties": {"type": "array", "items": {"type": "object", "properties": {"fips": {"type": "string"}, "name": {"type": "string"}}, "required": ["fips", "name"]}}}, "required": ["localities", "state", "postal_code", "locality", "lat", "region", "city", "type", "lng", "counties"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"localities" : ["Mercer, MO"], "state" : "MO", "postal_code" : "64661", "locality" : "Mercer, MO", "lat" : 40.536056, "region" : {"fips" : "29", "abbr" : "MO", "name" : "Missouri"}, "city" : "Mercer", "type" : "STANDARD", "lng" : -93.517477, "counties" : [{"fips" : "129", "name" : "Mercer County"}]}
json_instruct
{"type": "object", "properties": {"localities": {"type": "array", "items": {"type": "string"}}, "state": {"type": "string"}, "postal_code": {"type": "string"}, "locality": {"type": "string"}, "lat": {"type": "number"}, "region": {"type": "object", "properties": {"fips": {"type": "string"}, "abbr": {"type": "string"}, "name": {"type": "string"}}, "required": ["fips", "abbr", "name"]}, "city": {"type": "string"}, "type": {"type": "string"}, "lng": {"type": "number"}, "counties": {"type": "array", "items": {"type": "object", "properties": {"fips": {"type": "string"}, "name": {"type": "string"}}, "required": ["fips", "name"]}}}, "required": ["localities", "state", "postal_code", "locality", "lat", "region", "city", "type", "lng", "counties"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "patternId": {"type": "string"}, "severity": {"type": "integer"}, "line": {"type": "integer"}, "column": {"type": "integer"}, "content": {"type": "string"}}, "required": ["name", "patternId", "severity", "line", "column", "content"]}}}, "required": ["contract", "tool", "start", "end", "duration", "analysis"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"contract" : "0xe916fd53f37c7279450857fa6d4bcae124cf94e1", "tool" : "smartcheck", "start" : 1563658907.7800293, "end" : 1563658916.206657, "duration" : 8.42662763595581, "analysis" : [{"name" : "SOLIDITY_ERC20_APPROVE", "patternId" : "af782c", "severity" : 2, "line" : 147, "column" : 4, "content" : "functionapprove(address_spender,uint256_value)publicreturns(boolsuccess){require(_value>0,\"Cannot use zero\");allowance[msg.sender][_spender]=_value;returntrue;}"}, {"name" : "SOLIDITY_PRAGMAS_VERSION", "patternId" : "23fc32", "severity" : 1, "line" : 5, "column" : 16, "content" : "^"}, {"name" : "SOLIDITY_SAFEMATH", "patternId" : "837cac", "severity" : 1, "line" : 95, "column" : 4, "content" : "usingSafeMathforuint256;"}]}
json_instruct
{"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "patternId": {"type": "string"}, "severity": {"type": "integer"}, "line": {"type": "integer"}, "column": {"type": "integer"}, "content": {"type": "string"}}, "required": ["name", "patternId", "severity", "line", "column", "content"]}}}, "required": ["contract", "tool", "start", "end", "duration", "analysis"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"artist_id": {"type": "string"}, "artist_latitude": {"type": "null"}, "artist_location": {"type": "string"}, "artist_longitude": {"type": "null"}, "artist_name": {"type": "string"}, "duration": {"type": "number"}, "num_songs": {"type": "integer"}, "song_id": {"type": "string"}, "title": {"type": "string"}, "year": {"type": "integer"}}, "required": ["artist_id", "artist_latitude", "artist_location", "artist_longitude", "artist_name", "duration", "num_songs", "song_id", "title", "year"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"artist_id" : "ARI1ZGD1187B99F168", "artist_latitude" : null, "artist_location" : "", "artist_longitude" : null, "artist_name" : "Siglo Xx", "duration" : 239.64689, "num_songs" : 1, "song_id" : "SOCFJVB12A6D4FBFDA", "title" : "God John", "year" : 0}
json_instruct
{"type": "object", "properties": {"artist_id": {"type": "string"}, "artist_latitude": {"type": "null"}, "artist_location": {"type": "string"}, "artist_longitude": {"type": "null"}, "artist_name": {"type": "string"}, "duration": {"type": "number"}, "num_songs": {"type": "integer"}, "song_id": {"type": "string"}, "title": {"type": "string"}, "year": {"type": "integer"}}, "required": ["artist_id", "artist_latitude", "artist_location", "artist_longitude", "artist_name", "duration", "num_songs", "song_id", "title", "year"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"Package": {"type": "string"}, "TSMaps": {"type": "array", "items": {"type": "object", "properties": {"Key": {"type": "string"}, "Val": {"type": "string"}, "Name": {"type": "string"}}, "required": ["Key", "Val", "Name"]}}}, "required": ["Package", "TSMaps"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"Package" : "packeter", "TSMaps" : [{"Key" : "uint32", "Val" : "*collector", "Name" : "collectors"}]}
json_instruct
{"type": "object", "properties": {"Package": {"type": "string"}, "TSMaps": {"type": "array", "items": {"type": "object", "properties": {"Key": {"type": "string"}, "Val": {"type": "string"}, "Name": {"type": "string"}}, "required": ["Key", "Val", "Name"]}}}, "required": ["Package", "TSMaps"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"h": {"type": "string"}, "c": {"type": "object", "properties": {"pages/contato": {"type": "boolean"}}, "required": ["pages/contato"]}}, "required": ["h", "c"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"h" : "3a76df1c7fbffa054777", "c" : {"pages/contato" : true}}
json_instruct
{"type": "object", "properties": {"h": {"type": "string"}, "c": {"type": "object", "properties": {"pages/contato": {"type": "boolean"}}, "required": ["pages/contato"]}}, "required": ["h", "c"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following 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 350 degrees F (175 degrees C).", "Place bacon in a large skillet and cook over medium-high heat, turning occasionally, until evenly browned, about 10 minutes. Drain bacon slices on paper towels. Crumble or chop into small pieces.", "Separate 6 biscuits into 2 rounds each. Press rounds into 12 cups of a muffin tin, pressing up sides to form biscuit dough cups.", "Mix eggs, bacon pieces, and 1/2 cup shredded cheese together in a bowl.", "Fill muffin pan biscuits with egg mixture about 3/4 full. Sprinkle remaining 3 tablespoons cheese on top.", "Bake in preheated oven until egg mixture is set, 18 to 22 minutes. Let cool 5 minutes before serving."], "ingredients" : ["6 slices bacon", "1 (16.3 ounce) can refrigerated biscuit dough", "6 eggs", "1/2 cup Borden\u00ae Cheddar and Monterey Jack Shreds", "3 tablespoons Borden\u00ae Cheddar and Monterey Jack Shreds, for topping"], "language" : "en-US", "source" : "allrecipes.com", "tags" : [], "title" : "Bacon & Egg Biscuit Cups", "url" : "http://allrecipes.com/recipe/255903/bacon-egg-biscuit-cups/"}
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": "object", "properties": {"address": {"type": "string"}, "id": {"type": "string"}, "version": {"type": "integer"}, "crypto": {"type": "object", "properties": {"cipher": {"type": "string"}, "ciphertext": {"type": "string"}, "cipherparams": {"type": "object", "properties": {"iv": {"type": "string"}}, "required": ["iv"]}, "kdf": {"type": "string"}, "kdfparams": {"type": "object", "properties": {"dklen": {"type": "integer"}, "n": {"type": "integer"}, "p": {"type": "integer"}, "r": {"type": "integer"}, "salt": {"type": "string"}}, "required": ["dklen", "n", "p", "r", "salt"]}, "mac": {"type": "string"}}, "required": ["cipher", "ciphertext", "cipherparams", "kdf", "kdfparams", "mac"]}}, "required": ["address", "id", "version", "crypto"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"address" : "f29792530151e29066d8e056f97e129ea9906f37", "id" : "aa61a0b3-2866-4891-9d67-3aca5bb031a8", "version" : 3, "crypto" : {"cipher" : "aes-128-ctr", "ciphertext" : "e23ad84dee1b6aef2e4b3db4653362ab60e1263630be4470af247d28bad0d408", "cipherparams" : {"iv" : "3b0eb364d705fe33edfc699598d3335c"}, "kdf" : "scrypt", "kdfparams" : {"dklen" : 32, "n" : 4096, "p" : 6, "r" : 8, "salt" : "9166fb3c172858630f1adb7a919e43b7c87e3de16d66786f94a175ce3098966c"}, "mac" : "3202514cfd77c4dfac0073d68d20db5d53feb4e9016b43fdddf9dd05bf863d69"}}
json_instruct
{"type": "object", "properties": {"address": {"type": "string"}, "id": {"type": "string"}, "version": {"type": "integer"}, "crypto": {"type": "object", "properties": {"cipher": {"type": "string"}, "ciphertext": {"type": "string"}, "cipherparams": {"type": "object", "properties": {"iv": {"type": "string"}}, "required": ["iv"]}, "kdf": {"type": "string"}, "kdfparams": {"type": "object", "properties": {"dklen": {"type": "integer"}, "n": {"type": "integer"}, "p": {"type": "integer"}, "r": {"type": "integer"}, "salt": {"type": "string"}}, "required": ["dklen", "n", "p", "r", "salt"]}, "mac": {"type": "string"}}, "required": ["cipher", "ciphertext", "cipherparams", "kdf", "kdfparams", "mac"]}}, "required": ["address", "id", "version", "crypto"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"id": {"type": "integer"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"src:alt_label": {"type": "string"}, "src:geom": {"type": "string"}, "wof:geomhash": {"type": "string"}, "wof:id": {"type": "integer"}, "wof:repo": {"type": "string"}}, "required": ["src:alt_label", "src:geom", "wof:geomhash", "wof:id", "wof:repo"]}, "bbox": {"type": "array", "items": {"type": "number"}}, "geometry": {"type": "object", "properties": {"coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}, "type": {"type": "string"}}, "required": ["coordinates", "type"]}}, "required": ["id", "type", "properties", "bbox", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : 404414741, "type" : "Feature", "properties" : {"src:alt_label" : "quattroshapes", "src:geom" : "quattroshapes", "wof:geomhash" : "2cf454dbc7a3127cbb02007f83db5614", "wof:id" : 404414741, "wof:repo" : "whosonfirst-data-admin-fr"}, "bbox" : [2.27300668628288, 48.61773753303216, 2.29893368486303, 48.66022836796183], "geometry" : {"coordinates" : [[[2.2825440956714, 48.61773753303216], [2.27602755083405, 48.62197092297681], [2.2815757388558, 48.62700595305726], [2.28167500011274, 48.64350393963778], [2.27300668628288, 48.6519068730687], [2.27612265858397, 48.66022836796183], [2.29132536789572, 48.65758521237107], [2.29142549841363, 48.65219771466776], [2.29893368486303, 48.65012825587546], [2.29785637974181, 48.64441895785391], [2.292714326039, 48.62615508777353], [2.29182453878229, 48.61970910471499], [2.2825440956714, 48.61773753303216]]], "type" : "Polygon"}}
json_instruct
{"type": "object", "properties": {"id": {"type": "integer"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"src:alt_label": {"type": "string"}, "src:geom": {"type": "string"}, "wof:geomhash": {"type": "string"}, "wof:id": {"type": "integer"}, "wof:repo": {"type": "string"}}, "required": ["src:alt_label", "src:geom", "wof:geomhash", "wof:id", "wof:repo"]}, "bbox": {"type": "array", "items": {"type": "number"}}, "geometry": {"type": "object", "properties": {"coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}, "type": {"type": "string"}}, "required": ["coordinates", "type"]}}, "required": ["id", "type", "properties", "bbox", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"_guid_": {"type": "string"}, "_extends_": {"type": "string"}, "title": {"type": "string"}, "specs": {"type": "array", "items": {"type": "string"}}, "request": {"type": "object", "properties": {"body": {"type": "object", "properties": {"arrayInMap": {"type": "array", "items": {"type": "object", "properties": {"key": {"type": "string"}, "filePath": {"type": "string"}}, "required": ["key", "filePath"]}}}, "required": ["arrayInMap"]}}, "required": ["body"]}, "expectedResponse": {"type": "object", "properties": {"responseCode": {"type": "integer"}, "responseMessage": {"type": "string"}, "headers": {"type": "object", "properties": {"Content-Encoding": {"type": "string"}, "Content-Type": {"type": "string"}}, "required": ["Content-Encoding", "Content-Type"]}, "body": {"type": "object", "properties": {"timestamp": {"type": "string"}, "status": {"type": "integer"}, "error": {"type": "string"}, "message": {"type": "string"}, "path": {"type": "string"}}, "required": ["timestamp", "status", "error", "message", "path"]}}, "required": ["responseCode", "responseMessage", "headers", "body"]}}, "required": ["_guid_", "_extends_", "title", "specs", "request", "expectedResponse"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"_guid_" : "S-092.4", "_extends_" : "F-092_Test_Base_data", "title" : "must return a negative response in an attempt to import a definition file containing conditional event post state with missing priority", "specs" : ["an active profile in CCD", "contains conditional event post state with missing priority"], "request" : {"body" : {"arrayInMap" : [{"key" : "file", "filePath" : "uk/gov/hmcts/befta/dse/ccd/definitions/invalid/BEFTA_Master_Definition_Missing_Priority.xlsx"}]}}, "expectedResponse" : {"responseCode" : 400, "responseMessage" : "Bad Request", "headers" : {"Content-Encoding" : "[[ANYTHING_PRESENT]]", "Content-Type" : "application/json"}, "body" : {"timestamp" : "[[ANYTHING_PRESENT]]", "status" : 400, "error" : "Bad Request", "message" : "Invalid Post State CaseCreated(TextField=\"showmethemoney\" AND TextField3=\"showpage5\")", "path" : "/import"}}}
json_instruct
{"type": "object", "properties": {"_guid_": {"type": "string"}, "_extends_": {"type": "string"}, "title": {"type": "string"}, "specs": {"type": "array", "items": {"type": "string"}}, "request": {"type": "object", "properties": {"body": {"type": "object", "properties": {"arrayInMap": {"type": "array", "items": {"type": "object", "properties": {"key": {"type": "string"}, "filePath": {"type": "string"}}, "required": ["key", "filePath"]}}}, "required": ["arrayInMap"]}}, "required": ["body"]}, "expectedResponse": {"type": "object", "properties": {"responseCode": {"type": "integer"}, "responseMessage": {"type": "string"}, "headers": {"type": "object", "properties": {"Content-Encoding": {"type": "string"}, "Content-Type": {"type": "string"}}, "required": ["Content-Encoding", "Content-Type"]}, "body": {"type": "object", "properties": {"timestamp": {"type": "string"}, "status": {"type": "integer"}, "error": {"type": "string"}, "message": {"type": "string"}, "path": {"type": "string"}}, "required": ["timestamp", "status", "error", "message", "path"]}}, "required": ["responseCode", "responseMessage", "headers", "body"]}}, "required": ["_guid_", "_extends_", "title", "specs", "request", "expectedResponse"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"id": {"type": "string"}, "district_id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "district_id", "name"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : "3514170010", "district_id" : "3514170", "name" : "DHOMPO"}
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "district_id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "district_id", "name"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"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"}}, "bin": {"type": "object", "properties": {"sum-time": {"type": "string"}}, "required": ["sum-time"]}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "dependencies": {"type": "object", "properties": {"moment": {"type": "string"}, "sum-time": {"type": "string"}}, "required": ["moment", "sum-time"]}}, "required": ["name", "version", "description", "main", "scripts", "repository", "keywords", "bin", "author", "license", "bugs", "homepage", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "sum-time-cli", "version" : "1.0.0", "description" : "Sum up time durations in terminal", "main" : "cli.js", "scripts" : {"test" : "echo \"Error: no test specified\" && exit 1"}, "repository" : {"type" : "git", "url" : "git+https://github.com/bencevans/sum-time-cli.git"}, "keywords" : ["sum", "time", "duration", "calc", "calculator", "cli"], "bin" : {"sum-time" : "./cli.js"}, "author" : "Ben Evans <[email protected]> (https://bencevans.io)", "license" : "MIT", "bugs" : {"url" : "https://github.com/bencevans/sum-time-cli/issues"}, "homepage" : "https://github.com/bencevans/sum-time-cli#readme", "dependencies" : {"moment" : "^2.14.1", "sum-time" : "^1.0.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"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "bin": {"type": "object", "properties": {"sum-time": {"type": "string"}}, "required": ["sum-time"]}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "dependencies": {"type": "object", "properties": {"moment": {"type": "string"}, "sum-time": {"type": "string"}}, "required": ["moment", "sum-time"]}}, "required": ["name", "version", "description", "main", "scripts", "repository", "keywords", "bin", "author", "license", "bugs", "homepage", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"limit": {"type": "integer"}, "name": {"type": "string"}, "value": {"type": "integer"}, "highalch": {"type": "integer"}, "id": {"type": "integer"}, "lowalch": {"type": "integer"}, "name_pt": {"type": "string"}, "price": {"type": "integer"}, "last": {"type": "integer"}}, "required": ["limit", "name", "value", "highalch", "id", "lowalch", "name_pt", "price", "last"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"limit" : 100, "name" : "Orikalkum 2h warhammer", "value" : 6668, "highalch" : 4000, "id" : 46565, "lowalch" : 2667, "name_pt" : "Martelo de guerra de 2m de orikalko", "price" : 23379, "last" : 23379}
json_instruct
{"type": "object", "properties": {"limit": {"type": "integer"}, "name": {"type": "string"}, "value": {"type": "integer"}, "highalch": {"type": "integer"}, "id": {"type": "integer"}, "lowalch": {"type": "integer"}, "name_pt": {"type": "string"}, "price": {"type": "integer"}, "last": {"type": "integer"}}, "required": ["limit", "name", "value", "highalch", "id", "lowalch", "name_pt", "price", "last"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"remote-host": {"type": "string"}, "remote-port": {"type": "string"}}, "required": ["remote-host", "remote-port"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"remote-host" : "192.168.0.16", "remote-port" : "514"}
json_instruct
{"type": "object", "properties": {"remote-host": {"type": "string"}, "remote-port": {"type": "string"}}, "required": ["remote-host", "remote-port"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "files": {"type": "array", "items": {"type": "string"}}, "scripts": {"type": "object", "properties": {"babelBuild": {"type": "string"}, "babelWatch": {"type": "string"}, "build": {"type": "string"}, "ci": {"type": "string"}, "lint": {"type": "string"}, "prepublishOnly": {"type": "string"}, "test": {"type": "string"}, "testWatch": {"type": "string"}}, "required": ["babelBuild", "babelWatch", "build", "ci", "lint", "prepublishOnly", "test", "testWatch"]}, "author": {"type": "string"}, "license": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "repository": {"type": "string"}, "dependencies": {"type": "object", "properties": {}, "required": []}, "devDependencies": {"type": "object", "properties": {"@mixmaxhq/prettier-config": {"type": "string"}, "babel-cli": {"type": "string"}, "babel-core": {"type": "string"}, "babel-preset-es2015": {"type": "string"}, "eslint": {"type": "string"}, "eslint-config-mixmax": {"type": "string"}, "jest": {"type": "string"}, "jest-cli": {"type": "string"}, "prettier": {"type": "string"}}, "required": ["@mixmaxhq/prettier-config", "babel-cli", "babel-core", "babel-preset-es2015", "eslint", "eslint-config-mixmax", "jest", "jest-cli", "prettier"]}}, "required": ["name", "version", "description", "main", "files", "scripts", "author", "license", "keywords", "repository", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "search-string", "version" : "3.1.0", "description" : "Another parser for advanced search query syntax.", "main" : "index.js", "files" : ["index.js", "src", "dist"], "scripts" : {"babelBuild" : "babel src/ -d dist/node/ --copy-files", "babelWatch" : "babel --watch src/ -d dist/node/ --copy-files", "build" : "rm -rf dist/node && npm run babelBuild", "ci" : "npm run lint && npm test", "lint" : "eslint .", "prepublishOnly" : "npm run build", "test" : "jest", "testWatch" : "jest --watch"}, "author" : "Marcus Ericsson <[email protected]> (https://mixmax.com)", "license" : "MIT", "keywords" : ["query parser", "querystrings", "search", "search syntax parser", "search query"], "repository" : "[email protected]:mixmaxhq/search-string.git", "dependencies" : {}, "devDependencies" : {"@mixmaxhq/prettier-config" : "^1.0.0", "babel-cli" : "^6.26.0", "babel-core" : "^6.26.0", "babel-preset-es2015" : "^6.24.1", "eslint" : "^6.8.0", "eslint-config-mixmax" : "^4.8.0", "jest" : "^21.1.0", "jest-cli" : "^21.1.0", "prettier" : "^1.19.1"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "files": {"type": "array", "items": {"type": "string"}}, "scripts": {"type": "object", "properties": {"babelBuild": {"type": "string"}, "babelWatch": {"type": "string"}, "build": {"type": "string"}, "ci": {"type": "string"}, "lint": {"type": "string"}, "prepublishOnly": {"type": "string"}, "test": {"type": "string"}, "testWatch": {"type": "string"}}, "required": ["babelBuild", "babelWatch", "build", "ci", "lint", "prepublishOnly", "test", "testWatch"]}, "author": {"type": "string"}, "license": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "repository": {"type": "string"}, "dependencies": {"type": "object", "properties": {}, "required": []}, "devDependencies": {"type": "object", "properties": {"@mixmaxhq/prettier-config": {"type": "string"}, "babel-cli": {"type": "string"}, "babel-core": {"type": "string"}, "babel-preset-es2015": {"type": "string"}, "eslint": {"type": "string"}, "eslint-config-mixmax": {"type": "string"}, "jest": {"type": "string"}, "jest-cli": {"type": "string"}, "prettier": {"type": "string"}}, "required": ["@mixmaxhq/prettier-config", "babel-cli", "babel-core", "babel-preset-es2015", "eslint", "eslint-config-mixmax", "jest", "jest-cli", "prettier"]}}, "required": ["name", "version", "description", "main", "files", "scripts", "author", "license", "keywords", "repository", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}