input
stringlengths
159
2.05k
output
stringlengths
5
10.3k
task
stringclasses
1 value
schema
stringlengths
100
1.99k
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"domains": {"type": "array", "items": {"type": "object", "properties": {"config": {"type": "string"}, "bundle": {"type": "string"}}, "required": ["config", "bundle"]}}}, "required": ["domains"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"domains" : [{"config" : "checkout-domain-config", "bundle" : "org.cocoapods.checkout"}]}
json_instruct
{"type": "object", "properties": {"domains": {"type": "array", "items": {"type": "object", "properties": {"config": {"type": "string"}, "bundle": {"type": "string"}}, "required": ["config", "bundle"]}}}, "required": ["domains"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"localities": {"type": "array", "items": {"type": "string"}}, "state": {"type": "string"}, "postal_code": {"type": "string"}, "locality": {"type": "string"}, "lat": {"type": "number"}, "region": {"type": "object", "properties": {"fips": {"type": "string"}, "abbr": {"type": "string"}, "name": {"type": "string"}}, "required": ["fips", "abbr", "name"]}, "city": {"type": "string"}, "type": {"type": "string"}, "lng": {"type": "number"}, "counties": {"type": "array", "items": {"type": "object", "properties": {"fips": {"type": "string"}, "name": {"type": "string"}}, "required": ["fips", "name"]}}}, "required": ["localities", "state", "postal_code", "locality", "lat", "region", "city", "type", "lng", "counties"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"localities" : ["Stone Ridge, NY", "The Vly, NY"], "state" : "NY", "postal_code" : "12484", "locality" : "Stone Ridge, NY", "lat" : 41.861918, "region" : {"fips" : "36", "abbr" : "NY", "name" : "New York"}, "city" : "Stone Ridge", "type" : "STANDARD", "lng" : -74.176528, "counties" : [{"fips" : "111", "name" : "Ulster County"}]}
json_instruct
{"type": "object", "properties": {"localities": {"type": "array", "items": {"type": "string"}}, "state": {"type": "string"}, "postal_code": {"type": "string"}, "locality": {"type": "string"}, "lat": {"type": "number"}, "region": {"type": "object", "properties": {"fips": {"type": "string"}, "abbr": {"type": "string"}, "name": {"type": "string"}}, "required": ["fips", "abbr", "name"]}, "city": {"type": "string"}, "type": {"type": "string"}, "lng": {"type": "number"}, "counties": {"type": "array", "items": {"type": "object", "properties": {"fips": {"type": "string"}, "name": {"type": "string"}}, "required": ["fips", "name"]}}}, "required": ["localities", "state", "postal_code", "locality", "lat", "region", "city", "type", "lng", "counties"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"directions": {"type": "array", "items": {"type": "string"}}, "ingredients": {"type": "array", "items": {"type": "string"}}, "language": {"type": "string"}, "source": {"type": "string"}, "tags": {"type": "array", "items": {}}, "title": {"type": "string"}, "url": {"type": "string"}}, "required": ["directions", "ingredients", "language", "source", "tags", "title", "url"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"directions" : ["Preheat oven to 375 degrees F (190 degrees C). Grease a large baking sheet.", "Whisk cornstarch, chipotle pepper, and salt together in a large bowl. Place chicken wings into the chili mixture; stir until wings are evenly coated. Arrange wings about an inch apart on the prepared baking sheet.", "Bake in the preheated oven until golden on top, about 30 minutes; turn wings over and bake an additional 20 minutes.", "Remove wings from oven; drizzle with maple syrup. Return wings to the oven and bake until deeply golden, about 10 minutes more."], "ingredients" : ["2 tablespoons cornstarch", "1 1/2 tablespoons ground dried chipotle pepper", "1/2 teaspoon salt", "2 pounds chicken wings", "1/3 cup maple syrup"], "language" : "en-US", "source" : "allrecipes.com", "tags" : [], "title" : "Baked Maple and Chipotle Wings", "url" : "http://allrecipes.com/recipe/241474/baked-maple-and-chipotle-wings/"}
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#"}
Based on the schema below, produce a valid JSON object: {"type": "array", "items": {"type": "number"}, "$schema": "http://json-schema.org/draft-07/schema#"}
[1.0679122955902502, 1.6283904436149492, 1.4818973264819215, 2.1505484201508613, 2.2196531320326285, 2.459837222604676, 1.0661499731193673, 1.348635152501732, 2.201749017582687, 2.0890988021591546]
json_instruct
{"type": "array", "items": {"type": "number"}, "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"variants": {"type": "object", "properties": {"powering=true,facing=north": {"type": "object", "properties": {"model": {"type": "string"}, "y": {"type": "integer"}}, "required": ["model", "y"]}, "powering=true,facing=east": {"type": "object", "properties": {"model": {"type": "string"}, "y": {"type": "integer"}}, "required": ["model", "y"]}, "powering=true,facing=south": {"type": "object", "properties": {"model": {"type": "string"}, "y": {"type": "integer"}}, "required": ["model", "y"]}, "powering=true,facing=west": {"type": "object", "properties": {"model": {"type": "string"}, "y": {"type": "integer"}}, "required": ["model", "y"]}, "powering=false,facing=north": {"type": "object", "properties": {"model": {"type": "string"}, "y": {"type": "integer"}}, "required": ["model", "y"]}, "powering=false,facing=east": {"type": "object", "properties": {"model": {"type": "string"}, "y": {"type": "integer"}}, "required": ["model", "y"]}, "powering=false,facing=south": {"type": "object", "properties": {"model": {"type": "string"}, "y": {"type": "integer"}}, "required": ["model", "y"]}, "powering=false,facing=west": {"type": "object", "properties": {"model": {"type": "string"}, "y": {"type": "integer"}}, "required": ["model", "y"]}}, "required": ["powering=true,facing=north", "powering=true,facing=east", "powering=true,facing=south", "powering=true,facing=west", "powering=false,facing=north", "powering=false,facing=east", "powering=false,facing=south", "powering=false,facing=west"]}}, "required": ["variants"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"variants" : {"powering=true,facing=north" : {"model" : "create:block/repeaters/redstone_latch_powered", "y" : 180}, "powering=true,facing=east" : {"model" : "create:block/repeaters/redstone_latch_powered", "y" : 270}, "powering=true,facing=south" : {"model" : "create:block/repeaters/redstone_latch_powered", "y" : 0}, "powering=true,facing=west" : {"model" : "create:block/repeaters/redstone_latch_powered", "y" : 90}, "powering=false,facing=north" : {"model" : "create:block/repeaters/redstone_latch", "y" : 180}, "powering=false,facing=east" : {"model" : "create:block/repeaters/redstone_latch", "y" : 270}, "powering=false,facing=south" : {"model" : "create:block/repeaters/redstone_latch", "y" : 0}, "powering=false,facing=west" : {"model" : "create:block/repeaters/redstone_latch", "y" : 90}}}
json_instruct
{"type": "object", "properties": {"variants": {"type": "object", "properties": {"powering=true,facing=north": {"type": "object", "properties": {"model": {"type": "string"}, "y": {"type": "integer"}}, "required": ["model", "y"]}, "powering=true,facing=east": {"type": "object", "properties": {"model": {"type": "string"}, "y": {"type": "integer"}}, "required": ["model", "y"]}, "powering=true,facing=south": {"type": "object", "properties": {"model": {"type": "string"}, "y": {"type": "integer"}}, "required": ["model", "y"]}, "powering=true,facing=west": {"type": "object", "properties": {"model": {"type": "string"}, "y": {"type": "integer"}}, "required": ["model", "y"]}, "powering=false,facing=north": {"type": "object", "properties": {"model": {"type": "string"}, "y": {"type": "integer"}}, "required": ["model", "y"]}, "powering=false,facing=east": {"type": "object", "properties": {"model": {"type": "string"}, "y": {"type": "integer"}}, "required": ["model", "y"]}, "powering=false,facing=south": {"type": "object", "properties": {"model": {"type": "string"}, "y": {"type": "integer"}}, "required": ["model", "y"]}, "powering=false,facing=west": {"type": "object", "properties": {"model": {"type": "string"}, "y": {"type": "integer"}}, "required": ["model", "y"]}}, "required": ["powering=true,facing=north", "powering=true,facing=east", "powering=true,facing=south", "powering=true,facing=west", "powering=false,facing=north", "powering=false,facing=east", "powering=false,facing=south", "powering=false,facing=west"]}}, "required": ["variants"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"name": {"type": "string"}, "css_prefix_text": {"type": "string"}, "css_use_suffix": {"type": "boolean"}, "hinting": {"type": "boolean"}, "units_per_em": {"type": "integer"}, "ascent": {"type": "integer"}, "glyphs": {"type": "array", "items": {"type": "object", "properties": {"uid": {"type": "string"}, "css": {"type": "string"}, "code": {"type": "integer"}, "src": {"type": "string"}}, "required": ["uid", "css", "code", "src"]}}}, "required": ["name", "css_prefix_text", "css_use_suffix", "hinting", "units_per_em", "ascent", "glyphs"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "", "css_prefix_text" : "icon-", "css_use_suffix" : false, "hinting" : true, "units_per_em" : 1000, "ascent" : 850, "glyphs" : [{"uid" : "ccddff8e8670dcd130e3cb55fdfc2fd0", "css" : "down-open", "code" : 59393, "src" : "fontawesome"}, {"uid" : "54c3330bdeed0fb9042e12d16d46c9ab", "css" : "right-fat", "code" : 59392, "src" : "mfglabs"}, {"uid" : "8c23ecabc7d5df3666a038ad7c699421", "css" : "shuffle", "code" : 59394, "src" : "elusive"}, {"uid" : "98687378abd1faf8f6af97c254eb6cd6", "css" : "cog-alt", "code" : 59395, "src" : "fontawesome"}, {"uid" : "72681d2825fef7fd83711278f845547b", "css" : "cc-by", "code" : 59396, "src" : "entypo"}, {"uid" : "4a413ef43c364dafa42766e74c31bbca", "css" : "cc", "code" : 59397, "src" : "entypo"}, {"uid" : "44e04715aecbca7f266a17d5a7863c68", "css" : "plus", "code" : 59398, "src" : "fontawesome"}, {"uid" : "s51at1xi1fkaomxvp6dqaax5jmyhtn4h", "css" : "basket-alt", "code" : 59399, "src" : "modernpics"}, {"uid" : "5211af474d3a9848f67f945e2ccaf143", "css" : "cancel", "code" : 59400, "src" : "fontawesome"}, {"uid" : "7idv5s1f3qkgmbwbat6xukumwqxkrook", "css" : "chat", "code" : 59401, "src" : "modernpics"}, {"uid" : "7b16b22168e762c88333f465da862098", "css" : "ok", "code" : 59402, "src" : "websymbols"}, {"uid" : "fe6697b391355dec12f3d86d6d490397", "css" : "up-open", "code" : 59403, "src" : "fontawesome"}]}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "css_prefix_text": {"type": "string"}, "css_use_suffix": {"type": "boolean"}, "hinting": {"type": "boolean"}, "units_per_em": {"type": "integer"}, "ascent": {"type": "integer"}, "glyphs": {"type": "array", "items": {"type": "object", "properties": {"uid": {"type": "string"}, "css": {"type": "string"}, "code": {"type": "integer"}, "src": {"type": "string"}}, "required": ["uid", "css", "code", "src"]}}}, "required": ["name", "css_prefix_text", "css_use_suffix", "hinting", "units_per_em", "ascent", "glyphs"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"word": {"type": "string"}, "definitions": {"type": "array", "items": {"type": "string"}}, "parts-of-speech": {"type": "string"}}, "required": ["word", "definitions", "parts-of-speech"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"word" : "Minded", "definitions" : ["Inclined to think in a particular way.", "Interested in or enthusiastic about a particular thing."], "parts-of-speech" : "Adjective"}
json_instruct
{"type": "object", "properties": {"word": {"type": "string"}, "definitions": {"type": "array", "items": {"type": "string"}}, "parts-of-speech": {"type": "string"}}, "required": ["word", "definitions", "parts-of-speech"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"type": {"type": "string"}, "features": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"]}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["type", "coordinates"]}}, "required": ["type", "properties", "geometry"]}}, "_labels": {"type": "object", "properties": {"GM": {"type": "string"}}, "required": ["GM"]}}, "required": ["type", "features", "_labels"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"type" : "FeatureCollection", "features" : [{"type" : "Feature", "properties" : {"name" : "GM"}, "geometry" : {"type" : "Polygon", "coordinates" : [[[-16.763330078124994, 13.064160156249997], [-16.824804687499977, 13.3410645], [-16.6693359, 13.475], [-16.5564453, 13.3032227], [-16.4133789, 13.269726562499997], [-16.1850586, 13.2827148], [-16.158398437499983, 13.384033203124998], [-15.438134765624993, 13.4832031], [-15.569531249999983, 13.499853515624991], [-15.849902343749989, 13.459960937499998], [-16.135449218749983, 13.448242187499998], [-16.3518066, 13.3433594], [-16.440527343749977, 13.353173828124993], [-16.5300781, 13.457958984374997], [-16.5623047, 13.587304687499993], [-16.308740234374994, 13.596875], [-15.509667968749994, 13.586230468750003], [-15.426855468749977, 13.727001953124997], [-15.2695312, 13.789111328125003], [-15.108349609374983, 13.8121094], [-14.935791, 13.785205078125003], [-14.7660156, 13.669091796874994], [-14.570849609374989, 13.616162109374997], [-14.405468749999983, 13.503710937500003], [-14.325537109374977, 13.488574218750003], [-14.1469727, 13.5361328], [-13.977392578124977, 13.543457], [-13.852832031249989, 13.478564453125001], [-13.847509765624977, 13.335302734374991], [-14.246777343749983, 13.2358398], [-14.438574218749975, 13.268896484374991], [-14.671923828124987, 13.351708984374994], [-15.151123046875002, 13.556494140624991], [-15.286230468749977, 13.3959961], [-15.814404296874983, 13.325146484374997], [-15.834277343749987, 13.156445312499997], [-16.648779296874977, 13.154150390624991], [-16.763330078124994, 13.064160156249997]]]}}], "_labels" : {"GM" : "Gambia"}}
json_instruct
{"type": "object", "properties": {"type": {"type": "string"}, "features": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"]}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["type", "coordinates"]}}, "required": ["type", "properties", "geometry"]}}, "_labels": {"type": "object", "properties": {"GM": {"type": "string"}}, "required": ["GM"]}}, "required": ["type", "features", "_labels"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"symbol": {"type": "string"}, "name": {"type": "string"}, "decimals": {"type": "integer"}, "address": {"type": "string"}}, "required": ["symbol", "name", "decimals", "address"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"symbol" : "YRISE", "name" : "yRise Finance", "decimals" : 18, "address" : "0x6051c1354ccc51b4d561e43b02735deae64768b8"}
json_instruct
{"type": "object", "properties": {"symbol": {"type": "string"}, "name": {"type": "string"}, "decimals": {"type": "integer"}, "address": {"type": "string"}}, "required": ["symbol", "name", "decimals", "address"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"storage": {"type": "object", "properties": {"state_separator": {"type": "string"}}, "required": ["state_separator"]}, "markov": {"type": "object", "properties": {"levels": {"type": "integer"}, "imgtype": {"type": "object", "properties": {"__class__": {"type": "string"}, "palette": {"type": "array", "items": {"type": "integer"}}, "convert_type": {"type": "integer"}, "dither": {"type": "boolean"}}, "required": ["__class__", "palette", "convert_type", "dither"]}, "parser": {"type": "object", "properties": {"__class__": {"type": "string"}, "state_sizes": {"type": "array", "items": {"type": "integer"}}, "reset_on_sentence_end": {"type": "boolean"}}, "required": ["__class__", "state_sizes", "reset_on_sentence_end"]}, "scanner": {"type": "object", "properties": {"__class__": {"type": "string"}, "resize": {"type": "null"}, "scale": {"type": "string"}, "level_scale": {"type": "integer"}, "traversal": {"type": "object", "properties": {"__class__": {"type": "string"}, "reverse": {"type": "integer"}, "line_sentences": {"type": "boolean"}}, "required": ["__class__", "reverse", "line_sentences"]}}, "required": ["__class__", "resize", "scale", "level_scale", "traversal"]}}, "required": ["levels", "imgtype", "parser", "scanner"]}}, "required": ["storage", "markov"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"storage" : {"state_separator" : " "}, "markov" : {"levels" : 1, "imgtype" : {"__class__" : "Indexed", "palette" : [8, 4, 8], "convert_type" : 1, "dither" : true}, "parser" : {"__class__" : "Parser", "state_sizes" : [1], "reset_on_sentence_end" : true}, "scanner" : {"__class__" : "ImageScanner", "resize" : null, "scale" : "BICUBIC", "level_scale" : 4, "traversal" : {"__class__" : "HLines", "reverse" : 0, "line_sentences" : false}}}}
json_instruct
{"type": "object", "properties": {"storage": {"type": "object", "properties": {"state_separator": {"type": "string"}}, "required": ["state_separator"]}, "markov": {"type": "object", "properties": {"levels": {"type": "integer"}, "imgtype": {"type": "object", "properties": {"__class__": {"type": "string"}, "palette": {"type": "array", "items": {"type": "integer"}}, "convert_type": {"type": "integer"}, "dither": {"type": "boolean"}}, "required": ["__class__", "palette", "convert_type", "dither"]}, "parser": {"type": "object", "properties": {"__class__": {"type": "string"}, "state_sizes": {"type": "array", "items": {"type": "integer"}}, "reset_on_sentence_end": {"type": "boolean"}}, "required": ["__class__", "state_sizes", "reset_on_sentence_end"]}, "scanner": {"type": "object", "properties": {"__class__": {"type": "string"}, "resize": {"type": "null"}, "scale": {"type": "string"}, "level_scale": {"type": "integer"}, "traversal": {"type": "object", "properties": {"__class__": {"type": "string"}, "reverse": {"type": "integer"}, "line_sentences": {"type": "boolean"}}, "required": ["__class__", "reverse", "line_sentences"]}}, "required": ["__class__", "resize", "scale", "level_scale", "traversal"]}}, "required": ["levels", "imgtype", "parser", "scanner"]}}, "required": ["storage", "markov"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"card_title": {"type": "string"}, "card_type": {"type": "string"}, "card_text": {"type": "string"}, "traits": {"type": "null"}, "amber": {"type": "integer"}, "power": {"type": "null"}, "armor": {"type": "null"}, "rarity": {"type": "string"}, "flavor_text": {"type": "string"}, "card_number": {"type": "string"}, "expansion": {"type": "integer"}, "is_maverick": {"type": "boolean"}, "is_anomaly": {"type": "boolean"}, "houses": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "house": {"type": "string"}, "normal": {"type": "string"}, "zoom": {"type": "string"}}, "required": ["id", "house", "normal", "zoom"]}}, "rules": {"type": "array", "items": {}}}, "required": ["card_title", "card_type", "card_text", "traits", "amber", "power", "armor", "rarity", "flavor_text", "card_number", "expansion", "is_maverick", "is_anomaly", "houses", "rules"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"card_title" : "Ci\u00eancia", "card_type" : "Action", "card_text" : "Jogar: Arquive uma carta.", "traits" : null, "amber" : 1, "power" : null, "armor" : null, "rarity" : "Common", "flavor_text" : "Aten\u00e7\u00e3o aos detalhes \u00e9 a chave do progresso.", "card_number" : "114", "expansion" : 435, "is_maverick" : false, "is_anomaly" : false, "houses" : [{"id" : "ad8b4b70-14a0-4bcf-a50b-6cf073177fd2", "house" : "Logos", "normal" : "https://cdn.keyforgegame.com/media/card_front/pt/435_114_35VV9PR3JRVG_pt.png", "zoom" : "https://cards-keyforge.s3.eu-north-1.amazonaws.com/media/pt/aoa/Logos-114.png"}], "rules" : []}
json_instruct
{"type": "object", "properties": {"card_title": {"type": "string"}, "card_type": {"type": "string"}, "card_text": {"type": "string"}, "traits": {"type": "null"}, "amber": {"type": "integer"}, "power": {"type": "null"}, "armor": {"type": "null"}, "rarity": {"type": "string"}, "flavor_text": {"type": "string"}, "card_number": {"type": "string"}, "expansion": {"type": "integer"}, "is_maverick": {"type": "boolean"}, "is_anomaly": {"type": "boolean"}, "houses": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "house": {"type": "string"}, "normal": {"type": "string"}, "zoom": {"type": "string"}}, "required": ["id", "house", "normal", "zoom"]}}, "rules": {"type": "array", "items": {}}}, "required": ["card_title", "card_type", "card_text", "traits", "amber", "power", "armor", "rarity", "flavor_text", "card_number", "expansion", "is_maverick", "is_anomaly", "houses", "rules"], "$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": {"title": {"type": "string"}, "description": {"type": "string"}, "image": {"type": "string"}}, "required": ["title", "description", "image"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"title" : "Epidemic Reconstruction", "description" : "Inference of epidemic chain of contagion", "image" : "images/features/noun_branding_1885335.svg"}, {"title" : "Risk Tracing", "description" : "Digital contact tracing based on risk assessments", "image" : "images/features/noun_The Process_1885341.svg"}, {"title" : "Inference of Epidemic Parameters", "description" : "Statistical inference of the parameters that govern the epidemic spreading process.", "image" : "images/features/noun_3d modeling_1885342.svg"}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"title": {"type": "string"}, "description": {"type": "string"}, "image": {"type": "string"}}, "required": ["title", "description", "image"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "author": {"type": "string"}, "license": {"type": "string"}, "topics": {"type": "object", "properties": {}, "required": []}, "maxMemory": {"type": "integer"}}, "required": ["id", "name", "version", "description", "main", "scripts", "author", "license", "topics", "maxMemory"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : "com.ninjablocks.zigbee", "name" : "driver-zigbee", "version" : "0.1.6", "description" : "Ninja Sphere - Zigbee Driver", "main" : "driver-go-zigbee", "scripts" : {"test" : "echo \"Error: no test specified\" && exit 1"}, "author" : "Elliot Shepherd <elliot@ninjablocks.com>", "license" : "MIT", "topics" : {}, "maxMemory" : 20}
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "author": {"type": "string"}, "license": {"type": "string"}, "topics": {"type": "object", "properties": {}, "required": []}, "maxMemory": {"type": "integer"}}, "required": ["id", "name", "version", "description", "main", "scripts", "author", "license", "topics", "maxMemory"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "codepoint": {"type": "string"}, "aliases": {"type": "array", "items": {}}, "tags": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "version": {"type": "string"}, "zhs": {"type": "array", "items": {"type": "string"}}, "description": {"type": "string"}, "comments": {"type": "array", "items": {}}}, "required": ["id", "name", "codepoint", "aliases", "tags", "author", "version", "zhs", "description", "comments"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : "9CA22101-6F3D-4EE1-B9F1-C64CE0EFC911", "name" : "less-than-or-equal", "codepoint" : "F097D", "aliases" : [], "tags" : ["Math"], "author" : "Nick", "version" : "2.4.85", "zhs" : ["\u5c0f\u4e8e\u6216\u7b49\u4e8e"], "description" : "", "comments" : []}
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "codepoint": {"type": "string"}, "aliases": {"type": "array", "items": {}}, "tags": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "version": {"type": "string"}, "zhs": {"type": "array", "items": {"type": "string"}}, "description": {"type": "string"}, "comments": {"type": "array", "items": {}}}, "required": ["id", "name", "codepoint", "aliases", "tags", "author", "version", "zhs", "description", "comments"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "array", "items": {"type": "object", "properties": {"adcode": {"type": "string"}, "name": {"type": "string"}, "level": {"type": "string"}, "parent": {"type": "string"}}, "required": ["adcode", "name", "level", "parent"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"adcode" : "330411002", "name" : "\u65b0\u57ce\u8857\u9053", "level" : "street", "parent" : "330411"}, {"adcode" : "330411003", "name" : "\u9ad8\u7167\u8857\u9053", "level" : "street", "parent" : "330411"}, {"adcode" : "330411004", "name" : "\u5609\u5317\u8857\u9053", "level" : "street", "parent" : "330411"}, {"adcode" : "330411005", "name" : "\u5858\u6c47\u8857\u9053", "level" : "street", "parent" : "330411"}, {"adcode" : "330411101", "name" : "\u738b\u6c5f\u6cfe\u9547", "level" : "street", "parent" : "330411"}, {"adcode" : "330411103", "name" : "\u6cb9\u8f66\u6e2f\u9547", "level" : "street", "parent" : "330411"}, {"adcode" : "330411104", "name" : "\u65b0\u584d\u9547", "level" : "street", "parent" : "330411"}, {"adcode" : "330411105", "name" : "\u738b\u5e97\u9547", "level" : "street", "parent" : "330411"}, {"adcode" : "330411106", "name" : "\u6d2a\u5408\u9547", "level" : "street", "parent" : "330411"}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"adcode": {"type": "string"}, "name": {"type": "string"}, "level": {"type": "string"}, "parent": {"type": "string"}}, "required": ["adcode", "name", "level", "parent"]}, "$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": {"a": {"type": "number"}, "om": {"type": "number"}, "e": {"type": "number"}, "i": {"type": "number"}, "q": {"type": "number"}, "w": {"type": "number"}}, "required": ["a", "om", "e", "i", "q", "w"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"a" : 2.48, "om" : 342.93, "e" : 0.6046, "i" : 49.51, "q" : 0.98006, "w" : 165.84}, {"a" : 3.14, "om" : 343.0716, "e" : 0.6864, "i" : 47.44, "q" : 0.98559, "w" : 170.23}, {"a" : 2.94, "om" : 343.0716, "e" : 0.6646, "i" : 47.5, "q" : 0.98557, "w" : 170.12}, {"a" : 2.5, "om" : 337.3588, "e" : 0.6069, "i" : 45.1, "q" : 0.98399, "w" : 169.63}, {"a" : 2.54, "om" : 343.8016, "e" : 0.6103, "i" : 42.73, "q" : 0.98832, "w" : 172.3}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"a": {"type": "number"}, "om": {"type": "number"}, "e": {"type": "number"}, "i": {"type": "number"}, "q": {"type": "number"}, "w": {"type": "number"}}, "required": ["a", "om", "e", "i", "q", "w"]}, "$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"}, "title": {"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": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}, "url": {"type": "string"}, "role": {"type": "string"}}, "required": ["name", "email", "url", "role"]}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "dependencies": {"type": "object", "properties": {"jquery": {"type": "string"}, "lodash": {"type": "string"}}, "required": ["jquery", "lodash"]}, "devDependencies": {"type": "object", "properties": {"browserify": {"type": "string"}, "del": {"type": "string"}, "gulp": {"type": "string"}, "gulp-concat": {"type": "string"}, "gulp-jshint": {"type": "string"}, "gulp-rename": {"type": "string"}, "gulp-sourcemaps": {"type": "string"}, "gulp-tap": {"type": "string"}, "gulp-uglify": {"type": "string"}, "gulp-util": {"type": "string"}, "jshint": {"type": "string"}, "jshint-stylish": {"type": "string"}, "map-stream": {"type": "string"}, "reactify": {"type": "string"}, "vinyl-source-stream": {"type": "string"}}, "required": ["browserify", "del", "gulp", "gulp-concat", "gulp-jshint", "gulp-rename", "gulp-sourcemaps", "gulp-tap", "gulp-uglify", "gulp-util", "jshint", "jshint-stylish", "map-stream", "reactify", "vinyl-source-stream"]}}, "required": ["name", "version", "title", "description", "main", "scripts", "repository", "author", "license", "bugs", "homepage", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "demo_shop", "version" : "0.1.0", "title" : "Demo web shop for the jquery.spa.js plugin", "description" : "Demo web shop", "main" : "./web/js/prod.js", "scripts" : {"test" : "gulp"}, "repository" : {"type" : "git", "url" : "git+https://github.com/cwasser/DemoWebshop.git"}, "author" : {"name" : "Christian Wasser", "email" : "admin@chwasser.de", "url" : "https://github.com/cwasser", "role" : "Maintainer"}, "license" : "MIT", "bugs" : {"url" : "https://github.com/cwasser/DemoWebshop/issues"}, "homepage" : "https://github.com/cwasser/DemoWebshop#readme", "dependencies" : {"jquery" : "^2.2.0", "lodash" : "^4.10.0"}, "devDependencies" : {"browserify" : "^13.0.0", "del" : "^2.2.0", "gulp" : "^3.9.1", "gulp-concat" : "^2.6.0", "gulp-jshint" : "^2.0.0", "gulp-rename" : "^1.2.2", "gulp-sourcemaps" : "^1.6.0", "gulp-tap" : "^0.1.3", "gulp-uglify" : "^1.5.2", "gulp-util" : "^3.0.7", "jshint" : "^2.9.1", "jshint-stylish" : "^2.1.0", "map-stream" : "0.0.6", "reactify" : "^1.1.1", "vinyl-source-stream" : "^1.1.0"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "title": {"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": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}, "url": {"type": "string"}, "role": {"type": "string"}}, "required": ["name", "email", "url", "role"]}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "dependencies": {"type": "object", "properties": {"jquery": {"type": "string"}, "lodash": {"type": "string"}}, "required": ["jquery", "lodash"]}, "devDependencies": {"type": "object", "properties": {"browserify": {"type": "string"}, "del": {"type": "string"}, "gulp": {"type": "string"}, "gulp-concat": {"type": "string"}, "gulp-jshint": {"type": "string"}, "gulp-rename": {"type": "string"}, "gulp-sourcemaps": {"type": "string"}, "gulp-tap": {"type": "string"}, "gulp-uglify": {"type": "string"}, "gulp-util": {"type": "string"}, "jshint": {"type": "string"}, "jshint-stylish": {"type": "string"}, "map-stream": {"type": "string"}, "reactify": {"type": "string"}, "vinyl-source-stream": {"type": "string"}}, "required": ["browserify", "del", "gulp", "gulp-concat", "gulp-jshint", "gulp-rename", "gulp-sourcemaps", "gulp-tap", "gulp-uglify", "gulp-util", "jshint", "jshint-stylish", "map-stream", "reactify", "vinyl-source-stream"]}}, "required": ["name", "version", "title", "description", "main", "scripts", "repository", "author", "license", "bugs", "homepage", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"derivation": {"type": "string"}, "kjv_def": {"type": "string"}, "lemma": {"type": "string"}, "frequency": {"type": "integer"}, "strongs_def": {"type": "string"}, "outline": {"type": "string"}}, "required": ["derivation", "kjv_def", "lemma", "frequency", "strongs_def", "outline"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"derivation" : "from G575 (\u1f00\u03c6\u03af\u03c3\u03c4\u03b7\u03bc\u03b9) and G2476 (\u1f00\u03c6\u03af\u03c3\u03c4\u03b7\u03bc\u03b9);", "kjv_def" : "depart, draw (fall) away, refrain, withdraw self", "lemma" : "\u1f00\u03c6\u03af\u03c3\u03c4\u03b7\u03bc\u03b9", "frequency" : 13, "strongs_def" : " to remove, i.e. (actively) instigate to revolt; usually (reflexively) to desist, desert, etc.", "outline" : "<ol><li> to make stand off, cause to withdraw, to remove<ol><li> to excite to revolt</li></ol><li> to stand off, to stand aloof<ol><li> to go away, to depart from anyone</li><li> to desert, withdraw from one</li><li> to fall away, become faithless</li><li> to shun, flee from</li><li> to cease to vex one</li><li> to withdraw one's self from, to fall away</li><li> to keep one's self from, absent one's self from</li></ol></li></ol>"}
json_instruct
{"type": "object", "properties": {"derivation": {"type": "string"}, "kjv_def": {"type": "string"}, "lemma": {"type": "string"}, "frequency": {"type": "integer"}, "strongs_def": {"type": "string"}, "outline": {"type": "string"}}, "required": ["derivation", "kjv_def", "lemma", "frequency", "strongs_def", "outline"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "array", "items": {"type": "object", "properties": {"DeniedAlternatives": {"type": "array", "items": {}}, "Files": {"type": "object", "properties": {"species/deerkin.species": {"type": "array", "items": {"type": "string"}}}, "required": ["species/deerkin.species"]}, "Texts": {"type": "object", "properties": {"Chs": {"type": "string"}, "Eng": {"type": "string"}}, "required": ["Chs", "Eng"]}}, "required": ["DeniedAlternatives", "Files", "Texts"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"DeniedAlternatives" : [], "Files" : {"species/deerkin.species" : ["/charCreationTooltip/description"]}, "Texts" : {"Chs" : "\u6765\u81ea\u74e6\u6d1b\u65af\u661f\u4e91\u7684\u4e24\u8db3\u52a8\u7269\u822c\u7684\u9e7f\u3002\u4ed6\u4eec\u4ee5\u53ef\u7231\u7684\u5916\u89c2\u800c\u95fb\u540d\uff0c\u8fd9\u4f7f\u4ed6\u4eec\u6df1\u53d7\u8bb8\u591a\u4eba\u7684\u559c\u7231\u3002\n\u5728\u4f4f\u6240\u65b9\u9762\uff0c\u4ed6\u4eec\u66f4\u504f\u7231\u68ee\u6797\u548c\u7530\u91ce\u3002\n\n^orange;\u98df\u6027^reset;\uff1a\u7d20\u98df\u6027\n\n^orange;\uff3b\u5929\u8d4b\uff3d^reset;\n\u589e\u76ca\uff1a\u79fb\u52a8\u901f\u5ea6^green;+8%^reset;\n\u6297\u6027\uff1a\u5c04\u7ebf\u6297\u6027^green;+20%^reset;\uff0c\u6697\u5f71\u6297\u6027^green;+20%^reset;\n\u4ea4\u6613\u8001\u624b\uff08\u9b45\u529b^green;+35%^reset;\uff09\n\n^orange;\uff3b\u73af\u5883\uff3d^reset;\n\u8471\u90c1\uff0c\u68ee\u6797\uff0c\u539f\u59cb\u68ee\u6797\u751f\u6001\uff1a^green;\u589e\u52a0\u751f\u547d\u503c\u4e0a\u9650\u548c\u9632\u5fa1^reset;\n\n^orange;\uff3b\u6b66\u5668\uff3d^reset;\n\u9570\u5200\uff1a\u4f24\u5bb3^green;+10%^reset;\n\u5315\u9996\uff1a\u9632\u5fa1^green;+15%^reset;\n\u72d9\u51fb\u6b65\u67aa\uff1a\u4f24\u5bb3^green;+12%^reset;\n\u69b4\u5f39\u53d1\u5c04\u5668\uff1a\u4f24\u5bb3^green;+15%^reset;\uff0c\u9632\u5fa1^green;+18%^reset;\n\n^red;\uff3b\u5f31\u70b9\uff3d^reset;\n\u6297\u6027\uff1a\u706b\u7130\u6297\u6027^red;-20%^reset;\uff0c\u8f90\u5c04\u6297\u6027^red;-20%^reset;", "Eng" : "Bipedal deer-like people from the Valos Nebula. They are noted for their adorable appearance, which makes them well liked by many. Agrarian, they prefer forests and fields.\n\n ^orange;Diet^reset;: Herbivore\n\n^orange;Perks^reset;:\n +^green;8^reset;% speed\n ^green;Resist^reset;: +^green;20^reset;% Cosmic, Shadow\n Great Traders: +^green;35^reset;% Charisma\n\n^orange;Environment^reset;:\n ^green;Lush, Forest, Primeval^reset; biomes: Health x^green;1.2^reset;, Energy x^green;1.25^reset;\n\n^orange;Weapons^reset;:\n Scythe: Damage x^green;1.1^reset;\n Dagger: Defense x^green;1.15^reset;\n Sniper Rifle: Damage x^green;1.12^reset;\n Grenade Launcher: Damage x^green;1.15^reset;, Defense x^green;1.18^reset;\n\n^red;Weaknesses^reset;:\n ^red;Resist^reset;: -^red;20^reset;% Fire, Radiation"}}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"DeniedAlternatives": {"type": "array", "items": {}}, "Files": {"type": "object", "properties": {"species/deerkin.species": {"type": "array", "items": {"type": "string"}}}, "required": ["species/deerkin.species"]}, "Texts": {"type": "object", "properties": {"Chs": {"type": "string"}, "Eng": {"type": "string"}}, "required": ["Chs", "Eng"]}}, "required": ["DeniedAlternatives", "Files", "Texts"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"}
["front-end-blueprint", "mode-front-end", "ng-next"]
json_instruct
{"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"symbol": {"type": "string"}, "color": {"type": "string"}, "colide": {"type": "boolean"}}, "required": ["symbol", "color", "colide"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"symbol" : "i", "color" : "rgba(0, 0, 0, 0)", "colide" : false}
json_instruct
{"type": "object", "properties": {"symbol": {"type": "string"}, "color": {"type": "string"}, "colide": {"type": "boolean"}}, "required": ["symbol", "color", "colide"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"appid": {"type": "integer"}, "name": {"type": "string"}, "windows": {"type": "boolean"}, "mac": {"type": "boolean"}, "linux": {"type": "boolean"}, "early_access": {"type": "boolean"}, "lookup_time": {"type": "integer"}}, "required": ["appid", "name", "windows", "mac", "linux", "early_access", "lookup_time"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"appid" : 475050, "name" : "bloxyz", "windows" : true, "mac" : false, "linux" : false, "early_access" : false, "lookup_time" : 1490995288}
json_instruct
{"type": "object", "properties": {"appid": {"type": "integer"}, "name": {"type": "string"}, "windows": {"type": "boolean"}, "mac": {"type": "boolean"}, "linux": {"type": "boolean"}, "early_access": {"type": "boolean"}, "lookup_time": {"type": "integer"}}, "required": ["appid", "name", "windows", "mac", "linux", "early_access", "lookup_time"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "summary": {"type": "string"}, "description": {"type": "string"}, "homepage": {"type": "string"}, "license": {"type": "object", "properties": {"type": {"type": "string"}, "file": {"type": "string"}}, "required": ["type", "file"]}, "authors": {"type": "object", "properties": {"Ngo Hung": {"type": "string"}, "The Hung ": {"type": "string"}}, "required": ["Ngo Hung", "The Hung "]}, "platforms": {"type": "object", "properties": {"ios": {"type": "string"}}, "required": ["ios"]}, "source": {"type": "object", "properties": {"git": {"type": "string"}, "tag": {"type": "string"}}, "required": ["git", "tag"]}, "source_files": {"type": "string"}, "requires_arc": {"type": "boolean"}, "pushed_with_swift_version": {"type": "string"}}, "required": ["name", "version", "summary", "description", "homepage", "license", "authors", "platforms", "source", "source_files", "requires_arc", "pushed_with_swift_version"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "NHRangeSlider", "version" : "0.1.1", "summary" : "A custom range slider in Swift.", "description" : "A custom range slider in Swift. Circle/square left right thumbs with labels and custom string format.", "homepage" : "https://github.com/thehung111/NHRangeSlider", "license" : {"type" : "MIT", "file" : "LICENSE"}, "authors" : {"Ngo Hung" : "hung@visenze.com", "The Hung " : "thehung111@gmail.com"}, "platforms" : {"ios" : "8.0"}, "source" : {"git" : "https://github.com/thehung111/NHRangeSlider.git", "tag" : "0.1.1"}, "source_files" : "NHRangeSlider/NHRangeSlider/**/*.{h,swift}", "requires_arc" : true, "pushed_with_swift_version" : "3.0"}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "summary": {"type": "string"}, "description": {"type": "string"}, "homepage": {"type": "string"}, "license": {"type": "object", "properties": {"type": {"type": "string"}, "file": {"type": "string"}}, "required": ["type", "file"]}, "authors": {"type": "object", "properties": {"Ngo Hung": {"type": "string"}, "The Hung ": {"type": "string"}}, "required": ["Ngo Hung", "The Hung "]}, "platforms": {"type": "object", "properties": {"ios": {"type": "string"}}, "required": ["ios"]}, "source": {"type": "object", "properties": {"git": {"type": "string"}, "tag": {"type": "string"}}, "required": ["git", "tag"]}, "source_files": {"type": "string"}, "requires_arc": {"type": "boolean"}, "pushed_with_swift_version": {"type": "string"}}, "required": ["name", "version", "summary", "description", "homepage", "license", "authors", "platforms", "source", "source_files", "requires_arc", "pushed_with_swift_version"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"name": {"type": "string"}, "category": {"type": "string"}, "icon": {"type": "string"}, "sortnum": {"type": "integer"}, "advancement": {"type": "string"}, "read_by_default": {"type": "boolean"}, "pages": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "op_id": {"type": "string"}, "anchor": {"type": "string"}, "input": {"type": "string"}, "output": {"type": "string"}, "text": {"type": "string"}}, "required": ["type", "op_id", "anchor", "input", "output", "text"]}}}, "required": ["name", "category", "icon", "sortnum", "advancement", "read_by_default", "pages"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "hexcasting.entry.lists", "category" : "hexcasting:patterns", "icon" : "minecraft:oak_sign", "sortnum" : 7, "advancement" : "hexcasting:root", "read_by_default" : true, "pages" : [{"type" : "hexcasting:pattern", "op_id" : "hexcasting:index", "anchor" : "hexcasting:index", "input" : "list, number", "output" : "any", "text" : "hexcasting.page.lists.1"}, {"type" : "hexcasting:pattern", "op_id" : "hexcasting:append", "anchor" : "hexcasting:append", "input" : "list, any", "output" : "any", "text" : "hexcasting.page.lists.2"}, {"type" : "hexcasting:pattern", "op_id" : "hexcasting:concat", "anchor" : "hexcasting:concat", "input" : "list, list", "output" : "list", "text" : "hexcasting.page.lists.3"}, {"type" : "hexcasting:pattern", "op_id" : "hexcasting:empty_list", "anchor" : "hexcasting:empty_list", "input" : "", "output" : "list", "text" : "hexcasting.page.lists.4"}, {"type" : "hexcasting:pattern", "op_id" : "hexcasting:singleton", "anchor" : "hexcasting:singleton", "input" : "any", "output" : "list", "text" : "hexcasting.page.lists.5"}, {"type" : "hexcasting:pattern", "op_id" : "hexcasting:last_n_list", "anchor" : "hexcasting:last_n_list", "input" : "num", "output" : "list", "text" : "hexcasting.page.lists.6"}, {"type" : "hexcasting:pattern", "op_id" : "hexcasting:list_size", "anchor" : "hexcasting:list_size", "input" : "list", "output" : "num", "text" : "hexcasting.page.lists.7"}, {"type" : "hexcasting:pattern", "op_id" : "hexcasting:reverse_list", "anchor" : "hexcasting:reverse_list", "input" : "list", "output" : "list", "text" : "hexcasting.page.lists.8"}]}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "category": {"type": "string"}, "icon": {"type": "string"}, "sortnum": {"type": "integer"}, "advancement": {"type": "string"}, "read_by_default": {"type": "boolean"}, "pages": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "op_id": {"type": "string"}, "anchor": {"type": "string"}, "input": {"type": "string"}, "output": {"type": "string"}, "text": {"type": "string"}}, "required": ["type", "op_id", "anchor", "input", "output", "text"]}}}, "required": ["name", "category", "icon", "sortnum", "advancement", "read_by_default", "pages"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"no_of_atoms": {"type": "integer"}, "centre_of_mass": {"type": "array", "items": {"type": "number"}}, "maximum_diameter": {"type": "object", "properties": {"diameter": {"type": "number"}, "atom_1": {"type": "integer"}, "atom_2": {"type": "integer"}}, "required": ["diameter", "atom_1", "atom_2"]}, "pore_diameter": {"type": "object", "properties": {"diameter": {"type": "number"}, "atom": {"type": "integer"}}, "required": ["diameter", "atom"]}, "pore_volume": {"type": "number"}, "pore_diameter_opt": {"type": "object", "properties": {"diameter": {"type": "number"}, "atom_1": {"type": "integer"}, "centre_of_mass": {"type": "array", "items": {"type": "number"}}}, "required": ["diameter", "atom_1", "centre_of_mass"]}, "pore_volume_opt": {"type": "number"}, "windows": {"type": "object", "properties": {"diameters": {"type": "array", "items": {"type": "number"}}, "centre_of_mass": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}, "required": ["diameters", "centre_of_mass"]}}, "required": ["no_of_atoms", "centre_of_mass", "maximum_diameter", "pore_diameter", "pore_volume", "pore_diameter_opt", "pore_volume_opt", "windows"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"no_of_atoms" : 192, "centre_of_mass" : [-2.4202880059180065e-05, 14.176552138925683, 23.316374396687902], "maximum_diameter" : {"diameter" : 22.9265537620107, "atom_1" : 108, "atom_2" : 172}, "pore_diameter" : {"diameter" : 4.462278125300484, "atom" : 38}, "pore_volume" : 46.52308750078625, "pore_diameter_opt" : {"diameter" : 4.46233659430591, "atom_1" : 28, "centre_of_mass" : [6.5584614240203345e-06, 14.176527256026105, 23.316377386176057]}, "pore_volume_opt" : 46.524916293762416, "windows" : {"diameters" : [3.9275700093448207, 2.1836893444022087, 2.1890454685885135, 2.181607799192767, 3.926096991189658], "centre_of_mass" : [[0.0004663743936740498, 14.176655528070036, 26.91273279612844], [-2.0805014384811815, 17.34768802495553, 22.70339292146915], [3.8322932311619917, 13.974654838937031, 23.90580846739825], [-2.0685264183864405, 11.061268309033032, 23.957599399098292], [6.317641643796588e-05, 14.176774110161045, 19.73524129795409]]}}
json_instruct
{"type": "object", "properties": {"no_of_atoms": {"type": "integer"}, "centre_of_mass": {"type": "array", "items": {"type": "number"}}, "maximum_diameter": {"type": "object", "properties": {"diameter": {"type": "number"}, "atom_1": {"type": "integer"}, "atom_2": {"type": "integer"}}, "required": ["diameter", "atom_1", "atom_2"]}, "pore_diameter": {"type": "object", "properties": {"diameter": {"type": "number"}, "atom": {"type": "integer"}}, "required": ["diameter", "atom"]}, "pore_volume": {"type": "number"}, "pore_diameter_opt": {"type": "object", "properties": {"diameter": {"type": "number"}, "atom_1": {"type": "integer"}, "centre_of_mass": {"type": "array", "items": {"type": "number"}}}, "required": ["diameter", "atom_1", "centre_of_mass"]}, "pore_volume_opt": {"type": "number"}, "windows": {"type": "object", "properties": {"diameters": {"type": "array", "items": {"type": "number"}}, "centre_of_mass": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}, "required": ["diameters", "centre_of_mass"]}}, "required": ["no_of_atoms", "centre_of_mass", "maximum_diameter", "pore_diameter", "pore_volume", "pore_diameter_opt", "pore_volume_opt", "windows"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "license": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {}, "required": []}, "dependencies": {"type": "object", "properties": {"inquirer-path": {"type": "string"}}, "required": ["inquirer-path"]}}, "required": ["name", "version", "license", "main", "scripts", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "@jobber/generators", "version" : "0.4.3", "license" : "MIT", "main" : "index.js", "scripts" : {}, "dependencies" : {"inquirer-path" : "^1.0.0-beta5"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "license": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {}, "required": []}, "dependencies": {"type": "object", "properties": {"inquirer-path": {"type": "string"}}, "required": ["inquirer-path"]}}, "required": ["name", "version", "license", "main", "scripts", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"config": {"type": "object", "properties": {"abort": {"type": "object", "properties": {"already_configured": {"type": "string"}}, "required": ["already_configured"]}, "flow_title": {"type": "string"}, "step": {"type": "object", "properties": {"user": {"type": "object", "properties": {"data": {"type": "object", "properties": {"host": {"type": "string"}, "passkey": {"type": "string"}, "port": {"type": "string"}}, "required": ["host", "passkey", "port"]}, "description": {"type": "string"}, "title": {"type": "string"}}, "required": ["data", "description", "title"]}}, "required": ["user"]}}, "required": ["abort", "flow_title", "step"]}}, "required": ["config"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"config" : {"abort" : {"already_configured" : "El dispositivo ya est\u00e1 configurado"}, "flow_title" : "BSB-Lan: {name}", "step" : {"user" : {"data" : {"host" : "Host", "passkey" : "Cadena de clave de acceso", "port" : "Puerto"}, "description" : "Configure su dispositivo BSB-Lan para integrarlo con Safegate Pro.", "title" : "Con\u00e9ctese al dispositivo BSB-Lan"}}}}
json_instruct
{"type": "object", "properties": {"config": {"type": "object", "properties": {"abort": {"type": "object", "properties": {"already_configured": {"type": "string"}}, "required": ["already_configured"]}, "flow_title": {"type": "string"}, "step": {"type": "object", "properties": {"user": {"type": "object", "properties": {"data": {"type": "object", "properties": {"host": {"type": "string"}, "passkey": {"type": "string"}, "port": {"type": "string"}}, "required": ["host", "passkey", "port"]}, "description": {"type": "string"}, "title": {"type": "string"}}, "required": ["data", "description", "title"]}}, "required": ["user"]}}, "required": ["abort", "flow_title", "step"]}}, "required": ["config"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"_id": {"type": "string"}, "argumentId": {"type": "string"}, "parentId": {"type": "string"}, "createDate": {"type": "string"}, "createUserId": {"type": "string"}, "threadId": {"type": "string"}, "ownerType": {"type": "integer"}, "ownerId": {"type": "string"}, "editDate": {"type": "string"}, "editUserId": {"type": "string"}, "against": {"type": "boolean"}, "negative": {"type": "boolean"}, "private": {"type": "boolean"}, "screening": {"type": "object", "properties": {"status": {"type": "integer"}, "history": {"type": "array", "items": {}}}, "required": ["status", "history"]}, "childrenCount": {"type": "object", "properties": {"issues": {"type": "object", "properties": {"total": {"type": "integer"}, "accepted": {"type": "integer"}, "pending": {"type": "integer"}, "rejected": {"type": "integer"}, "acceptedCritical": {"type": "integer"}}, "required": ["total", "accepted", "pending", "rejected", "acceptedCritical"]}, "opinions": {"type": "object", "properties": {"total": {"type": "integer"}, "accepted": {"type": "integer"}, "pending": {"type": "integer"}, "rejected": {"type": "integer"}}, "required": ["total", "accepted", "pending", "rejected"]}}, "required": ["issues", "opinions"]}, "tags": {"type": "array", "items": {}}, "bidirectional": {"type": "boolean"}, "linkType": {"type": "integer"}, "categoryId": {"type": "string"}, "groupId": {"type": "null"}}, "required": ["_id", "argumentId", "parentId", "createDate", "createUserId", "threadId", "ownerType", "ownerId", "editDate", "editUserId", "against", "negative", "private", "screening", "childrenCount", "tags", "bidirectional", "linkType", "categoryId", "groupId"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"_id" : "57c08704c7e841e6064b8724", "argumentId" : "577d9a9cb8ddde7c5a62146e", "parentId" : "563a412a5ecc31ffe163522a", "createDate" : "2016-08-26T18:14:27.998Z", "createUserId" : "561b43d499a0478551eab839", "threadId" : "563a412a5ecc31ffe163522a", "ownerType" : 2, "ownerId" : "563a412a5ecc31ffe163522a", "editDate" : "2016-08-26T18:14:27.998Z", "editUserId" : "561b43d499a0478551eab839", "against" : false, "negative" : false, "private" : false, "screening" : {"status" : 1, "history" : []}, "childrenCount" : {"issues" : {"total" : 0, "accepted" : 0, "pending" : 0, "rejected" : 0, "acceptedCritical" : 0}, "opinions" : {"total" : 0, "accepted" : 0, "pending" : 0, "rejected" : 0}}, "tags" : [], "bidirectional" : true, "linkType" : 1, "categoryId" : "57a025ebd564152b5ba5305f", "groupId" : null}
json_instruct
{"type": "object", "properties": {"_id": {"type": "string"}, "argumentId": {"type": "string"}, "parentId": {"type": "string"}, "createDate": {"type": "string"}, "createUserId": {"type": "string"}, "threadId": {"type": "string"}, "ownerType": {"type": "integer"}, "ownerId": {"type": "string"}, "editDate": {"type": "string"}, "editUserId": {"type": "string"}, "against": {"type": "boolean"}, "negative": {"type": "boolean"}, "private": {"type": "boolean"}, "screening": {"type": "object", "properties": {"status": {"type": "integer"}, "history": {"type": "array", "items": {}}}, "required": ["status", "history"]}, "childrenCount": {"type": "object", "properties": {"issues": {"type": "object", "properties": {"total": {"type": "integer"}, "accepted": {"type": "integer"}, "pending": {"type": "integer"}, "rejected": {"type": "integer"}, "acceptedCritical": {"type": "integer"}}, "required": ["total", "accepted", "pending", "rejected", "acceptedCritical"]}, "opinions": {"type": "object", "properties": {"total": {"type": "integer"}, "accepted": {"type": "integer"}, "pending": {"type": "integer"}, "rejected": {"type": "integer"}}, "required": ["total", "accepted", "pending", "rejected"]}}, "required": ["issues", "opinions"]}, "tags": {"type": "array", "items": {}}, "bidirectional": {"type": "boolean"}, "linkType": {"type": "integer"}, "categoryId": {"type": "string"}, "groupId": {"type": "null"}}, "required": ["_id", "argumentId", "parentId", "createDate", "createUserId", "threadId", "ownerType", "ownerId", "editDate", "editUserId", "against", "negative", "private", "screening", "childrenCount", "tags", "bidirectional", "linkType", "categoryId", "groupId"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"redux.js": {"type": "string"}, "redux.min.js": {"type": "string"}}, "required": ["redux.js", "redux.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"redux.js" : "sha256-NsLnWl7INbmQT3E0nTUPKyH7ajDO2/TzSg2S3S2yZ/8=", "redux.min.js" : "sha256-zvkOopk8OoZ5aJ95lunNWPxmRhUXkT3TBLfeizp6lfc="}
json_instruct
{"type": "object", "properties": {"redux.js": {"type": "string"}, "redux.min.js": {"type": "string"}}, "required": ["redux.js", "redux.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "array", "items": {"type": "object", "properties": {"land_use_code": {"type": "string"}, "land_use_description": {"type": "string"}}, "required": ["land_use_code", "land_use_description"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"land_use_code" : "1111", "land_use_description" : "Single Family (Non-Mobile Home Park)"}, {"land_use_code" : "2222", "land_use_description" : "Mobile Home Park reactivate ME"}, {"land_use_code" : "3333", "land_use_description" : "Townhouse"}, {"land_use_code" : "9600", "land_use_description" : "Vacant Non-Residential (including billboards)"}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"land_use_code": {"type": "string"}, "land_use_description": {"type": "string"}}, "required": ["land_use_code", "land_use_description"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"type": {"type": "string"}, "features": {"type": "array", "items": {"type": "object", "properties": {"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" : [[[-83.876063, 42.825277], [-83.827122, 42.824671], [-83.807254, 42.82566], [-83.805418, 42.781138], [-83.873973, 42.781601], [-83.876063, 42.825277]]]}, "type" : "Feature", "properties" : {"cartodb_id" : 33211}}]}
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#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"type": {"type": "string"}, "level": {"type": "string"}, "label": {"type": "string"}, "locale": {"type": "string"}, "country_id": {"type": "integer"}, "country_reference": {"type": "integer"}, "country_name": {"type": "string"}, "region_id": {"type": "string"}, "region_reference": {"type": "string"}, "region_name": {"type": "string"}, "province_id": {"type": "string"}, "province_reference": {"type": "string"}, "province_name": {"type": "string"}, "city_id": {"type": "string"}, "city_reference": {"type": "string"}, "city_name": {"type": "string"}, "barangay_id": {"type": "string"}, "barangay_reference": {"type": "string"}, "barangay_name": {"type": "string"}}, "required": ["type", "level", "label", "locale", "country_id", "country_reference", "country_name", "region_id", "region_reference", "region_name", "province_id", "province_reference", "province_name", "city_id", "city_reference", "city_name", "barangay_id", "barangay_reference", "barangay_name"]}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}}, "required": ["type", "coordinates"]}}, "required": ["type", "properties", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"type" : "Feature", "properties" : {"type" : "barangay", "level" : "4", "label" : "Amguid, Candon City, Ilocos Sur, Ilocos Region (Region I), PH", "locale" : "ph.ilocos-region-region-i.ilocos-sur.candon-city.amguid", "country_id" : 177, "country_reference" : 177, "country_name" : "Philippines", "region_id" : "11", "region_reference" : "1", "region_name" : "Ilocos Region (Region I)", "province_id" : "35", "province_reference" : "35", "province_name" : "Ilocos Sur", "city_id" : "312", "city_reference" : "618", "city_name" : "Candon City", "barangay_id" : "8636", "barangay_reference" : "14776", "barangay_name" : "Amguid"}, "geometry" : {"type" : "MultiPolygon", "coordinates" : [[[[120.504967, 17.176649], [120.506844, 17.17646], [120.510063, 17.175739], [120.510612, 17.17445], [120.510628, 17.173571], [120.510849, 17.17285], [120.510887, 17.17161], [120.510727, 17.17021], [120.512009, 17.16922], [120.513603, 17.16807], [120.51532, 17.167709], [120.516472, 17.16725], [120.518829, 17.167021], [120.519791, 17.166719], [120.521202, 17.16629], [120.522743, 17.16568], [120.521889, 17.162331], [120.520782, 17.15963], [120.50267, 17.16119], [120.503647, 17.170879], [120.504967, 17.176649]]]]}}
json_instruct
{"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"type": {"type": "string"}, "level": {"type": "string"}, "label": {"type": "string"}, "locale": {"type": "string"}, "country_id": {"type": "integer"}, "country_reference": {"type": "integer"}, "country_name": {"type": "string"}, "region_id": {"type": "string"}, "region_reference": {"type": "string"}, "region_name": {"type": "string"}, "province_id": {"type": "string"}, "province_reference": {"type": "string"}, "province_name": {"type": "string"}, "city_id": {"type": "string"}, "city_reference": {"type": "string"}, "city_name": {"type": "string"}, "barangay_id": {"type": "string"}, "barangay_reference": {"type": "string"}, "barangay_name": {"type": "string"}}, "required": ["type", "level", "label", "locale", "country_id", "country_reference", "country_name", "region_id", "region_reference", "region_name", "province_id", "province_reference", "province_name", "city_id", "city_reference", "city_name", "barangay_id", "barangay_reference", "barangay_name"]}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}}, "required": ["type", "coordinates"]}}, "required": ["type", "properties", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "repository": {"type": "string"}, "description": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"vsts-task-lib": {"type": "string"}}, "required": ["vsts-task-lib"]}, "devDependencies": {"type": "object", "properties": {"@types/mocha": {"type": "string"}, "@types/node": {"type": "string"}, "@types/q": {"type": "string"}, "mocha": {"type": "string"}}, "required": ["@types/mocha", "@types/node", "@types/q", "mocha"]}, "files": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "version", "repository", "description", "license", "dependencies", "devDependencies", "files"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "common", "version" : "0.0.1", "repository" : "https://github.com/GoogleCloudPlatform/google-cloud-tfs.git", "description" : "A package with modules common to all cloud-tools-tfs build tasks", "license" : "Apache-2.0", "dependencies" : {"vsts-task-lib" : "^2.1.0"}, "devDependencies" : {"@types/mocha" : "^2.2.48", "@types/node" : "^7.0.52", "@types/q" : "0.0.32", "mocha" : "^3.5.3"}, "files" : ["*.js", "*.d.ts"]}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "repository": {"type": "string"}, "description": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"vsts-task-lib": {"type": "string"}}, "required": ["vsts-task-lib"]}, "devDependencies": {"type": "object", "properties": {"@types/mocha": {"type": "string"}, "@types/node": {"type": "string"}, "@types/q": {"type": "string"}, "mocha": {"type": "string"}}, "required": ["@types/mocha", "@types/node", "@types/q", "mocha"]}, "files": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "version", "repository", "description", "license", "dependencies", "devDependencies", "files"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"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" : "// FF26- bug: ArrayBuffers are non-extensible, but Object.isExtensible does not report it\nvar fails = require('../internals/fails');\n\nmodule.exports = fails(function () {\n if (typeof ArrayBuffer == 'function') {\n var buffer = new ArrayBuffer(8); // eslint-disable-next-line es/no-object-isextensible, es/no-object-defineproperty -- safe\n\n if (Object.isExtensible(buffer)) Object.defineProperty(buffer, 'a', {\n value: 8\n });\n }\n});", "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#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"auroc": {"type": "array", "items": {"type": "number"}}, "acc": {"type": "array", "items": {"type": "number"}}, "aps": {"type": "array", "items": {"type": "number"}}, "f1": {"type": "array", "items": {"type": "number"}}, "auprc": {"type": "array", "items": {"type": "number"}}}, "required": ["auroc", "acc", "aps", "f1", "auprc"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"auroc" : [0.5463137996219282, 0.5217391304347827, 0.5746691871455576, 0.5463137996219282, 0.5406427221172022], "acc" : [0.5, 0.4782608695652174, 0.4782608695652174, 0.4782608695652174, 0.4782608695652174], "aps" : [0.5475355134101603, 0.5324694956496345, 0.5940050361279811, 0.5587205243507607, 0.5424893005926601], "f1" : [0.634920634920635, 0.6470588235294117, 0.6363636363636364, 0.6363636363636364, 0.6363636363636364], "auprc" : [0.5199067189282821, 0.504951106302486, 0.5673200488513923, 0.531420720761297, 0.515346972179622]}
json_instruct
{"type": "object", "properties": {"auroc": {"type": "array", "items": {"type": "number"}}, "acc": {"type": "array", "items": {"type": "number"}}, "aps": {"type": "array", "items": {"type": "number"}}, "f1": {"type": "array", "items": {"type": "number"}}, "auprc": {"type": "array", "items": {"type": "number"}}}, "required": ["auroc", "acc", "aps", "f1", "auprc"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "PhLImage"}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"id_6216": {"type": "object", "properties": {"title": {"type": "string"}, "language": {"type": "string"}, "totaltime": {"type": "string"}, "url_librivox": {"type": "string"}, "url_iarchive": {"type": "string"}, "readers": {"type": "array", "items": {"type": "string"}}, "authors": {"type": "string"}, "genres": {"type": "string"}}, "required": ["title", "language", "totaltime", "url_librivox", "url_iarchive", "readers", "authors", "genres"]}}, "required": ["id_6216"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id_6216" : {"title" : "Visionary", "language" : "English", "totaltime" : "0:33:11", "url_librivox" : "http://librivox.org/the-visionary-by-ellis-bell-emily-bronte/", "url_iarchive" : "http://www.archive.org/details/visionary_1201_librivox", "readers" : ["1212", "2269", "2525", "2911", "3465", "3470", "4009", "4063", "4705", "4738", "6127", "6548", "6733", "6735", "6963", "6965", "7036", "77"], "authors" : "2072", "genres" : "Poetry"}}
json_instruct
{"type": "object", "properties": {"id_6216": {"type": "object", "properties": {"title": {"type": "string"}, "language": {"type": "string"}, "totaltime": {"type": "string"}, "url_librivox": {"type": "string"}, "url_iarchive": {"type": "string"}, "readers": {"type": "array", "items": {"type": "string"}}, "authors": {"type": "string"}, "genres": {"type": "string"}}, "required": ["title", "language", "totaltime", "url_librivox", "url_iarchive", "readers", "authors", "genres"]}}, "required": ["id_6216"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"y": {"type": "object", "properties": {"value": {"type": "string"}, "history": {"type": "array", "items": {"type": "object", "properties": {"userId": {"type": "integer"}, "timestamp": {"type": "integer"}, "oldValue": {"type": "string"}, "newValue": {"type": "string"}, "explanation": {"type": "null"}}, "required": ["userId", "timestamp", "oldValue", "newValue", "explanation"]}}}, "required": ["value", "history"]}, "equality-explorer-two-variables.title": {"type": "object", "properties": {"value": {"type": "string"}, "history": {"type": "array", "items": {"type": "object", "properties": {"userId": {"type": "integer"}, "timestamp": {"type": "integer"}, "oldValue": {"type": "string"}, "newValue": {"type": "string"}, "explanation": {"type": "null"}}, "required": ["userId", "timestamp", "oldValue", "newValue", "explanation"]}}}, "required": ["value", "history"]}}, "required": ["y", "equality-explorer-two-variables.title"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"y" : {"value" : "y", "history" : [{"userId" : 610145, "timestamp" : 1541100312427, "oldValue" : "", "newValue" : "y", "explanation" : null}]}, "equality-explorer-two-variables.title" : {"value" : "Explorador de Igualdades. Duas Vari\u00e1veis", "history" : [{"userId" : 610145, "timestamp" : 1541100312427, "oldValue" : "", "newValue" : "Explorador de Igualdades. Duas Vari\u00e1veis", "explanation" : null}]}}
json_instruct
{"type": "object", "properties": {"y": {"type": "object", "properties": {"value": {"type": "string"}, "history": {"type": "array", "items": {"type": "object", "properties": {"userId": {"type": "integer"}, "timestamp": {"type": "integer"}, "oldValue": {"type": "string"}, "newValue": {"type": "string"}, "explanation": {"type": "null"}}, "required": ["userId", "timestamp", "oldValue", "newValue", "explanation"]}}}, "required": ["value", "history"]}, "equality-explorer-two-variables.title": {"type": "object", "properties": {"value": {"type": "string"}, "history": {"type": "array", "items": {"type": "object", "properties": {"userId": {"type": "integer"}, "timestamp": {"type": "integer"}, "oldValue": {"type": "string"}, "newValue": {"type": "string"}, "explanation": {"type": "null"}}, "required": ["userId", "timestamp", "oldValue", "newValue", "explanation"]}}}, "required": ["value", "history"]}}, "required": ["y", "equality-explorer-two-variables.title"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"<page title>": {"type": "string"}, "brand": {"type": "string"}, "manufacturer warranty": {"type": "string"}, "megapixels": {"type": "string"}, "model": {"type": "string"}, "optical zoom": {"type": "string"}, "type": {"type": "string"}, "upc": {"type": "string"}}, "required": ["<page title>", "brand", "manufacturer warranty", "megapixels", "model", "optical zoom", "type", "upc"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"<page title>" : "Kodak EasyShare ZD8612 8 1 MP Digital Camera Black ZD8612 041771306939 | eBay", "brand" : "Kodak", "manufacturer warranty" : "No", "megapixels" : "8.1 MP", "model" : "ZD8612", "optical zoom" : "12x", "type" : "Point & Shoot", "upc" : "041771306939"}
json_instruct
{"type": "object", "properties": {"<page title>": {"type": "string"}, "brand": {"type": "string"}, "manufacturer warranty": {"type": "string"}, "megapixels": {"type": "string"}, "model": {"type": "string"}, "optical zoom": {"type": "string"}, "type": {"type": "string"}, "upc": {"type": "string"}}, "required": ["<page title>", "brand", "manufacturer warranty", "megapixels", "model", "optical zoom", "type", "upc"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "array", "items": {"type": "array", "items": {"type": "string"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
[["152921217200", "\u9102\u95e8\u9ad8\u52d2\u560e\u67e5\u6751\u6c11\u59d4\u5458\u4f1a", "210", "0"], ["152921217201", "\u4e4c\u5170\u6cc9\u5409\u560e\u67e5\u6751\u6c11\u59d4\u5458\u4f1a", "220", "0"], ["152921217202", "\u6566\u5fb7\u9ad8\u52d2\u560e\u67e5\u6751\u6c11\u59d4\u5458\u4f1a", "220", "0"], ["152921217203", "\u6556\u52aa\u56fe\u560e\u67e5\u6751\u6c11\u59d4\u5458\u4f1a", "220", "0"], ["152921217204", "\u8f89\u56fe\u9ad8\u52d2\u560e\u67e5\u6751\u6c11\u59d4\u5458\u4f1a", "220", "0"], ["152921217206", "\u624e\u683c\u56fe\u560e\u67e5\u6751\u6c11\u59d4\u5458\u4f1a", "220", "0"], ["152921217217", "\u67e5\u5e72\u5e03\u62c9\u683c\u560e\u67e5\u6751\u6c11\u59d4\u5458\u4f1a", "220", "0"]]
json_instruct
{"type": "array", "items": {"type": "array", "items": {"type": "string"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"_from": {"type": "string"}, "_id": {"type": "string"}, "_inBundle": {"type": "boolean"}, "_integrity": {"type": "string"}, "_location": {"type": "string"}, "_phantomChildren": {"type": "object", "properties": {}, "required": []}, "_requested": {"type": "object", "properties": {"type": {"type": "string"}, "registry": {"type": "boolean"}, "raw": {"type": "string"}, "name": {"type": "string"}, "escapedName": {"type": "string"}, "rawSpec": {"type": "string"}, "saveSpec": {"type": "null"}, "fetchSpec": {"type": "string"}}, "required": ["type", "registry", "raw", "name", "escapedName", "rawSpec", "saveSpec", "fetchSpec"]}, "_requiredBy": {"type": "array", "items": {"type": "string"}}, "_resolved": {"type": "string"}, "_shasum": {"type": "string"}, "_spec": {"type": "string"}, "_where": {"type": "string"}, "bundleDependencies": {"type": "boolean"}, "deprecated": {"type": "boolean"}, "description": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"@as-pect/cli": {"type": "string"}, "assemblyscript": {"type": "string"}}, "required": ["@as-pect/cli", "assemblyscript"]}, "name": {"type": "string"}, "scripts": {"type": "object", "properties": {"asbuild": {"type": "string"}, "asbuild:optimized": {"type": "string"}, "asbuild:untouched": {"type": "string"}, "test": {"type": "string"}}, "required": ["asbuild", "asbuild:optimized", "asbuild:untouched", "test"]}, "types": {"type": "string"}, "version": {"type": "string"}}, "required": ["_from", "_id", "_inBundle", "_integrity", "_location", "_phantomChildren", "_requested", "_requiredBy", "_resolved", "_shasum", "_spec", "_where", "bundleDependencies", "deprecated", "description", "devDependencies", "name", "scripts", "types", "version"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"_from" : "assemblyscript-json@^0.3.3", "_id" : "assemblyscript-json@0.3.3", "_inBundle" : false, "_integrity" : "sha512-TTYZK3rbfan7w5i0lv7bZS4rlXNDe8r/38kjzrQqF6dJaSE/fqSJOnpHsiBTtRgwkLRPL0NAen7ItD/3j9I6eg==", "_location" : "/assemblyscript-json", "_phantomChildren" : {}, "_requested" : {"type" : "range", "registry" : true, "raw" : "assemblyscript-json@^0.3.3", "name" : "assemblyscript-json", "escapedName" : "assemblyscript-json", "rawSpec" : "^0.3.3", "saveSpec" : null, "fetchSpec" : "^0.3.3"}, "_requiredBy" : ["/near-sdk-core"], "_resolved" : "https://registry.npmjs.org/assemblyscript-json/-/assemblyscript-json-0.3.3.tgz", "_shasum" : "cc2d05d432d5df290768c51f72a1f00ff8b52a0d", "_spec" : "assemblyscript-json@^0.3.3", "_where" : "/home/ankit/near/xeggo/new/exp_nr/node_modules/near-sdk-core", "bundleDependencies" : false, "deprecated" : false, "description" : "JSON encoder / decoder for AssemblyScript.", "devDependencies" : {"@as-pect/cli" : "^4.0.0", "assemblyscript" : "^0.14.9"}, "name" : "assemblyscript-json", "scripts" : {"asbuild" : "yarn asbuild:untouched && yarn asbuild:optimized", "asbuild:optimized" : "asc assembly/index.ts -b build/optimized.wasm -t build/optimized.wat --sourceMap --validate --optimize", "asbuild:untouched" : "asc assembly/index.ts -b build/untouched.wasm -t build/untouched.wat --sourceMap --validate --debug", "test" : "asp"}, "types" : "assembly/index.ts", "version" : "0.3.3"}
json_instruct
{"type": "object", "properties": {"_from": {"type": "string"}, "_id": {"type": "string"}, "_inBundle": {"type": "boolean"}, "_integrity": {"type": "string"}, "_location": {"type": "string"}, "_phantomChildren": {"type": "object", "properties": {}, "required": []}, "_requested": {"type": "object", "properties": {"type": {"type": "string"}, "registry": {"type": "boolean"}, "raw": {"type": "string"}, "name": {"type": "string"}, "escapedName": {"type": "string"}, "rawSpec": {"type": "string"}, "saveSpec": {"type": "null"}, "fetchSpec": {"type": "string"}}, "required": ["type", "registry", "raw", "name", "escapedName", "rawSpec", "saveSpec", "fetchSpec"]}, "_requiredBy": {"type": "array", "items": {"type": "string"}}, "_resolved": {"type": "string"}, "_shasum": {"type": "string"}, "_spec": {"type": "string"}, "_where": {"type": "string"}, "bundleDependencies": {"type": "boolean"}, "deprecated": {"type": "boolean"}, "description": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"@as-pect/cli": {"type": "string"}, "assemblyscript": {"type": "string"}}, "required": ["@as-pect/cli", "assemblyscript"]}, "name": {"type": "string"}, "scripts": {"type": "object", "properties": {"asbuild": {"type": "string"}, "asbuild:optimized": {"type": "string"}, "asbuild:untouched": {"type": "string"}, "test": {"type": "string"}}, "required": ["asbuild", "asbuild:optimized", "asbuild:untouched", "test"]}, "types": {"type": "string"}, "version": {"type": "string"}}, "required": ["_from", "_id", "_inBundle", "_integrity", "_location", "_phantomChildren", "_requested", "_requiredBy", "_resolved", "_shasum", "_spec", "_where", "bundleDependencies", "deprecated", "description", "devDependencies", "name", "scripts", "types", "version"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"source": {"type": "string"}, "word": {"type": "string"}, "infinitivo": {"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", "gerundio", "participio", "tenses"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"source" : "http://www.spanishdict.com/conjugate/intimar", "word" : "intimar", "infinitivo" : "intimar", "gerundio" : ["intimando"], "participio" : ["intimado"], "tenses" : {"3" : [["intimo"], ["intimas"], ["intima"], ["intimamos"], ["intim\u00e1is"], ["intiman"]], "4" : [["intim\u00e9"], ["intimaste"], ["intim\u00f3"], ["intimamos"], ["intimasteis"], ["intimaron"]], "5" : [["intimaba"], ["intimabas"], ["intimaba"], ["intim\u00e1bamos"], ["intimabais"], ["intimaban"]], "6" : [["intimar\u00eda"], ["intimar\u00edas"], ["intimar\u00eda"], ["intimar\u00edamos"], ["intimar\u00edais"], ["intimar\u00edan"]], "7" : [["intimar\u00e9"], ["intimar\u00e1s"], ["intimar\u00e1"], ["intimaremos"], ["intimar\u00e9is"], ["intimar\u00e1n"]], "8" : [["intime"], ["intimes"], ["intime"], ["intimemos"], ["intim\u00e9is"], ["intimen"]], "9" : [["intimara"], ["intimaras"], ["intimara"], ["intim\u00e1ramos"], ["intimarais"], ["intimaran"]], "10" : [["intimase"], ["intimases"], ["intimase"], ["intim\u00e1semos"], ["intimaseis"], ["intimasen"]], "11" : [["intimare"], ["intimares"], ["intimare"], ["intim\u00e1remos"], ["intimareis"], ["intimaren"]], "12" : {"1" : ["intima"], "2" : ["intime"], "3" : ["intimemos"], "4" : ["intimad"], "5" : ["intimen"]}}}
json_instruct
{"type": "object", "properties": {"source": {"type": "string"}, "word": {"type": "string"}, "infinitivo": {"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", "gerundio", "participio", "tenses"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"}
["prunedirs", "prunes", "tfk-saksbehandling-elev-skoleskyss-templates", "tfk-saksbehandling-organisasjon-tilskudd-templates"]
json_instruct
{"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "authors": {"type": "array", "items": {"type": "string"}}, "description": {"type": "string"}, "main": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "ignore": {"type": "array", "items": {"type": "string"}}, "dependencies": {"type": "object", "properties": {"angular": {"type": "string"}, "ambersive-db": {"type": "string"}, "bootstrap": {"type": "string"}, "ambersive-router-ui-auth": {"type": "string"}, "angular-ui-router": {"type": "string"}, "angular-bootstrap": {"type": "string"}}, "required": ["angular", "ambersive-db", "bootstrap", "ambersive-router-ui-auth", "angular-ui-router", "angular-bootstrap"]}, "devDependencies": {"type": "object", "properties": {}, "required": []}, "license": {"type": "string"}, "homepage": {"type": "string"}}, "required": ["name", "version", "authors", "description", "main", "keywords", "repository", "ignore", "dependencies", "devDependencies", "license", "homepage"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "ambersive-list", "version" : "0.0.5.1", "authors" : ["Manuel Ihl <manuel.ihl@ambersive.com>"], "description" : "AngularJS (1.5) datalist module for an easy way to display a list of data.", "main" : "build/list.js", "keywords" : ["AngularJS", "Angular", "Auth", "Bootstrap-UI", "Bootstrap"], "repository" : {"type" : "git", "url" : "git://github.com:AMBERSIVE/AngularJS---List.git"}, "ignore" : ["node_modules", "bower_components"], "dependencies" : {"angular" : "*", "ambersive-db" : "*", "bootstrap" : "^3.3.6", "ambersive-router-ui-auth" : "*", "angular-ui-router" : "~0.2.15", "angular-bootstrap" : "^1.2.1"}, "devDependencies" : {}, "license" : "MIT", "homepage" : "http://www.ambersive.com"}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "authors": {"type": "array", "items": {"type": "string"}}, "description": {"type": "string"}, "main": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "ignore": {"type": "array", "items": {"type": "string"}}, "dependencies": {"type": "object", "properties": {"angular": {"type": "string"}, "ambersive-db": {"type": "string"}, "bootstrap": {"type": "string"}, "ambersive-router-ui-auth": {"type": "string"}, "angular-ui-router": {"type": "string"}, "angular-bootstrap": {"type": "string"}}, "required": ["angular", "ambersive-db", "bootstrap", "ambersive-router-ui-auth", "angular-ui-router", "angular-bootstrap"]}, "devDependencies": {"type": "object", "properties": {}, "required": []}, "license": {"type": "string"}, "homepage": {"type": "string"}}, "required": ["name", "version", "authors", "description", "main", "keywords", "repository", "ignore", "dependencies", "devDependencies", "license", "homepage"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"values": {"type": "array", "items": {"type": "string"}}}, "required": ["values"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"values" : ["biomebloodshed:start/doorway"]}
json_instruct
{"type": "object", "properties": {"values": {"type": "array", "items": {"type": "string"}}}, "required": ["values"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "text": {"type": "string"}}, "required": ["id", "text"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"id" : "540530207201", "text" : "\u5409\u5df4\u6751\u59d4\u4f1a"}, {"id" : "540530207202", "text" : "\u8ba9\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": "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" : "Channay-sur-Lathan", "circ" : "5\u00e8me circonscription", "dpt" : "Indre-et-Loire", "inscrits" : 551, "abs" : 329, "votants" : 222, "blancs" : 26, "nuls" : 9, "exp" : 187, "res" : [{"nuance" : "LR", "nom" : "M. Fabrice BOIGARD", "voix" : 96}, {"nuance" : "REM", "nom" : "Mme Sabine THILLAYE", "voix" : 91}]}
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#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"publicKeys": {"type": "array", "items": {"type": "string"}}, "script": {"type": "string"}, "witness": {"type": "array", "items": {"type": "string"}}, "scriptASM": {"type": "array", "items": {"type": "string"}}, "tapscriptASM": {"type": "array", "items": {"type": "string"}}, "classifyInput": {"type": "string"}, "classifyWitness": {"type": "string"}, "classifyTapscript": {"type": "string"}}, "required": ["publicKeys", "script", "witness", "scriptASM", "tapscriptASM", "classifyInput", "classifyWitness", "classifyTapscript"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"publicKeys" : ["028fedaf75b5b08cddf3bf4631c658b68ee6766a8e999467a641d7cb7aaaecec97", "03316bc27d95b96418349afc6298c259bb999c6e8f39a7217787ad53602be7c147", "02e21c29b4a7eeace9c7a8cefb568ca00c86ff9bf5e79e07e5442c29d4a0950d04"], "script" : "", "witness" : ["09f7a2345524f31c22820ff630ffddb0f9c6c0c2c19b10225ab6f011b4ed7db38b4137d5c4b7103779da73c94a96b814cf9c0c9faab657495fd84999c4528413", "fe9e85083cd62a9d261f24bb353d13bab2e58c1f7b5b7acb39301ab8bdde01e20b33f3c8000d20ec4abea1a503231eb6f66b844bf24b39ba6add0a7d89ff8a28", "208fedaf75b5b08cddf3bf4631c658b68ee6766a8e999467a641d7cb7aaaecec97ad20316bc27d95b96418349afc6298c259bb999c6e8f39a7217787ad53602be7c147ac", "c169d984b8967c360d084920bb8536dddef42b1ccb6337f2d310a8dabd24d43cc211a937b0d75c4643e63275be7e2d8490a7e1e5722111423a69999aba4ee1d2315c5c9909005a0cb327f9408d7b977026ae0736b2255efb1aa80386025827669a"], "scriptASM" : [""], "tapscriptASM" : ["8fedaf75b5b08cddf3bf4631c658b68ee6766a8e999467a641d7cb7aaaecec97", "OP_CHECKSIGVERIFY", "316bc27d95b96418349afc6298c259bb999c6e8f39a7217787ad53602be7c147", "OP_CHECKSIG"], "classifyInput" : "nonstandard", "classifyWitness" : "taproot", "classifyTapscript" : "taprootnofn"}
json_instruct
{"type": "object", "properties": {"publicKeys": {"type": "array", "items": {"type": "string"}}, "script": {"type": "string"}, "witness": {"type": "array", "items": {"type": "string"}}, "scriptASM": {"type": "array", "items": {"type": "string"}}, "tapscriptASM": {"type": "array", "items": {"type": "string"}}, "classifyInput": {"type": "string"}, "classifyWitness": {"type": "string"}, "classifyTapscript": {"type": "string"}}, "required": ["publicKeys", "script", "witness", "scriptASM", "tapscriptASM", "classifyInput", "classifyWitness", "classifyTapscript"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"version": {"type": "string"}, "appDir": {"type": "string"}, "assetsDir": {"type": "string"}, "libs": {"type": "object", "properties": {"ria": {"type": "string"}}, "required": ["ria"]}, "options": {"type": "object", "properties": {"uglifyjs": {"type": "object", "properties": {"output": {"type": "object", "properties": {"beautify": {"type": "boolean"}}, "required": ["beautify"]}}, "required": ["output"]}}, "required": ["uglifyjs"]}, "modules": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "in": {"type": "string"}, "out": {"type": "string"}}, "required": ["name", "in", "out"]}}}, "required": ["version", "appDir", "assetsDir", "libs", "options", "modules"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"version" : "3.0", "appDir" : "./", "assetsDir" : "./", "libs" : {"ria" : "../../../../src/framework/"}, "options" : {"uglifyjs" : {"output" : {"beautify" : true}}}, "modules" : [{"name" : "future_test", "in" : "./future_test.js", "out" : "./future_test.compiled.js"}]}
json_instruct
{"type": "object", "properties": {"version": {"type": "string"}, "appDir": {"type": "string"}, "assetsDir": {"type": "string"}, "libs": {"type": "object", "properties": {"ria": {"type": "string"}}, "required": ["ria"]}, "options": {"type": "object", "properties": {"uglifyjs": {"type": "object", "properties": {"output": {"type": "object", "properties": {"beautify": {"type": "boolean"}}, "required": ["beautify"]}}, "required": ["output"]}}, "required": ["uglifyjs"]}, "modules": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "in": {"type": "string"}, "out": {"type": "string"}}, "required": ["name", "in", "out"]}}}, "required": ["version", "appDir", "assetsDir", "libs", "options", "modules"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"id": {"type": "integer"}, "title": {"type": "string"}, "points": {"type": "integer"}, "description": {"type": "string"}, "rewardItems": {"type": "array", "items": {}}, "icon": {"type": "string"}, "criteria": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "description": {"type": "string"}, "orderIndex": {"type": "integer"}, "max": {"type": "integer"}}, "required": ["id", "description", "orderIndex", "max"]}}, "accountWide": {"type": "boolean"}, "factionId": {"type": "integer"}}, "required": ["id", "title", "points", "description", "rewardItems", "icon", "criteria", "accountWide", "factionId"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : 5372, "title" : "Cataclysmically Epic", "points" : 10, "description" : "Equip an epic item in every slot with a minimum item level of 359.", "rewardItems" : [], "icon" : "inv_enchant_voidcrystal", "criteria" : [{"id" : 15330, "description" : "Head", "orderIndex" : 1, "max" : 1}, {"id" : 15331, "description" : "Neck", "orderIndex" : 2, "max" : 1}, {"id" : 15332, "description" : "Shoulder", "orderIndex" : 3, "max" : 1}, {"id" : 15333, "description" : "Chest", "orderIndex" : 4, "max" : 1}, {"id" : 15334, "description" : "Waist", "orderIndex" : 5, "max" : 1}, {"id" : 15335, "description" : "Legs", "orderIndex" : 6, "max" : 1}, {"id" : 15336, "description" : "Feet", "orderIndex" : 7, "max" : 1}, {"id" : 15337, "description" : "Wrist", "orderIndex" : 8, "max" : 1}, {"id" : 15338, "description" : "Hands", "orderIndex" : 9, "max" : 1}, {"id" : 15339, "description" : "Left Ring", "orderIndex" : 10, "max" : 1}, {"id" : 15340, "description" : "Right Ring", "orderIndex" : 11, "max" : 1}, {"id" : 15341, "description" : "First Trinket", "orderIndex" : 12, "max" : 1}, {"id" : 15342, "description" : "Second Trinket", "orderIndex" : 13, "max" : 1}, {"id" : 15343, "description" : "Cloak", "orderIndex" : 14, "max" : 1}, {"id" : 15344, "description" : "Weapon", "orderIndex" : 15, "max" : 1}], "accountWide" : false, "factionId" : 2}
json_instruct
{"type": "object", "properties": {"id": {"type": "integer"}, "title": {"type": "string"}, "points": {"type": "integer"}, "description": {"type": "string"}, "rewardItems": {"type": "array", "items": {}}, "icon": {"type": "string"}, "criteria": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "description": {"type": "string"}, "orderIndex": {"type": "integer"}, "max": {"type": "integer"}}, "required": ["id", "description", "orderIndex", "max"]}}, "accountWide": {"type": "boolean"}, "factionId": {"type": "integer"}}, "required": ["id", "title", "points", "description", "rewardItems", "icon", "criteria", "accountWide", "factionId"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"rules": {"type": "object", "properties": {"/xplore/i": {"type": "string"}, "/my_mini_tab/i": {"type": "string"}}, "required": ["/xplore/i", "/my_mini_tab/i"]}, "generic": {"type": "string"}}, "required": ["rules", "generic"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"rules" : {"/xplore/i" : "cosmote xplore", "/my_mini_tab/i" : "cosmote my mini tablet"}, "generic" : "general cosmote device"}
json_instruct
{"type": "object", "properties": {"rules": {"type": "object", "properties": {"/xplore/i": {"type": "string"}, "/my_mini_tab/i": {"type": "string"}}, "required": ["/xplore/i", "/my_mini_tab/i"]}, "generic": {"type": "string"}}, "required": ["rules", "generic"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "manifest_version": {"type": "integer"}, "content_scripts": {"type": "array", "items": {"type": "object", "properties": {"matches": {"type": "array", "items": {"type": "string"}}, "js": {"type": "array", "items": {"type": "string"}}}, "required": ["matches", "js"]}}, "background": {"type": "object", "properties": {"matches": {"type": "array", "items": {"type": "string"}}, "scripts": {"type": "array", "items": {"type": "string"}}}, "required": ["matches", "scripts"]}, "permissions": {"type": "array", "items": {"type": "string"}}, "browser_action": {"type": "object", "properties": {"default_popup": {"type": "string"}}, "required": ["default_popup"]}, "icons": {"type": "object", "properties": {"16": {"type": "string"}, "32": {"type": "string"}, "48": {"type": "string"}, "64": {"type": "string"}, "128": {"type": "string"}}, "required": ["16", "32", "48", "64", "128"]}}, "required": ["name", "version", "description", "manifest_version", "content_scripts", "background", "permissions", "browser_action", "icons"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "Youtube Playlist Total Duration Calculator", "version" : "3.2.1", "description" : "this extension is calculating total time of all videos in youtube playlist which you are watching. enjoy it!", "manifest_version" : 2, "content_scripts" : [{"matches" : ["*://*.youtube.com/*list*", "*://*.youtube.com/playlist*"], "js" : ["yptd.js"]}], "background" : {"matches" : ["https://*.youtube.com/*list*", "https://*.youtube.com/playlist*"], "scripts" : ["background.js"]}, "permissions" : ["https://*.youtube.com/*", "webNavigation", "tabs"], "browser_action" : {"default_popup" : "popup.html"}, "icons" : {"16" : "images/icon16.png", "32" : "images/icon32.png", "48" : "images/icon48.png", "64" : "images/icon64.png", "128" : "images/icon128.png"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "manifest_version": {"type": "integer"}, "content_scripts": {"type": "array", "items": {"type": "object", "properties": {"matches": {"type": "array", "items": {"type": "string"}}, "js": {"type": "array", "items": {"type": "string"}}}, "required": ["matches", "js"]}}, "background": {"type": "object", "properties": {"matches": {"type": "array", "items": {"type": "string"}}, "scripts": {"type": "array", "items": {"type": "string"}}}, "required": ["matches", "scripts"]}, "permissions": {"type": "array", "items": {"type": "string"}}, "browser_action": {"type": "object", "properties": {"default_popup": {"type": "string"}}, "required": ["default_popup"]}, "icons": {"type": "object", "properties": {"16": {"type": "string"}, "32": {"type": "string"}, "48": {"type": "string"}, "64": {"type": "string"}, "128": {"type": "string"}}, "required": ["16", "32", "48", "64", "128"]}}, "required": ["name", "version", "description", "manifest_version", "content_scripts", "background", "permissions", "browser_action", "icons"], "$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" : 11610, "cartId" : "e8dcc1c0-1a3b-47e0-8119-206803de530c", "preferredProducts" : [4170, 3379, 4315, 89, 3088, 550], "productReviews" : [{"productId" : 311, "reviewText" : "My co-worker Delton has one of these. He says it looks slender.", "reviewDate" : "2017-11-09T23:39:20.4294979+02:00"}, {"productId" : 2107, "reviewText" : "I saw one of these in Grenada and I bought one.", "reviewDate" : "2019-07-25T21:57:45.9790765+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#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"csv-stringify": {"type": "string"}, "ld-jsonstream": {"type": "string"}, "ndjson": {"type": "string"}, "stream-transform": {"type": "string"}, "yargs": {"type": "string"}}, "required": ["csv-stringify", "ld-jsonstream", "ndjson", "stream-transform", "yargs"]}, "devDependencies": {"type": "object", "properties": {"@types/ndjson": {"type": "string"}, "@types/node": {"type": "string"}, "@types/yargs": {"type": "string"}, "prettier": {"type": "string"}, "ts-node": {"type": "string"}, "typescript": {"type": "string"}}, "required": ["@types/ndjson", "@types/node", "@types/yargs", "prettier", "ts-node", "typescript"]}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}}, "required": ["start"]}}, "required": ["name", "version", "license", "dependencies", "devDependencies", "scripts"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "mm2slack", "version" : "1.0.0", "license" : "MIT", "dependencies" : {"csv-stringify" : "^5.6.2", "ld-jsonstream" : "^2.0.2", "ndjson" : "^2.0.0", "stream-transform" : "^2.1.0", "yargs" : "^17.0.1"}, "devDependencies" : {"@types/ndjson" : "^2.0.0", "@types/node" : "^15.3.0", "@types/yargs" : "^16.0.1", "prettier" : "2.3.0", "ts-node" : "^9.1.1", "typescript" : "^4.2.4"}, "scripts" : {"start" : "ts-node src/index.ts"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"csv-stringify": {"type": "string"}, "ld-jsonstream": {"type": "string"}, "ndjson": {"type": "string"}, "stream-transform": {"type": "string"}, "yargs": {"type": "string"}}, "required": ["csv-stringify", "ld-jsonstream", "ndjson", "stream-transform", "yargs"]}, "devDependencies": {"type": "object", "properties": {"@types/ndjson": {"type": "string"}, "@types/node": {"type": "string"}, "@types/yargs": {"type": "string"}, "prettier": {"type": "string"}, "ts-node": {"type": "string"}, "typescript": {"type": "string"}}, "required": ["@types/ndjson", "@types/node", "@types/yargs", "prettier", "ts-node", "typescript"]}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}}, "required": ["start"]}}, "required": ["name", "version", "license", "dependencies", "devDependencies", "scripts"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"typescript.tsdk": {"type": "string"}, "[typescriptreact]": {"type": "object", "properties": {"editor.defaultFormatter": {"type": "string"}}, "required": ["editor.defaultFormatter"]}, "[javascript]": {"type": "object", "properties": {"editor.defaultFormatter": {"type": "string"}}, "required": ["editor.defaultFormatter"]}, "[json]": {"type": "object", "properties": {"editor.defaultFormatter": {"type": "string"}}, "required": ["editor.defaultFormatter"]}, "typescript.updateImportsOnFileMove.enabled": {"type": "string"}, "editor.codeActionsOnSave": {"type": "object", "properties": {"source.fixAll.tslint": {"type": "boolean"}}, "required": ["source.fixAll.tslint"]}, "[html]": {"type": "object", "properties": {"editor.defaultFormatter": {"type": "string"}}, "required": ["editor.defaultFormatter"]}, "[jsonc]": {"type": "object", "properties": {"editor.defaultFormatter": {"type": "string"}}, "required": ["editor.defaultFormatter"]}}, "required": ["typescript.tsdk", "[typescriptreact]", "[javascript]", "[json]", "typescript.updateImportsOnFileMove.enabled", "editor.codeActionsOnSave", "[html]", "[jsonc]"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"typescript.tsdk" : "node_modules\\typescript\\lib", "[typescriptreact]" : {"editor.defaultFormatter" : "vscode.typescript-language-features"}, "[javascript]" : {"editor.defaultFormatter" : "vscode.typescript-language-features"}, "[json]" : {"editor.defaultFormatter" : "vscode.json-language-features"}, "typescript.updateImportsOnFileMove.enabled" : "always", "editor.codeActionsOnSave" : {"source.fixAll.tslint" : true}, "[html]" : {"editor.defaultFormatter" : "HookyQR.beautify"}, "[jsonc]" : {"editor.defaultFormatter" : "HookyQR.beautify"}}
json_instruct
{"type": "object", "properties": {"typescript.tsdk": {"type": "string"}, "[typescriptreact]": {"type": "object", "properties": {"editor.defaultFormatter": {"type": "string"}}, "required": ["editor.defaultFormatter"]}, "[javascript]": {"type": "object", "properties": {"editor.defaultFormatter": {"type": "string"}}, "required": ["editor.defaultFormatter"]}, "[json]": {"type": "object", "properties": {"editor.defaultFormatter": {"type": "string"}}, "required": ["editor.defaultFormatter"]}, "typescript.updateImportsOnFileMove.enabled": {"type": "string"}, "editor.codeActionsOnSave": {"type": "object", "properties": {"source.fixAll.tslint": {"type": "boolean"}}, "required": ["source.fixAll.tslint"]}, "[html]": {"type": "object", "properties": {"editor.defaultFormatter": {"type": "string"}}, "required": ["editor.defaultFormatter"]}, "[jsonc]": {"type": "object", "properties": {"editor.defaultFormatter": {"type": "string"}}, "required": ["editor.defaultFormatter"]}}, "required": ["typescript.tsdk", "[typescriptreact]", "[javascript]", "[json]", "typescript.updateImportsOnFileMove.enabled", "editor.codeActionsOnSave", "[html]", "[jsonc]"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
[[2000, 7], [2003, 6], [2012, 8]]
json_instruct
{"type": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "array", "items": {"type": "object", "properties": {"results": {"type": "array", "items": {"type": "object", "properties": {"tech": {"type": "integer"}, "pts": {"type": "integer"}, "connections": {"type": "integer"}, "capacity": {"type": "integer"}, "investments": {"type": "integer"}}, "required": ["tech", "pts", "connections", "capacity", "investments"]}}}, "required": ["results"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"results" : [{"tech" : 1, "pts" : 1107, "connections" : 265174, "capacity" : 18091688, "investments" : 165992244}, {"tech" : 3, "pts" : 11, "connections" : 473, "capacity" : 92065, "investments" : 506358}]}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"results": {"type": "array", "items": {"type": "object", "properties": {"tech": {"type": "integer"}, "pts": {"type": "integer"}, "connections": {"type": "integer"}, "capacity": {"type": "integer"}, "investments": {"type": "integer"}}, "required": ["tech", "pts", "connections", "capacity", "investments"]}}}, "required": ["results"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "dependencies": {"type": "object", "properties": {"node-sass": {"type": "string"}}, "required": ["node-sass"]}}, "required": ["name", "version", "description", "main", "scripts", "repository", "keywords", "author", "license", "bugs", "homepage", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "adventure-time-cards", "version" : "1.0.0", "description" : "Cards with the characters from animated show called \"Adventure time\"", "main" : "index.html", "scripts" : {"test" : "echo \"Error: no test specified\" && exit 1"}, "repository" : {"type" : "git", "url" : "git+https://github.com/Vorbert-Kruk/adventure-time-cards.git"}, "keywords" : ["adventure", "time", "cards"], "author" : "Norbert Kruk", "license" : "MIT", "bugs" : {"url" : "https://github.com/Vorbert-Kruk/adventure-time-cards/issues"}, "homepage" : "https://github.com/Vorbert-Kruk/adventure-time-cards#readme", "dependencies" : {"node-sass" : "^4.14.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"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "dependencies": {"type": "object", "properties": {"node-sass": {"type": "string"}}, "required": ["node-sass"]}}, "required": ["name", "version", "description", "main", "scripts", "repository", "keywords", "author", "license", "bugs", "homepage", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"id": {"type": "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" : 404370871, "type" : "Feature", "properties" : {"src:alt_label" : "quattroshapes", "src:geom" : "quattroshapes", "wof:geomhash" : "58d670eb21e5848fe3bdc3294e4661fb", "wof:id" : 404370871, "wof:repo" : "whosonfirst-data-admin-fr"}, "bbox" : [1.60870842610552, 48.80138085742161, 1.65891441129719, 48.84884320321232], "geometry" : {"coordinates" : [[[1.62005324865026, 48.80138085742161], [1.61915062392644, 48.8082156276237], [1.60870842610552, 48.8198419478032], [1.62194098918751, 48.82888209418155], [1.62038934213647, 48.84478489589563], [1.62366186074501, 48.84884320321232], [1.64345776600217, 48.83863552686867], [1.64855931458672, 48.8389541222476], [1.65219737861489, 48.84528242287145], [1.65891441129719, 48.84163414446016], [1.65207356555528, 48.82319903968735], [1.65620443923622, 48.82148255680223], [1.65127257432143, 48.81203641252895], [1.62881614781053, 48.80368548499646], [1.62548839521927, 48.80491555682384], [1.62005324865026, 48.80138085742161]]], "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#"}
Generate a valid JSON object that conforms to the following schema: {"type": "array", "items": {"type": "object", "properties": {"_id": {"type": "string"}, "_type": {"type": "string"}, "_source": {"type": "object", "properties": {"title": {"type": "string"}, "hits": {"type": "integer"}, "description": {"type": "string"}, "panelsJSON": {"type": "string"}, "optionsJSON": {"type": "string"}, "uiStateJSON": {"type": "string"}, "version": {"type": "integer"}, "timeRestore": {"type": "boolean"}, "kibanaSavedObjectMeta": {"type": "object", "properties": {"searchSourceJSON": {"type": "string"}}, "required": ["searchSourceJSON"]}}, "required": ["title", "hits", "description", "panelsJSON", "optionsJSON", "uiStateJSON", "version", "timeRestore", "kibanaSavedObjectMeta"]}}, "required": ["_id", "_type", "_source"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"_id" : "osstracker-all-repos-stats", "_type" : "dashboard", "_source" : {"title" : "OSS Tracker _ All Repos _ Overview", "hits" : 0, "description" : "", "panelsJSON" : "[{\"col\":1,\"id\":\"osstracker-per-repo-open-issues-bars\",\"panelIndex\":1,\"row\":1,\"size_x\":6,\"size_y\":4,\"type\":\"visualization\"},{\"col\":7,\"id\":\"osstracker-per-repo-open-pullrequests-bars\",\"panelIndex\":2,\"row\":1,\"size_x\":6,\"size_y\":4,\"type\":\"visualization\"},{\"col\":1,\"id\":\"osstracker-per-repo-open-issues-stacked\",\"panelIndex\":3,\"row\":8,\"size_x\":6,\"size_y\":4,\"type\":\"visualization\"},{\"col\":7,\"id\":\"osstracker-per-repo-open-pullrequests-stacked\",\"panelIndex\":4,\"row\":8,\"size_x\":6,\"size_y\":4,\"type\":\"visualization\"},{\"col\":1,\"id\":\"AWACTqn9rcBqLUquJtNm\",\"panelIndex\":5,\"row\":12,\"size_x\":6,\"size_y\":3,\"type\":\"visualization\"},{\"col\":7,\"id\":\"AWACRuOTrcBqLUquJtNj\",\"panelIndex\":6,\"row\":12,\"size_x\":6,\"size_y\":3,\"type\":\"visualization\"},{\"col\":1,\"id\":\"AWACSeg4rcBqLUquJtNl\",\"panelIndex\":7,\"row\":5,\"size_x\":6,\"size_y\":3,\"type\":\"visualization\"},{\"col\":7,\"id\":\"AWACSSTdrcBqLUquJtNk\",\"panelIndex\":8,\"row\":5,\"size_x\":6,\"size_y\":3,\"type\":\"visualization\"}]", "optionsJSON" : "{\"darkTheme\":false}", "uiStateJSON" : "{\"P-1\":{\"vis\":{\"legendOpen\":false}},\"P-2\":{\"vis\":{\"legendOpen\":false}},\"P-3\":{\"vis\":{\"legendOpen\":true}},\"P-4\":{\"vis\":{\"legendOpen\":false}},\"P-7\":{\"vis\":{\"legendOpen\":false}},\"P-8\":{\"vis\":{\"legendOpen\":false}}}", "version" : 1, "timeRestore" : false, "kibanaSavedObjectMeta" : {"searchSourceJSON" : "{\"filter\":[{\"query\":{\"query_string\":{\"analyze_wildcard\":true,\"query\":\"*\"}}}],\"highlightAll\":true,\"version\":true}"}}}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"_id": {"type": "string"}, "_type": {"type": "string"}, "_source": {"type": "object", "properties": {"title": {"type": "string"}, "hits": {"type": "integer"}, "description": {"type": "string"}, "panelsJSON": {"type": "string"}, "optionsJSON": {"type": "string"}, "uiStateJSON": {"type": "string"}, "version": {"type": "integer"}, "timeRestore": {"type": "boolean"}, "kibanaSavedObjectMeta": {"type": "object", "properties": {"searchSourceJSON": {"type": "string"}}, "required": ["searchSourceJSON"]}}, "required": ["title", "hits", "description", "panelsJSON", "optionsJSON", "uiStateJSON", "version", "timeRestore", "kibanaSavedObjectMeta"]}}, "required": ["_id", "_type", "_source"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"0": {"type": "object", "properties": {"7": {"type": "integer"}}, "required": ["7"]}, "1": {"type": "object", "properties": {"3": {"type": "integer"}, "9": {"type": "integer"}}, "required": ["3", "9"]}, "2": {"type": "object", "properties": {"3": {"type": "integer"}}, "required": ["3"]}, "3": {"type": "object", "properties": {"1": {"type": "integer"}, "2": {"type": "integer"}}, "required": ["1", "2"]}, "7": {"type": "object", "properties": {"0": {"type": "integer"}}, "required": ["0"]}, "9": {"type": "object", "properties": {"1": {"type": "integer"}}, "required": ["1"]}}, "required": ["0", "1", "2", "3", "7", "9"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"0" : {"7" : 1}, "1" : {"3" : 1, "9" : 1}, "2" : {"3" : 1}, "3" : {"1" : 1, "2" : 1}, "7" : {"0" : 1}, "9" : {"1" : 1}}
json_instruct
{"type": "object", "properties": {"0": {"type": "object", "properties": {"7": {"type": "integer"}}, "required": ["7"]}, "1": {"type": "object", "properties": {"3": {"type": "integer"}, "9": {"type": "integer"}}, "required": ["3", "9"]}, "2": {"type": "object", "properties": {"3": {"type": "integer"}}, "required": ["3"]}, "3": {"type": "object", "properties": {"1": {"type": "integer"}, "2": {"type": "integer"}}, "required": ["1", "2"]}, "7": {"type": "object", "properties": {"0": {"type": "integer"}}, "required": ["0"]}, "9": {"type": "object", "properties": {"1": {"type": "integer"}}, "required": ["1"]}}, "required": ["0", "1", "2", "3", "7", "9"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"word" : "uvitic", "definition" : "Pertaining to, or designating, an acid, CH3C6H3(CO2H)2, obtained as a white crystalline substance by the partial oxidation of mesitylene; -- called also mesitic acid."}
json_instruct
{"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"name": {"type": "string"}, "symbol": {"type": "string"}, "decimals": {"type": "integer"}, "status": {"type": "string"}, "website": {"type": "string"}, "description": {"type": "string"}, "explorer": {"type": "string"}, "socials": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "url": {"type": "string"}, "handle": {"type": "string"}}, "required": ["name", "url", "handle"]}}, "type": {"type": "string"}, "id": {"type": "string"}}, "required": ["name", "symbol", "decimals", "status", "website", "description", "explorer", "socials", "type", "id"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "Butterfly Protocol Governance Token", "symbol" : "BFLY", "decimals" : 18, "status" : "active", "website" : "https://www.butterflyprotocol.io", "description" : "A Decentralized Name System for the New Internet", "explorer" : "https://etherscan.io/token/0xf680429328caaacabee69b7a9fdb21a71419c063", "socials" : [{"name" : "Twitter", "url" : "https://twitter.com/butterflyproto", "handle" : "butterflyproto"}, {"name" : "Telegram", "url" : "https://t.me/butterflyprotocol", "handle" : "butterflyprotocol"}, {"name" : "Medium", "url" : "https://medium.com/@bproto", "handle" : "bproto"}], "type" : "ERC20", "id" : "0xf680429328caaaCabee69b7A9FdB21a71419c063"}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "symbol": {"type": "string"}, "decimals": {"type": "integer"}, "status": {"type": "string"}, "website": {"type": "string"}, "description": {"type": "string"}, "explorer": {"type": "string"}, "socials": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "url": {"type": "string"}, "handle": {"type": "string"}}, "required": ["name", "url", "handle"]}}, "type": {"type": "string"}, "id": {"type": "string"}}, "required": ["name", "symbol", "decimals", "status", "website", "description", "explorer", "socials", "type", "id"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"mongoURI": {"type": "string"}, "jwtSecret": {"type": "string"}, "githubToken": {"type": "string"}}, "required": ["mongoURI", "jwtSecret", "githubToken"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"mongoURI" : "mongodb+srv://redmed86:vNAWerj7DyKNwGk4@dev-browserstack-developer-site-uccuc.mongodb.net/test?retryWrites=true&w=majority", "jwtSecret" : "secret", "githubToken" : "0957d4b79b54f90a20711b8cddfb4e76494567f9"}
json_instruct
{"type": "object", "properties": {"mongoURI": {"type": "string"}, "jwtSecret": {"type": "string"}, "githubToken": {"type": "string"}}, "required": ["mongoURI", "jwtSecret", "githubToken"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"h_lay_he_3325_2_0": {"type": "object", "properties": {"x": {"type": "string"}, "y": {"type": "string"}}, "required": ["x", "y"]}, "h_lay_he_3326_2_0": {"type": "object", "properties": {"x": {"type": "string"}, "y": {"type": "string"}}, "required": ["x", "y"]}, "h_std_he_3325_0_0": {"type": "object", "properties": {"x": {"type": "string"}, "y": {"type": "string"}}, "required": ["x", "y"]}, "h_std_he_3325_1_0": {"type": "object", "properties": {"x": {"type": "string"}, "y": {"type": "string"}}, "required": ["x", "y"]}, "h_std_he_3325_2_0": {"type": "object", "properties": {"x": {"type": "string"}, "y": {"type": "string"}}, "required": ["x", "y"]}, "h_std_he_3325_3_0": {"type": "object", "properties": {"x": {"type": "string"}, "y": {"type": "string"}}, "required": ["x", "y"]}, "h_std_he_3325_7_0": {"type": "object", "properties": {"x": {"type": "string"}, "y": {"type": "string"}}, "required": ["x", "y"]}, "h_std_he_3326_0_0": {"type": "object", "properties": {"x": {"type": "string"}, "y": {"type": "string"}}, "required": ["x", "y"]}, "h_std_he_3326_1_0": {"type": "object", "properties": {"x": {"type": "string"}, "y": {"type": "string"}}, "required": ["x", "y"]}, "h_std_he_3326_2_0": {"type": "object", "properties": {"x": {"type": "string"}, "y": {"type": "string"}}, "required": ["x", "y"]}, "h_std_he_3326_3_0": {"type": "object", "properties": {"x": {"type": "string"}, "y": {"type": "string"}}, "required": ["x", "y"]}, "h_std_he_3326_7_0": {"type": "object", "properties": {"x": {"type": "string"}, "y": {"type": "string"}}, "required": ["x", "y"]}}, "required": ["h_lay_he_3325_2_0", "h_lay_he_3326_2_0", "h_std_he_3325_0_0", "h_std_he_3325_1_0", "h_std_he_3325_2_0", "h_std_he_3325_3_0", "h_std_he_3325_7_0", "h_std_he_3326_0_0", "h_std_he_3326_1_0", "h_std_he_3326_2_0", "h_std_he_3326_3_0", "h_std_he_3326_7_0"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"h_lay_he_3325_2_0" : {"x" : "28", "y" : "43"}, "h_lay_he_3326_2_0" : {"x" : "27", "y" : "42"}, "h_std_he_3325_0_0" : {"x" : "-22", "y" : "83"}, "h_std_he_3325_1_0" : {"x" : "-28", "y" : "81"}, "h_std_he_3325_2_0" : {"x" : "-22", "y" : "83"}, "h_std_he_3325_3_0" : {"x" : "-20", "y" : "80"}, "h_std_he_3325_7_0" : {"x" : "-20", "y" : "81"}, "h_std_he_3326_0_0" : {"x" : "-23", "y" : "82"}, "h_std_he_3326_1_0" : {"x" : "-30", "y" : "80"}, "h_std_he_3326_2_0" : {"x" : "-24", "y" : "82"}, "h_std_he_3326_3_0" : {"x" : "-21", "y" : "79"}, "h_std_he_3326_7_0" : {"x" : "-21", "y" : "80"}}
json_instruct
{"type": "object", "properties": {"h_lay_he_3325_2_0": {"type": "object", "properties": {"x": {"type": "string"}, "y": {"type": "string"}}, "required": ["x", "y"]}, "h_lay_he_3326_2_0": {"type": "object", "properties": {"x": {"type": "string"}, "y": {"type": "string"}}, "required": ["x", "y"]}, "h_std_he_3325_0_0": {"type": "object", "properties": {"x": {"type": "string"}, "y": {"type": "string"}}, "required": ["x", "y"]}, "h_std_he_3325_1_0": {"type": "object", "properties": {"x": {"type": "string"}, "y": {"type": "string"}}, "required": ["x", "y"]}, "h_std_he_3325_2_0": {"type": "object", "properties": {"x": {"type": "string"}, "y": {"type": "string"}}, "required": ["x", "y"]}, "h_std_he_3325_3_0": {"type": "object", "properties": {"x": {"type": "string"}, "y": {"type": "string"}}, "required": ["x", "y"]}, "h_std_he_3325_7_0": {"type": "object", "properties": {"x": {"type": "string"}, "y": {"type": "string"}}, "required": ["x", "y"]}, "h_std_he_3326_0_0": {"type": "object", "properties": {"x": {"type": "string"}, "y": {"type": "string"}}, "required": ["x", "y"]}, "h_std_he_3326_1_0": {"type": "object", "properties": {"x": {"type": "string"}, "y": {"type": "string"}}, "required": ["x", "y"]}, "h_std_he_3326_2_0": {"type": "object", "properties": {"x": {"type": "string"}, "y": {"type": "string"}}, "required": ["x", "y"]}, "h_std_he_3326_3_0": {"type": "object", "properties": {"x": {"type": "string"}, "y": {"type": "string"}}, "required": ["x", "y"]}, "h_std_he_3326_7_0": {"type": "object", "properties": {"x": {"type": "string"}, "y": {"type": "string"}}, "required": ["x", "y"]}}, "required": ["h_lay_he_3325_2_0", "h_lay_he_3326_2_0", "h_std_he_3325_0_0", "h_std_he_3325_1_0", "h_std_he_3325_2_0", "h_std_he_3325_3_0", "h_std_he_3325_7_0", "h_std_he_3326_0_0", "h_std_he_3326_1_0", "h_std_he_3326_2_0", "h_std_he_3326_3_0", "h_std_he_3326_7_0"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"id": {"type": "string"}, "symbol": {"type": "string"}, "name": {"type": "string"}, "platforms": {"type": "object", "properties": {"ethereum": {"type": "string"}}, "required": ["ethereum"]}, "hashing_algorithm": {"type": "null"}, "categories": {"type": "array", "items": {}}, "description": {"type": "object", "properties": {"en": {"type": "string"}}, "required": ["en"]}, "country_origin": {"type": "string"}, "genesis_date": {"type": "null"}, "contract_address": {"type": "string"}, "url": {"type": "string"}, "explorers": {"type": "array", "items": {"type": "string"}}, "twitter": {"type": "string"}, "telegram": {"type": "string"}}, "required": ["id", "symbol", "name", "platforms", "hashing_algorithm", "categories", "description", "country_origin", "genesis_date", "contract_address", "url", "explorers", "twitter", "telegram"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : "voltium", "symbol" : "vltm", "name" : "Voltium", "platforms" : {"ethereum" : "0xaf5db2cc35ef9bba3cfa5f8faeedcf9b4e2f286f"}, "hashing_algorithm" : null, "categories" : [], "description" : {"en" : "Promote Solar Energy and decentralized transactions"}, "country_origin" : "GB", "genesis_date" : null, "contract_address" : "0xaf5db2cc35ef9bba3cfa5f8faeedcf9b4e2f286f", "url" : "https://voltiumcorporation.com/", "explorers" : ["https://etherscan.io/token/0xAF5DB2cc35Ef9BbA3cfa5f8FAeEDcf9b4e2F286F", "https://ethplorer.io/address/0xAF5DB2cc35Ef9BbA3cfa5f8FAeEDcf9b4e2F286F"], "twitter" : "voltiumtoken", "telegram" : "voltiumtoken"}
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "symbol": {"type": "string"}, "name": {"type": "string"}, "platforms": {"type": "object", "properties": {"ethereum": {"type": "string"}}, "required": ["ethereum"]}, "hashing_algorithm": {"type": "null"}, "categories": {"type": "array", "items": {}}, "description": {"type": "object", "properties": {"en": {"type": "string"}}, "required": ["en"]}, "country_origin": {"type": "string"}, "genesis_date": {"type": "null"}, "contract_address": {"type": "string"}, "url": {"type": "string"}, "explorers": {"type": "array", "items": {"type": "string"}}, "twitter": {"type": "string"}, "telegram": {"type": "string"}}, "required": ["id", "symbol", "name", "platforms", "hashing_algorithm", "categories", "description", "country_origin", "genesis_date", "contract_address", "url", "explorers", "twitter", "telegram"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"localities": {"type": "array", "items": {"type": "string"}}, "state": {"type": "string"}, "postal_code": {"type": "string"}, "locality": {"type": "string"}, "lat": {"type": "number"}, "region": {"type": "object", "properties": {"fips": {"type": "string"}, "abbr": {"type": "string"}, "name": {"type": "string"}}, "required": ["fips", "abbr", "name"]}, "city": {"type": "string"}, "type": {"type": "string"}, "lng": {"type": "number"}, "counties": {"type": "array", "items": {"type": "object", "properties": {"fips": {"type": "string"}, "name": {"type": "string"}}, "required": ["fips", "name"]}}}, "required": ["localities", "state", "postal_code", "locality", "lat", "region", "city", "type", "lng", "counties"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"localities" : ["Benedict, NE"], "state" : "NE", "postal_code" : "68316", "locality" : "Benedict, NE", "lat" : 41.024569, "region" : {"fips" : "31", "abbr" : "NE", "name" : "Nebraska"}, "city" : "Benedict", "type" : "STANDARD", "lng" : -97.6264, "counties" : [{"fips" : "143", "name" : "Polk County"}, {"fips" : "185", "name" : "York County"}]}
json_instruct
{"type": "object", "properties": {"localities": {"type": "array", "items": {"type": "string"}}, "state": {"type": "string"}, "postal_code": {"type": "string"}, "locality": {"type": "string"}, "lat": {"type": "number"}, "region": {"type": "object", "properties": {"fips": {"type": "string"}, "abbr": {"type": "string"}, "name": {"type": "string"}}, "required": ["fips", "abbr", "name"]}, "city": {"type": "string"}, "type": {"type": "string"}, "lng": {"type": "number"}, "counties": {"type": "array", "items": {"type": "object", "properties": {"fips": {"type": "string"}, "name": {"type": "string"}}, "required": ["fips", "name"]}}}, "required": ["localities", "state", "postal_code", "locality", "lat", "region", "city", "type", "lng", "counties"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"ControlId": {"type": "string"}, "Category": {"type": "string"}, "Description": {"type": "string"}}, "required": ["ControlId", "Category", "Description"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"ControlId" : "sub_classicAdministrators", "Category" : "Access", "Description" : "Review list of administrators outside of Azure RBAC assignments, review following article for more information [Classic Administrators](https://docs.microsoft.com/en-us/security/benchmark/azure/baselines/cloud-services-security-baseline#31-maintain-an-inventory-of-administrative-accounts)"}
json_instruct
{"type": "object", "properties": {"ControlId": {"type": "string"}, "Category": {"type": "string"}, "Description": {"type": "string"}}, "required": ["ControlId", "Category", "Description"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"id": {"type": "string"}, "symbol": {"type": "string"}, "name": {"type": "string"}, "platforms": {"type": "object", "properties": {"binance-smart-chain": {"type": "string"}}, "required": ["binance-smart-chain"]}, "hashing_algorithm": {"type": "null"}, "categories": {"type": "array", "items": {"type": "string"}}, "description": {"type": "object", "properties": {"en": {"type": "string"}}, "required": ["en"]}, "country_origin": {"type": "string"}, "genesis_date": {"type": "null"}, "contract_address": {"type": "string"}, "url": {"type": "string"}, "explorers": {"type": "array", "items": {"type": "string"}}, "twitter": {"type": "string"}, "telegram": {"type": "string"}, "github_org": {"type": "string"}}, "required": ["id", "symbol", "name", "platforms", "hashing_algorithm", "categories", "description", "country_origin", "genesis_date", "contract_address", "url", "explorers", "twitter", "telegram", "github_org"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : "ten", "symbol" : "tenfi", "name" : "TEN", "platforms" : {"binance-smart-chain" : "0xd15c444f1199ae72795eba15e8c1db44e47abf62"}, "hashing_algorithm" : null, "categories" : ["Yield Aggregator", "Yield Farming", "Binance Smart Chain Ecosystem"], "description" : {"en" : "TEN simplifies staking and farming with the most liquid BSC LP's available and provides a robust yield earning environment on the market while adapting to daily liquidity needs of different pools. TEN is decentralized finance, simplified!"}, "country_origin" : "", "genesis_date" : null, "contract_address" : "0xd15c444f1199ae72795eba15e8c1db44e47abf62", "url" : "https://ten.finance/", "explorers" : ["https://bscscan.com/token/0xd15c444f1199ae72795eba15e8c1db44e47abf62"], "twitter" : "tenfinance", "telegram" : "tenfinance", "github_org" : "tenfinance"}
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "symbol": {"type": "string"}, "name": {"type": "string"}, "platforms": {"type": "object", "properties": {"binance-smart-chain": {"type": "string"}}, "required": ["binance-smart-chain"]}, "hashing_algorithm": {"type": "null"}, "categories": {"type": "array", "items": {"type": "string"}}, "description": {"type": "object", "properties": {"en": {"type": "string"}}, "required": ["en"]}, "country_origin": {"type": "string"}, "genesis_date": {"type": "null"}, "contract_address": {"type": "string"}, "url": {"type": "string"}, "explorers": {"type": "array", "items": {"type": "string"}}, "twitter": {"type": "string"}, "telegram": {"type": "string"}, "github_org": {"type": "string"}}, "required": ["id", "symbol", "name", "platforms", "hashing_algorithm", "categories", "description", "country_origin", "genesis_date", "contract_address", "url", "explorers", "twitter", "telegram", "github_org"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"id": {"type": "integer"}, "title": {"type": "array", "items": {"type": "string"}}, "description": {"type": "array", "items": {"type": "string"}}, "paths": {"type": "array", "items": {"type": "string"}}, "location": {"type": "string"}, "wayto": {"type": "object", "properties": {"26548": {"type": "string"}, "26451": {"type": "string"}}, "required": ["26548", "26451"]}, "timeto": {"type": "object", "properties": {"26548": {"type": "number"}, "26451": {"type": "number"}}, "required": ["26548", "26451"]}, "image": {"type": "string"}, "image_coords": {"type": "array", "items": {"type": "integer"}}}, "required": ["id", "title", "description", "paths", "location", "wayto", "timeto", "image", "image_coords"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : 26547, "title" : ["[Caligos Peak, Twisted Pathways]"], "description" : ["Twisting in and out of granite shadows where the mountain's peak blots out every ounce of moonlight, the incline of the pathway is treacherous, slippery, and overflowing with indigo-hued mists. Gusting winds lash at the ground causing grit and sand to sting the eyes, while the ethereal tendrils of water vapor twist and turn like waves in a storm.", "Twisting in and out of granite shadows where the mountain's peak blots out the sun, the incline of the pathway is treacherous, slippery, and overflowing with indigo-hued mists. Gusting winds lash at the ground causing grit and sand to sting the eyes, while the ethereal tendrils of water vapor twist and turn like waves in a storm."], "paths" : ["Obvious paths: southwest, up"], "location" : "Caligos Isle", "wayto" : {"26548" : "up", "26451" : "southwest"}, "timeto" : {"26548" : 0.2, "26451" : 0.2}, "image" : "fest-ebon_gate-caligos_isle-1539222190.png", "image_coords" : [362, 517, 376, 530]}
json_instruct
{"type": "object", "properties": {"id": {"type": "integer"}, "title": {"type": "array", "items": {"type": "string"}}, "description": {"type": "array", "items": {"type": "string"}}, "paths": {"type": "array", "items": {"type": "string"}}, "location": {"type": "string"}, "wayto": {"type": "object", "properties": {"26548": {"type": "string"}, "26451": {"type": "string"}}, "required": ["26548", "26451"]}, "timeto": {"type": "object", "properties": {"26548": {"type": "number"}, "26451": {"type": "number"}}, "required": ["26548", "26451"]}, "image": {"type": "string"}, "image_coords": {"type": "array", "items": {"type": "integer"}}}, "required": ["id", "title", "description", "paths", "location", "wayto", "timeto", "image", "image_coords"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"status": {"type": "integer"}, "startTimes": {"type": "array", "items": {"type": "integer"}}, "objectiveValue": {"type": "number"}, "solverRuntimeInMilliseconds": {"type": "integer"}, "optional": {"type": "object", "properties": {}, "required": []}}, "required": ["status", "startTimes", "objectiveValue", "solverRuntimeInMilliseconds", "optional"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"status" : 1, "startTimes" : [30, 2, 11, 17, 43], "objectiveValue" : 63.0, "solverRuntimeInMilliseconds" : 0, "optional" : {}}
json_instruct
{"type": "object", "properties": {"status": {"type": "integer"}, "startTimes": {"type": "array", "items": {"type": "integer"}}, "objectiveValue": {"type": "number"}, "solverRuntimeInMilliseconds": {"type": "integer"}, "optional": {"type": "object", "properties": {}, "required": []}}, "required": ["status", "startTimes", "objectiveValue", "solverRuntimeInMilliseconds", "optional"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"word" : "vivific", "definition" : "Giving life; reviving; enlivening. [R.]"}
json_instruct
{"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"h": {"type": "string"}, "c": {"type": "object", "properties": {"0": {"type": "boolean"}}, "required": ["0"]}}, "required": ["h", "c"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"h" : "b9a78d3420b49fc5e093", "c" : {"0" : true}}
json_instruct
{"type": "object", "properties": {"h": {"type": "string"}, "c": {"type": "object", "properties": {"0": {"type": "boolean"}}, "required": ["0"]}}, "required": ["h", "c"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "main": {"type": "string"}, "dependencies": {"type": "object", "properties": {"salute.js": {"type": "string"}}, "required": ["salute.js"]}, "system": {"type": "object", "properties": {}, "required": []}}, "required": ["name", "version", "main", "dependencies", "system"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "js-ext", "version" : "1.0.0", "main" : "./npm_main.js", "dependencies" : {"salute.js" : "1.0.0"}, "system" : {}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "main": {"type": "string"}, "dependencies": {"type": "object", "properties": {"salute.js": {"type": "string"}}, "required": ["salute.js"]}, "system": {"type": "object", "properties": {}, "required": []}}, "required": ["name", "version", "main", "dependencies", "system"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"cssnano": {"type": "string"}, "gulp": {"type": "string"}, "gulp-postcss": {"type": "string"}, "gulp-sourcemaps": {"type": "string"}, "lost": {"type": "string"}, "postcss": {"type": "string"}, "postcss-cssnext": {"type": "string"}, "postcss-import": {"type": "string"}, "postcss-reporter": {"type": "string"}, "postcss-url": {"type": "string"}, "stylelint": {"type": "string"}, "stylelint-config-standard": {"type": "string"}, "tachyons": {"type": "string"}}, "required": ["cssnano", "gulp", "gulp-postcss", "gulp-sourcemaps", "lost", "postcss", "postcss-cssnext", "postcss-import", "postcss-reporter", "postcss-url", "stylelint", "stylelint-config-standard", "tachyons"]}, "dependencies": {"type": "object", "properties": {"normalize.css": {"type": "string"}}, "required": ["normalize.css"]}}, "required": ["name", "version", "description", "main", "scripts", "repository", "keywords", "author", "license", "devDependencies", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "hugo-fly", "version" : "0.0.1", "description" : "Fly - Hugo Theme", "main" : "index.js", "scripts" : {"test" : "echo \"Error: no test specified\" && exit 1"}, "repository" : {"type" : "git", "url" : "http://ilker.com"}, "keywords" : ["fly", "hugo", "theme", "travel", "seo"], "author" : "Ilker Guller", "license" : "MIT", "devDependencies" : {"cssnano" : "^3.10.0", "gulp" : "^3.9.1", "gulp-postcss" : "^6.3.0", "gulp-sourcemaps" : "^2.4.1", "lost" : "^8.0.0", "postcss" : "^5.2.16", "postcss-cssnext" : "^2.10.0", "postcss-import" : "^9.1.0", "postcss-reporter" : "^3.0.0", "postcss-url" : "^5.1.2", "stylelint" : "^7.9.0", "stylelint-config-standard" : "^16.0.0", "tachyons" : "^4.6.2"}, "dependencies" : {"normalize.css" : "^5.0.0"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"cssnano": {"type": "string"}, "gulp": {"type": "string"}, "gulp-postcss": {"type": "string"}, "gulp-sourcemaps": {"type": "string"}, "lost": {"type": "string"}, "postcss": {"type": "string"}, "postcss-cssnext": {"type": "string"}, "postcss-import": {"type": "string"}, "postcss-reporter": {"type": "string"}, "postcss-url": {"type": "string"}, "stylelint": {"type": "string"}, "stylelint-config-standard": {"type": "string"}, "tachyons": {"type": "string"}}, "required": ["cssnano", "gulp", "gulp-postcss", "gulp-sourcemaps", "lost", "postcss", "postcss-cssnext", "postcss-import", "postcss-reporter", "postcss-url", "stylelint", "stylelint-config-standard", "tachyons"]}, "dependencies": {"type": "object", "properties": {"normalize.css": {"type": "string"}}, "required": ["normalize.css"]}}, "required": ["name", "version", "description", "main", "scripts", "repository", "keywords", "author", "license", "devDependencies", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "array", "items": {"type": "object", "properties": {"label": {"type": "string"}, "normalizedVertices": {"type": "array", "items": {"type": "object", "properties": {"x": {"type": "number"}, "y": {"type": "number"}}, "required": ["x", "y"]}}, "score": {"type": "number"}}, "required": ["label", "normalizedVertices", "score"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"label" : "Person", "normalizedVertices" : [{"x" : 0.517322, "y" : 0.786127}, {"x" : 0.68614554, "y" : 0.786127}, {"x" : 0.68614554, "y" : 0.9464799}, {"x" : 0.517322, "y" : 0.9464799}], "score" : 0.5158694}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"label": {"type": "string"}, "normalizedVertices": {"type": "array", "items": {"type": "object", "properties": {"x": {"type": "number"}, "y": {"type": "number"}}, "required": ["x", "y"]}}, "score": {"type": "number"}}, "required": ["label", "normalizedVertices", "score"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"name": {"type": "string"}, "dependencies": {"type": "object", "properties": {"ember": {"type": "string"}, "ember-cli-shims": {"type": "string"}, "ember-cli-test-loader": {"type": "string"}, "ember-qunit-notifications": {"type": "string"}, "Faker": {"type": "string"}, "font-awesome": {"type": "string"}, "mui": {"type": "string"}, "open-sans-fontface": {"type": "string"}, "pretender": {"type": "string"}, "At.js": {"type": "string"}, "Caret.js": {"type": "string"}, "foundation": {"type": "string"}}, "required": ["ember", "ember-cli-shims", "ember-cli-test-loader", "ember-qunit-notifications", "Faker", "font-awesome", "mui", "open-sans-fontface", "pretender", "At.js", "Caret.js", "foundation"]}}, "required": ["name", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "anonboard", "dependencies" : {"ember" : "2.5.0", "ember-cli-shims" : "0.1.1", "ember-cli-test-loader" : "0.2.2", "ember-qunit-notifications" : "0.1.0", "Faker" : "~3.1.0", "font-awesome" : "~4.5.0", "mui" : "^0.5.3", "open-sans-fontface" : "^1.4.2", "pretender" : "~0.12.0", "At.js" : "^1.5.0", "Caret.js" : "^0.2.2", "foundation" : "^5.5.3"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "dependencies": {"type": "object", "properties": {"ember": {"type": "string"}, "ember-cli-shims": {"type": "string"}, "ember-cli-test-loader": {"type": "string"}, "ember-qunit-notifications": {"type": "string"}, "Faker": {"type": "string"}, "font-awesome": {"type": "string"}, "mui": {"type": "string"}, "open-sans-fontface": {"type": "string"}, "pretender": {"type": "string"}, "At.js": {"type": "string"}, "Caret.js": {"type": "string"}, "foundation": {"type": "string"}}, "required": ["ember", "ember-cli-shims", "ember-cli-test-loader", "ember-qunit-notifications", "Faker", "font-awesome", "mui", "open-sans-fontface", "pretender", "At.js", "Caret.js", "foundation"]}}, "required": ["name", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"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 _interopRequireDefault = require(\"@babel/runtime/helpers/interopRequireDefault\");\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = exports.borderRadius = exports.borderColor = exports.borderLeft = exports.borderBottom = exports.borderRight = exports.borderTop = exports.border = void 0;\n\nvar _style = _interopRequireDefault(require(\"./style\"));\n\nvar _compose = _interopRequireDefault(require(\"./compose\"));\n\nfunction getBorder(value) {\n if (typeof value !== 'number') {\n return value;\n }\n\n return \"\".concat(value, \"px solid\").concat(value === 0 ? ' !important' : '');\n}\n\nvar border = (0, _style.default)({\n prop: 'border',\n themeKey: 'borders',\n transform: getBorder\n});\nexports.border = border;\nvar borderTop = (0, _style.default)({\n prop: 'borderTop',\n themeKey: 'borders',\n transform: getBorder\n});\nexports.borderTop = borderTop;\nvar borderRight = (0, _style.default)({\n prop: 'borderRight',\n themeKey: 'borders',\n transform: getBorder\n});\nexports.borderRight = borderRight;\nvar borderBottom = (0, _style.default)({\n prop: 'borderBottom',\n themeKey: 'borders',\n transform: getBorder\n});\nexports.borderBottom = borderBottom;\nvar borderLeft = (0, _style.default)({\n prop: 'borderLeft',\n themeKey: 'borders',\n transform: getBorder\n});\nexports.borderLeft = borderLeft;\nvar borderColor = (0, _style.default)({\n prop: 'borderColor',\n themeKey: 'palette',\n transform: function transform(value) {\n return \"\".concat(value, \" !important\");\n }\n});\nexports.borderColor = borderColor;\nvar borderRadius = (0, _style.default)({\n prop: 'borderRadius',\n themeKey: 'shape'\n});\nexports.borderRadius = borderRadius;\nvar borders = (0, _compose.default)(border, borderTop, borderRight, borderBottom, borderLeft, borderColor, borderRadius);\nvar _default = borders;\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#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "author": {"type": "string"}, "repository": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "dependencies": {"type": "object", "properties": {"bitfield": {"type": "string"}, "bncode": {"type": "string"}, "buffer-alloc": {"type": "string"}, "buffer-from": {"type": "string"}, "readable-stream": {"type": "string"}, "speedometer": {"type": "string"}}, "required": ["bitfield", "bncode", "buffer-alloc", "buffer-from", "readable-stream", "speedometer"]}}, "required": ["name", "version", "description", "author", "repository", "keywords", "scripts", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "peer-wire-protocol", "version" : "0.7.1", "description" : "Stream implementing the peer wire protocol used in bittorrent", "author" : "Mathias Buus Madsen <mathiasbuus@gmail.com>", "repository" : "git://github.com/mafintosh/peer-wire-protocol.git", "keywords" : ["bittorrent", "torrent", "protocol", "stream", "peer", "wire"], "scripts" : {"test" : "node tests"}, "dependencies" : {"bitfield" : "^0.1.0", "bncode" : "^0.2.3", "buffer-alloc" : "^1.1.0", "buffer-from" : "^1.0.0", "readable-stream" : "^1.0.2", "speedometer" : "^0.1.2"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "author": {"type": "string"}, "repository": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "dependencies": {"type": "object", "properties": {"bitfield": {"type": "string"}, "bncode": {"type": "string"}, "buffer-alloc": {"type": "string"}, "buffer-from": {"type": "string"}, "readable-stream": {"type": "string"}, "speedometer": {"type": "string"}}, "required": ["bitfield", "bncode", "buffer-alloc", "buffer-from", "readable-stream", "speedometer"]}}, "required": ["name", "version", "description", "author", "repository", "keywords", "scripts", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"word" : "futilely", "definition" : "In a futile manner."}
json_instruct
{"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"topic": {"type": "string"}, "category": {"type": "string"}, "attachments": {"type": "array", "items": {}}, "created_by_name": {"type": "string"}, "created_at": {"type": "string"}, "body": {"type": "string"}, "id": {"type": "string"}, "created_by": {"type": "string"}}, "required": ["topic", "category", "attachments", "created_by_name", "created_at", "body", "id", "created_by"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"topic" : "Illuminance and coloured lights", "category" : "radiance-general", "attachments" : [], "created_by_name" : "Stefano Ponzetti", "created_at" : "February 06, 2008 at 06:28AM", "body" : "Hi everybody ! \n\n\nI've got a problem I'm not sure how to deal with.\n\n\nI'm using a Disano light to simulate a tunnel lighting. It is a fluorescent light.\n\n\nI converted it to radiance format from ies format (previously translated from eulumdat format) using ies2rad with no specific value. Then I calculated illuminance on road surface visualizing isolux scheme.\n\n\nThen I converted the same light with the \"-t white\" option. And calculated illuminance's isolux as before. \n\n\nThe two isolux schemes are different, being value for the white case almost 10 % bigger.\n\n\nShouldn't them be equal?\n\n\nI tried simulating same case in dialux and calculux, and they do report almost same values as the white case. \n\n\nWhat's wrong? Am I missing some knowledge / trick / anything? \n\n\nLucio\n\n\nPs : I also discovered some problems both in ies2tab and in eulumcnv. The second, badly converting photometry (some dark circles appear in the lighted scene as missing photometric values), the first badly converting geometry (flipping x and y definitions). But I have to check this things a little more.\n\n\n\n\n.. Caminante no hay camino, solo se hace camino al andar ..\n___\n<sup>Automatically generated content from [radiance mailing-list](https://radiance-online.org/pipermail/radiance-general/2008-February/004747.html).</sup>", "id" : "radiance-general_004747", "created_by" : "Stefano_Ponzetti"}
json_instruct
{"type": "object", "properties": {"topic": {"type": "string"}, "category": {"type": "string"}, "attachments": {"type": "array", "items": {}}, "created_by_name": {"type": "string"}, "created_at": {"type": "string"}, "body": {"type": "string"}, "id": {"type": "string"}, "created_by": {"type": "string"}}, "required": ["topic", "category", "attachments", "created_by_name", "created_at", "body", "id", "created_by"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"type": {"type": "string"}, "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" : [[[-106.710818, 35.083059], [-106.710715, 35.090145], [-106.709613, 35.094361], [-106.699846, 35.094324], [-106.700727, 35.091564], [-106.700523, 35.088501], [-106.696885, 35.078697], [-106.700953, 35.067925], [-106.708958, 35.069341], [-106.707595, 35.069867], [-106.710787, 35.078388], [-106.710818, 35.083059]]]}, "type" : "Feature", "properties" : {"cartodb_id" : 41511}}]}
json_instruct
{"type": "object", "properties": {"type": {"type": "string"}, "features": {"type": "array", "items": {"type": "object", "properties": {"geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["type", "coordinates"]}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"cartodb_id": {"type": "integer"}}, "required": ["cartodb_id"]}}, "required": ["geometry", "type", "properties"]}}}, "required": ["type", "features"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"}
["PLATO", "c-ui", "component-cdn", "dsm-koa-mongo-rest", "jello-command-devserver", "jello-command-feserver", "koa-api-rest", "koa-forward-request", "koa-handlebars", "koa-handlebars-ext", "koa-isoproxy", "koa-mongo-rest", "koa-mongodb-rest", "koa-mountify", "koa-normalize", "koa-pino-logger", "koan", "koaton_modules", "mmgr", "moag", "normalize-proxy", "normalize-registry", "nuomi-devserver", "react-bootstrap-datatable", "react-loading-bar", "redis-subscribe-sse", "redux-entity-store", "rjy-cli", "rt-select", "rt-tree", "siren-meddleware", "soag", "szn-suggest", "tb-component-upload", "testresources", "tinper-bee", "toag", "tuanb-devserver"]
json_instruct
{"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "dependencies": {"type": "object", "properties": {"blob": {"type": "string"}, "browserify-middleware": {"type": "string"}, "canvas": {"type": "string"}, "debug": {"type": "string"}, "express": {"type": "string"}, "jpeg": {"type": "string"}, "jquery": {"type": "string"}, "mustache-express": {"type": "string"}, "queue3": {"type": "string"}, "redis": {"type": "string"}, "rfb2": {"type": "string"}, "socket.io": {"type": "string"}, "socket.io-client": {"type": "string"}, "socket.io-emitter": {"type": "string"}, "socket.io-redis": {"type": "string"}, "forever-monitor": {"type": "string"}}, "required": ["blob", "browserify-middleware", "canvas", "debug", "express", "jpeg", "jquery", "mustache-express", "queue3", "redis", "rfb2", "socket.io", "socket.io-client", "socket.io-emitter", "socket.io-redis", "forever-monitor"]}}, "required": ["name", "version", "description", "main", "scripts", "repository", "author", "license", "bugs", "homepage", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "socket.io-computer", "version" : "0.0.0", "description" : "Uses socket.io to do virtual machine usage from browser", "main" : "app.js", "scripts" : {"test" : "echo \"Error: no test specified\" && exit 1"}, "repository" : {"type" : "git", "url" : "https://github.com/kevin-roark/socket.io-computer.git"}, "author" : "Kevin Roark", "license" : "ISC", "bugs" : {"url" : "https://github.com/kevin-roark/socket.io-computer/issues"}, "homepage" : "https://github.com/kevin-roark/socket.io-computer", "dependencies" : {"blob" : "0.0.4", "browserify-middleware" : "2.5.0", "canvas" : "~1.1.3", "debug" : "^0.8.0", "express" : "3.4.8", "jpeg" : "https://github.com/yztaoj/node-jpeg/archive/master.tar.gz", "jquery" : "2.1.0", "mustache-express" : "1.0.1", "queue3" : "1.0.2", "redis" : "0.10.1", "rfb2" : "0.0.9", "socket.io" : "1.3.7", "socket.io-client" : "1.3.7", "socket.io-emitter" : "1.0.0", "socket.io-redis" : "1.0.0", "forever-monitor" : "~1.2.3"}}
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"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "dependencies": {"type": "object", "properties": {"blob": {"type": "string"}, "browserify-middleware": {"type": "string"}, "canvas": {"type": "string"}, "debug": {"type": "string"}, "express": {"type": "string"}, "jpeg": {"type": "string"}, "jquery": {"type": "string"}, "mustache-express": {"type": "string"}, "queue3": {"type": "string"}, "redis": {"type": "string"}, "rfb2": {"type": "string"}, "socket.io": {"type": "string"}, "socket.io-client": {"type": "string"}, "socket.io-emitter": {"type": "string"}, "socket.io-redis": {"type": "string"}, "forever-monitor": {"type": "string"}}, "required": ["blob", "browserify-middleware", "canvas", "debug", "express", "jpeg", "jquery", "mustache-express", "queue3", "redis", "rfb2", "socket.io", "socket.io-client", "socket.io-emitter", "socket.io-redis", "forever-monitor"]}}, "required": ["name", "version", "description", "main", "scripts", "repository", "author", "license", "bugs", "homepage", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "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/f6ba7cf2-b8d1-3bd5-8d0c-6cc46231ba7c", "expression" : [{"composer" : "http://data.doremus.org/artist/b34f92ab-ad86-361b-a8b8-5c3a4db784d0", "id" : "http://data.doremus.org/expression/933710ec-79be-3e0f-81c5-97da59a17c6b"}, {"composer" : "http://data.doremus.org/artist/b34f92ab-ad86-361b-a8b8-5c3a4db784d0", "id" : "http://data.doremus.org/expression/1d30cf39-1eae-3585-b4e8-7cf5baa23ef3"}, {"composer" : "http://data.doremus.org/artist/b34f92ab-ad86-361b-a8b8-5c3a4db784d0", "id" : "http://data.doremus.org/expression/b3665a76-5375-3da9-b143-4e1696a5e99c"}, {"composer" : "http://data.doremus.org/artist/b34f92ab-ad86-361b-a8b8-5c3a4db784d0", "id" : "http://data.doremus.org/expression/d922da97-1702-30bc-8279-475f9e860458"}, {"composer" : "http://data.doremus.org/artist/b34f92ab-ad86-361b-a8b8-5c3a4db784d0", "id" : "http://data.doremus.org/expression/eaa5ba0c-0d1d-3c15-bb75-786297be0afb"}, {"composer" : "http://data.doremus.org/artist/b34f92ab-ad86-361b-a8b8-5c3a4db784d0", "id" : "http://data.doremus.org/expression/0ea3060f-4559-36aa-af07-36d288089a2e"}, {"composer" : "http://data.doremus.org/artist/b34f92ab-ad86-361b-a8b8-5c3a4db784d0", "id" : "http://data.doremus.org/expression/6b0bfeaa-75d5-38bb-a355-dd1918f5a4f9"}]}
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#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"title": {"type": "string"}, "fields": {"type": "array", "items": {"type": "string"}}, "abstract": {"type": "string"}, "citation": {"type": "string"}, "departments": {"type": "array", "items": {"type": "string"}}, "authors": {"type": "array", "items": {"type": "string"}}, "conf": {"type": "string"}, "year": {"type": "string"}, "pages": {"type": "integer"}}, "required": ["title", "fields", "abstract", "citation", "departments", "authors", "conf", "year", "pages"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"title" : "Accelerating search-based program synthesis using learned probabilistic models.", "fields" : ["domain specific language", "program synthesis", "probabilistic logic", "transfer of learning", "search algorithm"], "abstract" : "A key challenge in program synthesis concerns how to efficiently search for the desired program in the space of possible programs. We propose a general approach to accelerate search-based program synthesis by biasing the search towards likely programs. Our approach targets a standard formulation, syntax-guided synthesis (SyGuS), by extending the grammar of possible programs with a probabilistic model dictating the likelihood of each program. We develop a weighted search algorithm to efficiently enumerate programs in order of their likelihood. We also propose a method based on transfer learning that enables to effectively learn a powerful model, called probabilistic higher-order grammar, from known solutions in a domain. We have implemented our approach in a tool called Euphony and evaluate it on SyGuS benchmark problems from a variety of domains. We show that Euphony can learn good models using easily obtainable solutions, and achieves significant performance gains over existing general-purpose as well as domain-specific synthesizers.", "citation" : "Not cited", "departments" : ["University of Pennsylvania", "University of Pennsylvania", "University of Pennsylvania", "University of Pennsylvania"], "authors" : ["Woosuk Lee.....http://dblp.org/pers/hd/l/Lee:Woosuk", "Kihong Heo.....http://dblp.org/pers/hd/h/Heo:Kihong", "Rajeev Alur.....http://dblp.org/pers/hd/a/Alur:Rajeev", "Mayur Naik.....http://dblp.org/pers/hd/n/Naik:Mayur"], "conf" : "pldi", "year" : "2018", "pages" : 14}
json_instruct
{"type": "object", "properties": {"title": {"type": "string"}, "fields": {"type": "array", "items": {"type": "string"}}, "abstract": {"type": "string"}, "citation": {"type": "string"}, "departments": {"type": "array", "items": {"type": "string"}}, "authors": {"type": "array", "items": {"type": "string"}}, "conf": {"type": "string"}, "year": {"type": "string"}, "pages": {"type": "integer"}}, "required": ["title", "fields", "abstract", "citation", "departments", "authors", "conf", "year", "pages"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"name": {"type": "string"}, "alt_name": {"type": "string"}, "country": {"type": "string"}, "state": {"type": "null"}, "address": {"type": "object", "properties": {"street": {"type": "string"}, "city": {"type": "string"}, "province": {"type": "null"}, "postal_code": {"type": "string"}}, "required": ["street", "city", "province", "postal_code"]}, "contact": {"type": "object", "properties": {"telephone": {"type": "string"}, "website": {"type": "string"}, "email": {"type": "string"}, "fax": {"type": "string"}}, "required": ["telephone", "website", "email", "fax"]}, "funding": {"type": "string"}, "languages": {"type": "null"}, "academic_year": {"type": "string"}, "accrediting_agency": {"type": "string"}}, "required": ["name", "alt_name", "country", "state", "address", "contact", "funding", "languages", "academic_year", "accrediting_agency"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "Talas State University", "alt_name" : "Talas Mamlekettit Universiteti (TSU)", "country" : "Kyrgyzstan", "state" : null, "address" : {"street" : "ul. Nurzhanova 25", "city" : "Talas", "province" : null, "postal_code" : "724200"}, "contact" : {"telephone" : "+996(3422) 52015; +996(3422) 53649", "website" : "http://www.tsu.kg/", "email" : "tsu@hotmail.kg", "fax" : "+996(3422) 52580"}, "funding" : "Public", "languages" : null, "academic_year" : "September to June", "accrediting_agency" : "Ministry of Education and Science"}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "alt_name": {"type": "string"}, "country": {"type": "string"}, "state": {"type": "null"}, "address": {"type": "object", "properties": {"street": {"type": "string"}, "city": {"type": "string"}, "province": {"type": "null"}, "postal_code": {"type": "string"}}, "required": ["street", "city", "province", "postal_code"]}, "contact": {"type": "object", "properties": {"telephone": {"type": "string"}, "website": {"type": "string"}, "email": {"type": "string"}, "fax": {"type": "string"}}, "required": ["telephone", "website", "email", "fax"]}, "funding": {"type": "string"}, "languages": {"type": "null"}, "academic_year": {"type": "string"}, "accrediting_agency": {"type": "string"}}, "required": ["name", "alt_name", "country", "state", "address", "contact", "funding", "languages", "academic_year", "accrediting_agency"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"420881001": {"type": "string"}, "420881100": {"type": "string"}, "420881101": {"type": "string"}, "420881102": {"type": "string"}, "420881103": {"type": "string"}, "420881104": {"type": "string"}, "420881105": {"type": "string"}, "420881106": {"type": "string"}, "420881107": {"type": "string"}, "420881108": {"type": "string"}, "420881109": {"type": "string"}, "420881110": {"type": "string"}, "420881111": {"type": "string"}, "420881112": {"type": "string"}, "420881113": {"type": "string"}, "420881114": {"type": "string"}, "420881200": {"type": "string"}}, "required": ["420881001", "420881100", "420881101", "420881102", "420881103", "420881104", "420881105", "420881106", "420881107", "420881108", "420881109", "420881110", "420881111", "420881112", "420881113", "420881114", "420881200"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"420881001" : "\u90e2\u4e2d\u8857\u9053\u529e\u4e8b\u5904", "420881100" : "\u6d0b\u6893\u9547", "420881101" : "\u957f\u5bff\u9547", "420881102" : "\u4e30\u4e50\u9547", "420881103" : "\u80e1\u96c6\u9547", "420881104" : "\u53cc\u6cb3\u9547", "420881105" : "\u78f7\u77ff\u9547", "420881106" : "\u6587\u96c6\u9547", "420881107" : "\u51b7\u6c34\u9547", "420881108" : "\u77f3\u724c\u9547", "420881109" : "\u65e7\u53e3\u9547", "420881110" : "\u67f4\u6e56\u9547", "420881111" : "\u957f\u6ee9\u9547", "420881112" : "\u4e1c\u6865\u9547", "420881113" : "\u5ba2\u5e97\u9547", "420881114" : "\u5f20\u96c6\u9547", "420881200" : "\u4e5d\u91cc\u4e61"}
json_instruct
{"type": "object", "properties": {"420881001": {"type": "string"}, "420881100": {"type": "string"}, "420881101": {"type": "string"}, "420881102": {"type": "string"}, "420881103": {"type": "string"}, "420881104": {"type": "string"}, "420881105": {"type": "string"}, "420881106": {"type": "string"}, "420881107": {"type": "string"}, "420881108": {"type": "string"}, "420881109": {"type": "string"}, "420881110": {"type": "string"}, "420881111": {"type": "string"}, "420881112": {"type": "string"}, "420881113": {"type": "string"}, "420881114": {"type": "string"}, "420881200": {"type": "string"}}, "required": ["420881001", "420881100", "420881101", "420881102", "420881103", "420881104", "420881105", "420881106", "420881107", "420881108", "420881109", "420881110", "420881111", "420881112", "420881113", "420881114", "420881200"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"uuid": {"type": "string"}, "befores": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "status": {"type": "string"}, "start": {"type": "integer"}, "stop": {"type": "integer"}}, "required": ["name", "status", "start", "stop"]}}, "start": {"type": "integer"}, "stop": {"type": "integer"}}, "required": ["uuid", "befores", "start", "stop"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"uuid" : "0aa82861-d012-47fe-805b-1ddf4456642a", "befores" : [{"name" : "path_dict", "status" : "passed", "start" : 1580625208947, "stop" : 1580625208947}], "start" : 1580625208947, "stop" : 1580625208995}
json_instruct
{"type": "object", "properties": {"uuid": {"type": "string"}, "befores": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "status": {"type": "string"}, "start": {"type": "integer"}, "stop": {"type": "integer"}}, "required": ["name", "status", "start", "stop"]}}, "start": {"type": "integer"}, "stop": {"type": "integer"}}, "required": ["uuid", "befores", "start", "stop"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"$schema": {"type": "string"}, "$id": {"type": "string"}, "title": {"type": "string"}, "definitions": {"type": "object", "properties": {"TaxDefinition": {"type": "object", "properties": {"$id": {"type": "string"}, "type": {"type": "string"}, "description": {"type": "string"}, "properties": {"type": "object", "properties": {"@referredType": {"type": "object", "properties": {"type": {"type": "string"}, "description": {"type": "string"}}, "required": ["type", "description"]}, "id": {"type": "object", "properties": {"type": {"type": "string"}, "description": {"type": "string"}}, "required": ["type", "description"]}, "name": {"type": "object", "properties": {"type": {"type": "string"}, "description": {"type": "string"}}, "required": ["type", "description"]}, "taxType": {"type": "object", "properties": {"type": {"type": "string"}, "description": {"type": "string"}}, "required": ["type", "description"]}}, "required": ["@referredType", "id", "name", "taxType"]}, "allOf": {"type": "array", "items": {"type": "object", "properties": {"$ref": {"type": "string"}}, "required": ["$ref"]}}}, "required": ["$id", "type", "description", "properties", "allOf"]}}, "required": ["TaxDefinition"]}}, "required": ["$schema", "$id", "title", "definitions"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"$schema" : "http://json-schema.org/draft-07/schema#", "$id" : "TaxDefinition.schema.json", "title" : "TaxDefinition", "definitions" : {"TaxDefinition" : {"$id" : "#TaxDefinition", "type" : "object", "description" : "Reference of a tax definition. A tax is levied by an authorized tax jurisdiction. There are many different types of tax (Federal Tax levied by the US Government, State Tax levied by the State of California,\u2026).", "properties" : {"@referredType" : {"type" : "string", "description" : "The actual type of the target instance when needed for disambiguation."}, "id" : {"type" : "string", "description" : "Unique identifier of the tax."}, "name" : {"type" : "string", "description" : "Tax name."}, "taxType" : {"type" : "string", "description" : "Type of the tax."}}, "allOf" : [{"$ref" : "../Common/Entity.schema.json#Entity"}]}}}
json_instruct
{"type": "object", "properties": {"$schema": {"type": "string"}, "$id": {"type": "string"}, "title": {"type": "string"}, "definitions": {"type": "object", "properties": {"TaxDefinition": {"type": "object", "properties": {"$id": {"type": "string"}, "type": {"type": "string"}, "description": {"type": "string"}, "properties": {"type": "object", "properties": {"@referredType": {"type": "object", "properties": {"type": {"type": "string"}, "description": {"type": "string"}}, "required": ["type", "description"]}, "id": {"type": "object", "properties": {"type": {"type": "string"}, "description": {"type": "string"}}, "required": ["type", "description"]}, "name": {"type": "object", "properties": {"type": {"type": "string"}, "description": {"type": "string"}}, "required": ["type", "description"]}, "taxType": {"type": "object", "properties": {"type": {"type": "string"}, "description": {"type": "string"}}, "required": ["type", "description"]}}, "required": ["@referredType", "id", "name", "taxType"]}, "allOf": {"type": "array", "items": {"type": "object", "properties": {"$ref": {"type": "string"}}, "required": ["$ref"]}}}, "required": ["$id", "type", "description", "properties", "allOf"]}}, "required": ["TaxDefinition"]}}, "required": ["$schema", "$id", "title", "definitions"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "array", "items": {"type": "object", "properties": {"host": {"type": "string"}, "port": {"type": "integer"}}, "required": ["host", "port"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"host" : "111.30.181.215", "port" : 80}, {"host" : "msfwifi.3g.qq.com", "port" : 8080}, {"host" : "36.155.228.220", "port" : 80}, {"host" : "120.232.18.55", "port" : 8080}, {"host" : "111.30.187.201", "port" : 80}, {"host" : "111.30.187.227", "port" : 80}, {"host" : "36.155.209.114", "port" : 14000}, {"host" : "120.241.139.76", "port" : 443}, {"host" : "36.155.249.120", "port" : 443}, {"host" : "120.232.130.47", "port" : 443}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"host": {"type": "string"}, "port": {"type": "integer"}}, "required": ["host", "port"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "text": {"type": "string"}}, "required": ["id", "text"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"id" : "320509401498", "text" : "\u4e1c\u65b9\u4e1d\u7ef8\u5e02\u573a\u865a\u62df\u793e\u533a"}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "text": {"type": "string"}}, "required": ["id", "text"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"n_dim": {"type": "integer"}, "n_trials": {"type": "integer"}, "objective": {"type": "string"}, "white": {"type": "string"}, "black": {"type": "string"}, "traceback": {"type": "array", "items": {"type": "string"}}, "best_val": {"type": "array", "items": {"type": "number"}}, "best_x": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}, "feval_count": {"type": "array", "items": {"type": "integer"}}, "n_trials_instructed": {"type": "array", "items": {"type": "integer"}}, "passing": {"type": "array", "items": {"type": "boolean"}}, "completed": {"type": "boolean"}, "points": {"type": "number"}, "winner": {"type": "string"}, "loser": {"type": "string"}}, "required": ["n_dim", "n_trials", "objective", "white", "black", "traceback", "best_val", "best_x", "feval_count", "n_trials_instructed", "passing", "completed", "points", "winner", "loser"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"n_dim" : 8, "n_trials" : 80, "objective" : "drop_wave_on_cube", "white" : "bayesopt_ei", "black" : "pysot_srbf", "traceback" : ["passing", "passing"], "best_val" : [-0.6190647428876958, -0.618952413578779], "best_x" : [[0.4107139592783008, 0.5744240315654517, 0.1419975120117245, 0.2675045031486254, 0.4975192331612218, 0.03459773666312149, 0.4840110297820588, 0.3876228346901066], [0.40005164434789153, 0.41041663670787315, 0.11247013223455586, 0.1774904951525564, 0.17720572451725494, 0.2731720653843813, 0.6622388208051564, 0.07150687705630134]], "feval_count" : [80, 80], "n_trials_instructed" : [80, 80], "passing" : [true, true], "completed" : true, "points" : 0.5, "winner" : "draw", "loser" : "draw"}
json_instruct
{"type": "object", "properties": {"n_dim": {"type": "integer"}, "n_trials": {"type": "integer"}, "objective": {"type": "string"}, "white": {"type": "string"}, "black": {"type": "string"}, "traceback": {"type": "array", "items": {"type": "string"}}, "best_val": {"type": "array", "items": {"type": "number"}}, "best_x": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}, "feval_count": {"type": "array", "items": {"type": "integer"}}, "n_trials_instructed": {"type": "array", "items": {"type": "integer"}}, "passing": {"type": "array", "items": {"type": "boolean"}}, "completed": {"type": "boolean"}, "points": {"type": "number"}, "winner": {"type": "string"}, "loser": {"type": "string"}}, "required": ["n_dim", "n_trials", "objective", "white", "black", "traceback", "best_val", "best_x", "feval_count", "n_trials_instructed", "passing", "completed", "points", "winner", "loser"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "authors": {"type": "array", "items": {"type": "string"}}, "license": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "homepage": {"type": "string"}}, "required": ["name", "description", "main", "authors", "license", "keywords", "homepage"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "sass-config", "description" : "DotConfig for SASS", "main" : "_config.scss", "authors" : ["zgabievi <zura.gabievi@gmail.com>"], "license" : "MIT", "keywords" : ["dot-config", "sass", "scss", "config"], "homepage" : "https://github.com/zgabievi/sass-config.git"}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "authors": {"type": "array", "items": {"type": "string"}}, "license": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "homepage": {"type": "string"}}, "required": ["name", "description", "main", "authors", "license", "keywords", "homepage"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"categories": {"type": "array", "items": {"type": "string"}}, "desc": {"type": "string"}, "details": {"type": "object", "properties": {"authors": {"type": "string"}, "format": {"type": "string"}, "isbn-10": {"type": "string"}, "isbn-13": {"type": "string"}, "pages": {"type": "string"}, "publication date": {"type": "string"}, "publisher": {"type": "string"}, "size": {"type": "string"}}, "required": ["authors", "format", "isbn-10", "isbn-13", "pages", "publication date", "publisher", "size"]}, "img": {"type": "string"}, "link": {"type": "string"}, "title": {"type": "string"}}, "required": ["categories", "desc", "details", "img", "link", "title"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"categories" : ["Uncategorized"], "desc" : " This beginner\u2019s guide consists of comprehensive explanation, appropriate screenshots, tips, tricks, and best practices. It offers step-by-step instructions on building your own virtual environment from scratch, supported by the reasoning behind what you do. If you are a System Administrator who has to set up a virtual machine and want to use an open source tool to do it this book will prove invaluable. No prior knowledge of VirtualBox is required, but you should have experience with general system administration.", "details" : {"authors" : "Alfonso V. Romero", "format" : "pdf", "isbn-10" : "1847199143", "isbn-13" : "978-1847199140", "pages" : "348 pages", "publication date" : "April 15, 2010", "publisher" : "Packt Publishing", "size" : "6.00Mb"}, "img" : "http://23.95.221.108/covers/e8/e85d27496a981e2b9ed9cf26224bb00b.jpg", "link" : "https://rapidhosting.info/files/bj9", "title" : "VirtualBox 3.1: Beginner\u2019s Guide"}
json_instruct
{"type": "object", "properties": {"categories": {"type": "array", "items": {"type": "string"}}, "desc": {"type": "string"}, "details": {"type": "object", "properties": {"authors": {"type": "string"}, "format": {"type": "string"}, "isbn-10": {"type": "string"}, "isbn-13": {"type": "string"}, "pages": {"type": "string"}, "publication date": {"type": "string"}, "publisher": {"type": "string"}, "size": {"type": "string"}}, "required": ["authors", "format", "isbn-10", "isbn-13", "pages", "publication date", "publisher", "size"]}, "img": {"type": "string"}, "link": {"type": "string"}, "title": {"type": "string"}}, "required": ["categories", "desc", "details", "img", "link", "title"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"packages": {"type": "object", "properties": {"approvedOrgs": {"type": "array", "items": {}}, "approvedRepos": {"type": "array", "items": {}}}, "required": ["approvedOrgs", "approvedRepos"]}, "galleries": {"type": "object", "properties": {}, "required": []}}, "required": ["packages", "galleries"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"packages" : {"approvedOrgs" : [], "approvedRepos" : []}, "galleries" : {}}
json_instruct
{"type": "object", "properties": {"packages": {"type": "object", "properties": {"approvedOrgs": {"type": "array", "items": {}}, "approvedRepos": {"type": "array", "items": {}}}, "required": ["approvedOrgs", "approvedRepos"]}, "galleries": {"type": "object", "properties": {}, "required": []}}, "required": ["packages", "galleries"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "authors": {"type": "array", "items": {"type": "string"}}, "license": {"type": "string"}, "homepage": {"type": "string"}, "private": {"type": "boolean"}, "dependencies": {"type": "object", "properties": {"iron-elements": {"type": "string"}, "neon-elements": {"type": "string"}, "page": {"type": "string"}, "paper-elements": {"type": "string"}, "platinum-elements": {"type": "string"}, "polymer": {"type": "string"}, "neon-animation": {"type": "string"}, "carbon-route": {"type": "string"}}, "required": ["iron-elements", "neon-elements", "page", "paper-elements", "platinum-elements", "polymer", "neon-animation", "carbon-route"]}, "ignore": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "description", "main", "authors", "license", "homepage", "private", "dependencies", "ignore"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "express-mysql-polymer-japanessword-app", "description" : "", "main" : "", "authors" : ["zhaozilin <sakurazukaken@163.com>"], "license" : "MIT", "homepage" : "https://github.com/SakurazukaKen/express-mysql-polymer-japanessword-app", "private" : true, "dependencies" : {"iron-elements" : "PolymerElements/iron-elements#^1.0.0", "neon-elements" : "PolymerElements/neon-elements#^1.0.0", "page" : "visionmedia/page.js#~1.6.4", "paper-elements" : "PolymerElements/paper-elements#^1.0.1", "platinum-elements" : "PolymerElements/platinum-elements#^1.1.0", "polymer" : "Polymer/polymer#^1.2.0", "neon-animation" : "PolymerElements/neon-animation#^1.2.2", "carbon-route" : "PolymerElements/carbon-route#^0.8.4"}, "ignore" : ["**/.*", "node_modules", "bower_components", "test", "tests"]}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "authors": {"type": "array", "items": {"type": "string"}}, "license": {"type": "string"}, "homepage": {"type": "string"}, "private": {"type": "boolean"}, "dependencies": {"type": "object", "properties": {"iron-elements": {"type": "string"}, "neon-elements": {"type": "string"}, "page": {"type": "string"}, "paper-elements": {"type": "string"}, "platinum-elements": {"type": "string"}, "polymer": {"type": "string"}, "neon-animation": {"type": "string"}, "carbon-route": {"type": "string"}}, "required": ["iron-elements", "neon-elements", "page", "paper-elements", "platinum-elements", "polymer", "neon-animation", "carbon-route"]}, "ignore": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "description", "main", "authors", "license", "homepage", "private", "dependencies", "ignore"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"locationData": {"type": "object", "properties": {"relativeBoundingBox": {"type": "object", "properties": {"xmin": {"type": "number"}, "width": {"type": "number"}, "ymin": {"type": "number"}, "height": {"type": "number"}}, "required": ["xmin", "width", "ymin", "height"]}, "relativeKeypoints": {"type": "array", "items": {"type": "object", "properties": {"y": {"type": "number"}, "x": {"type": "number"}}, "required": ["y", "x"]}}, "format": {"type": "string"}}, "required": ["relativeBoundingBox", "relativeKeypoints", "format"]}, "score": {"type": "array", "items": {"type": "number"}}, "label": {"type": "array", "items": {"type": "string"}}}, "required": ["locationData", "score", "label"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"locationData" : {"relativeBoundingBox" : {"xmin" : 0.3902267, "width" : 0.08597338, "ymin" : 0.6669433, "height" : 0.15284167}, "relativeKeypoints" : [{"y" : 0.76631725, "x" : 0.46976113}, {"y" : 0.69730103, "x" : 0.40293282}, {"y" : 0.73839337, "x" : 0.39912114}, {"y" : 0.7766318, "x" : 0.4012016}, {"y" : 0.8105807, "x" : 0.4071438}, {"y" : 0.71920246, "x" : 0.46670443}, {"y" : 0.6876316, "x" : 0.43804523}], "format" : "RELATIVE_BOUNDING_BOX"}, "score" : [0.99711037], "label" : ["Palm"]}
json_instruct
{"type": "object", "properties": {"locationData": {"type": "object", "properties": {"relativeBoundingBox": {"type": "object", "properties": {"xmin": {"type": "number"}, "width": {"type": "number"}, "ymin": {"type": "number"}, "height": {"type": "number"}}, "required": ["xmin", "width", "ymin", "height"]}, "relativeKeypoints": {"type": "array", "items": {"type": "object", "properties": {"y": {"type": "number"}, "x": {"type": "number"}}, "required": ["y", "x"]}}, "format": {"type": "string"}}, "required": ["relativeBoundingBox", "relativeKeypoints", "format"]}, "score": {"type": "array", "items": {"type": "number"}}, "label": {"type": "array", "items": {"type": "string"}}}, "required": ["locationData", "score", "label"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"author": {"type": "string"}, "classification": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "period": {"type": "string"}, "reference": {"type": "string"}, "region": {"type": "string"}, "text": {"type": "array", "items": {"type": "string"}}, "title": {"type": "string"}, "year": {"type": "string"}}, "required": ["author", "classification", "keywords", "period", "reference", "region", "text", "title", "year"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"author" : "Alexander Pope", "classification" : "", "keywords" : ["Relationships", "Men", "Women", "Arts", "Sciences", "Poetry", "Poets"], "period" : "Augustan", "reference" : "http://www.poetryfoundation.org/poem/180946", "region" : "England", "text" : ["In vain you boast poetic names of yore,", "And cite those Sapphos we admire no more:", "Fate doomed the fall of every female wit;", "But doomed it then, when first Ardelia writ.", "Of all examples by the world confessed,", "I knew Ardelia could not quote the best;", "Who, like her mistress on Britannia\u2019s throne,", "Fights and subdues in quarrels not her own.", "To write their praise you but in vain essay;", "Even while you write, you take that praise away.", "Light to the stars the sun does thus restore,", "But shines himself till they are seen no more."], "title" : "Impromptu", "year" : ""}
json_instruct
{"type": "object", "properties": {"author": {"type": "string"}, "classification": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "period": {"type": "string"}, "reference": {"type": "string"}, "region": {"type": "string"}, "text": {"type": "array", "items": {"type": "string"}}, "title": {"type": "string"}, "year": {"type": "string"}}, "required": ["author", "classification", "keywords", "period", "reference", "region", "text", "title", "year"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"postscale": {"type": "integer"}, "freq": {"type": "integer"}, "data": {"type": "array", "items": {"type": "integer"}}, "format": {"type": "string"}}, "required": ["postscale", "freq", "data", "format"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"postscale" : 256, "freq" : 38, "data" : [102, 1, 235, 51, 22, 8, 4, 8, 4, 8, 16, 8, 4, 8, 16, 8, 4, 8, 4, 8, 4, 8, 16, 8, 16, 8, 4, 8, 4, 8, 4, 8, 16, 8, 16, 8, 4, 8, 4, 8, 4, 8, 4, 8, 4, 8, 4, 8, 4, 8, 4, 8, 4, 8, 4, 8, 4, 8, 4, 8, 4, 8, 16, 8, 4, 8, 4, 8, 4, 8, 4, 8, 4, 8, 4, 8, 4, 8, 16, 8, 4, 8, 4, 8, 4, 8, 4, 8, 16, 8, 4, 8, 4, 8, 4, 8, 4, 8, 4, 8, 4, 8], "format" : "raw"}
json_instruct
{"type": "object", "properties": {"postscale": {"type": "integer"}, "freq": {"type": "integer"}, "data": {"type": "array", "items": {"type": "integer"}}, "format": {"type": "string"}}, "required": ["postscale", "freq", "data", "format"], "$schema": "http://json-schema.org/draft-07/schema#"}