input
stringlengths
159
2.05k
output
stringlengths
5
10.3k
task
stringclasses
1 value
schema
stringlengths
100
1.99k
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"artist_id": {"type": "string"}, "artist_latitude": {"type": "null"}, "artist_location": {"type": "string"}, "artist_longitude": {"type": "null"}, "artist_name": {"type": "string"}, "duration": {"type": "number"}, "num_songs": {"type": "integer"}, "song_id": {"type": "string"}, "title": {"type": "string"}, "year": {"type": "integer"}}, "required": ["artist_id", "artist_latitude", "artist_location", "artist_longitude", "artist_name", "duration", "num_songs", "song_id", "title", "year"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"artist_id" : "ARJOTIP1187B99D2F0", "artist_latitude" : null, "artist_location" : "", "artist_longitude" : null, "artist_name" : "Trance Dance", "duration" : 203.12771, "num_songs" : 1, "song_id" : "SOAONUL12AB01892F5", "title" : "Hoodoo Wanna Voodoo", "year" : 0}
json_instruct
{"type": "object", "properties": {"artist_id": {"type": "string"}, "artist_latitude": {"type": "null"}, "artist_location": {"type": "string"}, "artist_longitude": {"type": "null"}, "artist_name": {"type": "string"}, "duration": {"type": "number"}, "num_songs": {"type": "integer"}, "song_id": {"type": "string"}, "title": {"type": "string"}, "year": {"type": "integer"}}, "required": ["artist_id", "artist_latitude", "artist_location", "artist_longitude", "artist_name", "duration", "num_songs", "song_id", "title", "year"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "array", "items": {"type": "object", "properties": {"year": {"type": "integer"}, "sex": {"type": "string"}, "n": {"type": "integer"}, "prop": {"type": "number"}}, "required": ["year", "sex", "n", "prop"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"year" : 1968, "sex" : "F", "n" : 9, "prop" : 5.26e-06}, {"year" : 1969, "sex" : "F", "n" : 6, "prop" : 3.4e-06}, {"year" : 1970, "sex" : "F", "n" : 8, "prop" : 4.37e-06}, {"year" : 1971, "sex" : "F", "n" : 10, "prop" : 5.71e-06}, {"year" : 1972, "sex" : "F", "n" : 5, "prop" : 3.1e-06}, {"year" : 1974, "sex" : "F", "n" : 6, "prop" : 3.83e-06}, {"year" : 1975, "sex" : "F", "n" : 5, "prop" : 3.2e-06}, {"year" : 1981, "sex" : "F", "n" : 5, "prop" : 2.8e-06}, {"year" : 1986, "sex" : "F", "n" : 6, "prop" : 3.25e-06}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"year": {"type": "integer"}, "sex": {"type": "string"}, "n": {"type": "integer"}, "prop": {"type": "number"}}, "required": ["year", "sex", "n", "prop"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
[[1970, 6], [1972, 6], [1973, 9], [1974, 14], [1975, 34], [1976, 18], [1977, 24], [1978, 23], [1979, 31], [1980, 25], [1981, 32], [1982, 20], [1983, 22], [1984, 13], [1985, 14], [1986, 13], [1987, 19], [1988, 13], [1989, 16], [1990, 23], [1991, 16], [1992, 15], [1993, 16], [1994, 24], [1995, 18], [1996, 20], [1997, 22], [1998, 12], [1999, 24], [2000, 27], [2001, 39], [2002, 35], [2003, 35], [2004, 30], [2005, 24], [2006, 32], [2007, 39], [2008, 31], [2009, 24], [2010, 31], [2011, 24], [2012, 16], [2013, 14], [2014, 24]]
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": {"name": {"type": "string"}, "description": {"type": "string"}, "keywords": {"type": "string"}, "authors": {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "version": {"type": "string"}, "frameworks": {"type": "array", "items": {"type": "string"}}, "platforms": {"type": "string"}}, "required": ["name", "description", "keywords", "authors", "repository", "version", "frameworks", "platforms"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "Luminosity IoT", "description" : "A library to easily create Luminosity IoT compatible devices", "keywords" : "iot, twometer-iot, luminosity-iot", "authors" : {"name" : "Twometer"}, "repository" : {"type" : "git", "url" : "https://github.com/Twometer/luminosity"}, "version" : "3.0.0", "frameworks" : ["esp8266"], "platforms" : "esp8266"}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "keywords": {"type": "string"}, "authors": {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "version": {"type": "string"}, "frameworks": {"type": "array", "items": {"type": "string"}}, "platforms": {"type": "string"}}, "required": ["name", "description", "keywords", "authors", "repository", "version", "frameworks", "platforms"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"blueprint": {"type": "string"}, "default_password": {"type": "string"}, "host_groups": {"type": "array", "items": {"type": "object", "properties": {"hosts": {"type": "array", "items": {"type": "object", "properties": {"fqdn": {"type": "string"}}, "required": ["fqdn"]}}, "name": {"type": "string"}}, "required": ["hosts", "name"]}}}, "required": ["blueprint", "default_password", "host_groups"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"blueprint" : "one-node-hdfs-blueprint", "default_password" : "super-secret-password", "host_groups" : [{"hosts" : [{"fqdn" : "c6401.ambari.apache.org"}], "name" : "host_group_1"}]}
json_instruct
{"type": "object", "properties": {"blueprint": {"type": "string"}, "default_password": {"type": "string"}, "host_groups": {"type": "array", "items": {"type": "object", "properties": {"hosts": {"type": "array", "items": {"type": "object", "properties": {"fqdn": {"type": "string"}}, "required": ["fqdn"]}}, "name": {"type": "string"}}, "required": ["hosts", "name"]}}}, "required": ["blueprint", "default_password", "host_groups"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"hour positive count": {"type": "integer"}, "hour neutral count": {"type": "integer"}, "hour negative count": {"type": "integer"}, "hour distri": {"type": "object", "properties": {"0.96": {"type": "integer"}, "0.99": {"type": "integer"}, "1.0": {"type": "integer"}, "0.29": {"type": "integer"}, "0.84": {"type": "integer"}, "0.98": {"type": "integer"}, "0.58": {"type": "integer"}, "0.97": {"type": "integer"}, "0.75": {"type": "integer"}}, "required": ["0.96", "0.99", "1.0", "0.29", "0.84", "0.98", "0.58", "0.97", "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" : 11, "hour neutral count" : 3, "hour negative count" : 1, "hour distri" : {"0.96" : 2, "0.99" : 3, "1.0" : 3, "0.29" : 1, "0.84" : 1, "0.98" : 1, "0.58" : 1, "0.97" : 2, "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.96": {"type": "integer"}, "0.99": {"type": "integer"}, "1.0": {"type": "integer"}, "0.29": {"type": "integer"}, "0.84": {"type": "integer"}, "0.98": {"type": "integer"}, "0.58": {"type": "integer"}, "0.97": {"type": "integer"}, "0.75": {"type": "integer"}}, "required": ["0.96", "0.99", "1.0", "0.29", "0.84", "0.98", "0.58", "0.97", "0.75"]}}, "required": ["hour positive count", "hour neutral count", "hour negative count", "hour distri"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"directions": {"type": "array", "items": {"type": "string"}}, "ingredients": {"type": "array", "items": {"type": "string"}}, "language": {"type": "string"}, "source": {"type": "string"}, "tags": {"type": "array", "items": {}}, "title": {"type": "string"}, "url": {"type": "string"}}, "required": ["directions", "ingredients", "language", "source", "tags", "title", "url"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"directions" : ["In a large, heavy skillet, heat oil to 375 degrees F (190 degrees C). Fry the drumettes until lightly browned and no longer pink on the inside. Remove from heat and drain excess oil.", "In a large saucepan, bring the tomato soup and water to a boil. Reduce heat and simmer. Mix in the drumettes, green bell peppers and Vidalia onion. Simmer approximately 15 minutes."], "ingredients" : ["1 quart oil for frying", "3 pounds chicken drumettes", "2 (26 ounce) cans condensed tomato soup", "6 cups water", "2 green bell peppers, diced", "1 large Vidalia onion, diced"], "language" : "en-US", "source" : "allrecipes.com", "tags" : [], "title" : "Chicken Wings in Tomato Soup", "url" : "http://allrecipes.com/recipe/21292/chicken-wings-in-tomato-soup/"}
json_instruct
{"type": "object", "properties": {"directions": {"type": "array", "items": {"type": "string"}}, "ingredients": {"type": "array", "items": {"type": "string"}}, "language": {"type": "string"}, "source": {"type": "string"}, "tags": {"type": "array", "items": {}}, "title": {"type": "string"}, "url": {"type": "string"}}, "required": ["directions", "ingredients", "language", "source", "tags", "title", "url"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"0": {"type": "number"}}, "required": ["0"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"0" : 69480.93994999216}
json_instruct
{"type": "object", "properties": {"0": {"type": "number"}}, "required": ["0"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "serve": {"type": "string"}, "build": {"type": "string"}, "prepublish": {"type": "string"}}, "required": ["test", "serve", "build", "prepublish"]}, "author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"d3": {"type": "string"}}, "required": ["d3"]}, "repository": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"browser-sync": {"type": "string"}, "cheerio": {"type": "string"}, "webpack": {"type": "string"}, "webpack-cli": {"type": "string"}}, "required": ["browser-sync", "cheerio", "webpack", "webpack-cli"]}}, "required": ["name", "version", "description", "keywords", "main", "scripts", "author", "license", "dependencies", "repository", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "@aftertheflood/londonsquared", "version" : "0.3.2", "description" : "Visualise london borough data in the style of After the Floods London Squared cartograms", "keywords" : ["d3-module", "cartogram", "london", "visualization"], "main" : "src/index.js", "scripts" : {"test" : "echo \"Error: no test specified\" && exit 1", "serve" : "npx browser-sync start --server './'", "build" : "npx webpack --watch", "prepublish" : "npx webpack"}, "author" : "tom.g.pearson@gmail.com", "license" : "ISC", "dependencies" : {"d3" : "^5.7.0"}, "repository" : "https://github.com/aftertheflood/londonsquared", "devDependencies" : {"browser-sync" : "^2.26.10", "cheerio" : "^1.0.0-rc.2", "webpack" : "^4.43.0", "webpack-cli" : "^3.3.12"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "serve": {"type": "string"}, "build": {"type": "string"}, "prepublish": {"type": "string"}}, "required": ["test", "serve", "build", "prepublish"]}, "author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"d3": {"type": "string"}}, "required": ["d3"]}, "repository": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"browser-sync": {"type": "string"}, "cheerio": {"type": "string"}, "webpack": {"type": "string"}, "webpack-cli": {"type": "string"}}, "required": ["browser-sync", "cheerio", "webpack", "webpack-cli"]}}, "required": ["name", "version", "description", "keywords", "main", "scripts", "author", "license", "dependencies", "repository", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"ThinLineAnimation": {"type": "array", "items": {"type": "string"}}}, "required": ["ThinLineAnimation"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"ThinLineAnimation" : ["TheNewTens", "RubberHoseLimbs", "Westernanimation", "Anime", "TheNineties", "Disneyesque", "LazyArtist", "ItsTheSameNowItSucks", "TheNineties", "ThickLineAnimation", "TheNineties", "Animesque", "TurnOfTheMillennium", "OlderThanTelevision", "InkblotCartoonStyle", "JustifiedTrope", "PuniPlush", "Animesque", "ThickLineAnimation", "ToothStrip", "SphereEyes", "BlackBeadEyes", "TheSixties", "ArtEvolution", "ArtShift", "Animesque", "FollowTheLeader", "MediumBlending", "ArtEvolution", "ThickLineAnimation", "InkblotCartoonStyle", "BuffySpeak", "NonStandardCharacterDesign", "ArtEvolution", "UrExample", "ArtShift", "FunnyAnimal"]}
json_instruct
{"type": "object", "properties": {"ThinLineAnimation": {"type": "array", "items": {"type": "string"}}}, "required": ["ThinLineAnimation"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"status_code": {"type": "string"}, "status_msg": {"type": "string"}, "meta": {"type": "object", "properties": {"tag": {"type": "object", "properties": {"timestamp": {"type": "number"}, "model": {"type": "string"}, "config": {"type": "string"}}, "required": ["timestamp", "model", "config"]}}, "required": ["tag"]}, "results": {"type": "array", "items": {"type": "object", "properties": {"docid": {"type": "integer"}, "status_code": {"type": "string"}, "status_msg": {"type": "string"}, "local_id": {"type": "string"}, "result": {"type": "object", "properties": {"tag": {"type": "object", "properties": {"classes": {"type": "array", "items": {"type": "string"}}, "probs": {"type": "array", "items": {"type": "number"}}}, "required": ["classes", "probs"]}}, "required": ["tag"]}, "docid_str": {"type": "string"}}, "required": ["docid", "status_code", "status_msg", "local_id", "result", "docid_str"]}}}, "required": ["status_code", "status_msg", "meta", "results"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"status_code" : "OK", "status_msg" : "All images in request have completed successfully. ", "meta" : {"tag" : {"timestamp" : 1442731372.987925, "model" : "default", "config" : "0b2b7436987dd912e077ff576731f8b7"}}, "results" : [{"docid" : 109592008318967101782820774236230115881, "status_code" : "OK", "status_msg" : "OK", "local_id" : "", "result" : {"tag" : {"classes" : ["ancient", "religion", "megalith", "travel", "monument", "sky", "nobody", "architecture", "stone", "landmark", "archaeology", "temple", "outdoors", "landscape", "daytime", "roman", "mystery", "celtic", "prehistoric", "grass"], "probs" : [0.9978519678115845, 0.9923205375671387, 0.9870280027389526, 0.985276997089386, 0.983311653137207, 0.9830543994903564, 0.9768000841140747, 0.9738619923591614, 0.9718242883682251, 0.9710495471954346, 0.9704300165176392, 0.9650923013687134, 0.9638609886169434, 0.9627723693847656, 0.9467288255691528, 0.9340140223503113, 0.9200648069381714, 0.9198198318481445, 0.9158147573471069, 0.9080795049667358]}}, "docid_str" : "5272a72e3327b6460187b33136e1e229"}]}
json_instruct
{"type": "object", "properties": {"status_code": {"type": "string"}, "status_msg": {"type": "string"}, "meta": {"type": "object", "properties": {"tag": {"type": "object", "properties": {"timestamp": {"type": "number"}, "model": {"type": "string"}, "config": {"type": "string"}}, "required": ["timestamp", "model", "config"]}}, "required": ["tag"]}, "results": {"type": "array", "items": {"type": "object", "properties": {"docid": {"type": "integer"}, "status_code": {"type": "string"}, "status_msg": {"type": "string"}, "local_id": {"type": "string"}, "result": {"type": "object", "properties": {"tag": {"type": "object", "properties": {"classes": {"type": "array", "items": {"type": "string"}}, "probs": {"type": "array", "items": {"type": "number"}}}, "required": ["classes", "probs"]}}, "required": ["tag"]}, "docid_str": {"type": "string"}}, "required": ["docid", "status_code", "status_msg", "local_id", "result", "docid_str"]}}}, "required": ["status_code", "status_msg", "meta", "results"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"parent": {"type": "string"}}, "required": ["parent"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"parent" : "chipped:block/crimson_planks_17"}
json_instruct
{"type": "object", "properties": {"parent": {"type": "string"}}, "required": ["parent"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"author": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "description": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"renovate": {"type": "string"}, "standard-version": {"type": "string"}}, "required": ["renovate", "standard-version"]}, "files": {"type": "array", "items": {}}, "homepage": {"type": "string"}, "license": {"type": "string"}, "name": {"type": "string"}, "renovate-config": {"type": "object", "properties": {"default": {"type": "object", "properties": {"gradle": {"type": "object", "properties": {"enabled": {"type": "boolean"}}, "required": ["enabled"]}, "extends": {"type": "array", "items": {"type": "string"}}, "packageRules": {"type": "array", "items": {"type": "object", "properties": {"packagePatterns": {"type": "array", "items": {"type": "string"}}, "excludePackagePatterns": {"type": "array", "items": {"type": "string"}}, "enabled": {"type": "boolean"}}, "required": ["packagePatterns", "excludePackagePatterns", "enabled"]}}, "timezone": {"type": "string"}, "commitMessagePrefix": {"type": "string"}}, "required": ["gradle", "extends", "packageRules", "timezone", "commitMessagePrefix"]}}, "required": ["default"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "resolutions": {"type": "object", "properties": {"minimist": {"type": "string"}}, "required": ["minimist"]}, "scripts": {"type": "object", "properties": {"release": {"type": "string"}, "test": {"type": "string"}}, "required": ["release", "test"]}, "version": {"type": "string"}}, "required": ["author", "bugs", "description", "devDependencies", "files", "homepage", "license", "name", "renovate-config", "repository", "resolutions", "scripts", "version"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"author" : "Zenedith", "bugs" : {"url" : "https://github.com/Zenedith/renovate-config"}, "description" : "Zenedith presets for Renovate", "devDependencies" : {"renovate" : "^22.11.0", "standard-version" : "^8.0.2"}, "files" : [], "homepage" : "https://github.com/Zenedith/renovate-config", "license" : "MIT", "name" : "@Zenedith/renovate-config", "renovate-config" : {"default" : {"gradle" : {"enabled" : true}, "extends" : ["config:base", ":timezone(Europe/Warsaw)"], "packageRules" : [{"packagePatterns" : ["*"], "excludePackagePatterns" : ["com.github.ben-manes.versions:com.github.ben-manes.versions.gradle.plugin", "org.jetbrains.kotlin.jvm:org.jetbrains.kotlin.jvm.gradle.plugin"], "enabled" : false}], "timezone" : "Europe/Warsaw", "commitMessagePrefix" : "ZENE-1209 "}}, "repository" : {"type" : "git", "url" : "https://github.com/Zenedith/renovate-config.git"}, "resolutions" : {"minimist" : "^1.2.5"}, "scripts" : {"release" : "standard-version", "test" : "renovate-config-validator"}, "version" : "1.0.0"}
json_instruct
{"type": "object", "properties": {"author": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "description": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"renovate": {"type": "string"}, "standard-version": {"type": "string"}}, "required": ["renovate", "standard-version"]}, "files": {"type": "array", "items": {}}, "homepage": {"type": "string"}, "license": {"type": "string"}, "name": {"type": "string"}, "renovate-config": {"type": "object", "properties": {"default": {"type": "object", "properties": {"gradle": {"type": "object", "properties": {"enabled": {"type": "boolean"}}, "required": ["enabled"]}, "extends": {"type": "array", "items": {"type": "string"}}, "packageRules": {"type": "array", "items": {"type": "object", "properties": {"packagePatterns": {"type": "array", "items": {"type": "string"}}, "excludePackagePatterns": {"type": "array", "items": {"type": "string"}}, "enabled": {"type": "boolean"}}, "required": ["packagePatterns", "excludePackagePatterns", "enabled"]}}, "timezone": {"type": "string"}, "commitMessagePrefix": {"type": "string"}}, "required": ["gradle", "extends", "packageRules", "timezone", "commitMessagePrefix"]}}, "required": ["default"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "resolutions": {"type": "object", "properties": {"minimist": {"type": "string"}}, "required": ["minimist"]}, "scripts": {"type": "object", "properties": {"release": {"type": "string"}, "test": {"type": "string"}}, "required": ["release", "test"]}, "version": {"type": "string"}}, "required": ["author", "bugs", "description", "devDependencies", "files", "homepage", "license", "name", "renovate-config", "repository", "resolutions", "scripts", "version"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"category": {"type": "string"}, "classinstvars": {"type": "array", "items": {}}, "classvars": {"type": "array", "items": {}}, "commentStamp": {"type": "string"}, "instvars": {"type": "array", "items": {"type": "string"}}, "name": {"type": "string"}, "pools": {"type": "array", "items": {}}, "super": {"type": "string"}, "type": {"type": "string"}}, "required": ["category", "classinstvars", "classvars", "commentStamp", "instvars", "name", "pools", "super", "type"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"category" : "Squot-Capturing", "classinstvars" : [], "classvars" : [], "commentStamp" : "jr 9/30/2017 20:24", "instvars" : ["convertedObjects", "copiedObjects", "walk", "toBeVisited", "objectRegistry", "enumeratedObject", "capturedObject", "replacedObjects", "objectGraph", "slotValueReplacements", "slotsToConvert", "capturedObjectWithReferrer"], "name" : "SquotObjectCapturer", "pools" : [], "super" : "Object", "type" : "normal"}
json_instruct
{"type": "object", "properties": {"category": {"type": "string"}, "classinstvars": {"type": "array", "items": {}}, "classvars": {"type": "array", "items": {}}, "commentStamp": {"type": "string"}, "instvars": {"type": "array", "items": {"type": "string"}}, "name": {"type": "string"}, "pools": {"type": "array", "items": {}}, "super": {"type": "string"}, "type": {"type": "string"}}, "required": ["category", "classinstvars", "classvars", "commentStamp", "instvars", "name", "pools", "super", "type"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"latest_version": {"type": "array", "items": {"type": "string"}}, "meta": {"type": "object", "properties": {"description": {"type": "string"}, "homepage": {"type": "string"}, "license": {"type": "string"}}, "required": ["description", "homepage", "license"]}, "versions": {"type": "object", "properties": {"0.1.1": {"type": "object", "properties": {"sha256": {"type": "string"}, "url": {"type": "string"}}, "required": ["sha256", "url"]}, "0.1.2": {"type": "object", "properties": {"sha256": {"type": "string"}, "url": {"type": "string"}}, "required": ["sha256", "url"]}}, "required": ["0.1.1", "0.1.2"]}}, "required": ["latest_version", "meta", "versions"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"latest_version" : ["0.1.2"], "meta" : {"description" : "Extensions to Zope's I18n Support", "homepage" : "http://cheeseshop.python.org/pypi/z3c.i18n", "license" : "ZPL 2.1"}, "versions" : {"0.1.1" : {"sha256" : "1e388d0bc34df58f17739fc55497aaf5f6a7a4ea5ff1a1b9e4b8c6ee88afa02a", "url" : "https://files.pythonhosted.org/packages/b3/88/12d4204f61d1dd4d280ba5c3e8f711ed498b66592a9dcc39dd5ebfb1644e/z3c.i18n-0.1.1.tar.gz"}, "0.1.2" : {"sha256" : "5c0298b44e0953eb2eec81dbcfe5f9a4c78a07e2e2498590b4f94847c15ed589", "url" : "https://files.pythonhosted.org/packages/55/3b/027cd8abce5d19bc9616c58ceacc295401df8a5dfeacc7efdd2f93c81a6f/z3c.i18n-0.1.2.tar.gz"}}}
json_instruct
{"type": "object", "properties": {"latest_version": {"type": "array", "items": {"type": "string"}}, "meta": {"type": "object", "properties": {"description": {"type": "string"}, "homepage": {"type": "string"}, "license": {"type": "string"}}, "required": ["description", "homepage", "license"]}, "versions": {"type": "object", "properties": {"0.1.1": {"type": "object", "properties": {"sha256": {"type": "string"}, "url": {"type": "string"}}, "required": ["sha256", "url"]}, "0.1.2": {"type": "object", "properties": {"sha256": {"type": "string"}, "url": {"type": "string"}}, "required": ["sha256", "url"]}}, "required": ["0.1.1", "0.1.2"]}}, "required": ["latest_version", "meta", "versions"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"rustc": {"type": "integer"}, "features": {"type": "string"}, "target": {"type": "integer"}, "profile": {"type": "integer"}, "deps": {"type": "array", "items": {}}, "local": {"type": "object", "properties": {"Precalculated": {"type": "string"}}, "required": ["Precalculated"]}, "rustflags": {"type": "array", "items": {}}}, "required": ["rustc", "features", "target", "profile", "deps", "local", "rustflags"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"rustc" : 2692670034823971972, "features" : "[\"gio-sys\", \"v2_34\", \"v2_36\", \"v2_38\", \"v2_40\", \"v2_42\"]", "target" : 6035165956360985840, "profile" : 4597243770934309319, "deps" : [], "local" : {"Precalculated" : "0e1d2ca7418031c1d18d991078810d300124fccd"}, "rustflags" : []}
json_instruct
{"type": "object", "properties": {"rustc": {"type": "integer"}, "features": {"type": "string"}, "target": {"type": "integer"}, "profile": {"type": "integer"}, "deps": {"type": "array", "items": {}}, "local": {"type": "object", "properties": {"Precalculated": {"type": "string"}}, "required": ["Precalculated"]}, "rustflags": {"type": "array", "items": {}}}, "required": ["rustc", "features", "target", "profile", "deps", "local", "rustflags"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"clbid": {"type": "string"}, "credits": {"type": "number"}, "crsid": {"type": "string"}, "department": {"type": "string"}, "description": {"type": "array", "items": {"type": "string"}}, "enrolled": {"type": "integer"}, "firstyear": {"type": "string"}, "gereqs": {"type": "array", "items": {"type": "string"}}, "instructors": {"type": "array", "items": {"type": "string"}}, "level": {"type": "integer"}, "max": {"type": "integer"}, "name": {"type": "string"}, "notes": {"type": "array", "items": {"type": "string"}}, "number": {"type": "integer"}, "offerings": {"type": "array", "items": {"type": "object", "properties": {"day": {"type": "string"}, "end": {"type": "string"}, "location": {"type": "string"}, "start": {"type": "string"}}, "required": ["day", "end", "location", "start"]}}, "pn": {"type": "boolean"}, "prerequisites": {"type": "string"}, "section": {"type": "string"}, "semester": {"type": "integer"}, "sophomore": {"type": "string"}, "status": {"type": "string"}, "term": {"type": "integer"}, "type": {"type": "string"}, "year": {"type": "integer"}}, "required": ["clbid", "credits", "crsid", "department", "description", "enrolled", "firstyear", "gereqs", "instructors", "level", "max", "name", "notes", "number", "offerings", "pn", "prerequisites", "section", "semester", "sophomore", "status", "term", "type", "year"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"clbid" : "0000126054", "credits" : 1.0, "crsid" : "0000000982", "department" : "PHIL", "description" : ["Valuing nature raises significant philosophical and ethical issues. This course considers the nature of animal life, the character and control of pollution, the conflict between preservationism and conservationism, corporate and governmental responsibility for the eco-crisis, the use of economic categories to assess wilderness areas and endangered species, the conflict between eco-holism and individualism, and the philosophy of wilderness management. Offered annually. Counts toward environmental studies major (all emphases) and concentration and management studies concentration. Prerequisite: completion of BTS-T or permission of instructor."], "enrolled" : 0, "firstyear" : "0/0", "gereqs" : ["EIN"], "instructors" : ["Michael Fuerstein"], "level" : 200, "max" : 25, "name" : "Environmental Ethics", "notes" : ["Prerequisite: Completion of BTS-T or permission of instructor.", "Open only to seniors and juniors during web registration."], "number" : 257, "offerings" : [{"day" : "Tu", "end" : "14:45", "location" : "HH 433", "start" : "13:20"}, {"day" : "Th", "end" : "15:35", "location" : "HH 433", "start" : "14:15"}], "pn" : false, "prerequisites" : "completion of BTS-T or permission of instructor.", "section" : "B", "semester" : 3, "sophomore" : "0/0", "status" : "O", "term" : 20193, "type" : "Research", "year" : 2019}
json_instruct
{"type": "object", "properties": {"clbid": {"type": "string"}, "credits": {"type": "number"}, "crsid": {"type": "string"}, "department": {"type": "string"}, "description": {"type": "array", "items": {"type": "string"}}, "enrolled": {"type": "integer"}, "firstyear": {"type": "string"}, "gereqs": {"type": "array", "items": {"type": "string"}}, "instructors": {"type": "array", "items": {"type": "string"}}, "level": {"type": "integer"}, "max": {"type": "integer"}, "name": {"type": "string"}, "notes": {"type": "array", "items": {"type": "string"}}, "number": {"type": "integer"}, "offerings": {"type": "array", "items": {"type": "object", "properties": {"day": {"type": "string"}, "end": {"type": "string"}, "location": {"type": "string"}, "start": {"type": "string"}}, "required": ["day", "end", "location", "start"]}}, "pn": {"type": "boolean"}, "prerequisites": {"type": "string"}, "section": {"type": "string"}, "semester": {"type": "integer"}, "sophomore": {"type": "string"}, "status": {"type": "string"}, "term": {"type": "integer"}, "type": {"type": "string"}, "year": {"type": "integer"}}, "required": ["clbid", "credits", "crsid", "department", "description", "enrolled", "firstyear", "gereqs", "instructors", "level", "max", "name", "notes", "number", "offerings", "pn", "prerequisites", "section", "semester", "sophomore", "status", "term", "type", "year"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"postscribe.js": {"type": "string"}, "postscribe.max.js": {"type": "string"}, "postscribe.min.js": {"type": "string"}}, "required": ["postscribe.js", "postscribe.max.js", "postscribe.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"postscribe.js" : "sha256-42QqgtHnTk/JMx+jhl7RfVCryj0iKdJSRcZGNW7+5tg=", "postscribe.max.js" : "sha256-42QqgtHnTk/JMx+jhl7RfVCryj0iKdJSRcZGNW7+5tg=", "postscribe.min.js" : "sha256-/pWkx1JZC34tUpZEZkMwAgYXX/kxLEdwV8HJ3sAun4Q="}
json_instruct
{"type": "object", "properties": {"postscribe.js": {"type": "string"}, "postscribe.max.js": {"type": "string"}, "postscribe.min.js": {"type": "string"}}, "required": ["postscribe.js", "postscribe.max.js", "postscribe.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"MD004": {"type": "boolean"}, "MD007": {"type": "object", "properties": {"indent": {"type": "integer"}}, "required": ["indent"]}, "MD013": {"type": "object", "properties": {"line_length": {"type": "integer"}}, "required": ["line_length"]}, "MD026": {"type": "object", "properties": {"punctuation": {"type": "string"}}, "required": ["punctuation"]}, "MD029": {"type": "boolean"}, "MD033": {"type": "boolean"}, "MD036": {"type": "boolean"}, "MD041": {"type": "boolean"}, "blank_lines": {"type": "boolean"}}, "required": ["MD004", "MD007", "MD013", "MD026", "MD029", "MD033", "MD036", "MD041", "blank_lines"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"MD004" : false, "MD007" : {"indent" : 2}, "MD013" : {"line_length" : 600}, "MD026" : {"punctuation" : ".,;:!\u3002\uff0c\uff1b:"}, "MD029" : false, "MD033" : false, "MD036" : false, "MD041" : false, "blank_lines" : false}
json_instruct
{"type": "object", "properties": {"MD004": {"type": "boolean"}, "MD007": {"type": "object", "properties": {"indent": {"type": "integer"}}, "required": ["indent"]}, "MD013": {"type": "object", "properties": {"line_length": {"type": "integer"}}, "required": ["line_length"]}, "MD026": {"type": "object", "properties": {"punctuation": {"type": "string"}}, "required": ["punctuation"]}, "MD029": {"type": "boolean"}, "MD033": {"type": "boolean"}, "MD036": {"type": "boolean"}, "MD041": {"type": "boolean"}, "blank_lines": {"type": "boolean"}}, "required": ["MD004", "MD007", "MD013", "MD026", "MD029", "MD033", "MD036", "MD041", "blank_lines"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"width": {"type": "integer"}, "height": {"type": "integer"}, "block": {"type": "string"}}, "required": ["width", "height", "block"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"width" : 15, "height" : 15, "block" : "<path d=\"M95.103 22.52c-1.06-3.867-4.166-6.653-8.108-7.272-7.199-1.165-35.997 2.155-35.997 2.155s-28.796 3.322-35.996 6.07c-3.864 1.519-7.048 5.108-8.108 9.218C5 40.196 5 55.306 5 55.306s0 15.186 1.894 22.178c1.062 3.865 4.167 6.652 8.11 7.272C22.277 85.91 51 82.598 51 82.598s28.796-3.32 35.995-6.068c3.942-1.528 7.047-5.03 8.11-9.14C97 59.883 97 44.773 97 44.773s.074-15.196-1.897-22.255zM41.83 65.018v-27.92l23.946 11.198L41.83 65.02z\" fill=\"currentColor\" fill-rule=\"evenodd\"/>"}
json_instruct
{"type": "object", "properties": {"width": {"type": "integer"}, "height": {"type": "integer"}, "block": {"type": "string"}}, "required": ["width", "height", "block"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "module": {"type": "string"}, "unpkg": {"type": "string"}, "browser": {"type": "object", "properties": {"./sfc": {"type": "string"}}, "required": ["./sfc"]}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "prepublishOnly": {"type": "string"}, "build": {"type": "string"}, "build:umd": {"type": "string"}, "build:es": {"type": "string"}, "build:unpkg": {"type": "string"}}, "required": ["test", "prepublishOnly", "build", "build:umd", "build:es", "build:unpkg"]}, "author": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {}, "required": []}, "devDependencies": {"type": "object", "properties": {"autoprefixer": {"type": "string"}, "node-sass": {"type": "string"}, "rollup": {"type": "string"}, "rollup-plugin-buble": {"type": "string"}, "rollup-plugin-uglify": {"type": "string"}, "rollup-plugin-vue": {"type": "string"}, "sass-loader": {"type": "string"}, "vue": {"type": "string"}, "vue-template-compiler": {"type": "string"}}, "required": ["autoprefixer", "node-sass", "rollup", "rollup-plugin-buble", "rollup-plugin-uglify", "rollup-plugin-vue", "sass-loader", "vue", "vue-template-compiler"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "browserslist": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "version", "description", "main", "module", "unpkg", "browser", "scripts", "author", "repository", "license", "dependencies", "devDependencies", "keywords", "browserslist"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "vue-color-picker-wheel", "version" : "0.4.3", "description" : "A Vue color picker component based on the Farbtastic jQuery Color Picker plug-in", "main" : "dist/color-picker.umd.js", "module" : "dist/color-picker.esm.js", "unpkg" : "dist/color-picker.min.js", "browser" : {"./sfc" : "src/color-picker.vue"}, "scripts" : {"test" : "echo \"Error: no test specified\" && exit 1", "prepublishOnly" : "npm run build", "build" : "npm run build:umd & npm run build:es & npm run build:unpkg", "build:umd" : "rollup --config build/rollup.config.js --format umd --file dist/color-picker.umd.js --environment BUILD:production", "build:es" : "rollup --config build/rollup.config.js --format es --file dist/color-picker.esm.js --environment BUILD:production", "build:unpkg" : "rollup --config build/rollup.config.js --format iife --file dist/color-picker.min.js --environment BUILD:production,SB_MINIFY"}, "author" : "Jeroen Peerbolte <jeroen@stijlbreuk.nl>", "repository" : {"type" : "git", "url" : "https://github.com/stijlbreuk/vue-color-picker-wheel.git"}, "license" : "MIT", "dependencies" : {}, "devDependencies" : {"autoprefixer" : "^9.3.1", "node-sass" : "^4.10.0", "rollup" : "^0.66.6", "rollup-plugin-buble" : "^0.19.4", "rollup-plugin-uglify" : "^6.0.0", "rollup-plugin-vue" : "^4.3.2", "sass-loader" : "^7.1.0", "vue" : "^2.5.17", "vue-template-compiler" : "^2.5.17"}, "keywords" : ["vue", "vue.js", "color picker", "color", "picker", "component", "farbtastic"], "browserslist" : ["> 1%", "last 2 versions", "not ie <= 8"]}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "module": {"type": "string"}, "unpkg": {"type": "string"}, "browser": {"type": "object", "properties": {"./sfc": {"type": "string"}}, "required": ["./sfc"]}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "prepublishOnly": {"type": "string"}, "build": {"type": "string"}, "build:umd": {"type": "string"}, "build:es": {"type": "string"}, "build:unpkg": {"type": "string"}}, "required": ["test", "prepublishOnly", "build", "build:umd", "build:es", "build:unpkg"]}, "author": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {}, "required": []}, "devDependencies": {"type": "object", "properties": {"autoprefixer": {"type": "string"}, "node-sass": {"type": "string"}, "rollup": {"type": "string"}, "rollup-plugin-buble": {"type": "string"}, "rollup-plugin-uglify": {"type": "string"}, "rollup-plugin-vue": {"type": "string"}, "sass-loader": {"type": "string"}, "vue": {"type": "string"}, "vue-template-compiler": {"type": "string"}}, "required": ["autoprefixer", "node-sass", "rollup", "rollup-plugin-buble", "rollup-plugin-uglify", "rollup-plugin-vue", "sass-loader", "vue", "vue-template-compiler"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "browserslist": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "version", "description", "main", "module", "unpkg", "browser", "scripts", "author", "repository", "license", "dependencies", "devDependencies", "keywords", "browserslist"], "$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"}, "circ": {"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": {"nuance": {"type": "string"}, "nom": {"type": "string"}, "voix": {"type": "integer"}}, "required": ["nuance", "nom", "voix"]}}}, "required": ["nom", "circ", "dpt", "inscrits", "abs", "votants", "blancs", "nuls", "exp", "res"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"nom" : "Etr\u00e9chy", "circ" : "3\u00e8me circonscription", "dpt" : "Essonne", "inscrits" : 4865, "abs" : 2748, "votants" : 2117, "blancs" : 154, "nuls" : 75, "exp" : 1888, "res" : [{"nuance" : "REM", "nom" : "Mme La\u00ebtitia ROMEIRO DIAS", "voix" : 1075}, {"nuance" : "FI", "nom" : "Mme Virginie ARAUJO", "voix" : 813}]}
json_instruct
{"type": "object", "properties": {"nom": {"type": "string"}, "circ": {"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": {"nuance": {"type": "string"}, "nom": {"type": "string"}, "voix": {"type": "integer"}}, "required": ["nuance", "nom", "voix"]}}}, "required": ["nom", "circ", "dpt", "inscrits", "abs", "votants", "blancs", "nuls", "exp", "res"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"title": {"type": "string"}, "subtitle": {"type": "string"}, "imports": {"type": "array", "items": {}}, "component": {"type": "object", "properties": {"name": {"type": "string"}, "as": {"type": "string"}}, "required": ["name", "as"]}, "props": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "values": {"type": "array", "items": {"type": "string"}}, "default": {"type": "string"}, "value": {"type": "string"}, "placeholder": {"type": "string"}, "type": {"type": "string"}, "description": {"type": "string"}}, "required": ["name", "values", "default", "value", "placeholder", "type", "description"]}}, "value": {"type": "string"}}, "required": ["title", "subtitle", "imports", "component", "props", "value"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"title" : "", "subtitle" : "", "imports" : [], "component" : {"name" : "vue-sdz", "as" : "{ SAlert }"}, "props" : [{"name" : "border-color", "values" : [""], "default" : "", "value" : "", "placeholder" : "red, #FF0", "type" : "string", "description" : "Adiciona cor a borda lateral esqueda do card"}, {"name" : "background-color", "values" : [""], "default" : "", "value" : "", "placeholder" : "red, #FF0", "type" : "string", "description" : "Preenche o fundo do card com a cor informada"}, {"name" : "no-hover", "values" : ["true", "false"], "default" : "false", "value" : "", "placeholder" : "", "type" : "boolean", "description" : "Desabilita a sombra no hover do card"}], "value" : ""}
json_instruct
{"type": "object", "properties": {"title": {"type": "string"}, "subtitle": {"type": "string"}, "imports": {"type": "array", "items": {}}, "component": {"type": "object", "properties": {"name": {"type": "string"}, "as": {"type": "string"}}, "required": ["name", "as"]}, "props": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "values": {"type": "array", "items": {"type": "string"}}, "default": {"type": "string"}, "value": {"type": "string"}, "placeholder": {"type": "string"}, "type": {"type": "string"}, "description": {"type": "string"}}, "required": ["name", "values", "default", "value", "placeholder", "type", "description"]}}, "value": {"type": "string"}}, "required": ["title", "subtitle", "imports", "component", "props", "value"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"nome": {"type": "string"}, "codice": {"type": "string"}, "zona": {"type": "object", "properties": {"codice": {"type": "string"}, "nome": {"type": "string"}}, "required": ["codice", "nome"]}, "regione": {"type": "object", "properties": {"codice": {"type": "string"}, "nome": {"type": "string"}}, "required": ["codice", "nome"]}, "provincia": {"type": "object", "properties": {"codice": {"type": "string"}, "nome": {"type": "string"}}, "required": ["codice", "nome"]}, "sigla": {"type": "string"}, "codiceCatastale": {"type": "string"}, "cap": {"type": "array", "items": {"type": "string"}}, "popolazione": {"type": "integer"}}, "required": ["nome", "codice", "zona", "regione", "provincia", "sigla", "codiceCatastale", "cap", "popolazione"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"nome" : "Montaldo Roero", "codice" : "004135", "zona" : {"codice" : "1", "nome" : "Nord-ovest"}, "regione" : {"codice" : "01", "nome" : "Piemonte"}, "provincia" : {"codice" : "004", "nome" : "Cuneo"}, "sigla" : "CN", "codiceCatastale" : "F408", "cap" : ["12040"], "popolazione" : 872}
json_instruct
{"type": "object", "properties": {"nome": {"type": "string"}, "codice": {"type": "string"}, "zona": {"type": "object", "properties": {"codice": {"type": "string"}, "nome": {"type": "string"}}, "required": ["codice", "nome"]}, "regione": {"type": "object", "properties": {"codice": {"type": "string"}, "nome": {"type": "string"}}, "required": ["codice", "nome"]}, "provincia": {"type": "object", "properties": {"codice": {"type": "string"}, "nome": {"type": "string"}}, "required": ["codice", "nome"]}, "sigla": {"type": "string"}, "codiceCatastale": {"type": "string"}, "cap": {"type": "array", "items": {"type": "string"}}, "popolazione": {"type": "integer"}}, "required": ["nome", "codice", "zona", "regione", "provincia", "sigla", "codiceCatastale", "cap", "popolazione"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"dataTime": {"type": "string"}, "daily": {"type": "object", "properties": {"dataTime": {"type": "string"}, "firstCnt": {"type": "string"}, "secondCnt": {"type": "string"}, "thirdCnt": {"type": "string"}, "fourCnt": {"type": "string"}}, "required": ["dataTime", "firstCnt", "secondCnt", "thirdCnt", "fourCnt"]}, "yesterday": {"type": "object", "properties": {"dataTime": {"type": "string"}, "firstCnt": {"type": "string"}, "secondCnt": {"type": "string"}, "thirdCnt": {"type": "string"}, "fourCnt": {"type": "string"}}, "required": ["dataTime", "firstCnt", "secondCnt", "thirdCnt", "fourCnt"]}, "today": {"type": "object", "properties": {"dataTime": {"type": "string"}, "firstCnt": {"type": "string"}, "secondCnt": {"type": "string"}, "thirdCnt": {"type": "string"}, "fourCnt": {"type": "string"}}, "required": ["dataTime", "firstCnt", "secondCnt", "thirdCnt", "fourCnt"]}}, "required": ["dataTime", "daily", "yesterday", "today"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"dataTime" : "2022-05-27", "daily" : {"dataTime" : "2022-05-27", "firstCnt" : "585", "secondCnt" : "1836", "thirdCnt" : "5070", "fourCnt" : "36543"}, "yesterday" : {"dataTime" : "2022-05-26", "firstCnt" : "45050938", "secondCnt" : "44572572", "thirdCnt" : "33277874", "fourCnt" : "3937922"}, "today" : {"dataTime" : "2022-05-27", "firstCnt" : "45051523", "secondCnt" : "44574408", "thirdCnt" : "33282944", "fourCnt" : "3974465"}}
json_instruct
{"type": "object", "properties": {"dataTime": {"type": "string"}, "daily": {"type": "object", "properties": {"dataTime": {"type": "string"}, "firstCnt": {"type": "string"}, "secondCnt": {"type": "string"}, "thirdCnt": {"type": "string"}, "fourCnt": {"type": "string"}}, "required": ["dataTime", "firstCnt", "secondCnt", "thirdCnt", "fourCnt"]}, "yesterday": {"type": "object", "properties": {"dataTime": {"type": "string"}, "firstCnt": {"type": "string"}, "secondCnt": {"type": "string"}, "thirdCnt": {"type": "string"}, "fourCnt": {"type": "string"}}, "required": ["dataTime", "firstCnt", "secondCnt", "thirdCnt", "fourCnt"]}, "today": {"type": "object", "properties": {"dataTime": {"type": "string"}, "firstCnt": {"type": "string"}, "secondCnt": {"type": "string"}, "thirdCnt": {"type": "string"}, "fourCnt": {"type": "string"}}, "required": ["dataTime", "firstCnt", "secondCnt", "thirdCnt", "fourCnt"]}}, "required": ["dataTime", "daily", "yesterday", "today"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
[[2005, 6], [2007, 7], [2008, 5], [2010, 7], [2011, 10]]
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": {"version": {"type": "number"}, "people": {"type": "array", "items": {"type": "object", "properties": {"person_id": {"type": "array", "items": {"type": "integer"}}, "pose_keypoints_2d": {"type": "array", "items": {"type": "number"}}, "face_keypoints_2d": {"type": "array", "items": {}}, "hand_left_keypoints_2d": {"type": "array", "items": {}}, "hand_right_keypoints_2d": {"type": "array", "items": {}}, "pose_keypoints_3d": {"type": "array", "items": {}}, "face_keypoints_3d": {"type": "array", "items": {}}, "hand_left_keypoints_3d": {"type": "array", "items": {}}, "hand_right_keypoints_3d": {"type": "array", "items": {}}}, "required": ["person_id", "pose_keypoints_2d", "face_keypoints_2d", "hand_left_keypoints_2d", "hand_right_keypoints_2d", "pose_keypoints_3d", "face_keypoints_3d", "hand_left_keypoints_3d", "hand_right_keypoints_3d"]}}}, "required": ["version", "people"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"version" : 1.3, "people" : [{"person_id" : [-1], "pose_keypoints_2d" : [73.3645, 49.3311, 0.843249, 74.1263, 57.8398, 0.890978, 69.0984, 57.8437, 0.86991, 67.5395, 67.173, 0.822872, 67.5412, 76.4436, 0.823853, 79.5575, 57.4816, 0.915994, 82.2735, 66.3843, 0.826043, 82.6695, 72.9779, 0.794625, 75.2891, 76.4467, 0.772868, 71.4161, 76.4571, 0.743399, 72.5718, 91.5731, 0.786303, 72.9818, 105.521, 0.780476, 78.7841, 76.0815, 0.787799, 79.5486, 91.5533, 0.818533, 79.186, 106.298, 0.789472, 72.9547, 48.1837, 0.883995, 74.5258, 48.1801, 0.861569, 70.6526, 48.9468, 0.608184, 76.4523, 48.5713, 0.79875, 79.5669, 109.399, 0.632858, 81.8823, 108.238, 0.634199, 78.399, 107.469, 0.623299, 73.7499, 109.015, 0.678724, 71.4222, 108.243, 0.642861, 73.3679, 107.07, 0.636947], "face_keypoints_2d" : [], "hand_left_keypoints_2d" : [], "hand_right_keypoints_2d" : [], "pose_keypoints_3d" : [], "face_keypoints_3d" : [], "hand_left_keypoints_3d" : [], "hand_right_keypoints_3d" : []}]}
json_instruct
{"type": "object", "properties": {"version": {"type": "number"}, "people": {"type": "array", "items": {"type": "object", "properties": {"person_id": {"type": "array", "items": {"type": "integer"}}, "pose_keypoints_2d": {"type": "array", "items": {"type": "number"}}, "face_keypoints_2d": {"type": "array", "items": {}}, "hand_left_keypoints_2d": {"type": "array", "items": {}}, "hand_right_keypoints_2d": {"type": "array", "items": {}}, "pose_keypoints_3d": {"type": "array", "items": {}}, "face_keypoints_3d": {"type": "array", "items": {}}, "hand_left_keypoints_3d": {"type": "array", "items": {}}, "hand_right_keypoints_3d": {"type": "array", "items": {}}}, "required": ["person_id", "pose_keypoints_2d", "face_keypoints_2d", "hand_left_keypoints_2d", "hand_right_keypoints_2d", "pose_keypoints_3d", "face_keypoints_3d", "hand_left_keypoints_3d", "hand_right_keypoints_3d"]}}}, "required": ["version", "people"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"express": {"type": "string"}, "struct": {"type": "string"}, "ioctl": {"type": "string"}, "socket.io": {"type": "string"}}, "required": ["express", "struct", "ioctl", "socket.io"]}}, "required": ["name", "version", "description", "main", "author", "license", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "virtual-gamepads", "version" : "0.0.1", "description" : "Virtual gamepads application", "main" : "main.js", "author" : "miroof", "license" : "BSD", "dependencies" : {"express" : "~3.3.5", "struct" : "~0.0.8", "ioctl" : "~0.0.7", "socket.io" : "~1.3.5"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"express": {"type": "string"}, "struct": {"type": "string"}, "ioctl": {"type": "string"}, "socket.io": {"type": "string"}}, "required": ["express", "struct", "ioctl", "socket.io"]}}, "required": ["name", "version", "description", "main", "author", "license", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"latest_version": {"type": "array", "items": {"type": "string"}}, "meta": {"type": "object", "properties": {"description": {"type": "string"}, "homepage": {"type": "string"}, "license": {"type": "string"}}, "required": ["description", "homepage", "license"]}, "versions": {"type": "object", "properties": {"1.0.0": {"type": "object", "properties": {"sha256": {"type": "string"}, "url": {"type": "string"}}, "required": ["sha256", "url"]}, "1.0.1": {"type": "object", "properties": {"sha256": {"type": "string"}, "url": {"type": "string"}}, "required": ["sha256", "url"]}}, "required": ["1.0.0", "1.0.1"]}}, "required": ["latest_version", "meta", "versions"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"latest_version" : ["1.0.1"], "meta" : {"description" : "Look up movie from YTS", "homepage" : "https://github.com/blha303/getmovie/", "license" : "MIT"}, "versions" : {"1.0.0" : {"sha256" : "7c56885f221f35c68e743e0c4bb226e1749388ebd0882c253dd94d47f668dd48", "url" : "https://files.pythonhosted.org/packages/ad/4d/a811dfae0f620322102aa1adeaf7cd8d6516ae4d2fd3b3de7add56f04153/getmovie-1.0.0.tar.gz"}, "1.0.1" : {"sha256" : "1c864a86fcedd0df9990d4224a58aa722e7a743b0ef20566557bb5419581aeca", "url" : "https://files.pythonhosted.org/packages/5e/de/682a781458840f128f042cb2a0c10c8cba85ede76069ef5d269b9ce50d06/getmovie-1.0.1.tar.gz"}}}
json_instruct
{"type": "object", "properties": {"latest_version": {"type": "array", "items": {"type": "string"}}, "meta": {"type": "object", "properties": {"description": {"type": "string"}, "homepage": {"type": "string"}, "license": {"type": "string"}}, "required": ["description", "homepage", "license"]}, "versions": {"type": "object", "properties": {"1.0.0": {"type": "object", "properties": {"sha256": {"type": "string"}, "url": {"type": "string"}}, "required": ["sha256", "url"]}, "1.0.1": {"type": "object", "properties": {"sha256": {"type": "string"}, "url": {"type": "string"}}, "required": ["sha256", "url"]}}, "required": ["1.0.0", "1.0.1"]}}, "required": ["latest_version", "meta", "versions"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"citations": {"type": "array", "items": {"type": "object", "properties": {"textCitation": {"type": "string"}}, "required": ["textCitation"]}}, "argumentText": {"type": "string"}, "conclusion": {"type": "string"}, "language": {"type": "string"}, "lookupTerms": {"type": "array", "items": {"type": "string"}}, "metaLanguage": {"type": "string"}, "premises": {"type": "array", "items": {"type": "string"}}}, "required": ["citations", "argumentText", "conclusion", "language", "lookupTerms", "metaLanguage", "premises"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"citations" : [{"textCitation" : "[See fzo0end on Metamath](http://us.metamath.org/mpegif/fzo0end.html)"}], "argumentText" : "ARGUMENT\n\n| Step | Hyp | Ref | Expression |\n|---|---|---|---|\n\n| 1 | | #P_lbfzo0 | |- ( 0 e. ( 0 ..^ B ) <-> B e. NN ) |\n| 2 | | #P_fzoend | |- ( 0 e. ( 0 ..^ B ) -> ( B - 1 ) e. ( 0 ..^ B ) ) |\n| 3 | 1, 2 | #P_sylbir | |- ( B e. NN -> ( B - 1 ) e. ( 0 ..^ B ) ) |", "conclusion" : "#P_fzo0end", "language" : "METAMATH_SET_MM", "lookupTerms" : ["#T_cc0", "#T_wcel", "#T_cc0", "#T_cfzo", "#T_cB.wceq", "#T_wb", "#T_cB.wceq", "#T_wcel", "#T_cn", "#T_cc0", "#T_wcel", "#T_cc0", "#T_cfzo", "#T_cB.wceq", "#T_wi", "#T_cB.wceq", "#T_cmin", "#T_c1", "#T_wcel", "#T_cc0", "#T_cfzo", "#T_cB.wceq", "#T_cB", "#T_wcel", "#T_cn", "#T_wi", "#T_cB", "#T_cmin", "#T_c1", "#T_wcel", "#T_cc0", "#T_cfzo", "#T_cB"], "metaLanguage" : "METAMATH", "premises" : ["#P_fzoend", "#P_lbfzo0", "#P_sylbir"]}
json_instruct
{"type": "object", "properties": {"citations": {"type": "array", "items": {"type": "object", "properties": {"textCitation": {"type": "string"}}, "required": ["textCitation"]}}, "argumentText": {"type": "string"}, "conclusion": {"type": "string"}, "language": {"type": "string"}, "lookupTerms": {"type": "array", "items": {"type": "string"}}, "metaLanguage": {"type": "string"}, "premises": {"type": "array", "items": {"type": "string"}}}, "required": ["citations", "argumentText", "conclusion", "language", "lookupTerms", "metaLanguage", "premises"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"department": {"type": "object", "properties": {"NE-8": {"type": "string"}, "NE-1": {"type": "string"}, "NE-2": {"type": "string"}, "NE-3": {"type": "string"}, "NE-4": {"type": "string"}, "NE-5": {"type": "string"}, "NE-6": {"type": "string"}, "NE-7": {"type": "string"}}, "required": ["NE-8", "NE-1", "NE-2", "NE-3", "NE-4", "NE-5", "NE-6", "NE-7"]}}, "required": ["department"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"department" : {"NE-8" : "Niamey", "NE-1" : "Agadez", "NE-2" : "Diffa", "NE-3" : "Dosso", "NE-4" : "Maradi", "NE-5" : "Tahoua", "NE-6" : "Tillab\u00e9ri", "NE-7" : "Zinder"}}
json_instruct
{"type": "object", "properties": {"department": {"type": "object", "properties": {"NE-8": {"type": "string"}, "NE-1": {"type": "string"}, "NE-2": {"type": "string"}, "NE-3": {"type": "string"}, "NE-4": {"type": "string"}, "NE-5": {"type": "string"}, "NE-6": {"type": "string"}, "NE-7": {"type": "string"}}, "required": ["NE-8", "NE-1", "NE-2", "NE-3", "NE-4", "NE-5", "NE-6", "NE-7"]}}, "required": ["department"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"id": {"type": "integer"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"src:alt_label": {"type": "string"}, "src:geom": {"type": "string"}, "wof:geomhash": {"type": "string"}, "wof:id": {"type": "integer"}, "wof:repo": {"type": "string"}}, "required": ["src:alt_label", "src:geom", "wof:geomhash", "wof:id", "wof:repo"]}, "bbox": {"type": "array", "items": {"type": "number"}}, "geometry": {"type": "object", "properties": {"coordinates": {"type": "array", "items": {"type": "number"}}, "type": {"type": "string"}}, "required": ["coordinates", "type"]}}, "required": ["id", "type", "properties", "bbox", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : 1125807589, "type" : "Feature", "properties" : {"src:alt_label" : "qs_pg", "src:geom" : "qs_pg", "wof:geomhash" : "f9049b3d56fc3689ef0f8ee502f5855e", "wof:id" : 1125807589, "wof:repo" : "whosonfirst-data-admin-fr"}, "bbox" : [0.47428, 49.53624, 0.47428, 49.53624], "geometry" : {"coordinates" : [0.47428, 49.53624], "type" : "Point"}}
json_instruct
{"type": "object", "properties": {"id": {"type": "integer"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"src:alt_label": {"type": "string"}, "src:geom": {"type": "string"}, "wof:geomhash": {"type": "string"}, "wof:id": {"type": "integer"}, "wof:repo": {"type": "string"}}, "required": ["src:alt_label", "src:geom", "wof:geomhash", "wof:id", "wof:repo"]}, "bbox": {"type": "array", "items": {"type": "number"}}, "geometry": {"type": "object", "properties": {"coordinates": {"type": "array", "items": {"type": "number"}}, "type": {"type": "string"}}, "required": ["coordinates", "type"]}}, "required": ["id", "type", "properties", "bbox", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"role-name": {"type": "string"}, "role": {"type": "array", "items": {"type": "string"}}}, "required": ["role-name", "role"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"role-name" : "abc-ui-offline-user", "role" : ["abc-sss-ui-role"]}
json_instruct
{"type": "object", "properties": {"role-name": {"type": "string"}, "role": {"type": "array", "items": {"type": "string"}}}, "required": ["role-name", "role"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"id": {"type": "integer"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"src:alt_label": {"type": "string"}, "src:geom": {"type": "string"}, "wof:geomhash": {"type": "string"}, "wof:id": {"type": "integer"}, "wof:repo": {"type": "string"}}, "required": ["src:alt_label", "src:geom", "wof:geomhash", "wof:id", "wof:repo"]}, "bbox": {"type": "array", "items": {"type": "number"}}, "geometry": {"type": "object", "properties": {"coordinates": {"type": "array", "items": {"type": "number"}}, "type": {"type": "string"}}, "required": ["coordinates", "type"]}}, "required": ["id", "type", "properties", "bbox", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : 1125804839, "type" : "Feature", "properties" : {"src:alt_label" : "qs_pg", "src:geom" : "qs_pg", "wof:geomhash" : "80ce77ffcc112e7eec870268b4482cb7", "wof:id" : 1125804839, "wof:repo" : "whosonfirst-data-admin-fr"}, "bbox" : [3.09408, 48.07578, 3.09408, 48.07578], "geometry" : {"coordinates" : [3.09408, 48.07578], "type" : "Point"}}
json_instruct
{"type": "object", "properties": {"id": {"type": "integer"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"src:alt_label": {"type": "string"}, "src:geom": {"type": "string"}, "wof:geomhash": {"type": "string"}, "wof:id": {"type": "integer"}, "wof:repo": {"type": "string"}}, "required": ["src:alt_label", "src:geom", "wof:geomhash", "wof:id", "wof:repo"]}, "bbox": {"type": "array", "items": {"type": "number"}}, "geometry": {"type": "object", "properties": {"coordinates": {"type": "array", "items": {"type": "number"}}, "type": {"type": "string"}}, "required": ["coordinates", "type"]}}, "required": ["id", "type", "properties", "bbox", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"packages": {"type": "array", "items": {"type": "string"}}, "version": {"type": "string"}}, "required": ["packages", "version"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"packages" : ["packages/*", "packages_extra/*"], "version" : "2.6.0-alpha.6"}
json_instruct
{"type": "object", "properties": {"packages": {"type": "array", "items": {"type": "string"}}, "version": {"type": "string"}}, "required": ["packages", "version"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"/js/app.js": {"type": "string"}, "/css/app.css": {"type": "string"}}, "required": ["/js/app.js", "/css/app.css"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"/js/app.js" : "/js/app.js?id=4ca081d1322eeaf10b87", "/css/app.css" : "/css/app.css?id=1cdc1c758b0c7d354f71"}
json_instruct
{"type": "object", "properties": {"/js/app.js": {"type": "string"}, "/css/app.css": {"type": "string"}}, "required": ["/js/app.js", "/css/app.css"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"itemDisplayName": {"type": "string"}, "description": {"type": "string"}, "summary": {"type": "string"}, "githubUsername": {"type": "string"}, "dateUpdated": {"type": "string"}}, "required": ["itemDisplayName", "description", "summary", "githubUsername", "dateUpdated"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"itemDisplayName" : "Create a Virtual Network (full)", "description" : "Creates a Virtual Network with variables (no parameters)", "summary" : "This template creates a Virtual Network (with DNS), Public IP address, Network Security Group, and a Network Interface in the Azure Stack POC environment.", "githubUsername" : "azurestack", "dateUpdated" : "2016-09-20"}
json_instruct
{"type": "object", "properties": {"itemDisplayName": {"type": "string"}, "description": {"type": "string"}, "summary": {"type": "string"}, "githubUsername": {"type": "string"}, "dateUpdated": {"type": "string"}}, "required": ["itemDisplayName", "description", "summary", "githubUsername", "dateUpdated"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"id": {"type": "integer"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"src:alt_label": {"type": "string"}, "src:geom": {"type": "string"}, "wof:geomhash": {"type": "string"}, "wof:id": {"type": "integer"}, "wof:repo": {"type": "string"}}, "required": ["src:alt_label", "src:geom", "wof:geomhash", "wof:id", "wof:repo"]}, "bbox": {"type": "array", "items": {"type": "number"}}, "geometry": {"type": "object", "properties": {"coordinates": {"type": "array", "items": {"type": "number"}}, "type": {"type": "string"}}, "required": ["coordinates", "type"]}}, "required": ["id", "type", "properties", "bbox", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : 85931839, "type" : "Feature", "properties" : {"src:alt_label" : "mz", "src:geom" : "mz", "wof:geomhash" : "81c187feb29313e27f65530d439e67a1", "wof:id" : 85931839, "wof:repo" : "whosonfirst-data-admin-in"}, "bbox" : [76.779299, 30.717745, 76.779299, 30.717745], "geometry" : {"coordinates" : [76.779299, 30.717745], "type" : "Point"}}
json_instruct
{"type": "object", "properties": {"id": {"type": "integer"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"src:alt_label": {"type": "string"}, "src:geom": {"type": "string"}, "wof:geomhash": {"type": "string"}, "wof:id": {"type": "integer"}, "wof:repo": {"type": "string"}}, "required": ["src:alt_label", "src:geom", "wof:geomhash", "wof:id", "wof:repo"]}, "bbox": {"type": "array", "items": {"type": "number"}}, "geometry": {"type": "object", "properties": {"coordinates": {"type": "array", "items": {"type": "number"}}, "type": {"type": "string"}}, "required": ["coordinates", "type"]}}, "required": ["id", "type", "properties", "bbox", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"description": {"type": "string"}, "number": {"type": "string"}, "class": {"type": "string"}}, "required": ["description", "number", "class"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"description" : "Copper arsenite", "number" : "1586", "class" : "6.1"}
json_instruct
{"type": "object", "properties": {"description": {"type": "string"}, "number": {"type": "string"}, "class": {"type": "string"}}, "required": ["description", "number", "class"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"diaries": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "max": {"type": "integer"}, "color": {"type": "string"}, "entries": {"type": "array", "items": {}}}, "required": ["name", "max", "color", "entries"]}}}, "required": ["diaries"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"diaries" : [{"name" : "M\u00f3j dziennik", "max" : 5, "color" : "#33ffc5", "entries" : []}]}
json_instruct
{"type": "object", "properties": {"diaries": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "max": {"type": "integer"}, "color": {"type": "string"}, "entries": {"type": "array", "items": {}}}, "required": ["name", "max", "color", "entries"]}}}, "required": ["diaries"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"type": {"type": "string"}, "features": {"type": "array", "items": {"type": "object", "properties": {"geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["type", "coordinates"]}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"cartodb_id": {"type": "integer"}}, "required": ["cartodb_id"]}}, "required": ["geometry", "type", "properties"]}}}, "required": ["type", "features"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"type" : "FeatureCollection", "features" : [{"geometry" : {"type" : "Polygon", "coordinates" : [[[-76.644737, 39.216673], [-76.642063, 39.221748], [-76.641409, 39.22558], [-76.638391, 39.223746], [-76.632524, 39.223604], [-76.630117, 39.22459], [-76.626921, 39.228524], [-76.624433, 39.229424], [-76.625448, 39.216845], [-76.625075, 39.208472], [-76.626146, 39.206989], [-76.630046, 39.204869], [-76.631546, 39.202732], [-76.636198, 39.203588], [-76.641679, 39.206347], [-76.642889, 39.213375], [-76.644737, 39.216673]]]}, "type" : "Feature", "properties" : {"cartodb_id" : 84149}}]}
json_instruct
{"type": "object", "properties": {"type": {"type": "string"}, "features": {"type": "array", "items": {"type": "object", "properties": {"geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["type", "coordinates"]}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"cartodb_id": {"type": "integer"}}, "required": ["cartodb_id"]}}, "required": ["geometry", "type", "properties"]}}}, "required": ["type", "features"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"files": {"type": "object", "properties": {"main.css": {"type": "string"}, "main.js": {"type": "string"}, "main.js.map": {"type": "string"}, "runtime-main.js": {"type": "string"}, "runtime-main.js.map": {"type": "string"}, "static/js/2.0e5df49c.chunk.js": {"type": "string"}, "static/js/2.0e5df49c.chunk.js.map": {"type": "string"}, "index.html": {"type": "string"}, "precache-manifest.f3841720559cffed1e1884fddd5c6971.js": {"type": "string"}, "service-worker.js": {"type": "string"}, "static/css/main.66297b1f.chunk.css.map": {"type": "string"}, "static/js/2.0e5df49c.chunk.js.LICENSE.txt": {"type": "string"}}, "required": ["main.css", "main.js", "main.js.map", "runtime-main.js", "runtime-main.js.map", "static/js/2.0e5df49c.chunk.js", "static/js/2.0e5df49c.chunk.js.map", "index.html", "precache-manifest.f3841720559cffed1e1884fddd5c6971.js", "service-worker.js", "static/css/main.66297b1f.chunk.css.map", "static/js/2.0e5df49c.chunk.js.LICENSE.txt"]}, "entrypoints": {"type": "array", "items": {"type": "string"}}}, "required": ["files", "entrypoints"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"files" : {"main.css" : "./static/css/main.66297b1f.chunk.css", "main.js" : "./static/js/main.d4ef97d2.chunk.js", "main.js.map" : "./static/js/main.d4ef97d2.chunk.js.map", "runtime-main.js" : "./static/js/runtime-main.696991da.js", "runtime-main.js.map" : "./static/js/runtime-main.696991da.js.map", "static/js/2.0e5df49c.chunk.js" : "./static/js/2.0e5df49c.chunk.js", "static/js/2.0e5df49c.chunk.js.map" : "./static/js/2.0e5df49c.chunk.js.map", "index.html" : "./index.html", "precache-manifest.f3841720559cffed1e1884fddd5c6971.js" : "./precache-manifest.f3841720559cffed1e1884fddd5c6971.js", "service-worker.js" : "./service-worker.js", "static/css/main.66297b1f.chunk.css.map" : "./static/css/main.66297b1f.chunk.css.map", "static/js/2.0e5df49c.chunk.js.LICENSE.txt" : "./static/js/2.0e5df49c.chunk.js.LICENSE.txt"}, "entrypoints" : ["static/js/runtime-main.696991da.js", "static/js/2.0e5df49c.chunk.js", "static/css/main.66297b1f.chunk.css", "static/js/main.d4ef97d2.chunk.js"]}
json_instruct
{"type": "object", "properties": {"files": {"type": "object", "properties": {"main.css": {"type": "string"}, "main.js": {"type": "string"}, "main.js.map": {"type": "string"}, "runtime-main.js": {"type": "string"}, "runtime-main.js.map": {"type": "string"}, "static/js/2.0e5df49c.chunk.js": {"type": "string"}, "static/js/2.0e5df49c.chunk.js.map": {"type": "string"}, "index.html": {"type": "string"}, "precache-manifest.f3841720559cffed1e1884fddd5c6971.js": {"type": "string"}, "service-worker.js": {"type": "string"}, "static/css/main.66297b1f.chunk.css.map": {"type": "string"}, "static/js/2.0e5df49c.chunk.js.LICENSE.txt": {"type": "string"}}, "required": ["main.css", "main.js", "main.js.map", "runtime-main.js", "runtime-main.js.map", "static/js/2.0e5df49c.chunk.js", "static/js/2.0e5df49c.chunk.js.map", "index.html", "precache-manifest.f3841720559cffed1e1884fddd5c6971.js", "service-worker.js", "static/css/main.66297b1f.chunk.css.map", "static/js/2.0e5df49c.chunk.js.LICENSE.txt"]}, "entrypoints": {"type": "array", "items": {"type": "string"}}}, "required": ["files", "entrypoints"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"private": {"type": "boolean"}, "devDependencies": {"type": "object", "properties": {"@size-limit/preset-app": {"type": "string"}, "size-limit": {"type": "string"}}, "required": ["@size-limit/preset-app", "size-limit"]}, "size-limit": {"type": "array", "items": {"type": "object", "properties": {"path": {"type": "string"}, "limit": {"type": "string"}}, "required": ["path", "limit"]}}}, "required": ["private", "devDependencies", "size-limit"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"private" : true, "devDependencies" : {"@size-limit/preset-app" : ">= 0.0.0", "size-limit" : ">= 0.0.0"}, "size-limit" : [{"path" : "index.js", "limit" : "1 KB"}, {"path" : "lib.js", "limit" : "1 KB"}, {"path" : "lib2.js", "limit" : "1 KB"}]}
json_instruct
{"type": "object", "properties": {"private": {"type": "boolean"}, "devDependencies": {"type": "object", "properties": {"@size-limit/preset-app": {"type": "string"}, "size-limit": {"type": "string"}}, "required": ["@size-limit/preset-app", "size-limit"]}, "size-limit": {"type": "array", "items": {"type": "object", "properties": {"path": {"type": "string"}, "limit": {"type": "string"}}, "required": ["path", "limit"]}}}, "required": ["private", "devDependencies", "size-limit"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"id": {"type": "string"}, "regency_id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "regency_id", "name"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : "3304080", "regency_id" : "3304", "name" : "MADUKARA"}
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "regency_id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "regency_id", "name"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"extends": {"type": "string"}, "compilerOptions": {"type": "object", "properties": {"module": {"type": "string"}, "target": {"type": "string"}, "declaration": {"type": "boolean"}, "inlineSources": {"type": "boolean"}}, "required": ["module", "target", "declaration", "inlineSources"]}, "angularCompilerOptions": {"type": "object", "properties": {"annotateForClosureCompiler": {"type": "boolean"}, "disableTypeScriptVersionCheck": {"type": "boolean"}, "enableResourceInlining": {"type": "boolean"}, "fullTemplateTypeCheck": {"type": "boolean"}, "skipTemplateCodegen": {"type": "boolean"}, "strictInjectionParameters": {"type": "boolean"}, "strictMetadataEmit": {"type": "boolean"}}, "required": ["annotateForClosureCompiler", "disableTypeScriptVersionCheck", "enableResourceInlining", "fullTemplateTypeCheck", "skipTemplateCodegen", "strictInjectionParameters", "strictMetadataEmit"]}}, "required": ["extends", "compilerOptions", "angularCompilerOptions"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"extends" : "../tsconfig.json", "compilerOptions" : {"module" : "esnext", "target" : "esnext", "declaration" : true, "inlineSources" : true}, "angularCompilerOptions" : {"annotateForClosureCompiler" : true, "disableTypeScriptVersionCheck" : true, "enableResourceInlining" : true, "fullTemplateTypeCheck" : true, "skipTemplateCodegen" : true, "strictInjectionParameters" : true, "strictMetadataEmit" : true}}
json_instruct
{"type": "object", "properties": {"extends": {"type": "string"}, "compilerOptions": {"type": "object", "properties": {"module": {"type": "string"}, "target": {"type": "string"}, "declaration": {"type": "boolean"}, "inlineSources": {"type": "boolean"}}, "required": ["module", "target", "declaration", "inlineSources"]}, "angularCompilerOptions": {"type": "object", "properties": {"annotateForClosureCompiler": {"type": "boolean"}, "disableTypeScriptVersionCheck": {"type": "boolean"}, "enableResourceInlining": {"type": "boolean"}, "fullTemplateTypeCheck": {"type": "boolean"}, "skipTemplateCodegen": {"type": "boolean"}, "strictInjectionParameters": {"type": "boolean"}, "strictMetadataEmit": {"type": "boolean"}}, "required": ["annotateForClosureCompiler", "disableTypeScriptVersionCheck", "enableResourceInlining", "fullTemplateTypeCheck", "skipTemplateCodegen", "strictInjectionParameters", "strictMetadataEmit"]}}, "required": ["extends", "compilerOptions", "angularCompilerOptions"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"eth_btc": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "price": {"type": "number"}, "amount": {"type": "number"}, "tid": {"type": "integer"}, "timestamp": {"type": "integer"}}, "required": ["type", "price", "amount", "tid", "timestamp"]}}, "ltc_btc": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "price": {"type": "number"}, "amount": {"type": "number"}, "tid": {"type": "integer"}, "timestamp": {"type": "integer"}}, "required": ["type", "price", "amount", "tid", "timestamp"]}}}, "required": ["eth_btc", "ltc_btc"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"eth_btc" : [{"type" : "bid", "price" : 0.05308935, "amount" : 0.130412, "tid" : 35093453, "timestamp" : 1509285104}, {"type" : "bid", "price" : 0.05308936, "amount" : 0.13055678, "tid" : 35093435, "timestamp" : 1509285101}, {"type" : "bid", "price" : 0.0530532, "amount" : 0.5402235, "tid" : 35093405, "timestamp" : 1509285093}], "ltc_btc" : [{"type" : "bid", "price" : 0.00972064, "amount" : 0.17742352, "tid" : 35093212, "timestamp" : 1509285037}, {"type" : "bid", "price" : 0.00972064, "amount" : 0.17742352, "tid" : 35093203, "timestamp" : 1509285035}, {"type" : "ask", "price" : 0.0096956, "amount" : 2.13100861, "tid" : 35093113, "timestamp" : 1509285003}]}
json_instruct
{"type": "object", "properties": {"eth_btc": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "price": {"type": "number"}, "amount": {"type": "number"}, "tid": {"type": "integer"}, "timestamp": {"type": "integer"}}, "required": ["type", "price", "amount", "tid", "timestamp"]}}, "ltc_btc": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "price": {"type": "number"}, "amount": {"type": "number"}, "tid": {"type": "integer"}, "timestamp": {"type": "integer"}}, "required": ["type", "price", "amount", "tid", "timestamp"]}}}, "required": ["eth_btc", "ltc_btc"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "types": {"type": "string"}, "scripts": {"type": "object", "properties": {"build": {"type": "string"}, "test": {"type": "string"}, "publish": {"type": "string"}, "build-and-publish": {"type": "string"}}, "required": ["build", "test", "publish", "build-and-publish"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"azure-pipelines-task-lib": {"type": "string"}, "fs-extra": {"type": "string"}, "sanitize-filename": {"type": "string"}, "tail": {"type": "string"}}, "required": ["azure-pipelines-task-lib", "fs-extra", "sanitize-filename", "tail"]}, "devDependencies": {"type": "object", "properties": {"@types/chai": {"type": "string"}, "@types/mocha": {"type": "string"}, "@types/node": {"type": "string"}, "@types/fs-extra": {"type": "string"}, "@types/tail": {"type": "string"}, "@types/q": {"type": "string"}, "chai": {"type": "string"}, "mocha": {"type": "string"}, "ts-node": {"type": "string"}, "typescript": {"type": "string"}}, "required": ["@types/chai", "@types/mocha", "@types/node", "@types/fs-extra", "@types/tail", "@types/q", "chai", "mocha", "ts-node", "typescript"]}}, "required": ["name", "version", "description", "main", "types", "scripts", "keywords", "repository", "bugs", "homepage", "author", "license", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "@dinomite-studios/unity-azure-pipelines-tasks-lib", "version" : "1.0.0", "description" : "A library containing common implementations for pipeline tasks available in the Unity Tools for Azure DevOps extension.", "main" : "dist/index.js", "types" : "dist/index.d.ts", "scripts" : {"build" : "tsc", "test" : "mocha -r ts-node/register test/**/*.spec.ts", "publish" : "npm publish --access public", "build-and-publish" : "npm run build && npm run publish"}, "keywords" : ["unity", "devops", "utilities"], "repository" : {"type" : "git", "url" : "https://github.com/Dinomite-Studios/unity-azure-pipelines-tasks-lib"}, "bugs" : {"url" : "https://github.com/Dinomite-Studios/unity-azure-pipelines-tasks-lib/issues"}, "homepage" : "https://www.unitydevops.com", "author" : "Dinomite Studios", "license" : "MIT", "dependencies" : {"azure-pipelines-task-lib" : "^3.1.2", "fs-extra" : "^8.1.0", "sanitize-filename" : "^1.6.3", "tail" : "^2.2.2"}, "devDependencies" : {"@types/chai" : "^4.2.14", "@types/mocha" : "^8.2.0", "@types/node" : "^14.14.19", "@types/fs-extra" : "^8.0.0", "@types/tail" : "^2.0.0", "@types/q" : "^1.5.4", "chai" : "^4.2.0", "mocha" : "^8.2.1", "ts-node" : "^9.1.1", "typescript" : "^4.2.4"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "types": {"type": "string"}, "scripts": {"type": "object", "properties": {"build": {"type": "string"}, "test": {"type": "string"}, "publish": {"type": "string"}, "build-and-publish": {"type": "string"}}, "required": ["build", "test", "publish", "build-and-publish"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"azure-pipelines-task-lib": {"type": "string"}, "fs-extra": {"type": "string"}, "sanitize-filename": {"type": "string"}, "tail": {"type": "string"}}, "required": ["azure-pipelines-task-lib", "fs-extra", "sanitize-filename", "tail"]}, "devDependencies": {"type": "object", "properties": {"@types/chai": {"type": "string"}, "@types/mocha": {"type": "string"}, "@types/node": {"type": "string"}, "@types/fs-extra": {"type": "string"}, "@types/tail": {"type": "string"}, "@types/q": {"type": "string"}, "chai": {"type": "string"}, "mocha": {"type": "string"}, "ts-node": {"type": "string"}, "typescript": {"type": "string"}}, "required": ["@types/chai", "@types/mocha", "@types/node", "@types/fs-extra", "@types/tail", "@types/q", "chai", "mocha", "ts-node", "typescript"]}}, "required": ["name", "version", "description", "main", "types", "scripts", "keywords", "repository", "bugs", "homepage", "author", "license", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"source": {"type": "string"}, "word": {"type": "string"}, "infinitivo": {"type": "string"}, "translation": {"type": "string"}, "gerundio": {"type": "array", "items": {"type": "string"}}, "participio": {"type": "array", "items": {"type": "string"}}, "tenses": {"type": "object", "properties": {"3": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}, "4": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}, "5": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}, "6": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}, "7": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}, "8": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}, "9": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}, "10": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}, "11": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}, "12": {"type": "object", "properties": {"1": {"type": "array", "items": {"type": "string"}}, "2": {"type": "array", "items": {"type": "string"}}, "3": {"type": "array", "items": {"type": "string"}}, "4": {"type": "array", "items": {"type": "string"}}, "5": {"type": "array", "items": {"type": "string"}}}, "required": ["1", "2", "3", "4", "5"]}}, "required": ["3", "4", "5", "6", "7", "8", "9", "10", "11", "12"]}}, "required": ["source", "word", "infinitivo", "translation", "gerundio", "participio", "tenses"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"source" : "http://www.spanishdict.com/conjugate/evadirse", "word" : "evadirse", "infinitivo" : "evadir", "translation" : "to avoid", "gerundio" : ["evadiendo"], "participio" : ["evadido"], "tenses" : {"3" : [["me evado"], ["te evades"], ["se evade"], ["nos evadimos"], ["os evad\u00eds"], ["se evaden"]], "4" : [["me evad\u00ed"], ["te evadiste"], ["se evadi\u00f3"], ["nos evadimos"], ["os evadisteis"], ["se evadieron"]], "5" : [["me evad\u00eda"], ["te evad\u00edas"], ["se evad\u00eda"], ["nos evad\u00edamos"], ["os evad\u00edais"], ["se evad\u00edan"]], "6" : [["me evadir\u00eda"], ["te evadir\u00edas"], ["se evadir\u00eda"], ["nos evadir\u00edamos"], ["os evadir\u00edais"], ["se evadir\u00edan"]], "7" : [["me evadir\u00e9"], ["te evadir\u00e1s"], ["se evadir\u00e1"], ["nos evadiremos"], ["os evadir\u00e9is"], ["se evadir\u00e1n"]], "8" : [["me evada"], ["te evadas"], ["se evada"], ["nos evadamos"], ["os evad\u00e1is"], ["se evadan"]], "9" : [["me evadiera"], ["te evadieras"], ["se evadiera"], ["nos evadi\u00e9ramos"], ["os evadierais"], ["se evadieran"]], "10" : [["me evadiese"], ["te evadieses"], ["se evadiese"], ["nos evadi\u00e9semos"], ["os evadieseis"], ["se evadiesen"]], "11" : [["me evadiere"], ["te evadieres"], ["se evadiere"], ["nos evadi\u00e9remos"], ["os evadiereis"], ["se evadieren"]], "12" : {"1" : ["evade"], "2" : ["evada"], "3" : ["evadamos"], "4" : ["evadid"], "5" : ["evadan"]}}}
json_instruct
{"type": "object", "properties": {"source": {"type": "string"}, "word": {"type": "string"}, "infinitivo": {"type": "string"}, "translation": {"type": "string"}, "gerundio": {"type": "array", "items": {"type": "string"}}, "participio": {"type": "array", "items": {"type": "string"}}, "tenses": {"type": "object", "properties": {"3": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}, "4": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}, "5": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}, "6": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}, "7": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}, "8": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}, "9": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}, "10": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}, "11": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}, "12": {"type": "object", "properties": {"1": {"type": "array", "items": {"type": "string"}}, "2": {"type": "array", "items": {"type": "string"}}, "3": {"type": "array", "items": {"type": "string"}}, "4": {"type": "array", "items": {"type": "string"}}, "5": {"type": "array", "items": {"type": "string"}}}, "required": ["1", "2", "3", "4", "5"]}}, "required": ["3", "4", "5", "6", "7", "8", "9", "10", "11", "12"]}}, "required": ["source", "word", "infinitivo", "translation", "gerundio", "participio", "tenses"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "type": {"type": "string"}, "license": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}}, "require": {"type": "object", "properties": {"doctrine/dbal": {"type": "string"}}, "required": ["doctrine/dbal"]}, "autoload": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"MortenDHansen\\EloquentDockblockGenerator\\": {"type": "string"}}, "required": ["MortenDHansen\\EloquentDockblockGenerator\\"]}}, "required": ["psr-4"]}, "autoload-dev": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"MortenDHansen\\EloquentDockblockGenerator\\tests\\": {"type": "string"}}, "required": ["MortenDHansen\\EloquentDockblockGenerator\\tests\\"]}}, "required": ["psr-4"]}, "require-dev": {"type": "object", "properties": {"phpunit/phpunit": {"type": "string"}}, "required": ["phpunit/phpunit"]}}, "required": ["name", "description", "type", "license", "authors", "require", "autoload", "autoload-dev", "require-dev"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "mortendhansen/eloquent-docblock-generator", "description" : "Generates docblock for the properties of eloquent models based on the table columns", "type" : "library", "license" : "MIT", "authors" : [{"name" : "Morten D. Hansen", "email" : "morten@visia.dk"}], "require" : {"doctrine/dbal" : "^2.9"}, "autoload" : {"psr-4" : {"MortenDHansen\\EloquentDockblockGenerator\\" : "src/"}}, "autoload-dev" : {"psr-4" : {"MortenDHansen\\EloquentDockblockGenerator\\tests\\" : "tests/"}}, "require-dev" : {"phpunit/phpunit" : "^8.1"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "type": {"type": "string"}, "license": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}}, "require": {"type": "object", "properties": {"doctrine/dbal": {"type": "string"}}, "required": ["doctrine/dbal"]}, "autoload": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"MortenDHansen\\EloquentDockblockGenerator\\": {"type": "string"}}, "required": ["MortenDHansen\\EloquentDockblockGenerator\\"]}}, "required": ["psr-4"]}, "autoload-dev": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"MortenDHansen\\EloquentDockblockGenerator\\tests\\": {"type": "string"}}, "required": ["MortenDHansen\\EloquentDockblockGenerator\\tests\\"]}}, "required": ["psr-4"]}, "require-dev": {"type": "object", "properties": {"phpunit/phpunit": {"type": "string"}}, "required": ["phpunit/phpunit"]}}, "required": ["name", "description", "type", "license", "authors", "require", "autoload", "autoload-dev", "require-dev"], "$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"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}}, "required": ["start"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"react": {"type": "string"}, "react-dom": {"type": "string"}, "react-redux": {"type": "string"}, "redux": {"type": "string"}, "redux-logger": {"type": "string"}, "redux-thunk": {"type": "string"}}, "required": ["react", "react-dom", "react-redux", "redux", "redux-logger", "redux-thunk"]}, "devDependencies": {"type": "object", "properties": {"babel-core": {"type": "string"}, "babel-loader": {"type": "string"}, "babel-plugin-react-transform": {"type": "string"}, "eslint": {"type": "string"}, "eslint-config-airbnb": {"type": "string"}, "eslint-plugin-react": {"type": "string"}, "express": {"type": "string"}, "react-transform-hmr": {"type": "string"}, "webpack": {"type": "string"}, "webpack-dev-middleware": {"type": "string"}, "webpack-hot-middleware": {"type": "string"}}, "required": ["babel-core", "babel-loader", "babel-plugin-react-transform", "eslint", "eslint-config-airbnb", "eslint-plugin-react", "express", "react-transform-hmr", "webpack", "webpack-dev-middleware", "webpack-hot-middleware"]}}, "required": ["name", "version", "description", "main", "scripts", "repository", "author", "license", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "redux-debounce-listener-example", "version" : "0.0.0", "description" : "An example for redux-debounce-listener.", "main" : "index.js", "scripts" : {"start" : "node server.js"}, "repository" : {"type" : "git", "url" : "git+https://github.com/nakamura-to/redux-debounce-listener.git"}, "author" : "nakamura-to", "license" : "MIT", "dependencies" : {"react" : "^0.14.0", "react-dom" : "^0.14.0", "react-redux" : "^4.0.0", "redux" : "^3.0.0", "redux-logger" : "^2.2.1", "redux-thunk" : "^0.1.0"}, "devDependencies" : {"babel-core" : "^5.6.18", "babel-loader" : "^5.1.4", "babel-plugin-react-transform" : "^1.1.0", "eslint" : "^1.10.3", "eslint-config-airbnb" : "^2.0.0", "eslint-plugin-react" : "^3.11.3", "express" : "^4.13.3", "react-transform-hmr" : "^1.0.1", "webpack" : "^1.12.9", "webpack-dev-middleware" : "^1.4.0", "webpack-hot-middleware" : "^2.6.0"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}}, "required": ["start"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"react": {"type": "string"}, "react-dom": {"type": "string"}, "react-redux": {"type": "string"}, "redux": {"type": "string"}, "redux-logger": {"type": "string"}, "redux-thunk": {"type": "string"}}, "required": ["react", "react-dom", "react-redux", "redux", "redux-logger", "redux-thunk"]}, "devDependencies": {"type": "object", "properties": {"babel-core": {"type": "string"}, "babel-loader": {"type": "string"}, "babel-plugin-react-transform": {"type": "string"}, "eslint": {"type": "string"}, "eslint-config-airbnb": {"type": "string"}, "eslint-plugin-react": {"type": "string"}, "express": {"type": "string"}, "react-transform-hmr": {"type": "string"}, "webpack": {"type": "string"}, "webpack-dev-middleware": {"type": "string"}, "webpack-hot-middleware": {"type": "string"}}, "required": ["babel-core", "babel-loader", "babel-plugin-react-transform", "eslint", "eslint-config-airbnb", "eslint-plugin-react", "express", "react-transform-hmr", "webpack", "webpack-dev-middleware", "webpack-hot-middleware"]}}, "required": ["name", "version", "description", "main", "scripts", "repository", "author", "license", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"id": {"type": "string"}, "district_id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "district_id", "name"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : "3304050016", "district_id" : "3304050", "name" : "JOHO"}
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "district_id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "district_id", "name"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"name": {"type": "string"}, "private": {"type": "boolean"}, "dependencies": {"type": "object", "properties": {}, "required": []}}, "required": ["name", "private", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "plantechta", "private" : true, "dependencies" : {}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "private": {"type": "boolean"}, "dependencies": {"type": "object", "properties": {}, "required": []}}, "required": ["name", "private", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"item": {"type": "string"}, "primary_color": {"type": "string"}, "secondary_color": {"type": "string"}, "mana": {"type": "object", "properties": {"base": {"type": "integer"}}, "required": ["base"]}, "burnout": {"type": "object", "properties": {"base": {"type": "integer"}}, "required": ["base"]}, "cooldown": {"type": "object", "properties": {"base": {"type": "integer"}}, "required": ["base"]}, "chargeup": {"type": "object", "properties": {"base": {"type": "integer"}}, "required": ["base"]}, "duration": {"type": "object", "properties": {"base": {"type": "integer"}, "min": {"type": "integer"}, "max": {"type": "integer"}}, "required": ["base", "min", "max"]}}, "required": ["item", "primary_color", "secondary_color", "mana", "burnout", "cooldown", "chargeup", "duration"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"item" : "minecraft:ender_pearl", "primary_color" : "800000", "secondary_color" : "FF0000", "mana" : {"base" : 200}, "burnout" : {"base" : 100}, "cooldown" : {"base" : 40}, "chargeup" : {"base" : 10}, "duration" : {"base" : 5, "min" : 5, "max" : 30}}
json_instruct
{"type": "object", "properties": {"item": {"type": "string"}, "primary_color": {"type": "string"}, "secondary_color": {"type": "string"}, "mana": {"type": "object", "properties": {"base": {"type": "integer"}}, "required": ["base"]}, "burnout": {"type": "object", "properties": {"base": {"type": "integer"}}, "required": ["base"]}, "cooldown": {"type": "object", "properties": {"base": {"type": "integer"}}, "required": ["base"]}, "chargeup": {"type": "object", "properties": {"base": {"type": "integer"}}, "required": ["base"]}, "duration": {"type": "object", "properties": {"base": {"type": "integer"}, "min": {"type": "integer"}, "max": {"type": "integer"}}, "required": ["base", "min", "max"]}}, "required": ["item", "primary_color", "secondary_color", "mana", "burnout", "cooldown", "chargeup", "duration"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"id": {"type": "string"}, "expression": {"type": "array", "items": {"type": "object", "properties": {"composer": {"type": "string"}, "id": {"type": "string"}}, "required": ["composer", "id"]}}}, "required": ["id", "expression"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : "http://data.doremus.org/performance/dadccc6d-3ad0-3aaf-a660-5b81ad3997aa", "expression" : [{"composer" : "http://data.doremus.org/artist/15871fdd-5523-3f09-beb2-82cdd26c2766", "id" : "http://data.doremus.org/expression/15e78bca-b9cc-3fac-b89e-dbbd0f0a2944"}, {"composer" : "http://data.doremus.org/artist/15871fdd-5523-3f09-beb2-82cdd26c2766", "id" : "http://data.doremus.org/expression/b21fe3fc-9e42-39df-bcb7-808fd241c62e"}, {"composer" : "http://data.doremus.org/artist/15871fdd-5523-3f09-beb2-82cdd26c2766", "id" : "http://data.doremus.org/expression/7a993de0-4dc1-364e-98ff-922aa7d3175a"}, {"composer" : "http://data.doremus.org/artist/15871fdd-5523-3f09-beb2-82cdd26c2766", "id" : "http://data.doremus.org/expression/13d43770-a2a2-3e6b-9932-ee6d19f9edf1"}, {"composer" : "http://data.doremus.org/artist/15871fdd-5523-3f09-beb2-82cdd26c2766", "id" : "http://data.doremus.org/expression/6725dd41-4d8b-3a87-a5f0-54c750b78300"}, {"composer" : "http://data.doremus.org/artist/15871fdd-5523-3f09-beb2-82cdd26c2766", "id" : "http://data.doremus.org/expression/55e57cf1-0d37-3324-9411-bec5cf1480fa"}, {"composer" : "http://data.doremus.org/artist/15871fdd-5523-3f09-beb2-82cdd26c2766", "id" : "http://data.doremus.org/expression/3453b7c7-ce23-3a4f-b3f9-a3c32e0f1876"}, {"composer" : "http://data.doremus.org/artist/15871fdd-5523-3f09-beb2-82cdd26c2766", "id" : "http://data.doremus.org/expression/676dfaec-55c3-3dc7-a4e1-833d21bd1b78"}]}
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "expression": {"type": "array", "items": {"type": "object", "properties": {"composer": {"type": "string"}, "id": {"type": "string"}}, "required": ["composer", "id"]}}}, "required": ["id", "expression"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"id": {"type": "integer"}, "source": {"type": "string"}, "verse_id": {"type": "integer"}, "verse_count": {"type": "integer"}, "reference": {"type": "string"}, "title": {"type": "string"}, "html": {"type": "string"}, "audit": {"type": "null"}}, "required": ["id", "source", "verse_id", "verse_count", "reference", "title", "html", "audit"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : 12542, "source" : "wen", "verse_id" : 17891, "verse_count" : 1, "reference" : "11:6", "title" : "", "html" : "The wolf\u2014The creatures shall be restored to that state of innocency in which they were before the fall of man. Men of fierce, and cruel dispositions, shall be so transformed by the grace of Christ, that they shall become gentle, and tractable. A child\u2014They will submit their rebellious wills to the conduct of the meanest persons that speak to them in Christ's name.", "audit" : null}
json_instruct
{"type": "object", "properties": {"id": {"type": "integer"}, "source": {"type": "string"}, "verse_id": {"type": "integer"}, "verse_count": {"type": "integer"}, "reference": {"type": "string"}, "title": {"type": "string"}, "html": {"type": "string"}, "audit": {"type": "null"}}, "required": ["id", "source", "verse_id", "verse_count", "reference", "title", "html", "audit"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"aids": {"type": "object", "properties": {"include_in_all": {"type": "boolean"}, "_source": {"type": "object", "properties": {"enabled": {"type": "boolean"}}, "required": ["enabled"]}, "properties": {"type": "object", "properties": {"current_year": {"type": "object", "properties": {"type": {"type": "string"}, "index": {"type": "string"}}, "required": ["type", "index"]}, "race_ethnicity": {"type": "object", "properties": {"type": {"type": "string"}, "index": {"type": "string"}}, "required": ["type", "index"]}, "disease": {"type": "object", "properties": {"type": {"type": "string"}, "index": {"type": "string"}}, "required": ["type", "index"]}, "state": {"type": "object", "properties": {"type": {"type": "string"}, "index": {"type": "string"}}, "required": ["type", "index"]}, "sex": {"type": "object", "properties": {"type": {"type": "string"}, "index": {"type": "string"}}, "required": ["type", "index"]}, "age_group": {"type": "object", "properties": {"type": {"type": "string"}, "index": {"type": "string"}}, "required": ["type", "index"]}, "transmission": {"type": "object", "properties": {"type": {"type": "string"}, "index": {"type": "string"}}, "required": ["type", "index"]}, "cases": {"type": "object", "properties": {"type": {"type": "string"}, "index": {"type": "string"}}, "required": ["type", "index"]}, "pop": {"type": "object", "properties": {"type": {"type": "string"}, "index": {"type": "string"}}, "required": ["type", "index"]}}, "required": ["current_year", "race_ethnicity", "disease", "state", "sex", "age_group", "transmission", "cases", "pop"]}}, "required": ["include_in_all", "_source", "properties"]}}, "required": ["aids"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"aids" : {"include_in_all" : false, "_source" : {"enabled" : false}, "properties" : {"current_year" : {"type" : "string", "index" : "not_analyzed"}, "race_ethnicity" : {"type" : "string", "index" : "not_analyzed"}, "disease" : {"type" : "string", "index" : "not_analyzed"}, "state" : {"type" : "string", "index" : "not_analyzed"}, "sex" : {"type" : "string", "index" : "not_analyzed"}, "age_group" : {"type" : "string", "index" : "not_analyzed"}, "transmission" : {"type" : "string", "index" : "not_analyzed"}, "cases" : {"type" : "integer", "index" : "not_analyzed"}, "pop" : {"type" : "integer", "index" : "not_analyzed"}}}}
json_instruct
{"type": "object", "properties": {"aids": {"type": "object", "properties": {"include_in_all": {"type": "boolean"}, "_source": {"type": "object", "properties": {"enabled": {"type": "boolean"}}, "required": ["enabled"]}, "properties": {"type": "object", "properties": {"current_year": {"type": "object", "properties": {"type": {"type": "string"}, "index": {"type": "string"}}, "required": ["type", "index"]}, "race_ethnicity": {"type": "object", "properties": {"type": {"type": "string"}, "index": {"type": "string"}}, "required": ["type", "index"]}, "disease": {"type": "object", "properties": {"type": {"type": "string"}, "index": {"type": "string"}}, "required": ["type", "index"]}, "state": {"type": "object", "properties": {"type": {"type": "string"}, "index": {"type": "string"}}, "required": ["type", "index"]}, "sex": {"type": "object", "properties": {"type": {"type": "string"}, "index": {"type": "string"}}, "required": ["type", "index"]}, "age_group": {"type": "object", "properties": {"type": {"type": "string"}, "index": {"type": "string"}}, "required": ["type", "index"]}, "transmission": {"type": "object", "properties": {"type": {"type": "string"}, "index": {"type": "string"}}, "required": ["type", "index"]}, "cases": {"type": "object", "properties": {"type": {"type": "string"}, "index": {"type": "string"}}, "required": ["type", "index"]}, "pop": {"type": "object", "properties": {"type": {"type": "string"}, "index": {"type": "string"}}, "required": ["type", "index"]}}, "required": ["current_year", "race_ethnicity", "disease", "state", "sex", "age_group", "transmission", "cases", "pop"]}}, "required": ["include_in_all", "_source", "properties"]}}, "required": ["aids"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"citations": {"type": "array", "items": {"type": "object", "properties": {"textCitation": {"type": "string"}}, "required": ["textCitation"]}}, "argumentText": {"type": "string"}, "conclusion": {"type": "string"}, "language": {"type": "string"}, "lookupTerms": {"type": "array", "items": {"type": "string"}}, "metaLanguage": {"type": "string"}, "premises": {"type": "array", "items": {"type": "string"}}}, "required": ["citations", "argumentText", "conclusion", "language", "lookupTerms", "metaLanguage", "premises"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"citations" : [{"textCitation" : "[See cardeq0 on Metamath](http://us.metamath.org/mpegif/cardeq0.html)"}], "argumentText" : "ARGUMENT\n\n| Step | Hyp | Ref | Expression |\n|---|---|---|---|\n\n| 1 | | #P_0ex | |- (/) e. _V |\n| 2 | | #P_carden | |- ( ( A e. V /\\ (/) e. _V ) -> ( ( card ` A ) = ( card ` (/) ) <-> A ~~ (/) ) ) |\n| 3 | 1, 2 | #P_mpan2 | |- ( A e. V -> ( ( card ` A ) = ( card ` (/) ) <-> A ~~ (/) ) ) |\n| 4 | | #P_card0 | |- ( card ` (/) ) = (/) |\n| 5 | 4 | #P_eqeq2i | |- ( ( card ` A ) = ( card ` (/) ) <-> ( card ` A ) = (/) ) |\n| 6 | | #P_en0 | |- ( A ~~ (/) <-> A = (/) ) |\n| 7 | 3, 5, 6 | #P_3bitr3g | |- ( A e. V -> ( ( card ` A ) = (/) <-> A = (/) ) ) |", "conclusion" : "#P_cardeq0", "language" : "METAMATH_SET_MM", "lookupTerms" : ["#T_c0", "#T_wcel", "#T_cvv", "#T_cA.wceq", "#T_wcel", "#T_cV", "#T_wa", "#T_c0", "#T_wcel", "#T_cvv", "#T_wi", "#T_ccrd", "#T_cfv", "#T_cA.wceq", "#T_wceq", "#T_ccrd", "#T_cfv", "#T_c0", "#T_wb", "#T_cA.wceq", "#T_cen", "#T_c0", "#T_cA.wceq", "#T_wcel", "#T_cV", "#T_wi", "#T_ccrd", "#T_cfv", "#T_cA.wceq", "#T_wceq", "#T_ccrd", "#T_cfv", "#T_c0", "#T_wb", "#T_cA.wceq", "#T_cen", "#T_c0", "#T_ccrd", "#T_cfv", "#T_c0", "#T_wceq", "#T_c0", "#T_ccrd", "#T_cfv", "#T_cA.wceq", "#T_wceq", "#T_ccrd", "#T_cfv", "#T_c0", "#T_wb", "#T_ccrd", "#T_cfv", "#T_cA.wceq", "#T_wceq", "#T_c0", "#T_cA.wceq", "#T_cen", "#T_c0", "#T_wb", "#T_cA.wceq", "#T_wceq", "#T_c0", "#T_cA", "#T_wcel", "#T_cV", "#T_wi", "#T_ccrd", "#T_cfv", "#T_cA", "#T_wceq", "#T_c0", "#T_wb", "#T_cA", "#T_wceq", "#T_c0"], "metaLanguage" : "METAMATH", "premises" : ["#P_card0", "#P_en0", "#P_3bitr3g", "#P_eqeq2i", "#P_mpan2", "#P_0ex", "#P_carden"]}
json_instruct
{"type": "object", "properties": {"citations": {"type": "array", "items": {"type": "object", "properties": {"textCitation": {"type": "string"}}, "required": ["textCitation"]}}, "argumentText": {"type": "string"}, "conclusion": {"type": "string"}, "language": {"type": "string"}, "lookupTerms": {"type": "array", "items": {"type": "string"}}, "metaLanguage": {"type": "string"}, "premises": {"type": "array", "items": {"type": "string"}}}, "required": ["citations", "argumentText", "conclusion", "language", "lookupTerms", "metaLanguage", "premises"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"id": {"type": "integer"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"src:alt_label": {"type": "string"}, "src:geom": {"type": "string"}, "wof:geomhash": {"type": "string"}, "wof:id": {"type": "integer"}, "wof:repo": {"type": "string"}}, "required": ["src:alt_label", "src:geom", "wof:geomhash", "wof:id", "wof:repo"]}, "bbox": {"type": "array", "items": {"type": "number"}}, "geometry": {"type": "object", "properties": {"coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}, "type": {"type": "string"}}, "required": ["coordinates", "type"]}}, "required": ["id", "type", "properties", "bbox", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : 101897475, "type" : "Feature", "properties" : {"src:alt_label" : "quattroshapes", "src:geom" : "quattroshapes", "wof:geomhash" : "10461cbc9e019a277a9876f0592e1d92", "wof:id" : 101897475, "wof:repo" : "whosonfirst-data-admin-fr"}, "bbox" : [3.0909929118709, 44.15041065623649, 3.10591331224498, 44.16404052715018], "geometry" : {"coordinates" : [[[3.0976923965398, 44.16404052715018], [3.09780107539024, 44.1631429452566], [3.09904455943223, 44.16322597430991], [3.09915321448426, 44.16232839012571], [3.10288362816249, 44.16257738326004], [3.10299222083995, 44.16167979376615], [3.10547914089096, 44.16184571159101], [3.10591331224498, 44.15825533374215], [3.10093979367571, 44.15792346257797], [3.10104840239541, 44.15702587220176], [3.09980505012447, 44.15694286863419], [3.10002229261266, 44.15514768855991], [3.09877898214404, 44.15506467309802], [3.09899624516885, 44.15326949292103], [3.09775297649918, 44.15318646556591], [3.09807889507522, 44.15049369397428], [3.09683568747897, 44.15041065623649], [3.09629237091497, 44.15489859743383], [3.09504907015537, 44.15481553723157], [3.09494037403499, 44.15571312161757], [3.09121043333948, 44.15546384699729], [3.0909929118709, 44.15725900435905], [3.09223626076283, 44.15734211383602], [3.09191000256743, 44.1600348485573], [3.09315341255342, 44.1601179476545], [3.09282717160522, 44.16281067988439], [3.09407064269277, 44.16289376860112], [3.09396190597391, 44.16379134596144], [3.0976923965398, 44.16404052715018]]], "type" : "Polygon"}}
json_instruct
{"type": "object", "properties": {"id": {"type": "integer"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"src:alt_label": {"type": "string"}, "src:geom": {"type": "string"}, "wof:geomhash": {"type": "string"}, "wof:id": {"type": "integer"}, "wof:repo": {"type": "string"}}, "required": ["src:alt_label", "src:geom", "wof:geomhash", "wof:id", "wof:repo"]}, "bbox": {"type": "array", "items": {"type": "number"}}, "geometry": {"type": "object", "properties": {"coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}, "type": {"type": "string"}}, "required": ["coordinates", "type"]}}, "required": ["id", "type", "properties", "bbox", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "idParent": {"type": "integer"}, "namaWilayah": {"type": "string"}, "tingkatWilayah": {"type": "integer"}, "idPro": {"type": "integer"}, "idKab": {"type": "integer"}, "idKec": {"type": "integer"}, "idKel": {"type": "integer"}, "namaPro": {"type": "string"}, "namaKab": {"type": "string"}, "namaKec": {"type": "string"}, "namaKel": {"type": "string"}, "kodeWilayah": {"type": "string"}}, "required": ["id", "idParent", "namaWilayah", "tingkatWilayah", "idPro", "idKab", "idKec", "idKel", "namaPro", "namaKab", "namaKec", "namaKel", "kodeWilayah"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"id" : 87295, "idParent" : 13285, "namaWilayah" : "BALAI BAIAK MALAI III KOTO", "tingkatWilayah" : 4, "idPro" : 12920, "idKab" : 13253, "idKec" : 13285, "idKel" : 87295, "namaPro" : "SUMATERA BARAT", "namaKab" : "PADANG PARIAMAN", "namaKec" : "IV KOTO AUR MALINTANG", "namaKel" : "BALAI BAIAK MALAI III KOTO", "kodeWilayah" : "13.05.09.2005"}, {"id" : 13286, "idParent" : 13285, "namaWilayah" : "III KOTO AUR MALINTANG", "tingkatWilayah" : 4, "idPro" : 12920, "idKab" : 13253, "idKec" : 13285, "idKel" : 13286, "namaPro" : "SUMATERA BARAT", "namaKab" : "PADANG PARIAMAN", "namaKec" : "IV KOTO AUR MALINTANG", "namaKel" : "III KOTO AUR MALINTANG", "kodeWilayah" : "13.05.09.2001"}, {"id" : 87294, "idParent" : 13285, "namaWilayah" : "III KOTO AUR MALINTANG SELATAN", "tingkatWilayah" : 4, "idPro" : 12920, "idKab" : 13253, "idKec" : 13285, "idKel" : 87294, "namaPro" : "SUMATERA BARAT", "namaKab" : "PADANG PARIAMAN", "namaKec" : "IV KOTO AUR MALINTANG", "namaKel" : "III KOTO AUR MALINTANG SELATAN", "kodeWilayah" : "13.05.09.2004"}, {"id" : 87293, "idParent" : 13285, "namaWilayah" : "III KOTO AUR MALINTANG TIMUR", "tingkatWilayah" : 4, "idPro" : 12920, "idKab" : 13253, "idKec" : 13285, "idKel" : 87293, "namaPro" : "SUMATERA BARAT", "namaKab" : "PADANG PARIAMAN", "namaKec" : "IV KOTO AUR MALINTANG", "namaKel" : "III KOTO AUR MALINTANG TIMUR", "kodeWilayah" : "13.05.09.2003"}, {"id" : 87292, "idParent" : 13285, "namaWilayah" : "III KOTO AUR MALINTANG UTARA", "tingkatWilayah" : 4, "idPro" : 12920, "idKab" : 13253, "idKec" : 13285, "idKel" : 87292, "namaPro" : "SUMATERA BARAT", "namaKab" : "PADANG PARIAMAN", "namaKec" : "IV KOTO AUR MALINTANG", "namaKel" : "III KOTO AUR MALINTANG UTARA", "kodeWilayah" : "13.05.09.2002"}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "idParent": {"type": "integer"}, "namaWilayah": {"type": "string"}, "tingkatWilayah": {"type": "integer"}, "idPro": {"type": "integer"}, "idKab": {"type": "integer"}, "idKec": {"type": "integer"}, "idKel": {"type": "integer"}, "namaPro": {"type": "string"}, "namaKab": {"type": "string"}, "namaKec": {"type": "string"}, "namaKel": {"type": "string"}, "kodeWilayah": {"type": "string"}}, "required": ["id", "idParent", "namaWilayah", "tingkatWilayah", "idPro", "idKab", "idKec", "idKel", "namaPro", "namaKab", "namaKec", "namaKel", "kodeWilayah"]}, "$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"}, "main": {"type": "string"}, "bin": {"type": "object", "properties": {"thrift2ts": {"type": "string"}, "t2t": {"type": "string"}}, "required": ["thrift2ts", "t2t"]}, "scripts": {"type": "object", "properties": {"build": {"type": "string"}, "prepublishOnly": {"type": "string"}}, "required": ["build", "prepublishOnly"]}, "repository": {"type": "string"}, "author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"@types/node": {"type": "string"}, "mkdirp": {"type": "string"}, "prettier": {"type": "string"}, "typescript": {"type": "string"}, "yargs": {"type": "string"}}, "required": ["@types/node", "mkdirp", "prettier", "typescript", "yargs"]}}, "required": ["name", "version", "description", "main", "bin", "scripts", "repository", "author", "license", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "thrift2ts", "version" : "0.8.1", "description" : "Generate thrift RPC service clients and type definition document, all in TypeScript", "main" : "./lib/gen.js", "bin" : {"thrift2ts" : "./bin/thrift2ts", "t2t" : "./bin/t2t"}, "scripts" : {"build" : "tsc", "prepublishOnly" : "npm run build"}, "repository" : "git@github.com:thundernet8/thrift2ts.git", "author" : "wuxueqian <wuxueqian2010@hotmail.com>", "license" : "MIT", "dependencies" : {"@types/node" : "^7.0.29", "mkdirp" : "^0.5.1", "prettier" : "^1.5.2", "typescript" : "^2.3.4", "yargs" : "^8.0.2"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "bin": {"type": "object", "properties": {"thrift2ts": {"type": "string"}, "t2t": {"type": "string"}}, "required": ["thrift2ts", "t2t"]}, "scripts": {"type": "object", "properties": {"build": {"type": "string"}, "prepublishOnly": {"type": "string"}}, "required": ["build", "prepublishOnly"]}, "repository": {"type": "string"}, "author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"@types/node": {"type": "string"}, "mkdirp": {"type": "string"}, "prettier": {"type": "string"}, "typescript": {"type": "string"}, "yargs": {"type": "string"}}, "required": ["@types/node", "mkdirp", "prettier", "typescript", "yargs"]}}, "required": ["name", "version", "description", "main", "bin", "scripts", "repository", "author", "license", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"$schema": {"type": "string"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"error": {"type": "object", "properties": {"type": {"type": "string"}, "description": {"type": "string"}}, "required": ["type", "description"]}, "message": {"type": "object", "properties": {"type": {"type": "string"}, "description": {"type": "string"}}, "required": ["type", "description"]}, "details": {"type": "object", "properties": {"type": {"type": "string"}, "items": {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"msg": {"type": "object", "properties": {"type": {"type": "string"}, "description": {"type": "string"}}, "required": ["type", "description"]}, "param": {"type": "object", "properties": {"type": {"type": "string"}, "description": {"type": "string"}}, "required": ["type", "description"]}, "location": {"type": "object", "properties": {"type": {"type": "string"}, "enum": {"type": "array", "items": {"type": "string"}}, "description": {"type": "string"}}, "required": ["type", "enum", "description"]}}, "required": ["msg", "param", "location"]}}, "required": ["type", "properties"]}}, "required": ["type", "items"]}}, "required": ["error", "message", "details"]}}, "required": ["$schema", "type", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"$schema" : "http://json-schema.org/draft-04/schema", "type" : "object", "properties" : {"error" : {"type" : "string", "description" : "Error name"}, "message" : {"type" : "string", "description" : "Error description"}, "details" : {"type" : "array", "items" : {"type" : "object", "properties" : {"msg" : {"type" : "string", "description" : "Invalid value"}, "param" : {"type" : "string", "description" : "The name of the parameter with the error"}, "location" : {"type" : "string", "enum" : ["body", "param", "query"], "description" : "The location of the parameter"}}}}}}
json_instruct
{"type": "object", "properties": {"$schema": {"type": "string"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"error": {"type": "object", "properties": {"type": {"type": "string"}, "description": {"type": "string"}}, "required": ["type", "description"]}, "message": {"type": "object", "properties": {"type": {"type": "string"}, "description": {"type": "string"}}, "required": ["type", "description"]}, "details": {"type": "object", "properties": {"type": {"type": "string"}, "items": {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"msg": {"type": "object", "properties": {"type": {"type": "string"}, "description": {"type": "string"}}, "required": ["type", "description"]}, "param": {"type": "object", "properties": {"type": {"type": "string"}, "description": {"type": "string"}}, "required": ["type", "description"]}, "location": {"type": "object", "properties": {"type": {"type": "string"}, "enum": {"type": "array", "items": {"type": "string"}}, "description": {"type": "string"}}, "required": ["type", "enum", "description"]}}, "required": ["msg", "param", "location"]}}, "required": ["type", "properties"]}}, "required": ["type", "items"]}}, "required": ["error", "message", "details"]}}, "required": ["$schema", "type", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"deprecated": {"type": "string"}, "authority-code": {"type": "string"}, "identifier": {"type": "string"}, "about": {"type": "string"}, "prefLabel": {"type": "object", "properties": {"@lang": {"type": "string"}, "#text": {"type": "string"}}, "required": ["@lang", "#text"]}, "start.use": {"type": "string"}}, "required": ["deprecated", "authority-code", "identifier", "about", "prefLabel", "start.use"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"deprecated" : "false", "authority-code" : "DYM", "identifier" : "DYM", "about" : "http://publications.europa.eu/resource/authority/language/DYM", "prefLabel" : {"@lang" : "dym", "#text" : "yanda Dom Dogon"}, "start.use" : "1950-05-09"}
json_instruct
{"type": "object", "properties": {"deprecated": {"type": "string"}, "authority-code": {"type": "string"}, "identifier": {"type": "string"}, "about": {"type": "string"}, "prefLabel": {"type": "object", "properties": {"@lang": {"type": "string"}, "#text": {"type": "string"}}, "required": ["@lang", "#text"]}, "start.use": {"type": "string"}}, "required": ["deprecated", "authority-code", "identifier", "about", "prefLabel", "start.use"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"code": {"type": "integer"}, "parent": {"type": "integer"}, "name": {"type": "string"}, "latitude": {"type": "string"}, "longitude": {"type": "string"}, "postal": {"type": "array", "items": {"type": "integer"}}, "children": {"type": "array", "items": {"type": "integer"}}}, "required": ["code", "parent", "name", "latitude", "longitude", "postal", "children"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"code" : 3673020, "parent" : 3673, "name" : "WALANTAKA", "latitude" : "-6.1442304904781", "longitude" : "106.22799028062", "postal" : [42135, 42136, 42137, 42138, 42139, 42183], "children" : [3673020001, 3673020002, 3673020003, 3673020004, 3673020005, 3673020006, 3673020007, 3673020008, 3673020009, 3673020010, 3673020011, 3673020012, 3673020013, 3673020014]}
json_instruct
{"type": "object", "properties": {"code": {"type": "integer"}, "parent": {"type": "integer"}, "name": {"type": "string"}, "latitude": {"type": "string"}, "longitude": {"type": "string"}, "postal": {"type": "array", "items": {"type": "integer"}}, "children": {"type": "array", "items": {"type": "integer"}}}, "required": ["code", "parent", "name", "latitude", "longitude", "postal", "children"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "array", "items": {"type": "object", "properties": {"imdb_id": {"type": "string"}, "name": {"type": "string"}}, "required": ["imdb_id", "name"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"imdb_id" : "nm5232139", "name" : "Yash"}, {"imdb_id" : "nm8635807", "name" : "Srinidhi Shetty"}, {"imdb_id" : "nm1034613", "name" : "Ramachandra Raju"}, {"imdb_id" : "nm1034613", "name" : "Archana Jois"}, {"imdb_id" : "nm0619047", "name" : "Anant Nag"}, {"imdb_id" : "nm7181957", "name" : "Vasishta N. Simha"}, {"imdb_id" : "nm1961459", "name" : "Tamannaah Bhatia"}, {"imdb_id" : "nm1034613", "name" : "B.S. Avinash"}, {"imdb_id" : "nm4948556", "name" : "Malavika Avinash"}, {"imdb_id" : "nm4442569", "name" : "Joy Badlani"}, {"imdb_id" : "nm1035627", "name" : "Vinay Bidappa"}, {"imdb_id" : "nm9934189", "name" : "Govinde Gowda"}, {"imdb_id" : "nm2994788", "name" : "Mohan Juneja"}, {"imdb_id" : "nm4071279", "name" : "John Kokken"}, {"imdb_id" : "nm5724719", "name" : "Achyuth Kumar"}, {"imdb_id" : "nm5741813", "name" : "Dinesh Mangaluru"}, {"imdb_id" : "nm0619056", "name" : "T.S. Nagabharana"}, {"imdb_id" : "nm1024473", "name" : "Tharak Ponnappa"}, {"imdb_id" : "nm4655028", "name" : "Mouni Roy"}, {"imdb_id" : "nm5697538", "name" : "Ayyappa P. Sharma"}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"imdb_id": {"type": "string"}, "name": {"type": "string"}}, "required": ["imdb_id", "name"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"description": {"type": "string"}, "name": {"type": "string"}, "type": {"type": "string"}, "enum": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}}, "required": ["name", "description"]}}}, "required": ["description", "name", "type", "enum"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"description" : "The enumeration of possible upload types.", "name" : "UploadType", "type" : "string", "enum" : [{"name" : "S3", "description" : "An upload to an Amazon Web Services S3 bucket"}, {"name" : "GOOGLECLOUDSTORAGE", "description" : "An upload to a Google Cloud Platform storage bucket"}, {"name" : "SFTP", "description" : "TODO: Auto-generated description"}, {"name" : "HTTPS", "description" : "TODO: Auto-generated description"}, {"name" : "PROXYLOCAL", "description" : "TODO: Auto-generated description"}, {"name" : "NONE", "description" : "No upload type, for when the upload type is unknown or unspecified"}]}
json_instruct
{"type": "object", "properties": {"description": {"type": "string"}, "name": {"type": "string"}, "type": {"type": "string"}, "enum": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}}, "required": ["name", "description"]}}}, "required": ["description", "name", "type", "enum"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"ast": {"type": "null"}, "code": {"type": "string"}, "map": {"type": "null"}, "metadata": {"type": "object", "properties": {}, "required": []}, "sourceType": {"type": "string"}}, "required": ["ast", "code", "map", "metadata", "sourceType"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"ast" : null, "code" : "\"use strict\";\n\nvar _interopRequireWildcard = require(\"@babel/runtime/helpers/interopRequireWildcard\");\n\nexports.__esModule = true;\nexports.default = void 0;\n\nvar React = _interopRequireWildcard(require(\"react\"));\n\nvar _utils = require(\"rsuite-utils/lib/utils\");\n\nfunction SelectedElement(_ref) {\n var selectedItems = _ref.selectedItems,\n prefix = _ref.prefix,\n valueKey = _ref.valueKey,\n labelKey = _ref.labelKey,\n childrenKey = _ref.childrenKey,\n countable = _ref.countable,\n cascade = _ref.cascade,\n locale = _ref.locale;\n var count = selectedItems.length;\n var title = '';\n\n if (count) {\n title = selectedItems.map(function (item) {\n var label = item[labelKey];\n\n if (typeof label === 'string' || typeof label === 'number') {\n return label;\n } else if (React.isValidElement(label)) {\n return (0, _utils.reactToString)(label).join('');\n }\n\n return '';\n }).join(', ');\n }\n\n return React.createElement(React.Fragment, null, React.createElement(\"span\", {\n className: prefix('value-list'),\n title: title\n }, selectedItems.map(function (item, index) {\n var checkAll = cascade && (item.checkAll || item[childrenKey]);\n return React.createElement(React.Fragment, {\n key: item[valueKey]\n }, React.createElement(\"span\", {\n className: prefix('value-item')\n }, item[labelKey], checkAll ? \" (\" + locale.checkAll + \")\" : ''), index === count - 1 ? null : React.createElement(\"span\", {\n className: prefix('value-separator')\n }, \",\"));\n })), countable ? React.createElement(\"span\", {\n className: prefix('value-count'),\n title: count\n }, count > 99 ? '99+' : count) : null);\n}\n\nSelectedElement.handledProps = [];\nvar _default = SelectedElement;\nexports.default = _default;", "map" : null, "metadata" : {}, "sourceType" : "script"}
json_instruct
{"type": "object", "properties": {"ast": {"type": "null"}, "code": {"type": "string"}, "map": {"type": "null"}, "metadata": {"type": "object", "properties": {}, "required": []}, "sourceType": {"type": "string"}}, "required": ["ast", "code", "map", "metadata", "sourceType"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "array", "items": {"type": "object", "properties": {"errors": {"type": "array", "items": {}}, "file": {"type": "string"}, "name": {"type": "string"}}, "required": ["errors", "file", "name"]}}}, "required": ["contract", "tool", "start", "end", "duration", "analysis"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"contract" : "0x189bf92ca6596fea8e57739bc4eb58ab3dab040c", "tool" : "honeybadger", "start" : 1565801219.0174627, "end" : 1565801299.871528, "duration" : 80.85406517982483, "analysis" : [{"errors" : [], "file" : "/unique_chucks/19/0x189bf92ca6596fea8e57739bc4eb58ab3dab040c.sol", "name" : "Brothel"}]}
json_instruct
{"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "array", "items": {"type": "object", "properties": {"errors": {"type": "array", "items": {}}, "file": {"type": "string"}, "name": {"type": "string"}}, "required": ["errors", "file", "name"]}}}, "required": ["contract", "tool", "start", "end", "duration", "analysis"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"id": {"type": "integer"}, "date": {"type": "string"}, "user": {"type": "string"}, "post": {"type": "string"}}, "required": ["id", "date", "user", "post"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : 4001, "date" : "2012-07-30 21:06:39", "user" : "SrvisLLC", "post" : "&lt;img src=\"http://errantweb.com/image/logo.png\"/&gt;\r\n\r\n**TEST IP:** det.errantweb.com\r\n**When did ErrantWeb open?** January 2012\r\n**What services does ErrantWeb offer?** KVM, OpenVZ, Shared, Reseller\r\n**Does ErrantWeb own it's hardware?** Yes, currently all hardware is fully owned.\r\n**Where are you colocated?** Troy, MI ( we are looking into more locations )\r\n\r\n---\r\n**KVM 512MB SALE OFFER**\r\nRam: 512MB\r\nSSD Storage: 3GB\r\nBandwidth: 75GB\r\nCPU Cores: 2\r\nTest IP: det.errantweb.com\r\n**URL To Order:** https://www.errantweb.com/client/cart.php?a=add&amp;pid=63\r\n**$5.00 Per Month or $15 Quarterly**\r\n\r\n---\r\n\r\n**KVM 256MB SALE OFFER**\r\nRam: 256MB\r\nSSD Storage: 2GB\r\nBandwidth: 50GB\r\nCPU Cores: 1\r\nTest IP: det.errantweb.com\r\n**URL To Order:** https://www.errantweb.com/client/cart.php?a=add&amp;pid=62\r\n**$2.75 Per Month or $8.25 Quarterly**\r\n\r\n---\r\nThese offers are subject to change, please order them now if you would like to be locked into this pricing model. All orders will be setup within 24 hours from purchase, this is to allow time for staff to complete fraud screening. \r\n\r\nThanks so much!"}
json_instruct
{"type": "object", "properties": {"id": {"type": "integer"}, "date": {"type": "string"}, "user": {"type": "string"}, "post": {"type": "string"}}, "required": ["id", "date", "user", "post"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "author": {"type": "string"}, "contributors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}}, "license": {"type": "string"}, "homepage": {"type": "string"}, "dependencies": {"type": "object", "properties": {"@metamask/contract-metadata": {"type": "string"}, "axios": {"type": "string"}, "web3": {"type": "string"}}, "required": ["@metamask/contract-metadata", "axios", "web3"]}}, "required": ["name", "version", "description", "main", "scripts", "repository", "author", "contributors", "license", "homepage", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "@getsafle/asset-controller", "version" : "1.0.4", "description" : "This controller detects tokens for a user and returns token balances.", "main" : "src/index.js", "scripts" : {"test" : "echo \"Error: no test specified\" && exit 1"}, "repository" : {"type" : "git", "url" : "https://github.com/getsafle/asset-controller"}, "author" : "safle", "contributors" : [{"name" : "Shubham", "email" : "shubham@getsafle.com"}], "license" : "ISC", "homepage" : "https://github.com/getsafle/asset-controller/blob/master/README.md", "dependencies" : {"@metamask/contract-metadata" : "^1.24.0", "axios" : "^0.24.0", "web3" : "^1.2.1"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "author": {"type": "string"}, "contributors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}}, "license": {"type": "string"}, "homepage": {"type": "string"}, "dependencies": {"type": "object", "properties": {"@metamask/contract-metadata": {"type": "string"}, "axios": {"type": "string"}, "web3": {"type": "string"}}, "required": ["@metamask/contract-metadata", "axios", "web3"]}}, "required": ["name", "version", "description", "main", "scripts", "repository", "author", "contributors", "license", "homepage", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"name": {"type": "string"}, "displayName": {"type": "string"}}, "required": ["name", "displayName"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "deliveryApp", "displayName" : "deliveryApp"}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "displayName": {"type": "string"}}, "required": ["name", "displayName"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"title": {"type": "string"}, "fields": {"type": "array", "items": {"type": "string"}}, "abstract": {"type": "string"}, "citation": {"type": "string"}, "year": {"type": "string"}, "departments": {"type": "array", "items": {"type": "string"}}, "conf": {"type": "string"}, "authors": {"type": "array", "items": {"type": "string"}}, "pages": {"type": "integer"}}, "required": ["title", "fields", "abstract", "citation", "year", "departments", "conf", "authors", "pages"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"title" : "Gromov-Wasserstein Averaging of Kernel and Distance Matrices.", "fields" : ["kernel", "frechet mean", "probabilistic logic", "metric space", "distance matrices in phylogeny"], "abstract" : "This paper presents a new technique for computing the barycenter of a set of distance or kernel matrices. These matrices, which define the interrelationships between points sampled from individual domains, are not required to have the same size or to be in row-by-row correspondence. We compare these matrices using the softassign criterion, which measures the minimum distortion induced by a probabilistic map from the rows of one similarity matrix to the rows of another; this criterion amounts to a regularized version of the Gromov-Wasserstein (GW) distance between metric-measure spaces. The barycenter is then defined as a Frechet mean of the input matrices with respect to this criterion, minimizing a weighted sum of softassign values. We provide a fast iterative algorithm for the resulting nonconvex optimization problem, built upon state-of-the-art tools for regularized optimal transportation. We demonstrate its application to the computation of shape barycenters and to the prediction of energy levels from molecular configurations in quantum chemistry.", "citation" : "Citations (6)", "year" : "2016", "departments" : ["Paris Dauphine University", "Kyoto University", "Massachusetts Institute of Technology"], "conf" : "icml", "authors" : ["Gabriel Peyr\u00e9.....http://dblp.org/pers/hd/p/Peyr=eacute=:Gabriel", "Marco Cuturi.....http://dblp.org/pers/hd/c/Cuturi:Marco", "Justin Solomon.....http://dblp.org/pers/hd/s/Solomon:Justin"], "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#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"type": {"type": "string"}, "objects": {"type": "object", "properties": {"E01029869": {"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"]}, "geometries": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"OA11CD": {"type": "string"}, "LAD11CD": {"type": "string"}}, "required": ["OA11CD", "LAD11CD"]}, "arcs": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}}, "required": ["type", "properties", "arcs"]}}}, "required": ["type", "crs", "geometries"]}}, "required": ["E01029869"]}, "arcs": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}}, "transform": {"type": "object", "properties": {"scale": {"type": "array", "items": {"type": "number"}}, "translate": {"type": "array", "items": {"type": "number"}}}, "required": ["scale", "translate"]}}, "required": ["type", "objects", "arcs", "transform"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"type" : "Topology", "objects" : {"E01029869" : {"type" : "GeometryCollection", "crs" : {"type" : "name", "properties" : {"name" : "urn:ogc:def:crs:OGC:1.3:CRS84"}}, "geometries" : [{"type" : "Polygon", "properties" : {"OA11CD" : "E00152177", "LAD11CD" : "E07000199"}, "arcs" : [[0, 1, 2, 3, 4, 5]]}, {"type" : "Polygon", "properties" : {"OA11CD" : "E00152181", "LAD11CD" : "E07000199"}, "arcs" : [[6, 7, 8, -5]]}, {"type" : "Polygon", "properties" : {"OA11CD" : "E00152182", "LAD11CD" : "E07000199"}, "arcs" : [[9, -3, 10, -8]]}, {"type" : "Polygon", "properties" : {"OA11CD" : "E00152183", "LAD11CD" : "E07000199"}, "arcs" : [[-6, -9, -11, -2, 11]]}, {"type" : "Polygon", "properties" : {"OA11CD" : "E00152199", "LAD11CD" : "E07000199"}, "arcs" : [[-10, -7, -4]]}]}}, "arcs" : [[[2221, 9621], [-3, 378], [983, -27], [-523, -420], [2233, -274], [1890, -1795], [390, 125], [382, -101], [319, -1397], [-397, -131], [24, -748], [939, -152], [282, -588], [-419, -513], [263, -398], [443, -1011], [765, -513], [207, -558], [-656, -240], [-2508, 123], [-601, -1381], [-2384, 1017], [-1688, 2942], [-623, 460], [-403, -219]], [[1136, 4200], [79, 695], [3029, -342]], [[4244, 4553], [2170, -830], [-403, 800], [51, 1460]], [[6062, 5983], [300, 973], [-897, 1234], [-676, 202], [-257, 526], [-915, -319]], [[3617, 8599], [-1113, 307]], [[2504, 8906], [-283, 715]], [[3617, 8599], [203, -578], [-253, -1219]], [[3567, 6802], [-323, -314], [185, -572]], [[3429, 5916], [-823, -771], [-911, 446], [252, 2806], [288, -31], [269, 540]], [[3567, 6802], [2495, -819]], [[4244, 4553], [164, 1617], [-610, 96], [-369, -350]], [[1136, 4200], [-1136, -498], [1217, 1581], [298, 2703], [22, 462], [684, 1173]]], "transform" : {"scale" : [1.5091810593881472e-06, 7.758688167737417e-07], "translate" : [-1.670196761647337, 52.59449283008544]}}
json_instruct
{"type": "object", "properties": {"type": {"type": "string"}, "objects": {"type": "object", "properties": {"E01029869": {"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"]}, "geometries": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"OA11CD": {"type": "string"}, "LAD11CD": {"type": "string"}}, "required": ["OA11CD", "LAD11CD"]}, "arcs": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}}, "required": ["type", "properties", "arcs"]}}}, "required": ["type", "crs", "geometries"]}}, "required": ["E01029869"]}, "arcs": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}}, "transform": {"type": "object", "properties": {"scale": {"type": "array", "items": {"type": "number"}}, "translate": {"type": "array", "items": {"type": "number"}}}, "required": ["scale", "translate"]}}, "required": ["type", "objects", "arcs", "transform"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"title": {"type": "string"}, "url": {"type": "string"}, "description": {"type": "string"}, "feed": {"type": "object", "properties": {"subtitle": {"type": "string"}, "filename": {"type": "string"}, "path": {"type": "string"}, "id": {"type": "string"}}, "required": ["subtitle", "filename", "path", "id"]}, "author": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}}, "required": ["title", "url", "description", "feed", "author"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"title" : "Phil Wheeler", "url" : "https://wheeler.kiwi.nz/", "description" : "Technology, leadership, education", "feed" : {"subtitle" : "Coding and abetting", "filename" : "feed.xml", "path" : "/feed/feed.xml", "id" : "https://wheeler.kiwi.nz/"}, "author" : {"name" : "Phil Wheeler", "email" : "youremailaddress@example.com"}}
json_instruct
{"type": "object", "properties": {"title": {"type": "string"}, "url": {"type": "string"}, "description": {"type": "string"}, "feed": {"type": "object", "properties": {"subtitle": {"type": "string"}, "filename": {"type": "string"}, "path": {"type": "string"}, "id": {"type": "string"}}, "required": ["subtitle", "filename", "path", "id"]}, "author": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}}, "required": ["title", "url", "description", "feed", "author"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"port": {"type": "integer"}, "database": {"type": "object", "properties": {"type": {"type": "string"}, "location": {"type": "string"}}, "required": ["type", "location"]}}, "required": ["port", "database"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"port" : 8080, "database" : {"type" : "sqlite", "location" : "chores.db"}}
json_instruct
{"type": "object", "properties": {"port": {"type": "integer"}, "database": {"type": "object", "properties": {"type": {"type": "string"}, "location": {"type": "string"}}, "required": ["type", "location"]}}, "required": ["port", "database"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"parse.js": {"type": "string"}, "parse.min.js": {"type": "string"}}, "required": ["parse.js", "parse.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"parse.js" : "sha512-6bwIGCJAVI/w0T2LuvjiT86ss+VWKtcPEWbQDhMbVBdpCbe7jJpIL0hq+mTLdx+jjYNNTw7VPwA+5J7O5/sfvg==", "parse.min.js" : "sha512-Piz7MYiV/dklTinvjY+ZIMNnCdjvyGlx8tvt511LxcU4svD0xeatHepd/FqgZjoizkZr8MEwMOk+tOYgJxTTTQ=="}
json_instruct
{"type": "object", "properties": {"parse.js": {"type": "string"}, "parse.min.js": {"type": "string"}}, "required": ["parse.js", "parse.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"headline": {"type": "object", "properties": {"name": {"type": "string"}, "uri": {"type": "string"}}, "required": ["name", "uri"]}, "items": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "uri": {"type": "string"}}, "required": ["name", "uri"]}}, "statsBulletinHeadline": {"type": "object", "properties": {"name": {"type": "string"}, "uri": {"type": "string"}}, "required": ["name", "uri"]}, "statsBulletins": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "uri": {"type": "string"}}, "required": ["name", "uri"]}}, "datasets": {"type": "array", "items": {}}, "level": {"type": "string"}, "index": {"type": "integer"}, "lede": {"type": "string"}, "type": {"type": "string"}, "name": {"type": "string"}, "fileName": {"type": "string"}, "breadcrumb": {"type": "array", "items": {"type": "object", "properties": {"index": {"type": "integer"}, "type": {"type": "string"}, "name": {"type": "string"}, "fileName": {"type": "string"}}, "required": ["index", "type", "name", "fileName"]}}}, "required": ["headline", "items", "statsBulletinHeadline", "statsBulletins", "datasets", "level", "index", "lede", "type", "name", "fileName", "breadcrumb"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"headline" : {"name" : "Index of Production", "uri" : "/businessindustryandtrade/manufacturingandproductionindustry/timeseries/k27q"}, "items" : [{"name" : "Index of Production", "uri" : "/businessindustryandtrade/manufacturingandproductionindustry/timeseries/k27q"}, {"name" : "Index of Production", "uri" : "/businessindustryandtrade/manufacturingandproductionindustry/timeseries/k222"}, {"name" : "Manufacturing", "uri" : "/businessindustryandtrade/manufacturingandproductionindustry/timeseries/k27y"}, {"name" : "Manufacturing", "uri" : "/businessindustryandtrade/manufacturingandproductionindustry/timeseries/k22a"}], "statsBulletinHeadline" : {"name" : "Index of Production", "uri" : "/businessindustryandtrade/manufacturingandproductionindustry/bulletins/indexofproduction"}, "statsBulletins" : [{"name" : "Index of Production", "uri" : "/businessindustryandtrade/manufacturingandproductionindustry/bulletins/indexofproduction"}], "datasets" : [], "level" : "t3", "index" : 6, "lede" : "Manufacturing and Production Industry is the branch of manufacture and trade based on the fabrication, processing, or preparation of products from raw materials and commodities. This includes all foods, chemicals, textiles, machines, and equipment.", "type" : "home", "name" : "Manufacturing and Production Industry", "fileName" : "manufacturingandproductionindustry", "breadcrumb" : [{"index" : 0, "type" : "home", "name" : "Business, Industry and Trade", "fileName" : "businessindustryandtrade"}]}
json_instruct
{"type": "object", "properties": {"headline": {"type": "object", "properties": {"name": {"type": "string"}, "uri": {"type": "string"}}, "required": ["name", "uri"]}, "items": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "uri": {"type": "string"}}, "required": ["name", "uri"]}}, "statsBulletinHeadline": {"type": "object", "properties": {"name": {"type": "string"}, "uri": {"type": "string"}}, "required": ["name", "uri"]}, "statsBulletins": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "uri": {"type": "string"}}, "required": ["name", "uri"]}}, "datasets": {"type": "array", "items": {}}, "level": {"type": "string"}, "index": {"type": "integer"}, "lede": {"type": "string"}, "type": {"type": "string"}, "name": {"type": "string"}, "fileName": {"type": "string"}, "breadcrumb": {"type": "array", "items": {"type": "object", "properties": {"index": {"type": "integer"}, "type": {"type": "string"}, "name": {"type": "string"}, "fileName": {"type": "string"}}, "required": ["index", "type", "name", "fileName"]}}}, "required": ["headline", "items", "statsBulletinHeadline", "statsBulletins", "datasets", "level", "index", "lede", "type", "name", "fileName", "breadcrumb"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"value": {"type": "array", "items": {"type": "string"}}}, "required": ["value"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"value" : ["1989-08-22T19:18:19", "1989-03-26T19:10:10", "1989-05-23T09:13:13", "1889-08-22T09:18:16", "1889-01-27T09:14:16"]}
json_instruct
{"type": "object", "properties": {"value": {"type": "array", "items": {"type": "string"}}}, "required": ["value"], "$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"}, "main": {"type": "string"}, "directories": {"type": "object", "properties": {"example": {"type": "string"}}, "required": ["example"]}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "author": {"type": "string"}, "contributors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"jasmine-core": {"type": "string"}, "jsdoc-to-markdown": {"type": "string"}, "karma": {"type": "string"}, "karma-jasmine": {"type": "string"}, "karma-phantomjs-launcher": {"type": "string"}, "karma-phantomjs-shim": {"type": "string"}, "karma-webpack": {"type": "string"}, "kefir": {"type": "string"}, "lodash": {"type": "string"}, "phantomjs": {"type": "string"}, "react": {"type": "string"}, "react-dom": {"type": "string"}, "webpack": {"type": "string"}}, "required": ["jasmine-core", "jsdoc-to-markdown", "karma", "karma-jasmine", "karma-phantomjs-launcher", "karma-phantomjs-shim", "karma-webpack", "kefir", "lodash", "phantomjs", "react", "react-dom", "webpack"]}}, "required": ["name", "version", "description", "main", "directories", "scripts", "repository", "author", "contributors", "license", "bugs", "homepage", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "bazooka", "version" : "0.5.0", "description" : "Simple tool for declarative binding applications to HTML nodes.", "main" : "src/main.js", "directories" : {"example" : "examples"}, "scripts" : {"test" : "make test"}, "repository" : {"type" : "git", "url" : "https://github.com/seedofjoy/bazooka.git"}, "author" : "Igor Mozharovsky <igor.mozharovsky@gmail.com>", "contributors" : [{"name" : "Igor Mozharovsky", "email" : "igor.mozharovsky@gmail.com"}, {"name" : "Anton Verinov", "url" : "http://anton.codes", "email" : "anton@verinov.com"}], "license" : "MIT", "bugs" : {"url" : "https://github.com/seedofjoy/bazooka/issues"}, "homepage" : "https://github.com/seedofjoy/bazooka", "devDependencies" : {"jasmine-core" : "^2.3.4", "jsdoc-to-markdown" : "^1.2.0", "karma" : "^0.13.15", "karma-jasmine" : "^0.3.6", "karma-phantomjs-launcher" : "^0.2.1", "karma-phantomjs-shim" : "^1.2.0", "karma-webpack" : "^1.7.0", "kefir" : "^3.1.0", "lodash" : "^3.10.1", "phantomjs" : "^1.9.18", "react" : "^0.14.2", "react-dom" : "^0.14.2", "webpack" : "^1.12.3"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "directories": {"type": "object", "properties": {"example": {"type": "string"}}, "required": ["example"]}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "author": {"type": "string"}, "contributors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"jasmine-core": {"type": "string"}, "jsdoc-to-markdown": {"type": "string"}, "karma": {"type": "string"}, "karma-jasmine": {"type": "string"}, "karma-phantomjs-launcher": {"type": "string"}, "karma-phantomjs-shim": {"type": "string"}, "karma-webpack": {"type": "string"}, "kefir": {"type": "string"}, "lodash": {"type": "string"}, "phantomjs": {"type": "string"}, "react": {"type": "string"}, "react-dom": {"type": "string"}, "webpack": {"type": "string"}}, "required": ["jasmine-core", "jsdoc-to-markdown", "karma", "karma-jasmine", "karma-phantomjs-launcher", "karma-phantomjs-shim", "karma-webpack", "kefir", "lodash", "phantomjs", "react", "react-dom", "webpack"]}}, "required": ["name", "version", "description", "main", "directories", "scripts", "repository", "author", "contributors", "license", "bugs", "homepage", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"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" : "Bigelow", "state_name" : "Arkansas", "state_abbrv" : "AR", "lat" : "34.9847", "long" : "-92.6308"}
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#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "main": {"type": "string"}, "repository": {"type": "object", "properties": {}, "required": []}, "license": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"webpack": {"type": "string"}}, "required": ["webpack"]}, "dependencies": {"type": "object", "properties": {"botkit": {"type": "string"}, "lodash": {"type": "string"}}, "required": ["botkit", "lodash"]}}, "required": ["name", "version", "main", "repository", "license", "devDependencies", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "ok100percentbot-web", "version" : "1.0.0", "main" : "index.js", "repository" : {}, "license" : "MIT", "devDependencies" : {"webpack" : "beta"}, "dependencies" : {"botkit" : "^0.4.9", "lodash" : "^4.17.4"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "main": {"type": "string"}, "repository": {"type": "object", "properties": {}, "required": []}, "license": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"webpack": {"type": "string"}}, "required": ["webpack"]}, "dependencies": {"type": "object", "properties": {"botkit": {"type": "string"}, "lodash": {"type": "string"}}, "required": ["botkit", "lodash"]}}, "required": ["name", "version", "main", "repository", "license", "devDependencies", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"author": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "name"]}, "date": {"type": "object", "properties": {"day": {"type": "integer"}, "full": {"type": "integer"}, "month": {"type": "integer"}, "week": {"type": "integer"}}, "required": ["day", "full", "month", "week"]}, "id": {"type": "string"}, "misc": {"type": "object", "properties": {"postHint": {"type": "string"}}, "required": ["postHint"]}, "picture": {"type": "object", "properties": {"filesize": {"type": "integer"}, "fullUrl": {"type": "string"}, "hash": {"type": "string"}, "height": {"type": "integer"}, "lqip": {"type": "string"}, "thumbnailUrl": {"type": "string"}, "url": {"type": "string"}, "width": {"type": "integer"}}, "required": ["filesize", "fullUrl", "hash", "height", "lqip", "thumbnailUrl", "url", "width"]}, "score": {"type": "object", "properties": {"comments": {"type": "integer"}, "downs": {"type": "integer"}, "isCurated": {"type": "boolean"}, "ratio": {"type": "number"}, "ups": {"type": "integer"}, "value": {"type": "integer"}}, "required": ["comments", "downs", "isCurated", "ratio", "ups", "value"]}, "subreddit": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "name"]}, "tags": {"type": "array", "items": {}}, "title": {"type": "string"}, "url": {"type": "string"}}, "required": ["author", "date", "id", "misc", "picture", "score", "subreddit", "tags", "title", "url"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"author" : {"id" : "t2_34kfhooe", "name" : "axis1970"}, "date" : {"day" : 1612224000, "full" : 1612246572, "month" : 1612137600, "week" : 1612051200}, "id" : "t3_lap778", "misc" : {"postHint" : "image"}, "picture" : {"filesize" : 98564, "fullUrl" : "https://preview.redd.it/c8iuejm4b0f61.jpg?auto=webp&s=527fbb93560b02784a39bc16a58234ac10c9f18f", "hash" : "2375ebece8", "height" : 523, "lqip" : "data:image/jpg;base64,/9j/2wBDAAYEBQYFBAYGBQYHBwYIChAKCgkJChQODwwQFxQYGBcUFhYaHSUfGhsjHBYWICwgIyYnKSopGR8tMC0oMCUoKSj/2wBDAQcHBwoIChMKChMoGhYaKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCj/wAARCAANABADASIAAhEBAxEB/8QAFgABAQEAAAAAAAAAAAAAAAAAAwIF/8QAJxAAAgEEAAILAAAAAAAAAAAAAQIDAAQRIQVREhMiIzFBQmFxgfD/xAAVAQEBAAAAAAAAAAAAAAAAAAABBP/EABoRAQABBQAAAAAAAAAAAAAAAAEAERIhIjH/2gAMAwEAAhEDEQA/ANa3gZUkV40iGOzBgHI8Rk/dLdxw3tpPHcKr3USdenRPpA2CfPB5+9U84aS1ilVmZjqRWwy55a/CiktI4uG3qv3khZWEhGwBnXxQ525JVKWz/9k=", "thumbnailUrl" : "https://a.thumbs.redditmedia.com/d7bs_W_1I3HNuypBA3rd0XLhqzMd73MT-DbElLE4HI0.jpg", "url" : "https://preview.redd.it/c8iuejm4b0f61.jpg?width=640&crop=smart&auto=webp&s=cbed091885f2569cddb44ab861cdce8f8dfa94a2", "width" : 640}, "score" : {"comments" : 1, "downs" : 0, "isCurated" : false, "ratio" : 0.97, "ups" : 28, "value" : 28}, "subreddit" : {"id" : "t5_3isai", "name" : "dndmaps"}, "tags" : [], "title" : "Swamp Temple", "url" : "https://www.reddit.com/r/dndmaps/comments/lap778/swamp_temple/"}
json_instruct
{"type": "object", "properties": {"author": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "name"]}, "date": {"type": "object", "properties": {"day": {"type": "integer"}, "full": {"type": "integer"}, "month": {"type": "integer"}, "week": {"type": "integer"}}, "required": ["day", "full", "month", "week"]}, "id": {"type": "string"}, "misc": {"type": "object", "properties": {"postHint": {"type": "string"}}, "required": ["postHint"]}, "picture": {"type": "object", "properties": {"filesize": {"type": "integer"}, "fullUrl": {"type": "string"}, "hash": {"type": "string"}, "height": {"type": "integer"}, "lqip": {"type": "string"}, "thumbnailUrl": {"type": "string"}, "url": {"type": "string"}, "width": {"type": "integer"}}, "required": ["filesize", "fullUrl", "hash", "height", "lqip", "thumbnailUrl", "url", "width"]}, "score": {"type": "object", "properties": {"comments": {"type": "integer"}, "downs": {"type": "integer"}, "isCurated": {"type": "boolean"}, "ratio": {"type": "number"}, "ups": {"type": "integer"}, "value": {"type": "integer"}}, "required": ["comments", "downs", "isCurated", "ratio", "ups", "value"]}, "subreddit": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "name"]}, "tags": {"type": "array", "items": {}}, "title": {"type": "string"}, "url": {"type": "string"}}, "required": ["author", "date", "id", "misc", "picture", "score", "subreddit", "tags", "title", "url"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"id": {"type": "string"}, "variable1": {"type": "number"}, "variable2": {"type": "number"}, "variable3": {"type": "string"}}, "required": ["id", "variable1", "variable2", "variable3"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : "010100090304", "variable1" : 0.662, "variable2" : 0.1927, "variable3" : "B"}
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "variable1": {"type": "number"}, "variable2": {"type": "number"}, "variable3": {"type": "string"}}, "required": ["id", "variable1", "variable2", "variable3"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"type": {"type": "string"}, "pattern": {"type": "array", "items": {"type": "string"}}, "key": {"type": "object", "properties": {"C": {"type": "object", "properties": {"item": {"type": "string"}}, "required": ["item"]}, "T": {"type": "object", "properties": {"tag": {"type": "string"}}, "required": ["tag"]}, "H": {"type": "object", "properties": {"item": {"type": "string"}}, "required": ["item"]}}, "required": ["C", "T", "H"]}, "result": {"type": "object", "properties": {"item": {"type": "string"}}, "required": ["item"]}}, "required": ["type", "pattern", "key", "result"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"type" : "minecraft:crafting_shaped", "pattern" : ["THT", "TCT", "THT"], "key" : {"C" : {"item" : "minecraft:copper_ingot"}, "T" : {"tag" : "c:tin_ingots"}, "H" : {"item" : "techreborn:nak_coolant_cell_180k"}}, "result" : {"item" : "techreborn:nak_coolant_cell_360k"}}
json_instruct
{"type": "object", "properties": {"type": {"type": "string"}, "pattern": {"type": "array", "items": {"type": "string"}}, "key": {"type": "object", "properties": {"C": {"type": "object", "properties": {"item": {"type": "string"}}, "required": ["item"]}, "T": {"type": "object", "properties": {"tag": {"type": "string"}}, "required": ["tag"]}, "H": {"type": "object", "properties": {"item": {"type": "string"}}, "required": ["item"]}}, "required": ["C", "T", "H"]}, "result": {"type": "object", "properties": {"item": {"type": "string"}}, "required": ["item"]}}, "required": ["type", "pattern", "key", "result"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"beanType@STRING": {"type": "string"}, "name@STRING": {"type": "string"}, "dependencies@STRING": {"type": "array", "items": {"type": "string"}}, "script@STRING": {"type": "string"}, "initMethod@STRING": {"type": "string"}, "proxy@STRING": {"type": "string"}, "moduleId@STRING": {"type": "string"}}, "required": ["beanType@STRING", "name@STRING", "dependencies@STRING", "script@STRING", "initMethod@STRING", "proxy@STRING", "moduleId@STRING"]}}, "required": ["type", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"type" : "cy:bean", "properties" : {"beanType@STRING" : "cy:requiremodule", "name@STRING" : "Relations", "dependencies@STRING" : ["/libs/bndly/data/scripts/cy/relations/BusinessProcessDefinition"], "script@STRING" : "return {\n\tBusinessProcessDefinition: BusinessProcessDefinition\n};", "initMethod@STRING" : "", "proxy@STRING" : "", "moduleId@STRING" : ""}}
json_instruct
{"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"beanType@STRING": {"type": "string"}, "name@STRING": {"type": "string"}, "dependencies@STRING": {"type": "array", "items": {"type": "string"}}, "script@STRING": {"type": "string"}, "initMethod@STRING": {"type": "string"}, "proxy@STRING": {"type": "string"}, "moduleId@STRING": {"type": "string"}}, "required": ["beanType@STRING", "name@STRING", "dependencies@STRING", "script@STRING", "initMethod@STRING", "proxy@STRING", "moduleId@STRING"]}}, "required": ["type", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "frequency": {"type": "integer"}, "gender": {"type": "string"}}, "required": ["name", "frequency", "gender"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"name" : "AIKER", "frequency" : 0, "gender" : "female"}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "frequency": {"type": "integer"}, "gender": {"type": "string"}}, "required": ["name", "frequency", "gender"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "array", "items": {"type": "object", "properties": {"ts": {"type": "string"}, "in": {"type": "array", "items": {"type": "object", "properties": {"coinbase": {"type": "string"}}, "required": ["coinbase"]}}, "block": {"type": "integer"}, "sent": {"type": "integer"}, "txid": {"type": "string"}, "fees": {"type": "integer"}, "out": {"type": "array", "items": {"type": "object", "properties": {"value": {"type": "integer"}}, "required": ["value"]}}}, "required": ["ts", "in", "block", "sent", "txid", "fees", "out"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"ts" : "1536028819", "in" : [{"coinbase" : "03f6d0150493f08d5b08fabe6d6d37323239336435333764633832346566383437656238373536663762356536300100000000000000080002ddd40000000d2f6e6f64655374726174756d2f"}], "block" : 1429750, "sent" : 2500000000, "txid" : "3488441e6c7ee72cce92a20e63f4caaef240c144d83c6c8c2f490e06a552809a", "fees" : -2500000000, "out" : [{"value" : 0}, {"addr" : "MM7Szm9Ly74aAH9juAS8vsDvXmhB2wXpPo", "spent" : "0b0df3ea5fc9d1b237c8ff01e079e0bde76f27b53807b73e3fee9ba5ffc7c152", "value" : 2500000000}]}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"ts": {"type": "string"}, "in": {"type": "array", "items": {"type": "object", "properties": {"coinbase": {"type": "string"}}, "required": ["coinbase"]}}, "block": {"type": "integer"}, "sent": {"type": "integer"}, "txid": {"type": "string"}, "fees": {"type": "integer"}, "out": {"type": "array", "items": {"type": "object", "properties": {"value": {"type": "integer"}}, "required": ["value"]}}}, "required": ["ts", "in", "block", "sent", "txid", "fees", "out"]}, "$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" : "532626207201", "text" : "\u820d\u5f97\u6751\u59d4\u4f1a"}, {"id" : "532626207202", "text" : "\u843d\u6bcd\u6751\u59d4\u4f1a"}, {"id" : "532626207203", "text" : "\u559c\u9e4a\u843d\u6751\u59d4\u4f1a"}, {"id" : "532626207204", "text" : "\u535c\u621b\u6751\u59d4\u4f1a"}, {"id" : "532626207205", "text" : "\u7913\u5693\u6751\u59d4\u4f1a"}, {"id" : "532626207206", "text" : "\u9646\u826f\u6751\u59d4\u4f1a"}, {"id" : "532626207207", "text" : "\u77e3\u767d\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#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"}
["bench-lru", "rollup-plugin-ko-component"]
json_instruct
{"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": {"output": {"type": "string"}, "input": {"type": "string"}, "level": {"type": "integer"}, "name": {"type": "string"}, "has_images": {"type": "boolean"}, "description": {"type": "string"}, "id": {"type": "string"}, "category": {"type": "string"}, "statistics": {"type": "object", "properties": {"level": {"type": "string"}, "submissions": {"type": "integer"}, "solved": {"type": "integer"}, "ratio": {"type": "string"}}, "required": ["level", "submissions", "solved", "ratio"]}}, "required": ["output", "input", "level", "name", "has_images", "description", "id", "category", "statistics"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"output" : "Para cada caso de teste, imprima uma linha, contendo um valor, de dupla precis\u00e3o, com 15 casas decimais, informando a probabilidade de acertar o palpite da rodada correspondente.", "input" : "O primeiro valor a ser lido \u00e9 um inteiro C, indicando o n\u00famero de casos de teste. Cada caso de teste inicia com dois inteiros\u00a0S\u00a0e\u00a0D\u00a0(1 \u2264\u00a0S\u00a0\u2264 80, 1 \u2264\u00a0D\u00a0\u2264 13), indicando a soma do palpite e a quantidade de dados.", "level" : 6, "name" : "Banco de Dados", "has_images" : true, "description" : "Todo domingo, um grupo de amigos se reunia em um banco da pra\u00e7a para conversar. Al\u00e9m disso, jogavam algo chamado \u201cdadinho\u201d, que em outras regi\u00f5es, \u00e9 chamado de \u201czezinho\u201d. Cada jogador come\u00e7ava com um dado e um palpite, arremessava o mesmo sobre o banco, e se acertasse o resultado, pegaria mais um dado. A cada rodada, o processo se repetia, com o palpite do resultado da soma dos dados jogados sobre o banco. Quem acertasse, pegaria outro dado. O jogo termina quando um jogador acerta um palpite ap\u00f3s ter 13 dados na m\u00e3o. Considere que todos os dados usados no jogo s\u00e3o honestos e possuem seis faces, numeradas de 1 a 6. Mas a medida que aumentava a quantidade de dados, ficava mais dif\u00edcil acertar o palpite. Desse modo, pediram a voc\u00ea que fa\u00e7a um programa o qual, dado um palpite de soma, e uma quantidade de dados, calcule a probabilidade de acertar tal palpite.\n\n\n\nEscreva um programa que, - dado um n\u00famero inteiro, representando o palpite de soma, e outro n\u00famero inteiro, sendo a quantidade de dados a serem jogados -, calcule a probabilidade de acerto do palpite.", "id" : "2148", "category" : "Matem\u00e1tica", "statistics" : {"level" : "6 / 10", "submissions" : 208, "solved" : 119, "ratio" : "57.21%"}}
json_instruct
{"type": "object", "properties": {"output": {"type": "string"}, "input": {"type": "string"}, "level": {"type": "integer"}, "name": {"type": "string"}, "has_images": {"type": "boolean"}, "description": {"type": "string"}, "id": {"type": "string"}, "category": {"type": "string"}, "statistics": {"type": "object", "properties": {"level": {"type": "string"}, "submissions": {"type": "integer"}, "solved": {"type": "integer"}, "ratio": {"type": "string"}}, "required": ["level", "submissions", "solved", "ratio"]}}, "required": ["output", "input", "level", "name", "has_images", "description", "id", "category", "statistics"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "build": {"type": "string"}, "prepublishOnly": {"type": "string"}, "prebuild": {"type": "string"}, "lint": {"type": "string"}, "clean": {"type": "string"}}, "required": ["test", "build", "prepublishOnly", "prebuild", "lint", "clean"]}, "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"]}, "jest": {"type": "object", "properties": {"resolver": {"type": "string"}, "testEnvironment": {"type": "string"}}, "required": ["resolver", "testEnvironment"]}, "homepage": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"@babel/preset-env": {"type": "string"}, "@babel/preset-typescript": {"type": "string"}, "@types/jest": {"type": "string"}, "enhanced-resolve": {"type": "string"}, "eslint": {"type": "string"}, "eslint-config-3box": {"type": "string"}, "jest": {"type": "string"}, "jest-environment-uint8array": {"type": "string"}, "prettier": {"type": "string"}, "typescript": {"type": "string"}}, "required": ["@babel/preset-env", "@babel/preset-typescript", "@types/jest", "enhanced-resolve", "eslint", "eslint-config-3box", "jest", "jest-environment-uint8array", "prettier", "typescript"]}, "dependencies": {"type": "object", "properties": {"@ipld/dag-cbor": {"type": "string"}, "multiformats": {"type": "string"}}, "required": ["@ipld/dag-cbor", "multiformats"]}}, "required": ["name", "version", "description", "main", "scripts", "repository", "author", "license", "bugs", "jest", "homepage", "devDependencies", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "dag-jose-utils", "version" : "1.0.0", "description" : "Utility functions for the dag-jose ipld codec", "main" : "lib/index.js", "scripts" : {"test" : "jest", "build" : "./node_modules/.bin/tsc -p tsconfig.json", "prepublishOnly" : "npm run build", "prebuild" : "npm run clean", "lint" : "./node_modules/.bin/eslint ./src --ext .js,.ts", "clean" : "rm -rf ./lib"}, "repository" : {"type" : "git", "url" : "git+https://github.com/ceramicnetwork/js-dag-jose-utils.git"}, "author" : "3Box Labs", "license" : "(Apache-2.0 OR MIT)", "bugs" : {"url" : "https://github.com/ceramicnetwork/js-dag-jose-utils/issues"}, "jest" : {"resolver" : "./test/_export_maps_resolver", "testEnvironment" : "jest-environment-uint8array"}, "homepage" : "https://github.com/ceramicnetwork/js-dag-jose-utils#readme", "devDependencies" : {"@babel/preset-env" : "^7.14.2", "@babel/preset-typescript" : "^7.13.0", "@types/jest" : "^26.0.23", "enhanced-resolve" : "^5.8.2", "eslint" : "^7.26.0", "eslint-config-3box" : "^0.2.0", "jest" : "^26.6.3", "jest-environment-uint8array" : "^1.0.0", "prettier" : "^2.3.0", "typescript" : "^4.2.4"}, "dependencies" : {"@ipld/dag-cbor" : "^5.0.5", "multiformats" : "^8.0.5"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "build": {"type": "string"}, "prepublishOnly": {"type": "string"}, "prebuild": {"type": "string"}, "lint": {"type": "string"}, "clean": {"type": "string"}}, "required": ["test", "build", "prepublishOnly", "prebuild", "lint", "clean"]}, "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"]}, "jest": {"type": "object", "properties": {"resolver": {"type": "string"}, "testEnvironment": {"type": "string"}}, "required": ["resolver", "testEnvironment"]}, "homepage": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"@babel/preset-env": {"type": "string"}, "@babel/preset-typescript": {"type": "string"}, "@types/jest": {"type": "string"}, "enhanced-resolve": {"type": "string"}, "eslint": {"type": "string"}, "eslint-config-3box": {"type": "string"}, "jest": {"type": "string"}, "jest-environment-uint8array": {"type": "string"}, "prettier": {"type": "string"}, "typescript": {"type": "string"}}, "required": ["@babel/preset-env", "@babel/preset-typescript", "@types/jest", "enhanced-resolve", "eslint", "eslint-config-3box", "jest", "jest-environment-uint8array", "prettier", "typescript"]}, "dependencies": {"type": "object", "properties": {"@ipld/dag-cbor": {"type": "string"}, "multiformats": {"type": "string"}}, "required": ["@ipld/dag-cbor", "multiformats"]}}, "required": ["name", "version", "description", "main", "scripts", "repository", "author", "license", "bugs", "jest", "homepage", "devDependencies", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"build": {"type": "string"}, "dev": {"type": "string"}, "format": {"type": "string"}, "transpile": {"type": "string"}}, "required": ["build", "dev", "format", "transpile"]}, "author": {"type": "string"}, "license": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"@cloudflare/workers-types": {"type": "string"}, "@types/chai": {"type": "string"}, "@types/mocha": {"type": "string"}, "chai": {"type": "string"}, "mocha": {"type": "string"}, "prettier": {"type": "string"}, "rimraf": {"type": "string"}, "service-worker-mock": {"type": "string"}, "source-map-loader": {"type": "string"}, "source-map-support": {"type": "string"}, "ts-loader": {"type": "string"}, "typescript": {"type": "string"}, "webpack": {"type": "string"}, "webpack-cli": {"type": "string"}}, "required": ["@cloudflare/workers-types", "@types/chai", "@types/mocha", "chai", "mocha", "prettier", "rimraf", "service-worker-mock", "source-map-loader", "source-map-support", "ts-loader", "typescript", "webpack", "webpack-cli"]}}, "required": ["name", "version", "description", "main", "scripts", "author", "license", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "pname", "version" : "1.0.0", "description" : "ClickHouse Website", "main" : "index.js", "scripts" : {"build" : "webpack", "dev" : "NODE_ENV=development npm run build", "format" : "prettier --write '**/*.{ts,js,css,json,md}'", "transpile" : "tsc --project ./test"}, "author" : "author", "license" : "Apache-2.0", "devDependencies" : {"@cloudflare/workers-types" : "^2.1.0", "@types/chai" : "^4.2.14", "@types/mocha" : "^8.0.4", "chai" : "^4.2.0", "mocha" : "^8.2.1", "prettier" : "^2.2.0", "rimraf" : "^3.0.2", "service-worker-mock" : "^2.0.3", "source-map-loader" : "^1.1.2", "source-map-support" : "^0.5.19", "ts-loader" : "^8.0.11", "typescript" : "^4.1.2", "webpack" : "^5.5.1", "webpack-cli" : "^4.2.0"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"build": {"type": "string"}, "dev": {"type": "string"}, "format": {"type": "string"}, "transpile": {"type": "string"}}, "required": ["build", "dev", "format", "transpile"]}, "author": {"type": "string"}, "license": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"@cloudflare/workers-types": {"type": "string"}, "@types/chai": {"type": "string"}, "@types/mocha": {"type": "string"}, "chai": {"type": "string"}, "mocha": {"type": "string"}, "prettier": {"type": "string"}, "rimraf": {"type": "string"}, "service-worker-mock": {"type": "string"}, "source-map-loader": {"type": "string"}, "source-map-support": {"type": "string"}, "ts-loader": {"type": "string"}, "typescript": {"type": "string"}, "webpack": {"type": "string"}, "webpack-cli": {"type": "string"}}, "required": ["@cloudflare/workers-types", "@types/chai", "@types/mocha", "chai", "mocha", "prettier", "rimraf", "service-worker-mock", "source-map-loader", "source-map-support", "ts-loader", "typescript", "webpack", "webpack-cli"]}}, "required": ["name", "version", "description", "main", "scripts", "author", "license", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "array", "items": {"type": "array", "items": {"type": "string"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
[["3e1afecc200d7e3be9537c95b7cf52a7c5031300", "a2447673d9ca590a3ed967e7a30b1f9cd18e78d1"], ["3e1afecc200d7e3be9537c95b7cf52a7c5031300", "a2447673d9ca590a3ed967e7a30b1f9cd18e78d1"]]
json_instruct
{"type": "array", "items": {"type": "array", "items": {"type": "string"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"h": {"type": "string"}, "c": {"type": "object", "properties": {"app": {"type": "boolean"}}, "required": ["app"]}}, "required": ["h", "c"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"h" : "74680497d551ae07ef15", "c" : {"app" : true}}
json_instruct
{"type": "object", "properties": {"h": {"type": "string"}, "c": {"type": "object", "properties": {"app": {"type": "boolean"}}, "required": ["app"]}}, "required": ["h", "c"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"hermeneutApp": {"type": "object", "properties": {"splittingLoss": {"type": "object", "properties": {"home": {"type": "object", "properties": {"title": {"type": "string"}, "createLabel": {"type": "string"}, "createOrEditLabel": {"type": "string"}, "search": {"type": "string"}}, "required": ["title", "createLabel", "createOrEditLabel", "search"]}, "created": {"type": "string"}, "updated": {"type": "string"}, "deleted": {"type": "string"}, "delete": {"type": "object", "properties": {"question": {"type": "string"}}, "required": ["question"]}, "detail": {"type": "object", "properties": {"title": {"type": "string"}}, "required": ["title"]}, "sectorType": {"type": "string"}, "categoryType": {"type": "string"}, "lossPercentage": {"type": "string"}, "loss": {"type": "string"}, "selfAssessment": {"type": "string"}}, "required": ["home", "created", "updated", "deleted", "delete", "detail", "sectorType", "categoryType", "lossPercentage", "loss", "selfAssessment"]}}, "required": ["splittingLoss"]}}, "required": ["hermeneutApp"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"hermeneutApp" : {"splittingLoss" : {"home" : {"title" : "Splitting Losses", "createLabel" : "Splitting Loss erstellen", "createOrEditLabel" : "Splitting Loss erstellen oder bearbeiten", "search" : "Suche nach Splitting Loss"}, "created" : "Splitting Loss erstellt mit ID {{ param }}", "updated" : "Splitting Loss aktualisiert mit ID {{ param }}", "deleted" : "Splitting Loss gel\u00f6scht mit ID {{ param }}", "delete" : {"question" : "Soll Splitting Loss {{ id }} wirklich dauerhaft gel\u00f6scht werden?"}, "detail" : {"title" : "Splitting Loss"}, "sectorType" : "Sector Type", "categoryType" : "Category Type", "lossPercentage" : "Loss Percentage", "loss" : "Loss", "selfAssessment" : "Self Assessment"}}}
json_instruct
{"type": "object", "properties": {"hermeneutApp": {"type": "object", "properties": {"splittingLoss": {"type": "object", "properties": {"home": {"type": "object", "properties": {"title": {"type": "string"}, "createLabel": {"type": "string"}, "createOrEditLabel": {"type": "string"}, "search": {"type": "string"}}, "required": ["title", "createLabel", "createOrEditLabel", "search"]}, "created": {"type": "string"}, "updated": {"type": "string"}, "deleted": {"type": "string"}, "delete": {"type": "object", "properties": {"question": {"type": "string"}}, "required": ["question"]}, "detail": {"type": "object", "properties": {"title": {"type": "string"}}, "required": ["title"]}, "sectorType": {"type": "string"}, "categoryType": {"type": "string"}, "lossPercentage": {"type": "string"}, "loss": {"type": "string"}, "selfAssessment": {"type": "string"}}, "required": ["home", "created", "updated", "deleted", "delete", "detail", "sectorType", "categoryType", "lossPercentage", "loss", "selfAssessment"]}}, "required": ["splittingLoss"]}}, "required": ["hermeneutApp"], "$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" : "360112104001", "text" : "\u77f3\u5c97\u8857\u9053\u793e\u533a\u5c45\u59d4\u4f1a"}, {"id" : "360112104002", "text" : "\u957f\u5f81\u793e\u533a\u5c45\u59d4\u4f1a"}, {"id" : "360112104200", "text" : "\u77f3\u5c97\u6751\u59d4\u4f1a"}, {"id" : "360112104201", "text" : "\u5218\u5bb6\u6751\u59d4\u4f1a"}, {"id" : "360112104202", "text" : "\u4fdd\u536b\u6751\u59d4\u4f1a"}, {"id" : "360112104203", "text" : "\u7530\u5317\u6751\u59d4\u4f1a"}, {"id" : "360112104204", "text" : "\u4e0a\u576a\u6751\u59d4\u4f1a"}, {"id" : "360112104205", "text" : "\u65b0\u574a\u6751\u59d4\u4f1a"}, {"id" : "360112104206", "text" : "\u91d1\u57ce\u6751\u59d4\u4f1a"}, {"id" : "360112104207", "text" : "\u590f\u5bb6\u6751\u59d4\u4f1a"}, {"id" : "360112104208", "text" : "\u5c0f\u5cad\u6751\u59d4\u4f1a"}, {"id" : "360112104209", "text" : "\u9526\u5357\u6751\u59d4\u4f1a"}, {"id" : "360112104210", "text" : "\u4ecb\u6a80\u6751\u59d4\u4f1a"}, {"id" : "360112104211", "text" : "\u4e94\u661f\u6751\u59d4\u4f1a"}, {"id" : "360112104212", "text" : "\u5f90\u5858\u6751\u59d4\u4f1a"}, {"id" : "360112104213", "text" : "\u91d1\u5858\u6751\u59d4\u4f1a"}, {"id" : "360112104214", "text" : "\u5357\u7530\u6751\u59d4\u4f1a"}, {"id" : "360112104215", "text" : "\u77f3\u57a6\u6751\u59d4\u4f1a"}, {"id" : "360112104216", "text" : "\u7f57\u5c71\u6751\u59d4\u4f1a"}, {"id" : "360112104217", "text" : "\u4e0a\u7f57\u6751\u59d4\u4f1a"}, {"id" : "360112104218", "text" : "\u6731\u574a\u6751\u59d4\u4f1a"}, {"id" : "360112104219", "text" : "\u5c0f\u5858\u6751\u59d4\u4f1a"}, {"id" : "360112104220", "text" : "\u7b80\u5c71\u6751\u59d4\u4f1a"}, {"id" : "360112104221", "text" : "\u9ad8\u576a\u6751\u59d4\u4f1a"}, {"id" : "360112104222", "text" : "\u51e4\u5c97\u6751\u59d4\u4f1a"}, {"id" : "360112104223", "text" : "\u4e1c\u5b89\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#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"dc.css": {"type": "string"}, "dc.js": {"type": "string"}, "dc.min.css": {"type": "string"}, "dc.min.js": {"type": "string"}}, "required": ["dc.css", "dc.js", "dc.min.css", "dc.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"dc.css" : "sha512-RxyS8fw7ziM/CuB01xDOA4+bseuuHSAPOUGgjCQQ0XINq0bBPunYOWfj57MamJH1DbK+jySwdK7uhh8mG5l80w==", "dc.js" : "sha512-ZmVtEpcRM73nBbT0aieWwzLajFvOMm2i9bChbU67RD+sBbyVF1feqJBs6q5Nxz8cIvjn4C21BFTWedECUFONfw==", "dc.min.css" : "sha512-+thrdF394MD4rhGQ0C4e7s6hq2bNSi1X4rrjEdSdJuuaXrw7H16zCiBStv8mkhed/tvH5RPVz6poWYccqO5XPg==", "dc.min.js" : "sha512-UKfSajfSMOA3MnsbSNkZq+EAloxv4pyXN1x0PJzkmCjjy9bziu67XdGzu79+T8B9pdaINFH3w69uTwIMDG08BQ=="}
json_instruct
{"type": "object", "properties": {"dc.css": {"type": "string"}, "dc.js": {"type": "string"}, "dc.min.css": {"type": "string"}, "dc.min.js": {"type": "string"}}, "required": ["dc.css", "dc.js", "dc.min.css", "dc.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"name": {"type": "string"}, "key": {"type": "string"}, "version": {"type": "string"}, "manifest_version": {"type": "integer"}, "description": {"type": "string"}, "background": {"type": "object", "properties": {"scripts": {"type": "array", "items": {"type": "string"}}}, "required": ["scripts"]}, "permissions": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "key", "version", "manifest_version", "description", "background", "permissions"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "chrome.automation.sanityCheck", "key" : "MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQDJ8Hl8K6R+n/hrPsN1ienxRU3GbL00wFHLJNML45MHwT+3PstgWf4EgC3wbyyTXFtbvJC+Hn14Hyltfhsa+cSraldNHeL+rl+FL04kE4uYHq8YhOYEtzUfg380+o7XV9oESKu9oLTeG9QuQCjmlp3MUqC9wm7ICjxR9flODClOkQIDAQAB", "version" : "0.1", "manifest_version" : 2, "description" : "Tests for the Automation API.", "background" : {"scripts" : ["test.js"]}, "permissions" : ["automation"]}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "key": {"type": "string"}, "version": {"type": "string"}, "manifest_version": {"type": "integer"}, "description": {"type": "string"}, "background": {"type": "object", "properties": {"scripts": {"type": "array", "items": {"type": "string"}}}, "required": ["scripts"]}, "permissions": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "key", "version", "manifest_version", "description", "background", "permissions"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"title": {"type": "string"}, "author": {"type": "string"}, "description": {"type": "string"}, "thumb": {"type": "string"}, "download": {"type": "string"}, "origin": {"type": "string"}}, "required": ["title", "author", "description", "thumb", "download", "origin"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"title" : "[MMD]Angela Balzac \u30a2\u30f3\u30b8\u30a7\u30e9\u30fb\u30d0\u30eb\u30b6\u30c3\u30af Killer Lady", "author" : "HaojieMa", "description" : "Credit<br>Model:undefinedAngelaundefinedBalzacundefinedbyundefinedKakomiki<br>BGM:undefinedKillerundefinedLadyundefinedbyundefinedbyundefinedHachiojiP<br>Stage:undefinedbyundefinedTrackdancer<br>MotionundefinedandundefinedCamera:undefinedbyundefined\u30a2\u30ac\u3061\u3093undefined\u3055\u3093", "thumb" : "//i.iwara.tv/sites/default/files/styles/thumbnail/public/video_embed_field_thumbnails/youtube/PADQgOoqnp8.jpg?itok=_khZ0FnK", "download" : "https://www.iwara.tv/api/video/rwex0cleekuovor42", "origin" : "https://www.iwara.tv/videos/rwex0cleekuovor42"}
json_instruct
{"type": "object", "properties": {"title": {"type": "string"}, "author": {"type": "string"}, "description": {"type": "string"}, "thumb": {"type": "string"}, "download": {"type": "string"}, "origin": {"type": "string"}}, "required": ["title", "author", "description", "thumb", "download", "origin"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"displayName": {"type": "string"}, "description": {"type": "string"}}, "required": ["displayName", "description"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"displayName" : "Monokai Dimmed \u30c6\u30fc\u30de", "description" : "Visual Studio Code \u306e Monokai dimmed \u30c6\u30fc\u30de"}
json_instruct
{"type": "object", "properties": {"displayName": {"type": "string"}, "description": {"type": "string"}}, "required": ["displayName", "description"], "$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" : 16642, "cartId" : "87d15e4c-cc8d-42c4-acb3-50a06e65f574", "preferredProducts" : [1016, 1473, 3481, 4369, 2567, 2261, 4298, 2500, 4552, 2105], "productReviews" : [{"productId" : 1228, "reviewText" : "i use it profusely when i'm in my garage.", "reviewDate" : "2016-07-01T06:54:23.1101837+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#"}