input
stringlengths
159
2.05k
output
stringlengths
5
10.3k
task
stringclasses
1 value
schema
stringlengths
100
1.99k
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"lastUpdated": {"type": "integer"}, "username": {"type": "string"}, "scores": {"type": "array", "items": {"type": "object", "properties": {"xp": {"type": "integer"}, "rank": {"type": "integer"}, "cardId": {"type": "integer"}}, "required": ["xp", "rank", "cardId"]}}}, "required": ["lastUpdated", "username", "scores"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"lastUpdated" : 1655019279666, "username" : "bertday4", "scores" : [{"xp" : 8012, "rank" : 338, "cardId" : 539}, {"xp" : 9542, "rank" : 84, "cardId" : 660}, {"xp" : 9246, "rank" : 392, "cardId" : 479}, {"xp" : 13971, "rank" : 169, "cardId" : 740}, {"xp" : 15101, "rank" : 362, "cardId" : 221}, {"xp" : 41649, "rank" : 324, "cardId" : 667}, {"xp" : 9218, "rank" : 99, "cardId" : 653}, {"xp" : 2732, "rank" : 146, "cardId" : 743}, {"xp" : 9520, "rank" : 219, "cardId" : 161}, {"xp" : 24980, "rank" : 396, "cardId" : 521}, {"xp" : 17989, "rank" : 264, "cardId" : 293}, {"xp" : 14016, "rank" : 183, "cardId" : 557}, {"xp" : 6497, "rank" : 248, "cardId" : 591}, {"xp" : 21031, "rank" : 438, "cardId" : 236}, {"xp" : 20327, "rank" : 273, "cardId" : 664}, {"xp" : 42657, "rank" : 430, "cardId" : 44}]}
json_instruct
{"type": "object", "properties": {"lastUpdated": {"type": "integer"}, "username": {"type": "string"}, "scores": {"type": "array", "items": {"type": "object", "properties": {"xp": {"type": "integer"}, "rank": {"type": "integer"}, "cardId": {"type": "integer"}}, "required": ["xp", "rank", "cardId"]}}}, "required": ["lastUpdated", "username", "scores"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"banner_alt": {"type": "string"}, "app_store": {"type": "string"}, "search_apps": {"type": "string"}, "search_games": {"type": "string"}, "search_movies_and_tv": {"type": "string"}, "search_books": {"type": "string"}, "apps": {"type": "string"}, "games": {"type": "string"}, "movies_and_tv": {"type": "string"}, "books": {"type": "string"}, "top_rated": {"type": "string"}, "editor_picks": {"type": "string"}, "made_for_kids": {"type": "string"}, "essential_games": {"type": "string"}, "top_free_games": {"type": "string"}, "top_paid_games": {"type": "string"}, "essential_apps": {"type": "string"}, "top_free_apps": {"type": "string"}, "top_paid_apps": {"type": "string"}}, "required": ["banner_alt", "app_store", "search_apps", "search_games", "search_movies_and_tv", "search_books", "apps", "games", "movies_and_tv", "books", "top_rated", "editor_picks", "made_for_kids", "essential_games", "top_free_games", "top_paid_games", "essential_apps", "top_free_apps", "top_paid_apps"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"banner_alt" : "Banner alt text", "app_store" : "App store", "search_apps" : "Search apps", "search_games" : "Search games", "search_movies_and_tv" : "Search movies & TV", "search_books" : "Search books", "apps" : "Apps", "games" : "Games", "movies_and_tv" : "Movies & TV", "books" : "Books", "top_rated" : "Top rated", "editor_picks" : "Editor picks", "made_for_kids" : "Made for kids", "essential_games" : "Essential games", "top_free_games" : "Top free games", "top_paid_games" : "Top paid games", "essential_apps" : "Essential apps", "top_free_apps" : "Top free apps", "top_paid_apps" : "Top paid apps"}
json_instruct
{"type": "object", "properties": {"banner_alt": {"type": "string"}, "app_store": {"type": "string"}, "search_apps": {"type": "string"}, "search_games": {"type": "string"}, "search_movies_and_tv": {"type": "string"}, "search_books": {"type": "string"}, "apps": {"type": "string"}, "games": {"type": "string"}, "movies_and_tv": {"type": "string"}, "books": {"type": "string"}, "top_rated": {"type": "string"}, "editor_picks": {"type": "string"}, "made_for_kids": {"type": "string"}, "essential_games": {"type": "string"}, "top_free_games": {"type": "string"}, "top_paid_games": {"type": "string"}, "essential_apps": {"type": "string"}, "top_free_apps": {"type": "string"}, "top_paid_apps": {"type": "string"}}, "required": ["banner_alt", "app_store", "search_apps", "search_games", "search_movies_and_tv", "search_books", "apps", "games", "movies_and_tv", "books", "top_rated", "editor_picks", "made_for_kids", "essential_games", "top_free_games", "top_paid_games", "essential_apps", "top_free_apps", "top_paid_apps"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "array", "items": {"type": "object", "properties": {"year": {"type": "integer"}, "sex": {"type": "string"}, "n": {"type": "integer"}, "prop": {"type": "number"}}, "required": ["year", "sex", "n", "prop"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"year" : 1956, "sex" : "F", "n" : 5, "prop" : 2.43e-06}, {"year" : 1958, "sex" : "F", "n" : 5, "prop" : 2.42e-06}, {"year" : 1967, "sex" : "F", "n" : 15, "prop" : 8.74e-06}, {"year" : 1968, "sex" : "F", "n" : 14, "prop" : 8.19e-06}, {"year" : 1969, "sex" : "F", "n" : 10, "prop" : 5.67e-06}, {"year" : 1970, "sex" : "F", "n" : 14, "prop" : 7.64e-06}, {"year" : 1971, "sex" : "F", "n" : 7, "prop" : 3.99e-06}, {"year" : 1972, "sex" : "F", "n" : 8, "prop" : 4.96e-06}, {"year" : 1973, "sex" : "F", "n" : 6, "prop" : 3.86e-06}, {"year" : 1974, "sex" : "F", "n" : 31, "prop" : 0}, {"year" : 1975, "sex" : "F", "n" : 29, "prop" : 0}, {"year" : 1976, "sex" : "F", "n" : 12, "prop" : 7.63e-06}, {"year" : 1977, "sex" : "F", "n" : 10, "prop" : 6.08e-06}, {"year" : 1981, "sex" : "F", "n" : 6, "prop" : 3.36e-06}, {"year" : 1986, "sex" : "F", "n" : 7, "prop" : 3.79e-06}, {"year" : 1987, "sex" : "F", "n" : 7, "prop" : 3.74e-06}, {"year" : 1988, "sex" : "F", "n" : 6, "prop" : 3.12e-06}, {"year" : 1989, "sex" : "F", "n" : 10, "prop" : 5.02e-06}, {"year" : 1990, "sex" : "F", "n" : 6, "prop" : 2.92e-06}, {"year" : 1991, "sex" : "F", "n" : 10, "prop" : 4.92e-06}, {"year" : 1992, "sex" : "F", "n" : 8, "prop" : 3.99e-06}, {"year" : 1993, "sex" : "F", "n" : 9, "prop" : 4.57e-06}, {"year" : 1995, "sex" : "F", "n" : 7, "prop" : 3.64e-06}, {"year" : 1996, "sex" : "F", "n" : 10, "prop" : 5.22e-06}, {"year" : 1997, "sex" : "F", "n" : 9, "prop" : 4.71e-06}, {"year" : 1998, "sex" : "F", "n" : 6, "prop" : 3.1e-06}, {"year" : 1999, "sex" : "F", "n" : 9, "prop" : 4.62e-06}, {"year" : 2000, "sex" : "F", "n" : 11, "prop" : 5.51e-06}, {"year" : 2001, "sex" : "F", "n" : 10, "prop" : 5.05e-06}, {"year" : 2002, "sex" : "F", "n" : 16, "prop" : 8.11e-06}, {"year" : 2003, "sex" : "F", "n" : 16, "prop" : 7.98e-06}, {"year" : 2004, "sex" : "F", "n" : 20, "prop" : 9.92e-06}, {"year" : 2005, "sex" : "F", "n" : 15, "prop" : 7.4e-06}, {"year" : 2006, "sex" : "F", "n" : 34, "prop" : 0}, {"year" : 2007, "sex" : "F", "n" : 35, "prop" : 0}, {"year" : 2008, "sex" : "F", "n" : 29, "prop" : 0}, {"year" : 2009, "sex" : "F", "n" : 21, "prop" : 0}, {"year" : 2010, "sex" : "F", "n" : 17, "prop" : 8.68e-06}, {"year" : 2011, "sex" : "F", "n" : 16, "prop" : 8.27e-06}, {"year" : 2012, "sex" : "F", "n" : 19, "prop" : 9.81e-06}, {"year" : 2013, "sex" : "F", "n" : 15, "prop" : 7.8e-06}, {"year" : 2014, "sex" : "F", "n" : 6, "prop" : 3.07e-06}, {"year" : 2016, "sex" : "F", "n" : 11, "prop" : 5.7e-06}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"year": {"type": "integer"}, "sex": {"type": "string"}, "n": {"type": "integer"}, "prop": {"type": "number"}}, "required": ["year", "sex", "n", "prop"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"IDSTORE": {"type": "string"}, "MERCHANT": {"type": "string"}, "MERCHANTCODE": {"type": "string"}, "CHECKOUT_BUTTON": {"type": "object", "properties": {"class": {"type": "string"}, "text": {"type": "string"}}, "required": ["class", "text"]}, "CONF": {"type": "object", "properties": {"PAGINATION_PRODUCTS": {"type": "object", "properties": {"VALUE": {"type": "string"}, "ID_DIV_PAGINACION": {"type": "string"}}, "required": ["VALUE", "ID_DIV_PAGINACION"]}, "PRODUCT_TYPE_DEFAULT": {"type": "string"}, "CARRITO_AJAX": {"type": "string"}}, "required": ["PAGINATION_PRODUCTS", "PRODUCT_TYPE_DEFAULT", "CARRITO_AJAX"]}, "CHECKOUT_PAGE": {"type": "string"}, "SUCCESSFUL_PAGE": {"type": "string"}, "STORE_HASH": {"type": "string"}, "STORE_URL": {"type": "string"}, "MOD_PLATAFORM": {"type": "string"}}, "required": ["IDSTORE", "MERCHANT", "MERCHANTCODE", "CHECKOUT_BUTTON", "CONF", "CHECKOUT_PAGE", "SUCCESSFUL_PAGE", "STORE_HASH", "STORE_URL", "MOD_PLATAFORM"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"IDSTORE" : "0000", "MERCHANT" : "0000000000000000000000000000", "MERCHANTCODE" : "1a1a1a1a1a1-2b2b-3c3c-4d4d-5c5c5c5c5c5", "CHECKOUT_BUTTON" : {"class" : "button search-submit", "text" : "Proceed to Checkout"}, "CONF" : {"PAGINATION_PRODUCTS" : {"VALUE" : "TRUE", "ID_DIV_PAGINACION" : ".product-list"}, "PRODUCT_TYPE_DEFAULT" : "67", "CARRITO_AJAX" : "TRUE"}, "CHECKOUT_PAGE" : "/pages/order-summary", "SUCCESSFUL_PAGE" : "/pages/checkout-success", "STORE_HASH" : "demo", "STORE_URL" : "https://sbcmerchant.myshopify.com/", "MOD_PLATAFORM" : "shopify"}
json_instruct
{"type": "object", "properties": {"IDSTORE": {"type": "string"}, "MERCHANT": {"type": "string"}, "MERCHANTCODE": {"type": "string"}, "CHECKOUT_BUTTON": {"type": "object", "properties": {"class": {"type": "string"}, "text": {"type": "string"}}, "required": ["class", "text"]}, "CONF": {"type": "object", "properties": {"PAGINATION_PRODUCTS": {"type": "object", "properties": {"VALUE": {"type": "string"}, "ID_DIV_PAGINACION": {"type": "string"}}, "required": ["VALUE", "ID_DIV_PAGINACION"]}, "PRODUCT_TYPE_DEFAULT": {"type": "string"}, "CARRITO_AJAX": {"type": "string"}}, "required": ["PAGINATION_PRODUCTS", "PRODUCT_TYPE_DEFAULT", "CARRITO_AJAX"]}, "CHECKOUT_PAGE": {"type": "string"}, "SUCCESSFUL_PAGE": {"type": "string"}, "STORE_HASH": {"type": "string"}, "STORE_URL": {"type": "string"}, "MOD_PLATAFORM": {"type": "string"}}, "required": ["IDSTORE", "MERCHANT", "MERCHANTCODE", "CHECKOUT_BUTTON", "CONF", "CHECKOUT_PAGE", "SUCCESSFUL_PAGE", "STORE_HASH", "STORE_URL", "MOD_PLATAFORM"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"connector.class": {"type": "string"}, "connection.url": {"type": "string"}, "topics": {"type": "string"}, "key.converter": {"type": "string"}, "key.converter.schema.registry.url": {"type": "string"}, "key.converter.enhanced.avro.schema.support": {"type": "boolean"}, "value.converter": {"type": "string"}, "value.converter.schema.registry.url": {"type": "string"}, "value.converter.enhanced.avro.schema.support": {"type": "boolean"}, "connection.user": {"type": "string"}, "connection.password": {"type": "string"}, "tasks.max": {"type": "string"}, "auto.create": {"type": "boolean"}, "auto.evolve": {"type": "boolean"}, "insert.mode": {"type": "string"}, "pk.mode": {"type": "string"}, "pk.fields": {"type": "string"}}, "required": ["connector.class", "connection.url", "topics", "key.converter", "key.converter.schema.registry.url", "key.converter.enhanced.avro.schema.support", "value.converter", "value.converter.schema.registry.url", "value.converter.enhanced.avro.schema.support", "connection.user", "connection.password", "tasks.max", "auto.create", "auto.evolve", "insert.mode", "pk.mode", "pk.fields"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"connector.class" : "io.confluent.connect.jdbc.JdbcSinkConnector", "connection.url" : "jdbc:postgresql://postgres:5432/db_user", "topics" : "test01", "key.converter" : "org.apache.kafka.connect.storage.StringConverter", "key.converter.schema.registry.url" : "http://schema:8081", "key.converter.enhanced.avro.schema.support" : false, "value.converter" : "io.confluent.connect.avro.AvroConverter", "value.converter.schema.registry.url" : "http://schema:8081", "value.converter.enhanced.avro.schema.support" : true, "connection.user" : "db_user", "connection.password" : "db_password", "tasks.max" : "1", "auto.create" : true, "auto.evolve" : true, "insert.mode" : "upsert", "pk.mode" : "record_key", "pk.fields" : "MSG_KEY"}
json_instruct
{"type": "object", "properties": {"connector.class": {"type": "string"}, "connection.url": {"type": "string"}, "topics": {"type": "string"}, "key.converter": {"type": "string"}, "key.converter.schema.registry.url": {"type": "string"}, "key.converter.enhanced.avro.schema.support": {"type": "boolean"}, "value.converter": {"type": "string"}, "value.converter.schema.registry.url": {"type": "string"}, "value.converter.enhanced.avro.schema.support": {"type": "boolean"}, "connection.user": {"type": "string"}, "connection.password": {"type": "string"}, "tasks.max": {"type": "string"}, "auto.create": {"type": "boolean"}, "auto.evolve": {"type": "boolean"}, "insert.mode": {"type": "string"}, "pk.mode": {"type": "string"}, "pk.fields": {"type": "string"}}, "required": ["connector.class", "connection.url", "topics", "key.converter", "key.converter.schema.registry.url", "key.converter.enhanced.avro.schema.support", "value.converter", "value.converter.schema.registry.url", "value.converter.enhanced.avro.schema.support", "connection.user", "connection.password", "tasks.max", "auto.create", "auto.evolve", "insert.mode", "pk.mode", "pk.fields"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"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": {"6791": {"type": "string"}}, "required": ["6791"]}, "timeto": {"type": "object", "properties": {"6791": {"type": "number"}}, "required": ["6791"]}, "image": {"type": "string"}, "image_coords": {"type": "array", "items": {"type": "integer"}}, "tags": {"type": "array", "items": {"type": "string"}}}, "required": ["id", "title", "description", "paths", "location", "wayto", "timeto", "image", "image_coords", "tags"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : 6798, "title" : ["[Wehntoph, Cave]"], "description" : ["A natural cave has formed in the hillside, providing shelter from the elements and a convenient resting place. Drawings mar the walls, clear evidence that others have been here before you."], "paths" : ["Obvious paths: northeast"], "location" : "the northern slopes of Wehntoph", "wayto" : {"6791" : "northeast"}, "timeto" : {"6791" : 0.2}, "image" : "wl-gates-1264234799.png", "image_coords" : [550, 1133, 560, 1143], "tags" : ["some sovyn clove", "some acantha leaf", "some calamia fruit", "small daisy", "ginger root", "wild carrot", "withered black mushroom", "blue whortleberry", "small flower", "some bur-clover root", "small rose", "some wingstem root", "murdroot", "white baneberry", "heath aster", "some murkweed"]}
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": {"6791": {"type": "string"}}, "required": ["6791"]}, "timeto": {"type": "object", "properties": {"6791": {"type": "number"}}, "required": ["6791"]}, "image": {"type": "string"}, "image_coords": {"type": "array", "items": {"type": "integer"}}, "tags": {"type": "array", "items": {"type": "string"}}}, "required": ["id", "title", "description", "paths", "location", "wayto", "timeto", "image", "image_coords", "tags"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "dependencies": {"type": "object", "properties": {"bcryptjs": {"type": "string"}, "cors": {"type": "string"}, "dotenv": {"type": "string"}, "express": {"type": "string"}, "express-async-errors": {"type": "string"}, "jsonwebtoken": {"type": "string"}, "mysql2": {"type": "string"}, "sequelize": {"type": "string"}, "yup": {"type": "string"}}, "required": ["bcryptjs", "cors", "dotenv", "express", "express-async-errors", "jsonwebtoken", "mysql2", "sequelize", "yup"]}, "devDependencies": {"type": "object", "properties": {"nodemon": {"type": "string"}, "sucrase": {"type": "string"}}, "required": ["nodemon", "sucrase"]}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}, "build": {"type": "string"}, "dev": {"type": "string"}}, "required": ["start", "build", "dev"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}}, "required": ["name", "version", "description", "main", "dependencies", "devDependencies", "scripts", "keywords", "author", "license"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "codersmarket-nodejs-api", "version" : "1.0.0", "description" : "An api-based application focused on analyzing the main aspects of a REST API using express", "main" : "src/index.js", "dependencies" : {"bcryptjs" : "^2.4.3", "cors" : "^2.8.5", "dotenv" : "^10.0.0", "express" : "^4.17.1", "express-async-errors" : "^3.1.1", "jsonwebtoken" : "^8.5.1", "mysql2" : "^2.3.3", "sequelize" : "^6.12.0-beta.3", "yup" : "^0.32.11"}, "devDependencies" : {"nodemon" : "^2.0.14", "sucrase" : "^3.20.3"}, "scripts" : {"start" : "node build/index.js", "build" : "sucrase ./src -d ./build --transforms imports", "dev" : "nodemon --exec sucrase-node src/index.js"}, "keywords" : ["REST", "API", "Express", "NodeJS"], "author" : "Wellington S. Almeida (WellsSA)", "license" : "MIT"}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "dependencies": {"type": "object", "properties": {"bcryptjs": {"type": "string"}, "cors": {"type": "string"}, "dotenv": {"type": "string"}, "express": {"type": "string"}, "express-async-errors": {"type": "string"}, "jsonwebtoken": {"type": "string"}, "mysql2": {"type": "string"}, "sequelize": {"type": "string"}, "yup": {"type": "string"}}, "required": ["bcryptjs", "cors", "dotenv", "express", "express-async-errors", "jsonwebtoken", "mysql2", "sequelize", "yup"]}, "devDependencies": {"type": "object", "properties": {"nodemon": {"type": "string"}, "sucrase": {"type": "string"}}, "required": ["nodemon", "sucrase"]}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}, "build": {"type": "string"}, "dev": {"type": "string"}}, "required": ["start", "build", "dev"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}}, "required": ["name", "version", "description", "main", "dependencies", "devDependencies", "scripts", "keywords", "author", "license"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "min_rarity": {"type": "integer"}, "max_rarity": {"type": "integer"}, "two_pc": {"type": "string"}, "four_pc": {"type": "string"}, "goblet": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "description": {"type": "string"}}, "required": ["id", "name", "description"]}, "plume": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "description": {"type": "string"}}, "required": ["id", "name", "description"]}, "circlet": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "description": {"type": "string"}}, "required": ["id", "name", "description"]}, "flower": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "description": {"type": "string"}}, "required": ["id", "name", "description"]}, "sands": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "description": {"type": "string"}}, "required": ["id", "name", "description"]}}, "required": ["id", "name", "min_rarity", "max_rarity", "two_pc", "four_pc", "goblet", "plume", "circlet", "flower", "sands"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : "thundersoother", "name" : "Thundersoother", "min_rarity" : 4, "max_rarity" : 5, "two_pc" : "\u0e40\u0e1e\u0e34\u0e48\u0e21\u0e04\u0e27\u0e32\u0e21\u0e15\u0e49\u0e32\u0e19\u0e17\u0e32\u0e19\u0e18\u0e32\u0e15\u0e38\u0e44\u0e1f\u0e1f\u0e49\u0e32\u0e02\u0e36\u0e49\u0e19 40%", "four_pc" : "\u0e2a\u0e23\u0e49\u0e32\u0e07\u0e04\u0e27\u0e32\u0e21\u0e40\u0e2a\u0e35\u0e22\u0e2b\u0e32\u0e22\u0e40\u0e1e\u0e34\u0e48\u0e21\u0e02\u0e36\u0e49\u0e19 35% \u0e41\u0e01\u0e48\u0e28\u0e31\u0e15\u0e23\u0e39\u0e17\u0e35\u0e48\u0e44\u0e14\u0e49\u0e23\u0e31\u0e1a\u0e1c\u0e25\u0e01\u0e23\u0e30\u0e17\u0e1a\u0e15\u0e48\u0e2d\u0e18\u0e32\u0e15\u0e38\u0e44\u0e1f\u0e1f\u0e49\u0e32", "goblet" : {"id" : "thundersoothers_goblet", "name" : "Thundersoother's Goblet", "description" : "\u0e41\u0e01\u0e49\u0e27\u0e44\u0e27\u0e19\u0e4c\u0e08\u0e32\u0e01 Thundersoother \u0e17\u0e35\u0e48\u0e2a\u0e32\u0e21\u0e32\u0e23\u0e16\u0e40\u0e2d\u0e32\u0e0a\u0e19\u0e30 the Beast of Thunder \u0e44\u0e14\u0e49"}, "plume" : {"id" : "thundersoothers_plume", "name" : "Thundersoother's Plume", "description" : "\u0e02\u0e19\u0e02\u0e2d\u0e07\u0e2a\u0e31\u0e15\u0e27\u0e4c\u0e1b\u0e35\u0e01\u0e17\u0e35\u0e48\u0e1a\u0e34\u0e19\u0e1c\u0e48\u0e32\u0e19\u0e1e\u0e32\u0e22\u0e38\u0e2a\u0e32\u0e22\u0e1f\u0e49\u0e32 \u0e1f\u0e32\u0e14 \u0e27\u0e48\u0e32\u0e01\u0e31\u0e19\u0e27\u0e48\u0e32\u0e21\u0e31\u0e19\u0e40\u0e1b\u0e47\u0e19\u0e40\u0e04\u0e23\u0e37\u0e48\u0e2d\u0e07\u0e2b\u0e21\u0e32\u0e22\u0e40\u0e01\u0e35\u0e22\u0e23\u0e15\u0e34\u0e22\u0e28\u0e02\u0e2d\u0e07\u0e1c\u0e39\u0e49\u0e01\u0e25\u0e49\u0e32\u0e43\u0e19\u0e15\u0e33\u0e19\u0e32\u0e19 \u0e1c\u0e39\u0e49\u0e17\u0e35\u0e48\u0e17\u0e33\u0e43\u0e2b\u0e49\u0e2a\u0e32\u0e22\u0e1f\u0e49\u0e32\u0e19\u0e31\u0e49\u0e19\u0e2a\u0e07\u0e1a\u0e25\u0e07\u0e44\u0e14\u0e49"}, "circlet" : {"id" : "thundersoothers_diadem", "name" : "Thundersoother's Diadem", "description" : "\u0e21\u0e07\u0e01\u0e38\u0e0e\u0e17\u0e35\u0e48\u0e21\u0e2d\u0e1a\u0e43\u0e2b\u0e49\u0e01\u0e31\u0e1a\u0e1c\u0e39\u0e49\u0e01\u0e25\u0e49\u0e32\u0e43\u0e19\u0e15\u0e33\u0e19\u0e32\u0e19 Thundersoother \u0e08\u0e32\u0e01\u0e01\u0e32\u0e23\u0e01\u0e33\u0e08\u0e31\u0e14 Beast of Thunder \u0e17\u0e35\u0e48\u0e44\u0e14\u0e49\u0e2a\u0e23\u0e49\u0e32\u0e07\u0e04\u0e27\u0e32\u0e21\u0e2b\u0e32\u0e22\u0e19\u0e30\u0e41\u0e01\u0e48\u0e41\u0e1c\u0e48\u0e19\u0e14\u0e34\u0e19"}, "flower" : {"id" : "thundersoothers_heart", "name" : "Thundersoother's Heart", "description" : "\u0e14\u0e2d\u0e01\u0e44\u0e21\u0e49\u0e17\u0e35\u0e48\u0e40\u0e1a\u0e48\u0e07\u0e1a\u0e32\u0e19\u0e2d\u0e22\u0e39\u0e48\u0e17\u0e48\u0e32\u0e21\u0e01\u0e25\u0e32\u0e07\u0e1a\u0e23\u0e34\u0e40\u0e27\u0e13\u0e17\u0e35\u0e48\u0e21\u0e35\u0e2a\u0e32\u0e22\u0e1f\u0e49\u0e32\u0e1c\u0e48\u0e32 \u0e08\u0e19\u0e16\u0e36\u0e07\u0e27\u0e31\u0e19\u0e19\u0e35\u0e49\u0e21\u0e31\u0e19\u0e22\u0e31\u0e07\u0e04\u0e07\u0e21\u0e2d\u0e1a\u0e04\u0e27\u0e32\u0e21\u0e01\u0e25\u0e49\u0e32\u0e43\u0e2b\u0e49\u0e41\u0e01\u0e48\u0e19\u0e31\u0e01\u0e40\u0e14\u0e34\u0e19\u0e17\u0e32\u0e07\u0e17\u0e35\u0e48\u0e15\u0e49\u0e2d\u0e07\u0e40\u0e1c\u0e0a\u0e34\u0e0d\u0e01\u0e31\u0e1a\u0e1e\u0e32\u0e22\u0e38\u0e2a\u0e32\u0e22\u0e1f\u0e49\u0e32\u0e1f\u0e32\u0e14\u0e2d\u0e22\u0e39\u0e48\u0e40\u0e2a\u0e21\u0e2d"}, "sands" : {"id" : "hour_of_soothing_thunder", "name" : "Hour of Soothing Thunder", "description" : "\u0e2d\u0e38\u0e1b\u0e01\u0e23\u0e13\u0e4c\u0e1a\u0e2d\u0e01\u0e40\u0e27\u0e25\u0e32\u0e17\u0e35\u0e48\u0e40\u0e01\u0e47\u0e1a\u0e23\u0e31\u0e01\u0e29\u0e32\u0e44\u0e27\u0e49\u0e42\u0e14\u0e22\u0e1c\u0e39\u0e49\u0e01\u0e25\u0e49\u0e32\u0e1c\u0e39\u0e49\u0e40\u0e2d\u0e32\u0e0a\u0e19\u0e30\u0e2a\u0e32\u0e22\u0e1f\u0e49\u0e32\u0e44\u0e14\u0e49 \u0e1c\u0e25\u0e36\u0e01\u0e41\u0e2b\u0e48\u0e07\u0e18\u0e32\u0e15\u0e38\u0e44\u0e1f\u0e1f\u0e49\u0e32\u0e2d\u0e31\u0e19\u0e40\u0e25\u0e47\u0e01\u0e08\u0e34\u0e4b\u0e27\u0e44\u0e2b\u0e25\u0e44\u0e1b\u0e21\u0e32\u0e2d\u0e22\u0e39\u0e48\u0e20\u0e32\u0e22\u0e43\u0e19\u0e15\u0e25\u0e2d\u0e14\u0e17\u0e35\u0e48\u0e40\u0e27\u0e25\u0e32\u0e44\u0e14\u0e49\u0e1c\u0e48\u0e32\u0e19\u0e44\u0e1b"}}
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "min_rarity": {"type": "integer"}, "max_rarity": {"type": "integer"}, "two_pc": {"type": "string"}, "four_pc": {"type": "string"}, "goblet": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "description": {"type": "string"}}, "required": ["id", "name", "description"]}, "plume": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "description": {"type": "string"}}, "required": ["id", "name", "description"]}, "circlet": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "description": {"type": "string"}}, "required": ["id", "name", "description"]}, "flower": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "description": {"type": "string"}}, "required": ["id", "name", "description"]}, "sands": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "description": {"type": "string"}}, "required": ["id", "name", "description"]}}, "required": ["id", "name", "min_rarity", "max_rarity", "two_pc", "four_pc", "goblet", "plume", "circlet", "flower", "sands"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"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 is a beginner\u2019s guide with clear step-by-step instructions, explanations, and advice. Each concept is illustrated with a complete example that you can use as a starting point for your own work. If you are an engineer, scientist, mathematician, or student, this book is for you. To get the most from Sage by using the Python programming language, we\u2019ll give you the basics of the language to get you started. For this, it will be helpful if you have some experience with basic programming concepts.", "details" : {"authors" : "Craig Finch", "format" : "pdf", "isbn-10" : "1849514461", "isbn-13" : "978-1849514460", "pages" : "364 pages", "publication date" : "May 11, 2011", "publisher" : "Packt Publishing", "size" : "7.97Mb"}, "img" : "http://23.95.221.108/covers/5b/5b114761339e92428152c6a629cf416a.jpg", "link" : "https://rapidhosting.info/files/e71", "title" : "Sage 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#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "description": {"type": "string"}, "user": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "email": {"type": "string"}, "paypal_email": {"type": "null"}, "homepage": {"type": "null"}, "about": {"type": "null"}, "license": {"type": "null"}}, "required": ["id", "name", "email", "paypal_email", "homepage", "about", "license"]}, "updated": {"type": "string"}, "weekly_install_count": {"type": "integer"}, "total_install_count": {"type": "integer"}, "rating": {"type": "null"}, "after_screenshot_name": {"type": "string"}, "obsoleting_style_id": {"type": "null"}, "obsoleting_style_name": {"type": "null"}, "obsolete": {"type": "integer"}, "admin_delete_reason_id": {"type": "null"}, "obsoletion_message": {"type": "null"}, "screenshots": {"type": "null"}, "license": {"type": "null"}, "created": {"type": "string"}, "category": {"type": "string"}, "raw_subcategory": {"type": "string"}, "subcategory": {"type": "string"}, "additional_info": {"type": "null"}, "style_tags": {"type": "array", "items": {}}, "css": {"type": "string"}, "discussions": {"type": "array", "items": {}}, "discussionsCount": {"type": "integer"}, "commentsCount": {"type": "integer"}, "userjs_url": {"type": "string"}, "style_settings": {"type": "array", "items": {}}}, "required": ["id", "name", "description", "user", "updated", "weekly_install_count", "total_install_count", "rating", "after_screenshot_name", "obsoleting_style_id", "obsoleting_style_name", "obsolete", "admin_delete_reason_id", "obsoletion_message", "screenshots", "license", "created", "category", "raw_subcategory", "subcategory", "additional_info", "style_tags", "css", "discussions", "discussionsCount", "commentsCount", "userjs_url", "style_settings"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : 2026, "name" : "Website: cleaner - www.computerwoche.de", "description" : "The website of the german it-magazin Computerwoche without banner-ads.", "user" : {"id" : 760, "name" : "xwolf", "email" : "redacted", "paypal_email" : null, "homepage" : null, "about" : null, "license" : null}, "updated" : "2007-03-21T08:14:22.000Z", "weekly_install_count" : 0, "total_install_count" : 245, "rating" : null, "after_screenshot_name" : "https://userstyles.org/style_screenshots/2026_after.png?r=1588493039", "obsoleting_style_id" : null, "obsoleting_style_name" : null, "obsolete" : 0, "admin_delete_reason_id" : null, "obsoletion_message" : null, "screenshots" : null, "license" : null, "created" : "2007-03-21T08:14:22.000Z", "category" : "site", "raw_subcategory" : "computerwoche", "subcategory" : "computerwoche", "additional_info" : null, "style_tags" : [], "css" : "@namespace url(http://www.w3.org/1999/xhtml);\r\n\r\n@-moz-document domain(\"www.computerwoche.de\") {\r\n div[id^=\"banner\"] {\r\n position: absolute;\r\n left: -1000em;\r\n top: -1000em;\r\n width: 1px;\r\n height: 1px;\r\n display: inline;\r\n float: left;\r\n }\r\n\r\n}", "discussions" : [], "discussionsCount" : 0, "commentsCount" : 0, "userjs_url" : "/styles/userjs/2026/website-cleaner-www-computerwoche-de.user.js", "style_settings" : []}
json_instruct
{"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "description": {"type": "string"}, "user": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "email": {"type": "string"}, "paypal_email": {"type": "null"}, "homepage": {"type": "null"}, "about": {"type": "null"}, "license": {"type": "null"}}, "required": ["id", "name", "email", "paypal_email", "homepage", "about", "license"]}, "updated": {"type": "string"}, "weekly_install_count": {"type": "integer"}, "total_install_count": {"type": "integer"}, "rating": {"type": "null"}, "after_screenshot_name": {"type": "string"}, "obsoleting_style_id": {"type": "null"}, "obsoleting_style_name": {"type": "null"}, "obsolete": {"type": "integer"}, "admin_delete_reason_id": {"type": "null"}, "obsoletion_message": {"type": "null"}, "screenshots": {"type": "null"}, "license": {"type": "null"}, "created": {"type": "string"}, "category": {"type": "string"}, "raw_subcategory": {"type": "string"}, "subcategory": {"type": "string"}, "additional_info": {"type": "null"}, "style_tags": {"type": "array", "items": {}}, "css": {"type": "string"}, "discussions": {"type": "array", "items": {}}, "discussionsCount": {"type": "integer"}, "commentsCount": {"type": "integer"}, "userjs_url": {"type": "string"}, "style_settings": {"type": "array", "items": {}}}, "required": ["id", "name", "description", "user", "updated", "weekly_install_count", "total_install_count", "rating", "after_screenshot_name", "obsoleting_style_id", "obsoleting_style_name", "obsolete", "admin_delete_reason_id", "obsoletion_message", "screenshots", "license", "created", "category", "raw_subcategory", "subcategory", "additional_info", "style_tags", "css", "discussions", "discussionsCount", "commentsCount", "userjs_url", "style_settings"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"type": {"type": "string"}, "level": {"type": "string"}, "label": {"type": "string"}, "locale": {"type": "string"}, "country_id": {"type": "integer"}, "country_reference": {"type": "integer"}, "country_name": {"type": "string"}, "region_id": {"type": "string"}, "region_reference": {"type": "string"}, "region_name": {"type": "string"}, "province_id": {"type": "string"}, "province_reference": {"type": "string"}, "province_name": {"type": "string"}, "city_id": {"type": "string"}, "city_reference": {"type": "string"}, "city_name": {"type": "string"}, "barangay_id": {"type": "string"}, "barangay_reference": {"type": "string"}, "barangay_name": {"type": "string"}}, "required": ["type", "level", "label", "locale", "country_id", "country_reference", "country_name", "region_id", "region_reference", "region_name", "province_id", "province_reference", "province_name", "city_id", "city_reference", "city_name", "barangay_id", "barangay_reference", "barangay_name"]}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}}, "required": ["type", "coordinates"]}}, "required": ["type", "properties", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"type" : "Feature", "properties" : {"type" : "barangay", "level" : "4", "label" : "Badlan Grande, Calinog, Iloilo, Western Visayas (Region VI), PH", "locale" : "ph.western-visayas-region-vi.iloilo.calinog.badlan-grande", "country_id" : 177, "country_reference" : 177, "country_name" : "Philippines", "region_id" : "16", "region_reference" : "6", "region_name" : "Western Visayas (Region VI)", "province_id" : "36", "province_reference" : "36", "province_name" : "Iloilo", "city_id" : "298", "city_reference" : "658", "city_name" : "Calinog", "barangay_id" : "8173", "barangay_reference" : "15768", "barangay_name" : "Badlan Grande"}, "geometry" : {"type" : "MultiPolygon", "coordinates" : [[[[122.505577, 11.15775], [122.505569, 11.1583], [122.508293, 11.15568], [122.508583, 11.15696], [122.513924, 11.15664], [122.51609, 11.15516], [122.517067, 11.15286], [122.516953, 11.15082], [122.515404, 11.15049], [122.514183, 11.15014], [122.513153, 11.14828], [122.513184, 11.14776], [122.512901, 11.14716], [122.513161, 11.14606], [122.511902, 11.14262], [122.512306, 11.14205], [122.511688, 11.14171], [122.511269, 11.14088], [122.511757, 11.14031], [122.511932, 11.13983], [122.512238, 11.13951], [122.511208, 11.13836], [122.509453, 11.13961], [122.507713, 11.13956], [122.506241, 11.13987], [122.505173, 11.14124], [122.504578, 11.15046], [122.505882, 11.14974], [122.505577, 11.15775]]]]}}
json_instruct
{"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"type": {"type": "string"}, "level": {"type": "string"}, "label": {"type": "string"}, "locale": {"type": "string"}, "country_id": {"type": "integer"}, "country_reference": {"type": "integer"}, "country_name": {"type": "string"}, "region_id": {"type": "string"}, "region_reference": {"type": "string"}, "region_name": {"type": "string"}, "province_id": {"type": "string"}, "province_reference": {"type": "string"}, "province_name": {"type": "string"}, "city_id": {"type": "string"}, "city_reference": {"type": "string"}, "city_name": {"type": "string"}, "barangay_id": {"type": "string"}, "barangay_reference": {"type": "string"}, "barangay_name": {"type": "string"}}, "required": ["type", "level", "label", "locale", "country_id", "country_reference", "country_name", "region_id", "region_reference", "region_name", "province_id", "province_reference", "province_name", "city_id", "city_reference", "city_name", "barangay_id", "barangay_reference", "barangay_name"]}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}}, "required": ["type", "coordinates"]}}, "required": ["type", "properties", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"result": {"type": "object", "properties": {"item": {"type": "string"}}, "required": ["item"]}, "type": {"type": "string"}, "mirrored": {"type": "boolean"}, "pattern": {"type": "array", "items": {"type": "string"}}, "key": {"type": "object", "properties": {"P": {"type": "object", "properties": {"item": {"type": "string"}}, "required": ["item"]}, "C": {"type": "object", "properties": {"item": {"type": "string"}}, "required": ["item"]}, "M": {"type": "object", "properties": {"item": {"type": "string"}}, "required": ["item"]}, "N": {"type": "object", "properties": {"item": {"type": "string"}}, "required": ["item"]}, "O": {"type": "object", "properties": {"item": {"type": "string"}}, "required": ["item"]}}, "required": ["P", "C", "M", "N", "O"]}}, "required": ["result", "type", "mirrored", "pattern", "key"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"result" : {"item" : "powersuits:blink_drive"}, "type" : "minecraft:crafting_shaped", "mirrored" : true, "pattern" : ["COC", "MPM", "NON"], "key" : {"P" : {"item" : "numina:component_control_circuit"}, "C" : {"item" : "numina:component_computer_chip"}, "M" : {"item" : "numina:component_field_emitter"}, "N" : {"item" : "numina:component_wiring"}, "O" : {"item" : "numina:component_ion_thruster"}}}
json_instruct
{"type": "object", "properties": {"result": {"type": "object", "properties": {"item": {"type": "string"}}, "required": ["item"]}, "type": {"type": "string"}, "mirrored": {"type": "boolean"}, "pattern": {"type": "array", "items": {"type": "string"}}, "key": {"type": "object", "properties": {"P": {"type": "object", "properties": {"item": {"type": "string"}}, "required": ["item"]}, "C": {"type": "object", "properties": {"item": {"type": "string"}}, "required": ["item"]}, "M": {"type": "object", "properties": {"item": {"type": "string"}}, "required": ["item"]}, "N": {"type": "object", "properties": {"item": {"type": "string"}}, "required": ["item"]}, "O": {"type": "object", "properties": {"item": {"type": "string"}}, "required": ["item"]}}, "required": ["P", "C", "M", "N", "O"]}}, "required": ["result", "type", "mirrored", "pattern", "key"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"generate_keys_arguments_decorator": {"type": "object", "properties": {"num_validators": {"type": "object", "properties": {"help": {"type": "string"}, "prompt": {"type": "string"}}, "required": ["help", "prompt"]}, "chain": {"type": "object", "properties": {"help": {"type": "string"}, "prompt": {"type": "string"}}, "required": ["help", "prompt"]}, "keystore_password": {"type": "object", "properties": {"help": {"type": "string"}, "prompt": {"type": "string"}, "confirm": {"type": "string"}, "mismatch": {"type": "string"}}, "required": ["help", "prompt", "confirm", "mismatch"]}}, "required": ["num_validators", "chain", "keystore_password"]}, "generate_keys": {"type": "object", "properties": {"msg_key_creation": {"type": "string"}, "msg_creation_success": {"type": "string"}, "msg_pause": {"type": "string"}, "err_verify_keystores": {"type": "string"}, "err_verify_deposit": {"type": "string"}}, "required": ["msg_key_creation", "msg_creation_success", "msg_pause", "err_verify_keystores", "err_verify_deposit"]}}, "required": ["generate_keys_arguments_decorator", "generate_keys"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"generate_keys_arguments_decorator" : {"num_validators" : {"help" : "\u60a8\u60f3\u8981\u751f\u6210\u7684\u9a8c\u8bc1\u8005\u5bc6\u94a5\u6570\u91cf\uff08\u60a8\u4ee5\u540e\u968f\u65f6\u53ef\u4ee5\u751f\u6210\u66f4\u591a\u5bc6\u94a5\uff09", "prompt" : "\u8bf7\u9009\u62e9\u60a8\u60f3\u8981\u8fd0\u884c\u591a\u5c11\u9a8c\u8bc1\u8005"}, "chain" : {"help" : "\u60a8\u6b63\u5728\u5bf9\u51c6\u7684 Ethereum PoS \u7248\u672c\u3002\u5982\u679c\u60a8\u8981\u5b58\u5165\u4ee5\u592a\u5e01\uff0c\u8bf7\u4f7f\u7528 \"mainnet\"", "prompt" : "\u8bf7\u9009\u62e9\uff08\u4e3b\u7f51\u6216\u6d4b\u8bd5\u7f51\uff09\u7f51\u7edc\u540d/\u94fe\u540d"}, "keystore_password" : {"help" : "\u7528\u6765\u4fdd\u62a4\u60a8\u5bc6\u94a5\u5e93\u7684\u5bc6\u7801\u3002\u60a8\u5728\u8bbe\u7f6e\u60a8\u7684 Ethereum PoS \u9a8c\u8bc1\u8005\u65f6\u9700\u8981\u91cd\u65b0\u8f93\u5165\u5bc6\u7801\u4ee5\u4fbf\u89e3\u5bc6\u5b83\u4eec\u3002\uff08\u5efa\u8bae\u4e0d\u8981\u4f7f\u7528\u6b64\u53c2\u6570\uff0c\u800c\u662f\u7b49\u5f85 CLI \u8981\u6c42\u60a8\u63d0\u4f9b\u60a8\u7684\u52a9\u8bb0\u7b26\uff0c\u5426\u5219\u5b83\u5c06\u51fa\u73b0\u5728\u60a8\u7684 shell \u5386\u53f2\u4e2d\u3002\uff09", "prompt" : "\u7528\u6765\u4fdd\u62a4\u60a8\u5bc6\u94a5\u5e93\u7684\u5bc6\u7801\u3002\u60a8\u5728\u8bbe\u7f6e\u60a8\u7684 Ethereum PoS \u9a8c\u8bc1\u8005\u65f6\u9700\u8981\u91cd\u65b0\u8f93\u5165\u5bc6\u7801\u4ee5\u4fbf\u89e3\u5bc6\u5b83\u4eec\u3002", "confirm" : "\u91cd\u590d\u8f93\u5165\u4ee5\u786e\u8ba4", "mismatch" : "\u9519\u8bef\uff1a\u8f93\u5165\u7684\u4e24\u4e2a\u503c\u4e0d\u5339\u914d\u3002\u8bf7\u518d\u6b21\u8f93\u5165\u3002"}}, "generate_keys" : {"msg_key_creation" : "\u6b63\u5728\u521b\u5efa\u60a8\u7684\u5bc6\u94a5\u3002", "msg_creation_success" : "\n\u6210\u529f\uff01\n\u60a8\u7684\u5bc6\u94a5\u53ef\u4ee5\u5728\u8fd9\u91cc\u627e\u5230\uff1a ", "msg_pause" : "\n\n\u6309\u4efb\u610f\u952e\u3002", "err_verify_keystores" : "\u65e0\u6cd5\u9a8c\u8bc1\u5bc6\u94a5\u5e93\u3002", "err_verify_deposit" : "\u65e0\u6cd5\u9a8c\u8bc1\u5b58\u6b3e\u6570\u636e JSON \u6587\u4ef6\u3002"}}
json_instruct
{"type": "object", "properties": {"generate_keys_arguments_decorator": {"type": "object", "properties": {"num_validators": {"type": "object", "properties": {"help": {"type": "string"}, "prompt": {"type": "string"}}, "required": ["help", "prompt"]}, "chain": {"type": "object", "properties": {"help": {"type": "string"}, "prompt": {"type": "string"}}, "required": ["help", "prompt"]}, "keystore_password": {"type": "object", "properties": {"help": {"type": "string"}, "prompt": {"type": "string"}, "confirm": {"type": "string"}, "mismatch": {"type": "string"}}, "required": ["help", "prompt", "confirm", "mismatch"]}}, "required": ["num_validators", "chain", "keystore_password"]}, "generate_keys": {"type": "object", "properties": {"msg_key_creation": {"type": "string"}, "msg_creation_success": {"type": "string"}, "msg_pause": {"type": "string"}, "err_verify_keystores": {"type": "string"}, "err_verify_deposit": {"type": "string"}}, "required": ["msg_key_creation", "msg_creation_success", "msg_pause", "err_verify_keystores", "err_verify_deposit"]}}, "required": ["generate_keys_arguments_decorator", "generate_keys"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"title": {"type": "object", "properties": {"zh": {"type": "string"}, "en": {"type": "string"}}, "required": ["zh", "en"]}, "demos": {"type": "array", "items": {"type": "object", "properties": {"filename": {"type": "string"}, "title": {"type": "object", "properties": {"zh": {"type": "string"}, "en": {"type": "string"}}, "required": ["zh", "en"]}, "screenshot": {"type": "string"}}, "required": ["filename", "title", "screenshot"]}}}, "required": ["title", "demos"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"title" : {"zh" : "\u4e2d\u6587\u5206\u7c7b", "en" : "Category"}, "demos" : [{"filename" : "multiEdges.js", "title" : {"zh" : "\u4e24\u8282\u70b9\u95f4\u5b58\u5728\u591a\u6761\u8fb9", "en" : "Multiple Edges Between 2 Nodes"}, "screenshot" : "https://gw.alipayobjects.com/mdn/rms_f8c6a0/afts/img/A*g2p_Qa_wZcIAAAAAAAAAAABkARQnAQ"}]}
json_instruct
{"type": "object", "properties": {"title": {"type": "object", "properties": {"zh": {"type": "string"}, "en": {"type": "string"}}, "required": ["zh", "en"]}, "demos": {"type": "array", "items": {"type": "object", "properties": {"filename": {"type": "string"}, "title": {"type": "object", "properties": {"zh": {"type": "string"}, "en": {"type": "string"}}, "required": ["zh", "en"]}, "screenshot": {"type": "string"}}, "required": ["filename", "title", "screenshot"]}}}, "required": ["title", "demos"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"tasks": {"type": "array", "items": {"type": "string"}}, "description": {"type": "string"}}, "required": ["tasks", "description"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"tasks" : ["sls-src-queue-queue", "sls-test-queue-queue"], "description" : "Manage files for SQS finite state machine using aws-sdk-wrap."}
json_instruct
{"type": "object", "properties": {"tasks": {"type": "array", "items": {"type": "string"}}, "description": {"type": "string"}}, "required": ["tasks", "description"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"body": {"type": "string"}, "attachments": {"type": "array", "items": {}}, "created_by_name": {"type": "string"}, "created_at": {"type": "string"}, "created_by": {"type": "string"}, "parent_id": {"type": "string"}, "id": {"type": "string"}}, "required": ["body", "attachments", "created_by_name", "created_at", "created_by", "parent_id", "id"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"body" : "Hi Zack,\n\n\nI have to admit that calling it 2.5-phase was a bit tounge-in-cheek of \nme. All those different phases keep confusing the living daylight out \nof me, and by reading the posts on this list, others see to share \nsimilar sentiment.\n\n\nAnyhow, and I'm glad you pointed this out. My intention with the little \n2.5p exercise was exactly this--to compare Radiance to DaySim. I have \nto admit that to me, DS is a bit of a black box, but this is probably \nonly because I don't use it much.\n\n\nAlso, nailing down a nomenclature of dds terminology is a great idea. I \nthink there is much confusion as to what the different methods and \nsoftware packages can and cannot do, so having some overview of \ncapabilities, fields of application, accuracy, limitations etc would be \ngreat.\n\n\nAnd: How about test cases? Has anybody ever compared, say, DaySim \nagainst Radiance for DDS. There are quite a few clever algorithms that \nonly seems to exist in DS, not anywhere else, making a verification of \nDS results against Rad rather challenging. What can DS do that Radiance \ncan't, and vice versa?\n\n\nBest\n\n\nAxel\n\n\n\n\n\n\nOn 06/02/14 20:01, Zack Rogers wrote:\n___\n<sup>Automatically generated content from [radiance mailing-list](https://radiance-online.org/pipermail/radiance-general/2014-February/010046.html).</sup>", "attachments" : [], "created_by_name" : "Axel Jacobs", "created_at" : "February 06, 2014 at 01:11PM", "created_by" : "Axel_Jacobs", "parent_id" : "radiance-general_010037", "id" : "radiance-general_010046"}
json_instruct
{"type": "object", "properties": {"body": {"type": "string"}, "attachments": {"type": "array", "items": {}}, "created_by_name": {"type": "string"}, "created_at": {"type": "string"}, "created_by": {"type": "string"}, "parent_id": {"type": "string"}, "id": {"type": "string"}}, "required": ["body", "attachments", "created_by_name", "created_at", "created_by", "parent_id", "id"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"name": {"type": "string"}, "filename": {"type": "string"}, "description": {"type": "string"}, "homepage": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "license": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "autoupdate": {"type": "object", "properties": {"source": {"type": "string"}, "target": {"type": "string"}, "fileMap": {"type": "array", "items": {"type": "object", "properties": {"basePath": {"type": "string"}, "files": {"type": "array", "items": {"type": "string"}}}, "required": ["basePath", "files"]}}}, "required": ["source", "target", "fileMap"]}, "author": {"type": "object", "properties": {"name": {"type": "string"}, "url": {"type": "string"}}, "required": ["name", "url"]}, "version": {"type": "string"}}, "required": ["name", "filename", "description", "homepage", "keywords", "license", "repository", "autoupdate", "author", "version"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "background-check", "filename" : "background-check.min.js", "description" : "Automatically switch to a darker or a lighter version of an element depending on the brightness of images behind it.", "homepage" : "http://www.kennethcachia.com/background-check/", "keywords" : ["background", "check"], "license" : "MIT", "repository" : {"type" : "git", "url" : "https://github.com/kennethcachia/background-check.git"}, "autoupdate" : {"source" : "git", "target" : "git://github.com/kennethcachia/background-check.git", "fileMap" : [{"basePath" : "", "files" : ["background-check*"]}]}, "author" : {"name" : "Kenneth Cachia", "url" : "http://kennethcachia.com/"}, "version" : "1.2.2"}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "filename": {"type": "string"}, "description": {"type": "string"}, "homepage": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "license": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "autoupdate": {"type": "object", "properties": {"source": {"type": "string"}, "target": {"type": "string"}, "fileMap": {"type": "array", "items": {"type": "object", "properties": {"basePath": {"type": "string"}, "files": {"type": "array", "items": {"type": "string"}}}, "required": ["basePath", "files"]}}}, "required": ["source", "target", "fileMap"]}, "author": {"type": "object", "properties": {"name": {"type": "string"}, "url": {"type": "string"}}, "required": ["name", "url"]}, "version": {"type": "string"}}, "required": ["name", "filename", "description", "homepage", "keywords", "license", "repository", "autoupdate", "author", "version"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"angular-local-storage.js": {"type": "string"}, "angular-local-storage.min.js": {"type": "string"}}, "required": ["angular-local-storage.js", "angular-local-storage.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"angular-local-storage.js" : "sha512-dIqpeFnHS4NjW/s9r6QgjjEB+pbQixB32SE2b508zCn8HiFWYqQfTA+tm0L4gP4fDw7Q4GM+6BPIAPQ70DmEsQ==", "angular-local-storage.min.js" : "sha512-zl/F4VC3QQYoySDzHn+tghxBcQu+GZxNJZzn6dd9ot5xely+fAgA6EtvQ6+2cxVZ6e+M0EAKAMsKCs3UMCCrTg=="}
json_instruct
{"type": "object", "properties": {"angular-local-storage.js": {"type": "string"}, "angular-local-storage.min.js": {"type": "string"}}, "required": ["angular-local-storage.js", "angular-local-storage.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"subreddit": {"type": "string"}, "author": {"type": "string"}, "count": {"type": "integer"}}, "required": ["subreddit", "author", "count"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"subreddit" : "blackcock", "author" : "tmx1000", "count" : 14}
json_instruct
{"type": "object", "properties": {"subreddit": {"type": "string"}, "author": {"type": "string"}, "count": {"type": "integer"}}, "required": ["subreddit", "author", "count"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"builtin": {"type": "object", "properties": {"__set__": {"type": "boolean"}, "elements": {"type": "array", "items": {"type": "string"}}}, "required": ["__set__", "elements"]}, "relative": {"type": "object", "properties": {"__set__": {"type": "boolean"}, "elements": {"type": "array", "items": {"type": "string"}}}, "required": ["__set__", "elements"]}, "required": {"type": "object", "properties": {"__set__": {"type": "boolean"}, "elements": {"type": "array", "items": {"type": "string"}}}, "required": ["__set__", "elements"]}}, "required": ["builtin", "relative", "required"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"builtin" : {"__set__" : true, "elements" : ["__future__", "argparse", "glob", "imp", "os", "re", "sys", "time"]}, "relative" : {"__set__" : true, "elements" : ["common", "exceptions", "parser", "rfkeyword", "rflint", "tables", "testcase", "util", "version"]}, "required" : {"__set__" : true, "elements" : ["rflint", "robot", "setuptools"]}}
json_instruct
{"type": "object", "properties": {"builtin": {"type": "object", "properties": {"__set__": {"type": "boolean"}, "elements": {"type": "array", "items": {"type": "string"}}}, "required": ["__set__", "elements"]}, "relative": {"type": "object", "properties": {"__set__": {"type": "boolean"}, "elements": {"type": "array", "items": {"type": "string"}}}, "required": ["__set__", "elements"]}, "required": {"type": "object", "properties": {"__set__": {"type": "boolean"}, "elements": {"type": "array", "items": {"type": "string"}}}, "required": ["__set__", "elements"]}}, "required": ["builtin", "relative", "required"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"extends": {"type": "string"}, "compilerOptions": {"type": "object", "properties": {"downlevelIteration": {"type": "boolean"}, "importHelpers": {"type": "boolean"}, "incremental": {"type": "boolean"}, "removeComments": {"type": "boolean"}, "resolveJsonModule": {"type": "boolean"}, "rootDir": {"type": "string"}, "useUnknownInCatchVariables": {"type": "boolean"}}, "required": ["downlevelIteration", "importHelpers", "incremental", "removeComments", "resolveJsonModule", "rootDir", "useUnknownInCatchVariables"]}, "exclude": {"type": "array", "items": {"type": "string"}}}, "required": ["extends", "compilerOptions", "exclude"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"extends" : "@tsconfig/recommended/tsconfig.json", "compilerOptions" : {"downlevelIteration" : true, "importHelpers" : true, "incremental" : true, "removeComments" : true, "resolveJsonModule" : true, "rootDir" : "src", "useUnknownInCatchVariables" : false}, "exclude" : ["test/"]}
json_instruct
{"type": "object", "properties": {"extends": {"type": "string"}, "compilerOptions": {"type": "object", "properties": {"downlevelIteration": {"type": "boolean"}, "importHelpers": {"type": "boolean"}, "incremental": {"type": "boolean"}, "removeComments": {"type": "boolean"}, "resolveJsonModule": {"type": "boolean"}, "rootDir": {"type": "string"}, "useUnknownInCatchVariables": {"type": "boolean"}}, "required": ["downlevelIteration", "importHelpers", "incremental", "removeComments", "resolveJsonModule", "rootDir", "useUnknownInCatchVariables"]}, "exclude": {"type": "array", "items": {"type": "string"}}}, "required": ["extends", "compilerOptions", "exclude"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"listing_id": {"type": "integer"}, "id": {"type": "integer"}, "date": {"type": "string"}, "reviewer_id": {"type": "integer"}, "reviewer_name": {"type": "string"}, "text": {"type": "string"}, "title": {"type": "string"}, "host_id": {"type": "integer"}, "listing_latitude": {"type": "number"}, "listing_longitude": {"type": "number"}, "host_name": {"type": "string"}}, "required": ["listing_id", "id", "date", "reviewer_id", "reviewer_name", "text", "title", "host_id", "listing_latitude", "listing_longitude", "host_name"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"listing_id" : 141550, "id" : 5060435, "date" : "2013-06-10", "reviewer_id" : 3667100, "reviewer_name" : "Blaire", "text" : "Fiona's place was perfectly sized for one, with ample living area and closet space, and comfortable air conditioning and window shades to keep everything cool during the day. There wasn't a hair dryer available at first, but Fiona brought one over right away when I inquired, which was great. The bed is a wee bit short if you're tall, but still very comfortable to sleep on.\r\n\r\nI was easily able to park right out front for easy car access, or stroll through the neighborhood to get downtown/further explore the east side on foot. Overall, a great little place, and a wonderful weekend in Austin!", "title" : "Sweet, Sexy Studio in the '02", "host_id" : 688306, "listing_latitude" : 30.25581961280061, "listing_longitude" : -97.72709090146905, "host_name" : "Fiona"}
json_instruct
{"type": "object", "properties": {"listing_id": {"type": "integer"}, "id": {"type": "integer"}, "date": {"type": "string"}, "reviewer_id": {"type": "integer"}, "reviewer_name": {"type": "string"}, "text": {"type": "string"}, "title": {"type": "string"}, "host_id": {"type": "integer"}, "listing_latitude": {"type": "number"}, "listing_longitude": {"type": "number"}, "host_name": {"type": "string"}}, "required": ["listing_id", "id", "date", "reviewer_id", "reviewer_name", "text", "title", "host_id", "listing_latitude", "listing_longitude", "host_name"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"name": {"type": "string"}, "scripts": {"type": "object", "properties": {}, "required": []}, "env": {"type": "object", "properties": {}, "required": []}, "formation": {"type": "object", "properties": {}, "required": []}, "addons": {"type": "array", "items": {}}, "buildpacks": {"type": "array", "items": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}}}, "required": ["name", "scripts", "env", "formation", "addons", "buildpacks"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "number8", "scripts" : {}, "env" : {}, "formation" : {}, "addons" : [], "buildpacks" : [{"url" : "https://elements.heroku.com/buildpacks/heroku/heroku-buildpack-php"}]}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "scripts": {"type": "object", "properties": {}, "required": []}, "env": {"type": "object", "properties": {}, "required": []}, "formation": {"type": "object", "properties": {}, "required": []}, "addons": {"type": "array", "items": {}}, "buildpacks": {"type": "array", "items": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}}}, "required": ["name", "scripts", "env", "formation", "addons", "buildpacks"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"id": {"type": "string"}, "provinceId": {"type": "string"}, "regencyId": {"type": "string"}, "districtId": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "provinceId", "regencyId", "districtId", "name"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : "2017", "provinceId" : "13", "regencyId" : "01", "districtId" : "05", "name" : "Bukik Kaciak Lumpo"}
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "provinceId": {"type": "string"}, "regencyId": {"type": "string"}, "districtId": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "provinceId", "regencyId", "districtId", "name"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "license": {"type": "string"}, "author": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "main": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "devDependencies": {"type": "object", "properties": {"eslint-config-ls-react": {"type": "string"}, "husky": {"type": "string"}, "prettier": {"type": "string"}, "pretty-quick": {"type": "string"}, "prop-types": {"type": "string"}}, "required": ["eslint-config-ls-react", "husky", "prettier", "pretty-quick", "prop-types"]}, "scripts": {"type": "object", "properties": {"precommit": {"type": "string"}, "prettier:debug-check": {"type": "string"}, "preprettier:all": {"type": "string"}, "prettier:all": {"type": "string"}}, "required": ["precommit", "prettier:debug-check", "preprettier:all", "prettier:all"]}}, "required": ["name", "version", "description", "license", "author", "repository", "main", "keywords", "devDependencies", "scripts"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "react-native-shapes", "version" : "0.1.0", "description" : "A collection of simple shapes built with CSS for use as icons, buttons, graphics, etc..", "license" : "MIT", "author" : "Michael Lefkowitz <lefkowitz.michael@gmail.com>", "repository" : {"type" : "git", "url" : "https://github.com/lfkwtz/react-native-shapes.git"}, "main" : "src/index.js", "keywords" : ["shapes", "icons", "css", "react", "react-native", "react native", "expo"], "devDependencies" : {"eslint-config-ls-react" : "https://github.com/lawnstarter/eslint-config-ls-react#2.0.3", "husky" : "^0.14.3", "prettier" : "^1.16.1", "pretty-quick" : "^1.10.0", "prop-types" : "^15.6.2"}, "scripts" : {"precommit" : "pretty-quick --staged", "prettier:debug-check" : "prettier --config ./.prettierrc.js --debug-check \"{src,test}/**/*.js\"", "preprettier:all" : "yarn run prettier:debug-check", "prettier:all" : "prettier --config ./.prettierrc.js --write \"{src,test}/**/*.js\""}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "license": {"type": "string"}, "author": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "main": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "devDependencies": {"type": "object", "properties": {"eslint-config-ls-react": {"type": "string"}, "husky": {"type": "string"}, "prettier": {"type": "string"}, "pretty-quick": {"type": "string"}, "prop-types": {"type": "string"}}, "required": ["eslint-config-ls-react", "husky", "prettier", "pretty-quick", "prop-types"]}, "scripts": {"type": "object", "properties": {"precommit": {"type": "string"}, "prettier:debug-check": {"type": "string"}, "preprettier:all": {"type": "string"}, "prettier:all": {"type": "string"}}, "required": ["precommit", "prettier:debug-check", "preprettier:all", "prettier:all"]}}, "required": ["name", "version", "description", "license", "author", "repository", "main", "keywords", "devDependencies", "scripts"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"recommendations": {"type": "array", "items": {"type": "string"}}}, "required": ["recommendations"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"recommendations" : ["rokucommunity.brightscript"]}
json_instruct
{"type": "object", "properties": {"recommendations": {"type": "array", "items": {"type": "string"}}}, "required": ["recommendations"], "$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#"}
[[1994, 5], [1998, 5], [2003, 5], [2004, 9], [2005, 9], [2006, 8]]
json_instruct
{"type": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"id_3281": {"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_3281"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id_3281" : {"title" : "By Pond and River", "language" : "English", "totaltime" : "0:48:29", "url_librivox" : "http://librivox.org/by-pond-and-river-by-arabella-b-buckley/", "url_iarchive" : "http://www.archive.org/details/by_pond_and_river_0907_librivox", "readers" : ["1841"], "authors" : "4219", "genres" : "Children's Fiction"}}
json_instruct
{"type": "object", "properties": {"id_3281": {"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_3281"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"id_0320": {"type": "object", "properties": {"publicdate": {"type": "string"}, "title": {"type": "string"}}, "required": ["publicdate", "title"]}}, "required": ["id_0320"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id_0320" : {"publicdate" : "2006-10-22 14:41:50", "title" : "Denslow's Three Bears"}}
json_instruct
{"type": "object", "properties": {"id_0320": {"type": "object", "properties": {"publicdate": {"type": "string"}, "title": {"type": "string"}}, "required": ["publicdate", "title"]}}, "required": ["id_0320"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"IsRecentlyVerified": {"type": "boolean"}, "ID": {"type": "integer"}, "UUID": {"type": "string"}, "DataProviderID": {"type": "integer"}, "DataProvidersReference": {"type": "string"}, "UsageTypeID": {"type": "integer"}, "AddressInfo": {"type": "object", "properties": {"ID": {"type": "integer"}, "Title": {"type": "string"}, "AddressLine1": {"type": "string"}, "CountryID": {"type": "integer"}, "Latitude": {"type": "number"}, "Longitude": {"type": "number"}, "AccessComments": {"type": "string"}, "DistanceUnit": {"type": "integer"}}, "required": ["ID", "Title", "AddressLine1", "CountryID", "Latitude", "Longitude", "AccessComments", "DistanceUnit"]}, "Connections": {"type": "array", "items": {"type": "object", "properties": {"ID": {"type": "integer"}, "ConnectionTypeID": {"type": "integer"}, "StatusTypeID": {"type": "integer"}, "LevelID": {"type": "integer"}, "PowerKW": {"type": "integer"}, "CurrentTypeID": {"type": "integer"}}, "required": ["ID", "ConnectionTypeID", "StatusTypeID", "LevelID", "PowerKW", "CurrentTypeID"]}}, "GeneralComments": {"type": "string"}, "StatusTypeID": {"type": "integer"}, "DateLastStatusUpdate": {"type": "string"}, "DataQualityLevel": {"type": "integer"}, "DateCreated": {"type": "string"}, "SubmissionStatusTypeID": {"type": "integer"}}, "required": ["IsRecentlyVerified", "ID", "UUID", "DataProviderID", "DataProvidersReference", "UsageTypeID", "AddressInfo", "Connections", "GeneralComments", "StatusTypeID", "DateLastStatusUpdate", "DataQualityLevel", "DateCreated", "SubmissionStatusTypeID"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"IsRecentlyVerified" : false, "ID" : 153393, "UUID" : "88DD18ED-07B1-4490-A5E4-0176A7BE8EC5", "DataProviderID" : 28, "DataProvidersReference" : "FR*S89*P89076*A", "UsageTypeID" : 5, "AddressInfo" : {"ID" : 153746, "Title" : "CHAMPLOST_Route De Paris", "AddressLine1" : "Route De Paris 89210 CHAMPLOST", "CountryID" : 80, "Latitude" : 48.02690719, "Longitude" : 3.668228, "AccessComments" : "24/24 7/7 jours", "DistanceUnit" : 0}, "Connections" : [{"ID" : 215176, "ConnectionTypeID" : 28, "StatusTypeID" : 50, "LevelID" : 2, "PowerKW" : 22, "CurrentTypeID" : 10}, {"ID" : 215177, "ConnectionTypeID" : 1036, "StatusTypeID" : 50, "LevelID" : 2, "PowerKW" : 22, "CurrentTypeID" : 20}, {"ID" : 248574, "ConnectionTypeID" : 28, "StatusTypeID" : 50, "LevelID" : 2, "PowerKW" : 22, "CurrentTypeID" : 10}, {"ID" : 248575, "ConnectionTypeID" : 1036, "StatusTypeID" : 50, "LevelID" : 2, "PowerKW" : 22, "CurrentTypeID" : 20}], "GeneralComments" : "", "StatusTypeID" : 50, "DateLastStatusUpdate" : "2020-08-27T05:14:00Z", "DataQualityLevel" : 2, "DateCreated" : "2020-03-15T10:54:00Z", "SubmissionStatusTypeID" : 100}
json_instruct
{"type": "object", "properties": {"IsRecentlyVerified": {"type": "boolean"}, "ID": {"type": "integer"}, "UUID": {"type": "string"}, "DataProviderID": {"type": "integer"}, "DataProvidersReference": {"type": "string"}, "UsageTypeID": {"type": "integer"}, "AddressInfo": {"type": "object", "properties": {"ID": {"type": "integer"}, "Title": {"type": "string"}, "AddressLine1": {"type": "string"}, "CountryID": {"type": "integer"}, "Latitude": {"type": "number"}, "Longitude": {"type": "number"}, "AccessComments": {"type": "string"}, "DistanceUnit": {"type": "integer"}}, "required": ["ID", "Title", "AddressLine1", "CountryID", "Latitude", "Longitude", "AccessComments", "DistanceUnit"]}, "Connections": {"type": "array", "items": {"type": "object", "properties": {"ID": {"type": "integer"}, "ConnectionTypeID": {"type": "integer"}, "StatusTypeID": {"type": "integer"}, "LevelID": {"type": "integer"}, "PowerKW": {"type": "integer"}, "CurrentTypeID": {"type": "integer"}}, "required": ["ID", "ConnectionTypeID", "StatusTypeID", "LevelID", "PowerKW", "CurrentTypeID"]}}, "GeneralComments": {"type": "string"}, "StatusTypeID": {"type": "integer"}, "DateLastStatusUpdate": {"type": "string"}, "DataQualityLevel": {"type": "integer"}, "DateCreated": {"type": "string"}, "SubmissionStatusTypeID": {"type": "integer"}}, "required": ["IsRecentlyVerified", "ID", "UUID", "DataProviderID", "DataProvidersReference", "UsageTypeID", "AddressInfo", "Connections", "GeneralComments", "StatusTypeID", "DateLastStatusUpdate", "DataQualityLevel", "DateCreated", "SubmissionStatusTypeID"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"(0, 0, 2)": {"type": "string"}, "(1, 0, 1)": {"type": "string"}, "(1, 1, 1)": {"type": "string"}, "(2, 0, 1)": {"type": "string"}, "(2, 1, 1)": {"type": "string"}, "(3, 0, 1)": {"type": "string"}, "(3, 1, 1)": {"type": "string"}, "(3, 2, 1)": {"type": "string"}, "(4, 0, 1)": {"type": "string"}, "(4, 1, 1)": {"type": "string"}, "(5, 0, 1)": {"type": "string"}, "(5, 1, 1)": {"type": "string"}, "(5, 2, 1)": {"type": "string"}, "(6, 0, 1)": {"type": "string"}, "(6, 1, 1)": {"type": "string"}}, "required": ["(0, 0, 2)", "(1, 0, 1)", "(1, 1, 1)", "(2, 0, 1)", "(2, 1, 1)", "(3, 0, 1)", "(3, 1, 1)", "(3, 2, 1)", "(4, 0, 1)", "(4, 1, 1)", "(5, 0, 1)", "(5, 1, 1)", "(5, 2, 1)", "(6, 0, 1)", "(6, 1, 1)"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"(0, 0, 2)" : "Fitz and The Tantrums", "(1, 0, 1)" : "Also known as", "(1, 1, 1)" : "Fitz & The Tantrums", "(2, 0, 1)" : "Origin", "(2, 1, 1)" : "Los Angeles, California, U.S.", "(3, 0, 1)" : "Genres", "(3, 1, 1)" : "Indie pop", "(3, 2, 1)" : "neo soul", "(4, 0, 1)" : "Years active", "(4, 1, 1)" : "2008-present", "(5, 0, 1)" : "Labels", "(5, 1, 1)" : "Dangerbird", "(5, 2, 1)" : "Elektra", "(6, 0, 1)" : "Website", "(6, 1, 1)" : "fitzandthetantrums.com"}
json_instruct
{"type": "object", "properties": {"(0, 0, 2)": {"type": "string"}, "(1, 0, 1)": {"type": "string"}, "(1, 1, 1)": {"type": "string"}, "(2, 0, 1)": {"type": "string"}, "(2, 1, 1)": {"type": "string"}, "(3, 0, 1)": {"type": "string"}, "(3, 1, 1)": {"type": "string"}, "(3, 2, 1)": {"type": "string"}, "(4, 0, 1)": {"type": "string"}, "(4, 1, 1)": {"type": "string"}, "(5, 0, 1)": {"type": "string"}, "(5, 1, 1)": {"type": "string"}, "(5, 2, 1)": {"type": "string"}, "(6, 0, 1)": {"type": "string"}, "(6, 1, 1)": {"type": "string"}}, "required": ["(0, 0, 2)", "(1, 0, 1)", "(1, 1, 1)", "(2, 0, 1)", "(2, 1, 1)", "(3, 0, 1)", "(3, 1, 1)", "(3, 2, 1)", "(4, 0, 1)", "(4, 1, 1)", "(5, 0, 1)", "(5, 1, 1)", "(5, 2, 1)", "(6, 0, 1)", "(6, 1, 1)"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"brief": {"type": "string"}, "long": {"type": "string"}}, "required": ["brief", "long"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"brief" : "holiness", "long" : "holiness, sanctity, as an abstract quality."}
json_instruct
{"type": "object", "properties": {"brief": {"type": "string"}, "long": {"type": "string"}}, "required": ["brief", "long"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"template": {"type": "object", "properties": {"small": {"type": "string"}, "medium": {"type": "string"}, "large": {"type": "string"}}, "required": ["small", "medium", "large"]}, "channels": {"type": "object", "properties": {"zulinovaboroda": {"type": "object", "properties": {"title": {"type": "string"}, "channel_id": {"type": "integer"}, "link": {"type": "string"}, "desc": {"type": "null"}, "plans": {"type": "object", "properties": {"$4.99": {"type": "string"}, "$9.99": {"type": "string"}, "$24.99": {"type": "string"}}, "required": ["$4.99", "$9.99", "$24.99"]}, "id": {"type": "string"}, "first_seen": {"type": "string"}, "badge": {"type": "null"}, "badge_starting": {"type": "null"}, "badge_3m": {"type": "null"}, "badge_6m": {"type": "null"}, "badge_12m": {"type": "null"}, "badge_24m": {"type": "null"}, "badges": {"type": "null"}, "bits_badges": {"type": "null"}, "cheermote1": {"type": "null"}, "cheermote100": {"type": "null"}, "cheermote1000": {"type": "null"}, "cheermote5000": {"type": "null"}, "cheermote10000": {"type": "null"}, "set": {"type": "integer"}, "emotes": {"type": "array", "items": {"type": "object", "properties": {"code": {"type": "string"}, "image_id": {"type": "integer"}, "set": {"type": "integer"}}, "required": ["code", "image_id", "set"]}}}, "required": ["title", "channel_id", "link", "desc", "plans", "id", "first_seen", "badge", "badge_starting", "badge_3m", "badge_6m", "badge_12m", "badge_24m", "badges", "bits_badges", "cheermote1", "cheermote100", "cheermote1000", "cheermote5000", "cheermote10000", "set", "emotes"]}}, "required": ["zulinovaboroda"]}}, "required": ["template", "channels"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"template" : {"small" : "https://static-cdn.jtvnw.net/emoticons/v1/{image_id}/1.0", "medium" : "https://static-cdn.jtvnw.net/emoticons/v1/{image_id}/2.0", "large" : "https://static-cdn.jtvnw.net/emoticons/v1/{image_id}/3.0"}, "channels" : {"zulinovaboroda" : {"title" : "ZulinovaBoroda", "channel_id" : 139965515, "link" : "http://twitch.tv/zulinovaboroda", "desc" : null, "plans" : {"$4.99" : "119305", "$9.99" : "119308", "$24.99" : "119309"}, "id" : "zulinovaboroda", "first_seen" : "2017-06-30 01:15:06", "badge" : null, "badge_starting" : null, "badge_3m" : null, "badge_6m" : null, "badge_12m" : null, "badge_24m" : null, "badges" : null, "bits_badges" : null, "cheermote1" : null, "cheermote100" : null, "cheermote1000" : null, "cheermote5000" : null, "cheermote10000" : null, "set" : 119305, "emotes" : [{"code" : "zulinoTaschi", "image_id" : 234542, "set" : 119305}, {"code" : "zulinoKoza", "image_id" : 238441, "set" : 119308}]}}}
json_instruct
{"type": "object", "properties": {"template": {"type": "object", "properties": {"small": {"type": "string"}, "medium": {"type": "string"}, "large": {"type": "string"}}, "required": ["small", "medium", "large"]}, "channels": {"type": "object", "properties": {"zulinovaboroda": {"type": "object", "properties": {"title": {"type": "string"}, "channel_id": {"type": "integer"}, "link": {"type": "string"}, "desc": {"type": "null"}, "plans": {"type": "object", "properties": {"$4.99": {"type": "string"}, "$9.99": {"type": "string"}, "$24.99": {"type": "string"}}, "required": ["$4.99", "$9.99", "$24.99"]}, "id": {"type": "string"}, "first_seen": {"type": "string"}, "badge": {"type": "null"}, "badge_starting": {"type": "null"}, "badge_3m": {"type": "null"}, "badge_6m": {"type": "null"}, "badge_12m": {"type": "null"}, "badge_24m": {"type": "null"}, "badges": {"type": "null"}, "bits_badges": {"type": "null"}, "cheermote1": {"type": "null"}, "cheermote100": {"type": "null"}, "cheermote1000": {"type": "null"}, "cheermote5000": {"type": "null"}, "cheermote10000": {"type": "null"}, "set": {"type": "integer"}, "emotes": {"type": "array", "items": {"type": "object", "properties": {"code": {"type": "string"}, "image_id": {"type": "integer"}, "set": {"type": "integer"}}, "required": ["code", "image_id", "set"]}}}, "required": ["title", "channel_id", "link", "desc", "plans", "id", "first_seen", "badge", "badge_starting", "badge_3m", "badge_6m", "badge_12m", "badge_24m", "badges", "bits_badges", "cheermote1", "cheermote100", "cheermote1000", "cheermote5000", "cheermote10000", "set", "emotes"]}}, "required": ["zulinovaboroda"]}}, "required": ["template", "channels"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "bin": {"type": "object", "properties": {"hashlips_art_engine": {"type": "string"}}, "required": ["hashlips_art_engine"]}, "pkg": {"type": "object", "properties": {"assets": {"type": "array", "items": {"type": "string"}}}, "required": ["assets"]}, "scripts": {"type": "object", "properties": {"build": {"type": "string"}, "generate": {"type": "string"}, "rarity": {"type": "string"}, "preview": {"type": "string"}, "pixelate": {"type": "string"}, "update_info": {"type": "string"}, "preview_gif": {"type": "string"}}, "required": ["build", "generate", "rarity", "preview", "pixelate", "update_info", "preview_gif"]}, "author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"canvas": {"type": "string"}, "gif-encoder-2": {"type": "string"}, "sha1": {"type": "string"}}, "required": ["canvas", "gif-encoder-2", "sha1"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}}, "required": ["name", "version", "description", "main", "bin", "pkg", "scripts", "author", "license", "dependencies", "repository", "bugs", "homepage"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "hashlips_art_engine", "version" : "1.0.9", "description" : "HashLips Art Engine is a tool used to create multiple different instances of artworks based on provided layers.", "main" : "index.js", "bin" : {"hashlips_art_engine" : "index.js"}, "pkg" : {"assets" : ["layers/**/*", "node_modules/**/*", "src/**/*"]}, "scripts" : {"build" : "node index.js", "generate" : "node index.js", "rarity" : "node utils/rarity.js", "preview" : "node utils/preview.js", "pixelate" : "node utils/pixelate.js", "update_info" : "node utils/update_info.js", "preview_gif" : "node utils/preview_gif.js"}, "author" : "Daniel Eugene Botha (HashLips)", "license" : "MIT", "dependencies" : {"canvas" : "^2.8.0", "gif-encoder-2" : "^1.0.5", "sha1" : "^1.1.1"}, "repository" : {"type" : "git", "url" : "git+https://github.com/HashLips/hashlips_art_engine.git"}, "bugs" : {"url" : "https://github.com/HashLips/hashlips_art_engine/issues"}, "homepage" : "https://github.com/HashLips/hashlips_art_engine#readme"}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "bin": {"type": "object", "properties": {"hashlips_art_engine": {"type": "string"}}, "required": ["hashlips_art_engine"]}, "pkg": {"type": "object", "properties": {"assets": {"type": "array", "items": {"type": "string"}}}, "required": ["assets"]}, "scripts": {"type": "object", "properties": {"build": {"type": "string"}, "generate": {"type": "string"}, "rarity": {"type": "string"}, "preview": {"type": "string"}, "pixelate": {"type": "string"}, "update_info": {"type": "string"}, "preview_gif": {"type": "string"}}, "required": ["build", "generate", "rarity", "preview", "pixelate", "update_info", "preview_gif"]}, "author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"canvas": {"type": "string"}, "gif-encoder-2": {"type": "string"}, "sha1": {"type": "string"}}, "required": ["canvas", "gif-encoder-2", "sha1"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}}, "required": ["name", "version", "description", "main", "bin", "pkg", "scripts", "author", "license", "dependencies", "repository", "bugs", "homepage"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"parent": {"type": "string"}, "textures": {"type": "object", "properties": {"cross": {"type": "string"}}, "required": ["cross"]}}, "required": ["parent", "textures"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"parent" : "minecraft:block/cross", "textures" : {"cross" : "block/cyan_amaranth"}}
json_instruct
{"type": "object", "properties": {"parent": {"type": "string"}, "textures": {"type": "object", "properties": {"cross": {"type": "string"}}, "required": ["cross"]}}, "required": ["parent", "textures"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"@metadata": {"type": "object", "properties": {"authors": {"type": "array", "items": {"type": "string"}}}, "required": ["authors"]}, "emailauthorization-config-label-username": {"type": "string"}}, "required": ["@metadata", "emailauthorization-config-label-username"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"@metadata" : {"authors" : ["ToJack"]}, "emailauthorization-config-label-username" : "\u041d\u043e\u043c\u0438 \u043a\u043e\u0440\u0431\u0430\u0440"}
json_instruct
{"type": "object", "properties": {"@metadata": {"type": "object", "properties": {"authors": {"type": "array", "items": {"type": "string"}}}, "required": ["authors"]}, "emailauthorization-config-label-username": {"type": "string"}}, "required": ["@metadata", "emailauthorization-config-label-username"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "full_name": {"type": "string"}, "owner": {"type": "object", "properties": {"login": {"type": "string"}, "id": {"type": "integer"}, "avatar_url": {"type": "string"}, "html_url": {"type": "string"}}, "required": ["login", "id", "avatar_url", "html_url"]}, "html_url": {"type": "string"}, "description": {"type": "string"}, "fork": {"type": "boolean"}, "created_at": {"type": "string"}, "updated_at": {"type": "string"}, "pushed_at": {"type": "string"}, "stargazers_count": {"type": "integer"}, "watchers_count": {"type": "integer"}, "forks_count": {"type": "integer"}, "allow_forking": {"type": "boolean"}, "is_template": {"type": "boolean"}, "topics": {"type": "array", "items": {}}, "visibility": {"type": "string"}, "forks": {"type": "integer"}, "watchers": {"type": "integer"}, "score": {"type": "integer"}}, "required": ["id", "name", "full_name", "owner", "html_url", "description", "fork", "created_at", "updated_at", "pushed_at", "stargazers_count", "watchers_count", "forks_count", "allow_forking", "is_template", "topics", "visibility", "forks", "watchers", "score"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"id" : 231370688, "name" : "CVE-2019-18890", "full_name" : "RealLinkers/CVE-2019-18890", "owner" : {"login" : "RealLinkers", "id" : 22389074, "avatar_url" : "https://avatars.githubusercontent.com/u/22389074?v=4", "html_url" : "https://github.com/RealLinkers"}, "html_url" : "https://github.com/RealLinkers/CVE-2019-18890", "description" : "CVE-2019-18890 POC (Proof of Concept)", "fork" : false, "created_at" : "2020-01-02T11:44:47Z", "updated_at" : "2020-12-12T13:01:37Z", "pushed_at" : "2020-01-06T13:13:58Z", "stargazers_count" : 7, "watchers_count" : 7, "forks_count" : 2, "allow_forking" : true, "is_template" : false, "topics" : [], "visibility" : "public", "forks" : 2, "watchers" : 7, "score" : 0}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "full_name": {"type": "string"}, "owner": {"type": "object", "properties": {"login": {"type": "string"}, "id": {"type": "integer"}, "avatar_url": {"type": "string"}, "html_url": {"type": "string"}}, "required": ["login", "id", "avatar_url", "html_url"]}, "html_url": {"type": "string"}, "description": {"type": "string"}, "fork": {"type": "boolean"}, "created_at": {"type": "string"}, "updated_at": {"type": "string"}, "pushed_at": {"type": "string"}, "stargazers_count": {"type": "integer"}, "watchers_count": {"type": "integer"}, "forks_count": {"type": "integer"}, "allow_forking": {"type": "boolean"}, "is_template": {"type": "boolean"}, "topics": {"type": "array", "items": {}}, "visibility": {"type": "string"}, "forks": {"type": "integer"}, "watchers": {"type": "integer"}, "score": {"type": "integer"}}, "required": ["id", "name", "full_name", "owner", "html_url", "description", "fork", "created_at", "updated_at", "pushed_at", "stargazers_count", "watchers_count", "forks_count", "allow_forking", "is_template", "topics", "visibility", "forks", "watchers", "score"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"FeatureEventName": {"type": "string"}, "EventImage": {"type": "string"}, "EventDate": {"type": "object", "properties": {"Date": {"type": "string"}, "Month": {"type": "string"}, "Year": {"type": "string"}}, "required": ["Date", "Month", "Year"]}, "EventTime": {"type": "object", "properties": {"StartTime": {"type": "string"}, "EndTime": {"type": "string"}}, "required": ["StartTime", "EndTime"]}, "EventVenue": {"type": "string"}, "EventVenueMapLink": {"type": "string"}, "EventWebsite": {"type": "string"}, "EventDescription": {"type": "string"}, "MeetupLink": {"type": "string"}, "RegistrationLink": {"type": "string"}, "FBEventPageURL": {"type": "string"}}, "required": ["FeatureEventName", "EventImage", "EventDate", "EventTime", "EventVenue", "EventVenueMapLink", "EventWebsite", "EventDescription", "MeetupLink", "RegistrationLink", "FBEventPageURL"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"FeatureEventName" : "DevFest Makurdi 2019 ", "EventImage" : "hero.gif", "EventDate" : {"Date" : "26", "Month" : "10", "Year" : "2019"}, "EventTime" : {"StartTime" : "09:30 AM", "EndTime" : ""}, "EventVenue" : "HealthyWays Kitchen and Grill, Is inside the same compound as HealthyWays Gym and Spa, Emmanual Mande Close, Old G.R.A Makurdi", "EventVenueMapLink" : "https://goo.gl/maps/pd4CHkfpExyzYYCd7", "EventWebsite" : "https://www.meetup.com/GDG-Makurdi/events/263707822/", "EventDescription" : "Devfest Makurdi 2019 promises to be even more exciting as we are set to bring together more developers, tech enthusiast and amazing speakers within and outside Makurdi together to experience our annual developer festival and the amazing Humans of GDG Makurdi.", "MeetupLink" : "https://www.meetup.com/GDG-Makurdi/events/263707822/", "RegistrationLink" : "https://www.meetup.com/GDG-Makurdi/events/263707822/", "FBEventPageURL" : ""}
json_instruct
{"type": "object", "properties": {"FeatureEventName": {"type": "string"}, "EventImage": {"type": "string"}, "EventDate": {"type": "object", "properties": {"Date": {"type": "string"}, "Month": {"type": "string"}, "Year": {"type": "string"}}, "required": ["Date", "Month", "Year"]}, "EventTime": {"type": "object", "properties": {"StartTime": {"type": "string"}, "EndTime": {"type": "string"}}, "required": ["StartTime", "EndTime"]}, "EventVenue": {"type": "string"}, "EventVenueMapLink": {"type": "string"}, "EventWebsite": {"type": "string"}, "EventDescription": {"type": "string"}, "MeetupLink": {"type": "string"}, "RegistrationLink": {"type": "string"}, "FBEventPageURL": {"type": "string"}}, "required": ["FeatureEventName", "EventImage", "EventDate", "EventTime", "EventVenue", "EventVenueMapLink", "EventWebsite", "EventDescription", "MeetupLink", "RegistrationLink", "FBEventPageURL"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "email": {"type": "string"}}, "required": ["id", "name", "email"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : 1, "name" : "Rick", "email" : "rick@gmail.com"}
json_instruct
{"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "email": {"type": "string"}}, "required": ["id", "name", "email"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"314781": {"type": "object", "properties": {"success": {"type": "boolean"}}, "required": ["success"]}}, "required": ["314781"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"314781" : {"success" : false}}
json_instruct
{"type": "object", "properties": {"314781": {"type": "object", "properties": {"success": {"type": "boolean"}}, "required": ["success"]}}, "required": ["314781"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "author": {"type": "string"}, "license": {"type": "string"}, "homepage": {"type": "string"}, "repository": {"type": "string"}, "dependencies": {"type": "object", "properties": {"@jest-runner/core": {"type": "string"}, "@jest-runner/rpc": {"type": "string"}, "fs-extra": {"type": "string"}, "jest-circus": {"type": "string"}}, "required": ["@jest-runner/core", "@jest-runner/rpc", "fs-extra", "jest-circus"]}}, "required": ["name", "version", "description", "author", "license", "homepage", "repository", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "@jest-runner/nuclide-e2e", "version" : "1.0.0", "description" : "Jest runner that spawns atom/electron workers instead of node", "author" : "Aaron Abramov", "license" : "MIT", "homepage" : "https://github.com/facebook-atom/jest-electron-runner", "repository" : "https://github.com/facebook-atom/jest-electron-runner", "dependencies" : {"@jest-runner/core" : "^1.0.0", "@jest-runner/rpc" : "^1.0.0", "fs-extra" : "^7.0.0", "jest-circus" : "^24.0.0"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "author": {"type": "string"}, "license": {"type": "string"}, "homepage": {"type": "string"}, "repository": {"type": "string"}, "dependencies": {"type": "object", "properties": {"@jest-runner/core": {"type": "string"}, "@jest-runner/rpc": {"type": "string"}, "fs-extra": {"type": "string"}, "jest-circus": {"type": "string"}}, "required": ["@jest-runner/core", "@jest-runner/rpc", "fs-extra", "jest-circus"]}}, "required": ["name", "version", "description", "author", "license", "homepage", "repository", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"public": {"type": "object", "properties": {"plans": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "amount": {"type": "object", "properties": {"cents": {"type": "integer"}, "usd": {"type": "string"}}, "required": ["cents", "usd"]}, "limit": {"type": "integer"}, "interval": {"type": "string"}}, "required": ["name", "amount", "limit", "interval"]}}, "stripe": {"type": "object", "properties": {"testPublishableKey": {"type": "string"}, "livePublishableKey": {"type": "string"}}, "required": ["testPublishableKey", "livePublishableKey"]}}, "required": ["plans", "stripe"]}, "private": {"type": "object", "properties": {"stripe": {"type": "object", "properties": {"testSecretKey": {"type": "string"}, "liveSecretKey": {"type": "string"}}, "required": ["testSecretKey", "liveSecretKey"]}}, "required": ["stripe"]}}, "required": ["public", "private"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"public" : {"plans" : [{"name" : "tiny", "amount" : {"cents" : 500, "usd" : "$5"}, "limit" : 1, "interval" : "month"}, {"name" : "small", "amount" : {"cents" : 1000, "usd" : "$10"}, "limit" : 5, "interval" : "month"}, {"name" : "medium", "amount" : {"cents" : 1500, "usd" : "$15"}, "limit" : 10, "interval" : "month"}, {"name" : "large", "amount" : {"cents" : 2000, "usd" : "$20"}, "limit" : 20, "interval" : "month"}], "stripe" : {"testPublishableKey" : "sk_test_SPVzieat8HCaKQI0gRqC1yPj", "livePublishableKey" : "pk_test_gGsssQZSj9M6t5prPRcZhp8s"}}, "private" : {"stripe" : {"testSecretKey" : "sk_live_0uhv8KV40NCe79pJDtTWejWD", "liveSecretKey" : "pk_live_xCf875JmKfJtZkAVtwmshMEt"}}}
json_instruct
{"type": "object", "properties": {"public": {"type": "object", "properties": {"plans": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "amount": {"type": "object", "properties": {"cents": {"type": "integer"}, "usd": {"type": "string"}}, "required": ["cents", "usd"]}, "limit": {"type": "integer"}, "interval": {"type": "string"}}, "required": ["name", "amount", "limit", "interval"]}}, "stripe": {"type": "object", "properties": {"testPublishableKey": {"type": "string"}, "livePublishableKey": {"type": "string"}}, "required": ["testPublishableKey", "livePublishableKey"]}}, "required": ["plans", "stripe"]}, "private": {"type": "object", "properties": {"stripe": {"type": "object", "properties": {"testSecretKey": {"type": "string"}, "liveSecretKey": {"type": "string"}}, "required": ["testSecretKey", "liveSecretKey"]}}, "required": ["stripe"]}}, "required": ["public", "private"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"Frame": {"type": "array", "items": {"type": "object", "properties": {"NAME": {"type": "string"}, "x": {"type": "number"}, "y": {"type": "number"}, "score": {"type": "number"}}, "required": ["NAME", "x", "y", "score"]}}}, "required": ["Frame"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"Frame" : [{"NAME" : "NOSE", "x" : 425.3087158203125, "y" : 224.30044555664062, "score" : 0.9150804877281189}, {"NAME" : "LEFT_EYE", "x" : 436.02783203125, "y" : 215.12037658691406, "score" : 0.918644905090332}, {"NAME" : "RIGHT_EYE", "x" : 415.38079833984375, "y" : 215.6085662841797, "score" : 0.8984145522117615}, {"NAME" : "LEFT_EAR", "x" : 450.2789001464844, "y" : 227.77703857421875, "score" : 0.8003010749816895}, {"NAME" : "RIGHT_EAR", "x" : 402.09490966796875, "y" : 229.8119659423828, "score" : 0.8552736639976501}, {"NAME" : "LEFT_SHOULDER", "x" : 472.1191101074219, "y" : 287.74517822265625, "score" : 0.8830321431159973}, {"NAME" : "RIGHT_SHOULDER", "x" : 376.5707092285156, "y" : 285.46746826171875, "score" : 0.9344095587730408}, {"NAME" : "LEFT_ELBOW", "x" : 465.10247802734375, "y" : 340.50555419921875, "score" : 0.8536712527275085}, {"NAME" : "RIGHT_ELBOW", "x" : 390.0724182128906, "y" : 339.6625061035156, "score" : 1.0}, {"NAME" : "LEFT_WRIST", "x" : 435.7669677734375, "y" : 271.8553466796875, "score" : 0.8046857714653015}, {"NAME" : "RIGHT_WRIST", "x" : 414.1640930175781, "y" : 271.0165710449219, "score" : 0.8113400936126709}, {"NAME" : "LEFT_HIP", "x" : 453.7372131347656, "y" : 426.6801452636719, "score" : 0.8033173084259033}, {"NAME" : "RIGHT_HIP", "x" : 396.6302795410156, "y" : 427.78118896484375, "score" : 0.8488761186599731}, {"NAME" : "LEFT_KNEE", "x" : 509.99517822265625, "y" : 549.9971923828125, "score" : 0.7337117791175842}, {"NAME" : "RIGHT_KNEE", "x" : 338.7204895019531, "y" : 549.5487670898438, "score" : 0.8735522031784058}, {"NAME" : "LEFT_ANKLE", "x" : 573.8939819335938, "y" : 662.7662963867188, "score" : 0.5970671772956848}, {"NAME" : "RIGHT_ANKLE", "x" : 273.5931396484375, "y" : 657.8424682617188, "score" : 0.6876964569091797}]}
json_instruct
{"type": "object", "properties": {"Frame": {"type": "array", "items": {"type": "object", "properties": {"NAME": {"type": "string"}, "x": {"type": "number"}, "y": {"type": "number"}, "score": {"type": "number"}}, "required": ["NAME", "x", "y", "score"]}}}, "required": ["Frame"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"id": {"type": "integer"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"src:alt_label": {"type": "string"}, "src:geom": {"type": "string"}, "wof:geomhash": {"type": "string"}, "wof:id": {"type": "integer"}, "wof:repo": {"type": "string"}}, "required": ["src:alt_label", "src:geom", "wof:geomhash", "wof:id", "wof:repo"]}, "bbox": {"type": "array", "items": {"type": "number"}}, "geometry": {"type": "object", "properties": {"coordinates": {"type": "array", "items": {"type": "number"}}, "type": {"type": "string"}}, "required": ["coordinates", "type"]}}, "required": ["id", "type", "properties", "bbox", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : 1343488335, "type" : "Feature", "properties" : {"src:alt_label" : "geonames", "src:geom" : "geonames", "wof:geomhash" : "e3f3827cb539a8dd861ed1f370d39bb3", "wof:id" : 1343488335, "wof:repo" : "whosonfirst-data-admin-gb"}, "bbox" : [0.4, 50.9, 0.4, 50.9], "geometry" : {"coordinates" : [0.4, 50.9], "type" : "Point"}}
json_instruct
{"type": "object", "properties": {"id": {"type": "integer"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"src:alt_label": {"type": "string"}, "src:geom": {"type": "string"}, "wof:geomhash": {"type": "string"}, "wof:id": {"type": "integer"}, "wof:repo": {"type": "string"}}, "required": ["src:alt_label", "src:geom", "wof:geomhash", "wof:id", "wof:repo"]}, "bbox": {"type": "array", "items": {"type": "number"}}, "geometry": {"type": "object", "properties": {"coordinates": {"type": "array", "items": {"type": "number"}}, "type": {"type": "string"}}, "required": ["coordinates", "type"]}}, "required": ["id", "type", "properties", "bbox", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"build": {"type": "string"}, "test": {"type": "string"}}, "required": ["build", "test"]}, "author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"@types/jest": {"type": "string"}, "@types/node": {"type": "string"}, "typescript": {"type": "string"}}, "required": ["@types/jest", "@types/node", "typescript"]}, "devDependencies": {"type": "object", "properties": {"jest": {"type": "string"}}, "required": ["jest"]}}, "required": ["name", "version", "description", "main", "scripts", "author", "license", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "matscha", "version" : "1.0.0", "description" : "JS/TS Ast matching tool", "main" : "index.js", "scripts" : {"build" : "tsc", "test" : "jest"}, "author" : "rkirov@gmail.com", "license" : "Apache2", "dependencies" : {"@types/jest" : "^25.1.1", "@types/node" : "^13.7.0", "typescript" : "^3.7.5"}, "devDependencies" : {"jest" : "^25.1.0"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"build": {"type": "string"}, "test": {"type": "string"}}, "required": ["build", "test"]}, "author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"@types/jest": {"type": "string"}, "@types/node": {"type": "string"}, "typescript": {"type": "string"}}, "required": ["@types/jest", "@types/node", "typescript"]}, "devDependencies": {"type": "object", "properties": {"jest": {"type": "string"}}, "required": ["jest"]}}, "required": ["name", "version", "description", "main", "scripts", "author", "license", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"accuracy": {"type": "array", "items": {"type": "number"}}, "loss": {"type": "array", "items": {"type": "number"}}, "val_accuracy": {"type": "array", "items": {"type": "number"}}, "val_loss": {"type": "array", "items": {"type": "number"}}}, "required": ["accuracy", "loss", "val_accuracy", "val_loss"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"accuracy" : [0.8915154337882996, 0.9928290247917175, 0.9975568056106567, 0.9999682903289795, 1.0, 0.9923213720321655, 0.998096227645874], "loss" : [0.33688703179359436, 0.026131458580493927, 0.008700976148247719, 0.00037192966556176543, 0.00012174712173873559, 0.024624459445476532, 0.005865458399057388], "val_accuracy" : [0.994500458240509, 1.0, 1.0, 1.0, 1.0, 0.9972502589225769, 1.0], "val_loss" : [0.029864313080906868, 0.006539586931467056, 0.0009961262112483382, 0.0003624270320869982, 0.00016496174794156104, 0.009799281135201454, 0.00023145676823332906]}
json_instruct
{"type": "object", "properties": {"accuracy": {"type": "array", "items": {"type": "number"}}, "loss": {"type": "array", "items": {"type": "number"}}, "val_accuracy": {"type": "array", "items": {"type": "number"}}, "val_loss": {"type": "array", "items": {"type": "number"}}}, "required": ["accuracy", "loss", "val_accuracy", "val_loss"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "type": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"serve": {"type": "string"}}, "required": ["serve"]}, "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": {}, "required": []}, "devDependencies": {"type": "object", "properties": {"http-server": {"type": "string"}}, "required": ["http-server"]}}, "required": ["name", "version", "description", "type", "main", "scripts", "repository", "author", "license", "bugs", "homepage", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "auth-app-sdk", "version" : "1.0.0", "description" : "integrate auth into your app", "type" : "module", "main" : "index.js", "scripts" : {"serve" : "http-server src/ -p 8081"}, "repository" : {"type" : "git", "url" : "git+https://github.com/webformula/auth-app-sdk.git"}, "author" : "", "license" : "ISC", "bugs" : {"url" : "https://github.com/webformula/auth-app-sdk/issues"}, "homepage" : "https://github.com/webformula/auth-app-sdk#readme", "dependencies" : {}, "devDependencies" : {"http-server" : "^0.12.3"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "type": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"serve": {"type": "string"}}, "required": ["serve"]}, "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": {}, "required": []}, "devDependencies": {"type": "object", "properties": {"http-server": {"type": "string"}}, "required": ["http-server"]}}, "required": ["name", "version", "description", "type", "main", "scripts", "repository", "author", "license", "bugs", "homepage", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"parent": {"type": "string"}}, "required": ["parent"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"parent" : "adorn:block/byg/palm_coffee_table"}
json_instruct
{"type": "object", "properties": {"parent": {"type": "string"}}, "required": ["parent"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"pci_projects_project_instances_instance_shelve_title": {"type": "string"}, "pci_projects_project_instances_instance_shelve_submit_label": {"type": "string"}, "pci_projects_project_instances_instance_shelve_cancel_label": {"type": "string"}, "pci_projects_project_instances_instance_shelve_content": {"type": "string"}, "pci_projects_project_instances_instance_shelve_success_inprogress_message": {"type": "string"}, "pci_projects_project_instances_instance_shelve_success_message": {"type": "string"}, "pci_projects_project_instances_instance_shelve_error_message": {"type": "string"}}, "required": ["pci_projects_project_instances_instance_shelve_title", "pci_projects_project_instances_instance_shelve_submit_label", "pci_projects_project_instances_instance_shelve_cancel_label", "pci_projects_project_instances_instance_shelve_content", "pci_projects_project_instances_instance_shelve_success_inprogress_message", "pci_projects_project_instances_instance_shelve_success_message", "pci_projects_project_instances_instance_shelve_error_message"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"pci_projects_project_instances_instance_shelve_title" : "Suspension de votre instance", "pci_projects_project_instances_instance_shelve_submit_label" : "Confirmer", "pci_projects_project_instances_instance_shelve_cancel_label" : "Annuler", "pci_projects_project_instances_instance_shelve_content" : "Vous allez suspendre votre instance {{ instance }}. Les ressources d\u00e9di\u00e9es \u00e0 votre instance Public Cloud seront rel\u00e2ch\u00e9es mais son IP sera conserv\u00e9e. Les donn\u00e9es de votre disque local seront stock\u00e9es, et seul le stockage utilis\u00e9 pour cela sera factur\u00e9. La dur\u00e9e de l'op\u00e9ration est en fonction de la taille de votre disque local. Vous pourrez r\u00e9activer votre instance \u00e0 tout moment.", "pci_projects_project_instances_instance_shelve_success_inprogress_message" : "L'instance {{ instance }} est en cours de suspension.", "pci_projects_project_instances_instance_shelve_success_message" : "L'instance {{ instance }} a \u00e9t\u00e9 suspendue.", "pci_projects_project_instances_instance_shelve_error_message" : "Une erreur est survenue lors de la suspension de l'instance {{ instance }} : {{ message }}."}
json_instruct
{"type": "object", "properties": {"pci_projects_project_instances_instance_shelve_title": {"type": "string"}, "pci_projects_project_instances_instance_shelve_submit_label": {"type": "string"}, "pci_projects_project_instances_instance_shelve_cancel_label": {"type": "string"}, "pci_projects_project_instances_instance_shelve_content": {"type": "string"}, "pci_projects_project_instances_instance_shelve_success_inprogress_message": {"type": "string"}, "pci_projects_project_instances_instance_shelve_success_message": {"type": "string"}, "pci_projects_project_instances_instance_shelve_error_message": {"type": "string"}}, "required": ["pci_projects_project_instances_instance_shelve_title", "pci_projects_project_instances_instance_shelve_submit_label", "pci_projects_project_instances_instance_shelve_cancel_label", "pci_projects_project_instances_instance_shelve_content", "pci_projects_project_instances_instance_shelve_success_inprogress_message", "pci_projects_project_instances_instance_shelve_success_message", "pci_projects_project_instances_instance_shelve_error_message"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"name": {"type": "string"}, "iso2": {"type": "string"}, "admin_level": {"type": "integer"}, "osm_id": {"type": "integer"}, "wikidata_id": {"type": "string"}, "wikipedia_id": {"type": "string"}, "population": {"type": "integer"}, "countrylevel_id": {"type": "string"}, "osm_data": {"type": "object", "properties": {"localname": {"type": "string"}, "official_name": {"type": "string"}, "alltags": {"type": "object", "properties": {"name:ar": {"type": "string"}, "name:cs": {"type": "string"}, "name:en": {"type": "string"}, "name:es": {"type": "string"}, "name:fr": {"type": "string"}, "name:ja": {"type": "string"}, "name:pl": {"type": "string"}, "name:ru": {"type": "string"}, "name:zh": {"type": "string"}, "sorting_name:cs": {"type": "string"}}, "required": ["name:ar", "name:cs", "name:en", "name:es", "name:fr", "name:ja", "name:pl", "name:ru", "name:zh", "sorting_name:cs"]}}, "required": ["localname", "official_name", "alltags"]}}, "required": ["name", "iso2", "admin_level", "osm_id", "wikidata_id", "wikipedia_id", "population", "countrylevel_id", "osm_data"]}, "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" : {"name" : "Tartus", "iso2" : "SY-TA", "admin_level" : 4, "osm_id" : 184882, "wikidata_id" : "Q232382", "wikipedia_id" : "ar:\u0645\u062d\u0627\u0641\u0638\u0629 \u0637\u0631\u0637\u0648\u0633", "population" : 797000, "countrylevel_id" : "iso2:SY-TA", "osm_data" : {"localname" : "\u0637\u0631\u0637\u0648\u0633", "official_name" : "", "alltags" : {"name:ar" : "\u0637\u0631\u0637\u0648\u0633", "name:cs" : "guvernor\u00e1t Tart\u00fas", "name:en" : "Tartus", "name:es" : "Gobernaci\u00f3n de Tartus", "name:fr" : "Gouvernorat de Tartous", "name:ja" : "\u30bf\u30eb\u30c8\u30a5\u30fc\u30b9\u770c", "name:pl" : "Tartus", "name:ru" : "\u0422\u0430\u0440\u0442\u0443\u0441", "name:zh" : "\u5854\u5c14\u56fe\u65af\u7701", "sorting_name:cs" : "Tart\u00fas"}}}, "geometry" : {"type" : "MultiPolygon", "coordinates" : [[[[35.934, 35.257], [35.958, 35.256], [35.989, 35.242], [36.022, 35.218], [36.031, 35.217], [36.065, 35.224], [36.136, 35.224], [36.18, 35.23], [36.208, 35.243], [36.222, 35.239], [36.253, 35.223], [36.258, 35.127], [36.267, 35.079], [36.258, 35.058], [36.254, 35.04], [36.23, 35.023], [36.211, 35.022], [36.171, 35.006], [36.152, 35.009], [36.137, 35.003], [36.136, 34.991], [36.141, 34.978], [36.156, 34.972], [36.198, 34.966], [36.257, 34.972], [36.265, 34.957], [36.275, 34.931], [36.299, 34.917], [36.313, 34.902], [36.284, 34.892], [36.275, 34.882], [36.274, 34.842], [36.27, 34.837], [36.24, 34.818], [36.235, 34.806], [36.214, 34.798], [36.198, 34.775], [36.184, 34.767], [36.177, 34.746], [36.146, 34.71], [36.116, 34.663], [36.114, 34.634], [36.098, 34.637], [36.092, 34.629], [36.061, 34.635], [36.052, 34.628], [36.033, 34.627], [36.006, 34.642], [35.99, 34.643], [35.98, 34.649], [35.976, 34.634], [35.952, 34.692], [35.937, 34.723], [35.929, 34.748], [35.929, 34.779], [35.895, 34.848], [35.885, 34.867], [35.871, 34.903], [35.863, 34.905], [35.879, 34.919], [35.88, 34.949], [35.874, 34.965], [35.878, 34.989], [35.894, 35], [35.898, 35.009], [35.893, 35.042], [35.886, 35.065], [35.891, 35.088], [35.887, 35.1], [35.895, 35.118], [35.905, 35.119], [35.917, 35.149], [35.928, 35.159], [35.924, 35.172], [35.952, 35.19], [35.953, 35.202], [35.948, 35.228], [35.934, 35.257]]]]}}
json_instruct
{"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"name": {"type": "string"}, "iso2": {"type": "string"}, "admin_level": {"type": "integer"}, "osm_id": {"type": "integer"}, "wikidata_id": {"type": "string"}, "wikipedia_id": {"type": "string"}, "population": {"type": "integer"}, "countrylevel_id": {"type": "string"}, "osm_data": {"type": "object", "properties": {"localname": {"type": "string"}, "official_name": {"type": "string"}, "alltags": {"type": "object", "properties": {"name:ar": {"type": "string"}, "name:cs": {"type": "string"}, "name:en": {"type": "string"}, "name:es": {"type": "string"}, "name:fr": {"type": "string"}, "name:ja": {"type": "string"}, "name:pl": {"type": "string"}, "name:ru": {"type": "string"}, "name:zh": {"type": "string"}, "sorting_name:cs": {"type": "string"}}, "required": ["name:ar", "name:cs", "name:en", "name:es", "name:fr", "name:ja", "name:pl", "name:ru", "name:zh", "sorting_name:cs"]}}, "required": ["localname", "official_name", "alltags"]}}, "required": ["name", "iso2", "admin_level", "osm_id", "wikidata_id", "wikipedia_id", "population", "countrylevel_id", "osm_data"]}, "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#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "author": {"type": "string"}, "contributors": {"type": "array", "items": {"type": "string"}}, "private": {"type": "boolean"}, "devDependencies": {"type": "object", "properties": {"babel-preset-es2015": {"type": "string"}, "babelify": {"type": "string"}, "backbone.marionette": {"type": "string"}, "backbone.wreqr": {"type": "string"}, "browserify": {"type": "string"}, "del": {"type": "string"}, "gulp": {"type": "string"}, "gulp-clean-css": {"type": "string"}, "gulp-concat": {"type": "string"}, "gulp-gzip": {"type": "string"}, "gulp-if": {"type": "string"}, "gulp-jshint": {"type": "string"}, "gulp-notify": {"type": "string"}, "gulp-nunjucks": {"type": "string"}, "gulp-sass": {"type": "string"}, "gulp-sourcemaps": {"type": "string"}, "gulp-sync": {"type": "string"}, "gulp-template": {"type": "string"}, "gulp-uglify": {"type": "string"}, "jquery": {"type": "string"}, "jshint": {"type": "string"}, "jshint-stylish": {"type": "string"}, "merge-stream": {"type": "string"}, "nunjucks": {"type": "string"}, "vinyl-buffer": {"type": "string"}, "vinyl-source-stream": {"type": "string"}, "watchify": {"type": "string"}}, "required": ["babel-preset-es2015", "babelify", "backbone.marionette", "backbone.wreqr", "browserify", "del", "gulp", "gulp-clean-css", "gulp-concat", "gulp-gzip", "gulp-if", "gulp-jshint", "gulp-notify", "gulp-nunjucks", "gulp-sass", "gulp-sourcemaps", "gulp-sync", "gulp-template", "gulp-uglify", "jquery", "jshint", "jshint-stylish", "merge-stream", "nunjucks", "vinyl-buffer", "vinyl-source-stream", "watchify"]}}, "required": ["name", "version", "description", "author", "contributors", "private", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "gulp-boilerplate", "version" : "1.0.0", "description" : "A simple boilerplate for client-side web projects.", "author" : "Philipp Naderer <philipp.naderer@orf.at>", "contributors" : ["Robert Gaggl, (http://dev.ORF.at/)", "Simon Oberhammer, (http://dev.ORF.at/)", "Ernst Beiglboeck, (http://dev.ORF.at/)"], "private" : true, "devDependencies" : {"babel-preset-es2015" : "^6.5.0", "babelify" : "^7.2.0", "backbone.marionette" : "^2.4.4", "backbone.wreqr" : "^1.3.5", "browserify" : "^13.0.0", "del" : "^2.2.0", "gulp" : "^3.9.1", "gulp-clean-css" : "^2.0.3", "gulp-concat" : "^2.6.0", "gulp-gzip" : "^1.2.0", "gulp-if" : "^2.0.0", "gulp-jshint" : "^2.0.1", "gulp-notify" : "^2.2.0", "gulp-nunjucks" : "^2.2.0", "gulp-sass" : "^2.2.0", "gulp-sourcemaps" : "^1.6.0", "gulp-sync" : "^0.1.4", "gulp-template" : "^3.1.0", "gulp-uglify" : "^1.5.2", "jquery" : "^3.4.0", "jshint" : "^2.9.2", "jshint-stylish" : "^2.2.0", "merge-stream" : "^1.0.0", "nunjucks" : "^2.3.0", "vinyl-buffer" : "^1.0.0", "vinyl-source-stream" : "^1.1.0", "watchify" : "^3.7.0"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "author": {"type": "string"}, "contributors": {"type": "array", "items": {"type": "string"}}, "private": {"type": "boolean"}, "devDependencies": {"type": "object", "properties": {"babel-preset-es2015": {"type": "string"}, "babelify": {"type": "string"}, "backbone.marionette": {"type": "string"}, "backbone.wreqr": {"type": "string"}, "browserify": {"type": "string"}, "del": {"type": "string"}, "gulp": {"type": "string"}, "gulp-clean-css": {"type": "string"}, "gulp-concat": {"type": "string"}, "gulp-gzip": {"type": "string"}, "gulp-if": {"type": "string"}, "gulp-jshint": {"type": "string"}, "gulp-notify": {"type": "string"}, "gulp-nunjucks": {"type": "string"}, "gulp-sass": {"type": "string"}, "gulp-sourcemaps": {"type": "string"}, "gulp-sync": {"type": "string"}, "gulp-template": {"type": "string"}, "gulp-uglify": {"type": "string"}, "jquery": {"type": "string"}, "jshint": {"type": "string"}, "jshint-stylish": {"type": "string"}, "merge-stream": {"type": "string"}, "nunjucks": {"type": "string"}, "vinyl-buffer": {"type": "string"}, "vinyl-source-stream": {"type": "string"}, "watchify": {"type": "string"}}, "required": ["babel-preset-es2015", "babelify", "backbone.marionette", "backbone.wreqr", "browserify", "del", "gulp", "gulp-clean-css", "gulp-concat", "gulp-gzip", "gulp-if", "gulp-jshint", "gulp-notify", "gulp-nunjucks", "gulp-sass", "gulp-sourcemaps", "gulp-sync", "gulp-template", "gulp-uglify", "jquery", "jshint", "jshint-stylish", "merge-stream", "nunjucks", "vinyl-buffer", "vinyl-source-stream", "watchify"]}}, "required": ["name", "version", "description", "author", "contributors", "private", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"level": {"type": "object", "properties": {"objects": {"type": "object", "properties": {"ExitDoor": {"type": "object", "properties": {"x": {"type": "string"}, "y": {"type": "string"}}, "required": ["x", "y"]}, "Hero": {"type": "object", "properties": {"x": {"type": "string"}, "y": {"type": "string"}}, "required": ["x", "y"]}, "KeyObj": {"type": "object", "properties": {"x": {"type": "string"}, "y": {"type": "string"}}, "required": ["x", "y"]}, "Stone": {"type": "array", "items": {"type": "object", "properties": {"x": {"type": "string"}, "y": {"type": "string"}}, "required": ["x", "y"]}}, "Coin": {"type": "object", "properties": {"x": {"type": "string"}, "y": {"type": "string"}}, "required": ["x", "y"]}, "QueObj": {"type": "array", "items": {"type": "object", "properties": {"x": {"type": "string"}, "y": {"type": "string"}, "text": {"type": "string"}}, "required": ["x", "y", "text"]}}}, "required": ["ExitDoor", "Hero", "KeyObj", "Stone", "Coin", "QueObj"]}}, "required": ["objects"]}}, "required": ["level"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"level" : {"objects" : {"ExitDoor" : {"x" : "422", "y" : "404"}, "Hero" : {"x" : "90", "y" : "430"}, "KeyObj" : {"x" : "38", "y" : "394"}, "Stone" : [{"x" : "273", "y" : "384"}, {"x" : "273", "y" : "400"}, {"x" : "273", "y" : "416"}, {"x" : "303", "y" : "416"}, {"x" : "303", "y" : "400"}, {"x" : "303", "y" : "384"}, {"x" : "288", "y" : "416"}, {"x" : "288", "y" : "400"}, {"x" : "288", "y" : "384"}], "Coin" : {"x" : "432", "y" : "350"}, "QueObj" : [{"x" : "332", "y" : "370", "text" : "There is a star waiting for you to collect in every stage.You can gather they, but this does not affect the pass."}, {"x" : "124", "y" : "370", "text" : "Welcome! This game is very easy. First,you find the key in the stage, and then open the door with this key. Take the ball!.You can change to a ball with. Through the narrow terrain.Also can break bricks. Good Luck! ", "item" : "BallItem"}]}}}
json_instruct
{"type": "object", "properties": {"level": {"type": "object", "properties": {"objects": {"type": "object", "properties": {"ExitDoor": {"type": "object", "properties": {"x": {"type": "string"}, "y": {"type": "string"}}, "required": ["x", "y"]}, "Hero": {"type": "object", "properties": {"x": {"type": "string"}, "y": {"type": "string"}}, "required": ["x", "y"]}, "KeyObj": {"type": "object", "properties": {"x": {"type": "string"}, "y": {"type": "string"}}, "required": ["x", "y"]}, "Stone": {"type": "array", "items": {"type": "object", "properties": {"x": {"type": "string"}, "y": {"type": "string"}}, "required": ["x", "y"]}}, "Coin": {"type": "object", "properties": {"x": {"type": "string"}, "y": {"type": "string"}}, "required": ["x", "y"]}, "QueObj": {"type": "array", "items": {"type": "object", "properties": {"x": {"type": "string"}, "y": {"type": "string"}, "text": {"type": "string"}}, "required": ["x", "y", "text"]}}}, "required": ["ExitDoor", "Hero", "KeyObj", "Stone", "Coin", "QueObj"]}}, "required": ["objects"]}}, "required": ["level"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"votes": {"type": "object", "properties": {"diff": {"type": "integer"}, "dem": {"type": "integer"}, "tot": {"type": "integer"}, "gop": {"type": "integer"}}, "required": ["diff", "dem", "tot", "gop"]}, "for": {"type": "string"}, "pct": {"type": "object", "properties": {"dem": {"type": "number"}, "per_point_diff": {"type": "number"}, "gop": {"type": "number"}}, "required": ["dem", "per_point_diff", "gop"]}}, "required": ["votes", "for", "pct"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"votes" : {"diff" : 2815, "dem" : 882, "tot" : 4734, "gop" : 3697}, "for" : "OK/Haskell County/40061", "pct" : {"dem" : 18.63, "per_point_diff" : 59.46, "gop" : 78.09}}
json_instruct
{"type": "object", "properties": {"votes": {"type": "object", "properties": {"diff": {"type": "integer"}, "dem": {"type": "integer"}, "tot": {"type": "integer"}, "gop": {"type": "integer"}}, "required": ["diff", "dem", "tot", "gop"]}, "for": {"type": "string"}, "pct": {"type": "object", "properties": {"dem": {"type": "number"}, "per_point_diff": {"type": "number"}, "gop": {"type": "number"}}, "required": ["dem", "per_point_diff", "gop"]}}, "required": ["votes", "for", "pct"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}, "test": {"type": "string"}}, "required": ["start", "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"}, "dependencies": {"type": "object", "properties": {"bluebird": {"type": "string"}, "coffee-script": {"type": "string"}, "mbtiles": {"type": "string"}, "node-protobuf": {"type": "string"}, "split": {"type": "string"}}, "required": ["bluebird", "coffee-script", "mbtiles", "node-protobuf", "split"]}}, "required": ["name", "version", "description", "main", "scripts", "repository", "keywords", "author", "license", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "tilegrinder", "version" : "0.1.3", "description" : "Easily alter all vector tiles in an MBTiles file", "main" : "index.js", "scripts" : {"start" : "echo \"Error: sorry, this is not a standalone app\" && exit 1", "test" : "echo \"Error: no test specified\" && exit 1"}, "repository" : {"type" : "git", "url" : "https://github.com/rastapasta/tilegrinder.git"}, "keywords" : ["mbtiles", "mbtile", "vectortile", "vectortiles", "helper"], "author" : "Michael Stra\u00dfburger <codepoet@cpan.org>", "license" : "MIT", "dependencies" : {"bluebird" : "^3.4.6", "coffee-script" : "^1.11.1", "mbtiles" : "^0.9.0", "node-protobuf" : "^1.4.1", "split" : "^1.0.0"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}, "test": {"type": "string"}}, "required": ["start", "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"}, "dependencies": {"type": "object", "properties": {"bluebird": {"type": "string"}, "coffee-script": {"type": "string"}, "mbtiles": {"type": "string"}, "node-protobuf": {"type": "string"}, "split": {"type": "string"}}, "required": ["bluebird", "coffee-script", "mbtiles", "node-protobuf", "split"]}}, "required": ["name", "version", "description", "main", "scripts", "repository", "keywords", "author", "license", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "type": {"type": "string"}, "license": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}}, "require": {"type": "object", "properties": {"php": {"type": "string"}}, "required": ["php"]}, "require-dev": {"type": "object", "properties": {"symfony/http-kernel": {"type": "string"}}, "required": ["symfony/http-kernel"]}, "autoload": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"Antarctica\\LaravelBaseExceptions\\": {"type": "string"}}, "required": ["Antarctica\\LaravelBaseExceptions\\"]}}, "required": ["psr-4"]}}, "required": ["name", "description", "type", "license", "authors", "require", "require-dev", "autoload"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "antarctica/laravel-base-exceptions", "description" : "A set of base exceptions for Laravel applications", "type" : "library", "license" : "MIT", "authors" : [{"name" : "Felix Fennell", "email" : "felnne@bas.ac.uk"}], "require" : {"php" : ">=5.4.0"}, "require-dev" : {"symfony/http-kernel" : "2.5.*"}, "autoload" : {"psr-4" : {"Antarctica\\LaravelBaseExceptions\\" : "src"}}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "type": {"type": "string"}, "license": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}}, "require": {"type": "object", "properties": {"php": {"type": "string"}}, "required": ["php"]}, "require-dev": {"type": "object", "properties": {"symfony/http-kernel": {"type": "string"}}, "required": ["symfony/http-kernel"]}, "autoload": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"Antarctica\\LaravelBaseExceptions\\": {"type": "string"}}, "required": ["Antarctica\\LaravelBaseExceptions\\"]}}, "required": ["psr-4"]}}, "required": ["name", "description", "type", "license", "authors", "require", "require-dev", "autoload"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"entity": {"type": "string"}, "links": {"type": "array", "items": {"type": "string"}}, "month": {"type": "integer"}, "summary": {"type": "string"}, "tags": {"type": "object", "properties": {"actor": {"type": "string"}, "cost-usd": {"type": "integer"}, "impacted-user-count": {"type": "integer"}, "initial-access": {"type": "string"}, "motive": {"type": "string"}}, "required": ["actor", "cost-usd", "impacted-user-count", "initial-access", "motive"]}, "year": {"type": "integer"}}, "required": ["entity", "links", "month", "summary", "tags", "year"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"entity" : "Finastra", "links" : ["https://krebsonsecurity.com/2020/03/security-breach-disrupts-fintech-firm-finastra/", "https://www.securityweek.com/hackers-target-uk-fintech-company-finastra"], "month" : 3, "summary" : "Finastra, a company that provides a range of technology solutions to banks worldwide, said it was sh", "tags" : {"actor" : "Criminal", "cost-usd" : 0, "impacted-user-count" : 0, "initial-access" : "OWASP:A9", "motive" : "Money:Ransom"}, "year" : 2020}
json_instruct
{"type": "object", "properties": {"entity": {"type": "string"}, "links": {"type": "array", "items": {"type": "string"}}, "month": {"type": "integer"}, "summary": {"type": "string"}, "tags": {"type": "object", "properties": {"actor": {"type": "string"}, "cost-usd": {"type": "integer"}, "impacted-user-count": {"type": "integer"}, "initial-access": {"type": "string"}, "motive": {"type": "string"}}, "required": ["actor", "cost-usd", "impacted-user-count", "initial-access", "motive"]}, "year": {"type": "integer"}}, "required": ["entity", "links", "month", "summary", "tags", "year"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"connection": {"type": "object", "properties": {"address": {"type": "string"}, "database": {"type": "string"}, "databasetype": {"type": "string"}, "password": {"type": "string"}, "port": {"type": "string"}, "schema": {"type": "string"}, "username": {"type": "string"}, "connectionName": {"type": "string"}}, "required": ["address", "database", "databasetype", "password", "port", "schema", "username", "connectionName"]}, "collection": {"type": "array", "items": {"type": "object", "properties": {"code": {"type": "string"}, "name": {"type": "string"}}, "required": ["code", "name"]}}}, "required": ["connection", "collection"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"connection" : {"address" : "localhost", "database" : "infviewer", "databasetype" : "MongoDB", "password" : "rvs1992", "port" : "27001", "schema" : "", "username" : "", "connectionName" : "NoSQL-1"}, "collection" : [{"code" : "offer", "name" : "Offer"}, {"code" : "order", "name" : "Order"}, {"code" : "HOTEL", "name" : "Hotel"}, {"code" : "ticet", "name" : "Ticet"}, {"code" : "metascheme", "name" : "Meta scheme"}, {"code" : "user", "name" : "User"}]}
json_instruct
{"type": "object", "properties": {"connection": {"type": "object", "properties": {"address": {"type": "string"}, "database": {"type": "string"}, "databasetype": {"type": "string"}, "password": {"type": "string"}, "port": {"type": "string"}, "schema": {"type": "string"}, "username": {"type": "string"}, "connectionName": {"type": "string"}}, "required": ["address", "database", "databasetype", "password", "port", "schema", "username", "connectionName"]}, "collection": {"type": "array", "items": {"type": "object", "properties": {"code": {"type": "string"}, "name": {"type": "string"}}, "required": ["code", "name"]}}}, "required": ["connection", "collection"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"parent": {"type": "string"}}, "required": ["parent"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"parent" : "rankine:block/weeping_willow_wood"}
json_instruct
{"type": "object", "properties": {"parent": {"type": "string"}}, "required": ["parent"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"$id": {"type": "string"}, "definitions": {"type": "object", "properties": {"unitRank": {"type": "object", "properties": {"enum": {"type": "array", "items": {"type": "string"}}}, "required": ["enum"]}}, "required": ["unitRank"]}}, "required": ["$id", "definitions"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"$id" : "http://www.legiondice.com/schemas/unitrank", "definitions" : {"unitRank" : {"enum" : ["commander", "operative", "corps", "specialForces", "support", "heavy"]}}}
json_instruct
{"type": "object", "properties": {"$id": {"type": "string"}, "definitions": {"type": "object", "properties": {"unitRank": {"type": "object", "properties": {"enum": {"type": "array", "items": {"type": "string"}}}, "required": ["enum"]}}, "required": ["unitRank"]}}, "required": ["$id", "definitions"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"courseCode": {"type": "string"}, "courseCredit": {"type": "string"}, "description": {"type": "string"}, "faculty": {"type": "string"}, "preclusion": {"type": "string"}, "title": {"type": "string"}}, "required": ["courseCode", "courseCredit", "description", "faculty", "preclusion", "title"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"courseCode" : "SWD5285", "courseCredit" : "4", "description" : "The issues and philosophies of various rehabilitation and treatment programmes in criminal and juvenile justice and other rehabilitative contexts will be examined in this module. Application of techniques and concepts for the local context will be emphasised.", "faculty" : "Arts and Social Science", "preclusion" : "Not available to undergraduate students", "title" : "Rehabilitation Programme Issues"}
json_instruct
{"type": "object", "properties": {"courseCode": {"type": "string"}, "courseCredit": {"type": "string"}, "description": {"type": "string"}, "faculty": {"type": "string"}, "preclusion": {"type": "string"}, "title": {"type": "string"}}, "required": ["courseCode", "courseCredit", "description", "faculty", "preclusion", "title"], "$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"}, "url": {"type": "string"}, "code-of-conduct": {"type": "string"}, "location": {"type": "object", "properties": {"coordinates": {"type": "object", "properties": {"lat": {"type": "number"}, "lng": {"type": "number"}}, "required": ["lat", "lng"]}}, "required": ["coordinates"]}, "next-date": {"type": "object", "properties": {"start": {"type": "string"}, "end": {"type": "string"}}, "required": ["start", "end"]}}, "required": ["name", "url", "code-of-conduct", "location", "next-date"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "Codefreeze", "url" : "https://www.codefreeze.fi/", "code-of-conduct" : "https://codefreeze.fi/#code-of-conduct", "location" : {"coordinates" : {"lat" : 68.3752, "lng" : 27.4315}}, "next-date" : {"start" : "2022-01-09", "end" : "2022-01-16"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "url": {"type": "string"}, "code-of-conduct": {"type": "string"}, "location": {"type": "object", "properties": {"coordinates": {"type": "object", "properties": {"lat": {"type": "number"}, "lng": {"type": "number"}}, "required": ["lat", "lng"]}}, "required": ["coordinates"]}, "next-date": {"type": "object", "properties": {"start": {"type": "string"}, "end": {"type": "string"}}, "required": ["start", "end"]}}, "required": ["name", "url", "code-of-conduct", "location", "next-date"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"}
["basic-authentication", "express-sitemap", "server-signature", "supergiovane", "top-vhost"]
json_instruct
{"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "array", "items": {"type": "object", "properties": {"Name": {"type": "string"}, "Bytes": {"type": "integer"}, "Lines": {"type": "integer"}, "Code": {"type": "integer"}, "Comment": {"type": "integer"}, "Blank": {"type": "integer"}, "Complexity": {"type": "integer"}, "Count": {"type": "integer"}, "WeightedComplexity": {"type": "integer"}, "Files": {"type": "array", "items": {"type": "object", "properties": {"Language": {"type": "string"}, "PossibleLanguages": {"type": "array", "items": {"type": "string"}}, "Filename": {"type": "string"}, "Extension": {"type": "string"}, "Location": {"type": "string"}, "Content": {"type": "null"}, "Bytes": {"type": "integer"}, "Lines": {"type": "integer"}, "Code": {"type": "integer"}, "Comment": {"type": "integer"}, "Blank": {"type": "integer"}, "Complexity": {"type": "integer"}, "WeightedComplexity": {"type": "integer"}, "Hash": {"type": "null"}, "Callback": {"type": "null"}, "Binary": {"type": "boolean"}}, "required": ["Language", "PossibleLanguages", "Filename", "Extension", "Location", "Content", "Bytes", "Lines", "Code", "Comment", "Blank", "Complexity", "WeightedComplexity", "Hash", "Callback", "Binary"]}}}, "required": ["Name", "Bytes", "Lines", "Code", "Comment", "Blank", "Complexity", "Count", "WeightedComplexity", "Files"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"Name" : "gitignore", "Bytes" : 0, "Lines" : 1, "Code" : 1, "Comment" : 0, "Blank" : 0, "Complexity" : 0, "Count" : 1, "WeightedComplexity" : 0, "Files" : [{"Language" : "gitignore", "PossibleLanguages" : ["gitignore"], "Filename" : ".gitignore", "Extension" : "", "Location" : "/tmp/scc-tmp-path-23930/.gitignore", "Content" : null, "Bytes" : 7, "Lines" : 1, "Code" : 1, "Comment" : 0, "Blank" : 0, "Complexity" : 0, "WeightedComplexity" : 0, "Hash" : null, "Callback" : null, "Binary" : false}]}, {"Name" : "XML", "Bytes" : 0, "Lines" : 33, "Code" : 30, "Comment" : 0, "Blank" : 3, "Complexity" : 0, "Count" : 1, "WeightedComplexity" : 0, "Files" : [{"Language" : "XML", "PossibleLanguages" : ["XML"], "Filename" : "build.xml", "Extension" : "xml", "Location" : "/tmp/scc-tmp-path-23930/build.xml", "Content" : null, "Bytes" : 1242, "Lines" : 33, "Code" : 30, "Comment" : 0, "Blank" : 3, "Complexity" : 0, "WeightedComplexity" : 0, "Hash" : null, "Callback" : null, "Binary" : false}]}, {"Name" : "Java", "Bytes" : 0, "Lines" : 332, "Code" : 253, "Comment" : 33, "Blank" : 46, "Complexity" : 12, "Count" : 3, "WeightedComplexity" : 0, "Files" : [{"Language" : "Java", "PossibleLanguages" : ["Java"], "Filename" : "GoogleTalkConnection.java", "Extension" : "java", "Location" : "/tmp/scc-tmp-path-23930/src/com/jabber/GoogleTalkConnection.java", "Content" : null, "Bytes" : 727, "Lines" : 21, "Code" : 16, "Comment" : 1, "Blank" : 4, "Complexity" : 0, "WeightedComplexity" : 0, "Hash" : null, "Callback" : null, "Binary" : false}, {"Language" : "Java", "PossibleLanguages" : ["Java"], "Filename" : "DummySSLSocketFactory.java", "Extension" : "java", "Location" : "/tmp/scc-tmp-path-23930/src/com/jabber/DummySSLSocketFactory.java", "Content" : null, "Bytes" : 3077, "Lines" : 114, "Code" : 84, "Comment" : 10, "Blank" : 20, "Complexity" : 0, "WeightedComplexity" : 0, "Hash" : null, "Callback" : null, "Binary" : false}, {"Language" : "Java", "PossibleLanguages" : ["Java"], "Filename" : "AntBot.java", "Extension" : "java", "Location" : "/tmp/scc-tmp-path-23930/src/com/jabber/AntBot.java", "Content" : null, "Bytes" : 5284, "Lines" : 197, "Code" : 153, "Comment" : 22, "Blank" : 22, "Complexity" : 12, "WeightedComplexity" : 0, "Hash" : null, "Callback" : null, "Binary" : false}]}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"Name": {"type": "string"}, "Bytes": {"type": "integer"}, "Lines": {"type": "integer"}, "Code": {"type": "integer"}, "Comment": {"type": "integer"}, "Blank": {"type": "integer"}, "Complexity": {"type": "integer"}, "Count": {"type": "integer"}, "WeightedComplexity": {"type": "integer"}, "Files": {"type": "array", "items": {"type": "object", "properties": {"Language": {"type": "string"}, "PossibleLanguages": {"type": "array", "items": {"type": "string"}}, "Filename": {"type": "string"}, "Extension": {"type": "string"}, "Location": {"type": "string"}, "Content": {"type": "null"}, "Bytes": {"type": "integer"}, "Lines": {"type": "integer"}, "Code": {"type": "integer"}, "Comment": {"type": "integer"}, "Blank": {"type": "integer"}, "Complexity": {"type": "integer"}, "WeightedComplexity": {"type": "integer"}, "Hash": {"type": "null"}, "Callback": {"type": "null"}, "Binary": {"type": "boolean"}}, "required": ["Language", "PossibleLanguages", "Filename", "Extension", "Location", "Content", "Bytes", "Lines", "Code", "Comment", "Blank", "Complexity", "WeightedComplexity", "Hash", "Callback", "Binary"]}}}, "required": ["Name", "Bytes", "Lines", "Code", "Comment", "Blank", "Complexity", "Count", "WeightedComplexity", "Files"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"id": {"type": "string"}, "variable1": {"type": "number"}, "variable2": {"type": "number"}, "variable3": {"type": "string"}}, "required": ["id", "variable1", "variable2", "variable3"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : "170702021004", "variable1" : 0.2357, "variable2" : 0.6686, "variable3" : "A"}
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "variable1": {"type": "number"}, "variable2": {"type": "number"}, "variable3": {"type": "string"}}, "required": ["id", "variable1", "variable2", "variable3"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"name": {"type": "string"}, "title": {"type": "string"}, "description": {"type": "string"}, "version": {"type": "string"}, "author": {"type": "string"}, "minimumCoreVersion": {"type": "string"}, "compatibleCoreVersion": {"type": "string"}, "system": {"type": "array", "items": {"type": "string"}}, "packs": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "label": {"type": "string"}, "path": {"type": "string"}, "entity": {"type": "string"}}, "required": ["name", "label", "path", "entity"]}}, "dependencies": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "manifest": {"type": "string"}}, "required": ["name", "manifest"]}}, "url": {"type": "string"}, "manifest": {"type": "string"}, "download": {"type": "string"}}, "required": ["name", "title", "description", "version", "author", "minimumCoreVersion", "compatibleCoreVersion", "system", "packs", "dependencies", "url", "manifest", "download"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "UEST-5e-Conversion", "title" : "Unofficial UESTRPG 5th edition conversion", "description" : "A conversion for the unofficial elder scrolls tabletop rpg ", "version" : "0.1.4", "author" : "Michael Tendy", "minimumCoreVersion" : "0.8.6", "compatibleCoreVersion" : "0.8.9", "system" : ["dnd5e"], "packs" : [{"name" : "uest-class-features", "label" : "UEST Class Features", "path" : "/packs/uest-class-features.db", "entity" : "Item"}, {"name" : "uest-classes", "label" : "UEST Classes", "path" : "/packs/uest-classes.db", "entity" : "Item"}, {"name" : "uest-subclasses", "label" : "UEST Sublasses", "path" : "/packs/uest-subclasses.db", "entity" : "Item"}, {"name" : "uest-races", "label" : "UEST Races", "path" : "/packs/uest-races.db", "entity" : "Item"}, {"name" : "uest-birthhsigns", "label" : "UEST Birthsigns", "path" : "/packs/uest-birthsigns.db", "entity" : "Item"}, {"name" : "uest-racial-traits", "label" : "UEST Racial Traits", "path" : "/packs/uest-racial-traits.db", "entity" : "Item"}], "dependencies" : [{"name" : "dnd5e-spellpoints", "manifest" : "https://raw.githubusercontent.com/misthero/dnd5e-spellpoints/main/module.json"}], "url" : "https://github.com/Yorklag/UEST-5e-Conversion", "manifest" : "https://github.com/Yorklag/UEST-5e-Conversion/releases/latest/download/module.json", "download" : "https://github.com/Yorklag/UEST-5e-Conversion/releases/latest/download/UEST-5e-Conversion.zip"}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "title": {"type": "string"}, "description": {"type": "string"}, "version": {"type": "string"}, "author": {"type": "string"}, "minimumCoreVersion": {"type": "string"}, "compatibleCoreVersion": {"type": "string"}, "system": {"type": "array", "items": {"type": "string"}}, "packs": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "label": {"type": "string"}, "path": {"type": "string"}, "entity": {"type": "string"}}, "required": ["name", "label", "path", "entity"]}}, "dependencies": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "manifest": {"type": "string"}}, "required": ["name", "manifest"]}}, "url": {"type": "string"}, "manifest": {"type": "string"}, "download": {"type": "string"}}, "required": ["name", "title", "description", "version", "author", "minimumCoreVersion", "compatibleCoreVersion", "system", "packs", "dependencies", "url", "manifest", "download"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "array", "items": {"type": "object", "properties": {"year": {"type": "integer"}, "sex": {"type": "string"}, "n": {"type": "integer"}, "prop": {"type": "number"}}, "required": ["year", "sex", "n", "prop"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"year" : 2002, "sex" : "F", "n" : 5, "prop" : 2.53e-06}, {"year" : 2011, "sex" : "F", "n" : 5, "prop" : 2.58e-06}, {"year" : 2012, "sex" : "F", "n" : 14, "prop" : 7.23e-06}, {"year" : 2013, "sex" : "F", "n" : 61, "prop" : 0}, {"year" : 2014, "sex" : "F", "n" : 79, "prop" : 0}, {"year" : 2015, "sex" : "F", "n" : 23, "prop" : 0}, {"year" : 2016, "sex" : "F", "n" : 29, "prop" : 0}, {"year" : 2017, "sex" : "F", "n" : 18, "prop" : 9.6e-06}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"year": {"type": "integer"}, "sex": {"type": "string"}, "n": {"type": "integer"}, "prop": {"type": "number"}}, "required": ["year", "sex", "n", "prop"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"images": {"type": "array", "items": {"type": "object", "properties": {"filename": {"type": "string"}, "idiom": {"type": "string"}, "scale": {"type": "string"}, "size": {"type": "string"}}, "required": ["filename", "idiom", "scale", "size"]}}, "info": {"type": "object", "properties": {"author": {"type": "string"}, "template-rendering-intent": {"type": "string"}, "version": {"type": "integer"}}, "required": ["author", "template-rendering-intent", "version"]}}, "required": ["images", "info"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"images" : [{"filename" : "round_invert_colors_black_36pt_1x.png", "idiom" : "universal", "scale" : "1x", "size" : "36x36"}, {"filename" : "round_invert_colors_black_36pt_2x.png", "idiom" : "universal", "scale" : "2x", "size" : "36x36"}, {"filename" : "round_invert_colors_black_36pt_3x.png", "idiom" : "universal", "scale" : "3x", "size" : "36x36"}], "info" : {"author" : "xcode", "template-rendering-intent" : "template", "version" : 1}}
json_instruct
{"type": "object", "properties": {"images": {"type": "array", "items": {"type": "object", "properties": {"filename": {"type": "string"}, "idiom": {"type": "string"}, "scale": {"type": "string"}, "size": {"type": "string"}}, "required": ["filename", "idiom", "scale", "size"]}}, "info": {"type": "object", "properties": {"author": {"type": "string"}, "template-rendering-intent": {"type": "string"}, "version": {"type": "integer"}}, "required": ["author", "template-rendering-intent", "version"]}}, "required": ["images", "info"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"avif": {"type": "array", "items": {"type": "object", "properties": {"format": {"type": "string"}, "width": {"type": "integer"}, "height": {"type": "integer"}, "url": {"type": "string"}, "sourceType": {"type": "string"}, "srcset": {"type": "string"}, "filename": {"type": "string"}, "outputPath": {"type": "string"}, "size": {"type": "integer"}}, "required": ["format", "width", "height", "url", "sourceType", "srcset", "filename", "outputPath", "size"]}}, "webp": {"type": "array", "items": {"type": "object", "properties": {"format": {"type": "string"}, "width": {"type": "integer"}, "height": {"type": "integer"}, "url": {"type": "string"}, "sourceType": {"type": "string"}, "srcset": {"type": "string"}, "filename": {"type": "string"}, "outputPath": {"type": "string"}, "size": {"type": "integer"}}, "required": ["format", "width", "height", "url", "sourceType", "srcset", "filename", "outputPath", "size"]}}, "jpeg": {"type": "array", "items": {"type": "object", "properties": {"format": {"type": "string"}, "width": {"type": "integer"}, "height": {"type": "integer"}, "url": {"type": "string"}, "sourceType": {"type": "string"}, "srcset": {"type": "string"}, "filename": {"type": "string"}, "outputPath": {"type": "string"}, "size": {"type": "integer"}}, "required": ["format", "width", "height", "url", "sourceType", "srcset", "filename", "outputPath", "size"]}}}, "required": ["avif", "webp", "jpeg"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"avif" : [{"format" : "avif", "width" : 90, "height" : 90, "url" : "/img/avatars/twitter/CM4jgVQYES-90.avif", "sourceType" : "image/avif", "srcset" : "/img/avatars/twitter/CM4jgVQYES-90.avif 90w", "filename" : "CM4jgVQYES-90.avif", "outputPath" : "src/img/avatars/twitter/CM4jgVQYES-90.avif", "size" : 830}], "webp" : [{"format" : "webp", "width" : 90, "height" : 90, "url" : "/img/avatars/twitter/CM4jgVQYES-90.webp", "sourceType" : "image/webp", "srcset" : "/img/avatars/twitter/CM4jgVQYES-90.webp 90w", "filename" : "CM4jgVQYES-90.webp", "outputPath" : "src/img/avatars/twitter/CM4jgVQYES-90.webp", "size" : 966}], "jpeg" : [{"format" : "jpeg", "width" : 90, "height" : 90, "url" : "/img/avatars/twitter/CM4jgVQYES-90.jpeg", "sourceType" : "image/jpeg", "srcset" : "/img/avatars/twitter/CM4jgVQYES-90.jpeg 90w", "filename" : "CM4jgVQYES-90.jpeg", "outputPath" : "src/img/avatars/twitter/CM4jgVQYES-90.jpeg", "size" : 1437}]}
json_instruct
{"type": "object", "properties": {"avif": {"type": "array", "items": {"type": "object", "properties": {"format": {"type": "string"}, "width": {"type": "integer"}, "height": {"type": "integer"}, "url": {"type": "string"}, "sourceType": {"type": "string"}, "srcset": {"type": "string"}, "filename": {"type": "string"}, "outputPath": {"type": "string"}, "size": {"type": "integer"}}, "required": ["format", "width", "height", "url", "sourceType", "srcset", "filename", "outputPath", "size"]}}, "webp": {"type": "array", "items": {"type": "object", "properties": {"format": {"type": "string"}, "width": {"type": "integer"}, "height": {"type": "integer"}, "url": {"type": "string"}, "sourceType": {"type": "string"}, "srcset": {"type": "string"}, "filename": {"type": "string"}, "outputPath": {"type": "string"}, "size": {"type": "integer"}}, "required": ["format", "width", "height", "url", "sourceType", "srcset", "filename", "outputPath", "size"]}}, "jpeg": {"type": "array", "items": {"type": "object", "properties": {"format": {"type": "string"}, "width": {"type": "integer"}, "height": {"type": "integer"}, "url": {"type": "string"}, "sourceType": {"type": "string"}, "srcset": {"type": "string"}, "filename": {"type": "string"}, "outputPath": {"type": "string"}, "size": {"type": "integer"}}, "required": ["format", "width", "height", "url", "sourceType", "srcset", "filename", "outputPath", "size"]}}}, "required": ["avif", "webp", "jpeg"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"name": {"type": "string"}, "endpoints": {"type": "object", "properties": {"sms": {"type": "object", "properties": {"delivery_class": {"type": "string"}}, "required": ["delivery_class"]}}, "required": ["sms"]}, "ushahidi_map": {"type": "string"}, "kv_group": {"type": "string"}, "channel": {"type": "string"}, "display_results_date": {"type": "string"}, "bypass_address": {"type": "string"}, "quiz": {"type": "string"}}, "required": ["name", "endpoints", "ushahidi_map", "kv_group", "channel", "display_results_date", "bypass_address", "quiz"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "di_ussd_4729_3_live_app", "endpoints" : {"sms" : {"delivery_class" : "sms"}}, "ushahidi_map" : "https://godi.crowdmap.com/api", "kv_group" : "di_live_app", "channel" : "*120*4729*3#", "display_results_date" : "15 April, 2014", "bypass_address" : "true", "quiz" : "endlinesurveyquiz"}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "endpoints": {"type": "object", "properties": {"sms": {"type": "object", "properties": {"delivery_class": {"type": "string"}}, "required": ["delivery_class"]}}, "required": ["sms"]}, "ushahidi_map": {"type": "string"}, "kv_group": {"type": "string"}, "channel": {"type": "string"}, "display_results_date": {"type": "string"}, "bypass_address": {"type": "string"}, "quiz": {"type": "string"}}, "required": ["name", "endpoints", "ushahidi_map", "kv_group", "channel", "display_results_date", "bypass_address", "quiz"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "text": {"type": "string"}}, "required": ["id", "text"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"id" : "511325103001", "text" : "\u60dc\u5b57\u5854\u793e\u533a\u5c45\u6c11\u59d4\u5458\u4f1a"}, {"id" : "511325103002", "text" : "\u534e\u5149\u793e\u533a\u5c45\u6c11\u59d4\u5458\u4f1a"}, {"id" : "511325103202", "text" : "\u9a6c\u5eb8\u5bfa\u6751\u6751\u6c11\u59d4\u5458\u4f1a"}, {"id" : "511325103204", "text" : "\u77f3\u8001\u5634\u6751\u6751\u6c11\u59d4\u5458\u4f1a"}, {"id" : "511325103206", "text" : "\u8df3\u7905\u5b50\u6751\u6751\u6c11\u59d4\u5458\u4f1a"}, {"id" : "511325103209", "text" : "\u6765\u9f99\u5c71\u6751\u6751\u6c11\u59d4\u5458\u4f1a"}, {"id" : "511325103211", "text" : "\u9ec4\u695d\u576a\u6751\u6751\u6c11\u59d4\u5458\u4f1a"}, {"id" : "511325103214", "text" : "\u54e8\u5b50\u5c71\u6751\u6751\u6c11\u59d4\u5458\u4f1a"}, {"id" : "511325103218", "text" : "\u9752\u9f99\u9662\u6751\u6751\u6c11\u59d4\u5458\u4f1a"}, {"id" : "511325103221", "text" : "\u5c0f\u57ad\u5bfa\u6751\u6751\u6c11\u59d4\u5458\u4f1a"}, {"id" : "511325103225", "text" : "\u8d3e\u5927\u6ee9\u6751\u6751\u6c11\u59d4\u5458\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#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"h": {"type": "array", "items": {"type": "object", "properties": {"d": {"type": "array", "items": {"type": "object", "properties": {"f": {"type": "string"}}, "required": ["f"]}}}, "required": ["d"]}}, "stem": {"type": "string"}, "t": {"type": "string"}}, "required": ["h", "stem", "t"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"h" : [{"d" : [{"f" : "\u63d2\u4e0a\u4e86\uff0c\u7d66\u63d2\u4e0a\u4e86\u3002"}, {"f" : "\u6307\u63d2\u6771\u897f\u7684\u4eba\u3002"}]}], "stem" : "conek", "t" : "paconekay"}
json_instruct
{"type": "object", "properties": {"h": {"type": "array", "items": {"type": "object", "properties": {"d": {"type": "array", "items": {"type": "object", "properties": {"f": {"type": "string"}}, "required": ["f"]}}}, "required": ["d"]}}, "stem": {"type": "string"}, "t": {"type": "string"}}, "required": ["h", "stem", "t"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"status": {"type": "integer"}, "data": {"type": "object", "properties": {"totalSubs": {"type": "integer"}, "subsInEachSource": {"type": "object", "properties": {"feedly": {"type": "integer"}, "inoreader": {"type": "integer"}, "feedsPub": {"type": "integer"}}, "required": ["feedly", "inoreader", "feedsPub"]}, "failedSources": {"type": "object", "properties": {"feedly": {"type": "string"}}, "required": ["feedly"]}}, "required": ["totalSubs", "subsInEachSource", "failedSources"]}, "lastModified": {"type": "integer"}}, "required": ["status", "data", "lastModified"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"status" : 200, "data" : {"totalSubs" : 14217, "subsInEachSource" : {"feedly" : 0, "inoreader" : 14000, "feedsPub" : 217}, "failedSources" : {"feedly" : "too many requests, slow down"}}, "lastModified" : 1623545136473}
json_instruct
{"type": "object", "properties": {"status": {"type": "integer"}, "data": {"type": "object", "properties": {"totalSubs": {"type": "integer"}, "subsInEachSource": {"type": "object", "properties": {"feedly": {"type": "integer"}, "inoreader": {"type": "integer"}, "feedsPub": {"type": "integer"}}, "required": ["feedly", "inoreader", "feedsPub"]}, "failedSources": {"type": "object", "properties": {"feedly": {"type": "string"}}, "required": ["feedly"]}}, "required": ["totalSubs", "subsInEachSource", "failedSources"]}, "lastModified": {"type": "integer"}}, "required": ["status", "data", "lastModified"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "text": {"type": "string"}}, "required": ["id", "text"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"id" : "429006107001", "text" : "\u5e99\u5df7\u8857\u4e00\u5c45\u59d4\u4f1a"}, {"id" : "429006107003", "text" : "\u9648\u5bb6\u5df7\u8857\u5c45\u59d4\u4f1a"}, {"id" : "429006107004", "text" : "\u91d1\u6e7e\u5c45\u59d4\u4f1a"}, {"id" : "429006107005", "text" : "\u9752\u534e\u5bfa\u5c45\u59d4\u4f1a"}, {"id" : "429006107006", "text" : "\u4fdd\u5b89\u6865\u5c45\u59d4\u4f1a"}, {"id" : "429006107007", "text" : "\u52c7\u6562\u5c45\u59d4\u4f1a"}, {"id" : "429006107008", "text" : "\u5065\u5eb7\u5c45\u59d4\u4f1a"}, {"id" : "429006107009", "text" : "\u7cae\u4ed3\u5df7\u5c45\u59d4\u4f1a"}, {"id" : "429006107010", "text" : "\u5939\u6811\u6797\u5c45\u59d4\u4f1a"}, {"id" : "429006107202", "text" : "\u5510\u62d0\u6751\u59d4\u4f1a"}, {"id" : "429006107203", "text" : "\u5218\u94c1\u5cad\u6751\u59d4\u4f1a"}, {"id" : "429006107204", "text" : "\u8521\u5b8b\u6e7e\u6751\u59d4\u4f1a"}, {"id" : "429006107205", "text" : "\u6c38\u5174\u5944\u6751\u59d4\u4f1a"}, {"id" : "429006107206", "text" : "\u6881\u5df7\u6751\u59d4\u4f1a"}, {"id" : "429006107207", "text" : "\u6000\u5761\u6751\u59d4\u4f1a"}, {"id" : "429006107208", "text" : "\u5f20\u8d8a\u6751\u59d4\u4f1a"}, {"id" : "429006107209", "text" : "\u6d2a\u5bfa\u5e99\u6751\u59d4\u4f1a"}, {"id" : "429006107210", "text" : "\u90ac\u8d8a\u6751\u59d4\u4f1a"}, {"id" : "429006107211", "text" : "\u4e60\u6865\u6751\u59d4\u4f1a"}, {"id" : "429006107212", "text" : "\u6f58\u5e97\u6751\u59d4\u4f1a"}, {"id" : "429006107213", "text" : "\u7a0b\u6865\u6751\u59d4\u4f1a"}, {"id" : "429006107214", "text" : "\u706f\u5854\u6751\u59d4\u4f1a"}, {"id" : "429006107215", "text" : "\u4e03\u5c4b\u5df7\u6751\u59d4\u4f1a"}, {"id" : "429006107216", "text" : "\u8521\u5824\u6751\u59d4\u4f1a"}, {"id" : "429006107217", "text" : "\u8096\u9a6c\u6e7e\u6751\u59d4\u4f1a"}, {"id" : "429006107218", "text" : "\u4e1c\u5cb3\u5e99\u6751\u59d4\u4f1a"}, {"id" : "429006107219", "text" : "\u859b\u718a\u6ee9\u6751\u59d4\u4f1a"}, {"id" : "429006107220", "text" : "\u8019\u5e02\u6751\u59d4\u4f1a"}, {"id" : "429006107221", "text" : "\u4e30\u5cad\u6751\u59d4\u4f1a"}, {"id" : "429006107222", "text" : "\u6d82\u9633\u6751\u59d4\u4f1a"}, {"id" : "429006107223", "text" : "\u9093\u5df7\u6751\u59d4\u4f1a"}, {"id" : "429006107224", "text" : "\u4e94\u661f\u6751\u59d4\u4f1a"}, {"id" : "429006107225", "text" : "\u622a\u6cb3\u6751\u59d4\u4f1a"}, {"id" : "429006107226", "text" : "\u9f9a\u65b0\u57b8\u6751\u59d4\u4f1a"}, {"id" : "429006107227", "text" : "\u56de\u6d41\u6e7e\u6751\u59d4\u4f1a"}, {"id" : "429006107228", "text" : "\u6a2a\u5824\u6e21\u6751\u59d4\u4f1a"}, {"id" : "429006107229", "text" : "\u5929\u7afa\u5bfa\u6751\u59d4\u4f1a"}, {"id" : "429006107230", "text" : "\u5c39\u5174\u573a\u6751\u59d4\u4f1a"}, {"id" : "429006107231", "text" : "\u94b1\u5bb6\u5cad\u6751\u59d4\u4f1a"}, {"id" : "429006107232", "text" : "\u5723\u53f0\u5bfa\u6751\u59d4\u4f1a"}, {"id" : "429006107236", "text" : "\u9ec4\u5bb6\u6ee9\u6751\u59d4\u4f1a"}, {"id" : "429006107237", "text" : "\u65b0\u5174\u57b8\u6751\u59d4\u4f1a"}, {"id" : "429006107238", "text" : "\u6768\u6811\u5e97\u6751\u59d4\u4f1a"}, {"id" : "429006107239", "text" : "\u8377\u82b1\u6f6d\u6751\u59d4\u4f1a"}, {"id" : "429006107243", "text" : "\u4e94\u9f99\u6751\u59d4\u4f1a"}, {"id" : "429006107244", "text" : "\u6768\u674e\u6865\u6751\u59d4\u4f1a"}, {"id" : "429006107245", "text" : "\u65b0\u5830\u53e3\u6751\u59d4\u4f1a"}, {"id" : "429006107246", "text" : "\u6f6d\u6e56\u6751\u59d4\u4f1a"}, {"id" : "429006107247", "text" : "\u5f90\u8d8a\u6751\u59d4\u4f1a"}, {"id" : "429006107248", "text" : "\u5317\u5824\u6751\u59d4\u4f1a"}, {"id" : "429006107249", "text" : "\u5357\u6e56\u65b0\u6751"}, {"id" : "429006107501", "text" : "\u9648\u573a\u6797\u573a\u751f\u6d3b\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#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "license": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"kleur": {"type": "string"}, "vitest": {"type": "string"}}, "required": ["kleur", "vitest"]}}, "required": ["name", "version", "description", "main", "scripts", "keywords", "author", "repository", "license", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "visualize-ansi-codes", "version" : "1.0.0", "description" : "Replace ansi escape sequences with tokens indicating what they are.", "main" : "index.js", "scripts" : {"test" : "vitest"}, "keywords" : ["ansi", "color", "print", "format", "test"], "author" : "Lily Scott <me@suchipi.com>", "repository" : {"type" : "git", "url" : ""}, "license" : "MIT", "devDependencies" : {"kleur" : "^4.1.4", "vitest" : "^0.5.9"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "license": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"kleur": {"type": "string"}, "vitest": {"type": "string"}}, "required": ["kleur", "vitest"]}}, "required": ["name", "version", "description", "main", "scripts", "keywords", "author", "repository", "license", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {}}, "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" : 89615, "cartId" : "0cba8955-e837-4b52-9444-d92eb92ca618", "preferredProducts" : [], "productReviews" : [{"productId" : 3472, "reviewText" : "This payment works really well. It sympathetically improves my baseball by a lot.", "reviewDate" : "2020-02-27T18:38:13.6849048+02:00"}, {"productId" : 4574, "reviewText" : "this Functionality is gracious.", "reviewDate" : "2018-12-03T08:22:34.7849964+02:00"}, {"productId" : 2604, "reviewText" : "i use it once in a while when i'm in my ring.", "reviewDate" : "2016-08-20T11:55:37.8249443+03:00"}]}
json_instruct
{"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {}}, "productReviews": {"type": "array", "items": {"type": "object", "properties": {"productId": {"type": "integer"}, "reviewText": {"type": "string"}, "reviewDate": {"type": "string"}}, "required": ["productId", "reviewText", "reviewDate"]}}}, "required": ["userId", "cartId", "preferredProducts", "productReviews"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"summary": {"type": "object", "properties": {"byte_size": {"type": "integer"}, "kb_size": {"type": "integer"}, "mb_size": {"type": "number"}, "collect_input": {"type": "boolean"}, "layers": {"type": "array", "items": {"type": "object", "properties": {"bits:": {"type": "integer"}, "size:": {"type": "integer"}, "byte_size:": {"type": "integer"}, "foz:": {"type": "number"}, "zeros:": {"type": "integer"}, "sum:": {"type": "integer"}, "min:": {"type": "integer"}, "max:": {"type": "integer"}, "mean:": {"type": "number"}}, "required": ["bits:", "size:", "byte_size:", "foz:", "zeros:", "sum:", "min:", "max:", "mean:"]}}}, "required": ["byte_size", "kb_size", "mb_size", "collect_input", "layers"]}, "perf": {"type": "object", "properties": {"query_time": {"type": "number"}, "query_time_min": {"type": "number"}, "query_time_max": {"type": "number"}, "times": {"type": "array", "items": {"type": "number"}}, "num_queries": {"type": "integer"}, "insert_time": {"type": "number"}}, "required": ["query_time", "query_time_min", "query_time_max", "times", "num_queries", "insert_time"]}}, "required": ["summary", "perf"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"summary" : {"byte_size" : 17039360, "kb_size" : 16640, "mb_size" : 16.25, "collect_input" : false, "layers" : [{"bits:" : 8, "size:" : 16777216, "byte_size:" : 16777216, "foz:" : 0.0768456, "zeros:" : 1289256, "sum:" : 968388, "min:" : 0, "max:" : 255, "mean:" : 0.0577204}, {"bits:" : 32, "size:" : 65536, "byte_size:" : 262144, "foz:" : 0.0323639, "zeros:" : 2121, "sum:" : 3890717, "min:" : 0, "max:" : 50181, "mean:" : 59.3676}]}, "perf" : {"query_time" : 0.424037, "query_time_min" : 0.385012, "query_time_max" : 0.575597, "times" : [0.402781, 0.403158, 0.391748, 0.398597, 0.393818, 0.395258, 0.496621, 0.575597, 0.397777, 0.385012], "num_queries" : 10000000, "insert_time" : 0.70444}}
json_instruct
{"type": "object", "properties": {"summary": {"type": "object", "properties": {"byte_size": {"type": "integer"}, "kb_size": {"type": "integer"}, "mb_size": {"type": "number"}, "collect_input": {"type": "boolean"}, "layers": {"type": "array", "items": {"type": "object", "properties": {"bits:": {"type": "integer"}, "size:": {"type": "integer"}, "byte_size:": {"type": "integer"}, "foz:": {"type": "number"}, "zeros:": {"type": "integer"}, "sum:": {"type": "integer"}, "min:": {"type": "integer"}, "max:": {"type": "integer"}, "mean:": {"type": "number"}}, "required": ["bits:", "size:", "byte_size:", "foz:", "zeros:", "sum:", "min:", "max:", "mean:"]}}}, "required": ["byte_size", "kb_size", "mb_size", "collect_input", "layers"]}, "perf": {"type": "object", "properties": {"query_time": {"type": "number"}, "query_time_min": {"type": "number"}, "query_time_max": {"type": "number"}, "times": {"type": "array", "items": {"type": "number"}}, "num_queries": {"type": "integer"}, "insert_time": {"type": "number"}}, "required": ["query_time", "query_time_min", "query_time_max", "times", "num_queries", "insert_time"]}}, "required": ["summary", "perf"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"id": {"type": "integer"}, "info": {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "additionalInfo": {"type": "null"}, "format": {"type": "string"}, "category": {"type": "string"}, "createdAt": {"type": "string"}, "updatedAt": {"type": "string"}, "license": {"type": "string"}, "author": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}}, "required": ["id", "name"]}}, "required": ["name", "description", "additionalInfo", "format", "category", "createdAt", "updatedAt", "license", "author"]}, "stats": {"type": "object", "properties": {"installs": {"type": "object", "properties": {"total": {"type": "integer"}, "weekly": {"type": "integer"}}, "required": ["total", "weekly"]}, "rating": {"type": "integer"}}, "required": ["installs", "rating"]}, "screenshots": {"type": "object", "properties": {"main": {"type": "object", "properties": {"name": {"type": "string"}, "archived": {"type": "boolean"}}, "required": ["name", "archived"]}}, "required": ["main"]}, "discussions": {"type": "object", "properties": {"stats": {"type": "object", "properties": {"discussionsCount": {"type": "integer"}, "commentsCount": {"type": "integer"}}, "required": ["discussionsCount", "commentsCount"]}, "data": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "title": {"type": "string"}, "createdAt": {"type": "string"}, "author": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}}, "required": ["id", "name"]}}, "required": ["id", "title", "createdAt", "author"]}}}, "required": ["stats", "data"]}, "style": {"type": "object", "properties": {"css": {"type": "string"}}, "required": ["css"]}}, "required": ["id", "info", "stats", "screenshots", "discussions", "style"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : 174531, "info" : {"name" : "Simple Roblox", "description" : "I will work as hard as I can to update this and make ROBLOX a very clean website that everyone can use.", "additionalInfo" : null, "format" : "uso", "category" : "global", "createdAt" : "2019-08-19T22:35:42.000Z", "updatedAt" : "2019-08-19T22:35:42.000Z", "license" : "NO-REDISTRIBUTION", "author" : {"id" : 842768, "name" : "mynameis123"}}, "stats" : {"installs" : {"total" : 314, "weekly" : 1}, "rating" : 1}, "screenshots" : {"main" : {"name" : "174531_after.png", "archived" : true}}, "discussions" : {"stats" : {"discussionsCount" : 3, "commentsCount" : 0}, "data" : [{"id" : 81888, "title" : "Does nothing", "createdAt" : "2019-12-29T19:07:04.000Z", "author" : {"id" : 876294, "name" : "eoaga"}}, {"id" : 83417, "title" : "nothing", "createdAt" : "2020-03-01T09:41:50.000Z", "author" : {"id" : 897922, "name" : "Penguin_vlogs"}}, {"id" : 83418, "title" : "nothing", "createdAt" : "2020-03-01T09:41:56.000Z", "author" : {"id" : 897922, "name" : "Penguin_vlogs"}}]}, "style" : {"css" : "/* i really want this to be global */\r\n\r\n.element {\r\n \tall: none;\r\n}"}}
json_instruct
{"type": "object", "properties": {"id": {"type": "integer"}, "info": {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "additionalInfo": {"type": "null"}, "format": {"type": "string"}, "category": {"type": "string"}, "createdAt": {"type": "string"}, "updatedAt": {"type": "string"}, "license": {"type": "string"}, "author": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}}, "required": ["id", "name"]}}, "required": ["name", "description", "additionalInfo", "format", "category", "createdAt", "updatedAt", "license", "author"]}, "stats": {"type": "object", "properties": {"installs": {"type": "object", "properties": {"total": {"type": "integer"}, "weekly": {"type": "integer"}}, "required": ["total", "weekly"]}, "rating": {"type": "integer"}}, "required": ["installs", "rating"]}, "screenshots": {"type": "object", "properties": {"main": {"type": "object", "properties": {"name": {"type": "string"}, "archived": {"type": "boolean"}}, "required": ["name", "archived"]}}, "required": ["main"]}, "discussions": {"type": "object", "properties": {"stats": {"type": "object", "properties": {"discussionsCount": {"type": "integer"}, "commentsCount": {"type": "integer"}}, "required": ["discussionsCount", "commentsCount"]}, "data": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "title": {"type": "string"}, "createdAt": {"type": "string"}, "author": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}}, "required": ["id", "name"]}}, "required": ["id", "title", "createdAt", "author"]}}}, "required": ["stats", "data"]}, "style": {"type": "object", "properties": {"css": {"type": "string"}}, "required": ["css"]}}, "required": ["id", "info", "stats", "screenshots", "discussions", "style"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
[[142, -360, 4837, -217, -581, -12077, 86, 35, 42, 726, -257, -96, 137, -182, -132, 8722, -113, -6121, -1107, 68, -2812, 2632, -239, -4372, -31, -7302, 1147, -11, 12198, 17161, -7, 281], [9817, 9867, 1874, 9928, 10007, 1900, 9958, 10022, 9978, 5794, 10063, 9943, 9939, 9961, 9900, 5016, 9880, 475, 10098, 10021, 1010, 2673, 10022, 4719, 9908, 2484, 6021, 10066, 2874, 1858, 9917, 9823]]
json_instruct
{"type": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"builtin": {"type": "object", "properties": {"__set__": {"type": "boolean"}, "elements": {"type": "array", "items": {"type": "string"}}}, "required": ["__set__", "elements"]}, "questionable": {"type": "object", "properties": {"__set__": {"type": "boolean"}, "elements": {"type": "array", "items": {"type": "string"}}}, "required": ["__set__", "elements"]}, "relative": {"type": "object", "properties": {"__set__": {"type": "boolean"}, "elements": {"type": "array", "items": {"type": "string"}}}, "required": ["__set__", "elements"]}, "required": {"type": "object", "properties": {"__set__": {"type": "boolean"}, "elements": {"type": "array", "items": {"type": "string"}}}, "required": ["__set__", "elements"]}}, "required": ["builtin", "questionable", "relative", "required"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"builtin" : {"__set__" : true, "elements" : ["__future__", "argparse", "collections", "contextlib", "copy", "io", "logging", "os", "re", "signal", "subprocess", "sys", "time", "traceback", "weakref", "xml"]}, "questionable" : {"__set__" : true, "elements" : ["PyQt5", "pyyaml", "qtpy", "setproctitle"]}, "relative" : {"__set__" : true, "elements" : ["__version__", "const", "cursors", "data", "plot", "plotMenu", "scope", "trigger"]}, "required" : {"__set__" : true, "elements" : ["dateutil", "git", "gpstime", "nds2", "numpy", "pkg_resources", "pyqtgraph", "pytest", "setuptools"]}}
json_instruct
{"type": "object", "properties": {"builtin": {"type": "object", "properties": {"__set__": {"type": "boolean"}, "elements": {"type": "array", "items": {"type": "string"}}}, "required": ["__set__", "elements"]}, "questionable": {"type": "object", "properties": {"__set__": {"type": "boolean"}, "elements": {"type": "array", "items": {"type": "string"}}}, "required": ["__set__", "elements"]}, "relative": {"type": "object", "properties": {"__set__": {"type": "boolean"}, "elements": {"type": "array", "items": {"type": "string"}}}, "required": ["__set__", "elements"]}, "required": {"type": "object", "properties": {"__set__": {"type": "boolean"}, "elements": {"type": "array", "items": {"type": "string"}}}, "required": ["__set__", "elements"]}}, "required": ["builtin", "questionable", "relative", "required"], "$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"}, "lockfileVersion": {"type": "integer"}, "requires": {"type": "boolean"}, "dependencies": {"type": "object", "properties": {"lodash": {"type": "object", "properties": {"version": {"type": "string"}, "resolved": {"type": "string"}, "integrity": {"type": "string"}}, "required": ["version", "resolved", "integrity"]}}, "required": ["lodash"]}}, "required": ["name", "version", "lockfileVersion", "requires", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "demo2", "version" : "1.0.0", "lockfileVersion" : 1, "requires" : true, "dependencies" : {"lodash" : {"version" : "4.17.15", "resolved" : "http://npm.it.q1oa.com/repository/npm-group/lodash/-/lodash-4.17.15.tgz", "integrity" : "sha1-tEf2ZwoEVbv+7dETku/zMOoJdUg="}}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "lockfileVersion": {"type": "integer"}, "requires": {"type": "boolean"}, "dependencies": {"type": "object", "properties": {"lodash": {"type": "object", "properties": {"version": {"type": "string"}, "resolved": {"type": "string"}, "integrity": {"type": "string"}}, "required": ["version", "resolved", "integrity"]}}, "required": ["lodash"]}}, "required": ["name", "version", "lockfileVersion", "requires", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"directions": {"type": "array", "items": {"type": "string"}}, "ingredients": {"type": "array", "items": {"type": "string"}}, "language": {"type": "string"}, "source": {"type": "string"}, "tags": {"type": "array", "items": {}}, "title": {"type": "string"}, "url": {"type": "string"}}, "required": ["directions", "ingredients", "language", "source", "tags", "title", "url"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"directions" : ["Mix the strawberries, peach, banana, watermelon, blueberries, and pineapple together in a large bowl. Drizzle the pina colada mix over the fruit; stir until evenly coated."], "ingredients" : ["6 fresh strawberries, hulled and sliced", "1 peach, sliced", "1 banana, sliced", "1/2 cup watermelon chunks", "1/2 cup fresh blueberries", "1/2 cup fresh pineapple chunks", "1/4 cup pina colada mix"], "language" : "en-US", "source" : "allrecipes.com", "tags" : [], "title" : "Pina Colada Fruit Salad", "url" : "http://allrecipes.com/recipe/215573/pina-colada-fruit-salad/"}
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#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "typings": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "scripts": {"type": "object", "properties": {"prepare": {"type": "string"}}, "required": ["prepare"]}, "devDependencies": {"type": "object", "properties": {"@react-native-community/eslint-config": {"type": "string"}, "@types/react": {"type": "string"}, "@types/react-native": {"type": "string"}, "react-native": {"type": "string"}, "tslib": {"type": "string"}, "typescript": {"type": "string"}}, "required": ["@react-native-community/eslint-config", "@types/react", "@types/react-native", "react-native", "tslib", "typescript"]}, "peerDependencies": {"type": "object", "properties": {"react-native": {"type": "string"}}, "required": ["react-native"]}, "author": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}}, "required": ["name", "version", "description", "main", "typings", "repository", "keywords", "scripts", "devDependencies", "peerDependencies", "author", "bugs", "homepage"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "react-native-text-input-mask", "version" : "2.0.5", "description" : "Text input mask for React Native.", "main" : "dist/index.js", "typings" : "dist/index.d.ts", "repository" : {"type" : "git", "url" : "git://github.com/dmprilipko/react-native-text-input-mask.git"}, "keywords" : ["react", "native", "mask", "text input", "android", "ios"], "scripts" : {"prepare" : "npx tsc"}, "devDependencies" : {"@react-native-community/eslint-config" : "0.0.2", "@types/react" : "^16.9.50", "@types/react-native" : "^0.63.45", "react-native" : "^0.63.4", "tslib" : "^2.1.0", "typescript" : "^4.1.3"}, "peerDependencies" : {"react-native" : ">=0.62.2"}, "author" : "Ivan Zotov", "bugs" : {"url" : "https://github.com/dmprilipko/react-native-text-input-mask"}, "homepage" : "https://github.com/dmprilipko/react-native-text-input-mask"}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "typings": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "scripts": {"type": "object", "properties": {"prepare": {"type": "string"}}, "required": ["prepare"]}, "devDependencies": {"type": "object", "properties": {"@react-native-community/eslint-config": {"type": "string"}, "@types/react": {"type": "string"}, "@types/react-native": {"type": "string"}, "react-native": {"type": "string"}, "tslib": {"type": "string"}, "typescript": {"type": "string"}}, "required": ["@react-native-community/eslint-config", "@types/react", "@types/react-native", "react-native", "tslib", "typescript"]}, "peerDependencies": {"type": "object", "properties": {"react-native": {"type": "string"}}, "required": ["react-native"]}, "author": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}}, "required": ["name", "version", "description", "main", "typings", "repository", "keywords", "scripts", "devDependencies", "peerDependencies", "author", "bugs", "homepage"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"__biz": {"type": "string"}, "uin": {"type": "string"}, "key": {"type": "string"}, "pass_ticket": {"type": "string"}}, "required": ["__biz", "uin", "key", "pass_ticket"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"__biz" : "MzA5NDQ2OTcwMA==", "uin" : "ODY5MzgzODYx", "key" : "e73d18115f9204d132bc60b501ffa1842a1212b00ddb26ff875dbbe852a6c02259022250e6c744afffb287c429f8d4a9c90e2d40f5221aa881231542af5bdd43ff5400bd9e0954bbf319d0f19a9796aa", "pass_ticket" : "7KhgUrkHBffZrR2o7IGyewYIeD%2BcksGv%2FnjgvABhysjA2SImJa3yttNaFx0zjWuB"}
json_instruct
{"type": "object", "properties": {"__biz": {"type": "string"}, "uin": {"type": "string"}, "key": {"type": "string"}, "pass_ticket": {"type": "string"}}, "required": ["__biz", "uin", "key", "pass_ticket"], "$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"}, "short_name": {"type": "string"}, "icons": {"type": "array", "items": {"type": "object", "properties": {"src": {"type": "string"}, "sizes": {"type": "string"}, "type": {"type": "string"}}, "required": ["src", "sizes", "type"]}}, "start_url": {"type": "string"}, "display": {"type": "string"}, "background_color": {"type": "string"}, "theme_color": {"type": "string"}}, "required": ["name", "short_name", "icons", "start_url", "display", "background_color", "theme_color"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "PL Boilerplate", "short_name" : "PL Boilerplate", "icons" : [{"src" : "favicons/apple-touch-icon-120x120.png", "sizes" : "120x120", "type" : "image/png"}, {"src" : "favicons/apple-touch-icon-152x152.png", "sizes" : "152x152", "type" : "image/png"}, {"src" : "favicons/apple-touch-icon-180x180.png", "sizes" : "180x180", "type" : "image/png"}, {"src" : "favicons/apple-touch-icon-1024x1024.png", "sizes" : "1024x1024", "type" : "image/png"}], "start_url" : "/index.html", "display" : "standalone", "background_color" : "#f1f1f1", "theme_color" : "#f1f1f1"}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "short_name": {"type": "string"}, "icons": {"type": "array", "items": {"type": "object", "properties": {"src": {"type": "string"}, "sizes": {"type": "string"}, "type": {"type": "string"}}, "required": ["src", "sizes", "type"]}}, "start_url": {"type": "string"}, "display": {"type": "string"}, "background_color": {"type": "string"}, "theme_color": {"type": "string"}}, "required": ["name", "short_name", "icons", "start_url", "display", "background_color", "theme_color"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"type": {"type": "string"}, "features": {"type": "array", "items": {"type": "object", "properties": {"geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["type", "coordinates"]}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"cartodb_id": {"type": "integer"}}, "required": ["cartodb_id"]}}, "required": ["geometry", "type", "properties"]}}}, "required": ["type", "features"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"type" : "FeatureCollection", "features" : [{"geometry" : {"type" : "Polygon", "coordinates" : [[[-88.041821, 43.76727], [-88.033572, 43.765219], [-88.021182, 43.763827], [-88.021366, 43.771744], [-88.026305, 43.776216], [-88.031055, 43.786158], [-88.031198, 43.790325], [-88.007191, 43.790224], [-88.01198, 43.799833], [-88.018154, 43.802091], [-88.020408, 43.802065], [-88.022696, 43.804272], [-87.984986, 43.8038], [-87.983005, 43.802087], [-87.981941, 43.799743], [-87.981309, 43.769747], [-87.982701, 43.766479], [-87.980569, 43.760805], [-87.975709, 43.754408], [-87.97052, 43.751697], [-87.970365, 43.748384], [-87.971628, 43.74779], [-87.971434, 43.746921], [-87.961278, 43.747096], [-87.961364, 43.7181], [-88.040595, 43.717631], [-88.041821, 43.76727]]]}, "type" : "Feature", "properties" : {"cartodb_id" : 80674}}]}
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#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"department": {"type": "string"}, "description": {"type": "array", "items": {"type": "string"}}, "fullname": {"type": "string"}, "number": {"type": "string"}, "section": {"type": "string"}, "semester": {"type": "string"}, "shortname": {"type": "string"}, "type": {"type": "string"}, "year": {"type": "string"}}, "required": ["department", "description", "fullname", "number", "section", "semester", "shortname", "type", "year"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"department" : "REL", "description" : ["How should interpreters of the biblical text make sense of references to supernatural beings like angels and demons? In what sense are they supposed to be real? How do they relate to the divine? What is their relationship with evil? Are there evil angels in the Bible and if so, where do they come from? This section will explore how different biblical texts deal with these questions. It will also examine how diverse religious communities, reading the Bible from different cultural backgrounds, have interpreted biblical texts differently in constructing concepts of spiritual, superhuman, and non-corporeal beings. From biblical texts, we will discuss figures such as the heavenly court, the serpent and Watchers of Genesis, angelic visitors, the Adversary of Job, and angels, demons, and the devil seen in many New Testament texts. We will consider how the interpretation of these biblical texts has impacted post-biblical reflection on discernment, the importance of radical hospitality, witchcraft, and heresy. In addition to the biblical text, students will work with historical writings, film, literary fiction, and traditions of scientific skepticism."], "fullname" : "Bible in Culture and Community", "number" : "121", "section" : "Q", "semester" : "3", "shortname" : "Bible/Culture/Commun", "type" : "R", "year" : "2019"}
json_instruct
{"type": "object", "properties": {"department": {"type": "string"}, "description": {"type": "array", "items": {"type": "string"}}, "fullname": {"type": "string"}, "number": {"type": "string"}, "section": {"type": "string"}, "semester": {"type": "string"}, "shortname": {"type": "string"}, "type": {"type": "string"}, "year": {"type": "string"}}, "required": ["department", "description", "fullname", "number", "section", "semester", "shortname", "type", "year"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"twit": {"type": "string"}}, "required": ["twit"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"twit" : "1.1.19"}
json_instruct
{"type": "object", "properties": {"twit": {"type": "string"}}, "required": ["twit"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"id": {"type": "string"}, "request": {"type": "object", "properties": {"url": {"type": "string"}, "method": {"type": "string"}}, "required": ["url", "method"]}, "response": {"type": "object", "properties": {"status": {"type": "integer"}, "bodyFileName": {"type": "string"}, "headers": {"type": "object", "properties": {"Server": {"type": "string"}, "Date": {"type": "string"}, "Content-Type": {"type": "string"}, "Cache-Control": {"type": "string"}, "Vary": {"type": "array", "items": {"type": "string"}}, "X-GitHub-Media-Type": {"type": "string"}, "X-RateLimit-Limit": {"type": "string"}, "X-RateLimit-Remaining": {"type": "string"}, "X-RateLimit-Reset": {"type": "string"}, "X-RateLimit-Used": {"type": "string"}, "X-RateLimit-Resource": {"type": "string"}, "Strict-Transport-Security": {"type": "string"}, "X-Frame-Options": {"type": "string"}, "X-Content-Type-Options": {"type": "string"}, "X-XSS-Protection": {"type": "string"}, "Referrer-Policy": {"type": "string"}, "Content-Security-Policy": {"type": "string"}, "X-GitHub-Request-Id": {"type": "string"}}, "required": ["Server", "Date", "Content-Type", "Cache-Control", "Vary", "X-GitHub-Media-Type", "X-RateLimit-Limit", "X-RateLimit-Remaining", "X-RateLimit-Reset", "X-RateLimit-Used", "X-RateLimit-Resource", "Strict-Transport-Security", "X-Frame-Options", "X-Content-Type-Options", "X-XSS-Protection", "Referrer-Policy", "Content-Security-Policy", "X-GitHub-Request-Id"]}}, "required": ["status", "bodyFileName", "headers"]}, "uuid": {"type": "string"}}, "required": ["id", "request", "response", "uuid"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : "ec2539b0-c7f8-3b60-a808-277e257ac034", "request" : {"url" : "/search/code?q=filename:spectacular-config+extension:yaml+extension:yml+path:/+org:specmore", "method" : "GET"}, "response" : {"status" : 200, "bodyFileName" : "body-search-code-5nvtK.json", "headers" : {"Server" : "GitHub.com", "Date" : "Sun, 16 May 2021 10:25:17 GMT", "Content-Type" : "application/json; charset=utf-8", "Cache-Control" : "no-cache", "Vary" : ["Accept, Authorization, Cookie, X-GitHub-OTP", "Accept-Encoding, Accept, X-Requested-With"], "X-GitHub-Media-Type" : "github.v3", "X-RateLimit-Limit" : "30", "X-RateLimit-Remaining" : "28", "X-RateLimit-Reset" : "1621160777", "X-RateLimit-Used" : "2", "X-RateLimit-Resource" : "search", "Strict-Transport-Security" : "max-age=31536000; includeSubdomains; preload", "X-Frame-Options" : "deny", "X-Content-Type-Options" : "nosniff", "X-XSS-Protection" : "0", "Referrer-Policy" : "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy" : "default-src 'none'", "X-GitHub-Request-Id" : "F1CC:7F21:1DB0B17:1E8224F:60A0F30C"}}, "uuid" : "ec2539b0-c7f8-3b60-a808-277e257ac034"}
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "request": {"type": "object", "properties": {"url": {"type": "string"}, "method": {"type": "string"}}, "required": ["url", "method"]}, "response": {"type": "object", "properties": {"status": {"type": "integer"}, "bodyFileName": {"type": "string"}, "headers": {"type": "object", "properties": {"Server": {"type": "string"}, "Date": {"type": "string"}, "Content-Type": {"type": "string"}, "Cache-Control": {"type": "string"}, "Vary": {"type": "array", "items": {"type": "string"}}, "X-GitHub-Media-Type": {"type": "string"}, "X-RateLimit-Limit": {"type": "string"}, "X-RateLimit-Remaining": {"type": "string"}, "X-RateLimit-Reset": {"type": "string"}, "X-RateLimit-Used": {"type": "string"}, "X-RateLimit-Resource": {"type": "string"}, "Strict-Transport-Security": {"type": "string"}, "X-Frame-Options": {"type": "string"}, "X-Content-Type-Options": {"type": "string"}, "X-XSS-Protection": {"type": "string"}, "Referrer-Policy": {"type": "string"}, "Content-Security-Policy": {"type": "string"}, "X-GitHub-Request-Id": {"type": "string"}}, "required": ["Server", "Date", "Content-Type", "Cache-Control", "Vary", "X-GitHub-Media-Type", "X-RateLimit-Limit", "X-RateLimit-Remaining", "X-RateLimit-Reset", "X-RateLimit-Used", "X-RateLimit-Resource", "Strict-Transport-Security", "X-Frame-Options", "X-Content-Type-Options", "X-XSS-Protection", "Referrer-Policy", "Content-Security-Policy", "X-GitHub-Request-Id"]}}, "required": ["status", "bodyFileName", "headers"]}, "uuid": {"type": "string"}}, "required": ["id", "request", "response", "uuid"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"extends": {"type": "array", "items": {"type": "string"}}, "travis": {"type": "object", "properties": {"enabled": {"type": "boolean"}}, "required": ["enabled"]}, "assignees": {"type": "array", "items": {"type": "string"}}, "labels": {"type": "array", "items": {"type": "string"}}, "rebaseWhen": {"type": "string"}, "vulnerabilityAlerts": {"type": "object", "properties": {"labels": {"type": "array", "items": {"type": "string"}}, "assignees": {"type": "array", "items": {"type": "string"}}}, "required": ["labels", "assignees"]}}, "required": ["extends", "travis", "assignees", "labels", "rebaseWhen", "vulnerabilityAlerts"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"extends" : ["config:base"], "travis" : {"enabled" : true}, "assignees" : ["@scriptex", "@alpanayotov"], "labels" : ["dependencies"], "rebaseWhen" : "conflicted", "vulnerabilityAlerts" : {"labels" : ["security"], "assignees" : ["@scriptex", "@alpanayotov"]}}
json_instruct
{"type": "object", "properties": {"extends": {"type": "array", "items": {"type": "string"}}, "travis": {"type": "object", "properties": {"enabled": {"type": "boolean"}}, "required": ["enabled"]}, "assignees": {"type": "array", "items": {"type": "string"}}, "labels": {"type": "array", "items": {"type": "string"}}, "rebaseWhen": {"type": "string"}, "vulnerabilityAlerts": {"type": "object", "properties": {"labels": {"type": "array", "items": {"type": "string"}}, "assignees": {"type": "array", "items": {"type": "string"}}}, "required": ["labels", "assignees"]}}, "required": ["extends", "travis", "assignees", "labels", "rebaseWhen", "vulnerabilityAlerts"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"address": {"type": "string"}, "cert_auth_type": {"type": "string"}, "cert_sign": {"type": "string"}, "cert_user_id": {"type": "string"}, "files": {"type": "object", "properties": {}, "required": []}, "inner_path": {"type": "string"}, "modified": {"type": "integer"}, "signs": {"type": "object", "properties": {"18siMKLgnhAQP525vKpZ3iX21VwJ5qvXwy": {"type": "string"}}, "required": ["18siMKLgnhAQP525vKpZ3iX21VwJ5qvXwy"]}, "user": {"type": "array", "items": {"type": "object", "properties": {"avatar": {"type": "string"}, "date_added": {"type": "integer"}, "hub": {"type": "string"}, "intro": {"type": "string"}, "user_name": {"type": "string"}}, "required": ["avatar", "date_added", "hub", "intro", "user_name"]}}}, "required": ["address", "cert_auth_type", "cert_sign", "cert_user_id", "files", "inner_path", "modified", "signs", "user"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"address" : "1UDbADib99KE9d3qZ87NqJF2QLTHmMkoV", "cert_auth_type" : "web", "cert_sign" : "HLLFPDXhhbK7cQV11srqSiuXhAOZNFdojU5zRqcqH0n+KBNQZUm4xVTRx6xL15C2Uq9N5ipKjTVdzhIRTeGA9ZI=", "cert_user_id" : "xixihaha@zeroid.bit", "files" : {}, "inner_path" : "data/userdb/18siMKLgnhAQP525vKpZ3iX21VwJ5qvXwy/content.json", "modified" : 1489487745, "signs" : {"18siMKLgnhAQP525vKpZ3iX21VwJ5qvXwy" : "G5oICDTubj6kSaQnOo+uA4LVEgVpJTkH8AajRzj63MylQpL+42kNxwHueJuOxnrrm9J7tg6GiYBjbTVK18uUuqQ="}, "user" : [{"avatar" : "jpg", "date_added" : 1489478029, "hub" : "1oranGeS2xsKZ4jVsu9SVttzgkYXu4k9v", "intro" : "\u65b0 ZeroNet \u7528\u6237", "user_name" : "Xixihaha"}]}
json_instruct
{"type": "object", "properties": {"address": {"type": "string"}, "cert_auth_type": {"type": "string"}, "cert_sign": {"type": "string"}, "cert_user_id": {"type": "string"}, "files": {"type": "object", "properties": {}, "required": []}, "inner_path": {"type": "string"}, "modified": {"type": "integer"}, "signs": {"type": "object", "properties": {"18siMKLgnhAQP525vKpZ3iX21VwJ5qvXwy": {"type": "string"}}, "required": ["18siMKLgnhAQP525vKpZ3iX21VwJ5qvXwy"]}, "user": {"type": "array", "items": {"type": "object", "properties": {"avatar": {"type": "string"}, "date_added": {"type": "integer"}, "hub": {"type": "string"}, "intro": {"type": "string"}, "user_name": {"type": "string"}}, "required": ["avatar", "date_added", "hub", "intro", "user_name"]}}}, "required": ["address", "cert_auth_type", "cert_sign", "cert_user_id", "files", "inner_path", "modified", "signs", "user"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"type": {"type": "string"}, "features": {"type": "array", "items": {"type": "object", "properties": {"geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["type", "coordinates"]}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"cartodb_id": {"type": "integer"}}, "required": ["cartodb_id"]}}, "required": ["geometry", "type", "properties"]}}}, "required": ["type", "features"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"type" : "FeatureCollection", "features" : [{"geometry" : {"type" : "Polygon", "coordinates" : [[[-81.769054, 41.449102], [-81.768976, 41.456376], [-81.758851, 41.456256], [-81.759417, 41.448437], [-81.763945, 41.444977], [-81.76442, 41.446239], [-81.763157, 41.447387], [-81.763244, 41.448556], [-81.766798, 41.44659], [-81.769054, 41.449102]]]}, "type" : "Feature", "properties" : {"cartodb_id" : 50597}}]}
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#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"topic": {"type": "string"}, "member_limit": {"type": "integer"}, "get_delegations": {"type": "string"}, "headers": {"type": "object", "properties": {"x-trust-me": {"type": "string"}}, "required": ["x-trust-me"]}}, "required": ["topic", "member_limit", "get_delegations", "headers"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"topic" : "12392", "member_limit" : 2, "get_delegations" : "http://trust-engine-dev.herokuapp.com/api/v1/delegations", "headers" : {"x-trust-me" : ""}}
json_instruct
{"type": "object", "properties": {"topic": {"type": "string"}, "member_limit": {"type": "integer"}, "get_delegations": {"type": "string"}, "headers": {"type": "object", "properties": {"x-trust-me": {"type": "string"}}, "required": ["x-trust-me"]}}, "required": ["topic", "member_limit", "get_delegations", "headers"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"name": {"type": "string"}, "disabled": {"type": "boolean"}, "public": {"type": "boolean"}, "env": {"type": "array", "items": {"type": "string"}}, "config": {"type": "object", "properties": {"REGISTER_CONFIG": {"type": "object", "properties": {"actionUrl": {"type": "string"}, "statusUrl": {"type": "string"}}, "required": ["actionUrl", "statusUrl"]}, "LOGIN_CONFIG": {"type": "object", "properties": {"COMPLETED_SUCCESSFUL": {"type": "string"}, "ALREADY_REGISTERED": {"type": "string"}, "NOT_REGISTERED": {"type": "string"}, "NO_SUITABLE_AUTHENTICATOR": {"type": "string"}, "DECLINED": {"type": "string"}, "CANCELLED": {"type": "string"}, "TIMEOUT": {"type": "string"}, "TECHNICAL_REASON_ERROR": {"type": "string"}, "TECHNICAL_REASON": {"type": "string"}, "COMPLETED_FAILURE": {"type": "string"}, "DEEP_LINK": {"type": "string"}, "USER_BLOCKED": {"type": "string"}, "DEVICE_BLOCKED": {"type": "string"}, "actionUrl": {"type": "string"}, "statusUrl": {"type": "string"}, "desktop": {"type": "object", "properties": {"INTRO_MSG": {"type": "string"}, "INITIATED": {"type": "string"}, "REFRESH_MSG": {"type": "string"}}, "required": ["INTRO_MSG", "INITIATED", "REFRESH_MSG"]}, "mobile": {"type": "object", "properties": {"INTRO_MSG": {"type": "string"}, "INITIATED": {"type": "string"}, "REFRESH_MSG": {"type": "string"}}, "required": ["INTRO_MSG", "INITIATED", "REFRESH_MSG"]}}, "required": ["COMPLETED_SUCCESSFUL", "ALREADY_REGISTERED", "NOT_REGISTERED", "NO_SUITABLE_AUTHENTICATOR", "DECLINED", "CANCELLED", "TIMEOUT", "TECHNICAL_REASON_ERROR", "TECHNICAL_REASON", "COMPLETED_FAILURE", "DEEP_LINK", "USER_BLOCKED", "DEVICE_BLOCKED", "actionUrl", "statusUrl", "desktop", "mobile"]}}, "required": ["REGISTER_CONFIG", "LOGIN_CONFIG"]}}, "required": ["name", "disabled", "public", "env", "config"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "thumbsignin", "disabled" : false, "public" : true, "env" : ["browser"], "config" : {"REGISTER_CONFIG" : {"actionUrl" : "/tsAuth/register", "statusUrl" : "/tsAuth/txnStatus/"}, "LOGIN_CONFIG" : {"COMPLETED_SUCCESSFUL" : "Finished successfully", "ALREADY_REGISTERED" : "You have already enabled passwordless authentication for this account using this device.", "NOT_REGISTERED" : "Can't login because the passwordless account doesn't exist.", "NO_SUITABLE_AUTHENTICATOR" : "You have not added fingerprint in your device.", "DECLINED" : "Cancelled", "CANCELLED" : "Cancelled", "TIMEOUT" : "Please try again.", "TECHNICAL_REASON_ERROR" : "Please try again.", "TECHNICAL_REASON" : "Please try again.", "COMPLETED_FAILURE" : "", "DEEP_LINK" : "Open in Thumbsignin app", "USER_BLOCKED" : "User is blocked from Login", "DEVICE_BLOCKED" : "Device is blocked from Login", "actionUrl" : "/tsAuth/authenticate", "statusUrl" : "/tsAuth/txnStatus/", "desktop" : {"INTRO_MSG" : "Scan the QR code above using the ThumbSignIn app on your phone to login to your account.", "INITIATED" : "QR Code Scanned", "REFRESH_MSG" : "QR Code expired.Click to regenerate."}, "mobile" : {"INTRO_MSG" : "", "INITIATED" : "Transaction initiated", "REFRESH_MSG" : "Click on refresh icon and try again."}}}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "disabled": {"type": "boolean"}, "public": {"type": "boolean"}, "env": {"type": "array", "items": {"type": "string"}}, "config": {"type": "object", "properties": {"REGISTER_CONFIG": {"type": "object", "properties": {"actionUrl": {"type": "string"}, "statusUrl": {"type": "string"}}, "required": ["actionUrl", "statusUrl"]}, "LOGIN_CONFIG": {"type": "object", "properties": {"COMPLETED_SUCCESSFUL": {"type": "string"}, "ALREADY_REGISTERED": {"type": "string"}, "NOT_REGISTERED": {"type": "string"}, "NO_SUITABLE_AUTHENTICATOR": {"type": "string"}, "DECLINED": {"type": "string"}, "CANCELLED": {"type": "string"}, "TIMEOUT": {"type": "string"}, "TECHNICAL_REASON_ERROR": {"type": "string"}, "TECHNICAL_REASON": {"type": "string"}, "COMPLETED_FAILURE": {"type": "string"}, "DEEP_LINK": {"type": "string"}, "USER_BLOCKED": {"type": "string"}, "DEVICE_BLOCKED": {"type": "string"}, "actionUrl": {"type": "string"}, "statusUrl": {"type": "string"}, "desktop": {"type": "object", "properties": {"INTRO_MSG": {"type": "string"}, "INITIATED": {"type": "string"}, "REFRESH_MSG": {"type": "string"}}, "required": ["INTRO_MSG", "INITIATED", "REFRESH_MSG"]}, "mobile": {"type": "object", "properties": {"INTRO_MSG": {"type": "string"}, "INITIATED": {"type": "string"}, "REFRESH_MSG": {"type": "string"}}, "required": ["INTRO_MSG", "INITIATED", "REFRESH_MSG"]}}, "required": ["COMPLETED_SUCCESSFUL", "ALREADY_REGISTERED", "NOT_REGISTERED", "NO_SUITABLE_AUTHENTICATOR", "DECLINED", "CANCELLED", "TIMEOUT", "TECHNICAL_REASON_ERROR", "TECHNICAL_REASON", "COMPLETED_FAILURE", "DEEP_LINK", "USER_BLOCKED", "DEVICE_BLOCKED", "actionUrl", "statusUrl", "desktop", "mobile"]}}, "required": ["REGISTER_CONFIG", "LOGIN_CONFIG"]}}, "required": ["name", "disabled", "public", "env", "config"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"BurnTheOrphanage": {"type": "array", "items": {"type": "string"}}}, "required": ["BurnTheOrphanage"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"BurnTheOrphanage" : ["KickTheDog", "DeadUnicornTrope", "ComedicSociopathy", "OrphanageOfFear", "BloodbathVillainOrigin", "KidsAreCruel", "EvilOrphanageLady", "WouldHurtAChild", "OrphanageOfFear", "BreakTheCutie", "WoobieDestroyerOfWorlds", "Greed", "AssholeVictim", "OmnicidalManiac", "AllCrimesAreEqual", "OmnicidalManiac", "AllCrimesAreEqual", "MuggingTheMonster", "ExplosiveOverclocking", "MindControl", "BatmanGambit", "ForTheEvulz", "NotSoDire", "NotSoDire", "NotSoDire", "EvenEvilHasStandards", "OrphanageOfFear", "CrossesTheLineTwice", "TheCaligula", "BadIsGoodAndGoodIsBad", "AssholeVictim", "MoralEventHorizon", "HanlonsRazor", "OrphanageOfFear", "MoralEventHorizon", "AttackOfTheFiftyFootWhatever", "KickTheDog", "OrphanageOfLove", "NightmareFuel", "MyGodWhatHaveIDone", "TheAntichrist", "KillItWithFire", "SadisticChoice", "OrphanageOfFear", "KickTheDog", "OrphanageOfLove", "NightmareFuel", "TheMerch", "VillainWithGoodPublicity", "McNinja", "TheDitz", "BurnTheWitch", "McNinja", "ArsonMurderAndJaywalking", "ChildHater", "UpToEleven", "FantasticVoyagePlot"]}
json_instruct
{"type": "object", "properties": {"BurnTheOrphanage": {"type": "array", "items": {"type": "string"}}}, "required": ["BurnTheOrphanage"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "array", "items": {"type": "object", "properties": {"xAxis": {"type": "object", "properties": {"type": {"type": "string"}, "region": {"type": "string"}, "name": {"type": "string"}, "yyyy": {"type": "string"}, "title": {"type": "string"}}, "required": ["type", "region", "name", "yyyy", "title"]}, "series": {"type": "array", "items": {"type": "object", "properties": {"data": {"type": "array", "items": {"type": "object", "properties": {"value": {"type": "integer"}, "name": {"type": "string"}}, "required": ["value", "name"]}}}, "required": ["data"]}}}, "required": ["xAxis", "series"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"xAxis" : {"type" : "Jumlah Penduduk", "region" : "Banten", "name" : "(L) Jumlah", "yyyy" : "2017", "title" : "Banten 2017"}, "series" : [{"data" : [{"value" : 605530, "name" : "PANDEGLANG"}, {"value" : 629566, "name" : "LEBAK"}, {"value" : 1337968, "name" : "TANGERANG"}, {"value" : 734743, "name" : "SERANG"}, {"value" : 834399, "name" : "KOTA TANGERANG"}, {"value" : 206420, "name" : "KOTA CILEGON"}, {"value" : 323432, "name" : "KOTA SERANG"}, {"value" : 626497, "name" : "KOTA TANGERANG SELATAN"}]}]}, {"xAxis" : {"type" : "Jumlah Penduduk", "region" : "Banten", "name" : "(P) Jumlah", "yyyy" : "2017", "title" : "Banten 2017"}, "series" : [{"data" : [{"value" : 569618, "name" : "PANDEGLANG"}, {"value" : 592692, "name" : "LEBAK"}, {"value" : 1281835, "name" : "TANGERANG"}, {"value" : 700260, "name" : "SERANG"}, {"value" : 817029, "name" : "KOTA TANGERANG"}, {"value" : 198006, "name" : "KOTA CILEGON"}, {"value" : 306888, "name" : "KOTA SERANG"}, {"value" : 617707, "name" : "KOTA TANGERANG SELATAN"}]}]}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"xAxis": {"type": "object", "properties": {"type": {"type": "string"}, "region": {"type": "string"}, "name": {"type": "string"}, "yyyy": {"type": "string"}, "title": {"type": "string"}}, "required": ["type", "region", "name", "yyyy", "title"]}, "series": {"type": "array", "items": {"type": "object", "properties": {"data": {"type": "array", "items": {"type": "object", "properties": {"value": {"type": "integer"}, "name": {"type": "string"}}, "required": ["value", "name"]}}}, "required": ["data"]}}}, "required": ["xAxis", "series"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "frequency": {"type": "integer"}, "gender": {"type": "string"}}, "required": ["name", "frequency", "gender"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"name" : "HERNANDO JESUS", "frequency" : 35, "gender" : "male"}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "frequency": {"type": "integer"}, "gender": {"type": "string"}}, "required": ["name", "frequency", "gender"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"project_name": {"type": "string"}, "files": {"type": "object", "properties": {"/src/main/java/com/finleash/eserve/service/util/RandomUtil.java": {"type": "integer"}}, "required": ["/src/main/java/com/finleash/eserve/service/util/RandomUtil.java"]}, "pull_request": {"type": "string"}, "report": {"type": "object", "properties": {"files_fixed": {"type": "integer"}, "vulnerabilities_fixed": {"type": "integer"}, "file_name_fixed": {"type": "array", "items": {"type": "string"}}}, "required": ["files_fixed", "vulnerabilities_fixed", "file_name_fixed"]}}, "required": ["project_name", "files", "pull_request", "report"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"project_name" : "vaquarkhan/sampleApplication-framework-poc", "files" : {"/src/main/java/com/finleash/eserve/service/util/RandomUtil.java" : 3}, "pull_request" : "https://github.com/vaquarkhan/sampleApplication-framework-poc/pull/1", "report" : {"files_fixed" : 1, "vulnerabilities_fixed" : 3, "file_name_fixed" : ["/src/main/java/com/finleash/eserve/service/util/RandomUtil.java"]}}
json_instruct
{"type": "object", "properties": {"project_name": {"type": "string"}, "files": {"type": "object", "properties": {"/src/main/java/com/finleash/eserve/service/util/RandomUtil.java": {"type": "integer"}}, "required": ["/src/main/java/com/finleash/eserve/service/util/RandomUtil.java"]}, "pull_request": {"type": "string"}, "report": {"type": "object", "properties": {"files_fixed": {"type": "integer"}, "vulnerabilities_fixed": {"type": "integer"}, "file_name_fixed": {"type": "array", "items": {"type": "string"}}}, "required": ["files_fixed", "vulnerabilities_fixed", "file_name_fixed"]}}, "required": ["project_name", "files", "pull_request", "report"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"id": {"type": "string"}, "playerTags": {"type": "array", "items": {}}, "teamTags": {"type": "array", "items": {"type": "string"}}, "gameTags": {"type": "array", "items": {"type": "string"}}, "metadata": {"type": "object", "properties": {"play": {"type": "integer"}, "subPlay": {"type": "integer"}, "children": {"type": "array", "items": {"type": "string"}}}, "required": ["play", "subPlay", "children"]}, "created": {"type": "string"}, "season": {"type": "integer"}, "tournament": {"type": "integer"}, "type": {"type": "integer"}, "day": {"type": "integer"}, "phase": {"type": "integer"}, "category": {"type": "integer"}, "description": {"type": "string"}, "nuts": {"type": "integer"}}, "required": ["id", "playerTags", "teamTags", "gameTags", "metadata", "created", "season", "tournament", "type", "day", "phase", "category", "description", "nuts"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : "303742b8-2973-44ea-b84a-1ec3c791978f", "playerTags" : [], "teamTags" : ["7966eb04-efcc-499b-8f03-d13916330531", "eb67ae5e-c4bf-46ca-bbbc-425cd34182ff"], "gameTags" : ["08638fae-c6f2-4698-a65a-1dfb6d5b1458"], "metadata" : {"play" : 26, "subPlay" : -1, "children" : ["cd935855-a1b4-4ea9-ad27-28ad9d27d5d7"]}, "created" : "2021-03-19T06:02:11.235Z", "season" : 13, "tournament" : -1, "type" : 165, "day" : 85, "phase" : 6, "category" : 0, "description" : "The pressure is on! The Moist Talkers are Overperforming.", "nuts" : 0}
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "playerTags": {"type": "array", "items": {}}, "teamTags": {"type": "array", "items": {"type": "string"}}, "gameTags": {"type": "array", "items": {"type": "string"}}, "metadata": {"type": "object", "properties": {"play": {"type": "integer"}, "subPlay": {"type": "integer"}, "children": {"type": "array", "items": {"type": "string"}}}, "required": ["play", "subPlay", "children"]}, "created": {"type": "string"}, "season": {"type": "integer"}, "tournament": {"type": "integer"}, "type": {"type": "integer"}, "day": {"type": "integer"}, "phase": {"type": "integer"}, "category": {"type": "integer"}, "description": {"type": "string"}, "nuts": {"type": "integer"}}, "required": ["id", "playerTags", "teamTags", "gameTags", "metadata", "created", "season", "tournament", "type", "day", "phase", "category", "description", "nuts"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "array", "items": {"type": "object", "properties": {"postal_code": {"type": "string"}, "place_name": {"type": "string"}, "place_type": {"type": "string"}, "county": {"type": "string"}, "state": {"type": "string"}, "city": {"type": "string"}}, "required": ["postal_code", "place_name", "place_type", "county", "state", "city"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"postal_code" : "80220", "place_name" : "Guadalupe", "place_type" : "Colonia", "county" : "Culiac\u00e1n", "state" : "Sinaloa", "city" : "Culiac\u00e1n Rosales"}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"postal_code": {"type": "string"}, "place_name": {"type": "string"}, "place_type": {"type": "string"}, "county": {"type": "string"}, "state": {"type": "string"}, "city": {"type": "string"}}, "required": ["postal_code", "place_name", "place_type", "county", "state", "city"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"pos": {"type": "string"}, "translits": {"type": "object", "properties": {"ma\u0161\u00b7r\u014d\u00b7w\u00b7q\u00ee\u00b7\u1e6f\u0101": {"type": "object", "properties": {"dan.3.7|10": {"type": "array", "items": {"type": "string"}}, "dan.3.15|10": {"type": "array", "items": {"type": "string"}}, "dan.3.5|5": {"type": "array", "items": {"type": "string"}}}, "required": ["dan.3.7|10", "dan.3.15|10", "dan.3.5|5"]}, "ma\u0161\u00b7r\u014d\u00b7q\u00ee\u00b7\u1e6f\u0101": {"type": "object", "properties": {"dan.3.10|11": {"type": "array", "items": {"type": "string"}}}, "required": ["dan.3.10|11"]}}, "required": ["ma\u0161\u00b7r\u014d\u00b7w\u00b7q\u00ee\u00b7\u1e6f\u0101", "ma\u0161\u00b7r\u014d\u00b7q\u00ee\u00b7\u1e6f\u0101"]}, "meanings": {"type": "object", "properties": {"flute": {"type": "integer"}}, "required": ["flute"]}, "meaningsCount": {"type": "integer"}, "occurences": {"type": "integer"}}, "required": ["pos", "translits", "meanings", "meaningsCount", "occurences"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"pos" : "n", "translits" : {"ma\u0161\u00b7r\u014d\u00b7w\u00b7q\u00ee\u00b7\u1e6f\u0101" : {"dan.3.7|10" : ["of horn the\uff64", "flute\uff64", "harp\uff64"], "dan.3.15|10" : ["of horn the\uff64", "flute\uff64", "harp\uff64"], "dan.3.5|5" : ["of horn the\uff64", "flute\uff64", "harp\uff64"]}, "ma\u0161\u00b7r\u014d\u00b7q\u00ee\u00b7\u1e6f\u0101" : {"dan.3.10|11" : ["of horn the\uff64", "flute\uff64", "harp\uff64"]}}, "meanings" : {"flute" : 4}, "meaningsCount" : 1, "occurences" : 4}
json_instruct
{"type": "object", "properties": {"pos": {"type": "string"}, "translits": {"type": "object", "properties": {"ma\u0161\u00b7r\u014d\u00b7w\u00b7q\u00ee\u00b7\u1e6f\u0101": {"type": "object", "properties": {"dan.3.7|10": {"type": "array", "items": {"type": "string"}}, "dan.3.15|10": {"type": "array", "items": {"type": "string"}}, "dan.3.5|5": {"type": "array", "items": {"type": "string"}}}, "required": ["dan.3.7|10", "dan.3.15|10", "dan.3.5|5"]}, "ma\u0161\u00b7r\u014d\u00b7q\u00ee\u00b7\u1e6f\u0101": {"type": "object", "properties": {"dan.3.10|11": {"type": "array", "items": {"type": "string"}}}, "required": ["dan.3.10|11"]}}, "required": ["ma\u0161\u00b7r\u014d\u00b7w\u00b7q\u00ee\u00b7\u1e6f\u0101", "ma\u0161\u00b7r\u014d\u00b7q\u00ee\u00b7\u1e6f\u0101"]}, "meanings": {"type": "object", "properties": {"flute": {"type": "integer"}}, "required": ["flute"]}, "meaningsCount": {"type": "integer"}, "occurences": {"type": "integer"}}, "required": ["pos", "translits", "meanings", "meaningsCount", "occurences"], "$schema": "http://json-schema.org/draft-07/schema#"}