input stringlengths 159 2.05k | output stringlengths 5 10.3k | task stringclasses 1
value | schema stringlengths 100 1.99k |
|---|---|---|---|
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "app-monitor"} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"tunnels": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "uri": {"type": "string"}, "public_url": {"type": "string"}, "proto": {"type": "string"}, "config": {"type": ... | {"tunnels" : [{"name" : "command_line (http)", "uri" : "/api/tunnels/command_line%20%28http%29", "public_url" : "https://shopify.ngrok.io", "proto" : "http", "config" : {"addr" : "http://localhost:39351", "inspect" : true}, "metrics" : {"conns" : {"count" : 0, "gauge" : 0, "rate1" : 0, "rate5" : 0, "rate15" : 0, "p50" ... | json_instruct | {"type": "object", "properties": {"tunnels": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "uri": {"type": "string"}, "public_url": {"type": "string"}, "proto": {"type": "string"}, "config": {"type": "object", "properties": {"addr": {"type": "string"}, "inspect": {"type": "boo... |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"_public_key": {"type": "string"}, "private_key": {"type": "string"}, "kid": {"type": "string"}}, "required": ["_public_key", "private_key", "kid"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"_public_key" : "04eb6c4c0b7ffec7a02a9c36919a36f94f45b90d0850ce79f559bf09a6782278", "private_key" : "EJ[1:6xddFlrPUY+3yuQzmhyZTzVHSzOYSJba8oC6QISnq24=:IpBuhnHv95RZfZqot/QP0jzNpiVECqac:QNJTAscXNYMevzVxudaHuvFHA7mZYDhJH/wCABapI0LNoYc27AFwYFJpb+9RF8cuhQlfcL/ZPYqKtmm9NP/CHsn3aQ9n6+vCk9Sz3OV/mnYzNbHczqftMnsvh+vqXcwaUN0XjUn... | json_instruct | {"type": "object", "properties": {"_public_key": {"type": "string"}, "private_key": {"type": "string"}, "kid": {"type": "string"}}, "required": ["_public_key", "private_key", "kid"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "author": {"type": "string"}, "private": {"type": "boolean"}, "scripts": {"type": "object", "properties": {"start":... | {"name" : "treehouse-express-auth", "version" : "1.0.0", "description" : "A project for learning how to add authentication to a web application.", "author" : "Treehouse Island, Inc.", "private" : true, "scripts" : {"start" : "node ./app"}, "dependencies" : {"bcrypt" : "^1.0.3", "body-parser" : "^1.13.3", "connect-mongo... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "author": {"type": "string"}, "private": {"type": "boolean"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}}, "required": ["start"]}, "dependencies": {"type": "objec... |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"id": {"type": "string"}}, "required": ["id"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "76c00bd23ed7914f9072859f8d5dd59f218dec50"} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}}, "required": ["id"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"content": {"type": "string"}, "meta": {"type": "object", "properties": {"subject": {"type": "string"}, "flatMeterage": {"type": "null"}, "roomMeterage": {"type": "null"}, "rent": {"type": "integer"}, "bills": {"type"... | {"content" : "Pok\u00f3j jednoosobowy ul. Dubois do wynaj\u0119cia Wroc\u0142aw \"Rezydencja Dubois\" wynajm\u0119 od 24.11 pok\u00f3j 1osobowy przy ul Dubois w nowej kamienicy (nad Biedronk\u0105). Mieszkanie 2 pokojowe. Ju\u017c mieszka tam studentka. Mieszkanie wyposa\u017cone w aneks kuchenny, pralka, wanna. W poko... | json_instruct | {"type": "object", "properties": {"content": {"type": "string"}, "meta": {"type": "object", "properties": {"subject": {"type": "string"}, "flatMeterage": {"type": "null"}, "roomMeterage": {"type": "null"}, "rent": {"type": "integer"}, "bills": {"type": "integer"}, "deposit": {"type": "null"}, "internetSpeed": {"type": ... |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"state": {"type": "string"}, "preSearchDescription": {"type": "object", "properties": {"gridLength": {"type": "integer"}, "importantParams": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "stri... | {"state" : "DONE", "preSearchDescription" : {"gridLength" : 1, "importantParams" : [{"name" : "max_depth", "vals" : ["5"]}, {"name" : "min_samples", "vals" : ["1"]}, {"name" : "criterion", "vals" : ["gini"]}]}, "postSearchDescription" : {"importantParams" : [{"name" : "criterion", "val" : "gini"}, {"name" : "max_depth"... | json_instruct | {"type": "object", "properties": {"state": {"type": "string"}, "preSearchDescription": {"type": "object", "properties": {"gridLength": {"type": "integer"}, "importantParams": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "vals": {"type": "array", "items": {"type": "string"}}},... |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"argv": {"type": "array", "items": {"type": "string"}}, "display_name": {"type": "string"}, "language": {"type": "string"}}, "required": ["argv", "display_name", "language"], "$schema": "http://json-schema.org/draft-07/schem... | {"argv" : ["conda", "run", "-n", "devdash", "python", "-m", "ipykernel_launcher", "-f", "{connection_file}"], "display_name" : "DevDash Demo (Python 3)", "language" : "python"} | json_instruct | {"type": "object", "properties": {"argv": {"type": "array", "items": {"type": "string"}}, "display_name": {"type": "string"}, "language": {"type": "string"}}, "required": ["argv", "display_name", "language"], "$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#"}
| [[1994, 5], [2004, 12], [2005, 8], [2006, 9], [2007, 10], [2008, 6], [2009, 6], [2010, 9], [2011, 5], [2012, 13], [2013, 8], [2014, 7]] | json_instruct | {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"name": {"type": "string"}, "title": {"type": "string"}, "description": {"type": "string"}, "author": {"type": "string"}, "authors": {"type": "array", "items": {}}, "url": {"type": "string"}, "license": {"type":... | {"name" : "exaltedthird", "title" : "Exalted Third Edition", "description" : "Unofficial Exalted third edition system module for FoundryVTT! Portions of the materials are the copyrights and trademarks of Paradox Interactive AB, and are used with permission. All rights reserved. For more information please visit worldo... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "title": {"type": "string"}, "description": {"type": "string"}, "author": {"type": "string"}, "authors": {"type": "array", "items": {}}, "url": {"type": "string"}, "license": {"type": "string"}, "flags": {"type": "object", "properties": {}, "required": []}, ... |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"developerToken": {"type": "string"}}, "required": ["developerToken"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"developerToken" : "eyJhbGciOiJFUzI1NiIsInR5cCI6IkpXVCIsImtpZCI6IldlYlBsYXlLaWQifQ.eyJpc3MiOiJBTVBXZWJQbGF5IiwiaWF0IjoxNjUxNTk5NzQ2LCJleHAiOjE2NjcxNTE3NDYsInJvb3RfaHR0cHNfb3JpZ2luIjpbImFwcGxlLmNvbSJdfQ.Xa93EjcCYyZA3CooQlonBElmlM-tDamtNySphmvBvq3RMT7aGrc686rhSaM7FpaZycUOo1Dye2pOZeXEQpEaHQ"} | json_instruct | {"type": "object", "properties": {"developerToken": {"type": "string"}}, "required": ["developerToken"], "$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" : "roots:block/runed_obsidian_brick_alt_wall_inventory"} | json_instruct | {"type": "object", "properties": {"parent": {"type": "string"}}, "required": ["parent"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"namespace": {"type": "string"}, "methods": {"type": "array", "items": {"type": "string"}}, "endpoints": {"type": "array", "items": {"type": "object", "properties": {"methods": {"type": "array", "items": {"type": "s... | {"namespace" : "wp/v2", "methods" : ["GET"], "endpoints" : [{"methods" : ["GET"], "args" : {"id" : {"description" : "The widget type id.", "type" : "string", "required" : false}, "context" : {"description" : "Scope under which the request is made; determines fields present in response.", "type" : "string", "enum" : ["v... | json_instruct | {"type": "object", "properties": {"namespace": {"type": "string"}, "methods": {"type": "array", "items": {"type": "string"}}, "endpoints": {"type": "array", "items": {"type": "object", "properties": {"methods": {"type": "array", "items": {"type": "string"}}, "args": {"type": "object", "properties": {"id": {"type": "obj... |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "properties": {"type": "object", "properties": {"id"... | {"type" : "MultiPolygon", "coordinates" : [[[[-93.62894, 36.544038], [-93.628883, 36.546028], [-93.621401, 36.545866], [-93.619181, 36.545807], [-93.617814, 36.545771], [-93.614641, 36.545681], [-93.614723, 36.543109], [-93.614756, 36.542102], [-93.614964, 36.542152], [-93.615142, 36.542183], [-93.615195, 36.542195], [... | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "properties": {"type": "object", "properties": {"id": {"type": "string"}, "type": {"type": "string"}, "name": {... |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"name": {"type": "string"}, "number": {"type": "string"}, "is_illegal": {"type": "boolean"}, "text": {"type": "string"}, "type": {"type": "string"}, "is_monster": {"type": "boolean"}, "is_spell": {"type": "boolean"}, "is_trap":... | {"name" : "Scrounging Goblin", "number" : "12152769", "is_illegal" : false, "text" : "If this card inflicts battle damage to your opponent: They can hand you 1 card from their hand to negate this effect, otherwise you add 1 \"Goblin\" card from your Deck to your hand, except \"Goblin Fan\".", "type" : "Monster", "is_mo... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "number": {"type": "string"}, "is_illegal": {"type": "boolean"}, "text": {"type": "string"}, "type": {"type": "string"}, "is_monster": {"type": "boolean"}, "is_spell": {"type": "boolean"}, "is_trap": {"type": "boolean"}, "species": {"type": "string"}, "attac... |
The schema below describes a JSON structure. Generate a valid example:
{"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "frequency": {"type": "integer"}, "gender": {"type": "string"}}, "required": ["name", "frequency", "gender"]}, "$schema": "http://json-schema.org/draft-07/sche... | [{"name" : "KENTTON", "frequency" : 0, "gender" : "female"}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "frequency": {"type": "integer"}, "gender": {"type": "string"}}, "required": ["name", "frequency", "gender"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"repair_end": {"type": "string"}, "repair_begin": {"type": "string"}, "patches": {"type": "array", "items": {}}}, "required": ["repair_end", "repair_begin", "patches"], "$schema": "http://json-schema.org/draft-07/sch... | {"repair_end" : "2019-07-07 18:38:49.606974", "repair_begin" : "2019-07-07 16:38:46.592484", "patches" : []} | json_instruct | {"type": "object", "properties": {"repair_end": {"type": "string"}, "repair_begin": {"type": "string"}, "patches": {"type": "array", "items": {}}}, "required": ["repair_end", "repair_begin", "patches"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"baseObjects": {"type": "array", "items": {"type": "string"}}, "returnObjects": {"type": "array", "items": {"type": "string"}}, "callbackArgs": {"type": "array", "items": {"type": "object", "properties": {"0": {"type": "stri... | {"baseObjects" : ["[\"q\",\"?\",\"1g\",\"(\",\":\",\"6\",\"x(\",\"n\"]", "[\"q\",\"?\",\"1g\",\"(\",\":\",\"6\",\"x(\",\"n\"]", "[\"q\",\"?\",\"1g\",\"(\",\":\",\"6\",\"x(\",\"n\"]", "[\"q\",\"?\",\"1g\",\"(\",\":\",\"6\",\"x(\",\"n\"]"], "returnObjects" : ["false", "false", "false", "false"], "callbackArgs" : [{"0" : ... | json_instruct | {"type": "object", "properties": {"baseObjects": {"type": "array", "items": {"type": "string"}}, "returnObjects": {"type": "array", "items": {"type": "string"}}, "callbackArgs": {"type": "array", "items": {"type": "object", "properties": {"0": {"type": "string"}, "1": {"type": "integer"}, "2": {"type": "array", "items"... |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"2832": {"type": "string"}, "2830": {"type": "string"}}, "required": ["2832", "2830"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"2832" : "2833", "2830" : "2831"} | json_instruct | {"type": "object", "properties": {"2832": {"type": "string"}, "2830": {"type": "string"}}, "required": ["2832", "2830"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"parent": {"type": "string"}}, "required": ["parent"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"parent" : "mmzreborn:block/sandy_stone_bricks"} | json_instruct | {"type": "object", "properties": {"parent": {"type": "string"}}, "required": ["parent"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"parent": {"type": "string"}, "textures": {"type": "object", "properties": {"layer0": {"type": "string"}}, "required": ["layer0"]}}, "required": ["parent", "textures"], "$schema": "http://json-schema.org/draft-07/sch... | {"parent" : "item/generated", "textures" : {"layer0" : "soot:items/still"}} | json_instruct | {"type": "object", "properties": {"parent": {"type": "string"}, "textures": {"type": "object", "properties": {"layer0": {"type": "string"}}, "required": ["layer0"]}}, "required": ["parent", "textures"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"nom": {"type": "string"}, "circ": {"type": "string"}, "dpt": {"type": "string"}, "inscrits": {"type": "integer"}, "abs": {"type": "integer"}, "votants": {"type": "integer"}, "blancs": {"type": "integer"}, "nu... | {"nom" : "Payra-sur-l'Hers", "circ" : "3\u00e8me circonscription", "dpt" : "Aude", "inscrits" : 156, "abs" : 71, "votants" : 85, "blancs" : 8, "nuls" : 4, "exp" : 73, "res" : [{"nuance" : "REM", "nom" : "Mme Mireille ROBERT", "voix" : 42}, {"nuance" : "SOC", "nom" : "M. Andr\u00e9 VIOLA", "voix" : 31}]} | json_instruct | {"type": "object", "properties": {"nom": {"type": "string"}, "circ": {"type": "string"}, "dpt": {"type": "string"}, "inscrits": {"type": "integer"}, "abs": {"type": "integer"}, "votants": {"type": "integer"}, "blancs": {"type": "integer"}, "nuls": {"type": "integer"}, "exp": {"type": "integer"}, "res": {"type": "array"... |
Following the schema specification below, generate a valid JSON instance:
{"type": "array", "items": {"type": "object", "properties": {"FIELD1": {"type": "integer"}, "key": {"type": "string"}, "star_name": {"type": "string"}, "planet_letter": {"type": "string"}, "discovery_method": {"type": "string"}, "pl_pnum": {"typ... | [{"FIELD1" : 2470, "key" : "Kepler-1587_b", "star_name" : "Kepler-1587", "planet_letter" : "b", "discovery_method" : "Transit", "pl_pnum" : 1, "orbital_period" : 9.4060467, "semi_major" : "NA", "orbital_eccentricity" : "NA", "star_temp" : 5933, "star_radius" : 1.22, "planet_temp" : "NA", "radius" : 1.33, "discovery_yea... | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"FIELD1": {"type": "integer"}, "key": {"type": "string"}, "star_name": {"type": "string"}, "planet_letter": {"type": "string"}, "discovery_method": {"type": "string"}, "pl_pnum": {"type": "integer"}, "orbital_period": {"type": "number"}, "semi_major": {"type"... |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"name": {"type": "string"}, "author": {"type": "string"}, "license": {"type": "string"}, "description": {"type": "string"}, "private": {"type": "boolean"}, "scripts": {"type": "object", "properties": {"lint": ... | {"name" : "boxing-robot", "author" : "Gareth Fuller", "license" : "Apache-2.0", "description" : "A robot that will take hits at me", "private" : false, "scripts" : {"lint" : "lerna run lint --parallel", "test" : "lerna run test --parallel", "bot" : "cd packages/robot && yarn start", "app" : "cd packages/app && yarn sta... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "author": {"type": "string"}, "license": {"type": "string"}, "description": {"type": "string"}, "private": {"type": "boolean"}, "scripts": {"type": "object", "properties": {"lint": {"type": "string"}, "test": {"type": "string"}, "bot": {"type": "string"}, "a... |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"values": {"type": "array", "items": {"type": "string"}}}, "required": ["values"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"values" : ["resourcetrees:bone_leaves", "resourcetrees:clay_leaves", "resourcetrees:coal_leaves", "resourcetrees:cotton_leaves", "resourcetrees:diamond_leaves", "resourcetrees:dirt_leaves", "resourcetrees:emerald_leaves", "resourcetrees:glowstone_leaves", "resourcetrees:gold_leaves", "resourcetrees:gravel_leaves", "r... | json_instruct | {"type": "object", "properties": {"values": {"type": "array", "items": {"type": "string"}}}, "required": ["values"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}, "storybook": {"type": "string"}, "build-storybook": {"type": "string"}}, "require... | {"name" : "storybook", "version" : "0.0.0", "scripts" : {"start" : "yarn storybook", "storybook" : "start-storybook -p 6006", "build-storybook" : "build-storybook"}, "private" : true, "dependencies" : {"@angular/animations" : "~9.1.11", "@angular/common" : "~9.1.11", "@angular/compiler" : "~9.1.11", "@angular/core" : "... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}, "storybook": {"type": "string"}, "build-storybook": {"type": "string"}}, "required": ["start", "storybook", "build-storybook"]}, "private": {"type": "boo... |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"generated_at": {"type": "string"}, "required_by": {"type": "array", "items": {"type": "string"}}, "requires": {"type": "array", "items": {}}, "package": {"type": "string"}}, "required": ["generated_at", "required_by... | {"generated_at" : "2017-01-27T09:37:34.986770", "required_by" : ["pymobiledevice"], "requires" : [], "package" : "ak-m2crypto"} | json_instruct | {"type": "object", "properties": {"generated_at": {"type": "string"}, "required_by": {"type": "array", "items": {"type": "string"}}, "requires": {"type": "array", "items": {}}, "package": {"type": "string"}}, "required": ["generated_at", "required_by", "requires", "package"], "$schema": "http://json-schema.org/draft-07... |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"heading": {"type": "string"}, "title": {"type": "string"}, "slug": {"type": "string"}, "metaDescription": {"type": "string"}, "content": {"type": "string"}, "_id": {"type": "string"}, "deleted": {"type": "boo... | {"heading" : "abcdefghi jklmnnao", "title" : "abcdefghi jklmnnao", "slug" : "abcdefghi-jklmnnao", "metaDescription" : "abcdefghi jklmnnao", "content" : "<p>abcdefghi jklmnnaoabcdefghi jklmnnaoabcdefghi jklmnnao<br></p>", "_id" : "5945cdec550ca11b164c0315", "deleted" : false, "updatedAt" : "2017-06-18T00:48:44.528Z", "c... | json_instruct | {"type": "object", "properties": {"heading": {"type": "string"}, "title": {"type": "string"}, "slug": {"type": "string"}, "metaDescription": {"type": "string"}, "content": {"type": "string"}, "_id": {"type": "string"}, "deleted": {"type": "boolean"}, "updatedAt": {"type": "string"}, "createdAt": {"type": "string"}}, "r... |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"Sources": {"type": "array", "items": {"type": "object", "properties": {"source": {"type": "string"}, "ra": {"type": "number"}, "dec": {"type": "number"}, "epoch": {"type": "null"}, "equinox": {"type": "string"}, "shortname": {... | {"Sources" : [{"source" : "SDSS J164911.16+300048.3", "ra" : 252.2965, "dec" : 30.0135, "epoch" : null, "equinox" : "2000", "shortname" : null, "reference" : "Silv07", "comments" : null}], "Names" : [{"other_name" : "2MASS J16491116+3000483"}, {"other_name" : "SDSS J164911.16+300048.3"}], "Photometry" : [{"band" : "2MA... | json_instruct | {"type": "object", "properties": {"Sources": {"type": "array", "items": {"type": "object", "properties": {"source": {"type": "string"}, "ra": {"type": "number"}, "dec": {"type": "number"}, "epoch": {"type": "null"}, "equinox": {"type": "string"}, "shortname": {"type": "null"}, "reference": {"type": "string"}, "comments... |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "array", "items": {"type": "object", "properties": {"genre_name": {"type": "string"}}, "required": ["genre_name"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"genre_name" : "Rap"}, {"genre_name" : "Hip Hop"}, {"genre_name" : "Pop"}, {"genre_name" : "rap"}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"genre_name": {"type": "string"}}, "required": ["genre_name"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"builtin": {"type": "object", "properties": {"__set__": {"type": "boolean"}, "elements": {"type": "array", "items": {"type": "string"}}}, "required": ["__set__", "elements"]}, "questionable": {"type": "object", "pro... | {"builtin" : {"__set__" : true, "elements" : ["__future__", "argparse", "contextlib", "copy", "ctypes", "datetime", "distutils", "errno", "json", "logging", "os", "platform", "re", "shlex", "shutil", "signal", "stat", "subprocess", "sys", "sysconfig", "tempfile", "unittest", "warnings"]}, "questionable" : {"__set__" : ... | json_instruct | {"type": "object", "properties": {"builtin": {"type": "object", "properties": {"__set__": {"type": "boolean"}, "elements": {"type": "array", "items": {"type": "string"}}}, "required": ["__set__", "elements"]}, "questionable": {"type": "object", "properties": {"__set__": {"type": "boolean"}, "elements": {"type": "array"... |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"name": {"type": "string"}, "symbol": {"type": "string"}, "id": {"type": "string"}, "decimals": {"type": "integer"}, "coingecko_url": {"type": "string"}, "market_cap_usd": {"type": "number"}, "market_cap_rank": {"type": "int... | {"name" : "UpToken", "symbol" : "UP", "id" : "0x6Ba460AB75Cd2c56343b3517ffeBA60748654D26", "decimals" : 8, "coingecko_url" : "https://www.coingecko.com/en/coins/uptoken", "market_cap_usd" : -928224.6580222453, "market_cap_rank" : 11976, "24_hr_volume_usd" : 0.0, "logoURI" : "https://raw.githubusercontent.com/poolsharks... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "symbol": {"type": "string"}, "id": {"type": "string"}, "decimals": {"type": "integer"}, "coingecko_url": {"type": "string"}, "market_cap_usd": {"type": "number"}, "market_cap_rank": {"type": "integer"}, "24_hr_volume_usd": {"type": "number"}, "logoURI": {"t... |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "description": {"type": "string"}, "type": {"type": "string"}, "recipes": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"},... | {"id" : "snapdragon", "name" : "Flor Cr\u00e2nio de Drag\u00e3o", "description" : "Pode ser consumido ap\u00f3s cozinhar. Como um condimento, pode trazer grande destaque de sabores aos pratos.", "type" : "Ingrediente", "recipes" : [{"id" : "cream_stew", "name" : "Ensopado de Creme"}, {"id" : "jewelry_soup", "name" : "E... | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "description": {"type": "string"}, "type": {"type": "string"}, "recipes": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "name"]}}}, "required":... |
Please provide a valid JSON object following this schema:
{"type": "array", "items": {"type": "object", "properties": {"title": {"type": "string"}, "startDate": {"type": "string"}, "endDate": {"type": "string"}, "budget": {"type": "integer"}, "managers": {"type": "array", "items": {"type": "object", "properties": {"na... | [{"title" : "Project 1", "startDate" : "Sep-03-19", "endDate" : "Jan-17-20", "budget" : 127890, "managers" : [{"name" : "Jane Doe", "position" : "Senior Project Manager", "experience" : 14}, {"name" : "Sally Anne", "position" : "Project Manager", "experience" : 8}]}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"title": {"type": "string"}, "startDate": {"type": "string"}, "endDate": {"type": "string"}, "budget": {"type": "integer"}, "managers": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "position": {"type": "string"}, "e... |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"id": {"type": "integer"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"src:alt_label": {"type": "string"}, "src:geom": {"type": "string"}, "wof:geomhash": {"type": "string"}, "wof:id":... | {"id" : 85792245, "type" : "Feature", "properties" : {"src:alt_label" : "quattroshapes_pg", "src:geom" : "quattroshapes_pg", "wof:geomhash" : "b83f35be1ad3cd9d86be9e1cadd73271", "wof:id" : 85792245, "wof:repo" : "whosonfirst-data-admin-gb"}, "bbox" : [-0.170964, 51.631332, -0.170964, 51.631332], "geometry" : {"coordina... | 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": ["... |
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#"}
| [[1970, 6], [1972, 7], [1973, 12], [1974, 13], [1975, 21], [1976, 18], [1977, 36], [1978, 39], [1979, 46], [1980, 59], [1981, 37], [1982, 43], [1983, 42], [1984, 59], [1985, 59], [1986, 60], [1987, 49], [1988, 52], [1989, 69], [1990, 71], [1991, 293], [1992, 111], [1993, 93], [1994, 72], [1995, 71], [1996, 51], [1997, ... | json_instruct | {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"address": {"type": "string"}, "cert_auth_type": {"type": "string"}, "cert_sign": {"type": "string"}, "cert_user_id": {"type": "string"}, "files": {"type": "object", "properties": {"avatar.jpg": {"type": "object", "p... | {"address" : "1oranGeS2xsKZ4jVsu9SVttzgkYXu4k9v", "cert_auth_type" : "web", "cert_sign" : "G2hsnHSf7MWWGY+TMc8EBw+tKK/lKGwcj3qZkhs1MJ08VDjL8Ofdfoi3JuZ7ZDzp/szuMm1LdYWAgJQUK8CeUfc=", "cert_user_id" : "sthetz@zeroid.bit", "files" : {"avatar.jpg" : {"sha512" : "fd4cc9cbeea1d44835cbfd9cc7aa3160d2df4239d7f433d4c43a608222639... | 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": {"avatar.jpg": {"type": "object", "properties": {"sha512": {"type": "string"}, "size": {"type": "integer"}... |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"version": {"type": "string"}, "data": {"type": "array", "items": {"type": "object", "properties": {"hypothesis": {"type": "string"}, "premise": {"type": "string"}, "label": {"type": "string"}}, "required": ["hypothes... | {"version" : "0.1.0", "data" : [{"hypothesis" : "Irmalotte Schneider Poggenburg 4 48485 Neuenkirchen, Kreis Steinfurt Irmalotte-S92@freemail.de 22.4.1992 01636496234", "premise" : " DE Frau Dr. Iramlotte Schneider Poggenburg 4 48485 Neuenkirchen, Kreis Steinfurt Irmalotte-S92@freemail.de 17. Juli 1967 ... | json_instruct | {"type": "object", "properties": {"version": {"type": "string"}, "data": {"type": "array", "items": {"type": "object", "properties": {"hypothesis": {"type": "string"}, "premise": {"type": "string"}, "label": {"type": "string"}}, "required": ["hypothesis", "premise", "label"]}}}, "required": ["version", "data"], "$schem... |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"title": {"type": "string"}, "type": {"type": "string"}, "ID": {"type": "string"}, "textSize": {"type": "string"}, "dest": {"type": "array", "items": {"type": "string"}}, "options": {"type": "array", "items": {"typ... | {"title" : "Trouver le plus grand diviseur commun", "type" : "text", "ID" : "5ND4", "textSize" : "medium", "dest" : ["5ND", "4ND", "3NC", "2N2"], "options" : [{"name" : "Nombres inf\u00e9rieurs \u00e0 36", "vars" : {"a" : "2_6", "b" : "2_5", "c" : "2_6_^${:b}", "n" : "${:a*:b}", "d" : "${:a*:c}"}}, {"name" : "Nombres p... | json_instruct | {"type": "object", "properties": {"title": {"type": "string"}, "type": {"type": "string"}, "ID": {"type": "string"}, "textSize": {"type": "string"}, "dest": {"type": "array", "items": {"type": "string"}}, "options": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "vars": {"type"... |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "start": {"type": "st... | {"name" : "codemirror-6-getting-started", "version" : "1.0.0", "description" : "", "main" : "index.js", "scripts" : {"test" : "echo \"Error: no test specified\" && exit 1", "start" : "parcel src/index.html", "lint" : "yarn eslint . --ext ts,js,json --ignore-path .gitignore", "clean" : "rm -rf dist .cache"}, "author" : ... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "start": {"type": "string"}, "lint": {"type": "string"}, "clean": {"type": "string"}}, "req... |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "repository": {"type": "object", "prop... | {"name" : "reveal.js-d3js", "version" : "1.0.0", "description" : "Add dynamic d3.js visualizations to your reveal.js presentations", "scripts" : {"test" : "echo \"Error: no test specified\" && exit 1"}, "repository" : {"type" : "git", "url" : "git+https://github.com/jlegewie/reveal.js-d3js-plugin.git"}, "keywords" : ["... | json_instruct | {"type": "object", "properties": {"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": "st... |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"type": {"type": "string"}, "description": {"type": "string"}, "default": {"type": "string"}, "enum": {"type": "array", "items": {"type": "string"}}}, "required": ["type", "description", "default", "enum"], "$schema": "http://jso... | {"type" : "string", "description" : "Frequency at which this source is re-run", "default" : "weekly", "enum" : ["once", "weekly", "monthly"]} | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "description": {"type": "string"}, "default": {"type": "string"}, "enum": {"type": "array", "items": {"type": "string"}}}, "required": ["type", "description", "default", "enum"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"reqwest.js": {"type": "string"}, "reqwest.min.js": {"type": "string"}}, "required": ["reqwest.js", "reqwest.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"reqwest.js" : "sha512-VV+fQIzVGbjMNC4XJoDwdBCnrkSaUame4ocKjP1dco9J0v2CjFpHMO974sTj4yqSEqO5JMbsQ3wZ/hRn+zulyg==", "reqwest.min.js" : "sha512-kgckC1nQiPxNyI4eBbhCoNS7uOmgRDazha6cLYKQ4g/Iw6qTTIqwCwiKx6LC6IVtjsX16bsXXIfQJglw68z43A=="} | json_instruct | {"type": "object", "properties": {"reqwest.js": {"type": "string"}, "reqwest.min.js": {"type": "string"}}, "required": ["reqwest.js", "reqwest.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {"type": "integer"}}, "productReviews": {"type": "array", "items": {"type": "object", "properties": {"productId": {... | {"userId" : 63005, "cartId" : "8b5a5bf1-d578-4107-8d26-474f372260eb", "preferredProducts" : [1895, 3993, 2613], "productReviews" : [{"productId" : 4861, "reviewText" : "I saw one of these in Vanuatu and I bought one.", "reviewDate" : "2016-06-05T00:57:13.7310015+03:00"}, {"productId" : 2753, "reviewText" : "It only wor... | 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"}, "reviewD... |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"tmdbKey": {"type": "string"}}, "required": ["tmdbKey"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"tmdbKey" : ""} | json_instruct | {"type": "object", "properties": {"tmdbKey": {"type": "string"}}, "required": ["tmdbKey"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"checkpoint": {"type": "integer"}}, "required": ["checkpoint"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"checkpoint" : 6} | json_instruct | {"type": "object", "properties": {"checkpoint": {"type": "integer"}}, "required": ["checkpoint"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"TODO": {"type": "array", "items": {"type": "string"}}, "NOTE": {"type": "array", "items": {}}, "DOING": {"type": "array", "items": {"type": "string"}}}, "required": ["TODO", "NOTE", "DOING"], "$schema": "http://json-schema.org... | {"TODO" : ["3", "1", "0", "4"], "NOTE" : [], "DOING" : ["2"]} | json_instruct | {"type": "object", "properties": {"TODO": {"type": "array", "items": {"type": "string"}}, "NOTE": {"type": "array", "items": {}}, "DOING": {"type": "array", "items": {"type": "string"}}}, "required": ["TODO", "NOTE", "DOING"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"type": {"type": "string"}, "features": {"type": "array", "items": {"type": "object", "properties": {"geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "... | {"type" : "FeatureCollection", "features" : [{"geometry" : {"type" : "Polygon", "coordinates" : [[[-66.014647, 18.245368], [-66.014178, 18.247246], [-66.010723, 18.250877], [-66.014396, 18.263868], [-66.013971, 18.264706], [-66.007143, 18.266931], [-66.010005, 18.269428], [-66.009744, 18.271024], [-66.008677, 18.27191]... | 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": "numbe... |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "engines": {"type": "object", "properties": {"node": {"type": "string"}}, "required": ["node"]}, "main": {"type": "string"}, "types":... | {"name" : "awilix-hapi", "version" : "0.1.0", "description" : "Awilix plugin for hapi", "engines" : {"node" : ">=6.0.0"}, "main" : "dist/awilix-hapi.js", "types" : "dist/awilix-hapi.d.ts", "files" : ["dist"], "scripts" : {"clean:dist" : "rm -rf dist", "clean:node" : "rm -rf node_modules", "clean:coverage" : "rm -rf cov... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "engines": {"type": "object", "properties": {"node": {"type": "string"}}, "required": ["node"]}, "main": {"type": "string"}, "types": {"type": "string"}, "files": {"type": "array", "items": {"... |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"display-name": {"type": "string"}, "package-name": {"type": "string"}, "latest-version": {"type": "string"}, "1.0.1.308": {"type": "object", "properties": {"url": {"type": "string"}, "file-type": {"type": "string"},... | {"display-name" : "MyHarmony", "package-name" : "logitech-harmony-remote", "latest-version" : "1.0.1.308", "1.0.1.308" : {"url" : "https://app.myharmony.com/prod/win/1.0/MyHarmony-App.msi", "file-type" : ".msi", "iswitches" : ["/qn", "/quiet", "/norestart"], "uswitches" : ["/qn", "/quiet", "/norestart"], "clswitch" : "... | json_instruct | {"type": "object", "properties": {"display-name": {"type": "string"}, "package-name": {"type": "string"}, "latest-version": {"type": "string"}, "1.0.1.308": {"type": "object", "properties": {"url": {"type": "string"}, "file-type": {"type": "string"}, "iswitches": {"type": "array", "items": {"type": "string"}}, "uswitch... |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"clan_cat_name_generator": {"type": "string"}, "next_name": {"type": "string"}, "kit_name": {"type": "string"}, "apprentice_name": {"type": "string"}, "warrior_name": {"type": "string"}, "leader_name": {"type": "str... | {"clan_cat_name_generator" : "\u90e8\u65cf\u8c93\u540d\u751f\u6210\u5668", "next_name" : "\u4e0b\u4e00\u500b", "kit_name" : "\u5e7c\u5d3d\u540d", "apprentice_name" : "\u898b\u7fd2\u751f\u540d", "warrior_name" : "\u6230\u58eb\u540d", "leader_name" : "\u65cf\u9577\u540d", "ancient_cat_name" : "\u9060\u53e4\u8c93\u540d", ... | json_instruct | {"type": "object", "properties": {"clan_cat_name_generator": {"type": "string"}, "next_name": {"type": "string"}, "kit_name": {"type": "string"}, "apprentice_name": {"type": "string"}, "warrior_name": {"type": "string"}, "leader_name": {"type": "string"}, "ancient_cat_name": {"type": "string"}, "about_title": {"type": ... |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"ps": {"type": "integer"}, "xbox": {"type": "integer"}}, "required": ["ps", "xbox"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"ps" : 5987, "xbox" : 1664} | json_instruct | {"type": "object", "properties": {"ps": {"type": "integer"}, "xbox": {"type": "integer"}}, "required": ["ps", "xbox"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"index": {"type": "integer"}, "name": {"type": "string"}, "desc": {"type": "array", "items": {"type": "string"}}, "page": {"type": "string"}, "range": {"type": "string"}, "components": {"type": "array", "items": {"type": "st... | {"index" : 142, "name" : "Greater Invisibility", "desc" : ["You or a creature you touch becomes invisible until the spell ends. Anything the target is wearing or carrying is invisible as long as it is on the target's person."], "page" : "phb 246", "range" : "Touch", "components" : ["V", "S"], "ritual" : false, "duratio... | json_instruct | {"type": "object", "properties": {"index": {"type": "integer"}, "name": {"type": "string"}, "desc": {"type": "array", "items": {"type": "string"}}, "page": {"type": "string"}, "range": {"type": "string"}, "components": {"type": "array", "items": {"type": "string"}}, "ritual": {"type": "boolean"}, "duration": {"type": "... |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"componentChunkName": {"type": "string"}, "path": {"type": "string"}, "result": {"type": "object", "properties": {"pageContext": {"type": "object", "properties": {}, "required": []}}, "required": ["pageContext"]}, "s... | {"componentChunkName" : "component---src-pages-app-builder-js", "path" : "/app/builder/", "result" : {"pageContext" : {}}, "staticQueryHashes" : []} | json_instruct | {"type": "object", "properties": {"componentChunkName": {"type": "string"}, "path": {"type": "string"}, "result": {"type": "object", "properties": {"pageContext": {"type": "object", "properties": {}, "required": []}}, "required": ["pageContext"]}, "staticQueryHashes": {"type": "array", "items": {}}}, "required": ["comp... |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "array", "items": {"type": "object", "properties": {"namaKab": {"type": "string"}, "originalFilename": {"type": "string"}, "namaPartai": {"type": "string"}, "id": {"type": "integer"}, "noUrut": {"type": "integer"}, "nama": {"type": "string"... | [{"namaKab" : "LABUHANBATU", "originalFilename" : "1. Mulia.jpg", "namaPartai" : "Partai Bulan Bintang", "id" : 270435, "noUrut" : 1, "nama" : "MULIA", "stringJenisKelamin" : "Laki-Laki"}, {"namaKab" : "LABUHANBATU", "originalFilename" : "2. M. Hanafiah.jpg", "namaPartai" : "Partai Bulan Bintang", "id" : 267647, "noUru... | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"namaKab": {"type": "string"}, "originalFilename": {"type": "string"}, "namaPartai": {"type": "string"}, "id": {"type": "integer"}, "noUrut": {"type": "integer"}, "nama": {"type": "string"}, "stringJenisKelamin": {"type": "string"}}, "required": ["namaKab", "... |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"id": {"type": "string"}}, "required": ["id"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "2f545b7f7d2a6ddf2c9b0dfb218a832e550ad65a"} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}}, "required": ["id"], "$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"}, "description": {"type": "string"}, "user": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "email": {"type": "string"}, "paypal_ema... | {"id" : 80484, "name" : "Starfox - tabs in title bar in restored window", "description" : "tabs in title bar in restored window and minimized \"Firefox\" menu button.", "user" : {"id" : 171300, "name" : "WesleyNYC", "email" : "redacted", "paypal_email" : null, "homepage" : null, "about" : null, "license" : null}, "upda... | json_instruct | {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "description": {"type": "string"}, "user": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "email": {"type": "string"}, "paypal_email": {"type": "null"}, "homepage": {"type": "null"}, "about... |
Based on the schema below, produce a valid JSON object:
{"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "text": {"type": "string"}}, "required": ["id", "text"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"id" : "150603001001", "text" : "\u65b0\u5317\u793e\u533a"}, {"id" : "150603001002", "text" : "\u8fbe\u5c14\u7f55\u793e\u533a"}, {"id" : "150603001004", "text" : "\u54c8\u5df4\u683c\u5e0c\u793e\u533a"}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "text": {"type": "string"}}, "required": ["id", "text"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"schema_version": {"type": "string"}, "id": {"type": "string"}, "modified": {"type": "string"}, "published": {"type": "string"}, "aliases": {"type": "array", "items": {"type": "string"}}, "details": {"type": "string"... | {"schema_version" : "1.2.0", "id" : "GHSA-v84x-p2pv-wp5c", "modified" : "2022-01-14T00:02:37Z", "published" : "2022-01-11T00:01:03Z", "aliases" : ["CVE-2021-46146"], "details" : "An issue was discovered in MediaWiki before 1.35.5, 1.36.x before 1.36.3, and 1.37.x before 1.37.1. The WikibaseMediaInfo component is vulner... | json_instruct | {"type": "object", "properties": {"schema_version": {"type": "string"}, "id": {"type": "string"}, "modified": {"type": "string"}, "published": {"type": "string"}, "aliases": {"type": "array", "items": {"type": "string"}}, "details": {"type": "string"}, "severity": {"type": "array", "items": {}}, "affected": {"type": "a... |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"ExpandedNodes": {"type": "array", "items": {"type": "string"}}, "SelectedNode": {"type": "string"}, "PreviewInSolutionExplorer": {"type": "boolean"}}, "required": ["ExpandedNodes", "SelectedNode", "PreviewInSoluti... | {"ExpandedNodes" : [""], "SelectedNode" : "\\2020-07-29-now.md", "PreviewInSolutionExplorer" : false} | json_instruct | {"type": "object", "properties": {"ExpandedNodes": {"type": "array", "items": {"type": "string"}}, "SelectedNode": {"type": "string"}, "PreviewInSolutionExplorer": {"type": "boolean"}}, "required": ["ExpandedNodes", "SelectedNode", "PreviewInSolutionExplorer"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "array", "items": {"type": "object", "properties": {"merged": {"type": "string"}, "source": {"type": "string"}}, "required": ["merged", "source"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"merged" : "F:\\work\\dailyWork\\20170821\\NetMe\\app\\build\\intermediates\\res\\merged\\debug\\drawable-v21\\abc_edit_text_material.xml", "source" : "C:\\Users\\huohong.yi\\.android\\build-cache\\88f99c9d3e5fed35c18c23f3eda135c68e138ae5\\output\\res\\drawable-v21\\abc_edit_text_material.xml"}, {"merged" : "F:\\work... | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"merged": {"type": "string"}, "source": {"type": "string"}}, "required": ["merged", "source"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "sortorder": {"type": "integer"}, "rarity": {"type": "string"}, "category": {"type": "string"}, "materialtype": {"type": "string"}, "dropdomain": {"type": "strin... | {"name" : "Nostalgia do Lobo Boreal", "description" : "Material de Ascens\u00e3o de Armas.\nO Rei Lobo, que desprezava os humanos, pensava que n\u00e3o poderia dar uma vida feliz para os humanos, por isso n\u00e3o era digno de se tornar o Senhor dos Ventos do mundo. Portanto, ele escolheu desaparecer, mas a verdade era... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "sortorder": {"type": "integer"}, "rarity": {"type": "string"}, "category": {"type": "string"}, "materialtype": {"type": "string"}, "dropdomain": {"type": "string"}, "daysofweek": {"type": "array", "items": {"type": "string... |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"author": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "name"]}, "date": {"type": "object", "properties": {"day": {"type": "integer"}, "full": {"typ... | {"author" : {"id" : "t2_3oqqn77m", "name" : "JulienDeLucca"}, "date" : {"day" : 1572048000, "full" : 1572103236, "month" : 1569888000, "week" : 1571529600}, "id" : "t3_dnf77c", "misc" : {"postHint" : "image"}, "picture" : {"filesize" : 115803, "fullUrl" : "https://preview.redd.it/sy9ojkmckwu31.jpg?auto=webp&s=24f9326da... | json_instruct | {"type": "object", "properties": {"author": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "name"]}, "date": {"type": "object", "properties": {"day": {"type": "integer"}, "full": {"type": "integer"}, "month": {"type": "integer"}, "week": {"type": "integer"}},... |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"MRRm_new": {"type": "number"}, "MRm_new": {"type": "number"}, "HITS@1m_new": {"type": "number"}, "HITS@3m_new": {"type": "number"}, "HITS@10m_new": {"type": "number"}}, "required": ["MRRm_new", "MRm_new", "HITS@1m_new", "HITS@... | {"MRRm_new" : 0.21344068651610815, "MRm_new" : 2049.0375013272164, "HITS@1m_new" : 0.14528248753244408, "HITS@3m_new" : 0.23009088000206976, "HITS@10m_new" : 0.3459398022763198} | json_instruct | {"type": "object", "properties": {"MRRm_new": {"type": "number"}, "MRm_new": {"type": "number"}, "HITS@1m_new": {"type": "number"}, "HITS@3m_new": {"type": "number"}, "HITS@10m_new": {"type": "number"}}, "required": ["MRRm_new", "MRm_new", "HITS@1m_new", "HITS@3m_new", "HITS@10m_new"], "$schema": "http://json-schema.or... |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"title": {"type": "string"}, "creation_date": {"type": "string"}, "creation_date_earliest": {"type": "string"}, "creation_date_latest": {"type": "string"}, "medium": {"type": "string"}, "accession_number": {"type": "s... | {"title" : "Two bishops standing in back of convertible car, with crowd on sidewalk, and streetcar in background", "creation_date" : "c. 1940-1945", "creation_date_earliest" : "1940-01-01", "creation_date_latest" : "1946-01-01", "medium" : "black and white: Agfa Safety Film", "accession_number" : "2001.35.4225", "id" :... | json_instruct | {"type": "object", "properties": {"title": {"type": "string"}, "creation_date": {"type": "string"}, "creation_date_earliest": {"type": "string"}, "creation_date_latest": {"type": "string"}, "medium": {"type": "string"}, "accession_number": {"type": "string"}, "id": {"type": "string"}, "credit_line": {"type": "string"},... |
Based on the schema below, produce a valid JSON object:
{"type": "array", "items": {"type": "object", "properties": {"namaKab": {"type": "string"}, "originalFilename": {"type": "string"}, "namaPartai": {"type": "string"}, "id": {"type": "integer"}, "noUrut": {"type": "integer"}, "nama": {"type": "string"}, "stringJeni... | [{"namaKab" : "PURWOREJO", "originalFilename" : "Drs. ZUSRON, M.M..jpg", "namaPartai" : "PARTAI AMANAT NASIONAL", "id" : 253165, "noUrut" : 1, "nama" : "Drs. ZUSRON, M.M.", "stringJenisKelamin" : "Laki-Laki"}, {"namaKab" : "PURWOREJO", "originalFilename" : "NURSALIM, S.Pd..jpg", "namaPartai" : "PARTAI AMANAT NASIONAL",... | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"namaKab": {"type": "string"}, "originalFilename": {"type": "string"}, "namaPartai": {"type": "string"}, "id": {"type": "integer"}, "noUrut": {"type": "integer"}, "nama": {"type": "string"}, "stringJenisKelamin": {"type": "string"}}, "required": ["namaKab", "... |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"type": {"type": "string"}, "features": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coord... | {"type" : "FeatureCollection", "features" : [{"type" : "Feature", "geometry" : {"type" : "Point", "coordinates" : [-82.102048, 39.327712]}, "properties" : {"marker-symbol" : "star", "marker-color" : "#607D8B", "marker-size" : "small", "name" : "Jackie O\u2019s Pub & Brewery", "address" : "24 West Union Street, Athens, ... | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "features": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "number"}}}, "required": ["type"... |
Create a JSON structure that matches this schema definition:
{"type": "array", "items": {"type": "array", "items": {"type": "string"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [["530602108201", "\u82cf\u5bb6\u9662\u6751\u6751\u6c11\u59d4\u5458\u4f1a", "121", "0"], ["530602108202", "\u987a\u5c71\u6751\u6751\u6c11\u59d4\u5458\u4f1a", "220", "0"], ["530602108203", "\u8fe4\u90a3\u6751\u6751\u6c11\u59d4\u5458\u4f1a", "220", "0"], ["530602108204", "\u53cc\u6cb3\u6751\u6751\u6c11\u59d4\u5458\u4f1a"... | json_instruct | {"type": "array", "items": {"type": "array", "items": {"type": "string"}}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"frame_id": {"type": "integer"}, "walking": {"type": "string"}, "video_id": {"type": "string"}, "bbs": {"type": "array", "items": {"type": "object", "properties": {"artwork_id": {"type": "string"}, "right": {"type": "number"}, "b... | {"frame_id" : 695, "walking" : "0", "video_id" : "VID_20161007_131547_reduced", "bbs" : [{"artwork_id" : "marzocco", "right" : 0.854145, "bottom" : 0.662606, "top" : 0.143946, "confidence" : 363, "recognized" : true, "bb_big_enough" : true, "class" : "artwork", "left" : 0.382453}], "p_voice" : "0"} | json_instruct | {"type": "object", "properties": {"frame_id": {"type": "integer"}, "walking": {"type": "string"}, "video_id": {"type": "string"}, "bbs": {"type": "array", "items": {"type": "object", "properties": {"artwork_id": {"type": "string"}, "right": {"type": "number"}, "bottom": {"type": "number"}, "top": {"type": "number"}, "c... |
Based on the schema below, produce a valid JSON object:
{"type": "array", "items": {"type": "object", "properties": {"title": {"type": "string"}, "text": {"type": "string"}, "id": {"type": "string"}}, "required": ["title", "text", "id"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"title" : "hello", "text" : "welcome to my Quick-Notes app", "id" : "d3cbd7ad-bc1a-4ecd-b0a4-2e2727b520a3"}, {"title" : "you can add", "text" : "add as many notes as you like", "id" : "4ab73752-df17-4df9-8daa-125ab249a3d8"}, {"title" : "you can delete...", "text" : "as you go so you don't get overwhelmed once a task ... | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"title": {"type": "string"}, "text": {"type": "string"}, "id": {"type": "string"}}, "required": ["title", "text", "id"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"template": {"type": "object", "properties": {"small": {"type": "string"}, "medium": {"type": "string"}, "large": {"type": "string"}}, "required": ["small", "medium", "large"]}, "channels": {"type": "object", "properties": {... | {"template" : {"small" : "https://static-cdn.jtvnw.net/emoticons/v1/{image_id}/1.0", "medium" : "https://static-cdn.jtvnw.net/emoticons/v1/{image_id}/2.0", "large" : "https://static-cdn.jtvnw.net/emoticons/v1/{image_id}/3.0"}, "channels" : {"logicallysound" : {"title" : "LogicallySound", "channel_id" : 32857534, "link"... | json_instruct | {"type": "object", "properties": {"template": {"type": "object", "properties": {"small": {"type": "string"}, "medium": {"type": "string"}, "large": {"type": "string"}}, "required": ["small", "medium", "large"]}, "channels": {"type": "object", "properties": {"logicallysound": {"type": "object", "properties": {"title": {... |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "type": {"type": "string"}, "homepage": {"type": "string"}, "license": {"type": "string"}, "autoload": {"type": "object", "properties": {"psr-4": {"type": "object",... | {"name" : "bernard/bernard-bundle", "description" : "Integrates Bernard into a Symfony2 application.", "type" : "symfony-bundle", "homepage" : "http://bernard.readthedocs.org/", "license" : "MIT", "autoload" : {"psr-4" : {"Bernard\\BernardBundle\\" : ""}}, "require" : {"php" : "^5.6|^7.0", "bernard/bernard" : "1.0.0-al... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "type": {"type": "string"}, "homepage": {"type": "string"}, "license": {"type": "string"}, "autoload": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"Bernard\\BernardBundle\\": {"type": "strin... |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"type": {"type": "string"}, "features": {"type": "array", "items": {"type": "object", "properties": {"geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "ar... | {"type" : "FeatureCollection", "features" : [{"geometry" : {"type" : "Polygon", "coordinates" : [[[-102.080422, 33.582649], [-102.059449, 33.582385], [-102.041531, 33.577877], [-102.026439, 33.577688], [-102.02644, 33.563196], [-101.9569, 33.563228], [-101.956433, 33.55465], [-101.957367, 33.542523], [-101.993597, 33.5... | 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": "numbe... |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"IsRecentlyVerified": {"type": "boolean"}, "ID": {"type": "integer"}, "UUID": {"type": "string"}, "DataProviderID": {"type": "integer"}, "DataProvidersReference": {"type": "string"}, "AddressInfo": {"type": "o... | {"IsRecentlyVerified" : false, "ID" : 182636, "UUID" : "5D071906-114B-44C6-9DFB-CEBB40F39F51", "DataProviderID" : 29, "DataProvidersReference" : "19984", "AddressInfo" : {"ID" : 182995, "Title" : "An der Pl\u00fcschwebwerei 15", "AddressLine1" : "An der Pl\u00fcschwebwerei 15", "Town" : "Grefrath", "Postcode" : "47929"... | json_instruct | {"type": "object", "properties": {"IsRecentlyVerified": {"type": "boolean"}, "ID": {"type": "integer"}, "UUID": {"type": "string"}, "DataProviderID": {"type": "integer"}, "DataProvidersReference": {"type": "string"}, "AddressInfo": {"type": "object", "properties": {"ID": {"type": "integer"}, "Title": {"type": "string"}... |
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... | {"type" : "Feature", "geometry" : {"type" : "Polygon", "coordinates" : [[[153.125, 44.833333333333336], [153.125, 44.916666666666664], [153.25, 44.916666666666664], [153.25, 44.833333333333336], [153.125, 44.833333333333336]]]}, "properties" : {"code" : 675321, "url" : "http://madefor.github.io/0410/api/v1/675321.geojs... | 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": "ob... |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"@metadata": {"type": "object", "properties": {"authors": {"type": "array", "items": {"type": "string"}}}, "required": ["authors"]}, "mainpagetext": {"type": "string"}, "mainpagedocfooter": {"type": "string"}}, "req... | {"@metadata" : {"authors" : ["Husl\u00e5ke"]}, "mainpagetext" : "'''MediaWiki er nu installeret.'''", "mainpagedocfooter" : "Se vores engelskspr\u00e5\u011dede [//meta.wikimedia.org/wiki/MediaWiki_localisation dokument\u00e5sje tilpasnenge'm \u00e5f \u00e6 brugergr\u00e6nseflade] og [//meta.wikimedia.org/wiki/MediaWiki... | json_instruct | {"type": "object", "properties": {"@metadata": {"type": "object", "properties": {"authors": {"type": "array", "items": {"type": "string"}}}, "required": ["authors"]}, "mainpagetext": {"type": "string"}, "mainpagedocfooter": {"type": "string"}}, "required": ["@metadata", "mainpagetext", "mainpagedocfooter"], "$schema": ... |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "bin": {"type": "object", "properties": {"skangular": {"type": "string"}}, "required": ["ska... | {"name" : "skangular", "version" : "1.3.0", "description" : "Angular app generator.", "main" : "./lib/skangular", "bin" : {"skangular" : "./bin/skangular.js"}, "repository" : {"type" : "git", "url" : "https://github.com/Gcuencam/Skangular.git"}, "author" : "Gabriel Cuenca Moncin", "license" : "MIT", "dependencies" : {"... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "bin": {"type": "object", "properties": {"skangular": {"type": "string"}}, "required": ["skangular"]}, "repository": {"type": "object", "properties": {"type": {"typ... |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"directions": {"type": "array", "items": {"type": "string"}}, "ingredients": {"type": "array", "items": {"type": "string"}}, "language": {"type": "string"}, "source": {"type": "string"}, "tags": {"type": "array", "items": {}}, ... | {"directions" : ["Preheat oven to 350 degrees F (175 degrees C). Grease and flour a 9x13-inch pan.", "In a large bowl, stir together cake mix and gelatin mix. Make a well in the center and pour in oil, 1/2 cup water and eggs. Beat on low speed until blended. Scrape bowl, and beat 4 minutes on medium speed. Pour batter ... | json_instruct | {"type": "object", "properties": {"directions": {"type": "array", "items": {"type": "string"}}, "ingredients": {"type": "array", "items": {"type": "string"}}, "language": {"type": "string"}, "source": {"type": "string"}, "tags": {"type": "array", "items": {}}, "title": {"type": "string"}, "url": {"type": "string"}}, "r... |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"name": {"type": "string"}, "symbol": {"type": "string"}, "address": {"type": "string"}, "decimals": {"type": "integer"}, "dharmaVerificationStatus": {"type": "string"}}, "required": ["name", "symbol", "address", "decimals",... | {"name" : "DogDeFiCoin", "symbol" : "DOGDEFI", "address" : "0x02048D70104bAA4F6F267681a1a18161a570FC85", "decimals" : 18, "dharmaVerificationStatus" : "UNVERIFIED"} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "symbol": {"type": "string"}, "address": {"type": "string"}, "decimals": {"type": "integer"}, "dharmaVerificationStatus": {"type": "string"}}, "required": ["name", "symbol", "address", "decimals", "dharmaVerificationStatus"], "$schema": "http://json-schema.o... |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"nom": {"type": "string"}, "circ": {"type": "string"}, "dpt": {"type": "string"}, "inscrits": {"type": "integer"}, "abs": {"type": "integer"}, "votants": {"type": "integer"}, "blancs": {"type": "integer"}, "nuls": {"... | {"nom" : "Bandrele", "circ" : "2\u00e8me circonscription", "dpt" : "Mayotte", "inscrits" : 4123, "abs" : 2300, "votants" : 1823, "blancs" : 50, "nuls" : 93, "exp" : 1680, "res" : [{"nuance" : "LR", "nom" : "M. Mansour KAMARDINE", "voix" : 952}, {"nuance" : "MDM", "nom" : "M. Ibrahim BOINAHERY", "voix" : 231}, {"nuance"... | json_instruct | {"type": "object", "properties": {"nom": {"type": "string"}, "circ": {"type": "string"}, "dpt": {"type": "string"}, "inscrits": {"type": "integer"}, "abs": {"type": "integer"}, "votants": {"type": "integer"}, "blancs": {"type": "integer"}, "nuls": {"type": "integer"}, "exp": {"type": "integer"}, "res": {"type": "array"... |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"type": {"type": "string"}, "title": {"type": "string"}, "id": {"type": "string"}, "bbox": {"type": "array", "items": {"type": "number"}}, "description": {"type": "string"}, "connectsWith": {"type": "array", "items": {"type"... | {"type" : "FeatureCollection", "title" : "Edikukalama", "id" : "419903060", "bbox" : [44.415448, 32.532802, 44.415448, 32.532802], "description" : "The temple of the god \u0160ama\u0161, Edikukalama (\u201cHouse of the Judge of the Land\u201d), was located in the Kumar district of Babylon, in the western half of the in... | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "title": {"type": "string"}, "id": {"type": "string"}, "bbox": {"type": "array", "items": {"type": "number"}}, "description": {"type": "string"}, "connectsWith": {"type": "array", "items": {"type": "string"}}, "names": {"type": "array", "items": {"type": "st... |
Generate sample JSON data that conforms to the following schema definition:
{"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"}
| ["inherited"] | json_instruct | {"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"hash": {"type": "string"}, "parentHash": {"type": "string"}, "number": {"type": "integer"}, "timestamp": {"type": "integer"}, "nonce": {"type": "string"}, "difficulty": {"type": "integer"}, "gasLimit": {"type": "ob... | {"hash" : "0xdf9aaefecd4e2a75dfe39b8b829b93c02776d59e42e4b6157450caf6b8447aa9", "parentHash" : "0xa7993b835ff54feca65379bb8e913f54cee8649bcedc848beb61adcce633e093", "number" : 41054, "timestamp" : 1438831601, "nonce" : "0x9693295c637ef1c7", "difficulty" : 1376798904181, "gasLimit" : {"_hex" : "0x1397"}, "gasUsed" : {"_... | json_instruct | {"type": "object", "properties": {"hash": {"type": "string"}, "parentHash": {"type": "string"}, "number": {"type": "integer"}, "timestamp": {"type": "integer"}, "nonce": {"type": "string"}, "difficulty": {"type": "integer"}, "gasLimit": {"type": "object", "properties": {"_hex": {"type": "string"}}, "required": ["_hex"]... |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"key": {"type": "string"}, "suffix": {"type": "string"}, "positions": {"type": "array", "items": {"type": "object", "properties": {"frets": {"type": "string"}, "fingers": {"type": "string"}, "barres": {"type": "string"}, "capo"... | {"key" : "F", "suffix" : "mmaj11/E", "positions" : [{"frets" : "x76966", "fingers" : "021411", "barres" : "6", "capo" : "true"}, {"frets" : "cbxdbd", "fingers" : "210314", "barres" : "11", "capo" : "true"}, {"frets" : "cbxcbd", "fingers" : "210314", "barres" : "11", "capo" : "true"}, {"frets" : "cbaabx", "fingers" : "4... | json_instruct | {"type": "object", "properties": {"key": {"type": "string"}, "suffix": {"type": "string"}, "positions": {"type": "array", "items": {"type": "object", "properties": {"frets": {"type": "string"}, "fingers": {"type": "string"}, "barres": {"type": "string"}, "capo": {"type": "string"}}, "required": ["frets", "fingers", "ba... |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"acadYear": {"type": "string"}, "preclusion": {"type": "string"}, "description": {"type": "string"}, "title": {"type": "string"}, "department": {"type": "string"}, "faculty": {"type": "string"}, "workload": {"ty... | {"acadYear" : "2019/2020", "preclusion" : "LL4307V/LL5307V/LL6307V EU Maritime Law", "description" : "The European Union plays an increasing role in the\nregulation of international shipping and any shipping\ncompany wishing to do business in Europe will have to\ntake this into consideration. The module will take on\nv... | json_instruct | {"type": "object", "properties": {"acadYear": {"type": "string"}, "preclusion": {"type": "string"}, "description": {"type": "string"}, "title": {"type": "string"}, "department": {"type": "string"}, "faculty": {"type": "string"}, "workload": {"type": "array", "items": {"type": "integer"}}, "prerequisite": {"type": "stri... |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"type": {"type": "string"}, "pattern": {"type": "array", "items": {"type": "string"}}, "key": {"type": "object", "properties": {"#": {"type": "object", "properties": {"item": {"type": "string"}}, "required": ["item"]}... | {"type" : "minecraft:crafting_shaped", "pattern" : ["###"], "key" : {"#" : {"item" : "sakura:plank_sakura"}}, "result" : {"item" : "sakura:slab_plank_sakura", "count" : 6}} | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "pattern": {"type": "array", "items": {"type": "string"}}, "key": {"type": "object", "properties": {"#": {"type": "object", "properties": {"item": {"type": "string"}}, "required": ["item"]}}, "required": ["#"]}, "result": {"type": "object", "properties": {"i... |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "size": {"type": "integer"}, "date": {"type": "string"}}, "required": ["name", "size", "date"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"name" : "ReadMe.txt", "size" : 53, "date" : "2021-04-05T20:49:33.376Z"}, {"name" : "cv.pdf", "size" : 212733, "date" : "2021-04-05T20:49:35.538Z"}, {"name" : "profile.jpeg", "size" : 10743, "date" : "2021-04-05T20:49:33.345Z"}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "size": {"type": "integer"}, "date": {"type": "string"}}, "required": ["name", "size", "date"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"frame_id": {"type": "integer"}, "walking": {"type": "string"}, "video_id": {"type": "string"}, "bbs": {"type": "array", "items": {"type": "object", "properties": {"artwork_id": {"type": "string"}, "right": {"type":... | {"frame_id" : 330, "walking" : "1", "video_id" : "VID_20161007_131547_reduced", "bbs" : [{"artwork_id" : "marzocco", "right" : 0.820756, "bottom" : 0.699703, "top" : 0.057743, "confidence" : 70, "recognized" : true, "bb_big_enough" : true, "class" : "artwork", "left" : 0.241625}], "p_voice" : "0"} | json_instruct | {"type": "object", "properties": {"frame_id": {"type": "integer"}, "walking": {"type": "string"}, "video_id": {"type": "string"}, "bbs": {"type": "array", "items": {"type": "object", "properties": {"artwork_id": {"type": "string"}, "right": {"type": "number"}, "bottom": {"type": "number"}, "top": {"type": "number"}, "c... |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"id": {"type": "string"}, "originalId": {"type": "integer"}, "rarity": {"type": "integer"}, "name": {"type": "string"}, "description": {"type": "string"}, "load": {"type": "integer"}, "energy": {"type": "integer"}, "exp": {"typ... | {"id" : "sturdy_library_table", "originalId" : 361301, "rarity" : 3, "name" : "B\u00e0n Th\u01b0 Vi\u1ec7n D\u00e0i", "description" : "B\u00e0n d\u00e0i \"G\u1ed7 T\u1ee5y Hoa\" \u0111\u01b0\u1ee3c ch\u1ebf t\u00e1c tinh x\u1ea3o. Th\u00edch h\u1ee3p v\u1edbi nhi\u1ec1u d\u1ecbp.\\nNh\u01b0ng v\u00ec lo\u1ea1i b\u00e0n... | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "originalId": {"type": "integer"}, "rarity": {"type": "integer"}, "name": {"type": "string"}, "description": {"type": "string"}, "load": {"type": "integer"}, "energy": {"type": "integer"}, "exp": {"type": "integer"}, "category": {"type": "array", "items": {"ty... |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"viewOn": {"type": "string"}, "month.1.full": {"type": "string"}, "month.2.full": {"type": "string"}, "month.3.full": {"type": "string"}, "month.4.full": {"type": "string"}, "month.5.full": {"type": "string"}, "month.6.full": {... | {"viewOn" : "Bekijk op {0}", "month.1.full" : "januari", "month.2.full" : "februari", "month.3.full" : "maart", "month.4.full" : "april", "month.5.full" : "mei", "month.6.full" : "juni", "month.7.full" : "juli", "month.8.full" : "augustus", "month.9.full" : "september", "month.10.full" : "oktober", "month.11.full" : "n... | json_instruct | {"type": "object", "properties": {"viewOn": {"type": "string"}, "month.1.full": {"type": "string"}, "month.2.full": {"type": "string"}, "month.3.full": {"type": "string"}, "month.4.full": {"type": "string"}, "month.5.full": {"type": "string"}, "month.6.full": {"type": "string"}, "month.7.full": {"type": "string"}, "mon... |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"dna": {"type": "string"}, "name": {"type": "string"}, "image": {"type": "string"}, "edition": {"type": "integer"}, "date": {"type": "integer"}, "attributes": {"type": "array", "items": {"type": "object", "propertie... | {"dna" : "ff87776f175a7126859251bf66c98ffac8a676d7", "name" : "Test Moons #7", "image" : "ipfs://QmPYqcz3p89SNzHnsdHt6JCbXdB7EceLckdVSQGZBqNZeX/7.png", "edition" : 7, "date" : 1635971854086, "attributes" : [{"trait_type" : "Base", "value" : "_0044_Base"}, {"trait_type" : "Trait 1", "value" : "_0041_trait1_white"}, {"tr... | json_instruct | {"type": "object", "properties": {"dna": {"type": "string"}, "name": {"type": "string"}, "image": {"type": "string"}, "edition": {"type": "integer"}, "date": {"type": "integer"}, "attributes": {"type": "array", "items": {"type": "object", "properties": {"trait_type": {"type": "string"}, "value": {"type": "string"}}, "r... |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": [... | {"name" : "html5-joystick", "version" : "2.0.0", "description" : "A simple JoyStick that use HTML5 Canvas and Vanilla JavaScript, for touch and mouse interfaces", "main" : "joy.js", "scripts" : {"test" : "echo \"Error: no test specified\" && exit 1"}, "repository" : {"type" : "git", "url" : "git+https://github.com/bobb... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "repository": {"type": "object", "properties": {"type": {"type": "s... |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"inputs": {"type": "array", "items": {"type": "string"}}, "outputs": {"type": "array", "items": {"type": "string"}}}, "required": ["inputs", "outputs"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"inputs" : ["3 3\n101\n001\n110\n", "7 15\n000100001010010\n100111010110001\n101101111100100\n010000111111010\n111010010100001\n000011001111101\n111111011010011\n", "1 1\n0\n", "1 1\n1\n", "2 58\n1100001110010010100001000000000110110001101001100010101110\n1110110010101111001110010001100010001010100011111110110100\n", ... | json_instruct | {"type": "object", "properties": {"inputs": {"type": "array", "items": {"type": "string"}}, "outputs": {"type": "array", "items": {"type": "string"}}}, "required": ["inputs", "outputs"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "main": {"type": "string"}, "private": {"type": "boolean"}}, "required": ["name", "version", "main", "private"], "$schema": "http://json-schema.org/draft-07... | {"name" : "internal", "version" : "2.0.1", "main" : "./src/internal", "private" : true} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "main": {"type": "string"}, "private": {"type": "boolean"}}, "required": ["name", "version", "main", "private"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"body": {"type": "string"}, "next": {"type": "string"}}, "required": ["body", "next"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"body" : "OR BE STOPPED ANY WHERE IN ITS PROGRESS IN THIS SPACE, HOW FAR SOEVER IT EXTENDS ITS THOUGHTS.", "next" : "https://raw.githubusercontent.com/CAPSELOCKE/CAPSELOCKE/master/tweets/3373.json"} | json_instruct | {"type": "object", "properties": {"body": {"type": "string"}, "next": {"type": "string"}}, "required": ["body", "next"], "$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"}, "main": {"type": "string"}, "homepage": {"type": "string"}, "author": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}, "url": ... | {"name" : "jquery.reel", "version" : "1.3.3", "main" : "jquery.reel.js", "homepage" : "https://github.com/introquest/jquery.reel", "author" : {"name" : "Petr Vost\u0159el", "email" : "petr@vostrel.cz", "url" : "http://petr.vostrel.cz"}, "description" : "`img` tag enhancement for 360\u00b0 object movies, vistas and pano... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "main": {"type": "string"}, "homepage": {"type": "string"}, "author": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}, "url": {"type": "string"}}, "required": ["name", "email", "url"]},... |
Based on the schema below, produce a valid JSON object:
{"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": "i... | {"id" : 85775377, "type" : "Feature", "properties" : {"src:alt_label" : "quattroshapes_pg", "src:geom" : "quattroshapes_pg", "wof:geomhash" : "bec9e30d5d3eaaa32648e895b2678434", "wof:id" : 85775377, "wof:repo" : "whosonfirst-data-admin-au"}, "bbox" : [115.85881, -31.94784, 115.85881, -31.94784], "geometry" : {"coordina... | 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": ["... |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"datestamp": {"type": "string"}, "nameWithOwner": {"type": "string"}, "name": {"type": "string"}, "commits": {"type": "integer"}, "forkCount": {"type": "integer"}, "issues": {"type": "integer"}, "openIssues": {"... | {"datestamp" : "2020-10-14", "nameWithOwner" : "twitter/twitter.github.io", "name" : "twitter.github.io", "commits" : 721, "forkCount" : 507, "issues" : 28, "openIssues" : 1, "closedIssues" : 27, "pullRequests" : 38, "openPullRequests" : 6, "mergedPullRequests" : 17, "closedPullRequests" : 15, "stargazers" : 1483, "wat... | json_instruct | {"type": "object", "properties": {"datestamp": {"type": "string"}, "nameWithOwner": {"type": "string"}, "name": {"type": "string"}, "commits": {"type": "integer"}, "forkCount": {"type": "integer"}, "issues": {"type": "integer"}, "openIssues": {"type": "integer"}, "closedIssues": {"type": "integer"}, "pullRequests": {"t... |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"DESCRIPTION": {"type": "string"}, "USAGE": {"type": "string"}, "IGNORING": {"type": "string"}, "ALREADY_IGNORING": {"type": "string"}, "STARBOARD": {"type": "string"}, "ADDED": {"type": "string"}}, "required"... | {"DESCRIPTION" : "Nastavi, da bot ne upo\u0161teva ukazov, povabil in zvezd v dolo\u010denem kanalu.", "USAGE" : "ignoriraj [poglej|ukazi|vabila|zvezde]", "IGNORING" : "Naslednji kanali ne upo\u0161tevajo **{{type}}**:", "ALREADY_IGNORING" : "Ta kanal \u017ee ignorira {{type}}.", "STARBOARD" : "Zvezdna tabla ni omogo\u... | json_instruct | {"type": "object", "properties": {"DESCRIPTION": {"type": "string"}, "USAGE": {"type": "string"}, "IGNORING": {"type": "string"}, "ALREADY_IGNORING": {"type": "string"}, "STARBOARD": {"type": "string"}, "ADDED": {"type": "string"}}, "required": ["DESCRIPTION", "USAGE", "IGNORING", "ALREADY_IGNORING", "STARBOARD", "ADDE... |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"angular-idle.js": {"type": "string"}, "angular-idle.min.js": {"type": "string"}}, "required": ["angular-idle.js", "angular-idle.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"angular-idle.js" : "sha512-RpMSHcY+H7rJh4uguL6Bj+mb9PfsQ1hSyiV5Uoufp0LT0iL5VDARYSZ/2Ekxe6ijBOmTwUPkzNRNVR2W35eTYw==", "angular-idle.min.js" : "sha512-mdE/tJP6HtYMQAaVwUZYweX3i4kxLtVR86i73qM0vxRoMndpNodS4lfp2EYX1FkgQepDif44bYB0JTv9lbP/Ow=="} | json_instruct | {"type": "object", "properties": {"angular-idle.js": {"type": "string"}, "angular-idle.min.js": {"type": "string"}}, "required": ["angular-idle.js", "angular-idle.min.js"], "$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.