input stringlengths 159 2.05k | output stringlengths 5 10.3k | task stringclasses 1
value | schema stringlengths 100 1.99k |
|---|---|---|---|
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"publishConfig": {"type": "object", "properties": {"access": {"type": "string"}}, "required": ["access"]}, "name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "files": {"type": "array", "items": {"type": "string"}}, "dependencies": {"type": "object", "properties": {"@isomorphic-pgp/parser": {"type": "string"}, "array-buffer-to-hex": {"type": "string"}, "concat-buffers": {"type": "string"}, "sha.js": {"type": "string"}}, "required": ["@isomorphic-pgp/parser", "array-buffer-to-hex", "concat-buffers", "sha.js"]}}, "required": ["publishConfig", "name", "version", "description", "scripts", "repository", "keywords", "author", "license", "bugs", "homepage", "files", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"publishConfig" : {"access" : "public"}, "name" : "@isomorphic-pgp/util", "version" : "0.0.7", "description" : "Miscellaneous pgp functions", "scripts" : {"test" : "jest --testEnvironment=node && karma start --single-run"}, "repository" : {"type" : "git", "url" : "git+https://github.com/wmhilton/isomorphic-pgp.git"}, "keywords" : ["pgp", "openpgp", "keyid", "fingerprint"], "author" : "William Hilton <wmhilton@gmail.com>", "license" : "MIT", "bugs" : {"url" : "https://github.com/wmhilton/isomorphic-pgp/issues"}, "homepage" : "https://github.com/wmhilton/isomorphic-pgp#readme", "files" : ["**/*.js", "!__tests__", "!coverage"], "dependencies" : {"@isomorphic-pgp/parser" : "^0.0.4", "array-buffer-to-hex" : "^1.0.0", "concat-buffers" : "^1.0.0", "sha.js" : "^2.4.11"}} | json_instruct | {"type": "object", "properties": {"publishConfig": {"type": "object", "properties": {"access": {"type": "string"}}, "required": ["access"]}, "name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "files": {"type": "array", "items": {"type": "string"}}, "dependencies": {"type": "object", "properties": {"@isomorphic-pgp/parser": {"type": "string"}, "array-buffer-to-hex": {"type": "string"}, "concat-buffers": {"type": "string"}, "sha.js": {"type": "string"}}, "required": ["@isomorphic-pgp/parser", "array-buffer-to-hex", "concat-buffers", "sha.js"]}}, "required": ["publishConfig", "name", "version", "description", "scripts", "repository", "keywords", "author", "license", "bugs", "homepage", "files", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "null"}}, "required": ["contract", "tool", "start", "end", "duration", "analysis"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"contract" : "0x2b2d7d874bbfb73f85b2f8a9ee0d9f3e93722622", "tool" : "securify", "start" : 1563250873.443408, "end" : 1563250878.486144, "duration" : 5.042736053466797, "analysis" : null} | json_instruct | {"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "null"}}, "required": ["contract", "tool", "start", "end", "duration", "analysis"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"tesseract:recipe_shapeless": {"type": "object", "properties": {"key": {"type": "string"}, "tags": {"type": "array", "items": {"type": "string"}}, "ingredients": {"type": "array", "items": {"type": "object", "properties": {"item": {"type": "string"}}, "required": ["item"]}}, "priority": {"type": "integer"}, "result": {"type": "object", "properties": {"item": {"type": "string"}, "blockState": {"type": "string"}}, "required": ["item", "blockState"]}}, "required": ["key", "tags", "ingredients", "priority", "result"]}}, "required": ["tesseract:recipe_shapeless"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"tesseract:recipe_shapeless" : {"key" : "minecraft:stonecutter_red_sandstone_wall", "tags" : ["stonecutter"], "ingredients" : [{"item" : "minecraft:red_sandstone"}], "priority" : 4, "result" : {"item" : "minecraft:cobblestone_wall", "blockState" : "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]"}}} | json_instruct | {"type": "object", "properties": {"tesseract:recipe_shapeless": {"type": "object", "properties": {"key": {"type": "string"}, "tags": {"type": "array", "items": {"type": "string"}}, "ingredients": {"type": "array", "items": {"type": "object", "properties": {"item": {"type": "string"}}, "required": ["item"]}}, "priority": {"type": "integer"}, "result": {"type": "object", "properties": {"item": {"type": "string"}, "blockState": {"type": "string"}}, "required": ["item", "blockState"]}}, "required": ["key", "tags", "ingredients", "priority", "result"]}}, "required": ["tesseract:recipe_shapeless"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"title": {"type": "string"}, "repository": {"type": "string"}, "navigation": {"type": "array", "items": {"type": "object", "properties": {"title": {"type": "string"}, "url": {"type": "string"}}, "required": ["title", "url"]}}}, "required": ["title", "repository", "navigation"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"title" : "CI/CD in Firefly Apps", "repository" : "https://github.com/AdobeDocs/adobeio-codelabs-ci-cd", "navigation" : [{"title" : "Introduction", "url" : "/README"}, {"title" : "Requirements", "url" : "/lessons/requirements"}, {"title" : "Lesson 1: Setup CI/CD", "url" : "/lessons/lesson1"}, {"title" : "Lesson 2: Monitoring CI/CD", "url" : "/lessons/lesson2"}, {"title" : "Well done", "url" : "/lessons/welldone"}]} | json_instruct | {"type": "object", "properties": {"title": {"type": "string"}, "repository": {"type": "string"}, "navigation": {"type": "array", "items": {"type": "object", "properties": {"title": {"type": "string"}, "url": {"type": "string"}}, "required": ["title", "url"]}}}, "required": ["title", "repository", "navigation"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"address": {"type": "string"}, "cert_auth_type": {"type": "string"}, "cert_sign": {"type": "string"}, "cert_user_id": {"type": "string"}, "files": {"type": "object", "properties": {"data.json": {"type": "object", "properties": {"sha512": {"type": "string"}, "size": {"type": "integer"}}, "required": ["sha512", "size"]}}, "required": ["data.json"]}, "inner_path": {"type": "string"}, "modified": {"type": "integer"}, "signs": {"type": "object", "properties": {"17gYqq7kbPjjgLgLKDj5rjAfT3vkrvrdUV": {"type": "string"}}, "required": ["17gYqq7kbPjjgLgLKDj5rjAfT3vkrvrdUV"]}}, "required": ["address", "cert_auth_type", "cert_sign", "cert_user_id", "files", "inner_path", "modified", "signs"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"address" : "1TaLkFrMwvbNsooF4ioKAY9EuxTBTjipT", "cert_auth_type" : "web", "cert_sign" : "G/KIY3PhQBpQ85LrXKhOMio6BOxrMHFnWBxqwUp1ZWrD30glordW0zvyBQyPTfclOVd47tUw9BAqD0AGHAiNrxU=", "cert_user_id" : "0care17@zeroid.bit", "files" : {"data.json" : {"sha512" : "55dd208c87b683ad503d63a6c11e536b010774bb9be9ca9de3b13cc2fb559e1c", "size" : 252}}, "inner_path" : "data/users/17gYqq7kbPjjgLgLKDj5rjAfT3vkrvrdUV/content.json", "modified" : 1491283572, "signs" : {"17gYqq7kbPjjgLgLKDj5rjAfT3vkrvrdUV" : "HHivDAQiOagRKY87hcmOu3QKlrtT3oJvlhm0Mr6QVoEIfi6lCDxScAeqTUV9tVnXt2+C66SVolRgJtL3+3guImg="}} | 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": {"data.json": {"type": "object", "properties": {"sha512": {"type": "string"}, "size": {"type": "integer"}}, "required": ["sha512", "size"]}}, "required": ["data.json"]}, "inner_path": {"type": "string"}, "modified": {"type": "integer"}, "signs": {"type": "object", "properties": {"17gYqq7kbPjjgLgLKDj5rjAfT3vkrvrdUV": {"type": "string"}}, "required": ["17gYqq7kbPjjgLgLKDj5rjAfT3vkrvrdUV"]}}, "required": ["address", "cert_auth_type", "cert_sign", "cert_user_id", "files", "inner_path", "modified", "signs"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"development": {"type": "object", "properties": {"script_url": {"type": "string"}, "css_url": {"type": "string"}}, "required": ["script_url", "css_url"]}, "production": {"type": "object", "properties": {"script_url": {"type": "string"}, "css_url": {"type": "string"}}, "required": ["script_url", "css_url"]}}, "required": ["development", "production"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"development" : {"script_url" : "//labs.webgeodatavore.com/osm-bookmarklet/osm-bookmarklet.build.js", "css_url" : "//labs.webgeodatavore.com/osm-bookmarklet/main.css"}, "production" : {"script_url" : "//webgeodatavore.github.io/osm-bookmarklet/osm-bookmarklet.js", "css_url" : "//webgeodatavore.github.io/osm-bookmarklet/main.css"}} | json_instruct | {"type": "object", "properties": {"development": {"type": "object", "properties": {"script_url": {"type": "string"}, "css_url": {"type": "string"}}, "required": ["script_url", "css_url"]}, "production": {"type": "object", "properties": {"script_url": {"type": "string"}, "css_url": {"type": "string"}}, "required": ["script_url", "css_url"]}}, "required": ["development", "production"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [[1896, 5], [1914, 5], [1916, 5], [1925, 5], [1945, 5], [1946, 5], [1950, 6], [1952, 6], [1955, 10], [1957, 5], [1958, 5], [1960, 9], [1965, 5], [1969, 6], [1970, 10], [1971, 8], [1972, 7], [1974, 7], [1975, 6], [1976, 6], [1977, 18], [1978, 5], [1979, 5], [1980, 7], [1981, 8], [1982, 6], [1984, 5], [1986, 7], [1988, 9], [1989, 9], [1990, 9], [1991, 13], [1992, 23], [1993, 12], [1994, 12], [1995, 14], [1996, 11], [1997, 10], [1998, 14], [1999, 7], [2000, 9], [2001, 16], [2002, 8], [2003, 13], [2004, 12], [2005, 22], [2006, 17], [2007, 18], [2008, 22], [2009, 17], [2010, 9], [2011, 26], [2012, 16], [2013, 18], [2014, 10]] | 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": {"title": {"type": "string"}, "url": {"type": "string"}, "moderators": {"type": "array", "items": {}}, "date": {"type": "object", "properties": {"start": {"type": "string"}, "end": {"type": "string"}}, "required": ["start", "end"]}, "location": {"type": "string"}}, "required": ["title", "url", "moderators", "date", "location"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"title" : "Remote GDCR 2019 from Spain", "url" : "https://github.com/remote-code-retreat/code-retreat-2019", "moderators" : [], "date" : {"start" : "2019-11-16T09:00:00.000+01:00", "end" : "2019-11-16T14:00:00.000+01:00"}, "location" : "virtual"} | json_instruct | {"type": "object", "properties": {"title": {"type": "string"}, "url": {"type": "string"}, "moderators": {"type": "array", "items": {}}, "date": {"type": "object", "properties": {"start": {"type": "string"}, "end": {"type": "string"}}, "required": ["start", "end"]}, "location": {"type": "string"}}, "required": ["title", "url", "moderators", "date", "location"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"FinancialDetail": {"type": "array", "items": {"type": "string"}}, "Value": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}, "required": ["FinancialDetail", "Value"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"FinancialDetail" : ["Paid Up Capital", "Reserve and Surplus", "Total Equity", "Borrowings", "Current Liabilities", "Current Assets", "Total Assets", "Revenue", "Gross Profit", "Operating Profit", "Net Profit", "Shares Outstanding", "EPS", "Book Value", "ROE"], "Value" : [[267907.5, 267907.5, 255150.0, 255150.0, 255150.0], [8066.026, 11587.347, 17838.513, 16222.815, 11701.903], [275973.526, 279494.847, 272988.513, 271372.815, 266851.903], [228525.309, 230308.358, 233990.758, 240455.727, 269600.713], [15448.572, 16946.0, 16667.783, 21471.217, 15111.81], [60180.299, 63261.097, 55358.945, 60221.651, 73974.726], [504498.835, 509803.205, 206979.271, 511828.542, 536452.616], [45822.136, 35831.198, 18990.598, 85004.43, 65586.1], [0.0, 0.0, 0.0, 0.0, 0.0], [34762.932, 29651.346, 13501.407, 55596.884, 46914.388], [5272.159, 8793.48, 1615.698, 6350.694, 11701.903], [2679075.0, 2679075.0, 2551500.0, 2551500.0, 2551500.0], [4.02, 6.5645642619188, 2.5329382716049, 2.4890041152263, 6.1150450062055], [103.01075035227, 104.32512975561, 106.99138271605, 106.35814814815, 104.58628375465], [0.025471810413196, 0.062924093910039, 0.023674226907855, 0.023402100906828, 0.058468900382297]]} | json_instruct | {"type": "object", "properties": {"FinancialDetail": {"type": "array", "items": {"type": "string"}}, "Value": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}, "required": ["FinancialDetail", "Value"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"name": {"type": "string"}, "symbol": {"type": "string"}, "logoURI": {"type": "string"}, "decimals": {"type": "integer"}, "address": {"type": "string"}, "chainId": {"type": "integer"}, "extensions": {"type": "object", "properties": {"website": {"type": "string"}, "twitter": {"type": "string"}}, "required": ["website", "twitter"]}}, "required": ["name", "symbol", "logoURI", "decimals", "address", "chainId", "extensions"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "Pigeon Resistance DAO", "symbol" : "COO", "logoURI" : "https://raw.githubusercontent.com/pigeon-resistance/token-list/main/assets/mainnet/CooQi1ti8NompmbiNENsm1qicdEMqZau9G4FZg5V4bzh/logo.png", "decimals" : 9, "address" : "CooQi1ti8NompmbiNENsm1qicdEMqZau9G4FZg5V4bzh", "chainId" : 101, "extensions" : {"website" : "https://pigeonresistance.org", "twitter" : "https://twitter.com/pigeonresist"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "symbol": {"type": "string"}, "logoURI": {"type": "string"}, "decimals": {"type": "integer"}, "address": {"type": "string"}, "chainId": {"type": "integer"}, "extensions": {"type": "object", "properties": {"website": {"type": "string"}, "twitter": {"type": "string"}}, "required": ["website", "twitter"]}}, "required": ["name", "symbol", "logoURI", "decimals", "address", "chainId", "extensions"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"body": {"type": "string"}, "user": {"type": "string"}, "url": {"type": "string"}, "updated_at": {"type": "string"}, "created_at": {"type": "string"}, "closed_at": {"type": "string"}, "state": {"type": "string"}, "title": {"type": "string"}, "number": {"type": "integer"}, "milestone": {"type": "null"}, "labels": {"type": "array", "items": {"type": "string"}}, "id": {"type": "integer"}, "html_url": {"type": "string"}, "assignees": {"type": "array", "items": {}}, "comments": {"type": "integer"}}, "required": ["body", "user", "url", "updated_at", "created_at", "closed_at", "state", "title", "number", "milestone", "labels", "id", "html_url", "assignees", "comments"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"body" : "", "user" : "adamjstewart", "url" : "https://api.github.com/repos/spack/spack/issues/19504", "updated_at" : "2020-10-30 17:22:55", "created_at" : "2020-10-23 21:19:35", "closed_at" : "2020-10-30 17:22:54", "state" : "closed", "title" : "GDAL: add new version", "number" : 19504, "milestone" : null, "labels" : ["new-version"], "id" : 728530137, "html_url" : "https://github.com/spack/spack/pull/19504", "assignees" : [], "comments" : 0} | json_instruct | {"type": "object", "properties": {"body": {"type": "string"}, "user": {"type": "string"}, "url": {"type": "string"}, "updated_at": {"type": "string"}, "created_at": {"type": "string"}, "closed_at": {"type": "string"}, "state": {"type": "string"}, "title": {"type": "string"}, "number": {"type": "integer"}, "milestone": {"type": "null"}, "labels": {"type": "array", "items": {"type": "string"}}, "id": {"type": "integer"}, "html_url": {"type": "string"}, "assignees": {"type": "array", "items": {}}, "comments": {"type": "integer"}}, "required": ["body", "user", "url", "updated_at", "created_at", "closed_at", "state", "title", "number", "milestone", "labels", "id", "html_url", "assignees", "comments"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"author": {"type": "string"}, "project_name": {"type": "string"}, "copyright": {"type": "string"}, "copyright_year": {"type": "string"}}, "required": ["author", "project_name", "copyright", "copyright_year"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"author" : "Ankur Kesharwani", "project_name" : "WhatsUp", "copyright" : "Ankur Kesharwani", "copyright_year" : "2017"} | json_instruct | {"type": "object", "properties": {"author": {"type": "string"}, "project_name": {"type": "string"}, "copyright": {"type": "string"}, "copyright_year": {"type": "string"}}, "required": ["author", "project_name", "copyright", "copyright_year"], "$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"}, "rarity": {"type": "string"}, "type": {"type": "string"}, "subtypes": {"type": "array", "items": {}}, "cost": {"type": "integer"}, "power": {"type": "integer"}, "health": {"type": "integer"}, "set": {"type": "object", "properties": {"name": {"type": "string"}, "id": {"type": "string"}}, "required": ["name", "id"]}, "collectible": {"type": "boolean"}, "soulSummon": {"type": "integer"}, "soulTrap": {"type": "integer"}, "text": {"type": "string"}, "attributes": {"type": "array", "items": {"type": "string"}}, "keywords": {"type": "array", "items": {"type": "string"}}, "unique": {"type": "boolean"}, "imageUrl": {"type": "string"}, "id": {"type": "string"}, "code": {"type": "string"}}, "required": ["name", "rarity", "type", "subtypes", "cost", "power", "health", "set", "collectible", "soulSummon", "soulTrap", "text", "attributes", "keywords", "unique", "imageUrl", "id", "code"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "Treasure Map", "rarity" : "Rare", "type" : "Item", "subtypes" : [], "cost" : 3, "power" : -1, "health" : -1, "set" : {"name" : "Return to Clockwork City", "id" : "rcc"}, "collectible" : true, "soulSummon" : 100, "soulTrap" : 20, "text" : "+1/+1. Summon: Draw a card. If the wielder has Treasure Hunt, draw something they are hunting for instead.", "attributes" : ["Neutral"], "keywords" : ["Treasure Hunt"], "unique" : false, "imageUrl" : "https://www.legends-decks.com/img_cards/treasuremap.png", "id" : "b722b83e-a170-559b-8c88-b02170667f53", "code" : "qL"} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "rarity": {"type": "string"}, "type": {"type": "string"}, "subtypes": {"type": "array", "items": {}}, "cost": {"type": "integer"}, "power": {"type": "integer"}, "health": {"type": "integer"}, "set": {"type": "object", "properties": {"name": {"type": "string"}, "id": {"type": "string"}}, "required": ["name", "id"]}, "collectible": {"type": "boolean"}, "soulSummon": {"type": "integer"}, "soulTrap": {"type": "integer"}, "text": {"type": "string"}, "attributes": {"type": "array", "items": {"type": "string"}}, "keywords": {"type": "array", "items": {"type": "string"}}, "unique": {"type": "boolean"}, "imageUrl": {"type": "string"}, "id": {"type": "string"}, "code": {"type": "string"}}, "required": ["name", "rarity", "type", "subtypes", "cost", "power", "health", "set", "collectible", "soulSummon", "soulTrap", "text", "attributes", "keywords", "unique", "imageUrl", "id", "code"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"name": {"type": "string"}, "born": {"type": "string"}, "born_place": {"type": "string"}, "died": {"type": "string"}, "died_place": {"type": "string"}, "summary": {"type": "string"}, "link": {"type": "string"}}, "required": ["name", "born", "born_place", "died", "died_place", "summary", "link"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "Edmund Georg Hermann Landau", "born" : "14 Feb 1877", "born_place" : "Berlin, Germany", "died" : "19 Feb 1938", "died_place" : "Berlin, Germany", "summary" : "Landau gave the first systematic presentation of analytic number theory and wrote important works on the theory of analytic functions of a single variable.", "link" : "https://mathshistory.st-andrews.ac.uk/Biographies/Landau/"} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "born": {"type": "string"}, "born_place": {"type": "string"}, "died": {"type": "string"}, "died_place": {"type": "string"}, "summary": {"type": "string"}, "link": {"type": "string"}}, "required": ["name", "born", "born_place", "died", "died_place", "summary", "link"], "$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": {"subject": {"type": "string"}, "catalog_nbr": {"type": "integer"}, "section": {"type": "integer"}, "class_nbr": {"type": "integer"}, "title": {"type": "string"}, "component": {"type": "string"}, "units": {"type": "integer"}, "bldg": {"type": "string"}, "room": {"type": "string"}, "days": {"type": "string"}, "time": {"type": "string"}, "instructor": {"type": "string"}, "load": {"type": "string"}, "rank": {"type": "string"}, "attributes": {"type": "null"}, "enrl_cap": {"type": "integer"}, "enrl_tot": {"type": "integer"}, "wait_cap": {"type": "integer"}, "wait_tot": {"type": "integer"}, "prereqs": {"type": "null"}, "rmp": {"type": "null"}}, "required": ["subject", "catalog_nbr", "section", "class_nbr", "title", "component", "units", "bldg", "room", "days", "time", "instructor", "load", "rank", "attributes", "enrl_cap", "enrl_tot", "wait_cap", "wait_tot", "prereqs", "rmp"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"subject" : "MTEC", "catalog_nbr" : 302, "section" : 1, "class_nbr" : 16707, "title" : "HOSP INTERVENTION & SURG CARE Clinical", "component" : "1 - 15", "units" : 0, "bldg" : "TBA", "room" : "TBA", "days" : "TBA", "time" : "TBA", "instructor" : "Shook,Cordelia M", "load" : "100", "rank" : "PROX", "attributes" : null, "enrl_cap" : 999, "enrl_tot" : 0, "wait_cap" : 0, "wait_tot" : 0, "prereqs" : null, "rmp" : null}, {"subject" : "MTEC", "catalog_nbr" : 302, "section" : 3, "class_nbr" : 16708, "title" : "HOSP INTERVENTION & SURG CARE Clinical", "component" : "1 - 15", "units" : 0, "bldg" : "TBA", "room" : "TBA", "days" : "TBA", "time" : "TBA", "instructor" : "Shook,Cordelia M", "load" : "100", "rank" : "PROX", "attributes" : null, "enrl_cap" : 999, "enrl_tot" : 0, "wait_cap" : 0, "wait_tot" : 0, "prereqs" : null, "rmp" : null}, {"subject" : "MTEC", "catalog_nbr" : 302, "section" : 1, "class_nbr" : 16477, "title" : "HOSP INTERVENTION & SURG CARE Clinical", "component" : "1 - 15", "units" : 0, "bldg" : "TBA", "room" : "TBA", "days" : "TBA", "time" : "TBA", "instructor" : "Shook,Cordelia M", "load" : "100", "rank" : "PROX", "attributes" : null, "enrl_cap" : 999, "enrl_tot" : 42, "wait_cap" : 0, "wait_tot" : 0, "prereqs" : null, "rmp" : null}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"subject": {"type": "string"}, "catalog_nbr": {"type": "integer"}, "section": {"type": "integer"}, "class_nbr": {"type": "integer"}, "title": {"type": "string"}, "component": {"type": "string"}, "units": {"type": "integer"}, "bldg": {"type": "string"}, "room": {"type": "string"}, "days": {"type": "string"}, "time": {"type": "string"}, "instructor": {"type": "string"}, "load": {"type": "string"}, "rank": {"type": "string"}, "attributes": {"type": "null"}, "enrl_cap": {"type": "integer"}, "enrl_tot": {"type": "integer"}, "wait_cap": {"type": "integer"}, "wait_tot": {"type": "integer"}, "prereqs": {"type": "null"}, "rmp": {"type": "null"}}, "required": ["subject", "catalog_nbr", "section", "class_nbr", "title", "component", "units", "bldg", "room", "days", "time", "instructor", "load", "rank", "attributes", "enrl_cap", "enrl_tot", "wait_cap", "wait_tot", "prereqs", "rmp"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"Spase": {"type": "object", "properties": {"xmlns:xsi": {"type": "string"}, "xmlns": {"type": "string"}, "xsi:schemaLocation": {"type": "string"}, "Version": {"type": "string"}, "Instrument": {"type": "object", "properties": {"ResourceID": {"type": "string"}, "ResourceHeader": {"type": "object", "properties": {"ResourceName": {"type": "string"}, "AlternateName": {"type": "array", "items": {"type": "string"}}, "ReleaseDate": {"type": "string"}, "Description": {"type": "string"}, "Contact": {"type": "object", "properties": {"PersonID": {"type": "string"}, "Role": {"type": "string"}}, "required": ["PersonID", "Role"]}, "InformationURL": {"type": "object", "properties": {"Name": {"type": "string"}, "URL": {"type": "string"}, "Description": {"type": "string"}}, "required": ["Name", "URL", "Description"]}}, "required": ["ResourceName", "AlternateName", "ReleaseDate", "Description", "Contact", "InformationURL"]}, "InstrumentType": {"type": "string"}, "InvestigationName": {"type": "string"}, "ObservatoryID": {"type": "string"}}, "required": ["ResourceID", "ResourceHeader", "InstrumentType", "InvestigationName", "ObservatoryID"]}}, "required": ["xmlns:xsi", "xmlns", "xsi:schemaLocation", "Version", "Instrument"]}}, "required": ["Spase"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"Spase" : {"xmlns:xsi" : "http://www.w3.org/2001/XMLSchema-instance", "xmlns" : "http://www.spase-group.org/data/schema", "xsi:schemaLocation" : "http://www.spase-group.org/data/schema http://www.spase-group.org/data/schema/spase-2_0_0.xsd", "Version" : "2.0.0", "Instrument" : {"ResourceID" : "spase://SMWG/Instrument/Ulysses/DUST", "ResourceHeader" : {"ResourceName" : "Cosmic Dust (GRU/DUST)", "AlternateName" : ["DUST", "GRU"], "ReleaseDate" : "2019-05-05T12:34:56Z", "Description" : "The objectives of this investigation are to study particulate matter with masses between 5.E-19 and 5.E-10 g in the heliosphere; to determine its physical and dynamical properties as a function of ecliptic latitude and heliocentric distance; and to investigate its interaction with other interplanetary/interstellar phenomena such as solar radiation, solar wind, heliospheric magnetic field, and interstellar neutral gas. The instrument is a multicoincidence plasma impact detector which measures mass, speed, flight direction and electric charge of individual dust particles. The instrument has a mass of 3.75 kg and uses 2.0 W of power. The data rate in 8 bps.", "Contact" : {"PersonID" : "spase://SMWG/Person/Eberhard.Grun", "Role" : "PrincipalInvestigator"}, "InformationURL" : {"Name" : "NSSDC's Master Catalog", "URL" : "https://nssdc.gsfc.nasa.gov/nmc/experiment/display.action?id=1990-090B&ex=7", "Description" : "Information about the Cosmic Dust (GRU/DUST) experiment on the Ulysses mission."}}, "InstrumentType" : "DustDetector", "InvestigationName" : "Cosmic Dust (GRU/DUST) on Ulysses", "ObservatoryID" : "spase://SMWG/Observatory/Ulysses"}}} | json_instruct | {"type": "object", "properties": {"Spase": {"type": "object", "properties": {"xmlns:xsi": {"type": "string"}, "xmlns": {"type": "string"}, "xsi:schemaLocation": {"type": "string"}, "Version": {"type": "string"}, "Instrument": {"type": "object", "properties": {"ResourceID": {"type": "string"}, "ResourceHeader": {"type": "object", "properties": {"ResourceName": {"type": "string"}, "AlternateName": {"type": "array", "items": {"type": "string"}}, "ReleaseDate": {"type": "string"}, "Description": {"type": "string"}, "Contact": {"type": "object", "properties": {"PersonID": {"type": "string"}, "Role": {"type": "string"}}, "required": ["PersonID", "Role"]}, "InformationURL": {"type": "object", "properties": {"Name": {"type": "string"}, "URL": {"type": "string"}, "Description": {"type": "string"}}, "required": ["Name", "URL", "Description"]}}, "required": ["ResourceName", "AlternateName", "ReleaseDate", "Description", "Contact", "InformationURL"]}, "InstrumentType": {"type": "string"}, "InvestigationName": {"type": "string"}, "ObservatoryID": {"type": "string"}}, "required": ["ResourceID", "ResourceHeader", "InstrumentType", "InvestigationName", "ObservatoryID"]}}, "required": ["xmlns:xsi", "xmlns", "xsi:schemaLocation", "Version", "Instrument"]}}, "required": ["Spase"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"place_name": {"type": "string"}, "state_name": {"type": "string"}, "state_abbrv": {"type": "string"}, "lat": {"type": "string"}, "long": {"type": "string"}}, "required": ["place_name", "state_name", "state_abbrv", "lat", "long"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"place_name" : "Gualala", "state_name" : "California", "state_abbrv" : "CA", "lat" : "38.8251", "long" : "-123.5399"} | json_instruct | {"type": "object", "properties": {"place_name": {"type": "string"}, "state_name": {"type": "string"}, "state_abbrv": {"type": "string"}, "lat": {"type": "string"}, "long": {"type": "string"}}, "required": ["place_name", "state_name", "state_abbrv", "lat", "long"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "type": {"type": "string"}, "scripts": {"type": "object", "properties": {"dev": {"type": "string"}, "build": {"type": "string"}, "serve": {"type": "string"}, "tauri": {"type": "string"}}, "required": ["dev", "build", "serve", "tauri"]}, "dependencies": {"type": "object", "properties": {"@tauri-apps/api": {"type": "string"}, "hotkeys-js": {"type": "string"}}, "required": ["@tauri-apps/api", "hotkeys-js"]}, "devDependencies": {"type": "object", "properties": {"svelte": {"type": "string"}, "@sveltejs/vite-plugin-svelte": {"type": "string"}, "vite": {"type": "string"}}, "required": ["svelte", "@sveltejs/vite-plugin-svelte", "vite"]}}, "required": ["name", "version", "type", "scripts", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "svelte-app", "version" : "1.0.0", "type" : "module", "scripts" : {"dev" : "vite --clearScreen false --port 5000", "build" : "vite build", "serve" : "vite preview", "tauri" : "node ../../tooling/cli/node/tauri.js"}, "dependencies" : {"@tauri-apps/api" : "../../tooling/api/dist", "hotkeys-js" : "^3.8.5"}, "devDependencies" : {"svelte" : "3.35.0", "@sveltejs/vite-plugin-svelte" : "^1.0.0-next.11", "vite" : "^2.6.4"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "type": {"type": "string"}, "scripts": {"type": "object", "properties": {"dev": {"type": "string"}, "build": {"type": "string"}, "serve": {"type": "string"}, "tauri": {"type": "string"}}, "required": ["dev", "build", "serve", "tauri"]}, "dependencies": {"type": "object", "properties": {"@tauri-apps/api": {"type": "string"}, "hotkeys-js": {"type": "string"}}, "required": ["@tauri-apps/api", "hotkeys-js"]}, "devDependencies": {"type": "object", "properties": {"svelte": {"type": "string"}, "@sveltejs/vite-plugin-svelte": {"type": "string"}, "vite": {"type": "string"}}, "required": ["svelte", "@sveltejs/vite-plugin-svelte", "vite"]}}, "required": ["name", "version", "type", "scripts", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"title": {"type": "string"}, "author": {"type": "string"}, "description": {"type": "string"}, "thumb": {"type": "string"}, "download": {"type": "string"}, "origin": {"type": "string"}}, "required": ["title", "author", "description", "thumb", "download", "origin"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"title" : "Toko Bubblegum", "author" : "Thiridian", "description" : "NULL", "thumb" : "//i.iwara.tv/sites/default/files/styles/thumbnail/public/video_embed_field_thumbnails/youtube/0hVJNq2n96E.jpg?itok=sKXhhJpN", "download" : "https://www.iwara.tv/api/video/p35z3snqjjhogjvgv", "origin" : "https://www.iwara.tv/videos/p35z3snqjjhogjvgv"} | json_instruct | {"type": "object", "properties": {"title": {"type": "string"}, "author": {"type": "string"}, "description": {"type": "string"}, "thumb": {"type": "string"}, "download": {"type": "string"}, "origin": {"type": "string"}}, "required": ["title", "author", "description", "thumb", "download", "origin"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"type": {"type": "string"}, "objects": {"type": "object", "properties": {"E01000602": {"type": "object", "properties": {"type": {"type": "string"}, "crs": {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"]}}, "required": ["type", "properties"]}, "geometries": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"OA11CD": {"type": "string"}, "LAD11CD": {"type": "string"}}, "required": ["OA11CD", "LAD11CD"]}, "arcs": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}}, "required": ["type", "properties", "arcs"]}}}, "required": ["type", "crs", "geometries"]}}, "required": ["E01000602"]}, "arcs": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}}, "transform": {"type": "object", "properties": {"scale": {"type": "array", "items": {"type": "number"}}, "translate": {"type": "array", "items": {"type": "number"}}}, "required": ["scale", "translate"]}}, "required": ["type", "objects", "arcs", "transform"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"type" : "Topology", "objects" : {"E01000602" : {"type" : "GeometryCollection", "crs" : {"type" : "name", "properties" : {"name" : "urn:ogc:def:crs:OGC:1.3:CRS84"}}, "geometries" : [{"type" : "Polygon", "properties" : {"OA11CD" : "E00002887", "LAD11CD" : "E09000005"}, "arcs" : [[0, 1, 2, 3]]}, {"type" : "Polygon", "properties" : {"OA11CD" : "E00002902", "LAD11CD" : "E09000005"}, "arcs" : [[4, 5, -3, 6]]}, {"type" : "Polygon", "properties" : {"OA11CD" : "E00002904", "LAD11CD" : "E09000005"}, "arcs" : [[-1, 7]]}, {"type" : "Polygon", "properties" : {"OA11CD" : "E00002906", "LAD11CD" : "E09000005"}, "arcs" : [[8, -5]]}]}}, "arcs" : [[[9752, 5809], [-755, -1076], [-30, 486], [-2387, -472], [678, -1032], [-665, -134]], [[6593, 3581], [-887, -197], [-317, -876], [-271, 2200]], [[5118, 4708], [251, 2811], [1586, 153]], [[6955, 7672], [2714, -37], [207, -896], [-124, -930]], [[4391, 4562], [73, 3443]], [[4464, 8005], [1817, 521], [-244, 1339], [376, 134], [542, -2327]], [[5118, 4708], [-727, -146]], [[9752, 5809], [247, -1392], [-41, -367], [-536, 13], [-581, -1143], [193, -1437], [-1306, -1483], [-573, 1220], [93, 1568], [-655, 793]], [[4391, 4562], [-912, -218], [130, -658], [96, -936], [-3705, -567], [305, 1503], [3556, 4929], [567, -31], [36, -579]]], "transform" : {"scale" : [8.29106774669668e-07, 4.6265412729827425e-07], "translate" : [-0.269201258841563, 51.549045767759715]}} | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "objects": {"type": "object", "properties": {"E01000602": {"type": "object", "properties": {"type": {"type": "string"}, "crs": {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"]}}, "required": ["type", "properties"]}, "geometries": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"OA11CD": {"type": "string"}, "LAD11CD": {"type": "string"}}, "required": ["OA11CD", "LAD11CD"]}, "arcs": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}}, "required": ["type", "properties", "arcs"]}}}, "required": ["type", "crs", "geometries"]}}, "required": ["E01000602"]}, "arcs": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}}, "transform": {"type": "object", "properties": {"scale": {"type": "array", "items": {"type": "number"}}, "translate": {"type": "array", "items": {"type": "number"}}}, "required": ["scale", "translate"]}}, "required": ["type", "objects", "arcs", "transform"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"unversionedId": {"type": "string"}, "id": {"type": "string"}, "title": {"type": "string"}, "description": {"type": "string"}, "source": {"type": "string"}, "sourceDirName": {"type": "string"}, "slug": {"type": "string"}, "permalink": {"type": "string"}, "editUrl": {"type": "string"}, "tags": {"type": "array", "items": {}}, "version": {"type": "string"}, "sidebarPosition": {"type": "integer"}, "frontMatter": {"type": "object", "properties": {"sidebar_position": {"type": "integer"}}, "required": ["sidebar_position"]}, "sidebar": {"type": "string"}, "previous": {"type": "object", "properties": {"title": {"type": "string"}, "permalink": {"type": "string"}}, "required": ["title", "permalink"]}, "next": {"type": "object", "properties": {"title": {"type": "string"}, "permalink": {"type": "string"}}, "required": ["title", "permalink"]}}, "required": ["unversionedId", "id", "title", "description", "source", "sourceDirName", "slug", "permalink", "editUrl", "tags", "version", "sidebarPosition", "frontMatter", "sidebar", "previous", "next"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"unversionedId" : "01features/02scheduler", "id" : "01features/02scheduler", "title" : "HwameiStor Scheduler", "description" : "The Scheduler is one of important components of the HwameiStor. It is to automatically schedule the Pod to the correct node which has the associated HwameiStor volume. With the scheduler, the Pod doesn't have to has the NodeAffinity or NodeSelector field to select the node. A scheduler will work for both LVM and Disk volumes.", "source" : "@site/docs/01features/02scheduler.md", "sourceDirName" : "01features", "slug" : "/01features/02scheduler", "permalink" : "/docs/01features/02scheduler", "editUrl" : "https://github.com/facebook/docusaurus/tree/main/packages/create-docusaurus/templates/shared/docs/01features/02scheduler.md", "tags" : [], "version" : "current", "sidebarPosition" : 3, "frontMatter" : {"sidebar_position" : 3}, "sidebar" : "tutorialSidebar", "previous" : {"title" : "Local Disk Manager (LDM)", "permalink" : "/docs/01features/01local-disk-manager"}, "next" : {"title" : "DRBD installer", "permalink" : "/docs/01features/03DRBD"}} | json_instruct | {"type": "object", "properties": {"unversionedId": {"type": "string"}, "id": {"type": "string"}, "title": {"type": "string"}, "description": {"type": "string"}, "source": {"type": "string"}, "sourceDirName": {"type": "string"}, "slug": {"type": "string"}, "permalink": {"type": "string"}, "editUrl": {"type": "string"}, "tags": {"type": "array", "items": {}}, "version": {"type": "string"}, "sidebarPosition": {"type": "integer"}, "frontMatter": {"type": "object", "properties": {"sidebar_position": {"type": "integer"}}, "required": ["sidebar_position"]}, "sidebar": {"type": "string"}, "previous": {"type": "object", "properties": {"title": {"type": "string"}, "permalink": {"type": "string"}}, "required": ["title", "permalink"]}, "next": {"type": "object", "properties": {"title": {"type": "string"}, "permalink": {"type": "string"}}, "required": ["title", "permalink"]}}, "required": ["unversionedId", "id", "title", "description", "source", "sourceDirName", "slug", "permalink", "editUrl", "tags", "version", "sidebarPosition", "frontMatter", "sidebar", "previous", "next"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"word" : "auriscalp", "definition" : "An earpick."} | json_instruct | {"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$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": "integer"}, "gempId": {"type": "string"}, "side": {"type": "string"}, "rarity": {"type": "string"}, "set": {"type": "string"}, "printings": {"type": "array", "items": {"type": "object", "properties": {"set": {"type": "string"}}, "required": ["set"]}}, "front": {"type": "object", "properties": {"title": {"type": "string"}, "imageUrl": {"type": "string"}, "type": {"type": "string"}, "uniqueness": {"type": "string"}, "destiny": {"type": "string"}, "gametext": {"type": "string"}, "lore": {"type": "string"}}, "required": ["title", "imageUrl", "type", "uniqueness", "destiny", "gametext", "lore"]}, "pulls": {"type": "array", "items": {"type": "string"}}, "pulledBy": {"type": "array", "items": {"type": "string"}}, "legacy": {"type": "boolean"}}, "required": ["id", "gempId", "side", "rarity", "set", "printings", "front", "pulls", "pulledBy", "legacy"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"id" : 2793, "gempId" : "8_133", "side" : "Dark", "rarity" : "R", "set" : "8", "printings" : [{"set" : "8"}], "front" : {"title" : "\u2022Well-earned Command", "imageUrl" : "https://res.starwarsccg.org/cards/Endor-Dark/large/wellearnedcommand.gif", "type" : "Effect", "uniqueness" : "*", "destiny" : "4", "gametext" : "Deploy on your general or commander. When battling, adds 1 to your total battle destiny (or 2 if Igar). Once during each of your control phases, may take one Imperial Propaganda into hand from Reserve Deck; reshuffle. Your Force drains are +1 at holosites.", "lore" : "Imperial officers often simulate large-scale battles with hologram games to improve their tactical ability. Those who excel at these games often mark themselves for advancement."}, "pulls" : ["Imperial Propaganda"], "pulledBy" : ["Twi'lek Advisor", "We Must Accelerate Our Plans", "You Cannot Hide Forever", "You Cannot Hide Forever & Mobilization Points"], "legacy" : false}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "gempId": {"type": "string"}, "side": {"type": "string"}, "rarity": {"type": "string"}, "set": {"type": "string"}, "printings": {"type": "array", "items": {"type": "object", "properties": {"set": {"type": "string"}}, "required": ["set"]}}, "front": {"type": "object", "properties": {"title": {"type": "string"}, "imageUrl": {"type": "string"}, "type": {"type": "string"}, "uniqueness": {"type": "string"}, "destiny": {"type": "string"}, "gametext": {"type": "string"}, "lore": {"type": "string"}}, "required": ["title", "imageUrl", "type", "uniqueness", "destiny", "gametext", "lore"]}, "pulls": {"type": "array", "items": {"type": "string"}}, "pulledBy": {"type": "array", "items": {"type": "string"}}, "legacy": {"type": "boolean"}}, "required": ["id", "gempId", "side", "rarity", "set", "printings", "front", "pulls", "pulledBy", "legacy"]}, "$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" : "88760", "place_name" : "La Laguna", "place_type" : "Colonia", "county" : "Reynosa", "state" : "Tamaulipas", "city" : "Reynosa"}, {"postal_code" : "88760", "place_name" : "Azteca", "place_type" : "Colonia", "county" : "Reynosa", "state" : "Tamaulipas", "city" : "Reynosa"}, {"postal_code" : "88760", "place_name" : "El Anhelo", "place_type" : "Colonia", "county" : "Reynosa", "state" : "Tamaulipas", "city" : "Reynosa"}, {"postal_code" : "88760", "place_name" : "El Porvenir", "place_type" : "Ejido", "county" : "Reynosa", "state" : "Tamaulipas", "city" : "Reynosa"}, {"postal_code" : "88760", "place_name" : "L\u00e1zaro C\u00e1rdenas", "place_type" : "Colonia", "county" : "Reynosa", "state" : "Tamaulipas", "city" : "Reynosa"}, {"postal_code" : "88760", "place_name" : "Ejido la Escondida", "place_type" : "Colonia", "county" : "Reynosa", "state" : "Tamaulipas", "city" : "Reynosa"}] | 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#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"files.associations": {"type": "object", "properties": {"Antecessor e Sucessor.C": {"type": "string"}, "Boas vindas.C": {"type": "string"}, "Conversor Celsius para Fahrenheit.C": {"type": "string"}, "Conversor de reais para dolares.C": {"type": "string"}, "Metade de um N\u00famero.C": {"type": "string"}, "Numero de acertos.C": {"type": "string"}, "Quadrado de um numero.C": {"type": "string"}, "Salario.C": {"type": "string"}, "Soma de 3 numeros.C": {"type": "string"}, "Troca de Valores.C": {"type": "string"}}, "required": ["Antecessor e Sucessor.C", "Boas vindas.C", "Conversor Celsius para Fahrenheit.C", "Conversor de reais para dolares.C", "Metade de um N\u00famero.C", "Numero de acertos.C", "Quadrado de um numero.C", "Salario.C", "Soma de 3 numeros.C", "Troca de Valores.C"]}, "C_Cpp.errorSquiggles": {"type": "string"}}, "required": ["files.associations", "C_Cpp.errorSquiggles"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"files.associations" : {"Antecessor e Sucessor.C" : "cpp", "Boas vindas.C" : "cpp", "Conversor Celsius para Fahrenheit.C" : "cpp", "Conversor de reais para dolares.C" : "cpp", "Metade de um N\u00famero.C" : "cpp", "Numero de acertos.C" : "cpp", "Quadrado de um numero.C" : "cpp", "Salario.C" : "cpp", "Soma de 3 numeros.C" : "cpp", "Troca de Valores.C" : "cpp"}, "C_Cpp.errorSquiggles" : "Disabled"} | json_instruct | {"type": "object", "properties": {"files.associations": {"type": "object", "properties": {"Antecessor e Sucessor.C": {"type": "string"}, "Boas vindas.C": {"type": "string"}, "Conversor Celsius para Fahrenheit.C": {"type": "string"}, "Conversor de reais para dolares.C": {"type": "string"}, "Metade de um N\u00famero.C": {"type": "string"}, "Numero de acertos.C": {"type": "string"}, "Quadrado de um numero.C": {"type": "string"}, "Salario.C": {"type": "string"}, "Soma de 3 numeros.C": {"type": "string"}, "Troca de Valores.C": {"type": "string"}}, "required": ["Antecessor e Sucessor.C", "Boas vindas.C", "Conversor Celsius para Fahrenheit.C", "Conversor de reais para dolares.C", "Metade de um N\u00famero.C", "Numero de acertos.C", "Quadrado de um numero.C", "Salario.C", "Soma de 3 numeros.C", "Troca de Valores.C"]}, "C_Cpp.errorSquiggles": {"type": "string"}}, "required": ["files.associations", "C_Cpp.errorSquiggles"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"libraries": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"]}}}, "required": ["libraries"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"libraries" : [{"name" : "AACECoreAndroid"}]} | json_instruct | {"type": "object", "properties": {"libraries": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"]}}}, "required": ["libraries"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"iamRole": {"type": "string"}, "publicIPAction": {"type": "string"}, "securityGroupIDs": {"type": "array", "items": {"type": "string"}}, "instanceType": {"type": "string"}, "subnetIDs": {"type": "array", "items": {"type": "string"}}, "disks": {"type": "array", "items": {"type": "object", "properties": {"iops": {"type": "integer"}, "type": {"type": "string"}, "name": {"type": "string"}}, "required": ["iops", "type", "name"]}}, "privateIPAction": {"type": "string"}, "staticIPActions": {"type": "string"}}, "required": ["iamRole", "publicIPAction", "securityGroupIDs", "instanceType", "subnetIDs", "disks", "privateIPAction", "staticIPActions"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"iamRole" : "", "publicIPAction" : "AS_SUBNET", "securityGroupIDs" : [""], "instanceType" : "t3.micro", "subnetIDs" : [""], "disks" : [{"iops" : 0, "type" : "SSD", "name" : "c:0"}], "privateIPAction" : "USE_NETWORK_INTERFACE", "staticIPActions" : "DONT_CREATE"} | json_instruct | {"type": "object", "properties": {"iamRole": {"type": "string"}, "publicIPAction": {"type": "string"}, "securityGroupIDs": {"type": "array", "items": {"type": "string"}}, "instanceType": {"type": "string"}, "subnetIDs": {"type": "array", "items": {"type": "string"}}, "disks": {"type": "array", "items": {"type": "object", "properties": {"iops": {"type": "integer"}, "type": {"type": "string"}, "name": {"type": "string"}}, "required": ["iops", "type", "name"]}}, "privateIPAction": {"type": "string"}, "staticIPActions": {"type": "string"}}, "required": ["iamRole", "publicIPAction", "securityGroupIDs", "instanceType", "subnetIDs", "disks", "privateIPAction", "staticIPActions"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"//": {"type": "string"}, "BEGIN": {"type": "string"}, "navigate": {"type": "object", "properties": {"TYPE": {"type": "string"}, "modelName": {"type": "string"}, "contextData": {"type": "string"}, "VIEWS": {"type": "object", "properties": {"menuTarget": {"type": "object", "properties": {"id": {"type": "string"}, "transition": {"type": "string"}}, "required": ["id", "transition"]}}, "required": ["menuTarget"]}}, "required": ["TYPE", "modelName", "contextData", "VIEWS"]}}, "required": ["//", "BEGIN", "navigate"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"//" : "Makes the root NavContainer navigate to the view that is specified in the list item context of the specified model.", "BEGIN" : "navigate", "navigate" : {"TYPE" : "pks.ui5strap.task.NavigateTask", "modelName" : "menu", "contextData" : "= event.parameters.listItem.getBindingContextData(.modelName)", "VIEWS" : {"menuTarget" : {"id" : "= .contextData.id", "transition" : "slide-rtl"}}}} | json_instruct | {"type": "object", "properties": {"//": {"type": "string"}, "BEGIN": {"type": "string"}, "navigate": {"type": "object", "properties": {"TYPE": {"type": "string"}, "modelName": {"type": "string"}, "contextData": {"type": "string"}, "VIEWS": {"type": "object", "properties": {"menuTarget": {"type": "object", "properties": {"id": {"type": "string"}, "transition": {"type": "string"}}, "required": ["id", "transition"]}}, "required": ["menuTarget"]}}, "required": ["TYPE", "modelName", "contextData", "VIEWS"]}}, "required": ["//", "BEGIN", "navigate"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "array", "items": {"type": "object", "properties": {"package": {"type": "string"}, "downloads": {"type": "integer"}, "count": {"type": "integer"}}, "required": ["package", "downloads", "count"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"package" : "aodp", "downloads" : 1100, "count" : 988}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"package": {"type": "string"}, "downloads": {"type": "integer"}, "count": {"type": "integer"}}, "required": ["package", "downloads", "count"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"dashboard": {"type": "string"}, "charts": {"type": "string"}, "tables": {"type": "string"}, "forms": {"type": "string"}, "boostrapElement": {"type": "string"}, "boostrapGrid": {"type": "string"}, "component": {"type": "string"}, "menu": {"type": "string"}, "submenu": {"type": "string"}, "blankpage": {"type": "string"}, "moretheme": {"type": "string"}, "downloadNow": {"type": "string"}, "language": {"type": "string"}}, "required": ["dashboard", "charts", "tables", "forms", "boostrapElement", "boostrapGrid", "component", "menu", "submenu", "blankpage", "moretheme", "downloadNow", "language"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"dashboard" : "Dashboard", "charts" : "Charts", "tables" : "Tables", "forms" : "Forms", "boostrapElement" : "Boostrap Element", "boostrapGrid" : "Boostrap Grid", "component" : "Component", "menu" : "Menu", "submenu" : "Submenu", "blankpage" : "Blank Page", "moretheme" : "More Themes", "downloadNow" : "Download Now", "language" : "Language"} | json_instruct | {"type": "object", "properties": {"dashboard": {"type": "string"}, "charts": {"type": "string"}, "tables": {"type": "string"}, "forms": {"type": "string"}, "boostrapElement": {"type": "string"}, "boostrapGrid": {"type": "string"}, "component": {"type": "string"}, "menu": {"type": "string"}, "submenu": {"type": "string"}, "blankpage": {"type": "string"}, "moretheme": {"type": "string"}, "downloadNow": {"type": "string"}, "language": {"type": "string"}}, "required": ["dashboard", "charts", "tables", "forms", "boostrapElement", "boostrapGrid", "component", "menu", "submenu", "blankpage", "moretheme", "downloadNow", "language"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"name": {"type": "string"}, "private": {"type": "boolean"}, "devDependencies": {"type": "object", "properties": {"@types/react": {"type": "string"}, "@types/react-dom": {"type": "string"}, "gatsby": {"type": "string"}, "lerna": {"type": "string"}, "react": {"type": "string"}, "react-dom": {"type": "string"}, "tsdx": {"type": "string"}, "typescript": {"type": "string"}}, "required": ["@types/react", "@types/react-dom", "gatsby", "lerna", "react", "react-dom", "tsdx", "typescript"]}, "workspaces": {"type": "array", "items": {"type": "string"}}, "scripts": {"type": "object", "properties": {"lerna": {"type": "string"}, "demo:clean": {"type": "string"}, "dev": {"type": "string"}, "demo:build": {"type": "string"}, "test": {"type": "string"}, "lint": {"type": "string"}, "build": {"type": "string"}, "prepublish": {"type": "string"}, "start:app": {"type": "string"}}, "required": ["lerna", "demo:clean", "dev", "demo:build", "test", "lint", "build", "prepublish", "start:app"]}, "version": {"type": "null"}}, "required": ["name", "private", "devDependencies", "workspaces", "scripts", "version"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "gatsby-project-kb", "private" : true, "devDependencies" : {"@types/react" : "^17.0.0", "@types/react-dom" : "^17.0.0", "gatsby" : "^3.0.0", "lerna" : "^4.0.0", "react" : "^17.0.0", "react-dom" : "^17.0.0", "tsdx" : "^0.14.1", "typescript" : "^4.1.2"}, "workspaces" : ["packages/*", "demo"], "scripts" : {"lerna" : "lerna", "demo:clean" : "yarn workspace demo clean", "dev" : "yarn workspace demo develop", "demo:build" : "NODE_ENV=production yarn workspace demo build", "test" : "lerna run test --", "lint" : "lerna run lint -- --fix", "build" : "yarn demo:build", "prepublish" : "lerna run prepublish", "start:app" : "yarn run build && yarn --cwd example && yarn --cwd example start"}, "version" : null} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "private": {"type": "boolean"}, "devDependencies": {"type": "object", "properties": {"@types/react": {"type": "string"}, "@types/react-dom": {"type": "string"}, "gatsby": {"type": "string"}, "lerna": {"type": "string"}, "react": {"type": "string"}, "react-dom": {"type": "string"}, "tsdx": {"type": "string"}, "typescript": {"type": "string"}}, "required": ["@types/react", "@types/react-dom", "gatsby", "lerna", "react", "react-dom", "tsdx", "typescript"]}, "workspaces": {"type": "array", "items": {"type": "string"}}, "scripts": {"type": "object", "properties": {"lerna": {"type": "string"}, "demo:clean": {"type": "string"}, "dev": {"type": "string"}, "demo:build": {"type": "string"}, "test": {"type": "string"}, "lint": {"type": "string"}, "build": {"type": "string"}, "prepublish": {"type": "string"}, "start:app": {"type": "string"}}, "required": ["lerna", "demo:clean", "dev", "demo:build", "test", "lint", "build", "prepublish", "start:app"]}, "version": {"type": "null"}}, "required": ["name", "private", "devDependencies", "workspaces", "scripts", "version"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"nom": {"type": "string"}, "dpt": {"type": "string"}, "inscrits": {"type": "integer"}, "abs": {"type": "integer"}, "votants": {"type": "integer"}, "blancs": {"type": "integer"}, "nuls": {"type": "integer"}, "exp": {"type": "integer"}, "res": {"type": "array", "items": {"type": "object", "properties": {"panneau": {"type": "string"}, "voix": {"type": "integer"}}, "required": ["panneau", "voix"]}}}, "required": ["nom", "dpt", "inscrits", "abs", "votants", "blancs", "nuls", "exp", "res"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"nom" : "Reugny", "dpt" : "Indre-et-Loire", "inscrits" : 1231, "abs" : 193, "votants" : 1038, "blancs" : 20, "nuls" : 5, "exp" : 1013, "res" : [{"panneau" : "2", "voix" : 219}, {"panneau" : "11", "voix" : 215}, {"panneau" : "3", "voix" : 209}, {"panneau" : "9", "voix" : 171}, {"panneau" : "4", "voix" : 83}, {"panneau" : "1", "voix" : 77}, {"panneau" : "6", "voix" : 10}, {"panneau" : "5", "voix" : 9}, {"panneau" : "8", "voix" : 9}, {"panneau" : "10", "voix" : 9}, {"panneau" : "7", "voix" : 2}]} | json_instruct | {"type": "object", "properties": {"nom": {"type": "string"}, "dpt": {"type": "string"}, "inscrits": {"type": "integer"}, "abs": {"type": "integer"}, "votants": {"type": "integer"}, "blancs": {"type": "integer"}, "nuls": {"type": "integer"}, "exp": {"type": "integer"}, "res": {"type": "array", "items": {"type": "object", "properties": {"panneau": {"type": "string"}, "voix": {"type": "integer"}}, "required": ["panneau", "voix"]}}}, "required": ["nom", "dpt", "inscrits", "abs", "votants", "blancs", "nuls", "exp", "res"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {"type": "integer"}}, "productReviews": {"type": "array", "items": {"type": "object", "properties": {"productId": {"type": "integer"}, "reviewText": {"type": "string"}, "reviewDate": {"type": "string"}}, "required": ["productId", "reviewText", "reviewDate"]}}}, "required": ["userId", "cartId", "preferredProducts", "productReviews"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"userId" : 12895, "cartId" : "60b73cd9-ea89-4866-822e-be46c9a1df05", "preferredProducts" : [657, 402, 4588, 389, 3461, 1893, 1040], "productReviews" : [{"productId" : 4634, "reviewText" : "one of my hobbies is toy collecting. and when i'm collecting toys this works great.", "reviewDate" : "2018-10-14T06:43:32.9911841+03:00"}, {"productId" : 223, "reviewText" : "I tried to attack it but got meatball all over it.", "reviewDate" : "2016-06-21T20:55:02.2078467+03:00"}, {"productId" : 3134, "reviewText" : "one of my hobbies is web-browsing. and when i'm browsing the web this works great.", "reviewDate" : "2016-10-13T03:06:41.4753609+03:00"}, {"productId" : 1321, "reviewText" : "My velociraptor loves to play with it.", "reviewDate" : "2016-11-13T09:58:49.6025237+02:00"}, {"productId" : 4134, "reviewText" : "My hummingbird loves to play with it.", "reviewDate" : "2018-01-09T20:53:25.9754137+02:00"}]} | json_instruct | {"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {"type": "integer"}}, "productReviews": {"type": "array", "items": {"type": "object", "properties": {"productId": {"type": "integer"}, "reviewText": {"type": "string"}, "reviewDate": {"type": "string"}}, "required": ["productId", "reviewText", "reviewDate"]}}}, "required": ["userId", "cartId", "preferredProducts", "productReviews"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"expireTime": {"type": "integer"}, "key": {"type": "string"}, "val": {"type": "string"}}, "required": ["expireTime", "key", "val"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"expireTime" : 9007200894528406000, "key" : "/static/b093e858159e9c838a1aed7ab41277a4/53b87/kentucky.webp", "val" : "acfa5b43f973a1aa8dbf0da5f865bd7e"} | json_instruct | {"type": "object", "properties": {"expireTime": {"type": "integer"}, "key": {"type": "string"}, "val": {"type": "string"}}, "required": ["expireTime", "key", "val"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"browserslist": {"type": "array", "items": {"type": "string"}}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}, "build": {"type": "string"}, "build:embed": {"type": "string"}, "build:help": {"type": "string"}, "lang:add": {"type": "string"}, "lang:sync": {"type": "string"}, "lang:build": {"type": "string"}}, "required": ["start", "build", "build:embed", "build:help", "lang:add", "lang:sync", "lang:build"]}, "devDependencies": {"type": "object", "properties": {"@parcel/transformer-sass": {"type": "string"}, "ag-psd": {"type": "string"}, "file-saver": {"type": "string"}}, "required": ["@parcel/transformer-sass", "ag-psd", "file-saver"]}, "dependencies": {"type": "object", "properties": {"@parcel/transformer-image": {"type": "string"}, "js-beautify": {"type": "string"}, "json5": {"type": "string"}, "mdn-polyfills": {"type": "string"}, "parcel": {"type": "string"}}, "required": ["@parcel/transformer-image", "js-beautify", "json5", "mdn-polyfills", "parcel"]}}, "required": ["browserslist", "scripts", "devDependencies", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"browserslist" : ["> 0.2%", "last 2 versions", "not dead", "Firefox ESR", "Chrome 61", "Firefox 60", "ios_saf 9"], "scripts" : {"start" : "parcel serve src/index.html --no-cache", "build" : "parcel build src/index.html", "build:embed" : "parcel build src/embed.ts", "build:help" : "parcel build src/help.html --public-url .", "lang:add" : "node src/languages/generate.js add", "lang:sync" : "node src/languages/generate.js sync", "lang:build" : "node src/languages/generate.js build"}, "devDependencies" : {"@parcel/transformer-sass" : "^2.0.1", "ag-psd" : "^11.6.2", "file-saver" : "^2.0.5"}, "dependencies" : {"@parcel/transformer-image" : "^2.0.1", "js-beautify" : "^1.14.0", "json5" : "^1.0.1", "mdn-polyfills" : "^5.20.0", "parcel" : "^2.0.1"}} | json_instruct | {"type": "object", "properties": {"browserslist": {"type": "array", "items": {"type": "string"}}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}, "build": {"type": "string"}, "build:embed": {"type": "string"}, "build:help": {"type": "string"}, "lang:add": {"type": "string"}, "lang:sync": {"type": "string"}, "lang:build": {"type": "string"}}, "required": ["start", "build", "build:embed", "build:help", "lang:add", "lang:sync", "lang:build"]}, "devDependencies": {"type": "object", "properties": {"@parcel/transformer-sass": {"type": "string"}, "ag-psd": {"type": "string"}, "file-saver": {"type": "string"}}, "required": ["@parcel/transformer-sass", "ag-psd", "file-saver"]}, "dependencies": {"type": "object", "properties": {"@parcel/transformer-image": {"type": "string"}, "js-beautify": {"type": "string"}, "json5": {"type": "string"}, "mdn-polyfills": {"type": "string"}, "parcel": {"type": "string"}}, "required": ["@parcel/transformer-image", "js-beautify", "json5", "mdn-polyfills", "parcel"]}}, "required": ["browserslist", "scripts", "devDependencies", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "array", "items": {"type": "object", "properties": {"subject": {"type": "string"}, "catalog_nbr": {"type": "integer"}, "section": {"type": "integer"}, "class_nbr": {"type": "integer"}, "title": {"type": "string"}, "component": {"type": "string"}, "units": {"type": "integer"}, "bldg": {"type": "string"}, "room": {"type": "string"}, "days": {"type": "string"}, "time": {"type": "string"}, "instructor": {"type": "string"}, "load": {"type": "string"}, "rank": {"type": "string"}, "attributes": {"type": "null"}, "enrl_cap": {"type": "integer"}, "enrl_tot": {"type": "integer"}, "wait_cap": {"type": "integer"}, "wait_tot": {"type": "integer"}, "prereqs": {"type": "null"}, "rmp": {"type": "null"}}, "required": ["subject", "catalog_nbr", "section", "class_nbr", "title", "component", "units", "bldg", "room", "days", "time", "instructor", "load", "rank", "attributes", "enrl_cap", "enrl_tot", "wait_cap", "wait_tot", "prereqs", "rmp"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"subject" : "NURS", "catalog_nbr" : 912, "section" : 1, "class_nbr" : 8104, "title" : "THEORETICAL FOUNDATIONS", "component" : "Lecture", "units" : 3, "bldg" : "TBA", "room" : "TBA", "days" : "Tu", "time" : "09", "instructor" : "KNEIPP,SHAWN MARIE", "load" : "100", "rank" : "INST", "attributes" : null, "enrl_cap" : 20, "enrl_tot" : 7, "wait_cap" : 0, "wait_tot" : 0, "prereqs" : null, "rmp" : null}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"subject": {"type": "string"}, "catalog_nbr": {"type": "integer"}, "section": {"type": "integer"}, "class_nbr": {"type": "integer"}, "title": {"type": "string"}, "component": {"type": "string"}, "units": {"type": "integer"}, "bldg": {"type": "string"}, "room": {"type": "string"}, "days": {"type": "string"}, "time": {"type": "string"}, "instructor": {"type": "string"}, "load": {"type": "string"}, "rank": {"type": "string"}, "attributes": {"type": "null"}, "enrl_cap": {"type": "integer"}, "enrl_tot": {"type": "integer"}, "wait_cap": {"type": "integer"}, "wait_tot": {"type": "integer"}, "prereqs": {"type": "null"}, "rmp": {"type": "null"}}, "required": ["subject", "catalog_nbr", "section", "class_nbr", "title", "component", "units", "bldg", "room", "days", "time", "instructor", "load", "rank", "attributes", "enrl_cap", "enrl_tot", "wait_cap", "wait_tot", "prereqs", "rmp"]}, "$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" : "\n", "details" : {"authors" : "L. McColl-Sylvester, F. Ponticelli", "format" : "pdf", "isbn-10" : "0470122137", "isbn-13" : "978-0470122136", "pages" : "600 pages", "publication date" : "February 11, 2008", "publisher" : "Wrox", "size" : "8.00Mb"}, "img" : "http://23.95.221.108/covers/cf/cf5079e1aaa711f2892b26666626f681.jpg", "link" : "https://rapidhosting.info/files/91j", "title" : "Professional haXe and Neko"} | json_instruct | {"type": "object", "properties": {"categories": {"type": "array", "items": {"type": "string"}}, "desc": {"type": "string"}, "details": {"type": "object", "properties": {"authors": {"type": "string"}, "format": {"type": "string"}, "isbn-10": {"type": "string"}, "isbn-13": {"type": "string"}, "pages": {"type": "string"}, "publication date": {"type": "string"}, "publisher": {"type": "string"}, "size": {"type": "string"}}, "required": ["authors", "format", "isbn-10", "isbn-13", "pages", "publication date", "publisher", "size"]}, "img": {"type": "string"}, "link": {"type": "string"}, "title": {"type": "string"}}, "required": ["categories", "desc", "details", "img", "link", "title"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"survey.css": {"type": "string"}, "survey.min.css": {"type": "string"}, "survey.react.js": {"type": "string"}, "survey.react.min.js": {"type": "string"}}, "required": ["survey.css", "survey.min.css", "survey.react.js", "survey.react.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"survey.css" : "sha256-vXqA+we0hiPKe39yVB4lIvC7FfBspEMwvFAKwVQ4adk=", "survey.min.css" : "sha256-i5xDjqr6kVia3q7QehRSZma5USqzi/UsUDj2Pn2i2YY=", "survey.react.js" : "sha256-7DtGQ4H+W/w/M9qjjtZLIC/a6+pRRl8jLJthAT9s6rc=", "survey.react.min.js" : "sha256-ZfM5W8HMQcHU/Fd2VBEU2OeYGb/myqzQUWVgBQrYlAs="} | json_instruct | {"type": "object", "properties": {"survey.css": {"type": "string"}, "survey.min.css": {"type": "string"}, "survey.react.js": {"type": "string"}, "survey.react.min.js": {"type": "string"}}, "required": ["survey.css", "survey.min.css", "survey.react.js", "survey.react.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "homepage": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"babel-eslint": {"type": "string"}, "eslint": {"type": "string"}, "eslint-config-prettier": {"type": "string"}, "eslint-config-standard": {"type": "string"}, "eslint-config-standard-react": {"type": "string"}, "eslint-plugin-flowtype": {"type": "string"}, "eslint-plugin-import": {"type": "string"}, "eslint-plugin-jest": {"type": "string"}, "eslint-plugin-node": {"type": "string"}, "eslint-plugin-prettier": {"type": "string"}, "eslint-plugin-promise": {"type": "string"}, "eslint-plugin-react": {"type": "string"}, "eslint-plugin-standard": {"type": "string"}}, "required": ["babel-eslint", "eslint", "eslint-config-prettier", "eslint-config-standard", "eslint-config-standard-react", "eslint-plugin-flowtype", "eslint-plugin-import", "eslint-plugin-jest", "eslint-plugin-node", "eslint-plugin-prettier", "eslint-plugin-promise", "eslint-plugin-react", "eslint-plugin-standard"]}, "devDependencies": {"type": "object", "properties": {"prettier-config-trucknet-io": {"type": "string"}}, "required": ["prettier-config-trucknet-io"]}, "peerDependencies": {"type": "object", "properties": {"eslint": {"type": "string"}}, "required": ["eslint"]}}, "required": ["name", "version", "description", "homepage", "repository", "main", "scripts", "author", "license", "dependencies", "devDependencies", "peerDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "eslint-config-trucknet-io", "version" : "1.2.1", "description" : "Eslint Preset based on JavaScript Standard Style with comma-dangles, semi and more", "homepage" : "https://github.com/trucknet-io/eslint-config-trucknet-io", "repository" : {"type" : "git", "url" : "https://github.com/trucknet-io/eslint-config-trucknet-io"}, "main" : "index.js", "scripts" : {"test" : "eslint ./test.js ./test.spec.js"}, "author" : "", "license" : "MIT", "dependencies" : {"babel-eslint" : "^10.0.1", "eslint" : "^5.13.0", "eslint-config-prettier" : "^3.6.0", "eslint-config-standard" : "^12.0.0", "eslint-config-standard-react" : "^7.0.2", "eslint-plugin-flowtype" : "^3.2.1", "eslint-plugin-import" : "^2.16.0", "eslint-plugin-jest" : "^22.2.2", "eslint-plugin-node" : "^8.0.1", "eslint-plugin-prettier" : "^3.0.1", "eslint-plugin-promise" : "^4.0.0", "eslint-plugin-react" : "^7.12.4", "eslint-plugin-standard" : "^4.0.0"}, "devDependencies" : {"prettier-config-trucknet-io" : "^1.1.1"}, "peerDependencies" : {"eslint" : ">= 5"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "homepage": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"babel-eslint": {"type": "string"}, "eslint": {"type": "string"}, "eslint-config-prettier": {"type": "string"}, "eslint-config-standard": {"type": "string"}, "eslint-config-standard-react": {"type": "string"}, "eslint-plugin-flowtype": {"type": "string"}, "eslint-plugin-import": {"type": "string"}, "eslint-plugin-jest": {"type": "string"}, "eslint-plugin-node": {"type": "string"}, "eslint-plugin-prettier": {"type": "string"}, "eslint-plugin-promise": {"type": "string"}, "eslint-plugin-react": {"type": "string"}, "eslint-plugin-standard": {"type": "string"}}, "required": ["babel-eslint", "eslint", "eslint-config-prettier", "eslint-config-standard", "eslint-config-standard-react", "eslint-plugin-flowtype", "eslint-plugin-import", "eslint-plugin-jest", "eslint-plugin-node", "eslint-plugin-prettier", "eslint-plugin-promise", "eslint-plugin-react", "eslint-plugin-standard"]}, "devDependencies": {"type": "object", "properties": {"prettier-config-trucknet-io": {"type": "string"}}, "required": ["prettier-config-trucknet-io"]}, "peerDependencies": {"type": "object", "properties": {"eslint": {"type": "string"}}, "required": ["eslint"]}}, "required": ["name", "version", "description", "homepage", "repository", "main", "scripts", "author", "license", "dependencies", "devDependencies", "peerDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"type": {"type": "string"}, "features": {"type": "array", "items": {"type": "object", "properties": {"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" : [[[-71.156468, 42.402568], [-71.142264, 42.405763], [-71.136277, 42.401083], [-71.140412, 42.39972], [-71.143593, 42.397412], [-71.156468, 42.402568]]]}, "type" : "Feature", "properties" : {"cartodb_id" : 30278}}]} | 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": {"file": {"type": "string"}, "frames": {"type": "object", "properties": {"revive_bg": {"type": "object", "properties": {"x": {"type": "integer"}, "y": {"type": "integer"}, "w": {"type": "integer"}, "h": {"type": "integer"}, "offX": {"type": "integer"}, "offY": {"type": "integer"}, "sourceW": {"type": "integer"}, "sourceH": {"type": "integer"}}, "required": ["x", "y", "w", "h", "offX", "offY", "sourceW", "sourceH"]}, "revive_btn": {"type": "object", "properties": {"x": {"type": "integer"}, "y": {"type": "integer"}, "w": {"type": "integer"}, "h": {"type": "integer"}, "offX": {"type": "integer"}, "offY": {"type": "integer"}, "sourceW": {"type": "integer"}, "sourceH": {"type": "integer"}}, "required": ["x", "y", "w", "h", "offX", "offY", "sourceW", "sourceH"]}, "revive_zz": {"type": "object", "properties": {"x": {"type": "integer"}, "y": {"type": "integer"}, "w": {"type": "integer"}, "h": {"type": "integer"}, "offX": {"type": "integer"}, "offY": {"type": "integer"}, "sourceW": {"type": "integer"}, "sourceH": {"type": "integer"}}, "required": ["x", "y", "w", "h", "offX", "offY", "sourceW", "sourceH"]}}, "required": ["revive_bg", "revive_btn", "revive_zz"]}}, "required": ["file", "frames"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"file" : "resurrection.png", "frames" : {"revive_bg" : {"x" : 1, "y" : 1, "w" : 301, "h" : 145, "offX" : 0, "offY" : 0, "sourceW" : 301, "sourceH" : 145}, "revive_btn" : {"x" : 1, "y" : 148, "w" : 95, "h" : 34, "offX" : 0, "offY" : 0, "sourceW" : 95, "sourceH" : 34}, "revive_zz" : {"x" : 304, "y" : 1, "w" : 172, "h" : 172, "offX" : 0, "offY" : 0, "sourceW" : 172, "sourceH" : 172}}} | json_instruct | {"type": "object", "properties": {"file": {"type": "string"}, "frames": {"type": "object", "properties": {"revive_bg": {"type": "object", "properties": {"x": {"type": "integer"}, "y": {"type": "integer"}, "w": {"type": "integer"}, "h": {"type": "integer"}, "offX": {"type": "integer"}, "offY": {"type": "integer"}, "sourceW": {"type": "integer"}, "sourceH": {"type": "integer"}}, "required": ["x", "y", "w", "h", "offX", "offY", "sourceW", "sourceH"]}, "revive_btn": {"type": "object", "properties": {"x": {"type": "integer"}, "y": {"type": "integer"}, "w": {"type": "integer"}, "h": {"type": "integer"}, "offX": {"type": "integer"}, "offY": {"type": "integer"}, "sourceW": {"type": "integer"}, "sourceH": {"type": "integer"}}, "required": ["x", "y", "w", "h", "offX", "offY", "sourceW", "sourceH"]}, "revive_zz": {"type": "object", "properties": {"x": {"type": "integer"}, "y": {"type": "integer"}, "w": {"type": "integer"}, "h": {"type": "integer"}, "offX": {"type": "integer"}, "offY": {"type": "integer"}, "sourceW": {"type": "integer"}, "sourceH": {"type": "integer"}}, "required": ["x", "y", "w", "h", "offX", "offY", "sourceW", "sourceH"]}}, "required": ["revive_bg", "revive_btn", "revive_zz"]}}, "required": ["file", "frames"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"translation-revision-date": {"type": "string"}, "generator": {"type": "string"}, "domain": {"type": "string"}, "locale_data": {"type": "object", "properties": {"messages": {"type": "object", "properties": {"": {"type": "object", "properties": {"domain": {"type": "string"}, "plural-forms": {"type": "string"}, "lang": {"type": "string"}}, "required": ["domain", "plural-forms", "lang"]}, "Orange": {"type": "array", "items": {"type": "string"}}, "Lightweight baseball cap": {"type": "array", "items": {"type": "string"}}, "Cap": {"type": "array", "items": {"type": "string"}}, "Yellow": {"type": "array", "items": {"type": "string"}}, "Warm hat for winter": {"type": "array", "items": {"type": "string"}}, "Beanie": {"type": "array", "items": {"type": "string"}}, "Color": {"type": "array", "items": {"type": "string"}}, "Small": {"type": "array", "items": {"type": "string"}}, "Size": {"type": "array", "items": {"type": "string"}}}, "required": ["", "Orange", "Lightweight baseball cap", "Cap", "Yellow", "Warm hat for winter", "Beanie", "Color", "Small", "Size"]}}, "required": ["messages"]}, "comment": {"type": "object", "properties": {"reference": {"type": "string"}}, "required": ["reference"]}}, "required": ["translation-revision-date", "generator", "domain", "locale_data", "comment"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"translation-revision-date" : "2020-07-20 04:44:41+0000", "generator" : "GlotPress/3.0.0-alpha.2", "domain" : "messages", "locale_data" : {"messages" : {"" : {"domain" : "messages", "plural-forms" : "nplurals=2; plural=n != 1;", "lang" : "es"}, "Orange" : ["Naranja"], "Lightweight baseball cap" : ["Gorra de beisbol ligera"], "Cap" : ["Gorra"], "Yellow" : ["Amarillo"], "Warm hat for winter" : ["Sombrero caliente de invierno"], "Beanie" : ["Gorro"], "Color" : ["Color"], "Small" : ["Peque\u00f1o"], "Size" : ["Tama\u00f1o"]}}, "comment" : {"reference" : "packages/woocommerce-blocks/assets/js/previews/cart.js"}} | json_instruct | {"type": "object", "properties": {"translation-revision-date": {"type": "string"}, "generator": {"type": "string"}, "domain": {"type": "string"}, "locale_data": {"type": "object", "properties": {"messages": {"type": "object", "properties": {"": {"type": "object", "properties": {"domain": {"type": "string"}, "plural-forms": {"type": "string"}, "lang": {"type": "string"}}, "required": ["domain", "plural-forms", "lang"]}, "Orange": {"type": "array", "items": {"type": "string"}}, "Lightweight baseball cap": {"type": "array", "items": {"type": "string"}}, "Cap": {"type": "array", "items": {"type": "string"}}, "Yellow": {"type": "array", "items": {"type": "string"}}, "Warm hat for winter": {"type": "array", "items": {"type": "string"}}, "Beanie": {"type": "array", "items": {"type": "string"}}, "Color": {"type": "array", "items": {"type": "string"}}, "Small": {"type": "array", "items": {"type": "string"}}, "Size": {"type": "array", "items": {"type": "string"}}}, "required": ["", "Orange", "Lightweight baseball cap", "Cap", "Yellow", "Warm hat for winter", "Beanie", "Color", "Small", "Size"]}}, "required": ["messages"]}, "comment": {"type": "object", "properties": {"reference": {"type": "string"}}, "required": ["reference"]}}, "required": ["translation-revision-date", "generator", "domain", "locale_data", "comment"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "labels": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "index": {"type": "integer"}, "score": {"type": "number"}}, "required": ["id", "index", "score"]}}}, "required": ["name", "labels"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"name" : "0.jpg", "labels" : [{"id" : "119", "index" : 1, "score" : 0.9972795844078064}, {"id" : "120", "index" : 2, "score" : 0.989779531955719}, {"id" : "121", "index" : 3, "score" : 0.9872186183929443}, {"id" : "122", "index" : 4, "score" : 0.9812575578689575}, {"id" : "123", "index" : 5, "score" : 0.9758461713790894}, {"id" : "124", "index" : 6, "score" : 0.20245501399040222}, {"id" : "125", "index" : 7, "score" : 0.17200405895709991}, {"id" : "126", "index" : 8, "score" : 0.13503961265087128}, {"id" : "127", "index" : 9, "score" : 0.09146016836166382}, {"id" : "128", "index" : 10, "score" : 0.053933657705783844}, {"id" : "129", "index" : 11, "score" : 0.9109384417533875}, {"id" : "130", "index" : 12, "score" : 0.7009060978889465}, {"id" : "131", "index" : 13, "score" : 0.3428058624267578}, {"id" : "132", "index" : 14, "score" : 0.20947283506393433}, {"id" : "133", "index" : 15, "score" : 0.16209781169891357}, {"id" : "134", "index" : 16, "score" : 0.15974047780036926}, {"id" : "135", "index" : 17, "score" : 0.14623066782951355}, {"id" : "136", "index" : 18, "score" : 0.12458626925945282}, {"id" : "137", "index" : 19, "score" : 0.05857634171843529}, {"id" : "138", "index" : 20, "score" : 0.5343940854072571}, {"id" : "139", "index" : 21, "score" : 0.29266107082366943}, {"id" : "140", "index" : 22, "score" : 0.2727968692779541}, {"id" : "141", "index" : 23, "score" : 0.05995512753725052}]}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "labels": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "index": {"type": "integer"}, "score": {"type": "number"}}, "required": ["id", "index", "score"]}}}, "required": ["name", "labels"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"n_dim": {"type": "integer"}, "n_trials": {"type": "integer"}, "objective": {"type": "string"}, "white": {"type": "string"}, "black": {"type": "string"}, "traceback": {"type": "array", "items": {"type": "string"}}, "best_val": {"type": "array", "items": {"type": "number"}}, "best_x": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}, "feval_count": {"type": "array", "items": {"type": "integer"}}, "n_trials_instructed": {"type": "array", "items": {"type": "integer"}}, "passing": {"type": "array", "items": {"type": "boolean"}}, "completed": {"type": "boolean"}, "winner": {"type": "string"}, "points": {"type": "null"}}, "required": ["n_dim", "n_trials", "objective", "white", "black", "traceback", "best_val", "best_x", "feval_count", "n_trials_instructed", "passing", "completed", "winner", "points"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"n_dim" : 8, "n_trials" : 80, "objective" : "markowitz_return_on_cube", "white" : "optuna_random_clone_1", "black" : "shgo_slsqp_sobol", "traceback" : ["passing", "passing"], "best_val" : [3240.613249360582, 3024.267264801698], "best_x" : [[0.9899883877846811, 0.7321950198392818, 0.009761533878258843, 0.8722480812203562, 0.6138546519441229, 0.4573746555644118, 0.6848260989557706, 0.8190073610227571], [0.1768771636793731, 0.12121902587461657, 0.07204126782618962, 0.11699176452931304, 0.15918487989661056, 0.07361285880924553, 0.14026492509650887, 0.13980475037182427]], "feval_count" : [80, 777], "n_trials_instructed" : [80, 23], "passing" : [true, true], "completed" : false, "winner" : "incomplete", "points" : null} | json_instruct | {"type": "object", "properties": {"n_dim": {"type": "integer"}, "n_trials": {"type": "integer"}, "objective": {"type": "string"}, "white": {"type": "string"}, "black": {"type": "string"}, "traceback": {"type": "array", "items": {"type": "string"}}, "best_val": {"type": "array", "items": {"type": "number"}}, "best_x": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}, "feval_count": {"type": "array", "items": {"type": "integer"}}, "n_trials_instructed": {"type": "array", "items": {"type": "integer"}}, "passing": {"type": "array", "items": {"type": "boolean"}}, "completed": {"type": "boolean"}, "winner": {"type": "string"}, "points": {"type": "null"}}, "required": ["n_dim", "n_trials", "objective", "white", "black", "traceback", "best_val", "best_x", "feval_count", "n_trials_instructed", "passing", "completed", "winner", "points"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"n_dim": {"type": "integer"}, "n_trials": {"type": "integer"}, "objective": {"type": "string"}, "white": {"type": "string"}, "black": {"type": "string"}, "traceback": {"type": "array", "items": {"type": "string"}}, "best_val": {"type": "array", "items": {"type": "number"}}, "best_x": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}, "feval_count": {"type": "array", "items": {"type": "integer"}}, "n_trials_instructed": {"type": "array", "items": {"type": "integer"}}, "passing": {"type": "array", "items": {"type": "boolean"}}, "completed": {"type": "boolean"}, "points": {"type": "number"}, "winner": {"type": "string"}, "loser": {"type": "string"}}, "required": ["n_dim", "n_trials", "objective", "white", "black", "traceback", "best_val", "best_x", "feval_count", "n_trials_instructed", "passing", "completed", "points", "winner", "loser"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"n_dim" : 5, "n_trials" : 30, "objective" : "powers_on_cube", "white" : "optuna_random_clone", "black" : "hyperopt_atpe", "traceback" : ["passing", "passing"], "best_val" : [7.0383943666659095, 8.77845585117532], "best_x" : [[0.691763159708083, 0.7329324593908871, 0.38175479631134024, 0.46150900219759783, 0.4954330794391065], [0.28860040381485974, 0.5308647274630922, 0.40213777452943744, 0.70026835788933, 0.4097087124181179]], "feval_count" : [30, 30], "n_trials_instructed" : [30, 30], "passing" : [true, true], "completed" : true, "points" : 1.0, "winner" : "optuna_random_clone", "loser" : "hyperopt_atpe"} | json_instruct | {"type": "object", "properties": {"n_dim": {"type": "integer"}, "n_trials": {"type": "integer"}, "objective": {"type": "string"}, "white": {"type": "string"}, "black": {"type": "string"}, "traceback": {"type": "array", "items": {"type": "string"}}, "best_val": {"type": "array", "items": {"type": "number"}}, "best_x": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}, "feval_count": {"type": "array", "items": {"type": "integer"}}, "n_trials_instructed": {"type": "array", "items": {"type": "integer"}}, "passing": {"type": "array", "items": {"type": "boolean"}}, "completed": {"type": "boolean"}, "points": {"type": "number"}, "winner": {"type": "string"}, "loser": {"type": "string"}}, "required": ["n_dim", "n_trials", "objective", "white", "black", "traceback", "best_val", "best_x", "feval_count", "n_trials_instructed", "passing", "completed", "points", "winner", "loser"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"user_rating": {"type": "number"}, "review_count": {"type": "integer"}, "name": {"type": "string"}, "reviews": {"type": "array", "items": {"type": "object", "properties": {"rating": {"type": "number"}, "stay_parameters": {"type": "string"}, "text": {"type": "string"}, "title": {"type": "string"}, "user": {"type": "string"}, "date": {"type": "string"}, "detail_rating": {"type": "object", "properties": {"service": {"type": "number"}, "cleanliness": {"type": "number"}, "value": {"type": "number"}, "sleep": {"type": "number"}, "rooms": {"type": "number"}, "location": {"type": "number"}}, "required": ["service", "cleanliness", "value", "sleep", "rooms", "location"]}, "id": {"type": "integer"}}, "required": ["rating", "stay_parameters", "text", "title", "user", "date", "detail_rating", "id"]}}, "location": {"type": "object", "properties": {"country": {"type": "string"}, "continent": {"type": "string"}, "city": {"type": "string"}}, "required": ["country", "continent", "city"]}, "variance": {"type": "object", "properties": {"poor": {"type": "integer"}, "average": {"type": "integer"}, "very good": {"type": "integer"}, "terrible": {"type": "integer"}, "excellent": {"type": "integer"}}, "required": ["poor", "average", "very good", "terrible", "excellent"]}, "slim_ranking": {"type": "number"}}, "required": ["user_rating", "review_count", "name", "reviews", "location", "variance", "slim_ranking"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"user_rating" : 3.5, "review_count" : 57, "name" : "Ibis Budget Duesseldorf Willich", "reviews" : [{"rating" : 1.0, "stay_parameters" : "Stayed April 2013, traveled with family", "text" : "Yes budget but at least you expect a bed tobe able to sleep in", "title" : "Beware must be worst beds in Germany", "user" : "mrsjayne", "date" : "April 12, 2013", "detail_rating" : {"service" : 1.0, "cleanliness" : 3.0, "value" : 1.0, "sleep" : 1.0, "rooms" : 3.0, "location" : 1.0}, "id" : 157517351}, {"rating" : 3.0, "stay_parameters" : "Stayed March 2013, traveled with family", "text" : "we had 2 twin rooms and out of 4 of us nobody got any sleep the grass outside would", "title" : "Typical Ibis Budget in a good location", "user" : "Robjp099", "date" : "March 11, 2013", "detail_rating" : {"service" : 4.0, "cleanliness" : 4.0, "value" : 4.0, "sleep" : 3.0, "rooms" : 3.0, "location" : 4.0}, "id" : 154285331}, {"rating" : 3.0, "stay_parameters" : "Stayed August 2012, traveled solo", "text" : "have been a better option and no joke at that. My 11 year old can sleep anywhere except", "title" : "Don't expect much", "user" : "Christos M", "date" : "January 6, 2013", "detail_rating" : {"service" : 2.0, "cleanliness" : 3.0, "value" : 5.0, "sleep" : 4.0, "rooms" : 2.0, "location" : 3.0}, "id" : 149006308}, {"rating" : 4.0, "stay_parameters" : "Stayed December 2012, traveled with family", "text" : "in Ibis Budget Wllich", "title" : "Met all expectations.", "user" : "lgg68d", "date" : "December 20, 2012", "detail_rating" : {"service" : 3.0, "cleanliness" : 5.0, "value" : 5.0, "sleep" : 4.0, "rooms" : 4.0, "location" : 4.0}, "id" : 147767828}], "location" : {"country" : "Germany", "continent" : "Europe", "city" : "Willich"}, "variance" : {"poor" : 2, "average" : 12, "very good" : 27, "terrible" : 5, "excellent" : 11}, "slim_ranking" : 0.666666666667} | json_instruct | {"type": "object", "properties": {"user_rating": {"type": "number"}, "review_count": {"type": "integer"}, "name": {"type": "string"}, "reviews": {"type": "array", "items": {"type": "object", "properties": {"rating": {"type": "number"}, "stay_parameters": {"type": "string"}, "text": {"type": "string"}, "title": {"type": "string"}, "user": {"type": "string"}, "date": {"type": "string"}, "detail_rating": {"type": "object", "properties": {"service": {"type": "number"}, "cleanliness": {"type": "number"}, "value": {"type": "number"}, "sleep": {"type": "number"}, "rooms": {"type": "number"}, "location": {"type": "number"}}, "required": ["service", "cleanliness", "value", "sleep", "rooms", "location"]}, "id": {"type": "integer"}}, "required": ["rating", "stay_parameters", "text", "title", "user", "date", "detail_rating", "id"]}}, "location": {"type": "object", "properties": {"country": {"type": "string"}, "continent": {"type": "string"}, "city": {"type": "string"}}, "required": ["country", "continent", "city"]}, "variance": {"type": "object", "properties": {"poor": {"type": "integer"}, "average": {"type": "integer"}, "very good": {"type": "integer"}, "terrible": {"type": "integer"}, "excellent": {"type": "integer"}}, "required": ["poor", "average", "very good", "terrible", "excellent"]}, "slim_ranking": {"type": "number"}}, "required": ["user_rating", "review_count", "name", "reviews", "location", "variance", "slim_ranking"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"parent": {"type": "string"}}, "required": ["parent"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"parent" : "strange:block/writing_desk"} | json_instruct | {"type": "object", "properties": {"parent": {"type": "string"}}, "required": ["parent"], "$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": "string"}, "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"}, "paypalEmail": {"type": "string"}}, "required": ["id", "name", "paypalEmail"]}}, "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"]}}, "required": ["installs"]}, "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": {}}}, "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" : 134941, "info" : {"name" : "BetterWikia - LoL", "description" : "An addon for style 134937 for the League of Legends (LoL) Wiki.", "additionalInfo" : "Removes the background image and replaces it with the blue accent color used in the page.\r\nMakes the grid of all items in League visible at the bottom of item pages (e.g. http://leagueoflegends.wikia.com/wiki/Item#List_of_Items_.5Bedit.5D).", "format" : "uso", "category" : "wikia", "createdAt" : "2016-11-08T18:26:31.000Z", "updatedAt" : "2016-11-08T18:26:31.000Z", "license" : "NO-REDISTRIBUTION", "author" : {"id" : 370668, "name" : "R2-Dequeue", "paypalEmail" : "r2.dequeue@gmail.com"}}, "stats" : {"installs" : {"total" : 96, "weekly" : 0}}, "screenshots" : {"main" : {"name" : "134941_after.png", "archived" : false}}, "discussions" : {"stats" : {"discussionsCount" : 0, "commentsCount" : 0}, "data" : []}, "style" : {"css" : "@-moz-document domain(\"leagueoflegends.wikia.com\") {\r\n/* This removes the background image and replaces it with the accent blue used in the page. */\r\nbody::before,\r\nbody::after\r\n{\r\n\tbackground-color: rgb(8, 40, 72) !important;\r\n\tbackground-image: none !important;\r\n}\r\n\r\n/* This makes the grid of all items in League visible at the bottom of item pages, particularly http://leagueoflegends.wikia.com/wiki/Item#List_of_Items_.5Bedit.5D */\r\n#stickyMenuWrapper\r\n{\r\n\tdisplay: block !important;\r\n}\r\n}"}} | json_instruct | {"type": "object", "properties": {"id": {"type": "integer"}, "info": {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "additionalInfo": {"type": "string"}, "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"}, "paypalEmail": {"type": "string"}}, "required": ["id", "name", "paypalEmail"]}}, "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"]}}, "required": ["installs"]}, "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": {}}}, "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#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"nom": {"type": "string"}, "dpt": {"type": "string"}, "inscrits": {"type": "integer"}, "abs": {"type": "integer"}, "votants": {"type": "integer"}, "blancs": {"type": "integer"}, "nuls": {"type": "integer"}, "exp": {"type": "integer"}, "res": {"type": "array", "items": {"type": "object", "properties": {"panneau": {"type": "string"}, "voix": {"type": "integer"}}, "required": ["panneau", "voix"]}}}, "required": ["nom", "dpt", "inscrits", "abs", "votants", "blancs", "nuls", "exp", "res"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"nom" : "Algolsheim", "dpt" : "Haut-Rhin", "inscrits" : 605, "abs" : 115, "votants" : 490, "blancs" : 41, "nuls" : 6, "exp" : 443, "res" : [{"panneau" : "1", "voix" : 245}, {"panneau" : "2", "voix" : 198}]} | json_instruct | {"type": "object", "properties": {"nom": {"type": "string"}, "dpt": {"type": "string"}, "inscrits": {"type": "integer"}, "abs": {"type": "integer"}, "votants": {"type": "integer"}, "blancs": {"type": "integer"}, "nuls": {"type": "integer"}, "exp": {"type": "integer"}, "res": {"type": "array", "items": {"type": "object", "properties": {"panneau": {"type": "string"}, "voix": {"type": "integer"}}, "required": ["panneau", "voix"]}}}, "required": ["nom", "dpt", "inscrits", "abs", "votants", "blancs", "nuls", "exp", "res"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "homepage": {"type": "string"}, "bugs": {"type": "string"}, "main": {"type": "string"}, "directories": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "dependencies": {"type": "object", "properties": {"stream-chain": {"type": "string"}}, "required": ["stream-chain"]}, "devDependencies": {"type": "object", "properties": {"heya-unit": {"type": "string"}}, "required": ["heya-unit"]}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "debug": {"type": "string"}}, "required": ["test", "debug"]}, "github": {"type": "string"}, "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"}}, "required": ["name", "version", "description", "homepage", "bugs", "main", "directories", "dependencies", "devDependencies", "scripts", "github", "repository", "keywords", "author", "license"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "stream-json", "version" : "1.5.0", "description" : "stream-json is the micro-library of Node.js stream components for creating custom JSON processing pipelines with a minimal memory footprint. It can parse JSON files far exceeding available memory streaming individual primitives using a SAX-inspired API. Includes utilities to stream JSON database dumps.", "homepage" : "http://github.com/uhop/stream-json", "bugs" : "http://github.com/uhop/stream-json/issues", "main" : "index.js", "directories" : {"test" : "tests"}, "dependencies" : {"stream-chain" : "^2.2.1"}, "devDependencies" : {"heya-unit" : "^0.3.0"}, "scripts" : {"test" : "node tests/tests.js", "debug" : "node --inspect-brk tests/tests.js"}, "github" : "http://github.com/uhop/stream-json", "repository" : {"type" : "git", "url" : "git://github.com/uhop/stream-json.git"}, "keywords" : ["scanner", "lexer", "tokenizer", "parser", "django", "stream", "streaming", "json"], "author" : "Eugene Lazutkin <eugene.lazutkin@gmail.com> (http://lazutkin.com/)", "license" : "BSD-3-Clause"} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "homepage": {"type": "string"}, "bugs": {"type": "string"}, "main": {"type": "string"}, "directories": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "dependencies": {"type": "object", "properties": {"stream-chain": {"type": "string"}}, "required": ["stream-chain"]}, "devDependencies": {"type": "object", "properties": {"heya-unit": {"type": "string"}}, "required": ["heya-unit"]}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "debug": {"type": "string"}}, "required": ["test", "debug"]}, "github": {"type": "string"}, "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"}}, "required": ["name", "version", "description", "homepage", "bugs", "main", "directories", "dependencies", "devDependencies", "scripts", "github", "repository", "keywords", "author", "license"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"type": {"type": "string"}, "name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "dependencies": {"type": "object", "properties": {"prettier": {"type": "string"}}, "required": ["prettier"]}}, "required": ["type", "name", "version", "description", "main", "scripts", "repository", "keywords", "author", "license", "bugs", "homepage", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"type" : "module", "name" : "prettier-config-typesafeconfig", "version" : "2.2.0", "description" : "Prettier base configuration (prettierrc) to extend from with emphasis on type safety.", "main" : ".prettierrc.json", "scripts" : {"test" : "echo \"Error: no test specified\" && exit 1"}, "repository" : {"type" : "git", "url" : "git+https://github.com/shian15810/prettier-config-typesafeconfig.git"}, "keywords" : ["type", "safe", "config", "typescript", "base", "configuration", "tsconfig", "extends", "typesafeconfig", "prettier", "prettierrc", "prettierconfig"], "author" : "Chuah Chee Shian <shian15810@gmail.com> (https://github.com/shian15810)", "license" : "MIT", "bugs" : {"url" : "https://github.com/shian15810/prettier-config-typesafeconfig/issues"}, "homepage" : "https://github.com/shian15810/prettier-config-typesafeconfig#readme", "dependencies" : {"prettier" : "^2.2.0"}} | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "dependencies": {"type": "object", "properties": {"prettier": {"type": "string"}}, "required": ["prettier"]}}, "required": ["type", "name", "version", "description", "main", "scripts", "repository", "keywords", "author", "license", "bugs", "homepage", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"jodit.min.css": {"type": "string"}, "jodit.min.js": {"type": "string"}}, "required": ["jodit.min.css", "jodit.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"jodit.min.css" : "sha512-NCNZxJZfNODO8VAedWYpP6bvnwjcCdKZHPzEhk9jq4mO6IMaVGggNvRXaDtEFrXztJDg2eHjW3KVeXAOCND9zg==", "jodit.min.js" : "sha512-7MB2lN7wTpq3mFz55pFtPjzFbW8YooOZpUMENzOdFtVDx99CsFhwxCXqYvINdtq34xrS9hv5N+jd2J65LVzlpw=="} | json_instruct | {"type": "object", "properties": {"jodit.min.css": {"type": "string"}, "jodit.min.js": {"type": "string"}}, "required": ["jodit.min.css", "jodit.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"version": {"type": "string"}, "baseDirectory": {"type": "string"}}, "required": ["version", "baseDirectory"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"version" : "1.0.0", "baseDirectory" : "realm_cli_rhel70_2a7101e5cbc1bae963474a5967052eed9c0f2244_20_06_05_19_38_47"} | json_instruct | {"type": "object", "properties": {"version": {"type": "string"}, "baseDirectory": {"type": "string"}}, "required": ["version", "baseDirectory"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "array", "items": {"type": "object", "properties": {"c_ref": {"type": "string"}, "totals": {"type": "object", "properties": {"Cases": {"type": "integer"}, "Deaths": {"type": "integer"}}, "required": ["Cases", "Deaths"]}, "daily": {"type": "object", "properties": {"Cases": {"type": "integer"}, "Deaths": {"type": "integer"}}, "required": ["Cases", "Deaths"]}}, "required": ["c_ref", "totals", "daily"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"c_ref" : "France Mainland", "totals" : {"Cases" : 374586, "Deaths" : 30661}, "daily" : {"Cases" : 9561, "Deaths" : 18}}, {"c_ref" : "French Guiana", "totals" : {"Cases" : 9462, "Deaths" : 63}, "daily" : {"Cases" : 44, "Deaths" : 1}}, {"c_ref" : "French Polynesia", "totals" : {"Cases" : 857, "Deaths" : 0}, "daily" : {"Cases" : 62, "Deaths" : 0}}, {"c_ref" : "Guadeloupe", "totals" : {"Cases" : 2287, "Deaths" : 23}, "daily" : {"Cases" : 0, "Deaths" : 0}}, {"c_ref" : "Martinique", "totals" : {"Cases" : 939, "Deaths" : 18}, "daily" : {"Cases" : 0, "Deaths" : 0}}, {"c_ref" : "Mayotte", "totals" : {"Cases" : 3374, "Deaths" : 40}, "daily" : {"Cases" : 0, "Deaths" : 0}}, {"c_ref" : "New Caledonia", "totals" : {"Cases" : 26, "Deaths" : 0}, "daily" : {"Cases" : 0, "Deaths" : 0}}, {"c_ref" : "Reunion", "totals" : {"Cases" : 2510, "Deaths" : 13}, "daily" : {"Cases" : 94, "Deaths" : 0}}, {"c_ref" : "Saint Barthelemy", "totals" : {"Cases" : 21, "Deaths" : 0}, "daily" : {"Cases" : 0, "Deaths" : 0}}, {"c_ref" : "Saint Pierre and Miquelon", "totals" : {"Cases" : 10, "Deaths" : 0}, "daily" : {"Cases" : 1, "Deaths" : 0}}, {"c_ref" : "St Martin", "totals" : {"Cases" : 256, "Deaths" : 6}, "daily" : {"Cases" : 0, "Deaths" : 0}}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"c_ref": {"type": "string"}, "totals": {"type": "object", "properties": {"Cases": {"type": "integer"}, "Deaths": {"type": "integer"}}, "required": ["Cases", "Deaths"]}, "daily": {"type": "object", "properties": {"Cases": {"type": "integer"}, "Deaths": {"type": "integer"}}, "required": ["Cases", "Deaths"]}}, "required": ["c_ref", "totals", "daily"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"status": {"type": "string"}, "tp": {"type": "integer"}, "msg": {"type": "string"}, "result": {"type": "object", "properties": {"\"123156\"": {"type": "string"}, "\"123139\"": {"type": "string"}, "\"123131\"": {"type": "string"}, "\"123107\"": {"type": "string"}, "\"123090\"": {"type": "string"}, "\"122994\"": {"type": "string"}, "\"122983\"": {"type": "string"}, "\"123194\"": {"type": "string"}, "\"122954\"": {"type": "string"}, "\"122940\"": {"type": "string"}, "\"122921\"": {"type": "string"}, "\"122919\"": {"type": "string"}, "\"122865\"": {"type": "string"}, "\"122854\"": {"type": "string"}, "\"122851\"": {"type": "string"}, "\"122780\"": {"type": "string"}, "\"122772\"": {"type": "string"}, "\"122764\"": {"type": "string"}, "\"122722\"": {"type": "string"}, "\"123181\"": {"type": "string"}, "\"122656\"": {"type": "string"}, "\"122644\"": {"type": "string"}, "\"122620\"": {"type": "string"}, "\"122616\"": {"type": "string"}, "\"122610\"": {"type": "string"}, "\"122608\"": {"type": "string"}, "\"122478\"": {"type": "string"}}, "required": ["\"123156\"", "\"123139\"", "\"123131\"", "\"123107\"", "\"123090\"", "\"122994\"", "\"122983\"", "\"123194\"", "\"122954\"", "\"122940\"", "\"122921\"", "\"122919\"", "\"122865\"", "\"122854\"", "\"122851\"", "\"122780\"", "\"122772\"", "\"122764\"", "\"122722\"", "\"123181\"", "\"122656\"", "\"122644\"", "\"122620\"", "\"122616\"", "\"122610\"", "\"122608\"", "\"122478\""]}, "hits": {"type": "string"}}, "required": ["status", "tp", "msg", "result", "hits"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"status" : "success", "tp" : 1, "msg" : "Cities fetched successfully.", "result" : {"\"123156\"" : "Aleksandrovskoye", "\"123139\"" : "Asino", "\"123131\"" : "Bakchar", "\"123107\"" : "Belyy Yar", "\"123090\"" : "Bogashevo", "\"122994\"" : "Kaltay", "\"122983\"" : "Kargasok", "\"123194\"" : "Kedrovyy", "\"122954\"" : "Kolpashevo", "\"122940\"" : "Kozhevnikovo", "\"122921\"" : "Krasnyy Yar", "\"122919\"" : "Krivosheino", "\"122865\"" : "Mel'nikovo", "\"122854\"" : "Molchanovo", "\"122851\"" : "Moryakovskiy Zaton", "\"122780\"" : "Parabel'", "\"122772\"" : "Pervomayskoye", "\"122764\"" : "Podgornoye", "\"122722\"" : "Samus'", "\"123181\"" : "Seversk", "\"122656\"" : "Strezhevoy", "\"122644\"" : "Svetlyy", "\"122620\"" : "Tegul'det", "\"122616\"" : "Timiryazevskoye", "\"122610\"" : "Togur", "\"122608\"" : "Tomsk", "\"122478\"" : "Zyryanskoye"}, "hits" : "4629"} | json_instruct | {"type": "object", "properties": {"status": {"type": "string"}, "tp": {"type": "integer"}, "msg": {"type": "string"}, "result": {"type": "object", "properties": {"\"123156\"": {"type": "string"}, "\"123139\"": {"type": "string"}, "\"123131\"": {"type": "string"}, "\"123107\"": {"type": "string"}, "\"123090\"": {"type": "string"}, "\"122994\"": {"type": "string"}, "\"122983\"": {"type": "string"}, "\"123194\"": {"type": "string"}, "\"122954\"": {"type": "string"}, "\"122940\"": {"type": "string"}, "\"122921\"": {"type": "string"}, "\"122919\"": {"type": "string"}, "\"122865\"": {"type": "string"}, "\"122854\"": {"type": "string"}, "\"122851\"": {"type": "string"}, "\"122780\"": {"type": "string"}, "\"122772\"": {"type": "string"}, "\"122764\"": {"type": "string"}, "\"122722\"": {"type": "string"}, "\"123181\"": {"type": "string"}, "\"122656\"": {"type": "string"}, "\"122644\"": {"type": "string"}, "\"122620\"": {"type": "string"}, "\"122616\"": {"type": "string"}, "\"122610\"": {"type": "string"}, "\"122608\"": {"type": "string"}, "\"122478\"": {"type": "string"}}, "required": ["\"123156\"", "\"123139\"", "\"123131\"", "\"123107\"", "\"123090\"", "\"122994\"", "\"122983\"", "\"123194\"", "\"122954\"", "\"122940\"", "\"122921\"", "\"122919\"", "\"122865\"", "\"122854\"", "\"122851\"", "\"122780\"", "\"122772\"", "\"122764\"", "\"122722\"", "\"123181\"", "\"122656\"", "\"122644\"", "\"122620\"", "\"122616\"", "\"122610\"", "\"122608\"", "\"122478\""]}, "hits": {"type": "string"}}, "required": ["status", "tp", "msg", "result", "hits"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "number"}}}, "required": ["type", "coordinates"]}, "type": {"type": "string"}, "id": {"type": "string"}, "properties": {"type": "object", "properties": {"other_cities": {"type": "string"}, "city": {"type": "string"}, "state": {"type": "string"}, "county": {"type": "string"}}, "required": ["other_cities", "city", "state", "county"]}}, "required": ["geometry", "type", "id", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"geometry" : {"type" : "Point", "coordinates" : [-73.13, 43.54]}, "type" : "Feature", "id" : "05741", "properties" : {"other_cities" : "Poultney", "city" : "East Poultney", "state" : "VT", "county" : "Rutland County"}} | json_instruct | {"type": "object", "properties": {"geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "number"}}}, "required": ["type", "coordinates"]}, "type": {"type": "string"}, "id": {"type": "string"}, "properties": {"type": "object", "properties": {"other_cities": {"type": "string"}, "city": {"type": "string"}, "state": {"type": "string"}, "county": {"type": "string"}}, "required": ["other_cities", "city", "state", "county"]}}, "required": ["geometry", "type", "id", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "array", "items": {"type": "object", "properties": {"class_name": {"type": "string"}, "bbox": {"type": "string"}, "used": {"type": "boolean"}}, "required": ["class_name", "bbox", "used"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"class_name" : "saturation", "bbox" : "403 406 502 504", "used" : true}, {"class_name" : "contrast", "bbox" : "6 242 150 416", "used" : false}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"class_name": {"type": "string"}, "bbox": {"type": "string"}, "used": {"type": "boolean"}}, "required": ["class_name", "bbox", "used"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"$schema": {"type": "string"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"assignment": {"type": "object", "properties": {"type": {"type": "string"}, "items": {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"period": {"type": "object", "properties": {"type": {"type": "string"}}, "required": ["type"]}, "mode": {"type": "object", "properties": {"type": {"type": "string"}}, "required": ["type"]}, "job": {"type": "object", "properties": {"type": {"type": "string"}}, "required": ["type"]}}, "required": ["period", "mode", "job"]}, "required": {"type": "array", "items": {"type": "string"}}}, "required": ["type", "properties", "required"]}}, "required": ["type", "items"]}}, "required": ["assignment"]}, "required": {"type": "array", "items": {"type": "string"}}}, "required": ["$schema", "type", "properties", "required"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"$schema" : "http://json-schema.org/schema#", "type" : "object", "properties" : {"assignment" : {"type" : "array", "items" : {"type" : "object", "properties" : {"period" : {"type" : "integer"}, "mode" : {"type" : "integer"}, "job" : {"type" : "integer"}}, "required" : ["job", "mode", "period"]}}}, "required" : ["assignment"]} | json_instruct | {"type": "object", "properties": {"$schema": {"type": "string"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"assignment": {"type": "object", "properties": {"type": {"type": "string"}, "items": {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"period": {"type": "object", "properties": {"type": {"type": "string"}}, "required": ["type"]}, "mode": {"type": "object", "properties": {"type": {"type": "string"}}, "required": ["type"]}, "job": {"type": "object", "properties": {"type": {"type": "string"}}, "required": ["type"]}}, "required": ["period", "mode", "job"]}, "required": {"type": "array", "items": {"type": "string"}}}, "required": ["type", "properties", "required"]}}, "required": ["type", "items"]}}, "required": ["assignment"]}, "required": {"type": "array", "items": {"type": "string"}}}, "required": ["$schema", "type", "properties", "required"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [[349, -106, 2016, -163, -396, 238, -142, 109, -275, 3052, -132, -179, 437, -304, -207, 2362, 38, 2008, -2462, -374, -12911, 6046, -254, 7629, 164, -4916, -5288, 98, -3648, 6527, 196, 226], [9991, 9844, 4971, 10037, 9957, 2909, 9816, 9961, 9903, 3525, 10070, 10043, 10045, 9912, 9921, 5137, 9877, 1066, 9101, 10014, 1893, 1537, 10060, 1533, 10045, 1950, 662, 9952, 3418, 728, 9913, 9919]] | json_instruct | {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"govTokenAddress": {"type": "string"}}, "required": ["govTokenAddress"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"govTokenAddress" : "0xa1d0E215a23d7030842FC67cE582a6aFa3CCaB83"} | json_instruct | {"type": "object", "properties": {"govTokenAddress": {"type": "string"}}, "required": ["govTokenAddress"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"status": {"type": "string"}, "segmentation": {"type": "string"}, "url": {"type": "string"}, "character": {"type": "string"}, "label": {"type": "string"}, "id": {"type": "string"}}, "required": ["status", "segmentation", "url", "character", "label", "id"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"status" : "OK", "segmentation" : "candidate-segmentation", "url" : "/segment-image/cd54f0b3-0799-4fab-93fe-6aa1d8c6a9cc/candidate-segmentation/2786", "character" : "N", "label" : "2786", "id" : "cd54f0b3-0799-4fab-93fe-6aa1d8c6a9cc"} | json_instruct | {"type": "object", "properties": {"status": {"type": "string"}, "segmentation": {"type": "string"}, "url": {"type": "string"}, "character": {"type": "string"}, "label": {"type": "string"}, "id": {"type": "string"}}, "required": ["status", "segmentation", "url", "character", "label", "id"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"genre": {"type": "string"}, "event": {"type": "array", "items": {"type": "object", "properties": {"venue_id": {"type": "integer"}, "title": {"type": "string"}, "date": {"type": "string"}, "time": {"type": "string"}, "venue": {"type": "string"}, "lineup": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "musician_id": {"type": "integer"}}, "required": ["name", "musician_id"]}}}, "required": ["venue_id", "title", "date", "time", "venue", "lineup"]}}, "regular_musician": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "musician_id": {"type": "integer"}, "event_count": {"type": "integer"}}, "required": ["name", "musician_id", "event_count"]}}, "name": {"type": "string"}, "musician_id": {"type": "integer"}}, "required": ["genre", "event", "regular_musician", "name", "musician_id"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"genre" : "indie", "event" : [{"venue_id" : 222, "title" : "Brisa", "date" : "2017-09-07", "time" : "21:00", "venue" : "\uc81c\ube44\ub2e4\ubc29", "lineup" : [{"name" : "Brisa", "musician_id" : 6945}]}], "regular_musician" : [{"name" : "Brisa", "musician_id" : 6945, "event_count" : 1}], "name" : "Brisa", "musician_id" : 6945} | json_instruct | {"type": "object", "properties": {"genre": {"type": "string"}, "event": {"type": "array", "items": {"type": "object", "properties": {"venue_id": {"type": "integer"}, "title": {"type": "string"}, "date": {"type": "string"}, "time": {"type": "string"}, "venue": {"type": "string"}, "lineup": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "musician_id": {"type": "integer"}}, "required": ["name", "musician_id"]}}}, "required": ["venue_id", "title", "date", "time", "venue", "lineup"]}}, "regular_musician": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "musician_id": {"type": "integer"}, "event_count": {"type": "integer"}}, "required": ["name", "musician_id", "event_count"]}}, "name": {"type": "string"}, "musician_id": {"type": "integer"}}, "required": ["genre", "event", "regular_musician", "name", "musician_id"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"g1": {"type": "number"}, "g2": {"type": "number"}, "logK": {"type": "number"}, "loc": {"type": "number"}, "logScale": {"type": "number"}}, "required": ["g1", "g2", "logK", "loc", "logScale"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"g1" : 0.9346607354236267, "g2" : 6.813307859317801, "logK" : -3.0982024945050943, "loc" : 0.00496589994197953, "logScale" : -3.9879243258254666} | json_instruct | {"type": "object", "properties": {"g1": {"type": "number"}, "g2": {"type": "number"}, "logK": {"type": "number"}, "loc": {"type": "number"}, "logScale": {"type": "number"}}, "required": ["g1", "g2", "logK", "loc", "logScale"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"code": {"type": "integer"}, "parent": {"type": "integer"}, "name": {"type": "string"}, "latitude": {"type": "string"}, "longitude": {"type": "string"}, "postal": {"type": "array", "items": {"type": "integer"}}, "children": {"type": "array", "items": {"type": "integer"}}}, "required": ["code", "parent", "name", "latitude", "longitude", "postal", "children"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"code" : 7207011, "parent" : 7207, "name" : "BIAU", "latitude" : "1.1904271579993", "longitude" : "121.39863084042", "postal" : [94564, 94563], "children" : [7207011001, 7207011002, 7207011003, 7207011004, 7207011005, 7207011006, 7207011007]} | json_instruct | {"type": "object", "properties": {"code": {"type": "integer"}, "parent": {"type": "integer"}, "name": {"type": "string"}, "latitude": {"type": "string"}, "longitude": {"type": "string"}, "postal": {"type": "array", "items": {"type": "integer"}}, "children": {"type": "array", "items": {"type": "integer"}}}, "required": ["code", "parent", "name", "latitude", "longitude", "postal", "children"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"image_name": {"type": "string"}, "image_height": {"type": "integer"}, "camera_gps": {"type": "string"}, "bbox": {"type": "array", "items": {"type": "object", "properties": {"score": {"type": "number"}, "frontview": {"type": "boolean"}, "other": {"type": "object", "properties": {"region_attributes": {"type": "object", "properties": {"id": {"type": "number"}, "type": {"type": "string"}}, "required": ["id", "type"]}}, "required": ["region_attributes"]}, "category_id": {"type": "string"}, "segmentation": {"type": "string"}, "id": {"type": "string"}, "blurred": {"type": "boolean"}, "goodIllumination": {"type": "boolean"}}, "required": ["score", "frontview", "other", "category_id", "segmentation", "id", "blurred", "goodIllumination"]}}, "camera_id": {"type": "string"}, "image_width": {"type": "integer"}}, "required": ["image_name", "image_height", "camera_gps", "bbox", "camera_id", "image_width"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"image_name" : "lesion2251.png", "image_height" : 512, "camera_gps" : "", "bbox" : [{"score" : 1.0, "frontview" : true, "other" : {"region_attributes" : {"id" : 1.0, "type" : "car"}}, "category_id" : "car", "segmentation" : "220.0,243.0,215.0,241.0,209.0,240.0,200.0,242.0,195.0,247.0,195.0,251.0,195.0,259.0,198.0,266.0,203.0,271.0,212.0,273.0,221.0,271.0,224.0,266.0,222.0,262.0,220.0,256.0,222.0,251.0", "id" : "1", "blurred" : false, "goodIllumination" : true}, {"score" : 1.0, "frontview" : true, "other" : {"region_attributes" : {"id" : 2.0, "type" : "car"}}, "category_id" : "car", "segmentation" : "271.0,313.0,276.0,319.0,283.0,325.0,289.0,325.0,295.0,323.0,299.0,318.0,299.0,313.0,299.0,308.0,294.0,303.0,285.0,300.0,278.0,302.0,273.0,303.0,266.0,303.0,261.0,299.0,257.0,301.0,262.0,304.0,265.0,308.0", "id" : "2", "blurred" : false, "goodIllumination" : true}], "camera_id" : "", "image_width" : 512} | json_instruct | {"type": "object", "properties": {"image_name": {"type": "string"}, "image_height": {"type": "integer"}, "camera_gps": {"type": "string"}, "bbox": {"type": "array", "items": {"type": "object", "properties": {"score": {"type": "number"}, "frontview": {"type": "boolean"}, "other": {"type": "object", "properties": {"region_attributes": {"type": "object", "properties": {"id": {"type": "number"}, "type": {"type": "string"}}, "required": ["id", "type"]}}, "required": ["region_attributes"]}, "category_id": {"type": "string"}, "segmentation": {"type": "string"}, "id": {"type": "string"}, "blurred": {"type": "boolean"}, "goodIllumination": {"type": "boolean"}}, "required": ["score", "frontview", "other", "category_id", "segmentation", "id", "blurred", "goodIllumination"]}}, "camera_id": {"type": "string"}, "image_width": {"type": "integer"}}, "required": ["image_name", "image_height", "camera_gps", "bbox", "camera_id", "image_width"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "array", "items": {"type": "object", "properties": {"manufacturer": {"type": "string"}, "market_name": {"type": "string"}, "codename": {"type": "string"}, "model": {"type": "string"}}, "required": ["manufacturer", "market_name", "codename", "model"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"manufacturer" : "ZTE", "market_name" : "BLADE V0820", "codename" : "ZTE_BLADE_V0820", "model" : "ZTE BLADE V0820"}, {"manufacturer" : "ZTE", "market_name" : "BLADE V8 SE", "codename" : "ZTE_BLADE_V0820", "model" : "BLADE V8 SE"}, {"manufacturer" : "ZTE", "market_name" : "ZTE BLADE V0820", "codename" : "ZTE_BLADE_V0820", "model" : "ZTE BLADE V0820"}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"manufacturer": {"type": "string"}, "market_name": {"type": "string"}, "codename": {"type": "string"}, "model": {"type": "string"}}, "required": ["manufacturer", "market_name", "codename", "model"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {".js": {"type": "string"}}, "required": [".js"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {".js" : "3598ab20c8b8a85f22c3907b5a92f86ddfa8ad12.js"} | json_instruct | {"type": "object", "properties": {".js": {"type": "string"}}, "required": [".js"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "private": {"type": "boolean"}, "dependencies": {"type": "object", "properties": {"@testing-library/jest-dom": {"type": "string"}, "@testing-library/react": {"type": "string"}, "@testing-library/user-event": {"type": "string"}, "antd": {"type": "string"}, "antd-dayjs-webpack-plugin": {"type": "string"}, "axios": {"type": "string"}, "babel-plugin-import": {"type": "string"}, "customize-cra": {"type": "string"}, "less": {"type": "string"}, "less-loader": {"type": "string"}, "react": {"type": "string"}, "react-app-rewired": {"type": "string"}, "react-dom": {"type": "string"}, "react-scripts": {"type": "string"}, "typescript": {"type": "string"}}, "required": ["@testing-library/jest-dom", "@testing-library/react", "@testing-library/user-event", "antd", "antd-dayjs-webpack-plugin", "axios", "babel-plugin-import", "customize-cra", "less", "less-loader", "react", "react-app-rewired", "react-dom", "react-scripts", "typescript"]}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}, "build": {"type": "string"}, "test": {"type": "string"}, "eject": {"type": "string"}, "build_api_client": {"type": "string"}}, "required": ["start", "build", "test", "eject", "build_api_client"]}, "eslintConfig": {"type": "object", "properties": {"extends": {"type": "string"}}, "required": ["extends"]}, "browserslist": {"type": "object", "properties": {"production": {"type": "array", "items": {"type": "string"}}, "development": {"type": "array", "items": {"type": "string"}}}, "required": ["production", "development"]}, "devDependencies": {"type": "object", "properties": {"@openapitools/openapi-generator-cli": {"type": "string"}}, "required": ["@openapitools/openapi-generator-cli"]}}, "required": ["name", "version", "private", "dependencies", "scripts", "eslintConfig", "browserslist", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "tidb-dashboard-ui", "version" : "0.1.0", "private" : true, "dependencies" : {"@testing-library/jest-dom" : "^4.2.4", "@testing-library/react" : "^9.3.2", "@testing-library/user-event" : "^7.1.2", "antd" : "^3.26.5", "antd-dayjs-webpack-plugin" : "^0.0.7", "axios" : "^0.19.0", "babel-plugin-import" : "^1.13.0", "customize-cra" : "^0.9.1", "less" : "^3.10.3", "less-loader" : "^5.0.0", "react" : "^16.12.0", "react-app-rewired" : "^2.1.5", "react-dom" : "^16.12.0", "react-scripts" : "3.3.0", "typescript" : "^3.7.4"}, "scripts" : {"start" : "react-app-rewired start", "build" : "react-app-rewired build", "test" : "react-app-rewired test", "eject" : "react-scripts eject", "build_api_client" : "openapi-generator generate -i ../docs/swagger.yaml -g typescript-axios -o src/utils/dashboard_client"}, "eslintConfig" : {"extends" : "react-app"}, "browserslist" : {"production" : [">0.2%", "not dead", "not op_mini all"], "development" : ["last 1 chrome version", "last 1 firefox version", "last 1 safari version"]}, "devDependencies" : {"@openapitools/openapi-generator-cli" : "^1.0.8-4.2.2"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "private": {"type": "boolean"}, "dependencies": {"type": "object", "properties": {"@testing-library/jest-dom": {"type": "string"}, "@testing-library/react": {"type": "string"}, "@testing-library/user-event": {"type": "string"}, "antd": {"type": "string"}, "antd-dayjs-webpack-plugin": {"type": "string"}, "axios": {"type": "string"}, "babel-plugin-import": {"type": "string"}, "customize-cra": {"type": "string"}, "less": {"type": "string"}, "less-loader": {"type": "string"}, "react": {"type": "string"}, "react-app-rewired": {"type": "string"}, "react-dom": {"type": "string"}, "react-scripts": {"type": "string"}, "typescript": {"type": "string"}}, "required": ["@testing-library/jest-dom", "@testing-library/react", "@testing-library/user-event", "antd", "antd-dayjs-webpack-plugin", "axios", "babel-plugin-import", "customize-cra", "less", "less-loader", "react", "react-app-rewired", "react-dom", "react-scripts", "typescript"]}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}, "build": {"type": "string"}, "test": {"type": "string"}, "eject": {"type": "string"}, "build_api_client": {"type": "string"}}, "required": ["start", "build", "test", "eject", "build_api_client"]}, "eslintConfig": {"type": "object", "properties": {"extends": {"type": "string"}}, "required": ["extends"]}, "browserslist": {"type": "object", "properties": {"production": {"type": "array", "items": {"type": "string"}}, "development": {"type": "array", "items": {"type": "string"}}}, "required": ["production", "development"]}, "devDependencies": {"type": "object", "properties": {"@openapitools/openapi-generator-cli": {"type": "string"}}, "required": ["@openapitools/openapi-generator-cli"]}}, "required": ["name", "version", "private", "dependencies", "scripts", "eslintConfig", "browserslist", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"name": {"type": "string"}, "rarity": {"type": "string"}, "foodrecipetype": {"type": "string"}, "effect": {"type": "string"}, "description": {"type": "string"}, "buffs": {"type": "array", "items": {"type": "string"}}, "images": {"type": "object", "properties": {"image": {"type": "string"}}, "required": ["image"]}, "ingredients": {"type": "array", "items": {"type": "string"}}, "source": {"type": "string"}}, "required": ["name", "rarity", "foodrecipetype", "effect", "description", "buffs", "images", "ingredients", "source"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "Jade Parcels", "rarity" : "4", "foodrecipetype" : "Warrior", "effect" : "Increases all party members' ATK by 224-320 and CRIT Rate by 6-10% for 300s.", "description" : "An exquisite-looking dish. The ham's sweetness is locked inside the fresh vegetables, drizzled with a spicy broth. Delicious is an understatement.", "buffs" : ["ATK"], "images" : {"image" : "https://static.wikia.nocookie.net/gensin-impact/images/b/b3/Item_Jade_Parcels.png"}, "ingredients" : ["Lotus Head x3", "Jueyun Chili x2", "Cabbage x2", "Ham x1"], "source" : "Obtained from \"Cooking Showdown\" (Xiangling's Story Quest, AR15+)"} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "rarity": {"type": "string"}, "foodrecipetype": {"type": "string"}, "effect": {"type": "string"}, "description": {"type": "string"}, "buffs": {"type": "array", "items": {"type": "string"}}, "images": {"type": "object", "properties": {"image": {"type": "string"}}, "required": ["image"]}, "ingredients": {"type": "array", "items": {"type": "string"}}, "source": {"type": "string"}}, "required": ["name", "rarity", "foodrecipetype", "effect", "description", "buffs", "images", "ingredients", "source"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"h": {"type": "array", "items": {"type": "object", "properties": {"d": {"type": "array", "items": {"type": "object", "properties": {"e": {"type": "array", "items": {"type": "string"}}, "f": {"type": "string"}}, "required": ["e", "f"]}}}, "required": ["d"]}}, "stem": {"type": "string"}, "t": {"type": "string"}}, "required": ["h", "stem", "t"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"h" : [{"d" : [{"e" : ["\ufff9`Misakafangay~ `ci~`nira~.\ufffa\ufffb\u4ed6\u5728\u505a\u5927\u8863\u3002"], "f" : "\u6b63\u5728\u505a\u5927\u8863\u3002"}, {"s" : ["`misa~`ora~`ay~", "`misa~`sawfanay~"], "e" : ["\ufff9`Misakafangay~ `a~ `tamdaw~.\ufffa\ufffb\u505a\u5927\u8863\u7684\u4eba\u3002"], "f" : "\u6307\u505a\u5927\u8863\u7684\u4eba\u3002"}]}], "stem" : "kafang", "t" : "misakafangay"} | json_instruct | {"type": "object", "properties": {"h": {"type": "array", "items": {"type": "object", "properties": {"d": {"type": "array", "items": {"type": "object", "properties": {"e": {"type": "array", "items": {"type": "string"}}, "f": {"type": "string"}}, "required": ["e", "f"]}}}, "required": ["d"]}}, "stem": {"type": "string"}, "t": {"type": "string"}}, "required": ["h", "stem", "t"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"personas": {"type": "array", "items": {"type": "object", "properties": {"nombre": {"type": "string"}, "nickname": {"type": "string"}}, "required": ["nombre", "nickname"]}}}, "required": ["personas"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"personas" : [{"nombre" : "chuz", "nickname" : "chuz"}, {"nombre" : "juan", "nickname" : "janito"}, {"nombre" : "juan", "nickname" : "janito"}, {"nombre" : "juan", "nickname" : "janito"}, {"nombre" : "juan", "nickname" : "janito"}, {"nombre" : "juan", "nickname" : "janito"}, {"nombre" : "juan", "nickname" : "janito"}, {"nombre" : "juan", "nickname" : "janito"}, {"nombre" : "juan", "nickname" : "janito"}, {"nombre" : "juan", "nickname" : "janito"}, {"nombre" : "juan", "nickname" : "janito"}, {"nombre" : "juan", "nickname" : "janito"}, {"nombre" : "juan", "nickname" : "janito"}, {"nombre" : "juan", "nickname" : "janito"}, {"nombre" : "juan", "nickname" : "janito"}, {"nombre" : "juan", "nickname" : "janito"}, {"nombre" : "juan", "nickname" : "janito"}, {"nombre" : "juan", "nickname" : "janito"}]} | json_instruct | {"type": "object", "properties": {"personas": {"type": "array", "items": {"type": "object", "properties": {"nombre": {"type": "string"}, "nickname": {"type": "string"}}, "required": ["nombre", "nickname"]}}}, "required": ["personas"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"type": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["type", "coordinates"]}, "properties": {"type": "object", "properties": {"name": {"type": "string"}, "iso2": {"type": "string"}, "admin_level": {"type": "integer"}, "osm_id": {"type": "integer"}, "countrylevel_id": {"type": "string"}, "osm_data": {"type": "object", "properties": {"localname": {"type": "string"}, "official_name": {"type": "string"}, "alltags": {"type": "object", "properties": {"name:cs": {"type": "string"}, "population": {"type": "string"}}, "required": ["name:cs", "population"]}}, "required": ["localname", "official_name", "alltags"]}, "center_lat": {"type": "number"}, "center_lon": {"type": "number"}, "area_m2": {"type": "integer"}, "timezone": {"type": "string"}, "population": {"type": "integer"}, "wikidata_id": {"type": "string"}, "wikipedia_id": {"type": "string"}}, "required": ["name", "iso2", "admin_level", "osm_id", "countrylevel_id", "osm_data", "center_lat", "center_lon", "area_m2", "timezone", "population", "wikidata_id", "wikipedia_id"]}}, "required": ["type", "geometry", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"type" : "Feature", "geometry" : {"type" : "Polygon", "coordinates" : [[[14.722, 50.822], [14.8, 50.823], [14.823, 50.871], [14.9, 50.876], [14.963, 50.862], [15.002, 50.869], [14.989, 50.922], [15.01, 50.938], [15.017, 50.967], [14.968, 50.99], [14.985, 51.011], [15.016, 51.022], [15.077, 51.014], [15.105, 50.992], [15.128, 50.99], [15.144, 51.013], [15.172, 51.02], [15.175, 50.989], [15.237, 50.994], [15.292, 50.954], [15.268, 50.932], [15.277, 50.891], [15.315, 50.86], [15.287, 50.835], [15.289, 50.81], [15.236, 50.828], [15.15, 50.84], [15.118, 50.798], [15.147, 50.777], [15.108, 50.737], [15.101, 50.675], [15.114, 50.667], [15.114, 50.63], [15.128, 50.617], [15.099, 50.57], [15.076, 50.563], [15.017, 50.587], [15.004, 50.604], [14.958, 50.594], [14.932, 50.615], [14.91, 50.615], [14.895, 50.654], [14.909, 50.672], [14.874, 50.694], [14.883, 50.723], [14.845, 50.724], [14.832, 50.75], [14.796, 50.758], [14.774, 50.724], [14.738, 50.726], [14.751, 50.757], [14.715, 50.769], [14.698, 50.813], [14.722, 50.822]]]}, "properties" : {"name" : "okres Liberec", "iso2" : "CZ-513", "admin_level" : 7, "osm_id" : 441329, "countrylevel_id" : "iso2:CZ-513", "osm_data" : {"localname" : "okres Liberec", "official_name" : "", "alltags" : {"name:cs" : "okres Liberec", "population" : "172144"}}, "center_lat" : 50.81, "center_lon" : 15.03, "area_m2" : 988084130, "timezone" : "Europe/Prague", "population" : 175626, "wikidata_id" : "Q739824", "wikipedia_id" : "cs:Okres Liberec"}} | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["type", "coordinates"]}, "properties": {"type": "object", "properties": {"name": {"type": "string"}, "iso2": {"type": "string"}, "admin_level": {"type": "integer"}, "osm_id": {"type": "integer"}, "countrylevel_id": {"type": "string"}, "osm_data": {"type": "object", "properties": {"localname": {"type": "string"}, "official_name": {"type": "string"}, "alltags": {"type": "object", "properties": {"name:cs": {"type": "string"}, "population": {"type": "string"}}, "required": ["name:cs", "population"]}}, "required": ["localname", "official_name", "alltags"]}, "center_lat": {"type": "number"}, "center_lon": {"type": "number"}, "area_m2": {"type": "integer"}, "timezone": {"type": "string"}, "population": {"type": "integer"}, "wikidata_id": {"type": "string"}, "wikipedia_id": {"type": "string"}}, "required": ["name", "iso2", "admin_level", "osm_id", "countrylevel_id", "osm_data", "center_lat", "center_lon", "area_m2", "timezone", "population", "wikidata_id", "wikipedia_id"]}}, "required": ["type", "geometry", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"coords": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["coords"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"coords" : [[[-6.3, -15.0], [-6.2, -15.0]], [[-6.2, -15.0], [-6.2, -15.0]], [[-6.2, -15.0], [-6.2, -15.3]], [[-6.2, -15.3], [-6.2, -15.6]], [[-6.2, -15.6], [-6.2, -15.9]], [[-6.2, -15.9], [-6.2, -16.1]], [[-6.2, -16.1], [-6.2, -16.3]], [[-6.2, -16.3], [-6.2, -16.7]], [[-6.2, -16.7], [-6.2, -17.1]], [[-6.2, -17.1], [-6.1, -17.5]], [[-6.1, -17.5], [-5.9, -18.4]], [[-5.9, -18.4], [-5.6, -19.0]], [[-5.6, -19.0], [-5.2, -19.8]], [[-5.2, -19.8], [-4.5, -20.5]], [[-4.5, -20.5], [-3.9, -20.8]], [[-3.9, -20.8], [-3.0, -21.4]], [[-3.0, -21.4], [-1.8, -21.8]], [[-1.8, -21.8], [-0.4, -22.1]], [[-0.4, -22.1], [0.8, -22.3]], [[0.8, -22.3], [1.9, -22.3]], [[1.9, -22.3], [2.3, -22.3]], [[2.3, -22.3], [2.9, -22.3]], [[2.9, -22.3], [3.3, -22.2]], [[3.3, -22.2], [3.6, -22.1]], [[3.6, -22.1], [4.1, -21.9]], [[4.1, -21.9], [5.1, -21.2]], [[5.1, -21.2], [5.5, -20.8]], [[5.5, -20.8], [5.9, -20.3]], [[5.9, -20.3], [6.2, -19.8]], [[6.2, -19.8], [6.4, -19.4]], [[6.4, -19.4], [6.6, -18.8]], [[6.6, -18.8], [6.8, -18.0]], [[6.8, -18.0], [7.0, -17.0]], [[7.0, -17.0], [7.1, -16.1]], [[7.1, -16.1], [7.1, -14.8]], [[7.1, -14.8], [7.1, -13.5]], [[7.1, -13.5], [7.1, -12.0]], [[7.1, -12.0], [7.2, -10.7]], [[7.2, -10.7], [7.4, -9.3]], [[7.4, -9.3], [7.7, -8.1]], [[7.7, -8.1], [7.9, -7.4]], [[7.9, -7.4], [8.2, -6.8]], [[8.2, -6.8], [8.5, -6.6]], [[8.5, -6.6], [8.6, -6.5]], [[8.6, -6.5], [8.7, -6.5]], [[8.7, -6.5], [8.9, -6.4]], [[8.9, -6.4], [9.1, -6.3]], [[9.1, -6.3], [9.3, -6.3]], [[9.3, -6.3], [9.7, -6.2]], [[9.7, -6.2], [9.9, -6.2]], [[9.9, -6.2], [10.1, -6.1]], [[10.1, -6.1], [10.5, -6.1]], [[10.5, -6.1], [10.9, -6.0]], [[10.9, -6.0], [11.1, -5.9]], [[11.1, -5.9], [11.2, -5.9]]]} | json_instruct | {"type": "object", "properties": {"coords": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["coords"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {"type": "integer"}}, "productReviews": {"type": "array", "items": {}}}, "required": ["userId", "cartId", "preferredProducts", "productReviews"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"userId" : 47364, "cartId" : "94eb51eb-cee9-4ba3-a546-731fca84e42c", "preferredProducts" : [4364, 3300, 2444, 3858, 16, 1128, 670, 1354], "productReviews" : []} | json_instruct | {"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {"type": "integer"}}, "productReviews": {"type": "array", "items": {}}}, "required": ["userId", "cartId", "preferredProducts", "productReviews"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"source": {"type": "string"}, "word": {"type": "string"}, "infinitivo": {"type": "string"}, "participio": {"type": "array", "items": {"type": "string"}}, "gerundio": {"type": "array", "items": {"type": "string"}}, "tenses": {"type": "object", "properties": {"3": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}, "4": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}, "5": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}, "6": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}, "7": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}, "8": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}, "9": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}, "10": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}, "11": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}, "12": {"type": "object", "properties": {"1": {"type": "array", "items": {"type": "string"}}, "2": {"type": "array", "items": {"type": "string"}}, "3": {"type": "array", "items": {"type": "string"}}, "4": {"type": "array", "items": {"type": "string"}}, "5": {"type": "array", "items": {"type": "string"}}}, "required": ["1", "2", "3", "4", "5"]}}, "required": ["3", "4", "5", "6", "7", "8", "9", "10", "11", "12"]}}, "required": ["source", "word", "infinitivo", "participio", "gerundio", "tenses"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"source" : "http://lema.rae.es/drae/srv/search?val=alborotar", "word" : "alborotar", "infinitivo" : "alborotar", "participio" : ["alborotado"], "gerundio" : ["alborotando"], "tenses" : {"3" : [["alboroto"], ["alborotas", "alborot\u00e1s"], ["alborota"], ["alborotamos"], ["alborot\u00e1is", "alborotan"], ["alborotan"]], "4" : [["alborot\u00e9"], ["alborotaste"], ["alborot\u00f3"], ["alborotamos"], ["alborotasteis", "alborotaron"], ["alborotaron"]], "5" : [["alborotaba"], ["alborotabas"], ["alborotaba"], ["alborot\u00e1bamos"], ["alborotabais", "alborotaban"], ["alborotaban"]], "6" : [["alborotar\u00eda"], ["alborotar\u00edas"], ["alborotar\u00eda"], ["alborotar\u00edamos"], ["alborotar\u00edais", "alborotar\u00edan"], ["alborotar\u00edan"]], "7" : [["alborotar\u00e9"], ["alborotar\u00e1s"], ["alborotar\u00e1"], ["alborotaremos"], ["alborotar\u00e9is", "alborotar\u00e1n"], ["alborotar\u00e1n"]], "8" : [["alborote"], ["alborotes"], ["alborote"], ["alborotemos"], ["alborot\u00e9is", "alboroten"], ["alboroten"]], "9" : [["alborotara"], ["alborotaras"], ["alborotara"], ["alborot\u00e1ramos"], ["alborotarais", "alborotaran"], ["alborotaran"]], "10" : [["alborotase"], ["alborotases"], ["alborotase"], ["alborot\u00e1semos"], ["alborotaseis", "alborotasen"], ["alborotasen"]], "11" : [["alborotare"], ["alborotares"], ["alborotare"], ["alborot\u00e1remos"], ["alborotareis", "alborotaren"], ["alborotaren"]], "12" : {"1" : ["alborota"], "2" : ["alborote"], "3" : ["alborotemos"], "4" : ["alborotad"], "5" : ["alboroten"]}}} | json_instruct | {"type": "object", "properties": {"source": {"type": "string"}, "word": {"type": "string"}, "infinitivo": {"type": "string"}, "participio": {"type": "array", "items": {"type": "string"}}, "gerundio": {"type": "array", "items": {"type": "string"}}, "tenses": {"type": "object", "properties": {"3": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}, "4": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}, "5": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}, "6": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}, "7": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}, "8": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}, "9": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}, "10": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}, "11": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}, "12": {"type": "object", "properties": {"1": {"type": "array", "items": {"type": "string"}}, "2": {"type": "array", "items": {"type": "string"}}, "3": {"type": "array", "items": {"type": "string"}}, "4": {"type": "array", "items": {"type": "string"}}, "5": {"type": "array", "items": {"type": "string"}}}, "required": ["1", "2", "3", "4", "5"]}}, "required": ["3", "4", "5", "6", "7", "8", "9", "10", "11", "12"]}}, "required": ["source", "word", "infinitivo", "participio", "gerundio", "tenses"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "array", "items": {"type": "object", "properties": {"LiveFrom": {"type": "string"}, "CaseTypeID": {"type": "string"}, "CaseFieldID": {"type": "string"}, "UserRole": {"type": "string"}, "CRUD": {"type": "string"}}, "required": ["LiveFrom", "CaseTypeID", "CaseFieldID", "UserRole", "CRUD"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"LiveFrom" : "07/03/2022", "CaseTypeID" : "PRLAPPS", "CaseFieldID" : "courtId", "UserRole" : "caseworker-privatelaw-courtadmin", "CRUD" : "CRUD"}, {"LiveFrom" : "07/03/2022", "CaseTypeID" : "PRLAPPS", "CaseFieldID" : "courtId", "UserRole" : "caseworker-privatelaw-solicitor", "CRUD" : "CRUD"}, {"LiveFrom" : "07/03/2022", "CaseTypeID" : "PRLAPPS", "CaseFieldID" : "courtId", "UserRole" : "caseworker-privatelaw-systemupdate", "CRUD" : "CRU"}, {"LiveFrom" : "07/03/2022", "CaseTypeID" : "PRLAPPS", "CaseFieldID" : "courtId", "UserRole" : "caseworker-privatelaw-la", "CRUD" : "R"}, {"LiveFrom" : "07/03/2022", "CaseTypeID" : "PRLAPPS", "CaseFieldID" : "courtId", "UserRole" : "caseworker-privatelaw-superuser", "CRUD" : "R"}, {"LiveFrom" : "07/03/2022", "CaseTypeID" : "PRLAPPS", "CaseFieldID" : "reasonForAmendCourtDetails", "UserRole" : "caseworker-privatelaw-courtadmin", "CRUD" : "CRUD"}, {"LiveFrom" : "07/03/2022", "CaseTypeID" : "PRLAPPS", "CaseFieldID" : "reasonForAmendCourtDetails", "UserRole" : "caseworker-privatelaw-solicitor", "CRUD" : "CRUD"}, {"LiveFrom" : "07/03/2022", "CaseTypeID" : "PRLAPPS", "CaseFieldID" : "reasonForAmendCourtDetails", "UserRole" : "caseworker-privatelaw-systemupdate", "CRUD" : "R"}, {"LiveFrom" : "07/03/2022", "CaseTypeID" : "PRLAPPS", "CaseFieldID" : "reasonForAmendCourtDetails", "UserRole" : "caseworker-privatelaw-la", "CRUD" : "R"}, {"LiveFrom" : "07/03/2022", "CaseTypeID" : "PRLAPPS", "CaseFieldID" : "reasonForAmendCourtDetails", "UserRole" : "caseworker-privatelaw-superuser", "CRUD" : "R"}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"LiveFrom": {"type": "string"}, "CaseTypeID": {"type": "string"}, "CaseFieldID": {"type": "string"}, "UserRole": {"type": "string"}, "CRUD": {"type": "string"}}, "required": ["LiveFrom", "CaseTypeID", "CaseFieldID", "UserRole", "CRUD"]}, "$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": "string"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [["500236125001", "\u9f99\u5c71\u793e\u533a\u5c45\u59d4\u4f1a", "121", "0"], ["500236125002", "\u5408\u8425\u793e\u533a\u5c45\u59d4\u4f1a", "122", "0"], ["500236125003", "\u7ea2\u9f99\u793e\u533a\u5c45\u6c11\u59d4\u5458\u4f1a", "220", "0"], ["500236125200", "\u70df\u5c71\u6751\u6c11\u59d4\u5458\u4f1a", "220", "0"], ["500236125201", "\u5b89\u5bb6\u6751\u6c11\u59d4\u5458\u4f1a", "220", "0"], ["500236125202", "\u5149\u660e\u6751\u6c11\u59d4\u5458\u4f1a", "220", "0"], ["500236125203", "\u5927\u5761\u6751\u6c11\u59d4\u5458\u4f1a", "220", "0"], ["500236125205", "\u5be8\u6c9f\u6751\u6c11\u59d4\u5458\u4f1a", "220", "0"], ["500236125206", "\u6469\u5929\u6751\u6c11\u59d4\u5458\u4f1a", "220", "0"], ["500236125207", "\u4e5d\u6d1e\u6751\u6c11\u59d4\u5458\u4f1a", "220", "0"], ["500236125208", "\u5927\u5730\u6751\u6c11\u59d4\u5458\u4f1a", "220", "0"], ["500236125209", "\u4e09\u6e7e\u6751\u6c11\u59d4\u5458\u4f1a", "220", "0"], ["500236125210", "\u661f\u5149\u6751\u6c11\u59d4\u5458\u4f1a", "220", "0"], ["500236125211", "\u56db\u6e7e\u6751\u6c11\u59d4\u5458\u4f1a", "220", "0"]] | json_instruct | {"type": "array", "items": {"type": "array", "items": {"type": "string"}}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"cSpell.words": {"type": "array", "items": {"type": "string"}}, "deno.config": {"type": "string"}, "deno.enable": {"type": "boolean"}, "deno.importMap": {"type": "string"}, "editor.tabSize": {"type": "integer"}, "markdown.extension.toc.updateOnSave": {"type": "boolean"}}, "required": ["cSpell.words", "deno.config", "deno.enable", "deno.importMap", "editor.tabSize", "markdown.extension.toc.updateOnSave"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"cSpell.words" : ["deno", "zettel"], "deno.config" : "./tsconfig.json", "deno.enable" : true, "deno.importMap" : "./import_map.json", "editor.tabSize" : 2, "markdown.extension.toc.updateOnSave" : false} | json_instruct | {"type": "object", "properties": {"cSpell.words": {"type": "array", "items": {"type": "string"}}, "deno.config": {"type": "string"}, "deno.enable": {"type": "boolean"}, "deno.importMap": {"type": "string"}, "editor.tabSize": {"type": "integer"}, "markdown.extension.toc.updateOnSave": {"type": "boolean"}}, "required": ["cSpell.words", "deno.config", "deno.enable", "deno.importMap", "editor.tabSize", "markdown.extension.toc.updateOnSave"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"nom": {"type": "string"}, "dpt": {"type": "string"}, "inscrits": {"type": "integer"}, "abs": {"type": "integer"}, "votants": {"type": "integer"}, "blancs": {"type": "integer"}, "nuls": {"type": "integer"}, "exp": {"type": "integer"}, "res": {"type": "array", "items": {"type": "object", "properties": {"panneau": {"type": "string"}, "voix": {"type": "integer"}}, "required": ["panneau", "voix"]}}}, "required": ["nom", "dpt", "inscrits", "abs", "votants", "blancs", "nuls", "exp", "res"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"nom" : "Aubigny", "dpt" : "Somme", "inscrits" : 377, "abs" : 49, "votants" : 328, "blancs" : 6, "nuls" : 7, "exp" : 315, "res" : [{"panneau" : "2", "voix" : 108}, {"panneau" : "3", "voix" : 61}, {"panneau" : "11", "voix" : 51}, {"panneau" : "9", "voix" : 46}, {"panneau" : "1", "voix" : 17}, {"panneau" : "4", "voix" : 16}, {"panneau" : "6", "voix" : 5}, {"panneau" : "5", "voix" : 4}, {"panneau" : "8", "voix" : 4}, {"panneau" : "10", "voix" : 3}, {"panneau" : "7", "voix" : 0}]} | json_instruct | {"type": "object", "properties": {"nom": {"type": "string"}, "dpt": {"type": "string"}, "inscrits": {"type": "integer"}, "abs": {"type": "integer"}, "votants": {"type": "integer"}, "blancs": {"type": "integer"}, "nuls": {"type": "integer"}, "exp": {"type": "integer"}, "res": {"type": "array", "items": {"type": "object", "properties": {"panneau": {"type": "string"}, "voix": {"type": "integer"}}, "required": ["panneau", "voix"]}}}, "required": ["nom", "dpt", "inscrits", "abs", "votants", "blancs", "nuls", "exp", "res"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "authors": {"type": "array", "items": {"type": "string"}}, "main": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "license": {"type": "string"}, "homepage": {"type": "string"}, "ignore": {"type": "array", "items": {"type": "string"}}, "dependencies": {"type": "object", "properties": {"polymer": {"type": "string"}}, "required": ["polymer"]}, "devDependencies": {"type": "object", "properties": {"iron-component-page": {"type": "string"}, "web-component-tester": {"type": "string"}}, "required": ["iron-component-page", "web-component-tester"]}}, "required": ["name", "version", "authors", "main", "keywords", "license", "homepage", "ignore", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "current-slide", "version" : "0.1.1", "authors" : ["Daniel Llewellyn <daniel@bowlhat.net>"], "main" : "current-slide.html", "keywords" : ["web-components"], "license" : "MIT", "homepage" : "http://diddledan.github.io/current-slide", "ignore" : ["**/.*", "node_modules", "bower_components", "test", "tests", "demo"], "dependencies" : {"polymer" : "Polymer/polymer#^1.0.0"}, "devDependencies" : {"iron-component-page" : "PolymerElements/iron-component-page#^0.9.3", "web-component-tester" : "*"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "authors": {"type": "array", "items": {"type": "string"}}, "main": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "license": {"type": "string"}, "homepage": {"type": "string"}, "ignore": {"type": "array", "items": {"type": "string"}}, "dependencies": {"type": "object", "properties": {"polymer": {"type": "string"}}, "required": ["polymer"]}, "devDependencies": {"type": "object", "properties": {"iron-component-page": {"type": "string"}, "web-component-tester": {"type": "string"}}, "required": ["iron-component-page", "web-component-tester"]}}, "required": ["name", "version", "authors", "main", "keywords", "license", "homepage", "ignore", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"title": {"type": "string"}, "fields": {"type": "array", "items": {"type": "string"}}, "abstract": {"type": "string"}, "citation": {"type": "string"}, "year": {"type": "string"}, "departments": {"type": "array", "items": {"type": "string"}}, "conf": {"type": "string"}, "authors": {"type": "array", "items": {"type": "string"}}, "pages": {"type": "integer"}}, "required": ["title", "fields", "abstract", "citation", "year", "departments", "conf", "authors", "pages"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"title" : "Data miming: inferring spatial object descriptions from human gesture.", "fields" : ["3d modeling", "natural language processing", "proof of concept", "gesture", "voxel"], "abstract" : "Speakers often use hand gestures when talking about or describing physical objects. Such gesture is particularly useful when the speaker is conveying distinctions of shape that are difficult to describe verbally. We present data miming---an approach to making sense of gestures as they are used to describe concrete physical objects. We first observe participants as they use gestures to describe real-world objects to another person. From these observations, we derive the data miming approach, which is based on a voxel representation of the space traced by the speaker's hands over the duration of the gesture. In a final proof-of-concept study, we demonstrate a prototype implementation of matching the input voxel representation to select among a database of known physical objects.", "citation" : "Citations (52)", "year" : "2011", "departments" : ["Hasso Plattner Institute", "Microsoft"], "conf" : "chi", "authors" : ["Christian Holz.....http://dblp.org/pers/hd/h/Holz:Christian", "Andrew Wilson.....http://dblp.org/pers/hd/w/Wilson:Andrew"], "pages" : 10} | json_instruct | {"type": "object", "properties": {"title": {"type": "string"}, "fields": {"type": "array", "items": {"type": "string"}}, "abstract": {"type": "string"}, "citation": {"type": "string"}, "year": {"type": "string"}, "departments": {"type": "array", "items": {"type": "string"}}, "conf": {"type": "string"}, "authors": {"type": "array", "items": {"type": "string"}}, "pages": {"type": "integer"}}, "required": ["title", "fields", "abstract", "citation", "year", "departments", "conf", "authors", "pages"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"features": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "number"}}}, "required": ["type", "coordinates"]}, "properties": {"type": "object", "properties": {"TIMESTAMP UTC": {"type": "string"}, "CLASSIFICATION": {"type": "string"}}, "required": ["TIMESTAMP UTC", "CLASSIFICATION"]}}, "required": ["type", "geometry", "properties"]}}, "type": {"type": "string"}}, "required": ["features", "type"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"features" : [{"type" : "Feature", "geometry" : {"type" : "Point", "coordinates" : [6.301715783333333, 51.59319878728661]}, "properties" : {"TIMESTAMP UTC" : "2020-04-05T10:56:28", "CLASSIFICATION" : "Flying plane"}}, {"type" : "Feature", "geometry" : {"type" : "Point", "coordinates" : [6.301715783333333, 51.59319878728661]}, "properties" : {"TIMESTAMP UTC" : "2020-04-05T10:56:30", "CLASSIFICATION" : "Flying plane"}}], "type" : "FeatureCollection"} | json_instruct | {"type": "object", "properties": {"features": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "number"}}}, "required": ["type", "coordinates"]}, "properties": {"type": "object", "properties": {"TIMESTAMP UTC": {"type": "string"}, "CLASSIFICATION": {"type": "string"}}, "required": ["TIMESTAMP UTC", "CLASSIFICATION"]}}, "required": ["type", "geometry", "properties"]}}, "type": {"type": "string"}}, "required": ["features", "type"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"type": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "number"}}}, "required": ["type", "coordinates"]}, "properties": {"type": "object", "properties": {"point": {"type": "string"}, "name": {"type": "string"}, "site": {"type": "string"}, "planning-permission-status": {"type": "string"}, "maximum-net-dwellings": {"type": "string"}, "minimum-net-dwellings": {"type": "string"}, "site-address": {"type": "string"}, "organisation": {"type": "string"}, "start-date": {"type": "string"}, "hectares": {"type": "string"}, "slug": {"type": "string"}, "entity": {"type": "integer"}, "entry-date": {"type": "string"}}, "required": ["point", "name", "site", "planning-permission-status", "maximum-net-dwellings", "minimum-net-dwellings", "site-address", "organisation", "start-date", "hectares", "slug", "entity", "entry-date"]}}, "required": ["type", "geometry", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"type" : "Feature", "geometry" : {"type" : "Point", "coordinates" : [-0.048367, 51.462945]}, "properties" : {"point" : "POINT(-0.048367 51.462945)", "name" : "PNAAP31", "site" : "PNAAP31", "planning-permission-status" : "not permissioned", "maximum-net-dwellings" : "21", "minimum-net-dwellings" : "17", "site-address" : "117-119 Ivydale Road and 122-148 Ivydale Road", "organisation" : "local-authority-eng:SWK", "start-date" : "2017-12-20", "hectares" : "0.3", "slug" : "/brownfield-land/local-authority-eng/SWK/PNAAP31", "entity" : 496110, "entry-date" : "2017-12-20"}} | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "number"}}}, "required": ["type", "coordinates"]}, "properties": {"type": "object", "properties": {"point": {"type": "string"}, "name": {"type": "string"}, "site": {"type": "string"}, "planning-permission-status": {"type": "string"}, "maximum-net-dwellings": {"type": "string"}, "minimum-net-dwellings": {"type": "string"}, "site-address": {"type": "string"}, "organisation": {"type": "string"}, "start-date": {"type": "string"}, "hectares": {"type": "string"}, "slug": {"type": "string"}, "entity": {"type": "integer"}, "entry-date": {"type": "string"}}, "required": ["point", "name", "site", "planning-permission-status", "maximum-net-dwellings", "minimum-net-dwellings", "site-address", "organisation", "start-date", "hectares", "slug", "entity", "entry-date"]}}, "required": ["type", "geometry", "properties"], "$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": {"type": "integer"}}, "productReviews": {"type": "array", "items": {"type": "object", "properties": {"productId": {"type": "integer"}, "reviewText": {"type": "string"}, "reviewDate": {"type": "string"}}, "required": ["productId", "reviewText", "reviewDate"]}}}, "required": ["userId", "cartId", "preferredProducts", "productReviews"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"userId" : 62410, "cartId" : "264d6ff1-1ea4-4510-ac0f-3eef0bcdaf66", "preferredProducts" : [1107, 1237, 1427, 1419, 3755, 1029, 1269, 1877, 3222], "productReviews" : [{"productId" : 2382, "reviewText" : "this purple is whole-grain.", "reviewDate" : "2016-05-28T00:54:40.5636536+03:00"}]} | json_instruct | {"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {"type": "integer"}}, "productReviews": {"type": "array", "items": {"type": "object", "properties": {"productId": {"type": "integer"}, "reviewText": {"type": "string"}, "reviewDate": {"type": "string"}}, "required": ["productId", "reviewText", "reviewDate"]}}}, "required": ["userId", "cartId", "preferredProducts", "productReviews"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "qualified_name": {"type": "string"}, "examine": {"type": "string"}, "members": {"type": "boolean"}, "release_date": {"type": "string"}, "quest": {"type": "boolean"}, "weight": {"type": "number"}, "value": {"type": "integer"}, "alchemy": {"type": "object", "properties": {"high": {"type": "integer"}, "low": {"type": "integer"}}, "required": ["high", "low"]}, "tradeable": {"type": "boolean"}, "stackable": {"type": "boolean"}, "noteable": {"type": "boolean"}, "equipable": {"type": "boolean"}, "tradeable_ge": {"type": "boolean"}, "buy_limit": {"type": "integer"}, "icon": {"type": "string"}, "wiki_url": {"type": "string"}}, "required": ["id", "name", "qualified_name", "examine", "members", "release_date", "quest", "weight", "value", "alchemy", "tradeable", "stackable", "noteable", "equipable", "tradeable_ge", "buy_limit", "icon", "wiki_url"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : 9192, "name" : "Diamond bolt tips", "qualified_name" : "Diamond bolt tips", "examine" : "Diamond bolt tips.", "members" : true, "release_date" : "2006-07-31", "quest" : false, "weight" : 0.0, "value" : 133, "alchemy" : {"high" : 79, "low" : 53}, "tradeable" : true, "stackable" : true, "noteable" : false, "equipable" : false, "tradeable_ge" : true, "buy_limit" : 11000, "icon" : "iVBORw0KGgoAAAANSUhEUgAAACQAAAAgCAYAAAB6kdqOAAAAo0lEQVR4Xu3RTQrCMBCG4cxNegRv24U/1KKNlhQ0iBVqoYpk4SKLInicT2IWggdwAs4DWWQ2eckoJYQQQvwa4XvCiLDMcyQSRbAbjWo2fQdNsow7itAag7ooUggiuL7H2Vrs1ivutREe3uN+vWBojzjUW+jFnPOXCM9xhHcOt67DqWlgypIzKAjriSesba8r7iClwuMxIIZ97glIKkYIIcS/eQHPu2OBmOIORgAAAABJRU5ErkJggg==", "wiki_url" : "https://oldschool.runescape.wiki/w/Diamond_bolt_tips"} | json_instruct | {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "qualified_name": {"type": "string"}, "examine": {"type": "string"}, "members": {"type": "boolean"}, "release_date": {"type": "string"}, "quest": {"type": "boolean"}, "weight": {"type": "number"}, "value": {"type": "integer"}, "alchemy": {"type": "object", "properties": {"high": {"type": "integer"}, "low": {"type": "integer"}}, "required": ["high", "low"]}, "tradeable": {"type": "boolean"}, "stackable": {"type": "boolean"}, "noteable": {"type": "boolean"}, "equipable": {"type": "boolean"}, "tradeable_ge": {"type": "boolean"}, "buy_limit": {"type": "integer"}, "icon": {"type": "string"}, "wiki_url": {"type": "string"}}, "required": ["id", "name", "qualified_name", "examine", "members", "release_date", "quest", "weight", "value", "alchemy", "tradeable", "stackable", "noteable", "equipable", "tradeable_ge", "buy_limit", "icon", "wiki_url"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"nom": {"type": "string"}, "dpt": {"type": "string"}, "inscrits": {"type": "integer"}, "abs": {"type": "integer"}, "votants": {"type": "integer"}, "blancs": {"type": "integer"}, "nuls": {"type": "integer"}, "exp": {"type": "integer"}, "res": {"type": "array", "items": {"type": "object", "properties": {"panneau": {"type": "string"}, "voix": {"type": "integer"}}, "required": ["panneau", "voix"]}}}, "required": ["nom", "dpt", "inscrits", "abs", "votants", "blancs", "nuls", "exp", "res"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"nom" : "Nexon", "dpt" : "Haute-Vienne", "inscrits" : 1822, "abs" : 266, "votants" : 1556, "blancs" : 34, "nuls" : 20, "exp" : 1502, "res" : [{"panneau" : "3", "voix" : 386}, {"panneau" : "9", "voix" : 309}, {"panneau" : "2", "voix" : 291}, {"panneau" : "11", "voix" : 232}, {"panneau" : "4", "voix" : 108}, {"panneau" : "1", "voix" : 62}, {"panneau" : "8", "voix" : 44}, {"panneau" : "6", "voix" : 28}, {"panneau" : "5", "voix" : 17}, {"panneau" : "10", "voix" : 16}, {"panneau" : "7", "voix" : 9}]} | json_instruct | {"type": "object", "properties": {"nom": {"type": "string"}, "dpt": {"type": "string"}, "inscrits": {"type": "integer"}, "abs": {"type": "integer"}, "votants": {"type": "integer"}, "blancs": {"type": "integer"}, "nuls": {"type": "integer"}, "exp": {"type": "integer"}, "res": {"type": "array", "items": {"type": "object", "properties": {"panneau": {"type": "string"}, "voix": {"type": "integer"}}, "required": ["panneau", "voix"]}}}, "required": ["nom", "dpt", "inscrits", "abs", "votants", "blancs", "nuls", "exp", "res"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"directions": {"type": "array", "items": {"type": "string"}}, "ingredients": {"type": "array", "items": {"type": "string"}}, "language": {"type": "string"}, "source": {"type": "string"}, "tags": {"type": "array", "items": {"type": "string"}}, "title": {"type": "string"}, "url": {"type": "string"}}, "required": ["directions", "ingredients", "language", "source", "tags", "title", "url"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"directions" : ["Simmer chicken with salt and ginger in 2 quarts water in a 5-quart pot, partially covered, skimming froth occasionally, until very tender, about 40 minutes. Transfer chicken with tongs to a bowl, reserving broth. When chicken is cool, discard skin and bones and shred meat.", "Pour broth through a fine sieve into a bowl and clean pot. Return broth to pot with remaining 2 cups water, onion, bouillon cubes, and mushrooms and bring to a boil, covered. Add noodles and cook, covered, over moderate heat, stirring occasionally, 5 minutes. Turn off heat and let stand, covered, 30 minutes. Stir in chicken and heat until hot. Stir in scallion, pepper, and salt to taste."], "ingredients" : ["2 1/2 lb chicken thighs (8)", "2 teaspoons salt", "1 1/2 tablespoons minced fresh ginger", "2 1/2 qt water", "1 large onion, finely chopped", "1 1/2 extra-large (Knorr) chicken-bouillon cubes", "4 small dried shiitake mushrooms", "1/2 lb Chinese bean-thread (cellophane) noodles, cut into 3-inch lengths with kitchen scissors", "1/2 cup chopped scallion", "1 teaspoon black pepper"], "language" : "en-US", "source" : "www.epicurious.com", "tags" : ["Ginger", "Mushroom", "Poultry", "Noodle", "Simmer", "Gourmet"], "title" : "Chicken Long Rice", "url" : "http://www.epicurious.com/recipes/food/views/chicken-long-rice-103053"} | json_instruct | {"type": "object", "properties": {"directions": {"type": "array", "items": {"type": "string"}}, "ingredients": {"type": "array", "items": {"type": "string"}}, "language": {"type": "string"}, "source": {"type": "string"}, "tags": {"type": "array", "items": {"type": "string"}}, "title": {"type": "string"}, "url": {"type": "string"}}, "required": ["directions", "ingredients", "language", "source", "tags", "title", "url"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"feedstocks": {"type": "array", "items": {"type": "string"}}}, "required": ["feedstocks"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"feedstocks" : ["flask-genshi"]} | json_instruct | {"type": "object", "properties": {"feedstocks": {"type": "array", "items": {"type": "string"}}}, "required": ["feedstocks"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"ETag": {"type": "string"}, "Last-Modified": {"type": "string"}, "base": {"type": "object", "properties": {"repo": {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"]}}, "required": ["repo"]}, "closed_at": {"type": "string"}, "created_at": {"type": "string"}, "draft": {"type": "boolean"}, "head": {"type": "object", "properties": {"ref": {"type": "string"}}, "required": ["ref"]}, "html_url": {"type": "string"}, "id": {"type": "integer"}, "labels": {"type": "array", "items": {}}, "mergeable": {"type": "null"}, "mergeable_state": {"type": "string"}, "merged": {"type": "boolean"}, "merged_at": {"type": "string"}, "number": {"type": "integer"}, "state": {"type": "string"}, "updated_at": {"type": "string"}}, "required": ["ETag", "Last-Modified", "base", "closed_at", "created_at", "draft", "head", "html_url", "id", "labels", "mergeable", "mergeable_state", "merged", "merged_at", "number", "state", "updated_at"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"ETag" : "W/\"e02ba1d891ae4920366d8a10c4d1375a030c0f5c5edc51f633d45981b940f0bd\"", "Last-Modified" : "Thu, 11 Feb 2021 21:15:30 GMT", "base" : {"repo" : {"name" : "tinydb-feedstock"}}, "closed_at" : "2021-02-11T21:15:27Z", "created_at" : "2021-02-11T21:09:35Z", "draft" : false, "head" : {"ref" : "this_is_not_a_branch"}, "html_url" : "https://github.com/conda-forge/tinydb-feedstock/pull/33", "id" : 572111128, "labels" : [], "mergeable" : null, "mergeable_state" : "unknown", "merged" : true, "merged_at" : "2021-02-11T21:15:27Z", "number" : 33, "state" : "closed", "updated_at" : "2021-02-11T21:15:30Z"} | json_instruct | {"type": "object", "properties": {"ETag": {"type": "string"}, "Last-Modified": {"type": "string"}, "base": {"type": "object", "properties": {"repo": {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"]}}, "required": ["repo"]}, "closed_at": {"type": "string"}, "created_at": {"type": "string"}, "draft": {"type": "boolean"}, "head": {"type": "object", "properties": {"ref": {"type": "string"}}, "required": ["ref"]}, "html_url": {"type": "string"}, "id": {"type": "integer"}, "labels": {"type": "array", "items": {}}, "mergeable": {"type": "null"}, "mergeable_state": {"type": "string"}, "merged": {"type": "boolean"}, "merged_at": {"type": "string"}, "number": {"type": "integer"}, "state": {"type": "string"}, "updated_at": {"type": "string"}}, "required": ["ETag", "Last-Modified", "base", "closed_at", "created_at", "draft", "head", "html_url", "id", "labels", "mergeable", "mergeable_state", "merged", "merged_at", "number", "state", "updated_at"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"id": {"type": "string"}, "text": {"type": "string"}}, "required": ["id", "text"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "d206-29", "text" : "- 4 -\nmay be k\u00abpt antra ef important developments In these related\nfields.\nV. INFORMATION SERVICES\nHASS will be responalble for collection and publice-\ntion of research findings andwill endeavor to establish a\nnational clearing house and referral center for all those\nrequiring data on any aspect of the use of radio and television\nin education* NA\u00a3B also till continue to publish a weekly\nWashington Report, e monthly Factsheet (similar to that previously\nIssued by JCKT), and its regular professional Newsletter end\nscholarly Journal. It will also maintain a directory of edu\u00ac\ncational radio stations*\nNSTRC will publish the Directory of Educational Tele\u00ac\nvision Stations (formerly issued annually by JCST) and will main\u00ac\ntain its present publications, W& News, Inside Channels, and\nNST Annual Reports together with such other special reports\nor publications ea may be necessary tc interpret activities\nof NSTRO and affiliated stations to each other, to the field,\nsad to the general public.\nNAfiB and NETRC will attempt to coordinate their publi\u00ac\ncations in order to avoid duplication and to service adequately\nall those in or interested in educational radio end\ntelevision*"} | json_instruct | {"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": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "text": {"type": "string"}}, "required": ["id", "text"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"id" : "230224583598", "text" : "\u4e8c\u9f99\u6d9b\u519c\u573a\u865a\u62df\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#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"citations": {"type": "array", "items": {"type": "object", "properties": {"textCitation": {"type": "string"}}, "required": ["textCitation"]}}, "names": {"type": "array", "items": {"type": "string"}}, "language": {"type": "string"}, "lookupTerms": {"type": "array", "items": {"type": "string"}}, "metaLanguage": {"type": "string"}, "remarks": {"type": "string"}, "statement": {"type": "string"}}, "required": ["citations", "names", "language", "lookupTerms", "metaLanguage", "remarks", "statement"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"citations" : [{"textCitation" : "[See haustsms on Metamath](http://us.metamath.org/mpegif/haustsms.html)"}], "names" : ["haustsms"], "language" : "METAMATH_SET_MM", "lookupTerms" : ["#T_cB", "#T_wceq", "#T_cbs", "#T_cfv", "#T_cG", "#T_wph", "#T_wi", "#T_cG", "#T_wcel", "#T_ccmn", "#T_wph", "#T_wi", "#T_cG", "#T_wcel", "#T_ctps", "#T_wph", "#T_wi", "#T_cA", "#T_wcel", "#T_cV", "#T_wph", "#T_wi", "#T_cF", "#T_wf--1", "#T_cA", "#T_wf--2", "#T_cB", "#T_cJ", "#T_wceq", "#T_ctopn", "#T_cfv", "#T_cG", "#T_wph", "#T_wi", "#T_cJ", "#T_wcel", "#T_cha", "#T_wph", "#T_wi", "#T_wmo", "#T_vx", "#T_vx", "#T_wcel", "#T_cG", "#T_ctsu", "#T_cF", "#T_cA", "#T_vx", "#T_cB", "#T_vx", "#T_cF", "#T_vx", "#T_cG", "#T_vx", "#T_cJ", "#T_vx", "#T_wph", "#T_vx"], "metaLanguage" : "METAMATH", "remarks" : " In a Hausdorff topological group, a sum has at most one limit point. (Contributed by Mario Carneiro, 2-Sep-2015.) ", "statement" : "tsmscl.b $e |- B = ( Base ` G ) $.\ntsmscl.1 $e |- ( ph -> G e. CMnd ) $.\ntsmscl.2 $e |- ( ph -> G e. TopSp ) $.\ntsmscl.a $e |- ( ph -> A e. V ) $.\ntsmscl.f $e |- ( ph -> F : A --> B ) $.\nhaustsms.j $e |- J = ( TopOpen ` G ) $.\nhaustsms.h $e |- ( ph -> J e. Haus ) $.\nhaustsms $p |- ( ph -> E* x x e. ( G tsums F ) ) $.\n$d A x $.\n$d B x $.\n$d F x $.\n$d G x $.\n$d J x $.\n$d ph x $."} | json_instruct | {"type": "object", "properties": {"citations": {"type": "array", "items": {"type": "object", "properties": {"textCitation": {"type": "string"}}, "required": ["textCitation"]}}, "names": {"type": "array", "items": {"type": "string"}}, "language": {"type": "string"}, "lookupTerms": {"type": "array", "items": {"type": "string"}}, "metaLanguage": {"type": "string"}, "remarks": {"type": "string"}, "statement": {"type": "string"}}, "required": ["citations", "names", "language", "lookupTerms", "metaLanguage", "remarks", "statement"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"IsRecentlyVerified": {"type": "boolean"}, "ID": {"type": "integer"}, "UUID": {"type": "string"}, "DataProviderID": {"type": "integer"}, "OperatorID": {"type": "integer"}, "OperatorsReference": {"type": "string"}, "UsageTypeID": {"type": "integer"}, "UsageCost": {"type": "string"}, "AddressInfo": {"type": "object", "properties": {"ID": {"type": "integer"}, "Title": {"type": "string"}, "AddressLine1": {"type": "string"}, "Town": {"type": "string"}, "StateOrProvince": {"type": "string"}, "Postcode": {"type": "string"}, "CountryID": {"type": "integer"}, "Latitude": {"type": "number"}, "Longitude": {"type": "number"}, "ContactTelephone1": {"type": "string"}, "DistanceUnit": {"type": "integer"}}, "required": ["ID", "Title", "AddressLine1", "Town", "StateOrProvince", "Postcode", "CountryID", "Latitude", "Longitude", "ContactTelephone1", "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"}, "Quantity": {"type": "integer"}}, "required": ["ID", "ConnectionTypeID", "StatusTypeID", "LevelID", "PowerKW", "CurrentTypeID", "Quantity"]}}, "NumberOfPoints": {"type": "integer"}, "GeneralComments": {"type": "string"}, "StatusTypeID": {"type": "integer"}, "DateLastStatusUpdate": {"type": "string"}, "DataQualityLevel": {"type": "integer"}, "DateCreated": {"type": "string"}, "SubmissionStatusTypeID": {"type": "integer"}}, "required": ["IsRecentlyVerified", "ID", "UUID", "DataProviderID", "OperatorID", "OperatorsReference", "UsageTypeID", "UsageCost", "AddressInfo", "Connections", "NumberOfPoints", "GeneralComments", "StatusTypeID", "DateLastStatusUpdate", "DataQualityLevel", "DateCreated", "SubmissionStatusTypeID"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"IsRecentlyVerified" : false, "ID" : 79214, "UUID" : "7A5FC49E-D9B8-472C-9459-61624EF0D998", "DataProviderID" : 1, "OperatorID" : 23, "OperatorsReference" : "11946", "UsageTypeID" : 4, "UsageCost" : "Free", "AddressInfo" : {"ID" : 79560, "Title" : "Wild Rose Casino & Resort", "AddressLine1" : "777 Wild Rose DR", "Town" : "Jefferson", "StateOrProvince" : "IA", "Postcode" : "50129", "CountryID" : 2, "Latitude" : 42.03649, "Longitude" : -94.381744, "ContactTelephone1" : "(515) 386-7777", "DistanceUnit" : 0}, "Connections" : [{"ID" : 113833, "ConnectionTypeID" : 30, "StatusTypeID" : 50, "LevelID" : 2, "PowerKW" : 16, "CurrentTypeID" : 20, "Quantity" : 1}], "NumberOfPoints" : 1, "GeneralComments" : "1 Tesla Connector, up to 16kW.Available to the public. Self park.", "StatusTypeID" : 50, "DateLastStatusUpdate" : "2017-01-26T21:08:00Z", "DataQualityLevel" : 1, "DateCreated" : "2017-01-26T21:08:00Z", "SubmissionStatusTypeID" : 200} | json_instruct | {"type": "object", "properties": {"IsRecentlyVerified": {"type": "boolean"}, "ID": {"type": "integer"}, "UUID": {"type": "string"}, "DataProviderID": {"type": "integer"}, "OperatorID": {"type": "integer"}, "OperatorsReference": {"type": "string"}, "UsageTypeID": {"type": "integer"}, "UsageCost": {"type": "string"}, "AddressInfo": {"type": "object", "properties": {"ID": {"type": "integer"}, "Title": {"type": "string"}, "AddressLine1": {"type": "string"}, "Town": {"type": "string"}, "StateOrProvince": {"type": "string"}, "Postcode": {"type": "string"}, "CountryID": {"type": "integer"}, "Latitude": {"type": "number"}, "Longitude": {"type": "number"}, "ContactTelephone1": {"type": "string"}, "DistanceUnit": {"type": "integer"}}, "required": ["ID", "Title", "AddressLine1", "Town", "StateOrProvince", "Postcode", "CountryID", "Latitude", "Longitude", "ContactTelephone1", "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"}, "Quantity": {"type": "integer"}}, "required": ["ID", "ConnectionTypeID", "StatusTypeID", "LevelID", "PowerKW", "CurrentTypeID", "Quantity"]}}, "NumberOfPoints": {"type": "integer"}, "GeneralComments": {"type": "string"}, "StatusTypeID": {"type": "integer"}, "DateLastStatusUpdate": {"type": "string"}, "DataQualityLevel": {"type": "integer"}, "DateCreated": {"type": "string"}, "SubmissionStatusTypeID": {"type": "integer"}}, "required": ["IsRecentlyVerified", "ID", "UUID", "DataProviderID", "OperatorID", "OperatorsReference", "UsageTypeID", "UsageCost", "AddressInfo", "Connections", "NumberOfPoints", "GeneralComments", "StatusTypeID", "DateLastStatusUpdate", "DataQualityLevel", "DateCreated", "SubmissionStatusTypeID"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"contests": {"type": "array", "items": {"type": "object", "properties": {"ballot_selections": {"type": "array", "items": {"type": "object", "properties": {"is_placeholder_selection": {"type": "boolean"}, "object_id": {"type": "string"}, "vote": {"type": "integer"}}, "required": ["is_placeholder_selection", "object_id", "vote"]}}, "object_id": {"type": "string"}}, "required": ["ballot_selections", "object_id"]}}, "object_id": {"type": "string"}, "style_id": {"type": "string"}}, "required": ["contests", "object_id", "style_id"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"contests" : [{"ballot_selections" : [{"is_placeholder_selection" : false, "object_id" : "barchi-hallaren-selection", "vote" : 1}, {"is_placeholder_selection" : false, "object_id" : "court-blumhardt-selection", "vote" : 0}, {"is_placeholder_selection" : false, "object_id" : "hildebrand-garritty-selection", "vote" : 0}, {"is_placeholder_selection" : false, "object_id" : "patterson-lariviere-selection", "vote" : 0}, {"is_placeholder_selection" : false, "object_id" : "write-in-selection-president", "vote" : 0}], "object_id" : "president-vice-president-contest"}, {"ballot_selections" : [{"is_placeholder_selection" : false, "object_id" : "franz-selection", "vote" : 1}, {"is_placeholder_selection" : false, "object_id" : "harris-selection", "vote" : 0}, {"is_placeholder_selection" : false, "object_id" : "walace-selection", "vote" : 0}, {"is_placeholder_selection" : false, "object_id" : "windbeck-selection", "vote" : 0}, {"is_placeholder_selection" : false, "object_id" : "sharp-althea-selection", "vote" : 0}, {"is_placeholder_selection" : false, "object_id" : "jackson-selection", "vote" : 0}, {"is_placeholder_selection" : false, "object_id" : "murphy-selection", "vote" : 0}, {"is_placeholder_selection" : false, "object_id" : "york-selection", "vote" : 0}, {"is_placeholder_selection" : false, "object_id" : "chandler-selection", "vote" : 0}], "object_id" : "ozark-governor"}, {"ballot_selections" : [{"is_placeholder_selection" : false, "object_id" : "soliz-selection", "vote" : 1}, {"is_placeholder_selection" : false, "object_id" : "rangel-selection", "vote" : 0}, {"is_placeholder_selection" : false, "object_id" : "witherspoon-smithson-selection", "vote" : 0}], "object_id" : "congress-district-5-contest"}], "object_id" : "ballot-a4a50e32-e967-11eb-b637-acde48001122", "style_id" : "congress-district-5-lacroix"} | json_instruct | {"type": "object", "properties": {"contests": {"type": "array", "items": {"type": "object", "properties": {"ballot_selections": {"type": "array", "items": {"type": "object", "properties": {"is_placeholder_selection": {"type": "boolean"}, "object_id": {"type": "string"}, "vote": {"type": "integer"}}, "required": ["is_placeholder_selection", "object_id", "vote"]}}, "object_id": {"type": "string"}}, "required": ["ballot_selections", "object_id"]}}, "object_id": {"type": "string"}, "style_id": {"type": "string"}}, "required": ["contests", "object_id", "style_id"], "$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": {"bbox": {"type": "string"}, "used": {"type": "boolean"}, "class_name": {"type": "string"}}, "required": ["bbox", "used", "class_name"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"bbox" : "6 1 186 500", "used" : false, "class_name" : "bottle"}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"bbox": {"type": "string"}, "used": {"type": "boolean"}, "class_name": {"type": "string"}}, "required": ["bbox", "used", "class_name"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"PREVALENCE_BY_GENDER_AGE_YEAR": {"type": "object", "properties": {"TRELLIS_NAME": {"type": "array", "items": {}}, "SERIES_NAME": {"type": "array", "items": {}}, "X_CALENDAR_YEAR": {"type": "array", "items": {}}, "Y_PREVALENCE_1000PP": {"type": "array", "items": {}}}, "required": ["TRELLIS_NAME", "SERIES_NAME", "X_CALENDAR_YEAR", "Y_PREVALENCE_1000PP"]}, "PREVALENCE_BY_MONTH": {"type": "object", "properties": {"X_CALENDAR_MONTH": {"type": "array", "items": {}}, "Y_PREVALENCE_1000PP": {"type": "array", "items": {}}}, "required": ["X_CALENDAR_MONTH", "Y_PREVALENCE_1000PP"]}, "PROCEDURE_FREQUENCY_DISTRIBUTION": {"type": "object", "properties": {"Y_NUM_PERSONS": {"type": "integer"}, "X_COUNT": {"type": "integer"}}, "required": ["Y_NUM_PERSONS", "X_COUNT"]}, "PROCEDURES_BY_TYPE": {"type": "object", "properties": {"CONCEPT_NAME": {"type": "string"}, "COUNT_VALUE": {"type": "integer"}}, "required": ["CONCEPT_NAME", "COUNT_VALUE"]}, "AGE_AT_FIRST_OCCURRENCE": {"type": "object", "properties": {"CATEGORY": {"type": "array", "items": {"type": "string"}}, "MIN_VALUE": {"type": "array", "items": {"type": "integer"}}, "P10_VALUE": {"type": "array", "items": {"type": "integer"}}, "P25_VALUE": {"type": "array", "items": {"type": "integer"}}, "MEDIAN_VALUE": {"type": "array", "items": {"type": "integer"}}, "P75_VALUE": {"type": "array", "items": {"type": "integer"}}, "P90_VALUE": {"type": "array", "items": {"type": "integer"}}, "MAX_VALUE": {"type": "array", "items": {"type": "integer"}}}, "required": ["CATEGORY", "MIN_VALUE", "P10_VALUE", "P25_VALUE", "MEDIAN_VALUE", "P75_VALUE", "P90_VALUE", "MAX_VALUE"]}}, "required": ["PREVALENCE_BY_GENDER_AGE_YEAR", "PREVALENCE_BY_MONTH", "PROCEDURE_FREQUENCY_DISTRIBUTION", "PROCEDURES_BY_TYPE", "AGE_AT_FIRST_OCCURRENCE"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"PREVALENCE_BY_GENDER_AGE_YEAR" : {"TRELLIS_NAME" : [], "SERIES_NAME" : [], "X_CALENDAR_YEAR" : [], "Y_PREVALENCE_1000PP" : []}, "PREVALENCE_BY_MONTH" : {"X_CALENDAR_MONTH" : [], "Y_PREVALENCE_1000PP" : []}, "PROCEDURE_FREQUENCY_DISTRIBUTION" : {"Y_NUM_PERSONS" : 0, "X_COUNT" : 1}, "PROCEDURES_BY_TYPE" : {"CONCEPT_NAME" : "EHR order list entry", "COUNT_VALUE" : 27}, "AGE_AT_FIRST_OCCURRENCE" : {"CATEGORY" : ["FEMALE", "MALE"], "MIN_VALUE" : [52, 55], "P10_VALUE" : [52, 55], "P25_VALUE" : [63, 62], "MEDIAN_VALUE" : [67, 69], "P75_VALUE" : [72, 73], "P90_VALUE" : [88, 80], "MAX_VALUE" : [88, 81]}} | json_instruct | {"type": "object", "properties": {"PREVALENCE_BY_GENDER_AGE_YEAR": {"type": "object", "properties": {"TRELLIS_NAME": {"type": "array", "items": {}}, "SERIES_NAME": {"type": "array", "items": {}}, "X_CALENDAR_YEAR": {"type": "array", "items": {}}, "Y_PREVALENCE_1000PP": {"type": "array", "items": {}}}, "required": ["TRELLIS_NAME", "SERIES_NAME", "X_CALENDAR_YEAR", "Y_PREVALENCE_1000PP"]}, "PREVALENCE_BY_MONTH": {"type": "object", "properties": {"X_CALENDAR_MONTH": {"type": "array", "items": {}}, "Y_PREVALENCE_1000PP": {"type": "array", "items": {}}}, "required": ["X_CALENDAR_MONTH", "Y_PREVALENCE_1000PP"]}, "PROCEDURE_FREQUENCY_DISTRIBUTION": {"type": "object", "properties": {"Y_NUM_PERSONS": {"type": "integer"}, "X_COUNT": {"type": "integer"}}, "required": ["Y_NUM_PERSONS", "X_COUNT"]}, "PROCEDURES_BY_TYPE": {"type": "object", "properties": {"CONCEPT_NAME": {"type": "string"}, "COUNT_VALUE": {"type": "integer"}}, "required": ["CONCEPT_NAME", "COUNT_VALUE"]}, "AGE_AT_FIRST_OCCURRENCE": {"type": "object", "properties": {"CATEGORY": {"type": "array", "items": {"type": "string"}}, "MIN_VALUE": {"type": "array", "items": {"type": "integer"}}, "P10_VALUE": {"type": "array", "items": {"type": "integer"}}, "P25_VALUE": {"type": "array", "items": {"type": "integer"}}, "MEDIAN_VALUE": {"type": "array", "items": {"type": "integer"}}, "P75_VALUE": {"type": "array", "items": {"type": "integer"}}, "P90_VALUE": {"type": "array", "items": {"type": "integer"}}, "MAX_VALUE": {"type": "array", "items": {"type": "integer"}}}, "required": ["CATEGORY", "MIN_VALUE", "P10_VALUE", "P25_VALUE", "MEDIAN_VALUE", "P75_VALUE", "P90_VALUE", "MAX_VALUE"]}}, "required": ["PREVALENCE_BY_GENDER_AGE_YEAR", "PREVALENCE_BY_MONTH", "PROCEDURE_FREQUENCY_DISTRIBUTION", "PROCEDURES_BY_TYPE", "AGE_AT_FIRST_OCCURRENCE"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"id": {"type": "integer"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"src:alt_label": {"type": "string"}, "src:geom": {"type": "string"}, "wof:geomhash": {"type": "string"}, "wof:id": {"type": "integer"}, "wof:repo": {"type": "string"}}, "required": ["src:alt_label", "src:geom", "wof:geomhash", "wof:id", "wof:repo"]}, "bbox": {"type": "array", "items": {"type": "number"}}, "geometry": {"type": "object", "properties": {"coordinates": {"type": "array", "items": {"type": "number"}}, "type": {"type": "string"}}, "required": ["coordinates", "type"]}}, "required": ["id", "type", "properties", "bbox", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : 102023225, "type" : "Feature", "properties" : {"src:alt_label" : "quattroshapes_pg", "src:geom" : "quattroshapes_pg", "wof:geomhash" : "2d416b2ce277bb4d7b9e8237e6838fac", "wof:id" : 102023225, "wof:repo" : "whosonfirst-data-admin-my"}, "bbox" : [102.2636, 2.5979, 102.2636, 2.5979], "geometry" : {"coordinates" : [102.2636, 2.5979], "type" : "Point"}} | json_instruct | {"type": "object", "properties": {"id": {"type": "integer"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"src:alt_label": {"type": "string"}, "src:geom": {"type": "string"}, "wof:geomhash": {"type": "string"}, "wof:id": {"type": "integer"}, "wof:repo": {"type": "string"}}, "required": ["src:alt_label", "src:geom", "wof:geomhash", "wof:id", "wof:repo"]}, "bbox": {"type": "array", "items": {"type": "number"}}, "geometry": {"type": "object", "properties": {"coordinates": {"type": "array", "items": {"type": "number"}}, "type": {"type": "string"}}, "required": ["coordinates", "type"]}}, "required": ["id", "type", "properties", "bbox", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"name": {"type": "string"}, "author": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "homepage": {"type": "string"}, "license": {"type": "string"}, "private": {"type": "boolean"}, "main": {"type": "string"}, "types": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "files": {"type": "array", "items": {"type": "string"}}, "keywords": {"type": "array", "items": {"type": "string"}}, "scripts": {"type": "object", "properties": {"build": {"type": "string"}, "prepare": {"type": "string"}}, "required": ["build", "prepare"]}, "dependencies": {"type": "object", "properties": {"@attorn/electron-storage": {"type": "string"}}, "required": ["@attorn/electron-storage"]}, "devDependencies": {"type": "object", "properties": {"typescript": {"type": "string"}}, "required": ["typescript"]}}, "required": ["name", "author", "version", "description", "homepage", "license", "private", "main", "types", "bugs", "repository", "files", "keywords", "scripts", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "@attorn/electron-theme", "author" : "qafoori", "version" : "2.0.2", "description" : "A package for theming electron projects with the ability to create, change, install and uninstall themes", "homepage" : "https://github.com/attorn/-attorn-electron-theme#readme", "license" : "MIT", "private" : false, "main" : "dist/index.js", "types" : "dist/index.d.ts", "bugs" : {"url" : "https://github.com/attorn/-attorn-electron-theme/issues"}, "repository" : {"type" : "git", "url" : "git+https://github.com/attorn/-attorn-electron-theme.git"}, "files" : ["dist", "example"], "keywords" : ["electron", "theme", "electron-theme", "attorn"], "scripts" : {"build" : "tsc", "prepare" : "npm run build"}, "dependencies" : {"@attorn/electron-storage" : "^2.1.1"}, "devDependencies" : {"typescript" : "^4.4.4"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "author": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "homepage": {"type": "string"}, "license": {"type": "string"}, "private": {"type": "boolean"}, "main": {"type": "string"}, "types": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "files": {"type": "array", "items": {"type": "string"}}, "keywords": {"type": "array", "items": {"type": "string"}}, "scripts": {"type": "object", "properties": {"build": {"type": "string"}, "prepare": {"type": "string"}}, "required": ["build", "prepare"]}, "dependencies": {"type": "object", "properties": {"@attorn/electron-storage": {"type": "string"}}, "required": ["@attorn/electron-storage"]}, "devDependencies": {"type": "object", "properties": {"typescript": {"type": "string"}}, "required": ["typescript"]}}, "required": ["name", "author", "version", "description", "homepage", "license", "private", "main", "types", "bugs", "repository", "files", "keywords", "scripts", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"id": {"type": "string"}, "district_id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "district_id", "name"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "3316110009", "district_id" : "3316110", "name" : "MOJOWETAN"} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "district_id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "district_id", "name"], "$schema": "http://json-schema.org/draft-07/schema#"} |
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"}, "module": {"type": "string"}, "unpkg": {"type": "string"}, "browser": {"type": "object", "properties": {"./sfc": {"type": "string"}}, "required": ["./sfc"]}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"markdown": {"type": "string"}}, "required": ["markdown"]}, "devDependencies": {"type": "object", "properties": {}, "required": []}, "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", "module", "unpkg", "browser", "scripts", "keywords", "author", "license", "dependencies", "devDependencies", "repository", "bugs", "homepage"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "@fman42/simple-markdown", "version" : "1.0.1", "description" : "A simple markdown editor allowing use the markdown without some troubles", "main" : "src/dist/SimpleMarkdownEditor.umd.js", "module" : "src/dist/SimpleMarkdownEditor.esm.js", "unpkg" : "src/dist/SimpleMarkdownEditor.min.js", "browser" : {"./sfc" : "src/SimpleMarkdown.vue"}, "scripts" : {"test" : "echo \"Error: no test specified\" && exit 1"}, "keywords" : ["markdown", "vue", "vue", "js", "markdown", "editor", "md", "md", "vue", "js"], "author" : "fman42", "license" : "MIT", "dependencies" : {"markdown" : "^0.5.0"}, "devDependencies" : {}, "repository" : {"type" : "git", "url" : "git+https://github.com/fman42/SimpleMarkdownEditor.git"}, "bugs" : {"url" : "https://github.com/fman42/SimpleMarkdownEditor/issues"}, "homepage" : "https://github.com/fman42/SimpleMarkdownEditor#readme"} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "module": {"type": "string"}, "unpkg": {"type": "string"}, "browser": {"type": "object", "properties": {"./sfc": {"type": "string"}}, "required": ["./sfc"]}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"markdown": {"type": "string"}}, "required": ["markdown"]}, "devDependencies": {"type": "object", "properties": {}, "required": []}, "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", "module", "unpkg", "browser", "scripts", "keywords", "author", "license", "dependencies", "devDependencies", "repository", "bugs", "homepage"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.