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": {"directions": {"type": "array", "items": {"type": "string"}}, "ingredients": {"type": "array", "items": {"type": "string"}}, "language": {"type": "string"}, "source": {"type": "string"}, "tags": {"type": "array", "i... | {"directions" : ["Cut out a round of wax paper to fit just inside a 12-inch heavy skillet, then butter 1 side of round.", "Fit endives, cut sides down, snugly in skillet. Add broth, lemon juice, butter bits, sugar, and salt, then cover endives with wax-paper round, buttered side down, and simmer until endives are tende... | 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"... |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "version": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "homepage": {"type": "string"}, "main": {"type": "string"}, "license": {"ty... | {"name" : "welcomejs", "description" : "A welcome library where the modules will welcome you (ie the output of a getting started tutorial)", "version" : "0.0.2", "keywords" : ["getting_started", "webpack", "node", "library"], "homepage" : "https://gerardnico.com/lang/javascript/library_build", "main" : "dist/prefix-wel... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "version": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "homepage": {"type": "string"}, "main": {"type": "string"}, "license": {"type": "string"}, "author": {"type": "object", "properties"... |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "dev": {"type": "st... | {"name" : "ecommerce-api", "version" : "0.0.1", "description" : "API para ecommerce", "main" : "server.js", "scripts" : {"test" : "mocha --timeout 2000 --exit", "dev" : "NODE_ENV=development nodemon server.js", "build" : "NODE_ENV=production pm2 start server.js --name=\"ecommerce-api\""}, "author" : "Alexandre Munis", ... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "dev": {"type": "string"}, "build": {"type": "string"}}, "required": ["test", "dev", "build... |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"adv_t": {"type": "array", "items": {"type": "integer"}}, "adv_w": {"type": "array", "items": {"type": "integer"}}, "clfs": {"type": "array", "items": {"type": "string"}}, "mean": {"type": "array", "items": {"type": "number"}}, "... | {"adv_t" : [2, 0, 2, 3, 0, 2], "adv_w" : [2, 0, 2, 3, 0, 2], "clfs" : ["Nearest Neighbors", "RBF SVM", "Decision Tree", "Random Forest", "Naive Bayes", "Linear SVM"], "mean" : [0.6438655462184875, 0.582689075630252, 0.6699159663865546, 0.701512605042017, 0.5798319327731092, 0.695966386554622], "parameters" : {"cv_metho... | json_instruct | {"type": "object", "properties": {"adv_t": {"type": "array", "items": {"type": "integer"}}, "adv_w": {"type": "array", "items": {"type": "integer"}}, "clfs": {"type": "array", "items": {"type": "string"}}, "mean": {"type": "array", "items": {"type": "number"}}, "parameters": {"type": "object", "properties": {"cv_method... |
Based on the schema below, produce a valid JSON object:
{"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "order": {"type": "integer"}}, "required": ["id", "order"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"id" : "basic-functionality", "order" : 1}, {"id" : "non-visual-reading", "order" : 2}, {"id" : "math", "order" : 3}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "order": {"type": "integer"}}, "required": ["id", "order"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"libraries": {"type": "array", "items": {"type": "integer"}}, "long": {"type": "array", "items": {"type": "integer"}}, "list": {"type": "array", "items": {"type": "integer"}}, "large": {"type": "array", "items": {"type": "integ... | {"libraries" : [589830], "long" : [589825], "list" : [2162689, 2293761, 2359299, 2555915, 2621441, 3145734, 3342342, 3670022, 3801090, 3866625, 4128772], "large" : [589826], "length" : [2686978, 3604482, 3735558], "library" : [65537, 131074, 196610, 262146, 327682, 393218, 458753, 524290, 589828, 655362, 720898, 786434... | json_instruct | {"type": "object", "properties": {"libraries": {"type": "array", "items": {"type": "integer"}}, "long": {"type": "array", "items": {"type": "integer"}}, "list": {"type": "array", "items": {"type": "integer"}}, "large": {"type": "array", "items": {"type": "integer"}}, "length": {"type": "array", "items": {"type": "integ... |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"word" : "guggle", "definition" : "See Gurgle."} | json_instruct | {"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"name": {"type": "string"}, "displayName": {"type": "string"}}, "required": ["name", "displayName"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "repoapp", "displayName" : "repoapp"} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "displayName": {"type": "string"}}, "required": ["name", "displayName"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"stationGroupId": {"type": "integer"}, "stations": {"type": "array", "items": {"type": "string"}}}, "required": ["stationGroupId", "stations"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"stationGroupId" : 1134234, "stations" : ["1134234"]} | json_instruct | {"type": "object", "properties": {"stationGroupId": {"type": "integer"}, "stations": {"type": "array", "items": {"type": "string"}}}, "required": ["stationGroupId", "stations"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"co-authors": {"type": "array", "items": {"type": "object", "properties": {"co_author_name": {"type": "string"}, "author_description": {"type": "string"}, "website_url": {"type": "string"}, "instagram": {"type": "string"}, "twi... | {"co-authors" : [{"co_author_name" : "Stefan Volz", "author_description" : "Electrician for buildings and power services, state certified engineer/technician for electrical engineering specialized in IT, PLC-specialist - studying industrial mathematics starting 10.2019. Mainly doing Python and Rust - but like to try ne... | json_instruct | {"type": "object", "properties": {"co-authors": {"type": "array", "items": {"type": "object", "properties": {"co_author_name": {"type": "string"}, "author_description": {"type": "string"}, "website_url": {"type": "string"}, "instagram": {"type": "string"}, "twitter": {"type": "string"}}, "required": ["co_author_name", ... |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "array", "items": {"type": "array", "items": {"type": "number"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [[363.11222106318576, 509.981125889943], [1218.3399051289655, 535.8587522764813], [1256.4577315657957, 578.211892761848], [1290.3402439540894, 601.5061200288001], [1319.9874422938462, 605.7414340773366], [1358.1052687306765, 614.21206217441]] | json_instruct | {"type": "array", "items": {"type": "array", "items": {"type": "number"}}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"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" : [[[139.125, 36.083333333333336], [139.125, 36.166666666666664], [139.25, 36.166666666666664], [139.25, 36.083333333333336], [139.125, 36.083333333333336]]]}, "properties" : {"code" : 543911, "url" : "http://madefor.github.io/0410/api/v1/543911.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... |
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"}, "compile": {"t... | {"name" : "seven-rule-msg", "version" : "1.0.0", "description" : "Minimal, opinionated commit message validator", "main" : "dist/index.js", "scripts" : {"test" : "ava --verbose", "compile" : "tsc", "build" : "npm run compile", "watch" : "tsc -w -p .", "prepublishOnly" : "npm run build"}, "bin" : {"seven-rule-msg" : "di... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "compile": {"type": "string"}, "build": {"type": "string"}, "watch": {"type": "string"}, "p... |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"ShutUpGunshot": {"type": "array", "items": {"type": "string"}}}, "required": ["ShutUpGunshot"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"ShutUpGunshot" : ["BigShutUp", "NoisyShutUp", "FiringInTheAirALot", "ShoutingShooter", "SubTrope", "ThreateningMediator", "DidntThinkThisThrough", "AuctionOfEvil", "SpontaneousChoreography", "QuickChange", "UnusuallyUninterestingSight", "YouAreTooLate", "FreakOut", "CatFight", "BarBrawl", "TwoShotsFromBehindThebar", ... | json_instruct | {"type": "object", "properties": {"ShutUpGunshot": {"type": "array", "items": {"type": "string"}}}, "required": ["ShutUpGunshot"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"title": {"type": "string"}, "fields": {"type": "array", "items": {"type": "string"}}, "abstract": {"type": "string"}, "citation": {"type": "string"}, "year": {"type": "string"}, "departments": {"type": "array", "item... | {"title" : "Modeling and understanding end-to-end class of service policies in operational networks.", "fields" : ["private network", "class of service", "differentiated service", "access control list", "end to end principle"], "abstract" : "Business and economic considerations are driving the extensive use of service ... | 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": {"typ... |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"id": {"type": "integer"}, "source": {"type": "string"}, "verse_id": {"type": "integer"}, "verse_count": {"type": "integer"}, "reference": {"type": "string"}, "title": {"type": "string"}, "html": {"type": "string"}... | {"id" : 11123, "source" : "ellicott", "verse_id" : 18091, "verse_count" : 1, "reference" : "23:13", "title" : "", "html" : " <p> (13) Behold, the land of the Chaldeans.\u2014Heb., land of Kasdim. The prophet points to the destruction of one power that had resisted Assyria as an example of what Tyre might expect. The As... | json_instruct | {"type": "object", "properties": {"id": {"type": "integer"}, "source": {"type": "string"}, "verse_id": {"type": "integer"}, "verse_count": {"type": "integer"}, "reference": {"type": "string"}, "title": {"type": "string"}, "html": {"type": "string"}, "audit": {"type": "null"}}, "required": ["id", "source", "verse_id", "... |
Create an example JSON object that satisfies 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": "... | {"type" : "FeatureCollection", "features" : [{"geometry" : {"type" : "Polygon", "coordinates" : [[[-80.712407, 41.310871], [-80.70528, 41.311204], [-80.705375, 41.331667], [-80.700358, 41.349819], [-80.617774, 41.350269], [-80.61806, 41.311223], [-80.617339, 41.272361], [-80.711744, 41.271927], [-80.71148, 41.293128], ... | 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 a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "start": {"type": "str... | {"name" : "translate-text", "version" : "1.0.0", "description" : "The Rest API to translate the text from any language to another.", "main" : "app.js", "scripts" : {"test" : "echo \"Error: no test specified\" && exit 1", "start" : "nodemon app.js"}, "author" : "Sarthak Mittal", "license" : "MIT", "dependencies" : {"@vi... | 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"}}, "required": ["test", "start"]}, "author": {"type": "string"},... |
Following the schema specification below, generate a valid JSON instance:
{"type": "array", "items": {"type": "object", "properties": {"signature": {"type": "string"}, "result": {"type": "string"}}, "required": ["signature", "result"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"signature" : "async BlockNumber();", "result" : "64711"}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"signature": {"type": "string"}, "result": {"type": "string"}}, "required": ["signature", "result"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "damage": {"type": "array", "items": {"type": "integer"}}, "level": {"type": "integer"}}, "required": ["name", "damage", "level"]}, "$schema": "http://json-schema.org/draft-0... | [{"name" : "Chuva de papel", "damage" : [10, 27], "level" : 1}, {"name" : "Clone de papel", "damage" : [1, 5], "level" : 2, "effect" : [1, 0]}, {"name" : "Papelada", "damage" : [15, 20], "level" : 3}, {"name" : "Espada de papel", "damage" : [15, 18], "level" : 4, "effect" : [1, 1]}, {"name" : "Meteoro de papel", "damag... | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "damage": {"type": "array", "items": {"type": "integer"}}, "level": {"type": "integer"}}, "required": ["name", "damage", "level"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"stationId": {"type": "integer"}, "stationGroupId": {"type": "integer"}, "name": {"type": "string"}, "lineId": {"type": "integer"}, "zipCode": {"type": "string"}, "pref": {"type": "string"}, "city": {"type": "string"}, "town... | {"stationId" : 1120217, "stationGroupId" : 1120217, "name" : "\u6a2a\u624b", "lineId" : 11202, "zipCode" : "013-0036", "pref" : "\u79cb\u7530\u770c", "city" : "\u6a2a\u624b\u5e02", "town" : "\u99c5\u524d\u753a", "longitude" : 140.5604, "latitude" : 39.310146, "status" : 0} | json_instruct | {"type": "object", "properties": {"stationId": {"type": "integer"}, "stationGroupId": {"type": "integer"}, "name": {"type": "string"}, "lineId": {"type": "integer"}, "zipCode": {"type": "string"}, "pref": {"type": "string"}, "city": {"type": "string"}, "town": {"type": "string"}, "longitude": {"type": "number"}, "latit... |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "url": {"type": "string"}}, "required": ["name", "description", "url"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "NFThub", "description" : "NFThub is aimed at becoming the producthunt of NFTs with a wide variety of useful features along with several direct integrations of 3rd party tools.", "url" : "https://nfthub.xyz/"} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "url": {"type": "string"}}, "required": ["name", "description", "url"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"hash": {"type": "string"}, "parentHash": {"type": "string"}, "number": {"type": "integer"}, "timestamp": {"type": "integer"}, "nonce": {"type": "string"}, "difficulty": {"type": "integer"}, "gasLimit": {"type": "object", "proper... | {"hash" : "0x570690385695a02f4bff0bfae997290ed6a15013e9ca8533c4cfcc3095513b19", "parentHash" : "0x7cbf69d3f139bb53510b5bc8977f9299122b3c7cdd8312bf7ed8977c1cbffdfb", "number" : 23041, "timestamp" : 1438538221, "nonce" : "0xbbf519fd3bf8dc17", "difficulty" : 1051203617018, "gasLimit" : {"_hex" : "0x1388"}, "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"]... |
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" : 404357957, "type" : "Feature", "properties" : {"src:alt_label" : "quattroshapes", "src:geom" : "quattroshapes", "wof:geomhash" : "adfbc8b5255f212017ec4d206d5c6b30", "wof:id" : 404357957, "wof:repo" : "whosonfirst-data-admin-fr"}, "bbox" : [0.39020139974874, 48.63202201115136, 0.43338535659438, 48.6947800992686]... | 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": ["... |
The schema below describes a JSON structure. Generate a valid example:
{"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:i... | {"id" : 404411341, "type" : "Feature", "properties" : {"src:alt_label" : "quattroshapes", "src:geom" : "quattroshapes", "wof:geomhash" : "fea0804172ea34f92925907fc8e6cbfd", "wof:id" : 404411341, "wof:repo" : "whosonfirst-data-admin-fr"}, "bbox" : [0.32117122627562, 43.43812497308785, 0.36335224144275, 43.46571762556483... | 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": ["... |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"text": {"type": "string"}, "created": {"type": "string"}, "type": {"type": "string"}}, "required": ["text", "created", "type"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"text" : "Another great Yogi saying: You can observe a lot by watching. ", "created" : "Thu, 23 Nov 2017 19:14:39 GMT", "type" : "outline"} | json_instruct | {"type": "object", "properties": {"text": {"type": "string"}, "created": {"type": "string"}, "type": {"type": "string"}}, "required": ["text", "created", "type"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"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": "stri... | [{"postal_code" : "79180", "place_name" : "Vergel", "place_type" : "Colonia", "county" : "Ebano", "state" : "San Luis Potos\u00ed", "city" : "\u00c9bano"}] | 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", "s... |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"name": {"type": "string"}, "symbol": {"type": "string"}, "id": {"type": "string"}, "decimals": {"type": "integer"}, "coingecko_url": {"type": "string"}, "market_cap_usd": {"type": "integer"}, "market_cap_rank": {"type": "integer... | {"name" : "XIO Network", "symbol" : "XIO", "id" : "0x0f7F961648aE6Db43C75663aC7E5414Eb79b5704", "decimals" : 18, "coingecko_url" : "https://www.coingecko.com/en/coins/xio", "market_cap_usd" : 4264715, "market_cap_rank" : 1635, "24_hr_volume_usd" : 20526, "logoURI" : "https://raw.githubusercontent.com/poolsharks-protoco... | 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": "integer"}, "market_cap_rank": {"type": "integer"}, "24_hr_volume_usd": {"type": "integer"}, "logoURI": {... |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"id": {"type": "string"}, "district_id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "district_id", "name"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "9107121005", "district_id" : "9107121", "name" : "ARAR"} | 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#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "number"}}}, "required": ["type", "coordinates"]}, "type": {"type": "string"}, "id": {"ty... | {"geometry" : {"type" : "Point", "coordinates" : [-92.06, 30.4]}, "type" : "Feature", "id" : "70584", "properties" : {"other_cities" : "Cankton", "city" : "Sunset", "state" : "LA", "county" : "St Landry Parish"}} | 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_c... |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"project_info": {"type": "object", "properties": {"project_number": {"type": "string"}, "project_id": {"type": "string"}, "storage_bucket": {"type": "string"}}, "required": ["project_number", "project_id", "st... | {"project_info" : {"project_number" : "787702660658", "project_id" : "recipe-book-7fa2b", "storage_bucket" : "recipe-book-7fa2b.appspot.com"}, "client" : [{"client_info" : {"mobilesdk_app_id" : "1:787702660658:android:fb48fb62b386a45a16062b", "android_client_info" : {"package_name" : "com.example.recipebook"}}, "oauth_... | json_instruct | {"type": "object", "properties": {"project_info": {"type": "object", "properties": {"project_number": {"type": "string"}, "project_id": {"type": "string"}, "storage_bucket": {"type": "string"}}, "required": ["project_number", "project_id", "storage_bucket"]}, "client": {"type": "array", "items": {"type": "object", "pro... |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"columns": {"type": "array", "items": {"type": "string"}}, "data": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}}, "required": ["columns", "data"], "$schema": "http://json-schema.o... | {"columns" : ["goal", "guesses"], "data" : [["ADRED", "0: ABBES 1: ACTED 2: ADRED "]]} | json_instruct | {"type": "object", "properties": {"columns": {"type": "array", "items": {"type": "string"}}, "data": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}}, "required": ["columns", "data"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"JenAttackCoatRack": {"type": "object", "properties": {"sx": {"type": "integer"}, "sy": {"type": "integer"}, "cols": {"type": "integer"}, "tilew": {"type": "integer"}, "tileh": {"type": "integer"}, "frames": {"t... | {"JenAttackCoatRack" : {"sx" : 0, "sy" : 1, "cols" : 8, "tilew" : 240, "tileh" : 320, "frames" : 20}} | json_instruct | {"type": "object", "properties": {"JenAttackCoatRack": {"type": "object", "properties": {"sx": {"type": "integer"}, "sy": {"type": "integer"}, "cols": {"type": "integer"}, "tilew": {"type": "integer"}, "tileh": {"type": "integer"}, "frames": {"type": "integer"}}, "required": ["sx", "sy", "cols", "tilew", "tileh", "fram... |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"baseObjects": {"type": "array", "items": {"type": "string"}}, "returnObjects": {"type": "array", "items": {"type": "string"}}, "callbackArgs": {"type": "array", "items": {}}}, "required": ["baseObjects", "returnObjects", "callba... | {"baseObjects" : ["[\"X9\",\"R\",\"q|\"]"], "returnObjects" : ["\"Error\""], "callbackArgs" : []} | json_instruct | {"type": "object", "properties": {"baseObjects": {"type": "array", "items": {"type": "string"}}, "returnObjects": {"type": "array", "items": {"type": "string"}}, "callbackArgs": {"type": "array", "items": {}}}, "required": ["baseObjects", "returnObjects", "callbackArgs"], "$schema": "http://json-schema.org/draft-07/sch... |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"body": {"type": "string"}, "attachments": {"type": "array", "items": {}}, "created_by_name": {"type": "string"}, "created_at": {"type": "string"}, "created_by": {"type": "string"}, "parent_id": {"type": "string"}, "id": {"type... | {"body" : "Hi Chris,\n\n\nI think the higher resolution BSDF definitions, using the tensor tree\nrepresentation, will be important for accurate glare analysis. In Andy and\nGreg's presentation here:\n\n\nhttp://www.radiance-online.org/community/workshops/2011-berkeley-ca/presentations/day1/GW3_Multires_BSDF.pdf\n\n\n\... | json_instruct | {"type": "object", "properties": {"body": {"type": "string"}, "attachments": {"type": "array", "items": {}}, "created_by_name": {"type": "string"}, "created_at": {"type": "string"}, "created_by": {"type": "string"}, "parent_id": {"type": "string"}, "id": {"type": "string"}}, "required": ["body", "attachments", "created... |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"no_of_atoms": {"type": "integer"}, "centre_of_mass": {"type": "array", "items": {"type": "number"}}, "maximum_diameter": {"type": "object", "properties": {"diameter": {"type": "number"}, "atom_1": {"type": "integer"}, "atom_2": ... | {"no_of_atoms" : 96, "centre_of_mass" : [19.22260850943634, 14.855875083646918, 5.525282041614947], "maximum_diameter" : {"diameter" : 21.92787261960133, "atom_1" : 65, "atom_2" : 80}, "pore_diameter" : {"diameter" : 5.361664456013552, "atom" : 76}, "pore_volume" : 80.70445641679395, "pore_diameter_opt" : {"diameter" :... | json_instruct | {"type": "object", "properties": {"no_of_atoms": {"type": "integer"}, "centre_of_mass": {"type": "array", "items": {"type": "number"}}, "maximum_diameter": {"type": "object", "properties": {"diameter": {"type": "number"}, "atom_1": {"type": "integer"}, "atom_2": {"type": "integer"}}, "required": ["diameter", "atom_1", ... |
Please provide a valid JSON object following this schema:
{"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": {"typ... | {"body" : "Successfully builds and passes all tests on macOS 10.15.7 with Python 3.8.11 and Apple Clang 12.0.0.\r\n\r\nFixes #25102 @fabratu \r\n\r\nSee https://github.com/serge-sans-paille/pythran/pull/1856", "user" : "adamjstewart", "url" : "https://api.github.com/repos/spack/spack/issues/25137", "updated_at" : "2021... | 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": ... |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "authors": {"type": "array", "items": {"type": "string"}}, "license": {"type": "string"}, "homepage": {"type": "string"}, "moduleType": {"... | {"name" : "CV", "description" : "https://clemente.io", "main" : "", "authors" : ["Lucas Clemente"], "license" : "MIT", "homepage" : "https://clemente.io", "moduleType" : [], "dependencies" : {"font-awesome" : "fontawesome#^4.5.0", "bootstrap" : "v4.0.0-alpha.2"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "authors": {"type": "array", "items": {"type": "string"}}, "license": {"type": "string"}, "homepage": {"type": "string"}, "moduleType": {"type": "array", "items": {}}, "dependencies": {"type": "o... |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"idf.portWin": {"type": "string"}}, "required": ["idf.portWin"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"idf.portWin" : "COM5"} | json_instruct | {"type": "object", "properties": {"idf.portWin": {"type": "string"}}, "required": ["idf.portWin"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"word" : "relativeness", "definition" : "The state of being relative, or having relation; relativity."} | json_instruct | {"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"sources": {"type": "array", "items": {"type": "object", "properties": {"src": {"type": "string"}, "type": {"type": "string"}, "size": {"type": "integer"}}, "required": ["src", "type", "size"]}}, "tracks": {"type": "array", "it... | {"sources" : [{"src" : "//cdn.unusann.us/01/047/1080.mp4", "type" : "video/mp4", "size" : 1080}, {"src" : "//cdn.unusann.us/01/047/720.mp4", "type" : "video/mp4", "size" : 720}, {"src" : "//cdn.unusann.us/01/047/480.mp4", "type" : "video/mp4", "size" : 480}, {"src" : "//cdn.unusann.us/01/047/360.mp4", "type" : "video/m... | json_instruct | {"type": "object", "properties": {"sources": {"type": "array", "items": {"type": "object", "properties": {"src": {"type": "string"}, "type": {"type": "string"}, "size": {"type": "integer"}}, "required": ["src", "type", "size"]}}, "tracks": {"type": "array", "items": {}}, "posters": {"type": "array", "items": {"type": "... |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"Bacon.js": {"type": "string"}, "Bacon.min.js": {"type": "string"}}, "required": ["Bacon.js", "Bacon.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"Bacon.js" : "sha256-/BRFT01KGiyewP7tIYh2qOJxDmORukz1qSa9DVoX8dk=", "Bacon.min.js" : "sha256-UlVzW7ZsAjE1hqIs5t06ClBYMwL1AFkDOrmDjSLF5cY="} | json_instruct | {"type": "object", "properties": {"Bacon.js": {"type": "string"}, "Bacon.min.js": {"type": "string"}}, "required": ["Bacon.js", "Bacon.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"decimals": {"type": "integer"}, "isBooleanAmount": {"type": "boolean"}, "name": {"type": "string"}, "description": {"type": "string"}, "tags": {"type": "array", "items": {"type": "string"}}, "minter": {"type"... | {"decimals" : 0, "isBooleanAmount" : true, "name" : "Pixelnaut #010", "description" : "We are all astronauts in the space..\n\nWe are all astronauts in the space of life. Each day we explore new horizons and experience new adventures. We may encounter challenges and setbacks, but we must continue on our journey, for it... | json_instruct | {"type": "object", "properties": {"decimals": {"type": "integer"}, "isBooleanAmount": {"type": "boolean"}, "name": {"type": "string"}, "description": {"type": "string"}, "tags": {"type": "array", "items": {"type": "string"}}, "minter": {"type": "string"}, "artifactUri": {"type": "string"}}, "required": ["decimals", "is... |
Following the schema specification below, generate a valid 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"}, "wo... | {"id" : 404388191, "type" : "Feature", "properties" : {"src:alt_label" : "quattroshapes", "src:geom" : "quattroshapes", "wof:geomhash" : "f7042688bd298f443145901b4c668c71", "wof:id" : 404388191, "wof:repo" : "whosonfirst-data-admin-fr"}, "bbox" : [6.26153598496847, 48.84942857807706, 6.30011133865634, 48.86836083185174... | 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": ["... |
Construct a JSON document that adheres to this schema specification:
{"type": "array", "items": {"type": "object", "properties": {"\u7ea7\u522b": {"type": "string"}, "\u53c2\u6570": {"type": "string"}, "\u5168\u79f0": {"type": "string"}, "\u610f\u4e49": {"type": "string"}, "\u5fc5\u8981": {"type": "string"}, "\u578b\u... | [{"\u7ea7\u522b" : "0", "\u53c2\u6570" : "p1", "\u5168\u79f0" : "touch", "\u610f\u4e49" : "\u884c\u4e3a\u52a8\u4f5c", "\u5fc5\u8981" : "\u5fc5\u8981", "\u578b\u522b" : "str", "\u53ef\u586b\u503c" : "push"}, {"\u7ea7\u522b" : "1", "\u53c2\u6570" : "refer", "\u5168\u79f0" : "control", "\u610f\u4e49" : "\u4e1a\u52a1\u96c6... | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"\u7ea7\u522b": {"type": "string"}, "\u53c2\u6570": {"type": "string"}, "\u5168\u79f0": {"type": "string"}, "\u610f\u4e49": {"type": "string"}, "\u5fc5\u8981": {"type": "string"}, "\u578b\u522b": {"type": "string"}, "\u53ef\u586b\u503c": {"type": "string"}}, ... |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "code": {"type": "string"}, "address": {"type": "object", "properties": {"addressLine1": {"type": "string"}, "addressLine2": {"type": "string"}, "town": {"type": ... | {"id" : "08ee8049-0fc5-47c0-a535-a6a3e7b804a4", "name" : "St Anne's Catholic Primary School", "code" : "8", "address" : {"addressLine1" : "Underwood Road", "addressLine2" : "Whitechapel", "town" : "London", "postcode" : "E1 5AW"}, "organisation" : {"id" : "8eaad1be-be05-4b10-b15d-02ba86607a43", "code" : "15O", "name" :... | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "code": {"type": "string"}, "address": {"type": "object", "properties": {"addressLine1": {"type": "string"}, "addressLine2": {"type": "string"}, "town": {"type": "string"}, "postcode": {"type": "string"}}, "required": ["addressLine1... |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"scripts": {"type": "object", "properties": {"build": {"type": "string"}}, "required": ["build"]}, "engines": {"type": "object", "properties": {"node": {"type": "string"}}, "required": ["node"]}, "dependencies": {"... | {"scripts" : {"build" : "tailwindcss build frontend/site.css -c frontend/tailwind.config.js -o static/site.css"}, "engines" : {"node" : "15.x"}, "dependencies" : {"autoprefixer" : "^10.2.5", "postcss" : "^8.2.12", "tailwindcss" : "^2.1.2"}} | json_instruct | {"type": "object", "properties": {"scripts": {"type": "object", "properties": {"build": {"type": "string"}}, "required": ["build"]}, "engines": {"type": "object", "properties": {"node": {"type": "string"}}, "required": ["node"]}, "dependencies": {"type": "object", "properties": {"autoprefixer": {"type": "string"}, "pos... |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"id": {"type": "string"}, "district_id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "district_id", "name"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "3526050017", "district_id" : "3526050", "name" : "NYOR MANIS"} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "district_id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "district_id", "name"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"cropper.css": {"type": "string"}, "cropper.js": {"type": "string"}, "cropper.min.css": {"type": "string"}, "cropper.min.js": {"type": "string"}}, "required": ["cropper.css", "cropper.js", "cropper.min.css", "cropper.min.js"], ... | {"cropper.css" : "sha512-QQy7ZHnwQ6hIzilvHfnylmm7wCEK5bO8lbyqUom7CBLjugWXNTJBQ1mk0Kz1D1udOpZPp6GLDb6+ea3g0UakGQ==", "cropper.js" : "sha512-2+wspPCEhjLG2LoHe8qnDPnG2c3LKwXxUQczv6PdpttZ8/AygbqNKLUTM37U5qOEb55W3R5PA28nMUvOGxk8CA==", "cropper.min.css" : "sha512-FRnZGqDO4JzhXuf5eI1A2jA7xGwkjwnmoZkuY93hmqvvAWi7j5sgsCmTF1LSbN... | json_instruct | {"type": "object", "properties": {"cropper.css": {"type": "string"}, "cropper.js": {"type": "string"}, "cropper.min.css": {"type": "string"}, "cropper.min.js": {"type": "string"}}, "required": ["cropper.css", "cropper.js", "cropper.min.css", "cropper.min.js"], "$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"}, "private": {"type": "boolean"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "build": {"t... | {"name" : "eb-editor", "version" : "1.0.0", "description" : "", "private" : true, "scripts" : {"test" : "echo \"Error: no test specified\" && exit 1", "build" : "webpack", "start" : "webpack-dev-server --open", "watch" : "webpack --watch", "server" : "node server.js"}, "keywords" : [], "author" : "", "license" : "MIT",... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "private": {"type": "boolean"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "build": {"type": "string"}, "start": {"type": "string"}, "watch": {"type": "string"}, ... |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"start:server": {"type": "string"}}, "required":... | {"name" : "json-server-multiples-files", "version" : "1.0.0", "description" : "A way to serve multiple json files using the json-server package", "main" : "json-server.index.js", "scripts" : {"start:server" : "nodemon --watch test/mock json-server.index.js"}, "repository" : {"type" : "git", "url" : "git+https://github.... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"start:server": {"type": "string"}}, "required": ["start:server"]}, "repository": {"type": "object", "properties": {"ty... |
The schema below describes a JSON structure. Generate a valid example:
{"type": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [[1959, 6], [1962, 5], [1963, 6], [1964, 5], [1965, 9], [1966, 8], [1967, 6], [1968, 7], [1969, 9], [1971, 9], [1972, 8], [1973, 7], [1975, 8], [1976, 7], [1981, 6], [1982, 5], [1983, 5]] | json_instruct | {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"nom": {"type": "string"}, "dpt": {"type": "string"}, "inscrits": {"type": "integer"}, "abs": {"type": "integer"}, "votants": {"type": "integer"}, "blancs": {"type": "integer"}, "nuls": {"type": "integer"}, "exp": ... | {"nom" : "Fontenotte", "dpt" : "Doubs", "inscrits" : 49, "abs" : 9, "votants" : 40, "blancs" : 5, "nuls" : 2, "exp" : 33, "res" : [{"panneau" : "1", "voix" : 19}, {"panneau" : "2", "voix" : 14}]} | 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"... |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"text": {"type": "string"}, "url": {"type": "string"}}, "required": ["text", "url"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"text" : " Graphing a Piecewise Function\n\ng(x)\\left\\{\\begin{array}{cc}\\n-2 & \\text { if } x<-4 \\\\\\nx-3 & \\text { if }-1 \\leq x \\leq 5 \\\\\\n2 x-15 & \\text { if } x>7\\n\\end{array}\\right.[imath]-2 & \\text { if } x<-4 [/imath] [imath]x-3 & \\text { if }-1 \\leq x \\leq 5 [/imath] [imath]2 x-15 & \\text... | json_instruct | {"type": "object", "properties": {"text": {"type": "string"}, "url": {"type": "string"}}, "required": ["text", "url"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"id": {"type": "string"}, "text": {"type": "string"}}, "required": ["id", "text"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "d1708-5", "text" : "6\nUNIVERSITY OF MICHIGAN\nJanuary 8\nPrenatal Development. \u2014 Bradley M. Patten, Professor of\nAnatomy and Director of the Anatomical Laboratories\nJanuary 15\nPrenatal Care.\u2014John L. Law, M.D., Assistant Professor of\nPediatrics and Infectious Diseases\nJanuary 22\nChild Conservat... | 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": "object", "properties": {"rustc": {"type": "integer"}, "features": {"type": "string"}, "target": {"type": "integer"}, "profile": {"type": "integer"}, "path": {"type": "integer"}, "deps": {"type": "array", "items": {}}, "local": {"type":... | {"rustc" : 951959831004604366, "features" : "[\"default\", \"proc-macro\"]", "target" : 10429514197457385088, "profile" : 9935990280773120926, "path" : 15949328775536069176, "deps" : [], "local" : [{"CheckDepInfo" : {"dep_info" : "debug/.fingerprint/proc-macro2-3244c9f6b9799710/dep-build-script-build_script_build-3244c... | json_instruct | {"type": "object", "properties": {"rustc": {"type": "integer"}, "features": {"type": "string"}, "target": {"type": "integer"}, "profile": {"type": "integer"}, "path": {"type": "integer"}, "deps": {"type": "array", "items": {}}, "local": {"type": "array", "items": {"type": "object", "properties": {"CheckDepInfo": {"type... |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"copyright_text": {"type": "string"}, "description": {"type": "string"}, "duration": {"type": "integer"}, "language": {"type": "string"}, "recorded": {"type": "string"}, "speakers": {"type": "array", "items": {"type": "string"}... | {"copyright_text" : "Creative Commons Attribution license (reuse allowed)", "description" : "Lightning Talks from PyGotham 2017", "duration" : 3927, "language" : "eng", "recorded" : "2017-10-06", "speakers" : ["Fangfei Shen", "Evan Monkawa", "Paul Ganssle", "Timothy Allen", "Todd Green", "Eric Schles", "Aabir Abubaker ... | json_instruct | {"type": "object", "properties": {"copyright_text": {"type": "string"}, "description": {"type": "string"}, "duration": {"type": "integer"}, "language": {"type": "string"}, "recorded": {"type": "string"}, "speakers": {"type": "array", "items": {"type": "string"}}, "tags": {"type": "array", "items": {"type": "string"}}, ... |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"name": {"type": "string"}, "aliases": {"type": "array", "items": {"type": "string"}}, "description": {"type": "string"}, "website": {"type": "string"}, "license": {"type": "array", "items": {"type": "object",... | {"name" : "Aam Digital", "aliases" : [""], "description" : "Open source case management software for the social Sector. It provides an easy-to-use case management web app for NGOs anywhere in the world.", "website" : "https://www.aam-digital.com", "license" : [{"spdx" : "GPL-3.0", "licenseURL" : "https://github.com/Aam... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "aliases": {"type": "array", "items": {"type": "string"}}, "description": {"type": "string"}, "website": {"type": "string"}, "license": {"type": "array", "items": {"type": "object", "properties": {"spdx": {"type": "string"}, "licenseURL": {"type": "string"}}... |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"uuid": {"type": "string"}, "children": {"type": "array", "items": {"type": "string"}}, "befores": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "status": {"type": "string"}, "start": ... | {"uuid" : "4f6020a7-4559-451d-b757-244d4d75adb3", "children" : ["55357ba4-325d-4c52-8ef3-b808c2246bce"], "befores" : [{"name" : "app", "status" : "passed", "start" : 1600232482241, "stop" : 1600232482379}], "start" : 1600232482241, "stop" : 1600232483872} | json_instruct | {"type": "object", "properties": {"uuid": {"type": "string"}, "children": {"type": "array", "items": {"type": "string"}}, "befores": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "status": {"type": "string"}, "start": {"type": "integer"}, "stop": {"type": "integer"}}, "require... |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"ja232:2.4": {"type": "string"}, "ja232:3.1": {"type": "string"}}, "required": ["ja232:2.4", "ja232:3.1"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"ja232:2.4" : "yath\u0101 vi\u1e47\u0101\u201dti \u2192 thu\u1e47\u0101ti (bj)", "ja232:3.1" : "V\u012b\u1e47\u0101gu\u1e47aj\u0101taka\u1e41 \u2192 v\u012b\u1e47\u0101th\u016b\u1e47aj\u0101taka\u1e41 (sya1ed, sya2ed, pts-vp-pli1)"} | json_instruct | {"type": "object", "properties": {"ja232:2.4": {"type": "string"}, "ja232:3.1": {"type": "string"}}, "required": ["ja232:2.4", "ja232:3.1"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"black": {"type": "string"}, "white": {"type": "string"}, "winner": {"type": "string"}, "playedAt": {"type": "string"}, "location": {"type": "string"}, "event": {"type": "string"}, "moves": {"type": "string"}}, ... | {"black" : "Mamedjarova,Z", "white" : "Chiburdanidze,M", "winner" : "White", "playedAt" : "2009.03.14", "location" : "Istanbul TUR", "event" : "2009-10 FIDE Women's Grand Prix", "moves" : "pgn1.d4 d5 2.Nf3 Nf6 3.c4 e6 4.Nc3 Be7 5.Bg5 O-O 6.e3 h6 7.Bf4 c6 8.a3 Nbd7\n9.cxd5 Nxd5 10.Nxd5 exd5 11.Bd3 Nf6 12.Ne5 Bd6 13.Bc2 ... | json_instruct | {"type": "object", "properties": {"black": {"type": "string"}, "white": {"type": "string"}, "winner": {"type": "string"}, "playedAt": {"type": "string"}, "location": {"type": "string"}, "event": {"type": "string"}, "moves": {"type": "string"}}, "required": ["black", "white", "winner", "playedAt", "location", "event", "... |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"type": {"type": "string"}, "pattern": {"type": "array", "items": {"type": "string"}}, "key": {"type": "object", "properties": {"B": {"type": "object", "properties": {"tag": {"type": "string"}}, "required": ["tag"]},... | {"type" : "minecraft:crafting_shaped", "pattern" : ["BBB", " I ", "III"], "key" : {"B" : {"tag" : "rankine:anvil_blocks"}, "I" : {"tag" : "rankine:anvil_ingots"}}, "result" : {"item" : "minecraft:anvil", "count" : 1}} | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "pattern": {"type": "array", "items": {"type": "string"}}, "key": {"type": "object", "properties": {"B": {"type": "object", "properties": {"tag": {"type": "string"}}, "required": ["tag"]}, "I": {"type": "object", "properties": {"tag": {"type": "string"}}, "r... |
Following the schema specification below, generate a valid JSON instance:
{"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "frequency": {"type": "integer"}, "gender": {"type": "string"}}, "required": ["name", "frequency", "gender"]}, "$schema": "http://json-schema.org/draft-07/s... | [{"name" : "JEAN-EDOUARD", "frequency" : 12, "gender" : "male"}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "frequency": {"type": "integer"}, "gender": {"type": "string"}}, "required": ["name", "frequency", "gender"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following 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" : "FeatureCollection", "features" : [{"geometry" : {"type" : "Polygon", "coordinates" : [[[-93.155658, 44.908692], [-93.149228, 44.91243], [-93.146646, 44.919669], [-93.146603, 44.926937], [-93.144941, 44.92693], [-93.143636, 44.92917], [-93.141663, 44.93059], [-93.144931, 44.930573], [-93.150173, 44.934188], [... | 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": {"type": {"type": "string"}, "id": {"type": "string"}, "properties": {"type": "object", "properties": {"building": {"type": "string"}, "produce": {"type": "string"}, "ref:bag": {"type": "string"}, "shop": {"type": "string"}, "so... | {"type" : "Feature", "id" : "way/283239359", "properties" : {"building" : "house", "produce" : "eggs", "ref:bag" : "1672100000000737", "shop" : "farm", "source" : "BAG", "source:date" : "2014-05-20", "start_date" : "1895", "id" : "way/283239359"}, "geometry" : {"type" : "Point", "coordinates" : [4.5992049, 52.1304219]}... | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "id": {"type": "string"}, "properties": {"type": "object", "properties": {"building": {"type": "string"}, "produce": {"type": "string"}, "ref:bag": {"type": "string"}, "shop": {"type": "string"}, "source": {"type": "string"}, "source:date": {"type": "string"... |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "frequency": {"type": "integer"}, "gender": {"type": "string"}}, "required": ["name", "frequency", "gender"]}, "$schema": "http://json-schema.org/draft-07/schem... | [{"name" : "LUISA PATRICIA", "frequency" : 27, "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#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"department": {"type": "string"}, "description": {"type": "array", "items": {"type": "string"}}, "fullname": {"type": "string"}, "number": {"type": "integer"}, "section": {"type": "string"}, "semester": {"type": "integer"}, ... | {"department" : "SOAN", "description" : ["This course explores the forces that shape contemporary Latin America society, including", "material and cultural interactions with Europe, Africa and the U.S. Emphasis is placed on", "understanding the formation of the region in terms of the responses of key groups of actors",... | json_instruct | {"type": "object", "properties": {"department": {"type": "string"}, "description": {"type": "array", "items": {"type": "string"}}, "fullname": {"type": "string"}, "number": {"type": "integer"}, "section": {"type": "string"}, "semester": {"type": "integer"}, "shortname": {"type": "string"}, "type": {"type": "string"}, "... |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"Units": {"type": "array", "items": {"type": "string"}}, "Formats": {"type": "array", "items": {"type": "string"}}}, "required": ["Units", "Formats"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"Units" : ["certs-a-compute"], "Formats" : ["scripts"]} | json_instruct | {"type": "object", "properties": {"Units": {"type": "array", "items": {"type": "string"}}, "Formats": {"type": "array", "items": {"type": "string"}}}, "required": ["Units", "Formats"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"packageName": {"type": "string"}, "projectName": {"type": "string"}, "packageVersion": {"type": "string"}, "packageUrl": {"type": "string"}}, "required": ["packageName", "projectName", "packageVersion", "packageUr... | {"packageName" : "oldp_client", "projectName" : "oldp-api", "packageVersion" : "0.1.0", "packageUrl" : "https://github.com/openlegaldata/oldp-sdk-php"} | json_instruct | {"type": "object", "properties": {"packageName": {"type": "string"}, "projectName": {"type": "string"}, "packageVersion": {"type": "string"}, "packageUrl": {"type": "string"}}, "required": ["packageName", "projectName", "packageVersion", "packageUrl"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"type": {"type": "string"}, "id": {"type": "string"}, "spec_version": {"type": "string"}, "objects": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "id": {"type": "string"}, "created_by... | {"type" : "bundle", "id" : "bundle--9c3cea3b-dfdc-4eb3-8c82-f4945ffe9115", "spec_version" : "2.0", "objects" : [{"type" : "relationship", "id" : "relationship--ecf4a02c-e550-47eb-b1e6-ab0cc6988679", "created_by_ref" : "identity--31f421d4-bb36-4dbf-9dfc-c116a91de14b", "created" : "2017-02-01T00:00:00.000Z", "modified" :... | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "id": {"type": "string"}, "spec_version": {"type": "string"}, "objects": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "id": {"type": "string"}, "created_by_ref": {"type": "string"}, "created": {"type": "string"}, "... |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "id": {"type": "string"}, "isDefault": {"type": "boolean"}, "gains": {"type": "object", "properties": {"global": {"type": "number"}, "bands": {"type": "array", ... | [{"name" : "ZMF Verite Closed (hybrid Universe earpads)", "id" : "fefffa8afcdfcbe0eb29c17fd5fdac8628377d6a", "isDefault" : false, "gains" : {"global" : -3.3, "bands" : [-0.8, -1.7, -3.9, -0.6, -2.3, -0.1, 2.4, 2.5, 1.4, -0.8]}}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "id": {"type": "string"}, "isDefault": {"type": "boolean"}, "gains": {"type": "object", "properties": {"global": {"type": "number"}, "bands": {"type": "array", "items": {"type": "number"}}}, "required": ["global", "bands"]}}, "requ... |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"name": {"type": "string"}, "categoryType": {"type": "string"}, "description": {"type": "string"}, "children": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "description": ... | {"name" : "PersonalData", "categoryType" : "Classification", "description" : "Tags related classifying **Personal data** as defined by **GDPR.**<br/><br/>_Note to Legal - This tag category is provided as a starting point. Please review and update the tags based on your company policy. Also, add a reference to your GDPR... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "categoryType": {"type": "string"}, "description": {"type": "string"}, "children": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}}, "required": ["name", "description"]}}}, "required"... |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"name": {"type": "string"}, "symbol": {"type": "string"}, "logoURI": {"type": "string"}, "decimals": {"type": "integer"}, "address": {"type": "string"}, "chainId": {"type": "integer"}, "tags": {"type": "array", "items": {"type"... | {"name" : "CloudAtlasTech Coin", "symbol" : "CAT", "logoURI" : "https://raw.githubusercontent.com/trekk/Cloud-Atlas-Tech-Coin/main/logo.png", "decimals" : 4, "address" : "39BGw1FfdTz8JmdwUp6m3HhXGZ15mJgjnMfrQHx2Ypx8", "chainId" : 101, "tags" : ["utility-token", "social-token"]} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "symbol": {"type": "string"}, "logoURI": {"type": "string"}, "decimals": {"type": "integer"}, "address": {"type": "string"}, "chainId": {"type": "integer"}, "tags": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "symbol", "logoURI", "d... |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"version": {"type": "string"}, "private": {"type": "boolean"}, "name": {"type": "string"}, "description": {"type": "string"}, "repository": {"type": "string"}, "license": {"type": "string"}, "devDependencies": {"type": "object", ... | {"version" : "6.0.0", "private" : true, "name" : "ZacHalbert.com", "description" : "Personal website of Zac Halbert", "repository" : "https://github.com/zachalbert/zachalbert.com_v6", "license" : "MIT", "devDependencies" : {"bower" : "^1.3.12", "browser-sync" : "^1.7.1", "gulp" : "^3.8.7", "gulp-autoprefixer" : "0.0.10... | json_instruct | {"type": "object", "properties": {"version": {"type": "string"}, "private": {"type": "boolean"}, "name": {"type": "string"}, "description": {"type": "string"}, "repository": {"type": "string"}, "license": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"bower": {"type": "string"}, "browser-sync... |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"towns": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "url": {"type": "string"}}, "required": ["name", "url"]}}}, "required": ["towns"], "$schema": "http://json-schema.or... | {"towns" : [{"name" : "Brest", "url" : "brest"}]} | json_instruct | {"type": "object", "properties": {"towns": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "url": {"type": "string"}}, "required": ["name", "url"]}}}, "required": ["towns"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "array", "items": {"type": "object", "properties": {"code": {"type": "string"}, "name": {"type": "string"}, "name_kana": {"type": "string"}}, "required": ["code", "name", "name_kana"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"code" : "103", "name" : "\u30ab\u30e9\u30d5\u30eb\u30bf\u30a6\u30f3\u5c90\u961c\u51fa\u5f35\u6240", "name_kana" : "\uff76\uff97\uff8c\uff99\uff80\uff73\uff9d\uff77\uff9e\uff8c"}, {"code" : "158", "name" : "\u93e1\u5cf6", "name_kana" : "\uff76\uff76\uff9e\uff7c\uff8f"}, {"code" : "171", "name" : "\u52a0\u7d0d", "name... | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"code": {"type": "string"}, "name": {"type": "string"}, "name_kana": {"type": "string"}}, "required": ["code", "name", "name_kana"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"summary": {"type": "object", "properties": {"byte_size": {"type": "integer"}, "kb_size": {"type": "integer"}, "mb_size": {"type": "number"}, "collect_input": {"type": "boolean"}, "layers": {"type": "array", "... | {"summary" : {"byte_size" : 67174400, "kb_size" : 65600, "mb_size" : 64.0625, "collect_input" : false, "layers" : [{"bits:" : 8, "size:" : 65536, "byte_size:" : 65536, "foz:" : 0.104065, "zeros:" : 6820, "sum:" : 2023244, "min:" : 0, "max:" : 255, "mean:" : 30.8723}, {"bits:" : 32, "size:" : 16777216, "byte_size:" : 67... | json_instruct | {"type": "object", "properties": {"summary": {"type": "object", "properties": {"byte_size": {"type": "integer"}, "kb_size": {"type": "integer"}, "mb_size": {"type": "number"}, "collect_input": {"type": "boolean"}, "layers": {"type": "array", "items": {"type": "object", "properties": {"bits:": {"type": "integer"}, "size... |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"title": {"type": "string"}, "explanation": {"type": "string"}, "date": {"type": "string"}, "hdurl": {"type": "string"}, "service_version": {"type": "string"}, "copyright": {"type": "string"}, "media_type": {"type": "string"}, "u... | {"title" : "Geminid Meteors over Chile", "explanation" : "Are meteors streaming out from a point in the sky? Yes, in a way. When the Earth crosses a stream of Sun-orbiting meteors, these meteors appear to come from the direction of the stream -- with the directional point called the radiant.\ufffd An example occurs eve... | json_instruct | {"type": "object", "properties": {"title": {"type": "string"}, "explanation": {"type": "string"}, "date": {"type": "string"}, "hdurl": {"type": "string"}, "service_version": {"type": "string"}, "copyright": {"type": "string"}, "media_type": {"type": "string"}, "url": {"type": "string"}}, "required": ["title", "explanat... |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"nft": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "description": {"type": "string"}, "image": {"type": "string"}, "attributes": {"type": "array", "items": {"type": "obje... | {"nft" : {"id" : "5045", "name" : "PixelFreak #05045", "description" : "They call us ugly, and misfits, but we prefer to call ourselves freaks", "image" : "ipfs://QmQ1xJEZCdZocaDYRMCELaDpMHi9hF91gygeV9z5onbHvj", "attributes" : [{"trait_type" : "pet", "value" : "None"}, {"trait_type" : "body", "value" : "Warrior"}, {"tr... | json_instruct | {"type": "object", "properties": {"nft": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "description": {"type": "string"}, "image": {"type": "string"}, "attributes": {"type": "array", "items": {"type": "object", "properties": {"trait_type": {"type": "string"}, "value": {"type": ... |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"blogApp": {"type": "object", "properties": {"post": {"type": "object", "properties": {"home": {"type": "object", "properties": {"title": {"type": "string"}, "refreshListLabel": {"type": "string"}, "createLabel": {"type": "s... | {"blogApp" : {"post" : {"home" : {"title" : "Posts", "refreshListLabel" : "Refrescar lista", "createLabel" : "Crear nuevo Post", "createOrEditLabel" : "Crear o editar Post", "notFound" : "Ning\u00fan Posts encontrado"}, "created" : "Un nuevo Post ha sido creado con el identificador {{ param }}", "updated" : "Un Post ha... | json_instruct | {"type": "object", "properties": {"blogApp": {"type": "object", "properties": {"post": {"type": "object", "properties": {"home": {"type": "object", "properties": {"title": {"type": "string"}, "refreshListLabel": {"type": "string"}, "createLabel": {"type": "string"}, "createOrEditLabel": {"type": "string"}, "notFound": ... |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "summary": {"type": "string"}, "description": {"type": "string"}, "homepage": {"type": "string"}, "license": {"type": "object", "properties": {"type": {"ty... | {"name" : "YXWebBrowser", "version" : "0.1.0", "summary" : "A web browser for iOS7 and above.", "description" : "TODO: Add long description of the pod here.", "homepage" : "https://github.com/yxuan426/YXWebBrowser", "license" : {"type" : "MIT", "file" : "LICENSE"}, "authors" : {"Sternapara" : "yxuan426@163.com"}, "sour... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "summary": {"type": "string"}, "description": {"type": "string"}, "homepage": {"type": "string"}, "license": {"type": "object", "properties": {"type": {"type": "string"}, "file": {"type": "string"}}, "required": ["type", "file"... |
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"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "s... | {"name" : "notnewline", "version" : "1.0.0", "description" : "console.log without the newline", "main" : "index.js", "repository" : {"type" : "git", "url" : "git+ssh://git@github.com/finngreiter/notnewline.git"}, "keywords" : ["log", "console", "newlineless"], "author" : "Felgee", "license" : "MIT", "bugs" : {"url" : "... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "keywords": {"type": "array", ... |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"directions": {"type": "array", "items": {"type": "string"}}, "ingredients": {"type": "array", "items": {"type": "string"}}, "language": {"type": "string"}, "source": {"type": "string"}, "tags": {"type": "array", "i... | {"directions" : ["Whip cream with 3 tablespoons brown sugar to soft peaks. Add 3 tablespoons Sherry and beat to firm peaks. Cover and chill. (Can be prepared 6 hours ahead.)", "Preheat broiler. Arrange oranges in ring around center of each plate. Top with mint. Arrange figs cut side up in broilerproof pan. Sprinkle wit... | 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"... |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"__type__": {"type": "string"}, "content": {"type": "object", "properties": {"name": {"type": "string"}, "texture": {"type": "string"}, "rect": {"type": "array", "items": {"type": "integer"}}, "offset": {"type... | {"__type__" : "cc.SpriteFrame", "content" : {"name" : "pi_selectarrow", "texture" : "8asQfoZP1IW4FXH91rpv0Q", "rect" : [0, 0, 20, 10], "offset" : [0, 0], "originalSize" : [20, 10], "capInsets" : [0, 0, 0, 0]}} | json_instruct | {"type": "object", "properties": {"__type__": {"type": "string"}, "content": {"type": "object", "properties": {"name": {"type": "string"}, "texture": {"type": "string"}, "rect": {"type": "array", "items": {"type": "integer"}}, "offset": {"type": "array", "items": {"type": "integer"}}, "originalSize": {"type": "array", ... |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"data": {"type": "object", "properties": {"v": {"type": "string"}, "achievements": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "desc": {"type": "s... | {"data" : {"v" : "0.1", "achievements" : [{"id" : "1", "name" : "Getting started", "desc" : "Buy a business", "criteria" : [[6, 1, 3]], "hidden" : false}, {"id" : "2", "name" : "Pulling the lever", "desc" : "Start progress", "criteria" : [[7, 1, 3]], "hidden" : false}, {"id" : "3", "name" : "Mini-mogul", "desc" : "Own ... | json_instruct | {"type": "object", "properties": {"data": {"type": "object", "properties": {"v": {"type": "string"}, "achievements": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "desc": {"type": "string"}, "criteria": {"type": "array", "items": {"type": "array", "it... |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "repository": {"type": "string"}, "version": {"type": "string"}, "dependencies": {"type": "object", "properties": {}, "required": []}, "devDependencies": ... | {"name" : "angular-multirange-slider", "description" : "A multi-range slider directive for AngularJS", "repository" : "https://github.com/anandthakker/angular-multirange-slider", "version" : "1.1.1", "dependencies" : {}, "devDependencies" : {"coffee-script" : "^1.7.1", "gulp" : "^3.8", "gulp-clean" : "^0.3.0", "gulp-co... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "repository": {"type": "string"}, "version": {"type": "string"}, "dependencies": {"type": "object", "properties": {}, "required": []}, "devDependencies": {"type": "object", "properties": {"coffee-script": {"type": "string"}... |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"name": {"type": "string"}, "id": {"type": "string"}, "address": {"type": "string"}, "school_type": {"type": "string"}, "fax": {"type": "string"}, "phone": {"type": "string"}, "website": {"type": "string"}, "state": {"type":... | {"name" : "James Kr\u00fcss-Grundschule Gilching", "id" : "BY-2058", "address" : "Landsberger Str. 17 82205 Gilching", "school_type" : "Grundschule", "fax" : "08105 379419", "phone" : "08105 37940", "website" : "http://www.gs-gilching-sued.de", "state" : "BY", "programs" : {"programs" : []}, "full_time_school" : false,... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "id": {"type": "string"}, "address": {"type": "string"}, "school_type": {"type": "string"}, "fax": {"type": "string"}, "phone": {"type": "string"}, "website": {"type": "string"}, "state": {"type": "string"}, "programs": {"type": "object", "properties": {"pro... |
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#"}
| [[1919, 9], [1921, 6], [1922, 6], [1923, 9], [1925, 11], [1927, 11], [1928, 7], [1929, 6], [1930, 8], [1931, 7], [1932, 7], [1934, 7], [1937, 7], [1938, 5], [1941, 9], [1943, 9], [1954, 5], [1956, 5], [1957, 5], [1959, 8], [1963, 9], [1965, 5]] | json_instruct | {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$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"}, "description": {"type": "string"}, "image": {"type": "string"}, "dna": {"type": "string"}, "edition": {"type": "integer"}, "date": {"type": "integer"}, "attributes": {"type": "array", "i... | {"name" : "Crypto BAYC #251", "description" : "", "image" : "ipfs://QmXZWjCdRevZ3J2AUd9PvTbwo4ef5re6oouoFBX7D2whfC/251.png", "dna" : "216a4265de448fba04505f4ffa9b62ec86fdd93a", "edition" : 251, "date" : 1645298536510, "attributes" : [{"trait_type" : "TYPE", "value" : "Brown"}, {"trait_type" : "MOUTH", "value" : "Annoye... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "image": {"type": "string"}, "dna": {"type": "string"}, "edition": {"type": "integer"}, "date": {"type": "integer"}, "attributes": {"type": "array", "items": {"type": "object", "properties": {"trait_type": {"type": "string"... |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {}}, "productReviews": {"type": "array", "items": {"type": "object", "properties": {"productId": {"type": "integer"}, "r... | {"userId" : 63213, "cartId" : "a94040b4-5746-459e-92b4-6e4521093f2d", "preferredProducts" : [], "productReviews" : [{"productId" : 2046, "reviewText" : "My neighbor Albertina has one of these. She works as a gardener and she says it looks humongous.", "reviewDate" : "2020-01-13T22:44:10.2025594+02:00"}, {"productId" : ... | json_instruct | {"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {}}, "productReviews": {"type": "array", "items": {"type": "object", "properties": {"productId": {"type": "integer"}, "reviewText": {"type": "string"}, "reviewDate": {"type": "s... |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"task_meta": {"type": "object", "properties": {}, "required": []}, "annotations": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "new": {"type": "boolean"}, "parent_id": {"type... | {"task_meta" : {}, "annotations" : [{"id" : "096b68c7-6ed6-4c5c-ae64-effdb92621de", "new" : true, "parent_id" : null, "created_by" : "sarah_peterson", "created_at" : "2020-06-02T21:29:23Z", "deprecated" : false, "spatial_type" : "bbox3", "spatial_payload" : [[70.83333333333334, 159.16666666666669, 328.0], [423.61125000... | json_instruct | {"type": "object", "properties": {"task_meta": {"type": "object", "properties": {}, "required": []}, "annotations": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "new": {"type": "boolean"}, "parent_id": {"type": "null"}, "created_by": {"type": "string"}, "created_at": {"type": "... |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"kefir.js": {"type": "string"}, "kefir.min.js": {"type": "string"}}, "required": ["kefir.js", "kefir.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"kefir.js" : "sha256-ggUFRjBD2iPbA5YQO+T9ekw+U3jMudkJpTqCXAGlchE=", "kefir.min.js" : "sha256-qP1zaZsxr9M5xM9AkjPf3USvHr+3QRqfC27MdqIw5JM="} | json_instruct | {"type": "object", "properties": {"kefir.js": {"type": "string"}, "kefir.min.js": {"type": "string"}}, "required": ["kefir.js", "kefir.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "array", "items": {"type": "object", "properties": {"description": {"type": "string"}, "tests": {"type": "array", "items": {"type": "object", "properties": {"description": {"type": "string"}, "schema": {"type": "object", "properties": {"$schema": {"type"... | [{"description" : "using JSON pointers in external $ref", "tests" : [{"description" : "should resolve from remote definitions", "schema" : {"$schema" : "http://json-schema.org/draft-04/schema#", "title" : "Static Analysis Results Format (SARIF) Version 2.1.0-rtm.5 address fragment", "id" : "https://sarif/address-fragme... | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"description": {"type": "string"}, "tests": {"type": "array", "items": {"type": "object", "properties": {"description": {"type": "string"}, "schema": {"type": "object", "properties": {"$schema": {"type": "string"}, "title": {"type": "string"}, "id": {"type": ... |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"d3.js": {"type": "string"}, "d3.min.js": {"type": "string"}}, "required": ["d3.js", "d3.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"d3.js" : "sha512-BfrWc0JDWFqAdTAwL8boTPth6ii6gLobS4LHGd/wDSqKAagOTfhuQBihi1O6ryDUjp5/AjhfFkK6rjVSBWykJA==", "d3.min.js" : "sha512-1grOEEkgIqmW3Z7xNTn3pqjOiJoXQi6BrzYCAEmlmIETTnZ9VLoNYxysvtfaoXyn8KB356XzlkHb3X2sBVGtYw=="} | json_instruct | {"type": "object", "properties": {"d3.js": {"type": "string"}, "d3.min.js": {"type": "string"}}, "required": ["d3.js", "d3.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"imageUrl": {"type": "string"}, "title": {"type": "string"}, "description": {"type": "string"}}, "required": ["imageUrl", "title", "description"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"imageUrl" : "https://flipperguy.github.io/images/shoe-two.png", "title" : "Shoe Two", "description" : "This is an Adidas NMD. Sed ut perspiciatis, unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam eaque ipsa, quae ab illo inventore veritatis et quasi architecto beatae vit... | json_instruct | {"type": "object", "properties": {"imageUrl": {"type": "string"}, "title": {"type": "string"}, "description": {"type": "string"}}, "required": ["imageUrl", "title", "description"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"id": {"type": "integer"}, "info": {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "additionalInfo": {"type": "null"}, "format": {"type": "string"}, "category": {"type": "string"},... | {"id" : 132842, "info" : {"name" : "Game20.gr Dark Theme", "description" : "A simple dark theme for Game20.gr", "additionalInfo" : null, "format" : "uso", "category" : "game20", "createdAt" : "2016-09-19T02:20:51.000Z", "updatedAt" : "2017-05-22T21:41:33.000Z", "license" : "CC-BY-SA-4.0", "author" : {"id" : 357990, "na... | json_instruct | {"type": "object", "properties": {"id": {"type": "integer"}, "info": {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "additionalInfo": {"type": "null"}, "format": {"type": "string"}, "category": {"type": "string"}, "createdAt": {"type": "string"}, "updatedAt": {"type": "... |
Please provide a valid JSON object following this schema:
{"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "text": {"type": "string"}}, "required": ["id", "text"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"id" : "430521119001", "text" : "\u5f53\u5bb6\u5c45\u59d4\u4f1a"}, {"id" : "430521119002", "text" : "\u5411\u8363\u5c45\u59d4\u4f1a"}, {"id" : "430521119201", "text" : "\u754c\u5cad\u6751\u59d4\u4f1a"}, {"id" : "430521119207", "text" : "\u96c6\u4e2d\u6751\u59d4\u4f1a"}, {"id" : "430521119215", "text" : "\u5927\u4e30\... | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "text": {"type": "string"}}, "required": ["id", "text"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "directories": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "scr... | {"name" : "freeport", "version" : "1.0.0", "description" : "The Freeport smart contracts", "main" : "truffle-config.js", "directories" : {"test" : "test"}, "scripts" : {"test" : "truffle test --network=$npm_config_network", "compile" : "truffle compile", "migrate" : "truffle migrate --network=$npm_config_network", "dev... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "directories": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "scripts": {"type": "object", "properties": {"test": {"type": "... |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"requestBody": {"type": "object", "properties": {"additionalProperties": {"type": "boolean"}, "properties": {"type": "object", "properties": ... | {"type" : "object", "properties" : {"requestBody" : {"additionalProperties" : false, "properties" : {"expand" : {"description" : "Specifies which fields in the response should be expanded.", "items" : {"maxLength" : 5000, "type" : "string"}, "type" : "array"}, "location" : {"description" : "The id of the location that ... | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"requestBody": {"type": "object", "properties": {"additionalProperties": {"type": "boolean"}, "properties": {"type": "object", "properties": {"expand": {"type": "object", "properties": {"description": {"type": ... |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"name": {"type": "string"}, "symbol": {"type": "string"}, "address": {"type": "string"}, "decimals": {"type": "integer"}, "dharmaVerificationStatus": {"type": "string"}}, "required": ["name", "symbol", "address", "de... | {"name" : "QVANT.FINANCE", "symbol" : "QVANT", "address" : "0x04F118DDe1441889DC485Cb614049E7E9f4Dd16b", "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... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.