input
stringlengths
159
2.05k
output
stringlengths
5
10.3k
task
stringclasses
1 value
schema
stringlengths
100
1.99k
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" : "209f7ba189bcf9a6e77aae8a9b93dfa26760dab1"}
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}}, "required": ["id"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"GlobalLetLtxMacro": {"type": "object", "properties": {"command": {"type": "string"}, "snippet": {"type": "string"}}, "required": ["command", "snippet"]}, "LetLtxMacro": {"type": "object", "properties": {"command": {"type": "string"}, "snippet": {"type": "string"}}, "required": ["command", "snippet"]}}, "required": ["GlobalLetLtxMacro", "LetLtxMacro"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"GlobalLetLtxMacro" : {"command" : "GlobalLetLtxMacro", "snippet" : "GlobalLetLtxMacro{${1}}{${2}}"}, "LetLtxMacro" : {"command" : "LetLtxMacro", "snippet" : "LetLtxMacro{${1}}{${2}}"}}
json_instruct
{"type": "object", "properties": {"GlobalLetLtxMacro": {"type": "object", "properties": {"command": {"type": "string"}, "snippet": {"type": "string"}}, "required": ["command", "snippet"]}, "LetLtxMacro": {"type": "object", "properties": {"command": {"type": "string"}, "snippet": {"type": "string"}}, "required": ["command", "snippet"]}}, "required": ["GlobalLetLtxMacro", "LetLtxMacro"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"brief": {"type": "string"}, "long": {"type": "string"}}, "required": ["brief", "long"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"brief" : "unspeakable", "long" : "unspeakable."}
json_instruct
{"type": "object", "properties": {"brief": {"type": "string"}, "long": {"type": "string"}}, "required": ["brief", "long"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"place_name": {"type": "string"}, "state_name": {"type": "string"}, "state_abbrv": {"type": "string"}, "lat": {"type": "string"}, "long": {"type": "string"}}, "required": ["place_name", "state_name", "state_abbrv", "lat", "long"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"place_name" : "Maynard", "state_name" : "Arkansas", "state_abbrv" : "AR", "lat" : "36.4386", "long" : "-90.8749"}
json_instruct
{"type": "object", "properties": {"place_name": {"type": "string"}, "state_name": {"type": "string"}, "state_abbrv": {"type": "string"}, "lat": {"type": "string"}, "long": {"type": "string"}}, "required": ["place_name", "state_name", "state_abbrv", "lat", "long"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"cues": {"type": "array", "items": {}}, "regions": {"type": "array", "items": {"type": "object", "properties": {"lines": {"type": "integer"}, "regionAnchorX": {"type": "number"}, "regionAnchorY": {"type": "number"}, "scroll": {"type": "string"}, "viewportAnchorX": {"type": "integer"}, "viewportAnchorY": {"type": "integer"}, "width": {"type": "integer"}}, "required": ["lines", "regionAnchorX", "regionAnchorY", "scroll", "viewportAnchorX", "viewportAnchorY", "width"]}}}, "required": ["cues", "regions"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"cues" : [], "regions" : [{"lines" : 3, "regionAnchorX" : 21.12, "regionAnchorY" : 89.56, "scroll" : "", "viewportAnchorX" : 0, "viewportAnchorY" : 100, "width" : 100}]}
json_instruct
{"type": "object", "properties": {"cues": {"type": "array", "items": {}}, "regions": {"type": "array", "items": {"type": "object", "properties": {"lines": {"type": "integer"}, "regionAnchorX": {"type": "number"}, "regionAnchorY": {"type": "number"}, "scroll": {"type": "string"}, "viewportAnchorX": {"type": "integer"}, "viewportAnchorY": {"type": "integer"}, "width": {"type": "integer"}}, "required": ["lines", "regionAnchorX", "regionAnchorY", "scroll", "viewportAnchorX", "viewportAnchorY", "width"]}}}, "required": ["cues", "regions"], "$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"}, "symbol": {"type": "string"}, "id": {"type": "string"}, "decimals": {"type": "integer"}, "coingecko_url": {"type": "string"}, "market_cap_usd": {"type": "integer"}, "market_cap_rank": {"type": "integer"}, "24_hr_volume_usd": {"type": "integer"}, "logoURI": {"type": "string"}}, "required": ["name", "symbol", "id", "decimals", "coingecko_url", "market_cap_usd", "market_cap_rank", "24_hr_volume_usd", "logoURI"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "Metronome", "symbol" : "MET", "id" : "0xa3d58c4E56fedCae3a7c43A725aeE9A71F0ece4e", "decimals" : 18, "coingecko_url" : "https://www.coingecko.com/en/coins/metronome", "market_cap_usd" : 60350038, "market_cap_rank" : 610, "24_hr_volume_usd" : 41659, "logoURI" : "https://raw.githubusercontent.com/poolsharks-protocol/token-metadata/master/blockchains/ethereum/assets/0xa3d58c4E56fedCae3a7c43A725aeE9A71F0ece4e/logo.png"}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "symbol": {"type": "string"}, "id": {"type": "string"}, "decimals": {"type": "integer"}, "coingecko_url": {"type": "string"}, "market_cap_usd": {"type": "integer"}, "market_cap_rank": {"type": "integer"}, "24_hr_volume_usd": {"type": "integer"}, "logoURI": {"type": "string"}}, "required": ["name", "symbol", "id", "decimals", "coingecko_url", "market_cap_usd", "market_cap_rank", "24_hr_volume_usd", "logoURI"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"input": {"type": "object", "properties": {"dynamic": {"type": "null"}, "input_type": {"type": "string"}}, "required": ["dynamic", "input_type"]}, "output": {"type": "object", "properties": {"dynamic_value": {"type": "string"}, "input_type_text": {"type": "string"}, "ui": {"type": "object", "properties": {"html": {"type": "string"}, "deps": {"type": "array", "items": {}}}, "required": ["html", "deps"]}}, "required": ["dynamic_value", "input_type_text", "ui"]}, "export": {"type": "object", "properties": {}, "required": []}}, "required": ["input", "output", "export"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"input" : {"dynamic" : null, "input_type" : "checkboxGroup"}, "output" : {"dynamic_value" : " NULL", "input_type_text" : "checkboxGroup", "ui" : {"html" : "<div id=\"dynamic\" class=\"form-group shiny-input-checkboxgroup shiny-input-container\" role=\"group\" aria-labelledby=\"dynamic-label\">\n <label class=\"control-label\" id=\"dynamic-label\" for=\"dynamic\">Dynamic</label>\n <div class=\"shiny-options-group\">\n <div class=\"checkbox\">\n <label>\n <input type=\"checkbox\" name=\"dynamic\" value=\"option1\"/>\n <span>Option 1</span>\n </label>\n </div>\n <div class=\"checkbox\">\n <label>\n <input type=\"checkbox\" name=\"dynamic\" value=\"option2\" checked=\"checked\"/>\n <span>Option 2</span>\n </label>\n </div>\n </div>\n</div>", "deps" : []}}, "export" : {}}
json_instruct
{"type": "object", "properties": {"input": {"type": "object", "properties": {"dynamic": {"type": "null"}, "input_type": {"type": "string"}}, "required": ["dynamic", "input_type"]}, "output": {"type": "object", "properties": {"dynamic_value": {"type": "string"}, "input_type_text": {"type": "string"}, "ui": {"type": "object", "properties": {"html": {"type": "string"}, "deps": {"type": "array", "items": {}}}, "required": ["html", "deps"]}}, "required": ["dynamic_value", "input_type_text", "ui"]}, "export": {"type": "object", "properties": {}, "required": []}}, "required": ["input", "output", "export"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"type": {"type": "string"}, "crs": {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"]}}, "required": ["type", "properties"]}, "features": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"Name": {"type": "string"}, "Description": {"type": "string"}}, "required": ["Name", "Description"]}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}, "required": ["type", "coordinates"]}}, "required": ["type", "properties", "geometry"]}}}, "required": ["type", "crs", "features"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"type" : "FeatureCollection", "crs" : {"type" : "name", "properties" : {"name" : "urn:ogc:def:crs:OGC:1.3:CRS84"}}, "features" : [{"type" : "Feature", "properties" : {"Name" : "ITIRU\u00c7U", "Description" : "ITIRU\u00c7U / BA"}, "geometry" : {"type" : "LineString", "coordinates" : [[-40.15063783306948, -13.337237159867014], [-40.0716937088975, -13.495496624069915], [-40.12176736417245, -13.526795037660802], [-40.097820138488544, -13.668696233144601], [-40.1183834653246, -13.668985108875631], [-40.171275345880474, -13.599412704632584], [-40.190245273700384, -13.53888197902006], [-40.23491744158662, -13.534144043812544], [-40.19993126441625, -13.499803436879063], [-40.23179967011862, -13.407499104000408], [-40.15063783306948, -13.337237159867014]]}}]}
json_instruct
{"type": "object", "properties": {"type": {"type": "string"}, "crs": {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"]}}, "required": ["type", "properties"]}, "features": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"Name": {"type": "string"}, "Description": {"type": "string"}}, "required": ["Name", "Description"]}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}, "required": ["type", "coordinates"]}}, "required": ["type", "properties", "geometry"]}}}, "required": ["type", "crs", "features"], "$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"}, "private": {"type": "boolean"}, "scripts": {"type": "object", "properties": {"docusaurus": {"type": "string"}, "start": {"type": "string"}, "build": {"type": "string"}, "swizzle": {"type": "string"}, "deploy": {"type": "string"}, "lint": {"type": "string"}}, "required": ["docusaurus", "start", "build", "swizzle", "deploy", "lint"]}, "dependencies": {"type": "object", "properties": {"@docusaurus/core": {"type": "string"}, "@docusaurus/preset-classic": {"type": "string"}, "react": {"type": "string"}, "react-dom": {"type": "string"}}, "required": ["@docusaurus/core", "@docusaurus/preset-classic", "react", "react-dom"]}, "devDependencies": {"type": "object", "properties": {"eslint": {"type": "string"}, "eslint-config-prettier": {"type": "string"}, "eslint-plugin-prettier": {"type": "string"}, "eslint-plugin-react": {"type": "string"}, "jest": {"type": "string"}, "prettier": {"type": "string"}}, "required": ["eslint", "eslint-config-prettier", "eslint-plugin-prettier", "eslint-plugin-react", "jest", "prettier"]}}, "required": ["name", "version", "private", "scripts", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "website", "version" : "0.0.0", "private" : true, "scripts" : {"docusaurus" : "docusaurus", "start" : "docusaurus start", "build" : "docusaurus build", "swizzle" : "docusaurus swizzle", "deploy" : "docusaurus deploy", "lint" : "eslint . --ignore-path .gitignore"}, "dependencies" : {"@docusaurus/core" : "^2.0.0-alpha.27", "@docusaurus/preset-classic" : "^2.0.0-alpha.27", "react" : "^16.10.2", "react-dom" : "^16.10.2"}, "devDependencies" : {"eslint" : "^6.5.1", "eslint-config-prettier" : "^6.4.0", "eslint-plugin-prettier" : "^3.1.1", "eslint-plugin-react" : "^7.16.0", "jest" : "^24.9.0", "prettier" : "^1.18.2"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "private": {"type": "boolean"}, "scripts": {"type": "object", "properties": {"docusaurus": {"type": "string"}, "start": {"type": "string"}, "build": {"type": "string"}, "swizzle": {"type": "string"}, "deploy": {"type": "string"}, "lint": {"type": "string"}}, "required": ["docusaurus", "start", "build", "swizzle", "deploy", "lint"]}, "dependencies": {"type": "object", "properties": {"@docusaurus/core": {"type": "string"}, "@docusaurus/preset-classic": {"type": "string"}, "react": {"type": "string"}, "react-dom": {"type": "string"}}, "required": ["@docusaurus/core", "@docusaurus/preset-classic", "react", "react-dom"]}, "devDependencies": {"type": "object", "properties": {"eslint": {"type": "string"}, "eslint-config-prettier": {"type": "string"}, "eslint-plugin-prettier": {"type": "string"}, "eslint-plugin-react": {"type": "string"}, "jest": {"type": "string"}, "prettier": {"type": "string"}}, "required": ["eslint", "eslint-config-prettier", "eslint-plugin-prettier", "eslint-plugin-react", "jest", "prettier"]}}, "required": ["name", "version", "private", "scripts", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"type": {"type": "string"}, "id": {"type": "string"}, "spec_version": {"type": "string"}, "objects": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "created_by_ref": {"type": "string"}, "object_marking_refs": {"type": "array", "items": {"type": "string"}}, "source_ref": {"type": "string"}, "relationship_type": {"type": "string"}, "target_ref": {"type": "string"}, "type": {"type": "string"}, "modified": {"type": "string"}, "created": {"type": "string"}}, "required": ["id", "created_by_ref", "object_marking_refs", "source_ref", "relationship_type", "target_ref", "type", "modified", "created"]}}}, "required": ["type", "id", "spec_version", "objects"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"type" : "bundle", "id" : "bundle--eefc839b-1018-44b6-9af3-47990623f3e8", "spec_version" : "2.0", "objects" : [{"id" : "relationship--4f33536d-eb06-4eba-8765-4379e399f3b8", "created_by_ref" : "identity--c78cb6e5-0c4b-4611-8297-d1b8b55e40b5", "object_marking_refs" : ["marking-definition--fa42a846-8d90-4e51-bc29-71d5b4802168"], "source_ref" : "intrusion-set--2e290bfe-93b5-48ce-97d6-edcd6d32b7cf", "relationship_type" : "uses", "target_ref" : "malware--5f9f7648-04ba-4a9f-bb4c-2a13e74572bd", "type" : "relationship", "modified" : "2018-10-17T00:14:20.652Z", "created" : "2017-05-31T21:33:27.080Z"}]}
json_instruct
{"type": "object", "properties": {"type": {"type": "string"}, "id": {"type": "string"}, "spec_version": {"type": "string"}, "objects": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "created_by_ref": {"type": "string"}, "object_marking_refs": {"type": "array", "items": {"type": "string"}}, "source_ref": {"type": "string"}, "relationship_type": {"type": "string"}, "target_ref": {"type": "string"}, "type": {"type": "string"}, "modified": {"type": "string"}, "created": {"type": "string"}}, "required": ["id", "created_by_ref", "object_marking_refs", "source_ref", "relationship_type", "target_ref", "type", "modified", "created"]}}}, "required": ["type", "id", "spec_version", "objects"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "type": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "license": {"type": "string"}, "homepage": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}}, "support": {"type": "object", "properties": {"issues": {"type": "string"}, "source": {"type": "string"}}, "required": ["issues", "source"]}, "require": {"type": "object", "properties": {"yiisoft/yii2": {"type": "string"}, "google/apiclient": {"type": "string"}, "ramsey/uuid": {"type": "string"}}, "required": ["yiisoft/yii2", "google/apiclient", "ramsey/uuid"]}, "autoload": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"tguruslan\\yii2\\google\\apiclient\\": {"type": "string"}}, "required": ["tguruslan\\yii2\\google\\apiclient\\"]}}, "required": ["psr-4"]}}, "required": ["name", "description", "type", "keywords", "license", "homepage", "authors", "support", "require", "autoload"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "tguruslan/yii2-google-apiclient", "description" : "A Yii2 wrapper for the official Google API 2.1 PHP Client", "type" : "yii2-extension", "keywords" : ["yii2", "google", "api"], "license" : "MIT", "homepage" : "https://github.com/tguruslan/yii2-google-apiclient", "authors" : [{"name" : "Ruslan", "email" : "[email protected]"}], "support" : {"issues" : "https://github.com/tguruslan/yii2-google-apiclient/issues", "source" : "https://github.com/tguruslan/yii2-google-apiclient"}, "require" : {"yiisoft/yii2" : "~2", "google/apiclient" : "2.10", "ramsey/uuid" : "^3.7"}, "autoload" : {"psr-4" : {"tguruslan\\yii2\\google\\apiclient\\" : ""}}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "type": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "license": {"type": "string"}, "homepage": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}}, "support": {"type": "object", "properties": {"issues": {"type": "string"}, "source": {"type": "string"}}, "required": ["issues", "source"]}, "require": {"type": "object", "properties": {"yiisoft/yii2": {"type": "string"}, "google/apiclient": {"type": "string"}, "ramsey/uuid": {"type": "string"}}, "required": ["yiisoft/yii2", "google/apiclient", "ramsey/uuid"]}, "autoload": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"tguruslan\\yii2\\google\\apiclient\\": {"type": "string"}}, "required": ["tguruslan\\yii2\\google\\apiclient\\"]}}, "required": ["psr-4"]}}, "required": ["name", "description", "type", "keywords", "license", "homepage", "authors", "support", "require", "autoload"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"TeamSwitzerland": {"type": "array", "items": {"type": "string"}}}, "required": ["TeamSwitzerland"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"TeamSwitzerland" : ["TheHero", "TheLancer", "EnemyMine", "TheEmpire", "TheGoodKingdom", "TrappedBehindEnemyLines", "YouCanRunButYouCantHide", "ReasonableAuthorityFigure", "IgnoredExpert", "BerserkButton", "TheStarscream", "WildCard", "RedemptionEqualsDeath", "TrueNeutral", "TruceZone", "GeneticEngineeringIsTheNewNuke", "TheFederation", "WeaponOfMassDestruction", "UnbuiltTrope", "CivilWar", "ProfessionalWrestling", "PlanetOfHats", "DisappointingOlderSibling", "SuccessionCrisis", "TropeNamer", "IDidWhatIHadToDo", "GreyAndGrayMorality", "ANaziByAnyOtherName", "NecessarilyEvil", "ZombieApocalypse", "ZombieApocalypse", "OmnicidalManiac", "TheHeroDies", "ZombieApocalypse", "ZombieApocalypse", "OmnicidalManiac", "GodAndSatanAreBothJerks", "PassThePopcorn", "ParentalBonus"]}
json_instruct
{"type": "object", "properties": {"TeamSwitzerland": {"type": "array", "items": {"type": "string"}}}, "required": ["TeamSwitzerland"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"18-24": {"type": "integer"}, "25-34": {"type": "integer"}, "35-44": {"type": "integer"}, "45-54": {"type": "integer"}, "55-64": {"type": "integer"}, "65-74": {"type": "integer"}, "75-84": {"type": "integer"}, "85+": {"type": "integer"}, "0-9": {"type": "integer"}, "10-17": {"type": "integer"}}, "required": ["18-24", "25-34", "35-44", "45-54", "55-64", "65-74", "75-84", "85+", "0-9", "10-17"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"18-24" : 0, "25-34" : 0, "35-44" : 6, "45-54" : 8, "55-64" : 31, "65-74" : 41, "75-84" : 46, "85+" : 76, "0-9" : 0, "10-17" : 0}
json_instruct
{"type": "object", "properties": {"18-24": {"type": "integer"}, "25-34": {"type": "integer"}, "35-44": {"type": "integer"}, "45-54": {"type": "integer"}, "55-64": {"type": "integer"}, "65-74": {"type": "integer"}, "75-84": {"type": "integer"}, "85+": {"type": "integer"}, "0-9": {"type": "integer"}, "10-17": {"type": "integer"}}, "required": ["18-24", "25-34", "35-44", "45-54", "55-64", "65-74", "75-84", "85+", "0-9", "10-17"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"name": {"type": "string"}, "homepage": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "array", "items": {"type": "string"}}, "keywords": {"type": "array", "items": {"type": "string"}}, "authors": {"type": "array", "items": {"type": "string"}}, "license": {"type": "string"}, "ignore": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "homepage", "description", "main", "keywords", "authors", "license", "ignore"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "pen", "homepage" : "https://github.com/sofish/pen", "description" : "enjoy live editing(+markdown)", "main" : ["src/pen.js", "src/pen.css"], "keywords" : ["editor", "wysiwyg", "markdown"], "authors" : ["sofish"], "license" : "MIT", "ignore" : ["**/.*", "node_modules", "bower_components", "test", "tests"]}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "homepage": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "array", "items": {"type": "string"}}, "keywords": {"type": "array", "items": {"type": "string"}}, "authors": {"type": "array", "items": {"type": "string"}}, "license": {"type": "string"}, "ignore": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "homepage", "description", "main", "keywords", "authors", "license", "ignore"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"website": {"type": "string"}, "dbmodel": {"type": "array", "items": {"type": "string"}}, "name": {"type": "string"}, "license": {"type": "array", "items": {"type": "string"}}}, "required": ["website", "dbmodel", "name", "license"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"website" : "http://www.paraccel.com/", "dbmodel" : ["Relational DBMS"], "name" : "ParAccel", "license" : ["commercial"]}
json_instruct
{"type": "object", "properties": {"website": {"type": "string"}, "dbmodel": {"type": "array", "items": {"type": "string"}}, "name": {"type": "string"}, "license": {"type": "array", "items": {"type": "string"}}}, "required": ["website", "dbmodel", "name", "license"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {"type": "integer"}}, "productReviews": {"type": "array", "items": {"type": "object", "properties": {"productId": {"type": "integer"}, "reviewText": {"type": "string"}, "reviewDate": {"type": "string"}}, "required": ["productId", "reviewText", "reviewDate"]}}}, "required": ["userId", "cartId", "preferredProducts", "productReviews"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"userId" : 83313, "cartId" : "0215c8c0-b0ed-418d-9cf8-0a9d001761c1", "preferredProducts" : [80, 1489, 1081, 3770, 157, 3443, 1109, 925], "productReviews" : [{"productId" : 1975, "reviewText" : "I saw one of these in Canada and I bought one.", "reviewDate" : "2018-04-30T11:34:16.1667574+03:00"}, {"productId" : 4720, "reviewText" : "My velociraptor loves to play with it.", "reviewDate" : "2020-01-10T02:02:04.6481179+02:00"}, {"productId" : 3859, "reviewText" : "My co-worker Luka has one of these. He says it looks purple.", "reviewDate" : "2020-05-01T11:13:26.9510944+03:00"}, {"productId" : 1771, "reviewText" : "this Associate is dominant.", "reviewDate" : "2020-01-27T18:29:25.5919234+02:00"}, {"productId" : 441, "reviewText" : "I tried to attack it but got meatball all over it.", "reviewDate" : "2018-07-04T10:33:59.1523965+03:00"}]}
json_instruct
{"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {"type": "integer"}}, "productReviews": {"type": "array", "items": {"type": "object", "properties": {"productId": {"type": "integer"}, "reviewText": {"type": "string"}, "reviewDate": {"type": "string"}}, "required": ["productId", "reviewText", "reviewDate"]}}}, "required": ["userId", "cartId", "preferredProducts", "productReviews"], "$schema": "http://json-schema.org/draft-07/schema#"}
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" : "1707053004", "district_id" : "1707053", "name" : "TAMBANG SAWEAK"}
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#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"order": {"type": "integer"}, "name": {"type": "string"}, "title": {"type": "string"}, "logo": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "location": {"type": "string"}, "copy": {"type": "string"}, "cta": {"type": "object", "properties": {"text": {"type": "string"}, "url": {"type": "string"}, "data_ga_label": {"type": "string"}}, "required": ["text", "url", "data_ga_label"]}, "image_set": {"type": "object", "properties": {"sources": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "srcset": {"type": "string"}, "media": {"type": "string"}}, "required": ["id", "srcset", "media"]}}, "img": {"type": "object", "properties": {"srcset": {"type": "string"}, "alt": {"type": "string"}}, "required": ["srcset", "alt"]}}, "required": ["sources", "img"]}}, "required": ["order", "name", "title", "logo", "location", "copy", "cta", "image_set"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"order" : 4, "name" : "berlin", "title" : "nu3", "logo" : {"url" : "/images/logos/nu3-logo.png"}, "location" : "Berlin", "copy" : "A bit more than three years before, I was wandering through the streets of Berlin. <br>A vibrant startup, <a href='https://www.nu3.com/' target='_blank' rel='noopener'>nu3</a>, decided I was good looking enough to help them build a fresh UI for their fantastic e-commerce platform.", "cta" : {"text" : "Cross over", "url" : "#malta", "data_ga_label" : "Malta"}, "image_set" : {"sources" : [{"id" : 1, "srcset" : "/images/berlin-large.jpg", "media" : "(min-width: 62rem)"}, {"id" : 2, "srcset" : "/images/berlin-large.jpg", "media" : "(min-width: 48rem)"}], "img" : {"srcset" : "/images/berlin.jpg", "alt" : "Berlin"}}}
json_instruct
{"type": "object", "properties": {"order": {"type": "integer"}, "name": {"type": "string"}, "title": {"type": "string"}, "logo": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "location": {"type": "string"}, "copy": {"type": "string"}, "cta": {"type": "object", "properties": {"text": {"type": "string"}, "url": {"type": "string"}, "data_ga_label": {"type": "string"}}, "required": ["text", "url", "data_ga_label"]}, "image_set": {"type": "object", "properties": {"sources": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "srcset": {"type": "string"}, "media": {"type": "string"}}, "required": ["id", "srcset", "media"]}}, "img": {"type": "object", "properties": {"srcset": {"type": "string"}, "alt": {"type": "string"}}, "required": ["srcset", "alt"]}}, "required": ["sources", "img"]}}, "required": ["order", "name", "title", "logo", "location", "copy", "cta", "image_set"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "author": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"grunt-grunticon": {"type": "string"}, "grunt": {"type": "string"}}, "required": ["grunt-grunticon", "grunt"]}}, "required": ["name", "version", "description", "author", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "international_flags", "version" : "0.0.0", "description" : "Scrape the flags of the world with their licenses", "author" : "Wil Linssen", "devDependencies" : {"grunt-grunticon" : "~0.6.15", "grunt" : "~0.4.2"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "author": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"grunt-grunticon": {"type": "string"}, "grunt": {"type": "string"}}, "required": ["grunt-grunticon", "grunt"]}}, "required": ["name", "version", "description", "author", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"variants": {"type": "object", "properties": {"type=bottom": {"type": "object", "properties": {"model": {"type": "string"}}, "required": ["model"]}, "type=double": {"type": "object", "properties": {"model": {"type": "string"}}, "required": ["model"]}, "type=top": {"type": "object", "properties": {"model": {"type": "string"}}, "required": ["model"]}}, "required": ["type=bottom", "type=double", "type=top"]}}, "required": ["variants"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"variants" : {"type=bottom" : {"model" : "block_party:block/ginkgo_slab"}, "type=double" : {"model" : "block_party:block/ginkgo_planks"}, "type=top" : {"model" : "block_party:block/ginkgo_slab_top"}}}
json_instruct
{"type": "object", "properties": {"variants": {"type": "object", "properties": {"type=bottom": {"type": "object", "properties": {"model": {"type": "string"}}, "required": ["model"]}, "type=double": {"type": "object", "properties": {"model": {"type": "string"}}, "required": ["model"]}, "type=top": {"type": "object", "properties": {"model": {"type": "string"}}, "required": ["model"]}}, "required": ["type=bottom", "type=double", "type=top"]}}, "required": ["variants"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"judges": {"type": "array", "items": {}}, "court": {"type": "string"}, "api_url": {"type": "string"}, "author": {"type": "null"}, "text": {"type": "object", "properties": {"pdf": {"type": "string"}, "text": {"type": "string"}}, "required": ["pdf", "text"]}, "cited_laws": {"type": "null"}, "cited_cases": {"type": "null"}, "number": {"type": "string"}, "name": {"type": "string"}, "date_published": {"type": "string"}, "parties": {"type": "object", "properties": {"plaintiff": {"type": "string"}, "defendant": {"type": "string"}}, "required": ["plaintiff", "defendant"]}, "attorneys": {"type": "array", "items": {}}, "outcome": {"type": "null"}, "type": {"type": "null"}, "is_published": {"type": "boolean"}}, "required": ["judges", "court", "api_url", "author", "text", "cited_laws", "cited_cases", "number", "name", "date_published", "parties", "attorneys", "outcome", "type", "is_published"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"judges" : [], "court" : "Court of Appeals of Virginia", "api_url" : "opinions/3010051.json", "author" : null, "text" : {"pdf" : "http://www.courts.state.va.us/opinions/opncavwp/3010051.pdf", "text" : "opinions/3010051.txt"}, "cited_laws" : null, "cited_cases" : null, "number" : "3010051", "name" : "Glenn R. Cartwright v. Kimberly R. Cartwright", "date_published" : "0/24/2006", "parties" : {"plaintiff" : "Glenn R. Cartwright", "defendant" : "Kimberly R. Cartwright"}, "attorneys" : [], "outcome" : null, "type" : null, "is_published" : true}
json_instruct
{"type": "object", "properties": {"judges": {"type": "array", "items": {}}, "court": {"type": "string"}, "api_url": {"type": "string"}, "author": {"type": "null"}, "text": {"type": "object", "properties": {"pdf": {"type": "string"}, "text": {"type": "string"}}, "required": ["pdf", "text"]}, "cited_laws": {"type": "null"}, "cited_cases": {"type": "null"}, "number": {"type": "string"}, "name": {"type": "string"}, "date_published": {"type": "string"}, "parties": {"type": "object", "properties": {"plaintiff": {"type": "string"}, "defendant": {"type": "string"}}, "required": ["plaintiff", "defendant"]}, "attorneys": {"type": "array", "items": {}}, "outcome": {"type": "null"}, "type": {"type": "null"}, "is_published": {"type": "boolean"}}, "required": ["judges", "court", "api_url", "author", "text", "cited_laws", "cited_cases", "number", "name", "date_published", "parties", "attorneys", "outcome", "type", "is_published"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"nom": {"type": "string"}, "dpt": {"type": "string"}, "inscrits": {"type": "integer"}, "abs": {"type": "integer"}, "votants": {"type": "integer"}, "blancs": {"type": "integer"}, "nuls": {"type": "integer"}, "exp": {"type": "integer"}, "res": {"type": "array", "items": {"type": "object", "properties": {"panneau": {"type": "string"}, "voix": {"type": "integer"}}, "required": ["panneau", "voix"]}}}, "required": ["nom", "dpt", "inscrits", "abs", "votants", "blancs", "nuls", "exp", "res"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"nom" : "Bonningues-l\u00e8s-Calais", "dpt" : "Pas-de-Calais", "inscrits" : 464, "abs" : 71, "votants" : 393, "blancs" : 47, "nuls" : 10, "exp" : 336, "res" : [{"panneau" : "1", "voix" : 194}, {"panneau" : "2", "voix" : 142}]}
json_instruct
{"type": "object", "properties": {"nom": {"type": "string"}, "dpt": {"type": "string"}, "inscrits": {"type": "integer"}, "abs": {"type": "integer"}, "votants": {"type": "integer"}, "blancs": {"type": "integer"}, "nuls": {"type": "integer"}, "exp": {"type": "integer"}, "res": {"type": "array", "items": {"type": "object", "properties": {"panneau": {"type": "string"}, "voix": {"type": "integer"}}, "required": ["panneau", "voix"]}}}, "required": ["nom", "dpt", "inscrits", "abs", "votants", "blancs", "nuls", "exp", "res"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "array", "items": {"type": "object", "properties": {"noteDate": {"type": "string"}, "noteCategory": {"type": "string"}, "noteDetails": {"type": "string"}}, "required": ["noteDate", "noteCategory", "noteDetails"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"noteDate" : "tests", "noteCategory" : "asfdfsd", "noteDetails" : "food"}, {"noteDate" : "lskfjsdlk", "noteCategory" : "sdjlfkjdsklf", "noteDetails" : "excercise"}, {"noteDate" : "ouch", "noteCategory" : "dude", "noteDetails" : "food"}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"noteDate": {"type": "string"}, "noteCategory": {"type": "string"}, "noteDetails": {"type": "string"}}, "required": ["noteDate", "noteCategory", "noteDetails"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"title": {"type": "string"}, "downloads": {"type": "integer"}, "tags": {"type": "array", "items": {"type": "string"}}, "hxl": {"type": "integer"}, "org": {"type": "string"}, "id": {"type": "string"}, "resources": {"type": "array", "items": {"type": "object", "properties": {"update_date": {"type": "string"}, "link": {"type": "string"}}, "required": ["update_date", "link"]}}}, "required": ["title", "downloads", "tags", "hxl", "org", "id", "resources"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"title" : "St. Martin (French part) - Trade", "downloads" : 61, "tags" : ["hxl", "indicators", "international trade", "Saint Martin"], "hxl" : 1, "org" : "World Bank Group", "id" : "389d946b-d8dd-4961-8085-6b655d93cc24", "resources" : [{"update_date" : "2021-01-29T02:28:45.052852", "link" : "https://data.humdata.org/dataset/389d946b-d8dd-4961-8085-6b655d93cc24/resource/e357ae42-0a03-4a5c-9664-9db853f271eb/download/trade_maf.csv"}, {"update_date" : "2021-01-29T02:28:45.052852", "link" : "https://data.humdata.org/dataset/389d946b-d8dd-4961-8085-6b655d93cc24/resource/10fa0726-fdd1-492e-a905-f1ac51b12a6d/download/qc_trade_maf.csv"}]}
json_instruct
{"type": "object", "properties": {"title": {"type": "string"}, "downloads": {"type": "integer"}, "tags": {"type": "array", "items": {"type": "string"}}, "hxl": {"type": "integer"}, "org": {"type": "string"}, "id": {"type": "string"}, "resources": {"type": "array", "items": {"type": "object", "properties": {"update_date": {"type": "string"}, "link": {"type": "string"}}, "required": ["update_date", "link"]}}}, "required": ["title", "downloads", "tags", "hxl", "org", "id", "resources"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"type": {"type": "string"}, "features": {"type": "array", "items": {"type": "object", "properties": {"geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["type", "coordinates"]}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"cartodb_id": {"type": "integer"}}, "required": ["cartodb_id"]}}, "required": ["geometry", "type", "properties"]}}}, "required": ["type", "features"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"type" : "FeatureCollection", "features" : [{"geometry" : {"type" : "Polygon", "coordinates" : [[[-73.60432, 41.524067], [-73.601378, 41.537374], [-73.601968, 41.552758], [-73.582728, 41.555003], [-73.585918, 41.564663], [-73.587633, 41.575645], [-73.594473, 41.574861], [-73.584915, 41.601191], [-73.579094, 41.613612], [-73.521041, 41.619773], [-73.530067, 41.527194], [-73.579783, 41.526461], [-73.60432, 41.524067]]]}, "type" : "Feature", "properties" : {"cartodb_id" : 45345}}]}
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": {"componentChunkName": {"type": "string"}, "path": {"type": "string"}, "result": {"type": "object", "properties": {"data": {"type": "object", "properties": {"markdownRemark": {"type": "object", "properties": {"id": {"type": "string"}, "html": {"type": "string"}, "fields": {"type": "object", "properties": {"slug": {"type": "string"}, "tagSlugs": {"type": "array", "items": {"type": "string"}}, "categorySlug": {"type": "string"}}, "required": ["slug", "tagSlugs", "categorySlug"]}, "frontmatter": {"type": "object", "properties": {"date": {"type": "string"}, "description": {"type": "string"}, "category": {"type": "string"}, "tags": {"type": "array", "items": {"type": "string"}}, "title": {"type": "string"}}, "required": ["date", "description", "category", "tags", "title"]}}, "required": ["id", "html", "fields", "frontmatter"]}}, "required": ["markdownRemark"]}, "pageContext": {"type": "object", "properties": {"slug": {"type": "string"}, "allCategories": {"type": "array", "items": {"type": "object", "properties": {"fieldValue": {"type": "string"}, "totalCount": {"type": "integer"}, "categoryColor": {"type": "string"}}, "required": ["fieldValue", "totalCount", "categoryColor"]}}}, "required": ["slug", "allCategories"]}}, "required": ["data", "pageContext"]}, "staticQueryHashes": {"type": "array", "items": {"type": "string"}}}, "required": ["componentChunkName", "path", "result", "staticQueryHashes"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"componentChunkName" : "component---src-templates-post-template-js", "path" : "/posts/account-surfer-gets-microsoft-award", "result" : {"data" : {"markdownRemark" : {"id" : "94125c4f-dc8b-5db5-a961-ad63bad73f2d", "html" : "<p><img src=\"/media/as-award/01.png\"></p>", "fields" : {"slug" : "/posts/account-surfer-gets-microsoft-award", "tagSlugs" : ["/tag/account-surfer", "/tag/chrome", "/tag/windows"], "categorySlug" : "/category/productivity"}, "frontmatter" : {"date" : "2019-10-23T14:36:12.038Z", "description" : "Account Surfer became \"3rd in Best Business or Consumer Value\" at Microsoft 365 app award", "category" : "productivity", "tags" : ["account-surfer", "chrome", "windows"], "title" : "Account Surfer gets Microsoft Award"}}}, "pageContext" : {"slug" : "/posts/account-surfer-gets-microsoft-award", "allCategories" : [{"fieldValue" : "automation", "totalCount" : 1, "categoryColor" : "pink-600"}, {"fieldValue" : "healthcare", "totalCount" : 1, "categoryColor" : "green-600"}, {"fieldValue" : "productivity", "totalCount" : 7, "categoryColor" : "indigo-600"}, {"fieldValue" : "programming", "totalCount" : 2, "categoryColor" : "blue-600"}]}}, "staticQueryHashes" : ["2052939023", "251939775", "401334301"]}
json_instruct
{"type": "object", "properties": {"componentChunkName": {"type": "string"}, "path": {"type": "string"}, "result": {"type": "object", "properties": {"data": {"type": "object", "properties": {"markdownRemark": {"type": "object", "properties": {"id": {"type": "string"}, "html": {"type": "string"}, "fields": {"type": "object", "properties": {"slug": {"type": "string"}, "tagSlugs": {"type": "array", "items": {"type": "string"}}, "categorySlug": {"type": "string"}}, "required": ["slug", "tagSlugs", "categorySlug"]}, "frontmatter": {"type": "object", "properties": {"date": {"type": "string"}, "description": {"type": "string"}, "category": {"type": "string"}, "tags": {"type": "array", "items": {"type": "string"}}, "title": {"type": "string"}}, "required": ["date", "description", "category", "tags", "title"]}}, "required": ["id", "html", "fields", "frontmatter"]}}, "required": ["markdownRemark"]}, "pageContext": {"type": "object", "properties": {"slug": {"type": "string"}, "allCategories": {"type": "array", "items": {"type": "object", "properties": {"fieldValue": {"type": "string"}, "totalCount": {"type": "integer"}, "categoryColor": {"type": "string"}}, "required": ["fieldValue", "totalCount", "categoryColor"]}}}, "required": ["slug", "allCategories"]}}, "required": ["data", "pageContext"]}, "staticQueryHashes": {"type": "array", "items": {"type": "string"}}}, "required": ["componentChunkName", "path", "result", "staticQueryHashes"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"no": {"type": "string"}, "name": {"type": "string"}, "type": {"type": "array", "items": {"type": "string"}}, "classification": {"type": "string"}, "tribeValue": {"type": "array", "items": {"type": "string"}}, "height": {"type": "string"}, "weight": {"type": "string"}}, "required": ["no", "name", "type", "classification", "tribeValue", "height", "weight"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"no" : "623", "name" : "\u30b4\u30eb\u30fc\u30b0", "type" : ["\u3058\u3081\u3093", "\u30b4\u30fc\u30b9\u30c8"], "classification" : "\u30b4\u30fc\u30ec\u30e0\u30dd\u30b1\u30e2\u30f3", "tribeValue" : ["89", "124", "80", "55", "80", "55"], "height" : "2.8", "weight" : "330.0"}
json_instruct
{"type": "object", "properties": {"no": {"type": "string"}, "name": {"type": "string"}, "type": {"type": "array", "items": {"type": "string"}}, "classification": {"type": "string"}, "tribeValue": {"type": "array", "items": {"type": "string"}}, "height": {"type": "string"}, "weight": {"type": "string"}}, "required": ["no", "name", "type", "classification", "tribeValue", "height", "weight"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "properties": {"type": "object", "properties": {"id": {"type": "string"}, "type": {"type": "string"}, "name": {"type": "string"}, "code": {"type": "string"}}, "required": ["id", "type", "name", "code"]}}, "required": ["type", "coordinates", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"type" : "MultiPolygon", "coordinates" : [[[[-86.266515, 39.371367], [-86.266505, 39.371546], [-86.265811, 39.371702], [-86.265243, 39.371906], [-86.264821, 39.372102], [-86.264834, 39.372266], [-86.264567, 39.372346], [-86.264121, 39.372481], [-86.263736, 39.372598], [-86.263643, 39.372612], [-86.263252, 39.37267], [-86.263184, 39.372757], [-86.263208, 39.372859], [-86.263115, 39.373306], [-86.263033, 39.373702], [-86.262989, 39.37383], [-86.262637, 39.375048], [-86.262525, 39.375048], [-86.262078, 39.376035], [-86.261514, 39.376168], [-86.261113, 39.376078], [-86.261111, 39.376205], [-86.260366, 39.376593], [-86.259768, 39.376923], [-86.259199, 39.377143], [-86.257604, 39.377567], [-86.256839, 39.377649], [-86.255753, 39.377872], [-86.254162, 39.378027], [-86.252633, 39.378188], [-86.25152, 39.37959], [-86.251526, 39.378927], [-86.251557, 39.378646], [-86.251554, 39.377423], [-86.251533, 39.377144], [-86.251532, 39.376947], [-86.251529, 39.375778], [-86.251534, 39.375024], [-86.25142, 39.37478], [-86.251537, 39.374517], [-86.251538, 39.37436], [-86.251533, 39.374212], [-86.251492, 39.372211], [-86.2515, 39.37122], [-86.252375, 39.371202], [-86.252662, 39.371209], [-86.253238, 39.371194], [-86.254282, 39.37122], [-86.254446, 39.371224], [-86.256099, 39.371216], [-86.256097, 39.371085], [-86.257243, 39.371054], [-86.257573, 39.370447], [-86.258045, 39.369879], [-86.258911, 39.368823], [-86.261089, 39.368795], [-86.261099, 39.368346], [-86.26113, 39.368284], [-86.261322, 39.368156], [-86.26186, 39.367828], [-86.261964, 39.367784], [-86.261764, 39.367291], [-86.262241, 39.367117], [-86.262653, 39.367042], [-86.263476, 39.366444], [-86.26459, 39.366355], [-86.265361, 39.366353], [-86.265465, 39.366365], [-86.265587, 39.367568], [-86.265359, 39.36963], [-86.266641, 39.369681], [-86.266515, 39.371367]]]], "properties" : {"id" : "usa-in-morgantown-city", "type" : "city", "name" : "Morgantown", "code" : "1851102"}}
json_instruct
{"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "properties": {"type": "object", "properties": {"id": {"type": "string"}, "type": {"type": "string"}, "name": {"type": "string"}, "code": {"type": "string"}}, "required": ["id", "type", "name", "code"]}}, "required": ["type", "coordinates", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"id": {"type": "string"}}, "required": ["id"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : "2bfa8219d84f544b102c57ee44c06dd7dabe1f66"}
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": {"name": {"type": "string"}, "description": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "version": {"type": "string"}, "author": {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"]}, "license": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "devDependencies": {"type": "object", "properties": {"mocha": {"type": "string"}}, "required": ["mocha"]}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "readmeFilename": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}}, "required": ["name", "description", "keywords", "version", "author", "license", "repository", "devDependencies", "scripts", "readmeFilename", "bugs", "homepage"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "is-module", "description" : "check if a source string is an es6 module", "keywords" : ["es6", "es6-modules", "ecmascript", "module", "modules"], "version" : "2.0.0-rc.1", "author" : {"name" : "Anton Wilhelm"}, "license" : "MIT", "repository" : {"type" : "git", "url" : "https://github.com/component/is-module"}, "devDependencies" : {"mocha" : "^6.0.2"}, "scripts" : {"test" : "mocha --reporter spec"}, "readmeFilename" : "README.md", "bugs" : {"url" : "https://github.com/component/is-module/issues"}, "homepage" : "https://github.com/component/is-module"}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "version": {"type": "string"}, "author": {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"]}, "license": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "devDependencies": {"type": "object", "properties": {"mocha": {"type": "string"}}, "required": ["mocha"]}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "readmeFilename": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}}, "required": ["name", "description", "keywords", "version", "author", "license", "repository", "devDependencies", "scripts", "readmeFilename", "bugs", "homepage"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"short_name": {"type": "string"}, "name": {"type": "string"}, "description": {"type": "string"}, "author": {"type": "string"}, "version": {"type": "string"}, "icons": {"type": "array", "items": {"type": "object", "properties": {"src": {"type": "string"}, "sizes": {"type": "string"}, "type": {"type": "string"}}, "required": ["src", "sizes", "type"]}}, "start_url": {"type": "string"}, "display": {"type": "string"}, "theme_color": {"type": "string"}, "background_color": {"type": "string"}}, "required": ["short_name", "name", "description", "author", "version", "icons", "start_url", "display", "theme_color", "background_color"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"short_name" : "Carmen", "name" : "Carmen: React + Caman", "description" : "Carmen: One page app to edit pictures locally in the browser", "author" : "Martin Green", "version" : "0.2.1", "icons" : [{"src" : "favicon/favicon.svg", "sizes" : "any", "type" : "image/svg+xml"}, {"src" : "favicon/favicon.ico", "sizes" : "64x64 32x32 24x24 16x16", "type" : "image/x-icon"}, {"src" : "favicon/android-chrome-192x192.png", "sizes" : "192x192", "type" : "image/png"}, {"src" : "favicon/android-chrome-512x512.png", "sizes" : "512x512", "type" : "image/png"}], "start_url" : ".", "display" : "standalone", "theme_color" : "#6f42c1", "background_color" : "#6f42c1"}
json_instruct
{"type": "object", "properties": {"short_name": {"type": "string"}, "name": {"type": "string"}, "description": {"type": "string"}, "author": {"type": "string"}, "version": {"type": "string"}, "icons": {"type": "array", "items": {"type": "object", "properties": {"src": {"type": "string"}, "sizes": {"type": "string"}, "type": {"type": "string"}}, "required": ["src", "sizes", "type"]}}, "start_url": {"type": "string"}, "display": {"type": "string"}, "theme_color": {"type": "string"}, "background_color": {"type": "string"}}, "required": ["short_name", "name", "description", "author", "version", "icons", "start_url", "display", "theme_color", "background_color"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"python.pythonPath": {"type": "string"}, "python.linting.flake8Enabled": {"type": "boolean"}, "python.linting.mypyEnabled": {"type": "boolean"}, "python.linting.enabled": {"type": "boolean"}, "python.testing.pytestArgs": {"type": "array", "items": {"type": "string"}}, "python.testing.unittestEnabled": {"type": "boolean"}, "python.testing.pytestEnabled": {"type": "boolean"}, "editor.formatOnSave": {"type": "boolean"}, "files.autoSave": {"type": "string"}, "python.formatting.provider": {"type": "string"}, "autoDocstring.customTemplatePath": {"type": "string"}, "[python]": {"type": "object", "properties": {"editor.insertSpaces": {"type": "boolean"}, "editor.tabSize": {"type": "integer"}}, "required": ["editor.insertSpaces", "editor.tabSize"]}, "files.exclude": {"type": "object", "properties": {"**/__pycache__": {"type": "boolean"}}, "required": ["**/__pycache__"]}, "workbench.colorCustomizations": {"type": "object", "properties": {"editorRuler.foreground": {"type": "string"}, "activityBar.background": {"type": "string"}, "titleBar.activeBackground": {"type": "string"}, "titleBar.activeForeground": {"type": "string"}}, "required": ["editorRuler.foreground", "activityBar.background", "titleBar.activeBackground", "titleBar.activeForeground"]}}, "required": ["python.pythonPath", "python.linting.flake8Enabled", "python.linting.mypyEnabled", "python.linting.enabled", "python.testing.pytestArgs", "python.testing.unittestEnabled", "python.testing.pytestEnabled", "editor.formatOnSave", "files.autoSave", "python.formatting.provider", "autoDocstring.customTemplatePath", "[python]", "files.exclude", "workbench.colorCustomizations"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"python.pythonPath" : "${workspaceFolder}/.venv/bin/python", "python.linting.flake8Enabled" : true, "python.linting.mypyEnabled" : false, "python.linting.enabled" : true, "python.testing.pytestArgs" : ["test"], "python.testing.unittestEnabled" : false, "python.testing.pytestEnabled" : true, "editor.formatOnSave" : true, "files.autoSave" : "afterDelay", "python.formatting.provider" : "black", "autoDocstring.customTemplatePath" : ".vscode/google_no_types.mustache", "[python]" : {"editor.insertSpaces" : true, "editor.tabSize" : 4}, "files.exclude" : {"**/__pycache__" : true}, "workbench.colorCustomizations" : {"editorRuler.foreground" : "#ff4081", "activityBar.background" : "#4F1D22", "titleBar.activeBackground" : "#6F2830", "titleBar.activeForeground" : "#FEFBFC"}}
json_instruct
{"type": "object", "properties": {"python.pythonPath": {"type": "string"}, "python.linting.flake8Enabled": {"type": "boolean"}, "python.linting.mypyEnabled": {"type": "boolean"}, "python.linting.enabled": {"type": "boolean"}, "python.testing.pytestArgs": {"type": "array", "items": {"type": "string"}}, "python.testing.unittestEnabled": {"type": "boolean"}, "python.testing.pytestEnabled": {"type": "boolean"}, "editor.formatOnSave": {"type": "boolean"}, "files.autoSave": {"type": "string"}, "python.formatting.provider": {"type": "string"}, "autoDocstring.customTemplatePath": {"type": "string"}, "[python]": {"type": "object", "properties": {"editor.insertSpaces": {"type": "boolean"}, "editor.tabSize": {"type": "integer"}}, "required": ["editor.insertSpaces", "editor.tabSize"]}, "files.exclude": {"type": "object", "properties": {"**/__pycache__": {"type": "boolean"}}, "required": ["**/__pycache__"]}, "workbench.colorCustomizations": {"type": "object", "properties": {"editorRuler.foreground": {"type": "string"}, "activityBar.background": {"type": "string"}, "titleBar.activeBackground": {"type": "string"}, "titleBar.activeForeground": {"type": "string"}}, "required": ["editorRuler.foreground", "activityBar.background", "titleBar.activeBackground", "titleBar.activeForeground"]}}, "required": ["python.pythonPath", "python.linting.flake8Enabled", "python.linting.mypyEnabled", "python.linting.enabled", "python.testing.pytestArgs", "python.testing.unittestEnabled", "python.testing.pytestEnabled", "editor.formatOnSave", "files.autoSave", "python.formatting.provider", "autoDocstring.customTemplatePath", "[python]", "files.exclude", "workbench.colorCustomizations"], "$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" : "rechiseled_compat:block/genericeco_cherry_planks_wavy_connecting"}
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": {"n_dim": {"type": "integer"}, "n_trials": {"type": "integer"}, "objective": {"type": "string"}, "white": {"type": "string"}, "black": {"type": "string"}, "traceback": {"type": "array", "items": {"type": "string"}}, "best_val": {"type": "array", "items": {"type": "number"}}, "best_x": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}, "feval_count": {"type": "array", "items": {"type": "integer"}}, "n_trials_instructed": {"type": "array", "items": {"type": "integer"}}, "passing": {"type": "array", "items": {"type": "boolean"}}, "completed": {"type": "boolean"}, "points": {"type": "number"}, "winner": {"type": "string"}, "loser": {"type": "string"}}, "required": ["n_dim", "n_trials", "objective", "white", "black", "traceback", "best_val", "best_x", "feval_count", "n_trials_instructed", "passing", "completed", "points", "winner", "loser"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"n_dim" : 8, "n_trials" : 210, "objective" : "markowitz_analytic_on_cube", "white" : "pysot_lcb", "black" : "pysot_random", "traceback" : ["passing", "passing"], "best_val" : [0.25935880376652937, 1.3103917251340647], "best_x" : [[1.536551901062595e-10, 2.0436389793256596e-12, 1.3386978036933382e-11, 0.3486481093080234, 2.0529044526359823e-06, 0.15819313574364757, 0.5985793280993511, 2.5149815611891134e-11], [0.23374723026083877, 0.2119900932561748, 0.0995620756338862, 0.19776957272308926, 0.25639141374535934, 0.237527658805899, 0.008966856326946049, 0.7566049136126985]], "feval_count" : [210, 210], "n_trials_instructed" : [210, 210], "passing" : [true, true], "completed" : true, "points" : 1.0, "winner" : "pysot_lcb", "loser" : "pysot_random"}
json_instruct
{"type": "object", "properties": {"n_dim": {"type": "integer"}, "n_trials": {"type": "integer"}, "objective": {"type": "string"}, "white": {"type": "string"}, "black": {"type": "string"}, "traceback": {"type": "array", "items": {"type": "string"}}, "best_val": {"type": "array", "items": {"type": "number"}}, "best_x": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}, "feval_count": {"type": "array", "items": {"type": "integer"}}, "n_trials_instructed": {"type": "array", "items": {"type": "integer"}}, "passing": {"type": "array", "items": {"type": "boolean"}}, "completed": {"type": "boolean"}, "points": {"type": "number"}, "winner": {"type": "string"}, "loser": {"type": "string"}}, "required": ["n_dim", "n_trials", "objective", "white", "black", "traceback", "best_val", "best_x", "feval_count", "n_trials_instructed", "passing", "completed", "points", "winner", "loser"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"resourceType": {"type": "string"}, "id": {"type": "string"}, "meta": {"type": "object", "properties": {"lastUpdated": {"type": "string"}}, "required": ["lastUpdated"]}, "url": {"type": "string"}, "status": {"type": "string"}, "experimental": {"type": "boolean"}, "stringency": {"type": "string"}, "element": {"type": "array", "items": {"type": "object", "properties": {"path": {"type": "string"}, "short": {"type": "string"}, "definition": {"type": "string"}, "requirements": {"type": "string"}, "min": {"type": "integer"}, "max": {"type": "string"}, "type": {"type": "array", "items": {"type": "object", "properties": {"code": {"type": "string"}}, "required": ["code"]}}, "isSummary": {"type": "boolean"}, "mapping": {"type": "array", "items": {"type": "object", "properties": {"identity": {"type": "string"}, "map": {"type": "string"}}, "required": ["identity", "map"]}}}, "required": ["path", "short", "definition", "requirements", "min", "max", "type", "isSummary", "mapping"]}}}, "required": ["resourceType", "id", "meta", "url", "status", "experimental", "stringency", "element"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"resourceType" : "DataElement", "id" : "CarePlan.modified", "meta" : {"lastUpdated" : "2015-10-24T07:41:03.495+11:00"}, "url" : "http://hl7.org/fhir/DataElement/CarePlan.modified", "status" : "draft", "experimental" : true, "stringency" : "fully-specified", "element" : [{"path" : "CarePlan.modified", "short" : "When last updated", "definition" : "Identifies the most recent date on which the plan has been revised.", "requirements" : "Indicates how current the plan is.", "min" : 0, "max" : "1", "type" : [{"code" : "dateTime"}], "isSummary" : true, "mapping" : [{"identity" : "v2", "map" : "PTH-6"}, {"identity" : "rim", "map" : ".participation[typeCode=AUT].time"}]}]}
json_instruct
{"type": "object", "properties": {"resourceType": {"type": "string"}, "id": {"type": "string"}, "meta": {"type": "object", "properties": {"lastUpdated": {"type": "string"}}, "required": ["lastUpdated"]}, "url": {"type": "string"}, "status": {"type": "string"}, "experimental": {"type": "boolean"}, "stringency": {"type": "string"}, "element": {"type": "array", "items": {"type": "object", "properties": {"path": {"type": "string"}, "short": {"type": "string"}, "definition": {"type": "string"}, "requirements": {"type": "string"}, "min": {"type": "integer"}, "max": {"type": "string"}, "type": {"type": "array", "items": {"type": "object", "properties": {"code": {"type": "string"}}, "required": ["code"]}}, "isSummary": {"type": "boolean"}, "mapping": {"type": "array", "items": {"type": "object", "properties": {"identity": {"type": "string"}, "map": {"type": "string"}}, "required": ["identity", "map"]}}}, "required": ["path", "short", "definition", "requirements", "min", "max", "type", "isSummary", "mapping"]}}}, "required": ["resourceType", "id", "meta", "url", "status", "experimental", "stringency", "element"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"_index": {"type": "string"}, "_type": {"type": "string"}, "_id": {"type": "string"}, "_version": {"type": "integer"}, "result": {"type": "string"}, "_shards": {"type": "object", "properties": {"total": {"type": "integer"}, "successful": {"type": "integer"}, "failed": {"type": "integer"}}, "required": ["total", "successful", "failed"]}, "_seq_no": {"type": "integer"}, "_primary_term": {"type": "integer"}}, "required": ["_index", "_type", "_id", "_version", "result", "_shards", "_seq_no", "_primary_term"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"_index" : "docere", "_type" : "_doc", "_id" : "SDtTaG0Br56226dbdFsU", "_version" : 1, "result" : "created", "_shards" : {"total" : 2, "successful" : 1, "failed" : 0}, "_seq_no" : 1, "_primary_term" : 1}
json_instruct
{"type": "object", "properties": {"_index": {"type": "string"}, "_type": {"type": "string"}, "_id": {"type": "string"}, "_version": {"type": "integer"}, "result": {"type": "string"}, "_shards": {"type": "object", "properties": {"total": {"type": "integer"}, "successful": {"type": "integer"}, "failed": {"type": "integer"}}, "required": ["total", "successful", "failed"]}, "_seq_no": {"type": "integer"}, "_primary_term": {"type": "integer"}}, "required": ["_index", "_type", "_id", "_version", "result", "_shards", "_seq_no", "_primary_term"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"app": {"type": "array", "items": {"type": "string"}}, "component---node-modules-gatsby-plugin-offline-app-shell-js": {"type": "array", "items": {"type": "string"}}, "component---src-templates-index-js": {"type": "array", "items": {"type": "string"}}, "component---src-templates-blog-post-js": {"type": "array", "items": {"type": "string"}}, "component---src-pages-404-js": {"type": "array", "items": {"type": "string"}}}, "required": ["app", "component---node-modules-gatsby-plugin-offline-app-shell-js", "component---src-templates-index-js", "component---src-templates-blog-post-js", "component---src-pages-404-js"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"app" : ["/app-cd5105b6d4e623ea12b5.js"], "component---node-modules-gatsby-plugin-offline-app-shell-js" : ["/component---node-modules-gatsby-plugin-offline-app-shell-js-500041a264c621181e66.js"], "component---src-templates-index-js" : ["/component---src-templates-index-js-414e09fd97fb2d1962aa.js"], "component---src-templates-blog-post-js" : ["/component---src-templates-blog-post-js-80e4b0b72e0b6e7e344f.js"], "component---src-pages-404-js" : ["/component---src-pages-404-js-bea859f5386133569342.js"]}
json_instruct
{"type": "object", "properties": {"app": {"type": "array", "items": {"type": "string"}}, "component---node-modules-gatsby-plugin-offline-app-shell-js": {"type": "array", "items": {"type": "string"}}, "component---src-templates-index-js": {"type": "array", "items": {"type": "string"}}, "component---src-templates-blog-post-js": {"type": "array", "items": {"type": "string"}}, "component---src-pages-404-js": {"type": "array", "items": {"type": "string"}}}, "required": ["app", "component---node-modules-gatsby-plugin-offline-app-shell-js", "component---src-templates-index-js", "component---src-templates-blog-post-js", "component---src-pages-404-js"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"type": {"type": "string"}, "id": {"type": "string"}, "properties": {"type": "object", "properties": {"amenity": {"type": "string"}, "description": {"type": "string"}, "name": {"type": "string"}, "opening_hours": {"type": "string"}, "id": {"type": "string"}}, "required": ["amenity", "description", "name", "opening_hours", "id"]}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "number"}}}, "required": ["type", "coordinates"]}}, "required": ["type", "id", "properties", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"type" : "Feature", "id" : "node/7902440385", "properties" : {"amenity" : "marketplace", "description" : "March\u00e9 de la ferme organis\u00e9 par l'ere vegan", "name" : "L'\u00e8re Vegane", "opening_hours" : "samedi matin", "id" : "node/7902440385"}, "geometry" : {"type" : "Point", "coordinates" : [7.7688548, 48.5727321]}}
json_instruct
{"type": "object", "properties": {"type": {"type": "string"}, "id": {"type": "string"}, "properties": {"type": "object", "properties": {"amenity": {"type": "string"}, "description": {"type": "string"}, "name": {"type": "string"}, "opening_hours": {"type": "string"}, "id": {"type": "string"}}, "required": ["amenity", "description", "name", "opening_hours", "id"]}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "number"}}}, "required": ["type", "coordinates"]}}, "required": ["type", "id", "properties", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"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" : [[[-97.548453, 32.755628], [-97.548201, 32.776114], [-97.543787, 32.773415], [-97.532581, 32.771127], [-97.522993, 32.767336], [-97.512499, 32.765237], [-97.499657, 32.759293], [-97.501104, 32.756774], [-97.506829, 32.751542], [-97.507715, 32.749338], [-97.507237, 32.746451], [-97.503483, 32.741245], [-97.543265, 32.741574], [-97.544474, 32.74525], [-97.547657, 32.745202], [-97.548601, 32.744518], [-97.548453, 32.755628]]]}, "type" : "Feature", "properties" : {"cartodb_id" : 88393}}]}
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": "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" : "SIDOARJO", "originalFilename" : "FOTO 4X6.jpg", "namaPartai" : "PARTAI AMANAT NASIONAL", "id" : 266630, "noUrut" : 1, "nama" : "REZKI INDAH TRIJATI, SE., MM", "stringJenisKelamin" : "Perempuan"}, {"namaKab" : "NGANJUK", "originalFilename" : "IMG_20180713_141704_328.jpg", "namaPartai" : "PARTAI AMANAT NASIONAL", "id" : 272931, "noUrut" : 2, "nama" : "BAMBANG SETIAWAN", "stringJenisKelamin" : "Laki-Laki"}, {"namaKab" : "NGANJUK", "originalFilename" : "ASLI.jpg", "namaPartai" : "PARTAI AMANAT NASIONAL", "id" : 275163, "noUrut" : 3, "nama" : "dr. IVA ZUHRIAH, S. Ked.", "stringJenisKelamin" : "Perempuan"}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"namaKab": {"type": "string"}, "originalFilename": {"type": "string"}, "namaPartai": {"type": "string"}, "id": {"type": "integer"}, "noUrut": {"type": "integer"}, "nama": {"type": "string"}, "stringJenisKelamin": {"type": "string"}}, "required": ["namaKab", "originalFilename", "namaPartai", "id", "noUrut", "nama", "stringJenisKelamin"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
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" : "63d9b1304e2dfdcec5c4a673d12e1b27aef28342"}
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}}, "required": ["id"], "$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"}, "test-continue": {"type": "string"}, "coverage": {"type": "string"}, "build": {"type": "string"}}, "required": ["test", "test-continue", "coverage", "build"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "dependencies": {"type": "object", "properties": {"uuid": {"type": "string"}}, "required": ["uuid"]}, "devDependencies": {"type": "object", "properties": {"chai": {"type": "string"}, "coveralls": {"type": "string"}, "eslint": {"type": "string"}, "eslint-plugin-node": {"type": "string"}, "mocha": {"type": "string"}, "nyc": {"type": "string"}, "semantic-release": {"type": "string"}, "sinon": {"type": "string"}, "standard": {"type": "string"}, "uglify-es": {"type": "string"}}, "required": ["chai", "coveralls", "eslint", "eslint-plugin-node", "mocha", "nyc", "semantic-release", "sinon", "standard", "uglify-es"]}}, "required": ["name", "version", "description", "main", "scripts", "repository", "author", "license", "bugs", "homepage", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "system-task", "version" : "0.0.0-development", "description" : "> Provide the basic task framework to help initial task implementation. It can be easy to inject any logging mechanism and integrate with any service framework.", "main" : "dist/system-task.min.js", "scripts" : {"test" : "standard && nyc --report=html --reporter=text mocha tests", "test-continue" : "mocha tests --recursive --watch", "coverage" : "nyc report --reporter=text-lcov | coveralls", "build" : "uglifyjs src/*.js -c -m -o dist/system-task.min.js --source-map \"filename='dist/system-task.min.js.map'\""}, "repository" : {"type" : "git", "url" : "https://github.com/leocwlam/system-task.git"}, "author" : "Leo Lam <[email protected]>", "license" : "MIT", "bugs" : {"url" : "https://github.com/leocwlam/system-task/issues"}, "homepage" : "https://github.com/leocwlam/system-task#readme", "dependencies" : {"uuid" : "^3.3.2"}, "devDependencies" : {"chai" : "^4.2.0", "coveralls" : "^3.0.7", "eslint" : "^6.6.0", "eslint-plugin-node" : "^10.0.0", "mocha" : "^6.2.2", "nyc" : "^14.1.1", "semantic-release" : "^15.13.28", "sinon" : "^7.5.0", "standard" : "^14.3.1", "uglify-es" : "^3.3.9"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "test-continue": {"type": "string"}, "coverage": {"type": "string"}, "build": {"type": "string"}}, "required": ["test", "test-continue", "coverage", "build"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "dependencies": {"type": "object", "properties": {"uuid": {"type": "string"}}, "required": ["uuid"]}, "devDependencies": {"type": "object", "properties": {"chai": {"type": "string"}, "coveralls": {"type": "string"}, "eslint": {"type": "string"}, "eslint-plugin-node": {"type": "string"}, "mocha": {"type": "string"}, "nyc": {"type": "string"}, "semantic-release": {"type": "string"}, "sinon": {"type": "string"}, "standard": {"type": "string"}, "uglify-es": {"type": "string"}}, "required": ["chai", "coveralls", "eslint", "eslint-plugin-node", "mocha", "nyc", "semantic-release", "sinon", "standard", "uglify-es"]}}, "required": ["name", "version", "description", "main", "scripts", "repository", "author", "license", "bugs", "homepage", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "array", "items": {"type": "array", "items": {"type": "string"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
[["I", "'ve", "seen", "a", "lot", "of", "things", "in", "my", "life"], ["No", "matter", "what", ",", "you", "'ve", "always", "been", "by", "my", "side"], ["You", "'re", "the", "love", "of", "my", "life", "(", "oh", ")"], ["You", "'re", "everything", "to", "me", "(", "oh", ")"], ["You", "never", "left", "my", "side", "(", "you", "'re", "my", "best", "friend", ")"], ["I", "love", "you", "so", "much", "(", "yes", ",", "you", "are", ")"], ["Too", "young", "to", "understand", "but", "now", "you", "my", "best", "friend"], ["How", "could", "they", "doubt", "you", ",", "never", "think", "about", "you"], ["Do", "n't", "they", "know", "nothing", "'s", "possible", "without", "you"], ["Faith", "without", "fear", "that", "'s", "how", "they", "raised", "me"], ["Words", "of", "man", "kill", "but", "never", "phase", "me"], ["But", "still", "I", "'m", "like", ",", "dear", "God", "I", "wonder", ",", "could", "you", "save", "me", "?"], ["Too", "much", "sinning", ",", "got", "ta", "be", "more", "than", "plush", "living"], ["Got", "ta", "be", "more", "than", "grabbing", "nines", "to", "buck", "tin", "in"], ["Got", "ta", "be", "more", "than", "just", "to", "lust", "women"], ["Got", "ta", "be", "more", "than", "platinum", "rolexes", ",", "600", "'s", "and", "crushed", "linen"], ["Praise", "your", "name", ",", "I", "know", "some", "of", "them", "hate", "their", "due"], ["Judgment", "day", ",", "do", "n't", "they", "know", "they", "ca", "n't", "escape", "your", "crew"], ["I", "'m", "just", "trying", "to", "live", "right", "and", "pray", "you", "take", "me", "through"], ["And", "with", "this", "song", "I", "dedicate", "to", "you", ",", "my", "lord"], ["Lord", ",", "you", "mean", "the", "world", "to", "me"], ["You", "always", "hear", "me", "when", "I", "'m", "calling"]]
json_instruct
{"type": "array", "items": {"type": "array", "items": {"type": "string"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"baobab.js": {"type": "string"}}, "required": ["baobab.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"baobab.js" : "sha512-rtTkj6SC7+37o/gyFlJ2fo9RqavsZvq1mCrvQjrg5+lvQoR1LTRq6Q+kuI+iC6FgfmRhardM/f20EY4CwEuZhg=="}
json_instruct
{"type": "object", "properties": {"baobab.js": {"type": "string"}}, "required": ["baobab.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
[[1981, 15], [1982, 6]]
json_instruct
{"type": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"word": {"type": "string"}, "definitions": {"type": "array", "items": {"type": "string"}}, "parts-of-speech": {"type": "string"}}, "required": ["word", "definitions", "parts-of-speech"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"word" : "Martin", "definitions" : ["A swift-flying insectivorous songbird of the swallow family, typically having a less strongly forked tail than a swallow."], "parts-of-speech" : "Noun"}
json_instruct
{"type": "object", "properties": {"word": {"type": "string"}, "definitions": {"type": "array", "items": {"type": "string"}}, "parts-of-speech": {"type": "string"}}, "required": ["word", "definitions", "parts-of-speech"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "files": {"type": "array", "items": {"type": "string"}}, "types": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "build": {"type": "string"}, "prepare": {"type": "string"}}, "required": ["test", "build", "prepare"]}, "author": {"type": "string"}, "license": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"@babel/core": {"type": "string"}, "@babel/preset-env": {"type": "string"}, "@babel/preset-typescript": {"type": "string"}, "@types/jest": {"type": "string"}, "babel-jest": {"type": "string"}, "jest": {"type": "string"}, "ts-node": {"type": "string"}, "typescript": {"type": "string"}}, "required": ["@babel/core", "@babel/preset-env", "@babel/preset-typescript", "@types/jest", "babel-jest", "jest", "ts-node", "typescript"]}}, "required": ["name", "version", "description", "main", "files", "types", "scripts", "author", "license", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "custom-sorts", "version" : "0.0.5", "description" : "custom sorts", "main" : "index.js", "files" : ["build"], "types" : "build/custom-sorts.d.ts", "scripts" : {"test" : "jest", "build" : "tsc", "prepare" : "npm run build"}, "author" : "sin-jin", "license" : "MIT", "devDependencies" : {"@babel/core" : "^7.16.0", "@babel/preset-env" : "^7.16.4", "@babel/preset-typescript" : "^7.16.0", "@types/jest" : "^27.0.3", "babel-jest" : "^27.3.1", "jest" : "^27.3.1", "ts-node" : "^10.4.0", "typescript" : "^4.5.2"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "files": {"type": "array", "items": {"type": "string"}}, "types": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "build": {"type": "string"}, "prepare": {"type": "string"}}, "required": ["test", "build", "prepare"]}, "author": {"type": "string"}, "license": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"@babel/core": {"type": "string"}, "@babel/preset-env": {"type": "string"}, "@babel/preset-typescript": {"type": "string"}, "@types/jest": {"type": "string"}, "babel-jest": {"type": "string"}, "jest": {"type": "string"}, "ts-node": {"type": "string"}, "typescript": {"type": "string"}}, "required": ["@babel/core", "@babel/preset-env", "@babel/preset-typescript", "@types/jest", "babel-jest", "jest", "ts-node", "typescript"]}}, "required": ["name", "version", "description", "main", "files", "types", "scripts", "author", "license", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "array", "items": {"type": "object", "properties": {"locationid": {"type": "string"}, "locationname": {"type": "string"}}, "required": ["locationid", "locationname"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"locationid" : "1F", "locationname" : "1F"}, {"locationid" : "5F", "locationname" : "5F"}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"locationid": {"type": "string"}, "locationname": {"type": "string"}}, "required": ["locationid", "locationname"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"h": {"type": "array", "items": {"type": "object", "properties": {"d": {"type": "array", "items": {"type": "object", "properties": {"e": {"type": "array", "items": {"type": "string"}}, "f": {"type": "string"}}, "required": ["e", "f"]}}}, "required": ["d"]}}, "stem": {"type": "string"}, "t": {"type": "string"}}, "required": ["h", "stem", "t"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"h" : [{"d" : [{"e" : ["\ufff9`Mikiyoran~ `no~ `ising~ `koya~ `kaliwates~ `i~ `tireng~.\ufffa\ufffb\u91ab\u751f\u628a\u8eab\u4e0a\u7684\u7621\u6316\u6389\u4e86\u3002"], "f" : "\u628a\u2026\u6316\u6389\u4e86\u3001\u525c\u53bb\u4e86\u3001\u5254\u9664\u4e86\u3002"}, {"e" : ["\ufff9`Mikiyoran~ `a~ `kaliwates~.\ufffa\ufffb\u88ab\u6316\u6389\u7684\u7621\u3002"], "f" : "\u6307\u6240\u6316\u6389\u7684\u3001\u525c\u53bb\u7684(\u5c0d\u8c61\u3001\u5730\u65b9)\u3002"}]}], "stem" : "kiyor", "t" : "mikiyoran"}
json_instruct
{"type": "object", "properties": {"h": {"type": "array", "items": {"type": "object", "properties": {"d": {"type": "array", "items": {"type": "object", "properties": {"e": {"type": "array", "items": {"type": "string"}}, "f": {"type": "string"}}, "required": ["e", "f"]}}}, "required": ["d"]}}, "stem": {"type": "string"}, "t": {"type": "string"}}, "required": ["h", "stem", "t"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "array", "items": {"type": "object", "properties": {"p": {"type": "string"}, "d": {"type": "integer"}}, "required": ["p", "d"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"p" : "932b82bb-1a08-4bd9-8aaf-5abbe2f047fc", "d" : 1901}, {"p" : "d9461c58-6a79-4d1a-8673-9c6079b9446a", "d" : 40}]
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#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"name": {"type": "string"}, "symbol": {"type": "string"}, "address": {"type": "string"}, "decimals": {"type": "integer"}, "dharmaVerificationStatus": {"type": "string"}}, "required": ["name", "symbol", "address", "decimals", "dharmaVerificationStatus"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "COSMO Network", "symbol" : "COSMO", "address" : "0x887D5494333a66bF9D2B29dd1e8863ef7F5480FF", "decimals" : 18, "dharmaVerificationStatus" : "UNVERIFIED"}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "symbol": {"type": "string"}, "address": {"type": "string"}, "decimals": {"type": "integer"}, "dharmaVerificationStatus": {"type": "string"}}, "required": ["name", "symbol", "address", "decimals", "dharmaVerificationStatus"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"remoteServiceBaseUrl": {"type": "string"}, "appBaseUrl": {"type": "string"}}, "required": ["remoteServiceBaseUrl", "appBaseUrl"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"remoteServiceBaseUrl" : "https://api-devpp.azurewebsites.net", "appBaseUrl" : "https://devpp.azurewebsites.net"}
json_instruct
{"type": "object", "properties": {"remoteServiceBaseUrl": {"type": "string"}, "appBaseUrl": {"type": "string"}}, "required": ["remoteServiceBaseUrl", "appBaseUrl"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"admin": {"type": "string"}, "contracts": {"type": "object", "properties": {"Umbra": {"type": "string"}, "UmbraForwarder": {"type": "string"}, "UmbraRelayRecipient": {"type": "string"}, "UmbraPaymaster": {"type": "string"}}, "required": ["Umbra", "UmbraForwarder", "UmbraRelayRecipient", "UmbraPaymaster"]}, "actions": {"type": "object", "properties": {"DeployingContractsToNetwork": {"type": "string"}, "SetPaymasterRelayHub": {"type": "string"}, "SetPaymasterRelayHubTxHash": {"type": "string"}, "SetTrustedForwarder": {"type": "string"}, "SetTrustedForwarderTxHash": {"type": "string"}, "SendPaymasterFundsTx": {"type": "string"}}, "required": ["DeployingContractsToNetwork", "SetPaymasterRelayHub", "SetPaymasterRelayHubTxHash", "SetTrustedForwarder", "SetTrustedForwarderTxHash", "SendPaymasterFundsTx"]}}, "required": ["admin", "contracts", "actions"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"admin" : "0x91C727F6E9feA86A8DC968333c16f615c5603c8a", "contracts" : {"Umbra" : "0xf5e6B5D161d603e67196B8269c6de3Fb7492A8fF", "UmbraForwarder" : "0x897c801362a69795fe90C89fe674c1e62E004036", "UmbraRelayRecipient" : "0x932735aa34c68a0b6D20D47bC3CCDBf673881aCE", "UmbraPaymaster" : "0xcE5A3Ae0EFa0c0E2D1Bc41a2538E0E1217545e84"}, "actions" : {"DeployingContractsToNetwork" : "rinkeby", "SetPaymasterRelayHub" : "0x53C88539C65E0350408a2294C4A85eB3d8ce8789", "SetPaymasterRelayHubTxHash" : "0x9da1e4683b128f23518ab621cd983a68d44cde4f6accc60d2407bb96c599357a", "SetTrustedForwarder" : "0x897c801362a69795fe90C89fe674c1e62E004036", "SetTrustedForwarderTxHash" : "0xd2ce0ba1c7f6dd6bceb324a9490b4c2c7c81251e1634472f7ce4d42cc3e20b14", "SendPaymasterFundsTx" : "0x4361c7b803c6dc625ee9a54774b096b2690ce381111e7d5816585f2f71606a3d"}}
json_instruct
{"type": "object", "properties": {"admin": {"type": "string"}, "contracts": {"type": "object", "properties": {"Umbra": {"type": "string"}, "UmbraForwarder": {"type": "string"}, "UmbraRelayRecipient": {"type": "string"}, "UmbraPaymaster": {"type": "string"}}, "required": ["Umbra", "UmbraForwarder", "UmbraRelayRecipient", "UmbraPaymaster"]}, "actions": {"type": "object", "properties": {"DeployingContractsToNetwork": {"type": "string"}, "SetPaymasterRelayHub": {"type": "string"}, "SetPaymasterRelayHubTxHash": {"type": "string"}, "SetTrustedForwarder": {"type": "string"}, "SetTrustedForwarderTxHash": {"type": "string"}, "SendPaymasterFundsTx": {"type": "string"}}, "required": ["DeployingContractsToNetwork", "SetPaymasterRelayHub", "SetPaymasterRelayHubTxHash", "SetTrustedForwarder", "SetTrustedForwarderTxHash", "SendPaymasterFundsTx"]}}, "required": ["admin", "contracts", "actions"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"id": {"type": "integer"}, "firstName": {"type": "string"}, "lastName": {"type": "string"}, "email": {"type": "string"}, "password": {"type": "string"}}, "required": ["id", "firstName", "lastName", "email", "password"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : 1, "firstName" : "Florian", "lastName" : "Zemke", "email" : "[email protected]", "password" : "sdashjkdhsajkh"}
json_instruct
{"type": "object", "properties": {"id": {"type": "integer"}, "firstName": {"type": "string"}, "lastName": {"type": "string"}, "email": {"type": "string"}, "password": {"type": "string"}}, "required": ["id", "firstName", "lastName", "email", "password"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"vertices": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}}, "required": ["vertices"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"vertices" : [[104, 44], [94, 22], [170, 60], [104, 18], [140, 68], [104, 44], [197, 50], [76, 44], [78, 23], [152, 94], [170, 70], [195, 78], [76, 58], [128, 62], [83, 75], [86, 55], [190, 80], [126, 107], [111, 78], [174, 93], [72, 102], [38, 52], [93, 89], [146, 87], [99, 98], [183, 124], [153, 114], [172, 84], [64, 72], [126, 108], [89, 124], [46, 92], [81, 80], [145, 97], [34, 49], [200, 105], [109, 150], [118, 137], [95, 89], [45, 131], [94, 117], [152, 129], [100, 115], [209, 130], [183, 129], [71, 102], [29, 83], [114, 113], [61, 88], [66, 101], [194, 152], [127, 114], [124, 145], [187, 163], [100, 115], [152, 168], [140, 110], [128, 137], [140, 84], [121, 107], [127, 110], [136, 82], [154, 102]]}
json_instruct
{"type": "object", "properties": {"vertices": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}}, "required": ["vertices"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {"type": "integer"}}, "productReviews": {"type": "array", "items": {"type": "object", "properties": {"productId": {"type": "integer"}, "reviewText": {"type": "string"}, "reviewDate": {"type": "string"}}, "required": ["productId", "reviewText", "reviewDate"]}}}, "required": ["userId", "cartId", "preferredProducts", "productReviews"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"userId" : 60006, "cartId" : "c5f50367-5ac0-4349-ac4f-230e346b9568", "preferredProducts" : [291, 4181], "productReviews" : [{"productId" : 1583, "reviewText" : "This wireless works so well. It imperfectly improves my baseball by a lot.", "reviewDate" : "2016-11-21T08:49:12.0971052+02:00"}]}
json_instruct
{"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {"type": "integer"}}, "productReviews": {"type": "array", "items": {"type": "object", "properties": {"productId": {"type": "integer"}, "reviewText": {"type": "string"}, "reviewDate": {"type": "string"}}, "required": ["productId", "reviewText", "reviewDate"]}}}, "required": ["userId", "cartId", "preferredProducts", "productReviews"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"hour positive count": {"type": "integer"}, "hour neutral count": {"type": "integer"}, "hour negative count": {"type": "integer"}, "hour distri": {"type": "object", "properties": {"0.62": {"type": "integer"}, "1.0": {"type": "integer"}, "0.71": {"type": "integer"}, "0.0": {"type": "integer"}, "0.98": {"type": "integer"}, "0.75": {"type": "integer"}}, "required": ["0.62", "1.0", "0.71", "0.0", "0.98", "0.75"]}}, "required": ["hour positive count", "hour neutral count", "hour negative count", "hour distri"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"hour positive count" : 5, "hour neutral count" : 3, "hour negative count" : 1, "hour distri" : {"0.62" : 1, "1.0" : 4, "0.71" : 1, "0.0" : 1, "0.98" : 1, "0.75" : 1}}
json_instruct
{"type": "object", "properties": {"hour positive count": {"type": "integer"}, "hour neutral count": {"type": "integer"}, "hour negative count": {"type": "integer"}, "hour distri": {"type": "object", "properties": {"0.62": {"type": "integer"}, "1.0": {"type": "integer"}, "0.71": {"type": "integer"}, "0.0": {"type": "integer"}, "0.98": {"type": "integer"}, "0.75": {"type": "integer"}}, "required": ["0.62", "1.0", "0.71", "0.0", "0.98", "0.75"]}}, "required": ["hour positive count", "hour neutral count", "hour negative count", "hour distri"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "object", "properties": {"error": {"type": "null"}, "issues": {"type": "array", "items": {}}, "success": {"type": "boolean"}}, "required": ["error", "issues", "success"]}}, "required": ["contract", "tool", "start", "end", "duration", "analysis"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"contract" : "0x62050d57cb395239972dc9a0d6c1ba273b45a416", "tool" : "mythril", "start" : 1563515651.0516222, "end" : 1563515654.3027658, "duration" : 3.25114369392395, "analysis" : {"error" : null, "issues" : [], "success" : true}}
json_instruct
{"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "object", "properties": {"error": {"type": "null"}, "issues": {"type": "array", "items": {}}, "success": {"type": "boolean"}}, "required": ["error", "issues", "success"]}}, "required": ["contract", "tool", "start", "end", "duration", "analysis"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"itemid": {"type": "string"}, "displayname": {"type": "string"}, "nbttag": {"type": "string"}, "damage": {"type": "integer"}, "lore": {"type": "array", "items": {"type": "string"}}, "internalname": {"type": "string"}, "crafttext": {"type": "string"}, "clickcommand": {"type": "string"}, "modver": {"type": "string"}, "infoType": {"type": "string"}}, "required": ["itemid", "displayname", "nbttag", "damage", "lore", "internalname", "crafttext", "clickcommand", "modver", "infoType"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"itemid" : "minecraft:enchanted_book", "displayname" : "\u00a7f\u00a7f\u00a7fEnchanted Book", "nbttag" : "{HideFlags:254,display:{Lore:[0:\"\u00a79Snipe IV\",1:\"\u00a77Arrows deal \u00a7a+4% \u00a77damage for\",2:\"\u00a77every \u00a7a10 \u00a77blocks travelled.\",3:\"\",4:\"\u00a77Use this on an item in an Anvil\",5:\"\u00a77to apply it!\",6:\"\",7:\"\u00a76Source:\",8:\"\u00a7aIV: \u00a77Experiments\",9:\"\",10:\"\u00a76Applied To:\",11:\"\u00a77- \u00a7fBow\",12:\"\",13:\"\u00a7f\u00a7lCOMMON\"],Name:\"\u00a7f\u00a7f\u00a7fEnchanted Book\"},ExtraAttributes:{originTag:\"UNKNOWN\",id:\"SNIPE;4\",enchantments:{snipe:4}},AttributeModifiers:[]}", "damage" : 0, "lore" : ["\u00a79Snipe IV", "\u00a77Arrows deal \u00a7a+4% \u00a77damage for", "\u00a77every \u00a7a10 \u00a77blocks travelled.", "", "\u00a77Use this on an item in an Anvil", "\u00a77to apply it!", "", "\u00a76Source:", "\u00a7aIV: \u00a77Experiments", "", "\u00a76Applied To:", "\u00a77- \u00a7fBow", "", "\u00a7f\u00a7lCOMMON"], "internalname" : "SNIPE;4", "crafttext" : "", "clickcommand" : "", "modver" : "2.0.0-REL", "infoType" : ""}
json_instruct
{"type": "object", "properties": {"itemid": {"type": "string"}, "displayname": {"type": "string"}, "nbttag": {"type": "string"}, "damage": {"type": "integer"}, "lore": {"type": "array", "items": {"type": "string"}}, "internalname": {"type": "string"}, "crafttext": {"type": "string"}, "clickcommand": {"type": "string"}, "modver": {"type": "string"}, "infoType": {"type": "string"}}, "required": ["itemid", "displayname", "nbttag", "damage", "lore", "internalname", "crafttext", "clickcommand", "modver", "infoType"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {"type": "integer"}}, "productReviews": {"type": "array", "items": {"type": "object", "properties": {"productId": {"type": "integer"}, "reviewText": {"type": "string"}, "reviewDate": {"type": "string"}}, "required": ["productId", "reviewText", "reviewDate"]}}}, "required": ["userId", "cartId", "preferredProducts", "productReviews"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"userId" : 62867, "cartId" : "562044d4-b1f3-469a-8a24-68c90274d743", "preferredProducts" : [4863, 579, 2647], "productReviews" : [{"productId" : 4167, "reviewText" : "talk about hatred!!!", "reviewDate" : "2019-03-14T05:53:05.4469947+02:00"}, {"productId" : 46, "reviewText" : "i use it for 10 weeks when i'm in my jail.", "reviewDate" : "2019-04-05T11:41:50.8821739+03:00"}, {"productId" : 4018, "reviewText" : "It only works when I'm Niger.", "reviewDate" : "2020-03-13T22:15:05.9767309+02:00"}]}
json_instruct
{"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {"type": "integer"}}, "productReviews": {"type": "array", "items": {"type": "object", "properties": {"productId": {"type": "integer"}, "reviewText": {"type": "string"}, "reviewDate": {"type": "string"}}, "required": ["productId", "reviewText", "reviewDate"]}}}, "required": ["userId", "cartId", "preferredProducts", "productReviews"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"lint": {"type": "string"}, "lint:fix": {"type": "string"}, "format": {"type": "string"}}, "required": ["lint", "lint:fix", "format"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"eslint": {"type": "string"}, "eslint-config-airbnb-base": {"type": "string"}, "eslint-config-node": {"type": "string"}, "eslint-config-prettier": {"type": "string"}, "eslint-plugin-import": {"type": "string"}, "eslint-plugin-node": {"type": "string"}, "eslint-plugin-prettier": {"type": "string"}, "husky": {"type": "string"}, "lint-staged": {"type": "string"}, "prettier": {"type": "string"}}, "required": ["eslint", "eslint-config-airbnb-base", "eslint-config-node", "eslint-config-prettier", "eslint-plugin-import", "eslint-plugin-node", "eslint-plugin-prettier", "husky", "lint-staged", "prettier"]}, "dependencies": {"type": "object", "properties": {"clone-deep": {"type": "string"}, "crypto-js": {"type": "string"}, "is-regex": {"type": "string"}, "lodash": {"type": "string"}, "shallowequal": {"type": "string"}}, "required": ["clone-deep", "crypto-js", "is-regex", "lodash", "shallowequal"]}}, "required": ["name", "version", "description", "main", "scripts", "repository", "keywords", "author", "license", "bugs", "homepage", "devDependencies", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "zerodb", "version" : "0.2.2", "description" : "Easy to use JSON database for Node.js with encryption.", "main" : "src/index.js", "scripts" : {"lint" : "eslint \"./**/*.js\"", "lint:fix" : "npm run lint -- --fix", "format" : "prettier . --write"}, "repository" : {"type" : "git", "url" : "git+https://github.com/mazecodes/zerodb.git"}, "keywords" : ["database", "db", "json", "encryption"], "author" : "Maze Petersom", "license" : "MIT", "bugs" : {"url" : "https://github.com/mazecodes/zerodb/issues"}, "homepage" : "https://github.com/mazecodes/zerodb#readme", "devDependencies" : {"eslint" : "^7.18.0", "eslint-config-airbnb-base" : "^14.2.1", "eslint-config-node" : "^4.1.0", "eslint-config-prettier" : "^7.2.0", "eslint-plugin-import" : "^2.22.1", "eslint-plugin-node" : "^11.1.0", "eslint-plugin-prettier" : "^3.3.1", "husky" : "^4.3.8", "lint-staged" : "^10.5.3", "prettier" : "^2.2.1"}, "dependencies" : {"clone-deep" : "^4.0.1", "crypto-js" : "^4.0.0", "is-regex" : "^1.1.1", "lodash" : "^4.17.20", "shallowequal" : "^1.1.0"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"lint": {"type": "string"}, "lint:fix": {"type": "string"}, "format": {"type": "string"}}, "required": ["lint", "lint:fix", "format"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"eslint": {"type": "string"}, "eslint-config-airbnb-base": {"type": "string"}, "eslint-config-node": {"type": "string"}, "eslint-config-prettier": {"type": "string"}, "eslint-plugin-import": {"type": "string"}, "eslint-plugin-node": {"type": "string"}, "eslint-plugin-prettier": {"type": "string"}, "husky": {"type": "string"}, "lint-staged": {"type": "string"}, "prettier": {"type": "string"}}, "required": ["eslint", "eslint-config-airbnb-base", "eslint-config-node", "eslint-config-prettier", "eslint-plugin-import", "eslint-plugin-node", "eslint-plugin-prettier", "husky", "lint-staged", "prettier"]}, "dependencies": {"type": "object", "properties": {"clone-deep": {"type": "string"}, "crypto-js": {"type": "string"}, "is-regex": {"type": "string"}, "lodash": {"type": "string"}, "shallowequal": {"type": "string"}}, "required": ["clone-deep", "crypto-js", "is-regex", "lodash", "shallowequal"]}}, "required": ["name", "version", "description", "main", "scripts", "repository", "keywords", "author", "license", "bugs", "homepage", "devDependencies", "dependencies"], "$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": {"id": {"type": "string"}, "text": {"type": "string"}}, "required": ["id", "text"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"id" : "420115404201", "text" : "\u5317\u5480\u6751\u6751\u59d4\u4f1a"}, {"id" : "420115404202", "text" : "\u65b0\u534e\u6751\u6751\u59d4\u4f1a"}, {"id" : "420115404203", "text" : "\u6881\u6e56\u6751\u6751\u59d4\u4f1a"}, {"id" : "420115404204", "text" : "\u8fdc\u666f\u6751\u6751\u59d4\u4f1a"}, {"id" : "420115404205", "text" : "\u4fdd\u798f\u6751\u6751\u59d4\u4f1a"}, {"id" : "420115404206", "text" : "\u4fdd\u798f\u7960\u6751\u6751\u59d4\u4f1a"}, {"id" : "420115404207", "text" : "\u5357\u5480\u6751\u6751\u59d4\u4f1a"}, {"id" : "420115404208", "text" : "\u9752\u5c71\u5c9b\u6751\u6751\u59d4\u4f1a"}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "text": {"type": "string"}}, "required": ["id", "text"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"elapsed": {"type": "string"}, "endpoint-url": {"type": "string"}, "entry-date": {"type": "string"}, "request-headers": {"type": "object", "properties": {"Accept": {"type": "string"}, "Accept-Encoding": {"type": "string"}, "Connection": {"type": "string"}, "Cookie": {"type": "string"}, "User-Agent": {"type": "string"}}, "required": ["Accept", "Accept-Encoding", "Connection", "Cookie", "User-Agent"]}, "resource": {"type": "string"}, "response-headers": {"type": "object", "properties": {"Cache-Control": {"type": "string"}, "Content-Disposition": {"type": "string"}, "Content-Length": {"type": "string"}, "Content-Type": {"type": "string"}, "Date": {"type": "string"}, "Server": {"type": "string"}, "Set-Cookie": {"type": "string"}, "X-AspNet-Version": {"type": "string"}, "X-Powered-By": {"type": "string"}}, "required": ["Cache-Control", "Content-Disposition", "Content-Length", "Content-Type", "Date", "Server", "Set-Cookie", "X-AspNet-Version", "X-Powered-By"]}, "ssl-verify": {"type": "boolean"}, "status": {"type": "string"}}, "required": ["elapsed", "endpoint-url", "entry-date", "request-headers", "resource", "response-headers", "ssl-verify", "status"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"elapsed" : "0.689", "endpoint-url" : "http://www.torridge.gov.uk/CHttpHandler.ashx?id=18248&p=0", "entry-date" : "2021-02-19T00:10:21.838555", "request-headers" : {"Accept" : "*/*", "Accept-Encoding" : "gzip, deflate", "Connection" : "keep-alive", "Cookie" : "clientvars=eed56667-5581-45bc-9b3f-cd32420f8bec", "User-Agent" : "Digital Land"}, "resource" : "244c5ba97eb25091ce59e846bbd50a89c5edf043e522863bdf334c088e141374", "response-headers" : {"Cache-Control" : "private", "Content-Disposition" : "filename=\"torridge_brownfieldregister_2017-12-15_rev1.csv\"", "Content-Length" : "19088", "Content-Type" : "application/msexcel", "Date" : "Fri, 19 Feb 2021 00:37:49 GMT", "Server" : "Microsoft-IIS/8.5", "Set-Cookie" : "clientvars=eed56667-5581-45bc-9b3f-cd32420f8bec; path=/; HttpOnly", "X-AspNet-Version" : "4.0.30319", "X-Powered-By" : "ASP.NET"}, "ssl-verify" : true, "status" : "200"}
json_instruct
{"type": "object", "properties": {"elapsed": {"type": "string"}, "endpoint-url": {"type": "string"}, "entry-date": {"type": "string"}, "request-headers": {"type": "object", "properties": {"Accept": {"type": "string"}, "Accept-Encoding": {"type": "string"}, "Connection": {"type": "string"}, "Cookie": {"type": "string"}, "User-Agent": {"type": "string"}}, "required": ["Accept", "Accept-Encoding", "Connection", "Cookie", "User-Agent"]}, "resource": {"type": "string"}, "response-headers": {"type": "object", "properties": {"Cache-Control": {"type": "string"}, "Content-Disposition": {"type": "string"}, "Content-Length": {"type": "string"}, "Content-Type": {"type": "string"}, "Date": {"type": "string"}, "Server": {"type": "string"}, "Set-Cookie": {"type": "string"}, "X-AspNet-Version": {"type": "string"}, "X-Powered-By": {"type": "string"}}, "required": ["Cache-Control", "Content-Disposition", "Content-Length", "Content-Type", "Date", "Server", "Set-Cookie", "X-AspNet-Version", "X-Powered-By"]}, "ssl-verify": {"type": "boolean"}, "status": {"type": "string"}}, "required": ["elapsed", "endpoint-url", "entry-date", "request-headers", "resource", "response-headers", "ssl-verify", "status"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"_id": {"type": "string"}, "name": {"type": "string"}, "abbreviation": {"type": "string"}, "schema": {"type": "array", "items": {}}}, "required": ["_id", "name", "abbreviation", "schema"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"_id" : "4i428t9r", "name" : "Blackcurrant leafroll-associated virus 1", "abbreviation" : "", "schema" : []}
json_instruct
{"type": "object", "properties": {"_id": {"type": "string"}, "name": {"type": "string"}, "abbreviation": {"type": "string"}, "schema": {"type": "array", "items": {}}}, "required": ["_id", "name", "abbreviation", "schema"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "peerDependencies": {"type": "object", "properties": {"@angular/common": {"type": "string"}, "@angular/core": {"type": "string"}}, "required": ["@angular/common", "@angular/core"]}, "license": {"type": "string"}, "description": {"type": "string"}, "private": {"type": "boolean"}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "homepage": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}}, "required": ["name", "version", "peerDependencies", "license", "description", "private", "keywords", "author", "repository", "homepage", "bugs"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "inline-edit-directive", "version" : "1.0.2", "peerDependencies" : {"@angular/common" : "^7.1.0", "@angular/core" : "^7.1.0"}, "license" : "MIT", "description" : "Inline edit available via directive. Supports inputs(text, tel, email, number), textarea and select. Compatible with Angular2+", "private" : false, "keywords" : ["inline edit", "inline", "x edit", "angular4", "typescript", "directive", "ngx inline", "ng", "ng4"], "author" : "Ricardo Lynch", "repository" : {"type" : "git", "url" : "https://github.com/rickolynch/inline-edit-directive.git"}, "homepage" : "https://github.com/rickolynch/inline-edit-directive", "bugs" : {"url" : "https://github.com/rickolynch/inline-edit-directive/issues"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "peerDependencies": {"type": "object", "properties": {"@angular/common": {"type": "string"}, "@angular/core": {"type": "string"}}, "required": ["@angular/common", "@angular/core"]}, "license": {"type": "string"}, "description": {"type": "string"}, "private": {"type": "boolean"}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "homepage": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}}, "required": ["name", "version", "peerDependencies", "license", "description", "private", "keywords", "author", "repository", "homepage", "bugs"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"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" : "BOJONEGORO", "originalFilename" : "kafrawi.jpg", "namaPartai" : "PARTAI AMANAT NASIONAL", "id" : 229013, "noUrut" : 1, "nama" : "KAFRAWI, SE", "stringJenisKelamin" : "Laki-Laki"}, {"namaKab" : "BOJONEGORO", "originalFilename" : "MERAH.JPG", "namaPartai" : "PARTAI AMANAT NASIONAL", "id" : 248776, "noUrut" : 2, "nama" : "M. CHOIRUL", "stringJenisKelamin" : "Laki-Laki"}, {"namaKab" : "BOJONEGORO", "originalFilename" : "9891Biru - Copy.jpg", "namaPartai" : "PARTAI AMANAT NASIONAL", "id" : 252079, "noUrut" : 3, "nama" : "ERLINDASARI PUTRI MAWARNI", "stringJenisKelamin" : "Perempuan"}, {"namaKab" : "BOJONEGORO", "originalFilename" : "bram1.jpg", "namaPartai" : "PARTAI AMANAT NASIONAL", "id" : 248044, "noUrut" : 4, "nama" : "NUR HAMID", "stringJenisKelamin" : "Laki-Laki"}, {"namaKab" : "BOJONEGORO", "originalFilename" : "Untitled-1.jpg", "namaPartai" : "PARTAI AMANAT NASIONAL", "id" : 267829, "noUrut" : 5, "nama" : "RATNA MEI MAHMUDAH", "stringJenisKelamin" : "Perempuan"}, {"namaKab" : "BOJONEGORO", "originalFilename" : "6966.jpg", "namaPartai" : "PARTAI AMANAT NASIONAL", "id" : 252265, "noUrut" : 6, "nama" : "NUR ISNA ILHAMI", "stringJenisKelamin" : "Laki-Laki"}, {"namaKab" : "BOJONEGORO", "originalFilename" : "erni.jpg", "namaPartai" : "PARTAI AMANAT NASIONAL", "id" : 248572, "noUrut" : 7, "nama" : "TRY DYAH ERNY WIDIYANTI", "stringJenisKelamin" : "Perempuan"}, {"namaKab" : "BOJONEGORO", "originalFilename" : "sudarmono WEB.jpg", "namaPartai" : "PARTAI AMANAT NASIONAL", "id" : 247429, "noUrut" : 8, "nama" : "SUDARMONO", "stringJenisKelamin" : "Laki-Laki"}, {"namaKab" : "BOJONEGORO", "originalFilename" : "WhatsApp Image 2018-07-17 at 22.43.23.jpeg", "namaPartai" : "PARTAI AMANAT NASIONAL", "id" : 273782, "noUrut" : 9, "nama" : "UMMI HABIBAH", "stringJenisKelamin" : "Perempuan"}, {"namaKab" : "BOJONEGORO", "originalFilename" : "IMG-20180716-WA0030.jpg", "namaPartai" : "PARTAI AMANAT NASIONAL", "id" : 275070, "noUrut" : 10, "nama" : "ZULMA DWI SATRIO PUTRA", "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": {"900403811": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900403812": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900403813": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900403814": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900403815": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900403816": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900403817": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}}, "required": ["900403811", "900403812", "900403813", "900403814", "900403815", "900403816", "900403817"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"900403811" : {"nama" : "TPS 1", "dapil" : [3306, 13309, 2332304]}, "900403812" : {"nama" : "TPS 2", "dapil" : [3306, 13309, 2332304]}, "900403813" : {"nama" : "TPS 3", "dapil" : [3306, 13309, 2332304]}, "900403814" : {"nama" : "TPS 4", "dapil" : [3306, 13309, 2332304]}, "900403815" : {"nama" : "TPS 5", "dapil" : [3306, 13309, 2332304]}, "900403816" : {"nama" : "TPS 6", "dapil" : [3306, 13309, 2332304]}, "900403817" : {"nama" : "TPS 7", "dapil" : [3306, 13309, 2332304]}}
json_instruct
{"type": "object", "properties": {"900403811": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900403812": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900403813": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900403814": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900403815": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900403816": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900403817": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}}, "required": ["900403811", "900403812", "900403813", "900403814", "900403815", "900403816", "900403817"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "authors": {"type": "array", "items": {"type": "string"}}, "license": {"type": "string"}, "homepage": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "main": {"type": "string"}, "ignore": {"type": "array", "items": {"type": "string"}}, "dependencies": {"type": "object", "properties": {"HTML5-Desktop-Notifications2": {"type": "string"}, "angular": {"type": "string"}}, "required": ["HTML5-Desktop-Notifications2", "angular"]}, "devDependencies": {"type": "object", "properties": {"jquery": {"type": "string"}, "angular-mocks": {"type": "string"}}, "required": ["jquery", "angular-mocks"]}, "resolutions": {"type": "object", "properties": {"angular": {"type": "string"}}, "required": ["angular"]}, "_release": {"type": "string"}, "_resolution": {"type": "object", "properties": {"type": {"type": "string"}, "tag": {"type": "string"}, "commit": {"type": "string"}}, "required": ["type", "tag", "commit"]}, "_source": {"type": "string"}, "_target": {"type": "string"}, "_originalSource": {"type": "string"}}, "required": ["name", "version", "description", "authors", "license", "homepage", "keywords", "main", "ignore", "dependencies", "devDependencies", "resolutions", "_release", "_resolution", "_source", "_target", "_originalSource"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "angular-web-notification", "version" : "0.0.57", "description" : "AngularJS service for displaying web notifications.", "authors" : ["Sagie Gur-Ari <[email protected]>"], "license" : "Apache-2.0", "homepage" : "http://github.com/sagiegurari/angular-web-notification", "keywords" : ["AngularJS", "notifications", "web notifications"], "main" : "angular-web-notification.js", "ignore" : ["node_modules", "bower_components", "test", "tests", "example", "target"], "dependencies" : {"HTML5-Desktop-Notifications2" : "1.0.1", "angular" : "1.4.7"}, "devDependencies" : {"jquery" : "~2", "angular-mocks" : "1.4.7"}, "resolutions" : {"angular" : "1.4.7"}, "_release" : "0.0.57", "_resolution" : {"type" : "version", "tag" : "0.0.57", "commit" : "6ada4b49a0a87453107fe09ac318daec68bcd185"}, "_source" : "git://github.com/sagiegurari/angular-web-notification.git", "_target" : "~0.0.53", "_originalSource" : "angular-web-notification"}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "authors": {"type": "array", "items": {"type": "string"}}, "license": {"type": "string"}, "homepage": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "main": {"type": "string"}, "ignore": {"type": "array", "items": {"type": "string"}}, "dependencies": {"type": "object", "properties": {"HTML5-Desktop-Notifications2": {"type": "string"}, "angular": {"type": "string"}}, "required": ["HTML5-Desktop-Notifications2", "angular"]}, "devDependencies": {"type": "object", "properties": {"jquery": {"type": "string"}, "angular-mocks": {"type": "string"}}, "required": ["jquery", "angular-mocks"]}, "resolutions": {"type": "object", "properties": {"angular": {"type": "string"}}, "required": ["angular"]}, "_release": {"type": "string"}, "_resolution": {"type": "object", "properties": {"type": {"type": "string"}, "tag": {"type": "string"}, "commit": {"type": "string"}}, "required": ["type", "tag", "commit"]}, "_source": {"type": "string"}, "_target": {"type": "string"}, "_originalSource": {"type": "string"}}, "required": ["name", "version", "description", "authors", "license", "homepage", "keywords", "main", "ignore", "dependencies", "devDependencies", "resolutions", "_release", "_resolution", "_source", "_target", "_originalSource"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"description": {"type": "string"}, "cc": {"type": "array", "items": {"type": "string"}}, "reviewers": {"type": "array", "items": {}}, "messages": {"type": "array", "items": {"type": "object", "properties": {"sender": {"type": "string"}, "recipients": {"type": "array", "items": {"type": "string"}}, "text": {"type": "string"}, "disapproval": {"type": "boolean"}, "date": {"type": "string"}, "approval": {"type": "boolean"}}, "required": ["sender", "recipients", "text", "disapproval", "date", "approval"]}}, "owner_email": {"type": "string"}, "private": {"type": "boolean"}, "base_url": {"type": "string"}, "owner": {"type": "string"}, "subject": {"type": "string"}, "created": {"type": "string"}, "patchsets": {"type": "array", "items": {"type": "integer"}}, "modified": {"type": "string"}, "closed": {"type": "boolean"}, "issue": {"type": "integer"}}, "required": ["description", "cc", "reviewers", "messages", "owner_email", "private", "base_url", "owner", "subject", "created", "patchsets", "modified", "closed", "issue"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"description" : "doc: update links", "cc" : ["[email protected]", "[email protected]"], "reviewers" : [], "messages" : [{"sender" : "[email protected]", "recipients" : ["[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]"], "text" : "LGTM", "disapproval" : false, "date" : "2012-03-06 21:15:21.010837", "approval" : true}, {"sender" : "[email protected]", "recipients" : ["[email protected]", "[email protected]", "[email protected]", "[email protected]"], "text" : "Hello [email protected] (cc: [email protected]),\n\nI'd like you to review this change to\nhttps://code.google.com/p/go/", "disapproval" : false, "date" : "2012-03-06 13:14:07.127888", "approval" : false}, {"sender" : "[email protected]", "recipients" : ["[email protected]", "[email protected]", "[email protected]", "[email protected]"], "text" : "*** Submitted as http://code.google.com/p/go/source/detail?r=eb0c023eb7d7 ***\n\ndoc: update links\n\nR=golang-dev, adg\nCC=golang-dev\nhttp://codereview.appspot.com/5754051\n\nCommitter: Andrew Gerrand <[email protected]>", "disapproval" : false, "date" : "2012-03-06 21:15:49.692532", "approval" : false}], "owner_email" : "[email protected]", "private" : false, "base_url" : "", "owner" : "minux", "subject" : "code review 5754051: doc: update links", "created" : "2012-03-06 13:10:22.997093", "patchsets" : [1, 2001, 5001], "modified" : "2012-03-07 04:42:11.395257", "closed" : true, "issue" : 5754051}
json_instruct
{"type": "object", "properties": {"description": {"type": "string"}, "cc": {"type": "array", "items": {"type": "string"}}, "reviewers": {"type": "array", "items": {}}, "messages": {"type": "array", "items": {"type": "object", "properties": {"sender": {"type": "string"}, "recipients": {"type": "array", "items": {"type": "string"}}, "text": {"type": "string"}, "disapproval": {"type": "boolean"}, "date": {"type": "string"}, "approval": {"type": "boolean"}}, "required": ["sender", "recipients", "text", "disapproval", "date", "approval"]}}, "owner_email": {"type": "string"}, "private": {"type": "boolean"}, "base_url": {"type": "string"}, "owner": {"type": "string"}, "subject": {"type": "string"}, "created": {"type": "string"}, "patchsets": {"type": "array", "items": {"type": "integer"}}, "modified": {"type": "string"}, "closed": {"type": "boolean"}, "issue": {"type": "integer"}}, "required": ["description", "cc", "reviewers", "messages", "owner_email", "private", "base_url", "owner", "subject", "created", "patchsets", "modified", "closed", "issue"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"_id": {"type": "string"}, "_type": {"type": "string"}, "components": {"type": "array", "items": {"type": "object", "properties": {"_id": {"type": "string"}, "_type": {"type": "string"}, "components": {"type": "array", "items": {"type": "object", "properties": {"_id": {"type": "string"}, "_type": {"type": "string"}, "label": {"type": "string"}, "name": {"type": "string"}}, "required": ["_id", "_type", "label", "name"]}}, "model": {"type": "string"}, "repeatable": {"type": "boolean"}, "repeatableAdd": {"type": "string"}, "repeatableDelete": {"type": "string"}, "repeatableMaximum": {"type": "integer"}}, "required": ["_id", "_type", "components", "model", "repeatable", "repeatableAdd", "repeatableDelete", "repeatableMaximum"]}}, "heading": {"type": "string"}, "lede": {"type": "string"}, "url": {"type": "string"}}, "required": ["_id", "_type", "components", "heading", "lede", "url"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"_id" : "page.loss-of-time", "_type" : "page.form", "components" : [{"_id" : "page.loss-of-time--fieldset", "_type" : "fieldset", "components" : [{"_id" : "page.loss-of-time--fieldset--number.auto_name__19", "_type" : "number", "label" : "**Total cost**", "name" : "auto_name__19"}, {"_id" : "page.loss-of-time--fieldset--fileupload.auto_name__20", "_type" : "fileupload", "label" : "**Include receipt**", "name" : "auto_name__20", "validation" : {"required" : false}}], "model" : "model_auto__6", "repeatable" : true, "repeatableAdd" : "Add another receipt", "repeatableDelete" : "Remove cost", "repeatableMaximum" : 10}], "heading" : "Have you had any other costs?", "lede" : "For example, if you had to pay for a childminder while you were at court.", "url" : "loss-of-time"}
json_instruct
{"type": "object", "properties": {"_id": {"type": "string"}, "_type": {"type": "string"}, "components": {"type": "array", "items": {"type": "object", "properties": {"_id": {"type": "string"}, "_type": {"type": "string"}, "components": {"type": "array", "items": {"type": "object", "properties": {"_id": {"type": "string"}, "_type": {"type": "string"}, "label": {"type": "string"}, "name": {"type": "string"}}, "required": ["_id", "_type", "label", "name"]}}, "model": {"type": "string"}, "repeatable": {"type": "boolean"}, "repeatableAdd": {"type": "string"}, "repeatableDelete": {"type": "string"}, "repeatableMaximum": {"type": "integer"}}, "required": ["_id", "_type", "components", "model", "repeatable", "repeatableAdd", "repeatableDelete", "repeatableMaximum"]}}, "heading": {"type": "string"}, "lede": {"type": "string"}, "url": {"type": "string"}}, "required": ["_id", "_type", "components", "heading", "lede", "url"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"appearance": {"type": "object", "properties": {"eye-color": {"type": "string"}, "gender": {"type": "string"}, "hair-color": {"type": "string"}, "height": {"type": "array", "items": {"type": "string"}}, "race": {"type": "string"}, "weight": {"type": "array", "items": {"type": "string"}}}, "required": ["eye-color", "gender", "hair-color", "height", "race", "weight"]}, "biography": {"type": "object", "properties": {"aliases": {"type": "array", "items": {"type": "string"}}, "alignment": {"type": "string"}, "alter-egos": {"type": "string"}, "first-appearance": {"type": "string"}, "full-name": {"type": "string"}, "place-of-birth": {"type": "string"}, "publisher": {"type": "string"}}, "required": ["aliases", "alignment", "alter-egos", "first-appearance", "full-name", "place-of-birth", "publisher"]}, "connections": {"type": "object", "properties": {"group-affiliation": {"type": "string"}, "relatives": {"type": "string"}}, "required": ["group-affiliation", "relatives"]}, "id": {"type": "string"}, "image": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "name": {"type": "string"}, "powerstats": {"type": "object", "properties": {"combat": {"type": "string"}, "durability": {"type": "string"}, "intelligence": {"type": "string"}, "power": {"type": "string"}, "speed": {"type": "string"}, "strength": {"type": "string"}}, "required": ["combat", "durability", "intelligence", "power", "speed", "strength"]}, "response": {"type": "string"}, "work": {"type": "object", "properties": {"base": {"type": "string"}, "occupation": {"type": "string"}}, "required": ["base", "occupation"]}}, "required": ["appearance", "biography", "connections", "id", "image", "name", "powerstats", "response", "work"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"appearance" : {"eye-color" : "Green", "gender" : "Female", "hair-color" : "Blond", "height" : ["5'4", "163 cm"], "race" : "Human", "weight" : ["110 lb", "50 kg"]}, "biography" : {"aliases" : ["Kay Carlton", "The Cheetah"], "alignment" : "bad", "alter-egos" : "No alter egos found.", "first-appearance" : "Wonder Woman Vol1 #6 (Fall 1943)", "full-name" : "Priscilla Rich", "place-of-birth" : "-", "publisher" : "DC Comics"}, "connections" : {"group-affiliation" : "Villainy Inc", "relatives" : "Claudia Rich (cousin), Debi Domaine (niece)"}, "id" : "172", "image" : {"url" : "https://www.superherodb.com/pictures2/portraits/10/100/661.jpg"}, "name" : "Cheetah", "powerstats" : {"combat" : "70", "durability" : "20", "intelligence" : "38", "power" : "32", "speed" : "42", "strength" : "8"}, "response" : "success", "work" : {"base" : "-", "occupation" : "-"}}
json_instruct
{"type": "object", "properties": {"appearance": {"type": "object", "properties": {"eye-color": {"type": "string"}, "gender": {"type": "string"}, "hair-color": {"type": "string"}, "height": {"type": "array", "items": {"type": "string"}}, "race": {"type": "string"}, "weight": {"type": "array", "items": {"type": "string"}}}, "required": ["eye-color", "gender", "hair-color", "height", "race", "weight"]}, "biography": {"type": "object", "properties": {"aliases": {"type": "array", "items": {"type": "string"}}, "alignment": {"type": "string"}, "alter-egos": {"type": "string"}, "first-appearance": {"type": "string"}, "full-name": {"type": "string"}, "place-of-birth": {"type": "string"}, "publisher": {"type": "string"}}, "required": ["aliases", "alignment", "alter-egos", "first-appearance", "full-name", "place-of-birth", "publisher"]}, "connections": {"type": "object", "properties": {"group-affiliation": {"type": "string"}, "relatives": {"type": "string"}}, "required": ["group-affiliation", "relatives"]}, "id": {"type": "string"}, "image": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "name": {"type": "string"}, "powerstats": {"type": "object", "properties": {"combat": {"type": "string"}, "durability": {"type": "string"}, "intelligence": {"type": "string"}, "power": {"type": "string"}, "speed": {"type": "string"}, "strength": {"type": "string"}}, "required": ["combat", "durability", "intelligence", "power", "speed", "strength"]}, "response": {"type": "string"}, "work": {"type": "object", "properties": {"base": {"type": "string"}, "occupation": {"type": "string"}}, "required": ["base", "occupation"]}}, "required": ["appearance", "biography", "connections", "id", "image", "name", "powerstats", "response", "work"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
[[4, 2, 5, 1], [8, 4, 9, 3], [14, 5, 15, 6], [2, 8, 3, 7], [16, 9, 17, 10], [18, 12, 19, 11], [22, 13, 1, 14], [6, 15, 7, 16], [20, 18, 21, 17], [12, 20, 13, 19], [10, 21, 11, 22]]
json_instruct
{"type": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"word": {"type": "string"}, "definitions": {"type": "array", "items": {"type": "string"}}, "parts-of-speech": {"type": "string"}}, "required": ["word", "definitions", "parts-of-speech"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"word" : "Wireless", "definitions" : ["A radio.", "Broadcasting, computer networking, or other communication using radio signals, microwaves, etc."], "parts-of-speech" : "Noun"}
json_instruct
{"type": "object", "properties": {"word": {"type": "string"}, "definitions": {"type": "array", "items": {"type": "string"}}, "parts-of-speech": {"type": "string"}}, "required": ["word", "definitions", "parts-of-speech"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"type": {"type": "string"}, "title": {"type": "string"}, "id": {"type": "string"}, "bbox": {"type": "array", "items": {"type": "number"}}, "description": {"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", "names", "features"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"type" : "FeatureCollection", "title" : "Tentyra", "id" : "786127", "bbox" : [32.6700972222, 26.141775, 32.6700972222, 26.141775], "description" : "The Ptolemaic temple to Hathor at Dendera.", "names" : ["Tentura", "Tentura", "Dendera"], "features" : [{"type" : "Feature", "geometry" : {"type" : "Point", "coordinates" : [32.6700972222, 26.141775]}, "properties" : {"description" : "representative point"}}, {"geometry" : {"type" : "Point", "coordinates" : [32.67009722222222, 26.141775, 74.88937611114197]}, "id" : "the-temple-of-hathor-at-dendera", "type" : "Feature", "properties" : {"description" : "The Ptolemaic temple to Hathor, one of the festival temples built within the Dodekaschoinos.", "location_precision" : "precise", "title" : "The Temple of Hathor at Dendera", "link" : "http://pleiades.stoa.org/places/786127/the-temple-of-hathor-at-dendera"}}]}
json_instruct
{"type": "object", "properties": {"type": {"type": "string"}, "title": {"type": "string"}, "id": {"type": "string"}, "bbox": {"type": "array", "items": {"type": "number"}}, "description": {"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", "names", "features"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "files": {"type": "array", "items": {"type": "string"}}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "dependencies": {"type": "object", "properties": {"mongodb": {"type": "string"}}, "required": ["mongodb"]}, "devDependencies": {"type": "object", "properties": {"chai": {"type": "string"}, "mocha": {"type": "string"}, "nyc": {"type": "string"}}, "required": ["chai", "mocha", "nyc"]}, "engines": {"type": "object", "properties": {"node": {"type": "string"}}, "required": ["node"]}}, "required": ["name", "version", "description", "main", "files", "scripts", "repository", "keywords", "author", "license", "bugs", "homepage", "dependencies", "devDependencies", "engines"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "mongodb-crud", "version" : "1.1.0", "description" : "An easy to use CRUD for MongoDB", "main" : "index.js", "files" : ["index.js"], "scripts" : {"test" : "nyc mocha --colors *.test.js"}, "repository" : {"type" : "git", "url" : "https://github.com/willchb/mongodb-crud"}, "keywords" : ["mongodb", "crud", "create", "read", "update", "delete"], "author" : "Willian Balmant", "license" : "MIT", "bugs" : {"url" : "https://github.com/willchb/mongodb-crud/issues"}, "homepage" : "https://github.com/willchb/mongodb-crud#readme", "dependencies" : {"mongodb" : "^3.1.13"}, "devDependencies" : {"chai" : "^4.2.0", "mocha" : "^5.2.0", "nyc" : "^13.2.0"}, "engines" : {"node" : ">=7.10.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": {"test": {"type": "string"}}, "required": ["test"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "dependencies": {"type": "object", "properties": {"mongodb": {"type": "string"}}, "required": ["mongodb"]}, "devDependencies": {"type": "object", "properties": {"chai": {"type": "string"}, "mocha": {"type": "string"}, "nyc": {"type": "string"}}, "required": ["chai", "mocha", "nyc"]}, "engines": {"type": "object", "properties": {"node": {"type": "string"}}, "required": ["node"]}}, "required": ["name", "version", "description", "main", "files", "scripts", "repository", "keywords", "author", "license", "bugs", "homepage", "dependencies", "devDependencies", "engines"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"listeningPort": {"type": "integer"}, "clientPort": {"type": "integer"}, "clientIpAddress": {"type": "string"}}, "required": ["listeningPort", "clientPort", "clientIpAddress"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"listeningPort" : 80, "clientPort" : 80, "clientIpAddress" : "127.0.0.1"}
json_instruct
{"type": "object", "properties": {"listeningPort": {"type": "integer"}, "clientPort": {"type": "integer"}, "clientIpAddress": {"type": "string"}}, "required": ["listeningPort", "clientPort", "clientIpAddress"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"files.associations": {"type": "object", "properties": {"gcptr.h": {"type": "string"}, "gcobj.h": {"type": "string"}, "gctypes.h": {"type": "string"}, "gcstr.h": {"type": "string"}, "stdlib.h": {"type": "string"}, "stdio.h": {"type": "string"}, "string.h": {"type": "string"}, "iostream": {"type": "string"}, "ios": {"type": "string"}, "system_error": {"type": "string"}, "vector": {"type": "string"}, "xiosbase": {"type": "string"}, "xstring": {"type": "string"}, "iosfwd": {"type": "string"}, "xutility": {"type": "string"}}, "required": ["gcptr.h", "gcobj.h", "gctypes.h", "gcstr.h", "stdlib.h", "stdio.h", "string.h", "iostream", "ios", "system_error", "vector", "xiosbase", "xstring", "iosfwd", "xutility"]}}, "required": ["files.associations"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"files.associations" : {"gcptr.h" : "c", "gcobj.h" : "c", "gctypes.h" : "c", "gcstr.h" : "c", "stdlib.h" : "c", "stdio.h" : "c", "string.h" : "c", "iostream" : "cpp", "ios" : "cpp", "system_error" : "cpp", "vector" : "cpp", "xiosbase" : "cpp", "xstring" : "cpp", "iosfwd" : "c", "xutility" : "c"}}
json_instruct
{"type": "object", "properties": {"files.associations": {"type": "object", "properties": {"gcptr.h": {"type": "string"}, "gcobj.h": {"type": "string"}, "gctypes.h": {"type": "string"}, "gcstr.h": {"type": "string"}, "stdlib.h": {"type": "string"}, "stdio.h": {"type": "string"}, "string.h": {"type": "string"}, "iostream": {"type": "string"}, "ios": {"type": "string"}, "system_error": {"type": "string"}, "vector": {"type": "string"}, "xiosbase": {"type": "string"}, "xstring": {"type": "string"}, "iosfwd": {"type": "string"}, "xutility": {"type": "string"}}, "required": ["gcptr.h", "gcobj.h", "gctypes.h", "gcstr.h", "stdlib.h", "stdio.h", "string.h", "iostream", "ios", "system_error", "vector", "xiosbase", "xstring", "iosfwd", "xutility"]}}, "required": ["files.associations"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"/js/velocity.js": {"type": "string"}, "/css/velocity-admin.css": {"type": "string"}, "/css/velocity.css": {"type": "string"}}, "required": ["/js/velocity.js", "/css/velocity-admin.css", "/css/velocity.css"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"/js/velocity.js" : "/js/velocity.js?id=ea742e9269dc43e70f30", "/css/velocity-admin.css" : "/css/velocity-admin.css?id=4322502d80a0e4a0affd", "/css/velocity.css" : "/css/velocity.css?id=fa505a5830e7b9b4285f"}
json_instruct
{"type": "object", "properties": {"/js/velocity.js": {"type": "string"}, "/css/velocity-admin.css": {"type": "string"}, "/css/velocity.css": {"type": "string"}}, "required": ["/js/velocity.js", "/css/velocity-admin.css", "/css/velocity.css"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "main": {"type": "string"}, "directories": {"type": "object", "properties": {"doc": {"type": "string"}, "test": {"type": "string"}}, "required": ["doc", "test"]}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "install": {"type": "string"}}, "required": ["test", "install"]}, "engines": {"type": "object", "properties": {"node": {"type": "string"}}, "required": ["node"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "keywords": {"type": "array", "items": {}}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "dependencies": {"type": "object", "properties": {"generic-pool": {"type": "string"}, "node-addon-api": {"type": "string"}, "node-pre-gyp": {"type": "string"}}, "required": ["generic-pool", "node-addon-api", "node-pre-gyp"]}, "binary": {"type": "object", "properties": {"module_name": {"type": "string"}, "module_path": {"type": "string"}, "host": {"type": "string"}, "remote_path": {"type": "string"}, "package_name": {"type": "string"}}, "required": ["module_name", "module_path", "host", "remote_path", "package_name"]}, "devDependencies": {"type": "object", "properties": {"node-cmake": {"type": "string"}, "aws-sdk": {"type": "string"}, "tape": {"type": "string"}}, "required": ["node-cmake", "aws-sdk", "tape"]}}, "required": ["name", "version", "main", "directories", "scripts", "engines", "repository", "keywords", "author", "license", "bugs", "homepage", "dependencies", "binary", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "valhalla", "version" : "3.0.0-rc.4", "main" : "lib/index.js", "directories" : {"doc" : "docs", "test" : "test"}, "scripts" : {"test" : "tape test/bindings/nodejs/*.test.js", "install" : "node-pre-gyp install --fallback-to-build=false || ./scripts/node_install.sh"}, "engines" : {"node" : ">=8.11.2"}, "repository" : {"type" : "git", "url" : "git+https://github.com/valhalla/valhalla.git"}, "keywords" : [], "author" : "", "license" : "ISC", "bugs" : {"url" : "https://github.com/valhalla/valhalla/issues"}, "homepage" : "https://github.com/valhalla/valhalla#readme", "dependencies" : {"generic-pool" : "3.4.2", "node-addon-api" : "1.4.0", "node-pre-gyp" : "^0.10.0"}, "binary" : {"module_name" : "node_valhalla", "module_path" : "./lib/binding", "host" : "https://mapbox-node-binary.s3.amazonaws.com", "remote_path" : "./valhalla/v{version}/{configuration}/", "package_name" : "{platform}-{arch}-napi-v{napi_version}.tar.gz"}, "devDependencies" : {"node-cmake" : "^2.5.1", "aws-sdk" : "^2.257.1", "tape" : "^4.9.0"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "main": {"type": "string"}, "directories": {"type": "object", "properties": {"doc": {"type": "string"}, "test": {"type": "string"}}, "required": ["doc", "test"]}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "install": {"type": "string"}}, "required": ["test", "install"]}, "engines": {"type": "object", "properties": {"node": {"type": "string"}}, "required": ["node"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "keywords": {"type": "array", "items": {}}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "dependencies": {"type": "object", "properties": {"generic-pool": {"type": "string"}, "node-addon-api": {"type": "string"}, "node-pre-gyp": {"type": "string"}}, "required": ["generic-pool", "node-addon-api", "node-pre-gyp"]}, "binary": {"type": "object", "properties": {"module_name": {"type": "string"}, "module_path": {"type": "string"}, "host": {"type": "string"}, "remote_path": {"type": "string"}, "package_name": {"type": "string"}}, "required": ["module_name", "module_path", "host", "remote_path", "package_name"]}, "devDependencies": {"type": "object", "properties": {"node-cmake": {"type": "string"}, "aws-sdk": {"type": "string"}, "tape": {"type": "string"}}, "required": ["node-cmake", "aws-sdk", "tape"]}}, "required": ["name", "version", "main", "directories", "scripts", "engines", "repository", "keywords", "author", "license", "bugs", "homepage", "dependencies", "binary", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"version": {"type": "string"}, "flags": {"type": "object", "properties": {}, "required": []}, "shapes": {"type": "array", "items": {"type": "object", "properties": {"label": {"type": "string"}, "points": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}, "group_id": {"type": "integer"}, "shape_type": {"type": "string"}, "flags": {"type": "object", "properties": {}, "required": []}}, "required": ["label", "points", "group_id", "shape_type", "flags"]}}, "imagePath": {"type": "string"}, "imageData": {"type": "string"}, "imageHeight": {"type": "integer"}, "imageWidth": {"type": "integer"}}, "required": ["version", "flags", "shapes", "imagePath", "imageData", "imageHeight", "imageWidth"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"version" : "4.5.7", "flags" : {}, "shapes" : [{"label" : "null", "points" : [[580.0, 1167.0], [646.0, 1156.0], [647.0, 1202.0], [580.0, 1213.0]], "group_id" : 0, "shape_type" : "polygon", "flags" : {}}, {"label" : "null", "points" : [[669.0, 1155.0], [770.0, 1142.0], [773.0, 1188.0], [670.0, 1202.0]], "group_id" : 0, "shape_type" : "polygon", "flags" : {}}, {"label" : "null", "points" : [[616.0, 1215.0], [689.0, 1206.0], [691.0, 1253.0], [615.0, 1261.0]], "group_id" : 0, "shape_type" : "polygon", "flags" : {}}, {"label" : "null", "points" : [[724.0, 1202.0], [801.0, 1192.0], [804.0, 1241.0], [725.0, 1250.0]], "group_id" : 0, "shape_type" : "polygon", "flags" : {}}, {"label" : "null", "points" : [[350.41666666666663, 1309.375], [602.0416666666666, 1285.0], [605.0416666666666, 1315.0], [354.2, 1336.5]], "group_id" : 3, "shape_type" : "polygon", "flags" : {}}, {"label" : "null", "points" : [[655.0, 771.0], [801.0, 808.0], [802.0, 898.0], [654.0, 866.0]], "group_id" : 0, "shape_type" : "polygon", "flags" : {}}, {"label" : "null", "points" : [[623.0, 865.0], [833.0, 907.0], [836.0, 983.0], [621.0, 943.0]], "group_id" : 0, "shape_type" : "polygon", "flags" : {}}, {"label" : "null", "points" : [[608.0, 950.0], [662.0, 960.0], [661.0, 996.0], [606.0, 987.0]], "group_id" : 0, "shape_type" : "polygon", "flags" : {}}, {"label" : "null", "points" : [[670.0, 964.0], [742.0, 975.0], [743.0, 1010.0], [668.0, 998.0]], "group_id" : 0, "shape_type" : "polygon", "flags" : {}}, {"label" : "null", "points" : [[749.0, 978.0], [796.0, 987.0], [797.0, 1021.0], [749.0, 1014.0]], "group_id" : 0, "shape_type" : "polygon", "flags" : {}}, {"label" : "null", "points" : [[804.0, 987.0], [850.0, 995.0], [851.0, 1030.0], [803.0, 1023.0]], "group_id" : 0, "shape_type" : "polygon", "flags" : {}}, {"label" : "null", "points" : [[197.0, 1216.0], [569.0, 1168.0], [570.0, 1276.0], [192.0, 1320.0]], "group_id" : 0, "shape_type" : "polygon", "flags" : {}}], "imagePath" : "img_1844.jpg", "imageData" : "null", "imageHeight" : 1365, "imageWidth" : 1024}
json_instruct
{"type": "object", "properties": {"version": {"type": "string"}, "flags": {"type": "object", "properties": {}, "required": []}, "shapes": {"type": "array", "items": {"type": "object", "properties": {"label": {"type": "string"}, "points": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}, "group_id": {"type": "integer"}, "shape_type": {"type": "string"}, "flags": {"type": "object", "properties": {}, "required": []}}, "required": ["label", "points", "group_id", "shape_type", "flags"]}}, "imagePath": {"type": "string"}, "imageData": {"type": "string"}, "imageHeight": {"type": "integer"}, "imageWidth": {"type": "integer"}}, "required": ["version", "flags", "shapes", "imagePath", "imageData", "imageHeight", "imageWidth"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"an7.65:0.3": {"type": "string"}}, "required": ["an7.65:0.3"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"an7.65:0.3" : "Hir\u012bottappasutta \u2192 hirottappasutta\u1e41 (bj)"}
json_instruct
{"type": "object", "properties": {"an7.65:0.3": {"type": "string"}}, "required": ["an7.65:0.3"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"name": {"type": "string"}, "author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"browser-env": {"type": "string"}, "lodash": {"type": "string"}}, "required": ["browser-env", "lodash"]}}, "required": ["name", "author", "license", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "halk", "author" : "Alexander Smirnov <[email protected]>", "license" : "MIT", "dependencies" : {"browser-env" : "^3.2.0", "lodash" : "^4.17.4"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"browser-env": {"type": "string"}, "lodash": {"type": "string"}}, "required": ["browser-env", "lodash"]}}, "required": ["name", "author", "license", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"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" : "3D Object Reconstruction from Hand-Object Interactions.", "fields" : ["computer vision", "rgb color model", "artificial intelligence", "3d reconstruction", "computer science"], "abstract" : "Recent advances have enabled 3d object reconstruction approaches using a single off-the-shelf RGB-D camera. Although these approaches are successful for a wide range of object classes, they rely on stable and distinctive geometric or texture features. Many objects like mechanical parts, toys, household or decorative articles, however, are textureless and characterized by minimalistic shapes that are simple and symmetric. Existing in-hand scanning systems and 3d reconstruction techniques fail for such symmetric objects in the absence of highly distinctive features. In this work, we show that extracting 3d hand motion for in-hand scanning effectively facilitates the reconstruction of even featureless and highly symmetric objects and we present an approach that fuses the rich additional information of hands into a 3d reconstruction pipeline, significantly contributing to the state-of-the-art of in-hand scanning.", "citation" : "Citations (10)", "year" : "2015", "departments" : ["Max Planck Society", "External Organizations"], "conf" : "iccv", "authors" : ["Dimitrios Tzionas.....http://dblp.org/pers/hd/t/Tzionas:Dimitrios", "Juergen Gall.....http://dblp.org/pers/hd/g/Gall:Juergen"], "pages" : 9}
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#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"title": {"type": "string"}, "img": {"type": "string"}, "ingredients_key": {"type": "array", "items": {"type": "string"}}, "ingredients_value": {"type": "array", "items": {"type": "string"}}, "recipe": {"type": "array", "items": {"type": "string"}}, "profile_key": {"type": "array", "items": {"type": "string"}}, "profile_value": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}}, "required": ["title", "img", "ingredients_key", "ingredients_value", "recipe", "profile_key", "profile_value"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"title" : "HibiscusSummerGardenPunch", "img" : "https:////cdn.liquor.com/wp-content/uploads/2017/08/16104257/beefeater_hibiscus_punch_720x720.png", "ingredients_key" : ["London dry gin", "Hibiscus tea, chilled*", "Creme de cacao", "Fresh lemon juice", "Simple syrup", "Bitter lemon soda", "Garnish", "Glass"], "ingredients_value" : ["15 oz", "10 oz", "1 1\u20442 oz", "5 oz", "2 1\u20442", "10 oz", "Raspberries", "Punch Bowl"], "recipe" : ["In a punch bowl, combine all of the ingredients except for the bitter lemon soda.", "Add cubed ice and gently stir with a ladle to mix.", "Top with the bitter lemon soda, and garnish with a generous amount (2 to 3 cups) of raspberries and sliced strawberries.", "Grate orange zest over the punch."], "profile_key" : ["Flavor", "Base Spirit", "Cocktail Type", "Served", "Preparation", "Strength", "Difficulty", "Hours", "Brands"], "profile_value" : [["Fruity/Citrus-forward"], ["Gin"], ["Punches"], ["On the Rocks"], ["Stirred"], ["Medium"], ["Medium"], ["Afternoon"], ["None"]]}
json_instruct
{"type": "object", "properties": {"title": {"type": "string"}, "img": {"type": "string"}, "ingredients_key": {"type": "array", "items": {"type": "string"}}, "ingredients_value": {"type": "array", "items": {"type": "string"}}, "recipe": {"type": "array", "items": {"type": "string"}}, "profile_key": {"type": "array", "items": {"type": "string"}}, "profile_value": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}}, "required": ["title", "img", "ingredients_key", "ingredients_value", "recipe", "profile_key", "profile_value"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"acl_master_token": {"type": "string"}, "acl_datacenter": {"type": "string"}, "acl_default_policy": {"type": "string"}, "acl_down_policy": {"type": "string"}}, "required": ["acl_master_token", "acl_datacenter", "acl_default_policy", "acl_down_policy"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"acl_master_token" : "d9f1928e-1f84-407c-ab50-9579de563df5", "acl_datacenter" : "dc1", "acl_default_policy" : "deny", "acl_down_policy" : "deny"}
json_instruct
{"type": "object", "properties": {"acl_master_token": {"type": "string"}, "acl_datacenter": {"type": "string"}, "acl_default_policy": {"type": "string"}, "acl_down_policy": {"type": "string"}}, "required": ["acl_master_token", "acl_datacenter", "acl_default_policy", "acl_down_policy"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"id": {"type": "string"}, "text": {"type": "string"}}, "required": ["id", "text"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : "d30-29", "text" : "thirteen\niriBsic is both the dominating ingredient and illustrates or decorates\nan event, such as Human Rights Day etc. The location and commentary\nfor such performances would also serve to keep the music blocks\nof similar consistency to the rest of the day's programming, i^e..\nbreaking them up to prevent aural fatigue. The existence of live\naudiences for such conerts also increases a sense of participation\nwhich radio dan tellingly foster.\nThis is not to say that Electronics should be retained for fill.\nBoth new musical compositions of all kinds and electronic workshop\ntechniques can very $\u00a3tefully spice up the day's fare. As often,\nhowever, it is not sufficient to perform such works without any\nexplanation, and preferably they shoudd be built into an already\nexisting \"loose box\" or magazine where they can play their part in\ncreating a good radio program. Because many understand and\nappreciate them only with difficulty, they cannot be expected to\nstand alone.\nA Radio-phonic workshop might be useful so as to be available to\nmake all the new kinds of sound being discovered; to enable the\nproduction of feature programs utilizing such sounds; and to have\navailable such sounds for dramatic production. Such a workshop\nwould re-pay itself in terms of audience interest.\nFEAT&ES & DRAMATIZATION Radio is more capable of creating than ij\ntelevision, and comparitively cheaply, because its most powerful re^\nsource is the listeners* own imagination which automatically comes\ninto play to make sense of what is heard."}
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "text": {"type": "string"}}, "required": ["id", "text"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"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": {"ownership-status": {"type": "string"}, "start-date": {"type": "string"}, "site-plan-url": {"type": "string"}, "hectares": {"type": "string"}, "planning-permission-status": {"type": "string"}, "minimum-net-dwellings": {"type": "string"}, "organisation": {"type": "string"}, "planning-permission-history": {"type": "string"}, "point": {"type": "string"}, "site": {"type": "string"}, "deliverable": {"type": "string"}, "notes": {"type": "string"}, "planning-permission-type": {"type": "string"}, "planning-permission-date": {"type": "string"}, "maximum-net-dwellings": {"type": "string"}, "site-address": {"type": "string"}, "name": {"type": "string"}, "slug": {"type": "string"}, "entity": {"type": "integer"}, "entry-date": {"type": "string"}}, "required": ["ownership-status", "start-date", "site-plan-url", "hectares", "planning-permission-status", "minimum-net-dwellings", "organisation", "planning-permission-history", "point", "site", "deliverable", "notes", "planning-permission-type", "planning-permission-date", "maximum-net-dwellings", "site-address", "name", "slug", "entity", "entry-date"]}}, "required": ["type", "geometry", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"type" : "Feature", "geometry" : {"type" : "Point", "coordinates" : [-1.521404, 55.127278]}, "properties" : {"ownership-status" : "not owned by a public authority", "start-date" : "2016-06-30", "site-plan-url" : "http://northumberland.maps.arcgis.com/apps/webappviewer/index.html?id=c1b801d50f8040efbf8c9bc9f916cfae", "hectares" : "0.18", "planning-permission-status" : "permissioned", "minimum-net-dwellings" : "0", "organisation" : "local-authority-eng:NBL", "planning-permission-history" : "https://publicaccess.northumberland.gov.uk/online-applications/applicationDetails.do?activeTab=summary&keyVal=O4EBI7QS0HJ00", "point" : "POINT(-1.521404 55.127278)", "site" : "9029", "deliverable" : "yes", "notes" : "Former nursing home, unoccupied since earlier closure of the facility. Potential scope for conversion to residential units and/or part demolition and new-build. Permission granted for alteration to provide 7 flats (16/00935/FUL). The units will be provided by conversion of a number of existing buildings, across three sections of the site, including the main building, an off-shoot to the south and a separate detached building to the east. Development of 7 dwellings completed in 2019/20.", "planning-permission-type" : "full planning permission", "planning-permission-date" : "2016-09-01", "maximum-net-dwellings" : "0", "site-address" : "Albion Court, Albion Way, Blyth", "name" : "9029", "slug" : "/brownfield-land/local-authority-eng/NBL/9029", "entity" : 488165, "entry-date" : "2020-12-17"}}
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": {"ownership-status": {"type": "string"}, "start-date": {"type": "string"}, "site-plan-url": {"type": "string"}, "hectares": {"type": "string"}, "planning-permission-status": {"type": "string"}, "minimum-net-dwellings": {"type": "string"}, "organisation": {"type": "string"}, "planning-permission-history": {"type": "string"}, "point": {"type": "string"}, "site": {"type": "string"}, "deliverable": {"type": "string"}, "notes": {"type": "string"}, "planning-permission-type": {"type": "string"}, "planning-permission-date": {"type": "string"}, "maximum-net-dwellings": {"type": "string"}, "site-address": {"type": "string"}, "name": {"type": "string"}, "slug": {"type": "string"}, "entity": {"type": "integer"}, "entry-date": {"type": "string"}}, "required": ["ownership-status", "start-date", "site-plan-url", "hectares", "planning-permission-status", "minimum-net-dwellings", "organisation", "planning-permission-history", "point", "site", "deliverable", "notes", "planning-permission-type", "planning-permission-date", "maximum-net-dwellings", "site-address", "name", "slug", "entity", "entry-date"]}}, "required": ["type", "geometry", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"user": {"type": "string"}, "value": {"type": "string"}, "type": {"type": "string"}, "time": {"type": "integer"}, "data": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "list": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}, "required": ["type", "list"]}}}, "required": ["user", "value", "type", "time", "data"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"user" : "unknow", "value" : "6", "type" : "hand", "time" : 1470003075324044800, "data" : [{"type" : "type::finger", "list" : [[410.95282, 674.931824], [406.391632, 678.705322], [400.017731, 678.418701], [389.076538, 674.026489], [373.361053, 660.703735], [354.074646, 641.315918], [333.253937, 615.715942], [308.510559, 576.333496], [298.060425, 539.801086], [297.971466, 517.072876], [303.783752, 497.97522], [314.025513, 484.568298], [328.391876, 474.41272], [346.308411, 472.015442], [363.660095, 476.487488], [380.639099, 486.739258], [393.931335, 500.514648], [402.805176, 514.36145], [405.458069, 529.590088], [401.091278, 541.737915], [389.789612, 552.288025], [372.587921, 556.601074], [351.753235, 553.041321], [327.696899, 539.572815]]}]}
json_instruct
{"type": "object", "properties": {"user": {"type": "string"}, "value": {"type": "string"}, "type": {"type": "string"}, "time": {"type": "integer"}, "data": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "list": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}, "required": ["type", "list"]}}}, "required": ["user", "value", "type", "time", "data"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"source": {"type": "string"}, "category": {"type": "string"}, "product": {"type": "string"}, "model": {"type": "string"}, "urls": {"type": "array", "items": {"type": "string"}}, "keywords": {"type": "array", "items": {"type": "string"}}, "rules": {"type": "object", "properties": {"paging": {"type": "array", "items": {"type": "string"}}, "container": {"type": "array", "items": {"type": "string"}}, "el": {"type": "object", "properties": {"content": {"type": "array", "items": {"type": "string"}}, "date": {"type": "array", "items": {"type": "string"}}}, "required": ["content", "date"]}}, "required": ["paging", "container", "el"]}}, "required": ["source", "category", "product", "model", "urls", "keywords", "rules"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"source" : "tinhte.vn", "category" : "iphone", "product" : "iphone-6s", "model" : "posts", "urls" : ["https://tinhte.vn/threads/xiaomi-mi-4-chiec-dien-thoai-dung-chip-manh-nhat-tren-thi-truong.2331365/", "https://tinhte.vn/threads/danh-gia-camera-tren-xiaomi-mi-4i-chuyen-nghiep-den-kho-tin.2454163/", "https://tinhte.vn/threads/xiaomi-mi-4i-chinh-thuc-ra-mat-5-inch-full-hd-chip-8-nhan-gia-205-usd.2453926/", "https://tinhte.vn/threads/tam-gia-4-5-trieu-nen-mua-xiaomi-mi4c.2511984/"], "keywords" : ["iphone+6s"], "rules" : {"paging" : [".PageNav"], "container" : ["div.messageInfo.primaryContent"], "el" : {"content" : [".messageContent > article > .messageText"], "date" : [".DateTime"]}}}
json_instruct
{"type": "object", "properties": {"source": {"type": "string"}, "category": {"type": "string"}, "product": {"type": "string"}, "model": {"type": "string"}, "urls": {"type": "array", "items": {"type": "string"}}, "keywords": {"type": "array", "items": {"type": "string"}}, "rules": {"type": "object", "properties": {"paging": {"type": "array", "items": {"type": "string"}}, "container": {"type": "array", "items": {"type": "string"}}, "el": {"type": "object", "properties": {"content": {"type": "array", "items": {"type": "string"}}, "date": {"type": "array", "items": {"type": "string"}}}, "required": ["content", "date"]}}, "required": ["paging", "container", "el"]}}, "required": ["source", "category", "product", "model", "urls", "keywords", "rules"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"defaultCommandTimeout": {"type": "integer"}, "includeShadowDom": {"type": "boolean"}, "baseUrl": {"type": "string"}, "ignoreTestFiles": {"type": "array", "items": {"type": "string"}}, "env": {"type": "object", "properties": {"cypress-plugin-snapshots": {"type": "object", "properties": {"autoCleanUp": {"type": "boolean"}, "imageConfig": {"type": "object", "properties": {"createDiffImage": {"type": "boolean"}, "resizeDevicePixelRatio": {"type": "boolean"}, "threshold": {"type": "integer"}, "thresholdType": {"type": "string"}}, "required": ["createDiffImage", "resizeDevicePixelRatio", "threshold", "thresholdType"]}}, "required": ["autoCleanUp", "imageConfig"]}}, "required": ["cypress-plugin-snapshots"]}}, "required": ["defaultCommandTimeout", "includeShadowDom", "baseUrl", "ignoreTestFiles", "env"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"defaultCommandTimeout" : 8000, "includeShadowDom" : false, "baseUrl" : "http://localhost:1313", "ignoreTestFiles" : ["**/__snapshots__/*", "**/__image_snapshots__/*"], "env" : {"cypress-plugin-snapshots" : {"autoCleanUp" : true, "imageConfig" : {"createDiffImage" : true, "resizeDevicePixelRatio" : true, "threshold" : 1, "thresholdType" : "pixel"}}}}
json_instruct
{"type": "object", "properties": {"defaultCommandTimeout": {"type": "integer"}, "includeShadowDom": {"type": "boolean"}, "baseUrl": {"type": "string"}, "ignoreTestFiles": {"type": "array", "items": {"type": "string"}}, "env": {"type": "object", "properties": {"cypress-plugin-snapshots": {"type": "object", "properties": {"autoCleanUp": {"type": "boolean"}, "imageConfig": {"type": "object", "properties": {"createDiffImage": {"type": "boolean"}, "resizeDevicePixelRatio": {"type": "boolean"}, "threshold": {"type": "integer"}, "thresholdType": {"type": "string"}}, "required": ["createDiffImage", "resizeDevicePixelRatio", "threshold", "thresholdType"]}}, "required": ["autoCleanUp", "imageConfig"]}}, "required": ["cypress-plugin-snapshots"]}}, "required": ["defaultCommandTimeout", "includeShadowDom", "baseUrl", "ignoreTestFiles", "env"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {"type": "integer"}}, "productReviews": {"type": "array", "items": {"type": "object", "properties": {"productId": {"type": "integer"}, "reviewText": {"type": "string"}, "reviewDate": {"type": "string"}}, "required": ["productId", "reviewText", "reviewDate"]}}}, "required": ["userId", "cartId", "preferredProducts", "productReviews"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"userId" : 10989, "cartId" : "37d2d686-63eb-42e3-a99f-1657f67b2295", "preferredProducts" : [633, 2632, 1601, 3633], "productReviews" : [{"productId" : 3067, "reviewText" : "i use it barely when i'm in my store.", "reviewDate" : "2018-04-28T15:13:52.8653944+03:00"}, {"productId" : 4724, "reviewText" : "The box this comes in is 5 kilometer by 5 inch and weights 13 kilogram!!!", "reviewDate" : "2018-03-17T15:50:14.7328843+02:00"}]}
json_instruct
{"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {"type": "integer"}}, "productReviews": {"type": "array", "items": {"type": "object", "properties": {"productId": {"type": "integer"}, "reviewText": {"type": "string"}, "reviewDate": {"type": "string"}}, "required": ["productId", "reviewText", "reviewDate"]}}}, "required": ["userId", "cartId", "preferredProducts", "productReviews"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"type": {"type": "string"}, "ingredient": {"type": "object", "properties": {"tag": {"type": "string"}}, "required": ["tag"]}, "result": {"type": "string"}, "count": {"type": "integer"}}, "required": ["type", "ingredient", "result", "count"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"type" : "woodcutter:woodcutting", "ingredient" : {"tag" : "betterend:dragon_tree_logs"}, "result" : "betterend:dragon_tree_planks", "count" : 6}
json_instruct
{"type": "object", "properties": {"type": {"type": "string"}, "ingredient": {"type": "object", "properties": {"tag": {"type": "string"}}, "required": ["tag"]}, "result": {"type": "string"}, "count": {"type": "integer"}}, "required": ["type", "ingredient", "result", "count"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"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" : "0x006d25d2abbbacdd83d0b9aaf0e2d49af1a76b8465e88e6362b320d59e6dba23", "parentHash" : "0x122a75473a1cb6cc18c5df160e18fb950e7cdb10ac8f499ee89ee99dcc64cd37", "number" : 27975, "timestamp" : 1438619035, "nonce" : "0xa4548021f90015a8", "difficulty" : 1119435117119, "gasLimit" : {"_hex" : "0x1388"}, "gasUsed" : {"_hex" : "0x0"}, "miner" : "0x88D74a59454F6cF3B51ef6b9136AFb6b9D405A88", "extraData" : "0x476574682f76312e302e302d66633739643332642f6c696e75782f676f312e34", "transactions" : []}
json_instruct
{"type": "object", "properties": {"hash": {"type": "string"}, "parentHash": {"type": "string"}, "number": {"type": "integer"}, "timestamp": {"type": "integer"}, "nonce": {"type": "string"}, "difficulty": {"type": "integer"}, "gasLimit": {"type": "object", "properties": {"_hex": {"type": "string"}}, "required": ["_hex"]}, "gasUsed": {"type": "object", "properties": {"_hex": {"type": "string"}}, "required": ["_hex"]}, "miner": {"type": "string"}, "extraData": {"type": "string"}, "transactions": {"type": "array", "items": {}}}, "required": ["hash", "parentHash", "number", "timestamp", "nonce", "difficulty", "gasLimit", "gasUsed", "miner", "extraData", "transactions"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"h": {"type": "array", "items": {"type": "object", "properties": {"d": {"type": "array", "items": {"type": "object", "properties": {"f": {"type": "string"}}, "required": ["f"]}}}, "required": ["d"]}}, "stem": {"type": "string"}, "t": {"type": "string"}}, "required": ["h", "stem", "t"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"h" : [{"d" : [{"f" : "\u60a3\u6709\u6c34\u75b9\u7684\u3002"}, {"e" : ["\ufff9`Cikolpetay~ `kako~.\ufffa\ufffb\u6211\u60a3\u6709\u8173\u766c\u3002"], "f" : "\u6307\u6c34\u75b9\u60a3\u8005\u3002"}]}], "stem" : "kolpet", "t" : "cikolpetay"}
json_instruct
{"type": "object", "properties": {"h": {"type": "array", "items": {"type": "object", "properties": {"d": {"type": "array", "items": {"type": "object", "properties": {"f": {"type": "string"}}, "required": ["f"]}}}, "required": ["d"]}}, "stem": {"type": "string"}, "t": {"type": "string"}}, "required": ["h", "stem", "t"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"version": {"type": "string"}, "notes": {"type": "string"}}, "required": ["version", "notes"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"version" : "1.6", "notes" : "- add a fix for reminders that do not have a due date which can show up in the list of items being processed\n- add in customizable sunday and saturday colors for the month view\n- change 'Today' and 'Later' font type to better distinguish them from the events\n- improvements to the setup"}
json_instruct
{"type": "object", "properties": {"version": {"type": "string"}, "notes": {"type": "string"}}, "required": ["version", "notes"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"type": {"type": "string"}, "features": {"type": "array", "items": {"type": "object", "properties": {"geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["type", "coordinates"]}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"cartodb_id": {"type": "integer"}}, "required": ["cartodb_id"]}}, "required": ["geometry", "type", "properties"]}}}, "required": ["type", "features"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"type" : "FeatureCollection", "features" : [{"geometry" : {"type" : "Polygon", "coordinates" : [[[-82.39213, 38.435411], [-82.389746, 38.434355], [-82.381773, 38.434783], [-82.364769, 38.438339], [-82.339792, 38.441206], [-82.336631, 38.437817], [-82.337012, 38.436384], [-82.339169, 38.435503], [-82.336852, 38.43459], [-82.338687, 38.432979], [-82.337887, 38.431361], [-82.339118, 38.430309], [-82.339073, 38.427459], [-82.340594, 38.426065], [-82.342202, 38.422096], [-82.34619, 38.420876], [-82.345187, 38.420019], [-82.379862, 38.416326], [-82.384041, 38.417207], [-82.390229, 38.421211], [-82.39213, 38.435411]]]}, "type" : "Feature", "properties" : {"cartodb_id" : 80261}}]}
json_instruct
{"type": "object", "properties": {"type": {"type": "string"}, "features": {"type": "array", "items": {"type": "object", "properties": {"geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["type", "coordinates"]}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"cartodb_id": {"type": "integer"}}, "required": ["cartodb_id"]}}, "required": ["geometry", "type", "properties"]}}}, "required": ["type", "features"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "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" : "4366", "title" : "\u963f\u62c9\u6cd5\u7279\u51fa\u4efb\u5df4\u52d2\u65af\u5766\u56fd\u603b\u7edf", "content" : "\n\u00a0\u00a0\u00a0\u00a0\u572832\u5e74\u524d\u7684\u4eca\u5929\uff0c1989\u5e744\u67082\u65e5(\u519c\u53861989\u5e742\u670826\u65e5)\uff0c\u963f\u62c9\u6cd5\u7279\u51fa\u4efb\u5df4\u52d2\u65af\u5766\u56fd\u603b\u7edf\u30021989\u5e744\u67082\u65e5\uff0c\u5df4\u52d2\u65af\u5766\u89e3\u653e\u7ec4\u7ec7\u4e2d\u592e\u59d4\u5458\u4f1a\u5728\u7a81\u5c3c\u65af\u53ec\u5f00\u4f1a\u8bae\uff0c\u4f1a\u4e0a\u4e00\u81f4\u9009\u4e3e\u5df4\u52d2\u65af\u5766\u89e3\u653e\u7ec4\u7ec7\u6267\u59d4\u4f1a\u4e3b\u5e2d\u3001\u9769\u547d\u6b66\u88c5\u529b\u91cf\u603b\u53f8\u4ee4\u4e9a\u897f\u5c14\u00b7\u963f\u62c9\u6cd5\u7279\u4e3a\u5df4\u52d2\u65af\u5766\u56fd\u603b\u7edf\u3002\u4e9a\u897f\u5c14\u00b7\u963f\u62c9\u6cd5\u7279\uff0c1929\u5e74\u751f\u4e8e\u8036\u8def\u6492\u51b7\uff0c\u672c\u540d\u7a46\u7f55\u9ed8\u5fb7\u00b7\u963f\u8d1d\u5fb7\u00b7\u963f\u9c81\u592b\u00b7\u963f\u62c9\u6cd5\u7279\uff0c\u65e9\u5e74\u5728\u52a0\u6c99\u4e0a\u5b66\u65f6\uff0c\u4ed6\u7684\u8001\u5e08\u4e3a\u7eaa\u5ff5\u6b7b\u53bb\u7684\u6218\u53cb\u4e9a\u897f\u5c14\uff0c\u7ed9\u963f\u62c9\u6cd5\u7279\u53d6\u4e86\u73b0\u5728\u8fd9\u4e2a\u540d\u5b57\u3002\u4e8c\u6b21\u5927\u6218\u4ee5\u540e\u7684\u4e2d\u4e1c\u5730\u533a\u98ce\u4e91\u591a\u53d8\uff0c\u8bb8\u591a\u653f\u6cbb\u5bb6\u5728\u8fd9\u4e2a\u821e\u53f0\u4e0a\u6765\u53bb\u5306\u5306\uff0c\u800c\u963f\u62c9\u6cd5\u7279\u51e0\u5341\u5e74\u6765\u59cb\u7ec8\u6d3b\u8dc3\u5728\u8fd9\u4e2a\u821e\u53f0\u4e0a\uff0c\u4ed6\u7ecf\u5386\u7684\u8270\u9669\u4e4b\u591a\uff0c\u9053\u8def\u4e4b\u66f2\u6298\uff0c\u7528\u620f\u5267\u6027\u4e00\u8bcd\u662f\u96be\u4ee5\u5f62\u5bb9\u7684\u3002\u65e9\u5728\u9752\u5c11\u5e74\u65f6\u671f\uff0c\u963f\u62c9\u6cd5\u7279\u5c31\u662f\u4e00\u4e2a\u6c11\u65cf\u4e3b\u4e49\u9769\u547d\u8005\uff0c\u66fe\u8ddf\u968f\u7236\u4eb2\u8fdb\u884c\u8fc7\u53cd\u5bf9\u72b9\u592a\u590d\u56fd\u4e3b\u4e49\u7684\u6597\u4e89\u3002\u4ee5\u8272\u5217\u5efa\u56fd\u540e\uff0c\u4ed6\u7684\u4e00\u5bb6\u8fc1\u5f80\u52a0\u6c99\u5730\u5e26\uff0c\u5728\u8fd9\u91cc\u4ed6\u719f\u6089\u4e86\u963f\u62c9\u4f2f\u96be\u6c11\u7684\u751f\u6d3b\u30021959\u5e74\uff0c\u963f\u62c9\u6cd5\u7279\u5f00\u59cb\u4ece\u4e8b\u53cd\u5bf9\u4ee5\u8272\u5217\u5360\u9886\u7684\u6e38\u51fb\u6d3b\u52a8\uff0c\u5e76\u6210\u4e3a\u201c\u6cd5\u5854\u8d6b\u201d\u7ec4\u7ec7\u7684\u53d1\u8d77\u4eba\u4e4b\u4e00\u30021969\u5e74\uff0c\u963f\u62c9\u6cd5\u7279\u62c5\u4efb\u4e86\u5df4\u52d2\u65af\u5766\u89e3\u653e\u7ec4\u7ec7\u4e3b\u5e2d\uff0c\u4ed6\u7387\u9886\u5df4\u52d2\u65af\u5766\u4eba\u540c\u4ee5\u8272\u5217\u4eba\u8fdb\u4e86\u4e00\u573a\u957f\u671f\u800c\u8270\u82e6\u7684\u6597\u4e89\u3002\u56e0\u6b64\uff0c\u4ee5\u8272\u5217\u4eba\u5c06\u963f\u62c9\u6cd5\u7279\u770b\u6210\u9996\u8981\u654c\u4eba\uff0c\u591a\u6b21\u5bf9\u4ed6\u884c\u523a\u3001\u88ad\u51fb\u4f46\u5747\u672a\u6210\u529f\u3002\u6709\u4e00\u6b21\uff0c\u4ee5\u8272\u5217\u6839\u636e\u201c\u6469\u8428\u5fb7\u201d\u7684\u60c5\u62a5\u5343\u91cc\u7a7a\u88ad\u7a81\u5c3c\u65af\u57ce\u7684\u5df4\u89e3\u603b\u90e8\u3002\u4e00\u679a\u5bfc\u5f39\u51c6\u786e\u5730\u51fb\u4e2d\u4e86\u963f\u62c9\u6cd5\u7279\u7684\u5367\u5ba4\uff0c\u7136\u800c\u963f\u62c9\u6cd5\u7279\u65e9\u5df2\u8f6c\u79fb\u3002\u884c\u65e0\u5b9a\u8e2a\u662f\u963f\u62c9\u6cd5\u7279\u65e9\u5c31\u91c7\u7528\u7684\u65b9\u6cd5\u3002\u57281982\u5e74\u4ee5\u8272\u5217\u5927\u4e3e\u5165\u4fb5\u5357\u9ece\u5df4\u5ae9\u7684\u65f6\u5019\uff0c\u963f\u62c9\u6cd5\u7279\u6839\u672c\u4e0d\u4f4f\u5728\u4efb\u4f55\u623f\u5b50\u91cc\uff0c\u800c\u53ea\u662f\u4ee5\u6c7d\u8f66\u751a\u81f3\u6865\u5e95\u4e3a\u201c\u5bb6\u201d\u3002\u5bf9\u963f\u62c9\u6cd5\u7279\u6765\u8bf4\uff0c\u5371\u9669\u4e0d\u4ec5\u6765\u81ea\u4ee5\u8272\u5217\u30021970\u5e74\uff0c\u5728\u4e0e\u7ea6\u65e6\u4ea4\u6076\u7684\u90a3\u4e2a\u201c\u9ed1\u4e5d\u6708\u201d\u91cc\uff0c\u7ea6\u65e6\u519b\u961f\u91cd\u521b\u5df4\u89e3\uff0c\u963f\u62c9\u6cd5\u7279\u5371\u5728\u65e6\u5915\u3002\u5f53\u65f6\u57c3\u53ca\u603b\u7edf\u7eb3\u8d5b\u5c14\u8981\u6c42\u7ea6\u65e6\u4fdd\u8bc1\u963f\u62c9\u6cd5\u7279\u7684\u5b89\u5168\uff0c\u5e76\u6d3e\u4e13\u673a\u5230\u5b89\u66fc\u3002\u4f46\u7ea6\u65e6\u62d2\u7edd\u4e86\u8fd9\u4e2a\u8981\u6c42\uff0c\u5fc5\u6b32\u9664\u53bb\u963f\u62c9\u6cd5\u7279\u3002\u8fd9\u4f4d\u5df4\u89e3\u4e3b\u5e2d\u91d1\u8749\u8131\u58f3\uff0c\u8eab\u7a7f\u79d1\u5a01\u7279\u4eba\u7684\u670d\u88c5\uff0c\u5316\u88c5\u6210\u79d1\u5a01\u7279\u5927\u4f7f\u7684\u968f\u4ece\uff0c\u5728\u4e25\u5bc6\u7684\u76d1\u89c6\u4e0b\u8fdb\u5165\u4e86\u57c3\u53ca\u9a7b\u5b89\u66fc\u4f7f\u9986\uff0c\u7136\u540e\u4e58\u4e13\u673a\u79bb\u53bb\u3002\u4f5c\u4e3a\u4e00\u4f4d\u9886\u8896\uff0c\u963f\u62c9\u6cd5\u7279\u7684\u6f14\u8bf4\u624d\u80fd\u5341\u5206\u51fa\u4f17\u3002\u4ed6\u8fd8\u5584\u4e8e\u4ece\u4eba\u6c11\u4e2d\u5438\u53d6\u667a\u6167\u3002\u5df4\u52d2\u65af\u5766\u4eba\u6c11\u5bf9\u4ed6\u7684\u7231\u6234\u662f\u7531\u8877\u7684\uff0c\u5176\u4ed6\u963f\u62c9\u4f2f\u56fd\u5bb6\u4eba\u6c11\u5bf9\u4ed6\u4ea6\u6781\u4e3a\u5c0a\u656c\u3002\u963f\u62c9\u6cd5\u7279\u5c06\u81ea\u5df1\u7684\u751f\u547d\u5b8c\u5168\u5949\u732e\u7ed9\u4e86\u5df4\u52d2\u65af\u5766\u3002\u4ed6\u6ca1\u6709\u79c1\u751f\u6d3b\uff0c\u751a\u81f3\u4ece\u672a\u5355\u72ec\u8fdb\u9910\uff0c\u5373\u4f7f\u5728\u5403\u6781\u5176\u7b80\u5355\u7684\u65e9\u9910\u65f6\uff0c\u4ed6\u4e5f\u8981\u4f1a\u89c1\u5ba2\u4eba\u3002\u963f\u62c9\u6cd5\u7279\u6709\u60ca\u4eba\u7684\u81ea\u5236\u529b\uff0c\u5bbd\u539a\u5f85\u4eba\u3002\u5728\u9ece\u5df4\u5ae9\u7684\u5df4\u52d2\u65af\u5766\u96be\u6c11\u8425\u88ab\u4ee5\u8272\u5217\u56f4\u56f0\u65f6\u671f\uff0c\u5f62\u52bf\u4e07\u5206\u5371\u6025\uff0c\u963f\u62c9\u6cd5\u7279\u5374\u51b7\u9759\u9547\u5b9a\uff0c\u6307\u6325\u81ea\u5982\uff0c\u7ec8\u4e8e\u4f7f\u5df4\u89e3\u6e38\u51fb\u961f\u80fd\u591f\u4fdd\u5b58\u5b9e\u529b\uff0c\u8f6c\u79fb\u9635\u5730\u3002\u5bf9\u4ece\u201c\u6cd5\u5854\u8d6b\u201d\u5206\u88c2\u51fa\u53bb\u7684\u4eba\uff0c\u4ed6\u7167\u53d1\u5de5\u8d44\uff1b\u5bf9\u5df2\u7ecf\u6210\u4e3a\u4ee5\u8272\u5217\u95f4\u8c0d\u6216\u4e3a\u4ee5\u8272\u5217\u5de5\u4f5c\u7684\u5df4\u52d2\u65af\u5766\u4eba\uff0c\u4ed6\u4ecd\u4e3a\u4ed6\u4eec\u7684\u5b50\u5973\u53d1\u751f\u6d3b\u8d39\u3002\u4ed6\u8bf4\uff1a\u201c\u8fd9\u4e9b\u5b69\u5b50\u8981\u751f\u6d3b\uff0c\u4ed6\u4eec\u90fd\u662f\u6211\u4eec\u5df4\u52d2\u65af\u5766\u4eba\u7684\u540e\u4ee3\u3002\u201d\u963f\u62c9\u6cd5\u7279\u8fd8\u5584\u4e8e\u5316\u89e3\u654c\u610f\uff0c\u80fd\u591f\u548c\u6614\u65e5\u7684\u654c\u4eba\u201c\u76f8\u9022\u4e00\u7b11\u6cef\u6069\u4ec7\u201d\u3002\u8fd9\u4e5f\u662f\u4ed6\u80fd\u591f\u7acb\u4e8e\u4e0d\u8d25\u4e4b\u5730\u7684\u91cd\u8981\u539f\u56e0\u3002\u8fd8\u662f\u5728\u4ed6\u7684\u4e0d\u61c8\u52aa\u529b\u548c\u5df4\u52d2\u65af\u5766\u4eba\u6c11\u7684\u987d\u5f3a\u6597\u4e89\u4e0b\uff0c1994\u5e745\u6708\uff0c\u4ee5\u963f\u62c9\u6cd5\u7279\u4e3a\u9996\u7684\u5df4\u89e3\u7ec4\u7ec7\u540c\u4ee5\u8272\u5217\u5f53\u5c40\u5728\u5f00\u7f57\u7b7e\u7f72\u534f\u8bae\uff0c\u4f7f\u52a0\u6c99\u548c\u6770\u91cc\u79d1\u8fd9\u4e24\u4e2a\u957f\u671f\u53d7\u4ee5\u8272\u5217\u4eba\u63a7\u5236\u7684\u5730\u533a\u5f52\u5df4\u52d2\u65af\u5766\u4eba\u6240\u6709\u3002\u8fd9\u4e2a\u534f\u5b9a\u7684\u7b7e\u7f72\uff0c\u4e5f\u6210\u4e3a\u4e2d\u4e1c\u548c\u5e73\u7684\u53c8\u4e00\u91cd\u5927\u5386\u53f2\u6027\u8fdb\u5c55\uff0c\u4e00\u4e2a\u5df4\u52d2\u65af\u5766\u56fd\u7684\u96cf\u5f62\u51fa\u73b0\u5728\u4e2d\u4e1c\u5927\u5730\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#"}
Construct a JSON document that adheres to this schema specification: {"type": "array", "items": {"type": "object", "properties": {"results": {"type": "array", "items": {"type": "object", "properties": {"tech": {"type": "integer"}, "pts": {"type": "integer"}, "connections": {"type": "integer"}, "capacity": {"type": "integer"}, "investments": {"type": "integer"}}, "required": ["tech", "pts", "connections", "capacity", "investments"]}}}, "required": ["results"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"results" : [{"tech" : 3, "pts" : 3241, "connections" : 55596, "capacity" : 9908431, "investments" : 54496285}, {"tech" : 5, "pts" : 345, "connections" : 30042, "capacity" : 5402880, "investments" : 30094734}, {"tech" : 1, "pts" : 522, "connections" : 86809, "capacity" : 9691460, "investments" : 173507948}]}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"results": {"type": "array", "items": {"type": "object", "properties": {"tech": {"type": "integer"}, "pts": {"type": "integer"}, "connections": {"type": "integer"}, "capacity": {"type": "integer"}, "investments": {"type": "integer"}}, "required": ["tech", "pts", "connections", "capacity", "investments"]}}}, "required": ["results"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"type": {"type": "string"}, "level": {"type": "string"}, "label": {"type": "string"}, "locale": {"type": "string"}, "country_id": {"type": "integer"}, "country_reference": {"type": "integer"}, "country_name": {"type": "string"}, "region_id": {"type": "string"}, "region_reference": {"type": "string"}, "region_name": {"type": "string"}, "province_id": {"type": "string"}, "province_reference": {"type": "string"}, "province_name": {"type": "string"}, "city_id": {"type": "string"}, "city_reference": {"type": "string"}, "city_name": {"type": "string"}, "barangay_id": {"type": "string"}, "barangay_reference": {"type": "string"}, "barangay_name": {"type": "string"}}, "required": ["type", "level", "label", "locale", "country_id", "country_reference", "country_name", "region_id", "region_reference", "region_name", "province_id", "province_reference", "province_name", "city_id", "city_reference", "city_name", "barangay_id", "barangay_reference", "barangay_name"]}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}}, "required": ["type", "coordinates"]}}, "required": ["type", "properties", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"type" : "Feature", "properties" : {"type" : "barangay", "level" : "4", "label" : "San Miguel, Gingoog City, Misamis Oriental, Northern Mindanao (Region X), PH", "locale" : "ph.northern-mindanao-region-x.misamis-oriental.gingoog-city.san-miguel", "country_id" : 177, "country_reference" : 177, "country_name" : "Philippines", "region_id" : "14", "region_reference" : "10", "region_name" : "Northern Mindanao (Region X)", "province_id" : "49", "province_reference" : "49", "province_name" : "Misamis Oriental", "city_id" : "488", "city_reference" : "991", "city_name" : "Gingoog City", "barangay_id" : "13760", "barangay_reference" : "26576", "barangay_name" : "San Miguel"}, "geometry" : {"type" : "MultiPolygon", "coordinates" : [[[[125.097931, 8.78833], [125.0914, 8.76587], [125.088814, 8.76017], [125.087936, 8.75829], [125.087181, 8.75652], [125.081993, 8.75353], [125.077797, 8.75115], [125.076576, 8.76019], [125.067978, 8.76908], [125.06839, 8.76967], [125.068367, 8.77061], [125.069344, 8.77132], [125.070549, 8.77115], [125.071472, 8.7716], [125.072632, 8.77249], [125.073921, 8.77339], [125.074829, 8.77441], [125.075897, 8.77647], [125.076752, 8.77724], [125.078278, 8.77806], [125.079582, 8.77944], [125.080353, 8.7802], [125.081619, 8.78174], [125.081596, 8.78311], [125.081879, 8.78381], [125.082802, 8.78394], [125.083794, 8.78411], [125.08429, 8.78559], [125.084541, 8.78624], [125.085442, 8.7866], [125.086189, 8.78732], [125.086166, 8.78837], [125.086067, 8.78935], [125.086807, 8.79039], [125.087646, 8.79079], [125.088409, 8.79162], [125.089287, 8.79312], [125.090553, 8.79447], [125.090332, 8.79589], [125.097931, 8.78833]]]]}}
json_instruct
{"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"type": {"type": "string"}, "level": {"type": "string"}, "label": {"type": "string"}, "locale": {"type": "string"}, "country_id": {"type": "integer"}, "country_reference": {"type": "integer"}, "country_name": {"type": "string"}, "region_id": {"type": "string"}, "region_reference": {"type": "string"}, "region_name": {"type": "string"}, "province_id": {"type": "string"}, "province_reference": {"type": "string"}, "province_name": {"type": "string"}, "city_id": {"type": "string"}, "city_reference": {"type": "string"}, "city_name": {"type": "string"}, "barangay_id": {"type": "string"}, "barangay_reference": {"type": "string"}, "barangay_name": {"type": "string"}}, "required": ["type", "level", "label", "locale", "country_id", "country_reference", "country_name", "region_id", "region_reference", "region_name", "province_id", "province_reference", "province_name", "city_id", "city_reference", "city_name", "barangay_id", "barangay_reference", "barangay_name"]}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}}, "required": ["type", "coordinates"]}}, "required": ["type", "properties", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"name": {"type": "string"}, "id": {"type": "string"}, "address": {"type": "string"}, "school_type": {"type": "string"}, "legal_status": {"type": "integer"}, "phone": {"type": "string"}, "full_time_school": {"type": "boolean"}, "email": {"type": "string"}, "provider": {"type": "string"}, "programs": {"type": "object", "properties": {"programs": {"type": "array", "items": {}}}, "required": ["programs"]}, "state": {"type": "string"}, "lon": {"type": "number"}, "lat": {"type": "number"}}, "required": ["name", "id", "address", "school_type", "legal_status", "phone", "full_time_school", "email", "provider", "programs", "state", "lon", "lat"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "Staatliche Grundschule Geschwenda", "id" : "TH-13874", "address" : "Gutshof 19a, 98716 Geschwenda", "school_type" : "Grundschule", "legal_status" : 1, "phone" : "036205/76304", "full_time_school" : false, "email" : "[email protected]", "provider" : "Landratsamt Ilm-Kreis, Staatlicher Schultr\u00e4ger", "programs" : {"programs" : []}, "state" : "TH", "lon" : 10.824282, "lat" : 50.730975}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "id": {"type": "string"}, "address": {"type": "string"}, "school_type": {"type": "string"}, "legal_status": {"type": "integer"}, "phone": {"type": "string"}, "full_time_school": {"type": "boolean"}, "email": {"type": "string"}, "provider": {"type": "string"}, "programs": {"type": "object", "properties": {"programs": {"type": "array", "items": {}}}, "required": ["programs"]}, "state": {"type": "string"}, "lon": {"type": "number"}, "lat": {"type": "number"}}, "required": ["name", "id", "address", "school_type", "legal_status", "phone", "full_time_school", "email", "provider", "programs", "state", "lon", "lat"], "$schema": "http://json-schema.org/draft-07/schema#"}