input
stringlengths
159
2.05k
output
stringlengths
5
10.3k
task
stringclasses
1 value
schema
stringlengths
100
1.99k
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type...
{"name" : "nickrfer.github.io", "version" : "0.0.1", "description" : "Personal blog and portfolio web site.", "authors" : [{"name" : "Nicolas Ferreira", "email" : "nickrfer@gmail.com"}], "license" : "MIT", "devDependencies" : {"babel-core" : "^6.18.2", "babel-loader" : "^6.2.7", "babel-preset-es2015" : "^6.18.0", "babe...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}}, "license": {"type": "string"}...
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"id": {"type": "string"}, "playerTags": {"type": "array", "items": {}}, "teamTags": {"type": "array", "items": {"type": "string"}}, "gameTags": {"type": "array", "items": {"type": "string"}}, "metadata": {"type": "object", "...
{"id" : "c4a05cda-6d0c-4d9d-af7d-73132c93d432", "playerTags" : [], "teamTags" : ["b72f3061-f573-40d7-832a-5ad475bd7909", "adc5b394-8f76-416d-9ce9-813706877b84"], "gameTags" : ["3e704c6f-9b9a-4543-b9ba-87c3f139e5bb"], "metadata" : {"play" : 197, "subPlay" : -1}, "created" : "2021-04-15T13:16:35.113Z", "season" : 15, "to...
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "playerTags": {"type": "array", "items": {}}, "teamTags": {"type": "array", "items": {"type": "string"}}, "gameTags": {"type": "array", "items": {"type": "string"}}, "metadata": {"type": "object", "properties": {"play": {"type": "integer"}, "subPlay": {"type":...
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"code": {"type": "integer"}, "parent": {"type": "integer"}, "name": {"type": "string"}, "latitude": {"type": "string"}, "longitude": {"type": "string"}, "postal": {"type": "array", "items": {"type": "integer"}}, "ch...
{"code" : 1106060, "parent" : 1106, "name" : "SILIH NARA", "latitude" : "4.6233429239927", "longitude" : "96.719754720842", "postal" : [24562, 24569], "children" : [1106060009, 1106060011, 1106060012, 1106060013, 1106060014, 1106060015, 1106060016, 1106060017, 1106060018, 1106060019, 1106060020, 1106060021, 1106060049,...
json_instruct
{"type": "object", "properties": {"code": {"type": "integer"}, "parent": {"type": "integer"}, "name": {"type": "string"}, "latitude": {"type": "string"}, "longitude": {"type": "string"}, "postal": {"type": "array", "items": {"type": "integer"}}, "children": {"type": "array", "items": {"type": "integer"}}}, "required": ...
The schema below describes a JSON structure. Generate a valid example: {"type": "array", "items": {"type": "object", "properties": {"$camera": {"type": "object", "properties": {"type": {"type": "string"}, "name": {"type": "string"}}, "required": ["type", "name"]}, "opacity": {"type": "integer"}}, "required": ["$camera...
[{"$camera" : {"type" : "$", "name" : "camera"}, "opacity" : 1}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"$camera": {"type": "object", "properties": {"type": {"type": "string"}, "name": {"type": "string"}}, "required": ["type", "name"]}, "opacity": {"type": "integer"}}, "required": ["$camera", "opacity"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
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" : "1118020005", "district_id" : "1118020", "name" : "MEUNASAH KULAM"}
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": {"throws": {"type": "string"}}, "required": ["throws"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"throws" : "Label '__proto__' is already declared (1:11)"}
json_instruct
{"type": "object", "properties": {"throws": {"type": "string"}}, "required": ["throws"], "$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"}, "properties": {"type": "object", "properties": {"name": {"type": "string"}, "fips": {"type": "string"}, "state_code": {"type": "integer"}, "county_code": {"type": "integer"}, "popul...
{"type" : "Feature", "properties" : {"name" : "Preston County", "fips" : "54077", "state_code" : 54, "county_code" : 77, "population" : 33432, "countrylevel_id" : "fips:54077", "census_data" : {"COUNTYNS" : "01558642", "AFFGEOID" : "0500000US54077", "LSAD" : "06", "ALAND" : 1680419589, "AWATER" : 6668879}}, "geometry" ...
json_instruct
{"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"name": {"type": "string"}, "fips": {"type": "string"}, "state_code": {"type": "integer"}, "county_code": {"type": "integer"}, "population": {"type": "integer"}, "countrylevel_id": {"type": "string"}, "census_d...
Following the schema specification below, generate a valid JSON instance: {"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" : "6103030026", "district_id" : "6103030", "name" : "AMBARANG"}
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "district_id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "district_id", "name"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"mock-server": {"type": "string"}}, "require...
{"name" : "hotel-api", "version" : "1.0.0", "description" : "Hotel API", "main" : "index.js", "scripts" : {"mock-server" : "json-server --routes ./config/routes.json --watch mock-data/hotels-data.json --middlewares ./config/hotel.middleware.js --no-delete-cascade"}, "author" : "Lemoncode", "license" : "MIT", "dependenc...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"mock-server": {"type": "string"}}, "required": ["mock-server"]}, "author": {"type": "string"}, "license": {"type": "st...
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"parent": {"type": "string"}}, "required": ["parent"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"parent" : "emendatusenigmatica:block/cobalt_mossy_stone_ore"}
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": {"name": {"type": "string"}, "version": {"type": "string"}, "author": {"type": "string"}, "email": {"type": "string"}, "description": {"type": "string"}, "bin": {"type": "object", "properties": {"mid-cli": {"type": "...
{"name" : "mid-cli", "version" : "0.1.12", "author" : "xudeming", "email" : "xudeming208@126.com", "description" : "A simple CLI for scaffolding mid framework.", "bin" : {"mid-cli" : "bin/index.js", "midcli" : "bin/index.js", "midc" : "bin/index.js", "mcli" : "bin/index.js"}, "keywords" : ["nodejs", "mid", "mvc", "fram...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "author": {"type": "string"}, "email": {"type": "string"}, "description": {"type": "string"}, "bin": {"type": "object", "properties": {"mid-cli": {"type": "string"}, "midcli": {"type": "string"}, "midc": {"type": "string"}, "mc...
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"banknotes": {"type": "object", "properties": {"frequent": {"type": "array", "items": {"type": "string"}}, "rare": {"type": "array", "items": {"type": "string"}}}, "required": ["frequent", "rare"]}, "coins": {"type": "object", ...
{"banknotes" : {"frequent" : ["Tk2", "Tk5", "Tk10", "Tk20", "Tk50", "Tk100", "Tk500", "Tk1000"], "rare" : ["Tk1"]}, "coins" : {"frequent" : ["Tk1", "Tk2", "Tk5"], "rare" : ["1", "5", "10", "25", "50"]}, "data_sources" : ["world-currencies"], "iso" : {"code" : "BDT", "number" : "050"}, "name" : "Bangladeshi Taka", "reco...
json_instruct
{"type": "object", "properties": {"banknotes": {"type": "object", "properties": {"frequent": {"type": "array", "items": {"type": "string"}}, "rare": {"type": "array", "items": {"type": "string"}}}, "required": ["frequent", "rare"]}, "coins": {"type": "object", "properties": {"frequent": {"type": "array", "items": {"typ...
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "license": {"type": "string"}, "summary": {"type": "string"}, "homepage": {"type": "string"}, "authors": {"type": "object", "properties": {"Mattt Thompson": ...
{"name" : "AFOAuth2Client", "version" : "0.0.1", "license" : "MIT", "summary" : "AFNetworking Extension for OAuth 2 Authentication.", "homepage" : "https://github.com/AFNetworking/AFOAuth2Client", "authors" : {"Mattt Thompson" : "m@mattt.me"}, "source" : {"git" : "https://github.com/AFNetworking/AFOAuth2Client.git", "c...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "license": {"type": "string"}, "summary": {"type": "string"}, "homepage": {"type": "string"}, "authors": {"type": "object", "properties": {"Mattt Thompson": {"type": "string"}}, "required": ["Mattt Thompson"]}, "source": {"type...
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"name": {"type": "string"}, "code": {"type": "string"}, "arg_count": {"type": "integer"}}, "required": ["name", "code", "arg_count"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "__cargo_web_snippet_a1bfb08db393b6580973e13b2336cadd21b9d97a", "code" : "$0 = Module.STDWEB_PRIVATE.to_js($0);$1 = Module.STDWEB_PRIVATE.to_js($1);delete($0)[($1)];", "arg_count" : 2}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "code": {"type": "string"}, "arg_count": {"type": "integer"}}, "required": ["name", "code", "arg_count"], "$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"}, "abv": {"type": "number"}, "ibu": {"type": "number"}, "srm": {"type": "number"}, "upc": {"type": "integer"}, "type": {"type": "string"}, "brewery_id": {"type": "string"}, "updated": {"ty...
{"name" : "Mokah Imperial Blended Stout", "abv" : 11.0, "ibu" : 0.0, "srm" : 0.0, "upc" : 0, "type" : "beer", "brewery_id" : "southern_tier_brewing_co", "updated" : "2010-07-22 20:00:20", "description" : "When empirical and creative impulses collide, the result is often timeless. The classic utility-art aesthetic of th...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "abv": {"type": "number"}, "ibu": {"type": "number"}, "srm": {"type": "number"}, "upc": {"type": "integer"}, "type": {"type": "string"}, "brewery_id": {"type": "string"}, "updated": {"type": "string"}, "description": {"type": "string"}, "style": {"type": "st...
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"directions": {"type": "array", "items": {"type": "string"}}, "ingredients": {"type": "array", "items": {"type": "string"}}, "language": {"type": "string"}, "source": {"type": "string"}, "tags": {"type": "array", "...
{"directions" : ["Melt 1/2 cup of butter in a saucepan over medium heat. Add the onion; cook and stir until deep brown, about 15 minutes. Stir in the maple syrup and trail mix. Heat to 300 to 310 degrees F (149 to 154 degrees C), or until a small amount of syrup drizzled from a spoon forms hard, brittle threads. Pour o...
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...
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"batchcomplete": {"type": "string"}, "query": {"type": "object", "properties": {"pages": {"type": "object", "properties": {"2087746": {"type": "object", "properties": {"pageid": {"type": "integer"}, "ns": {"type": ...
{"batchcomplete" : "", "query" : {"pages" : {"2087746" : {"pageid" : 2087746, "ns" : 0, "title" : "Balzers", "contentmodel" : "wikitext", "pagelanguage" : "en", "pagelanguagehtmlcode" : "en", "pagelanguagedir" : "ltr", "touched" : "2016-01-23T01:19:56Z", "lastrevid" : 699337952, "length" : 6222, "fullurl" : "https://en...
json_instruct
{"type": "object", "properties": {"batchcomplete": {"type": "string"}, "query": {"type": "object", "properties": {"pages": {"type": "object", "properties": {"2087746": {"type": "object", "properties": {"pageid": {"type": "integer"}, "ns": {"type": "integer"}, "title": {"type": "string"}, "contentmodel": {"type": "strin...
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"parent": {"type": "string"}}, "required": ["parent"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"parent" : "mist:block/mulch_block"}
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": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
[[2000, 5], [2003, 5], [2007, 7], [2008, 5]]
json_instruct
{"type": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"bottom_right": {"type": "array", "items": {"type": "object", "properties": {"text": {"type": "string"}, "clickEvent": {"type": "object", "properties": {"action": {"type": "string"}, "value": {"type": "string"}}, "required": ["...
{"bottom_right" : [{"text" : "Fabulously Optimized 3.9.1", "clickEvent" : {"action" : "open_url", "value" : "https://fabulously-optimized.github.io/"}}]}
json_instruct
{"type": "object", "properties": {"bottom_right": {"type": "array", "items": {"type": "object", "properties": {"text": {"type": "string"}, "clickEvent": {"type": "object", "properties": {"action": {"type": "string"}, "value": {"type": "string"}}, "required": ["action", "value"]}}, "required": ["text", "clickEvent"]}}},...
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"eventDetails": {"type": "object", "properties": {"statusCode": {"type": "string"}, "dataJSON": {"type": "string"}, "topic": {"type": "object", "properties": {"name": {"type": "string"}, "lastChangedDateTime": {"type": "string"...
{"eventDetails" : {"statusCode" : "200", "dataJSON" : "{\"life\":\"always to be figured out\"}", "topic" : {"name" : "idiosyncracy", "lastChangedDateTime" : "2021-10-23T22:21:24.568Z", "id" : "1809b2ac-8fc4-402e-8516-e346e77f40d4", "createDateTime" : "2021-10-23T22:21:24.568Z", "publishedEventsCount" : 0}, "totalNoOfSu...
json_instruct
{"type": "object", "properties": {"eventDetails": {"type": "object", "properties": {"statusCode": {"type": "string"}, "dataJSON": {"type": "string"}, "topic": {"type": "object", "properties": {"name": {"type": "string"}, "lastChangedDateTime": {"type": "string"}, "id": {"type": "string"}, "createDateTime": {"type": "st...
Based on the schema below, produce a valid JSON object: {"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": "integ...
{"nom" : "Courbeveille", "circ" : "2\u00e8me circonscription", "dpt" : "Mayenne", "inscrits" : 420, "abs" : 177, "votants" : 243, "blancs" : 6, "nuls" : 6, "exp" : 231, "res" : [{"nuance" : "MDM", "nom" : "Mme G\u00e9raldine BANNIER", "voix" : 182}, {"nuance" : "LR", "nom" : "M. Guillaume CHEVROLLIER", "voix" : 49}]}
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"...
Construct a JSON document that adheres to this schema specification: {"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" : "Android File Transfer", "description" : "A tool for transferring files between an Android device and a Mac.", "url" : "https://www.android.com/filetransfer/"}
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#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"serverAddress": {"type": "string"}, "serverPort": {"type": "integer"}, "publicKey": {"type": "string"}, "secretKey": {"type": "string"}}, "required": ["serverAddress", "serverPort", "publicKey", "secretKey"], "...
{"serverAddress" : "localhost", "serverPort" : 4061, "publicKey" : "970791f65394ef347cf52eb450c211992a87d642112d31f6d6e7e4638d8f867b", "secretKey" : "b08725d0d9260d0a0f5ef45cb3c2fd4b9132980dca1948af659987c6763aa21d"}
json_instruct
{"type": "object", "properties": {"serverAddress": {"type": "string"}, "serverPort": {"type": "integer"}, "publicKey": {"type": "string"}, "secretKey": {"type": "string"}}, "required": ["serverAddress", "serverPort", "publicKey", "secretKey"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"Name": {"type": "string"}, "Version": {"type": "string"}, "Author": {"type": "string"}, "Number of Nodes": {"type": "integer"}, "Number of Namespaces": {"type": "integer"}, "Number of Edges": {"type": "integer"}, "Number of An...
{"Name" : "BEL Framework Large Corpus Document", "Version" : "20170611", "Author" : "Selventa", "Number of Nodes" : 27967, "Number of Namespaces" : 15, "Number of Edges" : 80053, "Number of Annotations" : 8, "Number of Citations" : 16187, "Number of Authors" : 57243, "Network Density" : "1.02E-04", "Number of Component...
json_instruct
{"type": "object", "properties": {"Name": {"type": "string"}, "Version": {"type": "string"}, "Author": {"type": "string"}, "Number of Nodes": {"type": "integer"}, "Number of Namespaces": {"type": "integer"}, "Number of Edges": {"type": "integer"}, "Number of Annotations": {"type": "integer"}, "Number of Citations": {"t...
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"stationGroupId": {"type": "integer"}, "stations": {"type": "array", "items": {"type": "string"}}}, "required": ["stationGroupId", "stations"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"stationGroupId" : 2100418, "stations" : ["2100418"]}
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": "array", "items": {"type": "object", "properties": {"year": {"type": "integer"}, "sex": {"type": "string"}, "n": {"type": "integer"}, "prop": {"type": "number"}}, "required": ["year", "sex", "n", "prop"]}, "$schema": "http://json-schema.org/draft-07/sc...
[{"year" : 1938, "sex" : "F", "n" : 5, "prop" : 4.38e-06}, {"year" : 1939, "sex" : "F", "n" : 5, "prop" : 4.41e-06}, {"year" : 1941, "sex" : "F", "n" : 5, "prop" : 4.01e-06}, {"year" : 1944, "sex" : "F", "n" : 5, "prop" : 3.66e-06}, {"year" : 1946, "sex" : "F", "n" : 10, "prop" : 6.2e-06}, {"year" : 1948, "sex" : "F", ...
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"year": {"type": "integer"}, "sex": {"type": "string"}, "n": {"type": "integer"}, "prop": {"type": "number"}}, "required": ["year", "sex", "n", "prop"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"hash": {"type": "string"}, "parentHash": {"type": "string"}, "number": {"type": "integer"}, "timestamp": {"type": "integer"}, "nonce": {"type": "string"}, "difficulty": {"type": "integer"}, "gasLimit": {"type...
{"hash" : "0xf2e442e7ccd88420d459cb3be4968d532fbeb9c22a23853117d7747bf750f0f8", "parentHash" : "0x013100b1b8a65d666089625ab1730da4090386de1db4a704d2d109dd993d65a6", "number" : 105540, "timestamp" : 1439889277, "nonce" : "0xcdc2ac91bd2c746a", "difficulty" : 4406022560980, "gasLimit" : {"_hex" : "0x2fefd8"}, "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"]...
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "author": {"type": "string"}, "main": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type":...
{"name" : "javascript-flex-images", "version" : "0.0.1", "description" : "A lightweight vanilla JavaScript plugin for creating fluid galleries as seen on Flickr and Google Images.", "author" : "Pixabay team", "main" : "flex-images.js", "repository" : {"type" : "git", "url" : "https://github.com/Pixabay/JavaScript-flexI...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "author": {"type": "string"}, "main": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, ...
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" : 1125280445, "type" : "Feature", "properties" : {"src:alt_label" : "qs_pg", "src:geom" : "qs_pg", "wof:geomhash" : "b23cba90b24bec29956cfd1f95ffeeb6", "wof:id" : 1125280445, "wof:repo" : "whosonfirst-data-admin-lu"}, "bbox" : [5.869445, 49.52337, 5.869445, 49.52337], "geometry" : {"coordinates" : [5.869445, 49.5...
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": {"name": {"type": "string"}, "description": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "repository": {"type": "string"}, "success_url": {"type": "string"}, "scripts": {"type":...
{"name" : "Spectre", "description" : "A web application to diff screenshots", "keywords" : ["testing", "ui"], "repository" : "https://github.com/wearefriday/spectre", "success_url" : "/", "scripts" : {"postdeploy" : "bundle exec rake db:schema:load"}, "formation" : {"web" : {"quantity" : 1}}, "image" : "heroku/ruby", "...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "repository": {"type": "string"}, "success_url": {"type": "string"}, "scripts": {"type": "object", "properties": {"postdeploy": {"type": "string"}}, "required": ["...
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"code": {"type": "integer"}, "data": {"type": "object", "properties": {"refresh_token": {"type": "string"}, "expires_in": {"type": "integer"}, "session_key": {"type": "string"}, "access_token": {"type": "string"}, "s...
{"code" : 0, "data" : {"refresh_token" : "25.0244fab9b69aca75573c5ed838fc9e6f.315360000.1877649300.282335-16711549", "expires_in" : 2592000, "session_key" : "9mzdDxLPfRGcOo4o7XDOo+EJn12QPvMLo+iKMM51Eoo1O5nYHEOGuh8VRPX1ME2sN3yNAH+1BT9LlNY89BiNXapfOnnIhg==", "access_token" : "24.46047ecad70eb37d3520c85e38b640ca.2592000.1...
json_instruct
{"type": "object", "properties": {"code": {"type": "integer"}, "data": {"type": "object", "properties": {"refresh_token": {"type": "string"}, "expires_in": {"type": "integer"}, "session_key": {"type": "string"}, "access_token": {"type": "string"}, "scope": {"type": "string"}, "session_secret": {"type": "string"}}, "req...
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "version": {"type": "string"}, "private": {"type": "boolean"}, "dependencies": {"type": "object", "properties": {"node-red-contrib-dashboard-sum-bars":...
{"name" : "node-red-project", "description" : "A Node-RED Project", "version" : "0.0.1", "private" : true, "dependencies" : {"node-red-contrib-dashboard-sum-bars" : "0.0.1", "node-red-contrib-ui-led" : "~0.4.9", "node-red-contrib-ui-sys-loft" : "~0.1.1", "node-red-dashboard" : "~2.30.0", "node-red-node-tail" : "~0.3.1"...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "version": {"type": "string"}, "private": {"type": "boolean"}, "dependencies": {"type": "object", "properties": {"node-red-contrib-dashboard-sum-bars": {"type": "string"}, "node-red-contrib-ui-led": {"type": "string"}, "nod...
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"variants": {"type": "object", "properties": {"": {"type": "object", "properties": {"model": {"type": "string"}}, "required": ["model"]}}, "required": [""]}}, "required": ["variants"], "$schema": "http://json-schem...
{"variants" : {"" : {"model" : "tmo:block/ender_matter_block"}}}
json_instruct
{"type": "object", "properties": {"variants": {"type": "object", "properties": {"": {"type": "object", "properties": {"model": {"type": "string"}}, "required": ["model"]}}, "required": [""]}}, "required": ["variants"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"course": {"type": "array", "items": {"type": "object", "properties": {"courseID": {"type": "string"}, "problems": {"type": "array", "items": {"type": "object", "properties": {"problemID": {"type": "string"}, "q...
{"course" : [{"courseID" : "", "problems" : [{"problemID" : "", "question" : "", "possibleAnswers" : [""], "correctAnswer" : ""}]}, {"courseID" : "DJK 101B", "problems" : [{"problemID" : "1", "question" : "Say my name.", "possibleAnswers" : ["DJ Khaled", "Batman", "Donald Trump", "Bob"], "correctAnswer" : "DJ Khaled"},...
json_instruct
{"type": "object", "properties": {"course": {"type": "array", "items": {"type": "object", "properties": {"courseID": {"type": "string"}, "problems": {"type": "array", "items": {"type": "object", "properties": {"problemID": {"type": "string"}, "question": {"type": "string"}, "possibleAnswers": {"type": "array", "items":...
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"ETag": {"type": "string"}, "Last-Modified": {"type": "string"}, "base": {"type": "object", "properties": {"repo": {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"]}}, "requir...
{"ETag" : "W/\"77f33bac1a0910382dd69522b9413668\"", "Last-Modified" : "Thu, 07 Mar 2019 17:53:43 GMT", "base" : {"repo" : {"name" : "descarteslabs-feedstock"}}, "closed_at" : "2019-03-07T17:53:43Z", "created_at" : "2019-03-07T17:26:51Z", "head" : {"ref" : "0.17.3"}, "html_url" : "https://github.com/conda-forge/descarte...
json_instruct
{"type": "object", "properties": {"ETag": {"type": "string"}, "Last-Modified": {"type": "string"}, "base": {"type": "object", "properties": {"repo": {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"]}}, "required": ["repo"]}, "closed_at": {"type": "string"}, "created_at": {"type": "stri...
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"hash": {"type": "object", "properties": {}, "required": []}, "size": {"type": "integer"}, "url": {"type": "string"}}, "required": ["hash", "size", "url"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"hash" : {}, "size" : 211446, "url" : "github://lancaster-university/microbit-dal#v2.1.1"}
json_instruct
{"type": "object", "properties": {"hash": {"type": "object", "properties": {}, "required": []}, "size": {"type": "integer"}, "url": {"type": "string"}}, "required": ["hash", "size", "url"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"block with no tags": {"type": "object", "properties": {"inside describe 1": {"type": "string"}, "inside describe 2": {"type": "string"}}, "required": ["inside describe 1", "inside describe 2"]}, "block with tag smoke": {"ty...
{"block with no tags" : {"inside describe 1" : "passing", "inside describe 2" : "passing"}, "block with tag smoke" : {"inside describe 3" : "pending", "inside describe 4" : "pending"}, "block without any tags" : {"test with tag smoke" : "pending"}, "is a test outside any suites" : "passing"}
json_instruct
{"type": "object", "properties": {"block with no tags": {"type": "object", "properties": {"inside describe 1": {"type": "string"}, "inside describe 2": {"type": "string"}}, "required": ["inside describe 1", "inside describe 2"]}, "block with tag smoke": {"type": "object", "properties": {"inside describe 3": {"type": "s...
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"jwtSecret": {"type": "string"}}, "required": ["jwtSecret"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"jwtSecret" : "SECRET guid"}
json_instruct
{"type": "object", "properties": {"jwtSecret": {"type": "string"}}, "required": ["jwtSecret"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {"type": "integer"}}, "productReviews": {"type": "array", "items": {"type": "object", "properties": {"produc...
{"userId" : 86049, "cartId" : "a3b445c1-7c06-4844-ac89-43bcdd72782d", "preferredProducts" : [741, 4869, 3868, 1968, 2358, 2349, 4779, 2875], "productReviews" : [{"productId" : 551, "reviewText" : "talk about pleasure.", "reviewDate" : "2019-05-08T21:38:55.9272731+03:00"}, {"productId" : 4533, "reviewText" : "It only wo...
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...
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"token": {"type": "integer"}}, "required": ["token"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"token" : 123}
json_instruct
{"type": "object", "properties": {"token": {"type": "integer"}}, "required": ["token"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"/js/app.js": {"type": "string"}, "/css/app.css": {"type": "string"}, "/otros.js": {"type": "string"}, "/otros.css": {"type": "string"}}, "required": ["/js/app.js", "/css/app.css", "/otros.js", "/otros.css"], "$...
{"/js/app.js" : "/js/app.js", "/css/app.css" : "/css/app.css", "/otros.js" : "/otros.js", "/otros.css" : "/otros.css"}
json_instruct
{"type": "object", "properties": {"/js/app.js": {"type": "string"}, "/css/app.css": {"type": "string"}, "/otros.js": {"type": "string"}, "/otros.css": {"type": "string"}}, "required": ["/js/app.js", "/css/app.css", "/otros.js", "/otros.css"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"jaccard_index": {"type": "array", "items": {"type": "number"}}, "Macro_F1": {"type": "array", "items": {"type": "number"}}, "Micro_F1": {"type": "array", "items": {"type": "number"}}}, "required": ["jaccard_index", "Macro_F1",...
{"jaccard_index" : [0.46340090090090086, 0.5259009009009009, 0.49943693693693697, 0.49887387387387383, 0.5219594594594594], "Macro_F1" : [0.3304108170355671, 0.37924071882150223, 0.39893648727989434, 0.3780577265871383, 0.3945001074389694], "Micro_F1" : [0.5156626506024097, 0.5899280575539568, 0.5714285714285715, 0.564...
json_instruct
{"type": "object", "properties": {"jaccard_index": {"type": "array", "items": {"type": "number"}}, "Macro_F1": {"type": "array", "items": {"type": "number"}}, "Micro_F1": {"type": "array", "items": {"type": "number"}}}, "required": ["jaccard_index", "Macro_F1", "Micro_F1"], "$schema": "http://json-schema.org/draft-07/s...
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"topCrop": {"type": "object", "properties": {"x": {"type": "integer"}, "y": {"type": "integer"}, "width": {"type": "integer"}, "height": {"type": "integer"}, "score": {"type": "object", "properties": {"detail": ...
{"topCrop" : {"x" : 0, "y" : 0, "width" : 175, "height" : 175, "score" : {"detail" : 8.662901394813897, "saturation" : -1.5974687184784278, "skin" : 19.56478358875884, "boost" : 138.0135409061676, "total" : 0.45184731561599817}}}
json_instruct
{"type": "object", "properties": {"topCrop": {"type": "object", "properties": {"x": {"type": "integer"}, "y": {"type": "integer"}, "width": {"type": "integer"}, "height": {"type": "integer"}, "score": {"type": "object", "properties": {"detail": {"type": "number"}, "saturation": {"type": "number"}, "skin": {"type": "num...
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "background_page": {"type": "string"}, "permissions": {"type": "array", "items": {"type": "string"}}, "browser_action": {"type": "object", "properties": {"name": {"type":...
{"name" : "A browser action which changes its icon when clicked.", "version" : "1.0", "background_page" : "background.html", "permissions" : ["tabs", "http://*/*"], "browser_action" : {"name" : "Click to change the icon's color"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "background_page": {"type": "string"}, "permissions": {"type": "array", "items": {"type": "string"}}, "browser_action": {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"]}}, "required": ["name",...
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"month": {"type": "string"}, "num": {"type": "integer"}, "link": {"type": "string"}, "year": {"type": "string"}, "news": {"type": "string"}, "safe_title": {"type": "string"}, "transcript": {"type": "string"}, "a...
{"month" : "9", "num" : 2363, "link" : "", "year" : "2020", "news" : "", "safe_title" : "Message Boards", "transcript" : "", "alt" : "(c) You can have a scooter when you pay for it yourself, and (d) if you can't learn to start a new thread rather than responding to an old one, you'll be banned. [thread locked by modera...
json_instruct
{"type": "object", "properties": {"month": {"type": "string"}, "num": {"type": "integer"}, "link": {"type": "string"}, "year": {"type": "string"}, "news": {"type": "string"}, "safe_title": {"type": "string"}, "transcript": {"type": "string"}, "alt": {"type": "string"}, "img": {"type": "string"}, "title": {"type": "stri...
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"short_name": {"type": "string"}, "name": {"type": "string"}, "author": {"type": "string"}, "description": {"type": "string"}, "developer": {"type": "object", "properties": {"name": {"type": "string"}, "url": {"type"...
{"short_name" : "letmeask", "name" : "let me ask", "author" : "Leonardo Ronne", "description" : "Every question has an answer, learn and share knowledge with others.", "developer" : {"name" : "Leonardo Ronne", "url" : "https://github.com/leoronne"}, "homepage_url" : "https://letmeask.ronne.dev", "icons" : [{"src" : "fa...
json_instruct
{"type": "object", "properties": {"short_name": {"type": "string"}, "name": {"type": "string"}, "author": {"type": "string"}, "description": {"type": "string"}, "developer": {"type": "object", "properties": {"name": {"type": "string"}, "url": {"type": "string"}}, "required": ["name", "url"]}, "homepage_url": {"type": "...
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"url": {"type": "string"}, "version": {"type": "string"}}, "required": ["url", "version"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"url" : "https://download.jetbrains.com/resharper/JetBrains.Profiler.SelfSdk.2017.3.2.zip", "version" : "2017.3.2"}
json_instruct
{"type": "object", "properties": {"url": {"type": "string"}, "version": {"type": "string"}}, "required": ["url", "version"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}, "start:many": {"type": "string"...
{"name" : "postgres-example-typescript", "version" : "1.0.0", "description" : "NodeJS Postgres Sequelize Typescript", "main" : "dist/app.js", "scripts" : {"start" : "./node_modules/.bin/tsc && node dist/app.js", "start:many" : "./node_modules/.bin/tsc && node dist/many-to-many.js", "start:where" : "./node_modules/.bin/...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}, "start:many": {"type": "string"}, "start:where": {"type": "string"}, "start:jsonb": {"type...
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" : 1125935101, "type" : "Feature", "properties" : {"src:alt_label" : "qs_pg", "src:geom" : "qs_pg", "wof:geomhash" : "03e559bb6f03033bddaf3b7a9f7b3c29", "wof:id" : 1125935101}, "bbox" : [7.38489, 46.2617, 7.38489, 46.2617], "geometry" : {"coordinates" : [7.38489, 46.2617], "type" : "Point"}}
json_instruct
{"type": "object", "properties": {"id": {"type": "integer"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"src:alt_label": {"type": "string"}, "src:geom": {"type": "string"}, "wof:geomhash": {"type": "string"}, "wof:id": {"type": "integer"}}, "required": ["src:alt_label", "src:geom", "wof...
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"directions": {"type": "array", "items": {"type": "string"}}, "ingredients": {"type": "array", "items": {"type": "string"}}, "language": {"type": "string"}, "source": {"type": "string"}, "tags": {"type": "array", "it...
{"directions" : ["Mix blueberries, sugar, lemon juice, and cinnamon in a saucepan; cook, stirring constantly, over medium heat until thickened, about 30 minutes."], "ingredients" : ["4 cups fresh blueberries", "1 cup white sugar", "1 tablespoon fresh lemon juice", "1 pinch ground cinnamon (optional)"], "language" : "en...
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...
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"objects": {"type": "object", "properties": {"vectile": {"type": "object", "properties": {"type": {"type": "string"}, "geometries": {"type": "array", "items": {"type": "object", "properties": {"arcs": {"type": "arra...
{"objects" : {"vectile" : {"type" : "GeometryCollection", "geometries" : [{"arcs" : [[0]], "type" : "Polygon", "properties" : {"id" : 68, "nazev" : "Krom\ufffd\ufffd\ufffd\ufffd"}, "clipped" : true, "id" : "f21d5e93f5"}, {"arcs" : [[1]], "type" : "Polygon", "properties" : {"id" : 69, "nazev" : "Uhersk\ufffd Hradi\ufffd...
json_instruct
{"type": "object", "properties": {"objects": {"type": "object", "properties": {"vectile": {"type": "object", "properties": {"type": {"type": "string"}, "geometries": {"type": "array", "items": {"type": "object", "properties": {"arcs": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}, "type": ...
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"base_spec": {"type": "string"}, "layer": {"type": "integer"}, "bias": {"type": "integer"}, "simplex_range": {"type": "array", "items": {"type": "number"}}, "pos_range": {"type": "array", "items": {"type": "integer"...
{"base_spec" : "/pa/effects/specs/dynamic_decal_base.json", "layer" : 1, "bias" : 200, "simplex_range" : [0.0, 1.0], "pos_range" : [0, 0], "scale" : [40, 40, 1], "scale_range" : 0, "count" : 1, "material_spec" : "/pa/units/misc/bug_scorch_material.json", "lifetime" : 0}
json_instruct
{"type": "object", "properties": {"base_spec": {"type": "string"}, "layer": {"type": "integer"}, "bias": {"type": "integer"}, "simplex_range": {"type": "array", "items": {"type": "number"}}, "pos_range": {"type": "array", "items": {"type": "integer"}}, "scale": {"type": "array", "items": {"type": "integer"}}, "scale_ra...
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"type": {"type": "string"}, "id": {"type": "string"}, "properties": {"type": "object", "properties": {"amenity": {"type": "string"}, "highway": {"type": "string"}, "name": {"type": "string"}, "opening_hours": {"type":...
{"type" : "Feature", "id" : "way/326419710", "properties" : {"amenity" : "marketplace", "highway" : "pedestrian", "name" : "Benqueplatz", "opening_hours" : "We, Sa 8:00-13:00", "surface" : "paving_stones", "id" : "way/326419710"}, "geometry" : {"type" : "Point", "coordinates" : [8.8330385, 53.086472]}}
json_instruct
{"type": "object", "properties": {"type": {"type": "string"}, "id": {"type": "string"}, "properties": {"type": "object", "properties": {"amenity": {"type": "string"}, "highway": {"type": "string"}, "name": {"type": "string"}, "opening_hours": {"type": "string"}, "surface": {"type": "string"}, "id": {"type": "string"}},...
Based on the schema below, produce a valid JSON object: {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"org": {"type": "string"}, "space": {"type": "string"}}, "required": ["org", "space"]}}, "required...
[{"name" : "ZE_PLATFORM", "type" : "XS2", "properties" : {"org" : "initial", "space" : "initial"}}, {"name" : "CF_PLATFORM", "type" : "CF", "properties" : {"org" : "initial", "space" : "initial"}}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"org": {"type": "string"}, "space": {"type": "string"}}, "required": ["org", "space"]}}, "required": ["name", "type", "properties"]}, "$schema": "http://js...
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "private": {"type": "boolean"}, "scripts": {"type": "object", "properties": {"watch": {"type": "string"}}, "required": ["watch"]}, "dependencies": {"type": "...
{"name" : "express-web-modules", "version" : "0.0.1", "private" : true, "scripts" : {"watch" : "watchify -g ejs-browserify-transformer -g require-globify load.js -o loaded.js -v"}, "dependencies" : {"express-web" : "git://github.com/workproducts/express-web.git", "underscore" : "1.8.3", "underscore.string" : "3.2.3", "...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "private": {"type": "boolean"}, "scripts": {"type": "object", "properties": {"watch": {"type": "string"}}, "required": ["watch"]}, "dependencies": {"type": "object", "properties": {"express-web": {"type": "string"}, "underscore...
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"nom": {"type": "string"}, "dpt": {"type": "string"}, "inscrits": {"type": "integer"}, "abs": {"type": "integer"}, "votants": {"type": "integer"}, "blancs": {"type": "integer"}, "nuls": {"type": "integer"}, "e...
{"nom" : "Ecole-Valentin", "dpt" : "Doubs", "inscrits" : 1787, "abs" : 310, "votants" : 1477, "blancs" : 27, "nuls" : 10, "exp" : 1440, "res" : [{"panneau" : "3", "voix" : 425}, {"panneau" : "11", "voix" : 299}, {"panneau" : "9", "voix" : 264}, {"panneau" : "2", "voix" : 249}, {"panneau" : "4", "voix" : 109}, {"panneau...
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"...
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"private": {"type": "boolean"}, "scripts": {"type": "object", "properties": {"dev": {"type": "string"}, "build": {"type": "string"}}, "required": ["dev", "build"]}, "devDependencies": {"type": "object", "properties": {"vuepress...
{"private" : true, "scripts" : {"dev" : "vuepress dev docs", "build" : "vuepress build docs"}, "devDependencies" : {"vuepress" : "1.5.2", "vuepress-plugin-container" : "^2.1.4"}}
json_instruct
{"type": "object", "properties": {"private": {"type": "boolean"}, "scripts": {"type": "object", "properties": {"dev": {"type": "string"}, "build": {"type": "string"}}, "required": ["dev", "build"]}, "devDependencies": {"type": "object", "properties": {"vuepress": {"type": "string"}, "vuepress-plugin-container": {"type"...
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "author": {"type": "string"}, "version": {"type": "string"}, "main": {"type": "string"}, "files": {"type": "array", "items": {"type": "string"}}, "scripts": {"type"...
{"name" : "vue-styled-system", "description" : "Design system utilities for Vue", "author" : "Compositor", "version" : "0.0.9", "main" : "index.js", "files" : ["index.js", "system.js"], "scripts" : {"test" : "ava -v"}, "repository" : "c8r/vue-styled-system", "keywords" : ["vue", "components", "design", "system", "style...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "author": {"type": "string"}, "version": {"type": "string"}, "main": {"type": "string"}, "files": {"type": "array", "items": {"type": "string"}}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "re...
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"nom": {"type": "string"}, "dpt": {"type": "string"}, "inscrits": {"type": "integer"}, "abs": {"type": "integer"}, "votants": {"type": "integer"}, "blancs": {"type": "integer"}, "nuls": {"type": "integer"}, "exp": {"type": "int...
{"nom" : "Quincampoix", "dpt" : "Seine-Maritime", "inscrits" : 2607, "abs" : 333, "votants" : 2274, "blancs" : 28, "nuls" : 6, "exp" : 2240, "res" : [{"panneau" : "3", "voix" : 642}, {"panneau" : "11", "voix" : 632}, {"panneau" : "2", "voix" : 395}, {"panneau" : "9", "voix" : 308}, {"panneau" : "1", "voix" : 111}, {"pa...
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"...
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "author": {"type": "string"}, "version": {"type": "string"}, "repository": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["u...
{"name" : "houjinbangou-api", "description" : "a Web-API wrapper for corporate number system in Japan written in Typescript.", "author" : "Yusuke Kataoka", "version" : "0.0.3", "repository" : {"url" : "https://github.com/totechite/houjinbangou-api-wrapper.git"}, "main" : "./lib/src/index.js", "module" : "./lib/src/inde...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "author": {"type": "string"}, "version": {"type": "string"}, "repository": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "main": {"type": "string"}, "module": {"type": "string"}, "types...
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"id": {"type": "integer"}, "surahNumber": {"type": "string"}, "ayatNumber": {"type": "string"}, "arabic": {"type": "string"}, "english": {"type": "string"}, "bengali": {"type": "string"}}, "required": ["id", "surahNumber", "aya...
{"id" : 4422, "surahNumber" : "044", "ayatNumber" : "008", "arabic" : "\u0644\u064e\u0627 \u0625\u0650\u0644\u064e\u0670\u0647\u064e \u0625\u0650\u0644\u0651\u064e\u0627 \u0647\u064f\u0648\u064e \u064a\u064f\u062d\u0652\u064a\u0650\u064a \u0648\u064e\u064a\u064f\u0645\u0650\u064a\u062a\u064f \u06d6 \u0631\u064e\u0628\u...
json_instruct
{"type": "object", "properties": {"id": {"type": "integer"}, "surahNumber": {"type": "string"}, "ayatNumber": {"type": "string"}, "arabic": {"type": "string"}, "english": {"type": "string"}, "bengali": {"type": "string"}}, "required": ["id", "surahNumber", "ayatNumber", "arabic", "english", "bengali"], "$schema": "http...
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"900670249": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900670250": {"type": "object", "properties": {"nama": {"type...
{"900670249" : {"nama" : "TPS 1", "dapil" : [6201, 16204, 2620403]}, "900670250" : {"nama" : "TPS 2", "dapil" : [6201, 16204, 2620403]}}
json_instruct
{"type": "object", "properties": {"900670249": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900670250": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": ...
Following the schema specification below, generate a valid JSON instance: {"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" : "Arvillard", "dpt" : "Savoie", "inscrits" : 687, "abs" : 149, "votants" : 538, "blancs" : 48, "nuls" : 14, "exp" : 476, "res" : [{"panneau" : "1", "voix" : 285}, {"panneau" : "2", "voix" : 191}]}
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"...
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"text": {"type": "string"}, "denotations": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "span": {"type": "object", "properties": {"begin": {"type": "integer"}, "end": {"type": "integer"...
{"text" : "To describe the profile of deaths and the lethality of Severe Acute Respiratory Syndrome (SARS) due to COVID-19 in hospitalized children and adolescents in Brazil.This was a cross-sectional study conducted with data from the SARS notification forms of children and adolescents (0 to 19 years old) with laborat...
json_instruct
{"type": "object", "properties": {"text": {"type": "string"}, "denotations": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "span": {"type": "object", "properties": {"begin": {"type": "integer"}, "end": {"type": "integer"}}, "required": ["begin", "end"]}, "obj": {"type": "string"...
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"name": {"type": "string"}, "homepage": {"type": "string"}, "authors": {"type": "array", "items": {"type": "string"}}, "description": {"type": "string"}, "main": {"type": "string"}, "moduleType": {"type": "array", "it...
{"name" : "safenet-browser-client", "homepage" : "https://github.com/traktion0/safenet-browser-client", "authors" : ["Paul Green <traktion0@gmail.com>"], "description" : "Client library for accessing the Safe Net Launcher REST API via a web browser", "main" : "src/safeapi.js", "moduleType" : [], "keywords" : ["safe", "...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "homepage": {"type": "string"}, "authors": {"type": "array", "items": {"type": "string"}}, "description": {"type": "string"}, "main": {"type": "string"}, "moduleType": {"type": "array", "items": {}}, "keywords": {"type": "array", "items": {"type": "string"}}...
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"acadYear": {"type": "string"}, "description": {"type": "string"}, "title": {"type": "string"}, "department": {"type": "string"}, "faculty": {"type": "string"}, "workload": {"type": "array", "items": {"type": "i...
{"acadYear" : "2019/2020", "description" : "Selected topics in logic are offered.", "title" : "Topics in Logic II", "department" : "Mathematics", "faculty" : "Science", "workload" : [3, 0, 0, 2, 5], "prerequisite" : "Departmental approval.", "moduleCredit" : "4", "moduleCode" : "MA6223", "semesterData" : []}
json_instruct
{"type": "object", "properties": {"acadYear": {"type": "string"}, "description": {"type": "string"}, "title": {"type": "string"}, "department": {"type": "string"}, "faculty": {"type": "string"}, "workload": {"type": "array", "items": {"type": "integer"}}, "prerequisite": {"type": "string"}, "moduleCredit": {"type": "st...
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"instance": {"type": "object", "properties": {"gtSpotterReportsFor:": {"type": "string"}}, "required": ["gtSpotterReportsFor:"]}, "class": {"type": "object", "properties": {}, "required": []}}, "required": ["ins...
{"instance" : {"gtSpotterReportsFor:" : "TommasoDalSasso 6/22/2016 00:00"}, "class" : {}}
json_instruct
{"type": "object", "properties": {"instance": {"type": "object", "properties": {"gtSpotterReportsFor:": {"type": "string"}}, "required": ["gtSpotterReportsFor:"]}, "class": {"type": "object", "properties": {}, "required": []}}, "required": ["instance", "class"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"id": {"type": "string"}, "merged_at": {"type": "string"}, "state": {"type": "string"}}, "required": ["id", "merged_at", "state"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : "3a770a00-2cb3-4ab9-b7f5-d22852ecdf56", "merged_at" : "never issued", "state" : "closed"}
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "merged_at": {"type": "string"}, "state": {"type": "string"}}, "required": ["id", "merged_at", "state"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"images": {"type": "array", "items": {"type": "object", "properties": {"filename": {"type": "string"}, "idiom": {"type": "string"}, "scale": {"type": "string"}}, "required": ["filename", "idiom", "scale"]}}, "in...
{"images" : [{"filename" : "ic_photo_album_48pt.png", "idiom" : "universal", "scale" : "1x"}, {"filename" : "ic_photo_album_48pt_2x.png", "idiom" : "universal", "scale" : "2x"}, {"filename" : "ic_photo_album_48pt_3x.png", "idiom" : "universal", "scale" : "3x"}], "info" : {"author" : "xcode", "version" : 1}}
json_instruct
{"type": "object", "properties": {"images": {"type": "array", "items": {"type": "object", "properties": {"filename": {"type": "string"}, "idiom": {"type": "string"}, "scale": {"type": "string"}}, "required": ["filename", "idiom", "scale"]}}, "info": {"type": "object", "properties": {"author": {"type": "string"}, "versi...
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "repository": {"type": "...
{"name" : "abap-metrics-provider", "version" : "0.0.1", "description" : "abap-metrics-provider", "scripts" : {"test" : "abaplint"}, "repository" : {"type" : "git", "url" : "git+https://github.com/abap-observability-tools/abap-metrics-provider.git"}, "keywords" : ["abap", "metrics", "sap-netweaver"], "author" : "abap-ob...
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...
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"hash": {"type": "string"}, "parentHash": {"type": "string"}, "number": {"type": "integer"}, "timestamp": {"type": "integer"}, "nonce": {"type": "string"}, "difficulty": {"type": "integer"}, "gasLimit": {"type": "obje...
{"hash" : "0xad7ce5d8476f41716bf578b38f507e077aa947b12519a10aced2cbfb0160d0bf", "parentHash" : "0xa6b87130b6575f730c1013868b1f558b756d8acea69bb02da393362f0652b53c", "number" : 59508, "timestamp" : 1439139358, "nonce" : "0x9f947544717b0ea8", "difficulty" : 1699700269232, "gasLimit" : {"_hex" : "0x2fefd8"}, "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"]...
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "license": {"type": "string"}, "require": {"type": "object", "properties": {"squizlabs/php_codesniffer": {"type": "string"}}, "required": ["squizlab...
{"name" : "m6web/coke", "description" : "PHP Code Sniffer configurator", "license" : "MIT", "require" : {"squizlabs/php_codesniffer" : "~2.3"}, "suggest" : {"m6web/symfony2-coding-standard" : "Symfony2 PHP CodeSniffer Coding Standard"}, "bin" : ["coke"]}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "license": {"type": "string"}, "require": {"type": "object", "properties": {"squizlabs/php_codesniffer": {"type": "string"}}, "required": ["squizlabs/php_codesniffer"]}, "suggest": {"type": "object", "properties": {"m6web/s...
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"Cytosine-specific methyltransferase SacI": {"type": "string"}, "M.SacI": {"type": "string"}, "Endonuclease SacI": {"type": "string"}, "Type II restriction enzyme SacI": {"type": "string"}, "R.SacI": {"type": "string"}, "O31073...
{"Cytosine-specific methyltransferase SacI" : "O31073", "M.SacI" : "O31073", "Endonuclease SacI" : "O31074", "Type II restriction enzyme SacI" : "O31074", "R.SacI" : "O31074", "O31073" : "O31073", "MTS1_STRAH" : "O31073", "Modification methylase SacI" : "O31073", "sacIM" : "O31073", "O31074" : "O31074", "T2S1_STRAH" : ...
json_instruct
{"type": "object", "properties": {"Cytosine-specific methyltransferase SacI": {"type": "string"}, "M.SacI": {"type": "string"}, "Endonuclease SacI": {"type": "string"}, "Type II restriction enzyme SacI": {"type": "string"}, "R.SacI": {"type": "string"}, "O31073": {"type": "string"}, "MTS1_STRAH": {"type": "string"}, "M...
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"MatVecMulCoalesced20": {"type": "object", "properties": {"write": {"type": "object", "properties": {"device_start": {"type": "integer"}, "host_queued_start": {"type": "number"}, "device_queued": {"type": "integer"}, "device_en...
{"MatVecMulCoalesced20" : {"write" : {"device_start" : -1, "host_queued_start" : 1586202082.878659, "device_queued" : -1, "device_end" : -1, "host_queued_end" : 1586202082.878924}, "device" : "cpu", "nd_range" : {"device_start" : 2869857.068413279, "device_end" : 2869857.0688810092}, "cmdq" : 0, "read" : {"device_start...
json_instruct
{"type": "object", "properties": {"MatVecMulCoalesced20": {"type": "object", "properties": {"write": {"type": "object", "properties": {"device_start": {"type": "integer"}, "host_queued_start": {"type": "number"}, "device_queued": {"type": "integer"}, "device_end": {"type": "integer"}, "host_queued_end": {"type": "numbe...
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"coc.preferences.formatOnSaveFiletypes": {"type": "array", "items": {"type": "string"}}}, "required": ["coc.preferences.formatOnSaveFiletypes"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"coc.preferences.formatOnSaveFiletypes" : ["javascript"]}
json_instruct
{"type": "object", "properties": {"coc.preferences.formatOnSaveFiletypes": {"type": "array", "items": {"type": "string"}}}, "required": ["coc.preferences.formatOnSaveFiletypes"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"word": {"type": "string"}, "definitions": {"type": "array", "items": {"type": "string"}}, "parts-of-speech": {"type": "string"}}, "required": ["word", "definitions", "parts-of-speech"], "$schema": "http://json-sche...
{"word" : "Fidelity", "definitions" : ["faithfulness to a person, cause, or belief, demonstrated by continuing loyalty and support.", "sexual faithfulness to a spouse or partner.", "the degree of exactness with which something is copied or reproduced."], "parts-of-speech" : "Noun"}
json_instruct
{"type": "object", "properties": {"word": {"type": "string"}, "definitions": {"type": "array", "items": {"type": "string"}}, "parts-of-speech": {"type": "string"}}, "required": ["word", "definitions", "parts-of-speech"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"PREVALENCE_BY_GENDER_AGE_YEAR": {"type": "object", "properties": {"TRELLIS_NAME": {"type": "array", "items": {}}, "SERIES_NAME": {"type": "array", "items": {}}, "X_CALENDAR_YEAR": {"type": "array", "items": {}}, "Y_PREVALEN...
{"PREVALENCE_BY_GENDER_AGE_YEAR" : {"TRELLIS_NAME" : [], "SERIES_NAME" : [], "X_CALENDAR_YEAR" : [], "Y_PREVALENCE_1000PP" : []}, "PREVALENCE_BY_MONTH" : {"X_CALENDAR_MONTH" : [], "Y_PREVALENCE_1000PP" : []}, "CONDITIONS_BY_TYPE" : {"CONCEPT_NAME" : ["Claim- Inpatient: Secondary diagnosis", "EHR Chief Complaint"], "COU...
json_instruct
{"type": "object", "properties": {"PREVALENCE_BY_GENDER_AGE_YEAR": {"type": "object", "properties": {"TRELLIS_NAME": {"type": "array", "items": {}}, "SERIES_NAME": {"type": "array", "items": {}}, "X_CALENDAR_YEAR": {"type": "array", "items": {}}, "Y_PREVALENCE_1000PP": {"type": "array", "items": {}}}, "required": ["TRE...
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"version": {"type": "number"}, "people": {"type": "array", "items": {"type": "object", "properties": {"pose_keypoints_2d": {"type": "array", "items": {"type": "number"}}, "face_keypoints_2d": {"type": "array", "items": {}}, "hand...
{"version" : 1.2, "people" : [{"pose_keypoints_2d" : [703.723, 297.118, 1, 739.307, 328.312, 1, 706.286, 324.6, 1, 697.105, 370.269, 1, 720.305, 395.503, 1, 777.982, 323.796, 1, 790.477, 342.323, 1, 783.55, 366.575, 1, 721.12, 399.71, 1, 686.014, 440.548, 1, 670.053, 510.283, 1, 782.657, 386.265, 1, 828.498, 439.748, 1...
json_instruct
{"type": "object", "properties": {"version": {"type": "number"}, "people": {"type": "array", "items": {"type": "object", "properties": {"pose_keypoints_2d": {"type": "array", "items": {"type": "number"}}, "face_keypoints_2d": {"type": "array", "items": {}}, "hand_left_keypoints_2d": {"type": "array", "items": {}}, "han...
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"language.name": {"type": "string"}, "locale": {"type": "string"}, "scripts": {"type": "array", "items": {"type": "string"}}}, "required": ["language.name", "locale", "scripts"], "$schema": "http://json-schema.org/draft-07/sche...
{"language.name" : "Kumyk", "locale" : "kum", "scripts" : ["Cyrl"]}
json_instruct
{"type": "object", "properties": {"language.name": {"type": "string"}, "locale": {"type": "string"}, "scripts": {"type": "array", "items": {"type": "string"}}}, "required": ["language.name", "locale", "scripts"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"status": {"type": "integer"}, "data": {"type": "object", "properties": {"totalSubs": {"type": "integer"}, "subsInEachSource": {"type": "object", "properties": {"feedly": {"type": "integer"}, "inoreader": {"type": "integer"}, "fe...
{"status" : 200, "data" : {"totalSubs" : 471, "subsInEachSource" : {"feedly" : 291, "inoreader" : 175, "feedsPub" : 5}, "failedSources" : {}}, "lastModified" : 1610932981561}
json_instruct
{"type": "object", "properties": {"status": {"type": "integer"}, "data": {"type": "object", "properties": {"totalSubs": {"type": "integer"}, "subsInEachSource": {"type": "object", "properties": {"feedly": {"type": "integer"}, "inoreader": {"type": "integer"}, "feedsPub": {"type": "integer"}}, "required": ["feedly", "in...
Construct a JSON document that adheres to this schema specification: {"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" : [[[-76.052524, 40.039095], [-76.04658, 40.053235], [-76.045668, 40.059148], [-76.041131, 40.061991], [-76.037435, 40.070252], [-76.027587, 40.071464], [-76.016341, 40.075843], [-76.013727, 40.079532], [-76.014, 40.083066], [...
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...
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "homepage": {"type": "string"}, "license": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "em...
{"name" : "shopgate/cart-integration-prestashop", "description" : "Integrates the Prestashop shopping cart solution with Shopgate", "homepage" : "https://github.com/shopgate/cart-integration-prestashop", "license" : "Apache-2.0", "authors" : [{"name" : "Shopgate", "email" : "interfaces@shopgate.com"}], "config" : {"pla...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "homepage": {"type": "string"}, "license": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}...
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]...
{"name" : "NoCheer", "version" : "1.0.0", "description" : "NodeJS command line program that takes in an input and responds with a cheer.", "main" : "cheers.js", "scripts" : {"test" : "istanbul cover _mocha"}, "repository" : {"type" : "git", "url" : "https://github.com/Capocaccia/NoCheer.git"}, "author" : "Carter Capoca...
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...
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"username": {"type": "string"}, "additional_items": {"type": "array", "items": {}}, "items": {"type": "object", "properties": {"1": {"type": "string"}, "3": {"type": "string"}, "2": {"type": "string"}, "4": {"type": ...
{"username" : "user10", "additional_items" : [], "items" : {"1" : "negative", "3" : "positive", "2" : "neutral", "4" : "negative"}, "tweet_id" : "578699768236515329", "timespent" : 7.0694301128387, "starttime" : 1429732490.3877, "itemcount" : "4", "savingtime" : 1429732497.4571}
json_instruct
{"type": "object", "properties": {"username": {"type": "string"}, "additional_items": {"type": "array", "items": {}}, "items": {"type": "object", "properties": {"1": {"type": "string"}, "3": {"type": "string"}, "2": {"type": "string"}, "4": {"type": "string"}}, "required": ["1", "3", "2", "4"]}, "tweet_id": {"type": "s...
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"type": {"type": "string"}, "ingredients": {"type": "array", "items": {"type": "object", "properties": {"item": {"type": "string"}}, "required": ["item"]}}, "result": {"type": "object", "properties": {"item": {"type":...
{"type" : "minecraft:crafting_shapeless", "ingredients" : [{"item" : "minecraft:pumpkin"}], "result" : {"item" : "arcanaflavor:pumpkin_slice", "count" : 4}}
json_instruct
{"type": "object", "properties": {"type": {"type": "string"}, "ingredients": {"type": "array", "items": {"type": "object", "properties": {"item": {"type": "string"}}, "required": ["item"]}}, "result": {"type": "object", "properties": {"item": {"type": "string"}, "count": {"type": "integer"}}, "required": ["item", "coun...
Following the schema specification below, generate a valid JSON instance: {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
[[1939, 8]]
json_instruct
{"type": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"620822001": {"type": "string"}, "620822100": {"type": "string"}, "620822101": {"type": "string"}, "620822102": {"type": "string"}, "620822103": {"type": "string"}, "620822104": {"type": "string"}, "620822105": {"ty...
{"620822001" : "\u57ce\u5e02\u793e\u533a\u7ba1\u7406\u59d4\u5458\u4f1a\u5730\u533a", "620822100" : "\u4e2d\u53f0\u9547", "620822101" : "\u90b5\u5be8\u9547", "620822102" : "\u72ec\u5e97\u9547", "620822103" : "\u4ec0\u5b57\u9547", "620822104" : "\u671d\u90a3\u9547", "620822105" : "\u897f\u5c6f\u9547", "620822106" : "\u4e...
json_instruct
{"type": "object", "properties": {"620822001": {"type": "string"}, "620822100": {"type": "string"}, "620822101": {"type": "string"}, "620822102": {"type": "string"}, "620822103": {"type": "string"}, "620822104": {"type": "string"}, "620822105": {"type": "string"}, "620822106": {"type": "string"}, "620822107": {"type": ...
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"react-chartjs-2.js": {"type": "string"}, "react-chartjs-2.min.js": {"type": "string"}}, "required": ["react-chartjs-2.js", "react-chartjs-2.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"react-chartjs-2.js" : "sha256-S+tjYSHvZM3Evd8jiBVc8WzqWHjTm9ugJeaRy8SpB8I=", "react-chartjs-2.min.js" : "sha256-sIFcF770K+nFQkbLAV7FZSlZMRbboNsOXP77JpnsCBg="}
json_instruct
{"type": "object", "properties": {"react-chartjs-2.js": {"type": "string"}, "react-chartjs-2.min.js": {"type": "string"}}, "required": ["react-chartjs-2.js", "react-chartjs-2.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"changepoint": {"type": "string"}, "country": {"type": "object", "properties": {"code": {"type": "string"}, "group": {"type": "string"}, "name": {"type": "string"}}, "required": ["code", "group", "name"]}, "topics": {...
{"changepoint" : "2020-03-15", "country" : {"code" : "AUT", "group" : "de", "name" : "Austria"}, "topics" : [{"diff" : -30921.0, "topic" : "Europe"}, {"diff" : -21085.0, "topic" : "Geography"}, {"diff" : -18184.0, "topic" : "Tree of life (biology)"}, {"diff" : -16816.0, "topic" : "Virology"}, {"diff" : -15756.0, "topic...
json_instruct
{"type": "object", "properties": {"changepoint": {"type": "string"}, "country": {"type": "object", "properties": {"code": {"type": "string"}, "group": {"type": "string"}, "name": {"type": "string"}}, "required": ["code", "group", "name"]}, "topics": {"type": "array", "items": {"type": "object", "properties": {"diff": {...
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"parent": {"type": "string"}, "textures": {"type": "object", "properties": {"all": {"type": "string"}}, "required": ["all"]}}, "required": ["parent", "textures"], "$schema": "http://json-schema.org/draft-07/schema#...
{"parent" : "block/cube_all", "textures" : {"all" : "snad:block/snad"}}
json_instruct
{"type": "object", "properties": {"parent": {"type": "string"}, "textures": {"type": "object", "properties": {"all": {"type": "string"}}, "required": ["all"]}}, "required": ["parent", "textures"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"errors": {"type": "array", "items": {"type": "object", "properties": {"message": {"type": "string"}, "locations": {"type": "array", "items": {"type": "object", "properties": {"line": {"type": "integer"}, "column": {"type": "in...
{"errors" : [{"message" : "Cannot query field \"fields\" on type \"Mdx\".", "locations" : [{"line" : 25, "column" : 9}]}]}
json_instruct
{"type": "object", "properties": {"errors": {"type": "array", "items": {"type": "object", "properties": {"message": {"type": "string"}, "locations": {"type": "array", "items": {"type": "object", "properties": {"line": {"type": "integer"}, "column": {"type": "integer"}}, "required": ["line", "column"]}}}, "required": ["...
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}, "mqtt": {"type"...
{"name" : "voicetunes", "version" : "1.0.0", "description" : "", "main" : "index.js", "scripts" : {"start" : "nodemon --watch '*.ts' --exec 'npx ts-node' index.ts >> log.txt", "mqtt" : "nodemon --watch '*.ts' --exec 'npx ts-node' mqttlisten.ts >> log.txt", "test" : "jest --verbose", "train" : "nodemon --exec 'ts-node' ...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}, "mqtt": {"type": "string"}, "test": {"type": "string"}, "train": {"type": "string"}}, "req...
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": {"build": {"type": "string"}, "test": {"type": "s...
{"name" : "@azure-actions/auth", "version" : "0.0.3", "description" : "Auth module to communicate with azure", "main" : "lib/index.js", "scripts" : {"build" : "tsc", "test" : "echo \"Error: no test specified\" && exit 1"}, "repository" : {"type" : "git", "url" : "git+https://github.com/azure/actions-toolkit.git"}, "key...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"build": {"type": "string"}, "test": {"type": "string"}}, "required": ["build", "test"]}, "repository": {"type": "objec...
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"n_dim": {"type": "integer"}, "n_trials": {"type": "integer"}, "objective": {"type": "string"}, "white": {"type": "string"}, "black": {"type": "string"}, "traceback": {"type": "array", "items": {"type": "string"}},...
{"n_dim" : 21, "n_trials" : 210, "objective" : "markowitz_return_on_cube", "white" : "hyperopt_atpe", "black" : "scipy_lbfgsb", "traceback" : ["passing", "passing"], "best_val" : [1285.079791920078, 1308.1395119236859], "best_x" : [[0.4654024709011286, 0.45027368756061803, 0.5773027947718627, 0.6244068119103566, 0.7343...
json_instruct
{"type": "object", "properties": {"n_dim": {"type": "integer"}, "n_trials": {"type": "integer"}, "objective": {"type": "string"}, "white": {"type": "string"}, "black": {"type": "string"}, "traceback": {"type": "array", "items": {"type": "string"}}, "best_val": {"type": "array", "items": {"type": "number"}}, "best_x": {...
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"outletid": {"type": "string"}, "outlet_sname": {"type": "string"}, "outlet_type": {"type": "string"}, "outlet_owner": {"type": "string"}, "outlet_contact": {"type": "string"}, "outlet_region": {"type": "string"}, "outlet_provi...
{"outletid" : "1", "outlet_sname" : "Baby zone test", "outlet_type" : "Baby Shops", "outlet_owner" : "Baby zone", "outlet_contact" : "077666567/092717101", "outlet_region" : "00", "outlet_province" : "031", "outlet_district" : "185", "outlet_postal" : "", "outlet_address" : "#578 st 128", "updated_by" : "7", "team_id" ...
json_instruct
{"type": "object", "properties": {"outletid": {"type": "string"}, "outlet_sname": {"type": "string"}, "outlet_type": {"type": "string"}, "outlet_owner": {"type": "string"}, "outlet_contact": {"type": "string"}, "outlet_region": {"type": "string"}, "outlet_province": {"type": "string"}, "outlet_district": {"type": "stri...
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"copyright": {"type": "string"}, "url": {"type": "string"}, "email": {"type": "string"}, "format": {"type": "string"}}, "required": ["copyright", "url", "email", "format"], "$schema": "http://json-schema.org/draft-...
{"copyright" : "INMMERCE", "url" : "https://inmmerce.com", "email" : "contacto@inmmerce.com", "format" : "txt"}
json_instruct
{"type": "object", "properties": {"copyright": {"type": "string"}, "url": {"type": "string"}, "email": {"type": "string"}, "format": {"type": "string"}}, "required": ["copyright", "url", "email", "format"], "$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" : 84669, "cartId" : "269b5e6f-28c2-49dc-b52e-8180b350087d", "preferredProducts" : [2689, 2593, 2492, 3765, 590, 1472, 4986, 2644], "productReviews" : [{"productId" : 2630, "reviewText" : "heard about this on jump-up radio, decided to give it a try.", "reviewDate" : "2018-03-24T06:50:05.3609961+02:00"}, {"prod...
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...
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"issueTypeSchemeId": {"type": "object", "properties": {"required": {"type": "boolean"}, "type": {"type": "string"}, "format": {"type": "stri...
{"type" : "object", "properties" : {"issueTypeSchemeId" : {"required" : true, "type" : "integer", "format" : "int64"}, "requestBody" : {"required" : ["issueTypeIds"], "type" : "object", "properties" : {"issueTypeIds" : {"type" : "array", "description" : "A list of the issue type IDs to move. The order of the issue type...
json_instruct
{"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"issueTypeSchemeId": {"type": "object", "properties": {"required": {"type": "boolean"}, "type": {"type": "string"}, "format": {"type": "string"}}, "required": ["required", "type", "format"]}, "requestBody": {"t...
Generate sample JSON data that conforms to the following schema definition: {"type": "array", "items": {"type": "array", "items": {"type": "string"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
[["510781114201", "\u71d5\u5b50\u6751\u6c11\u59d4\u5458\u4f1a", "121", "0"], ["510781114202", "\u6587\u661f\u6751\u6c11\u59d4\u5458\u4f1a", "220", "0"], ["510781114203", "\u77f3\u5be8\u6751\u6c11\u59d4\u5458\u4f1a", "220", "0"], ["510781114212", "\u77f3\u4f5b\u6751\u6c11\u59d4\u5458\u4f1a", "220", "0"], ["510781114213"...
json_instruct
{"type": "array", "items": {"type": "array", "items": {"type": "string"}}, "$schema": "http://json-schema.org/draft-07/schema#"}