input
stringlengths
159
2.05k
output
stringlengths
5
10.3k
task
stringclasses
1 value
schema
stringlengths
100
1.99k
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"items.traje.articulo": {"type": "object", "properties": {"message": {"type": "string"}}, "required": ["message"]}}, "required": ["items.traje.articulo"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"items.traje.articulo" : {"message" : "el"}}
json_instruct
{"type": "object", "properties": {"items.traje.articulo": {"type": "object", "properties": {"message": {"type": "string"}}, "required": ["message"]}}, "required": ["items.traje.articulo"], "$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" : "0xf6ecb782266ba6615ef9a88e1e611123022c9ac30895abb1bb931875b1176c34", "parentHash" : "0x088e818c69019d0f61d4d56a1c4609fc11fa4a3ce8c0ad023df031fb57424e57", "number" : 100592, "timestamp" : 1439809015, "nonce" : "0x26ebca2a65f54310", "difficulty" : 3819072215703, "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"]...
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"average_occupancy": {"type": "array", "items": {"type": "number"}}}, "required": ["average_occupancy"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"average_occupancy" : [2.7844084603713837, 2.841853753358479, 2.6875432925479013, 2.6357570177991634, 2.679206452046462, 2.8723930139091944, 2.9341194748123245, 2.996255937531775, 2.858475263641232, 2.8474461652563963, 2.7255829505727003, 2.590640322154612, 2.6022066676498166, 2.713916687334943, 2.7301525159485585, 2....
json_instruct
{"type": "object", "properties": {"average_occupancy": {"type": "array", "items": {"type": "number"}}}, "required": ["average_occupancy"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"variants": {"type": "object", "properties": {"": {"type": "object", "properties": {"model": {"type": "string"}}, "required": ["model"]}}, "required": [""]}}, "required": ["variants"], "$schema": "http://json-schema.org/draft-0...
{"variants" : {"" : {"model" : "simplequern:block/handstone"}}}
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#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "homepage": {"type": "string"}, "type": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "license": {"type": "string"}, "au...
{"name" : "digipolisgent/kimai-security-plugin", "description" : "A Kimai 2 plugin, which adds some security related functionality .", "homepage" : "https://github.com/digipolisgent/kimai_plugin_security", "type" : "kimai-plugin", "keywords" : ["kimai", "kimai-plugin"], "license" : "MIT", "authors" : [{"name" : "Jelle ...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "homepage": {"type": "string"}, "type": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "license": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {...
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"appid": {"type": "integer"}, "name": {"type": "string"}, "windows": {"type": "boolean"}, "mac": {"type": "boolean"}, "linux": {"type": "boolean"}, "early_access": {"type": "boolean"}, "lookup_time": {"type": "inte...
{"appid" : 65930, "name" : "The Bureau: XCOM Declassified", "windows" : true, "mac" : true, "linux" : false, "early_access" : false, "lookup_time" : 1490967001}
json_instruct
{"type": "object", "properties": {"appid": {"type": "integer"}, "name": {"type": "string"}, "windows": {"type": "boolean"}, "mac": {"type": "boolean"}, "linux": {"type": "boolean"}, "early_access": {"type": "boolean"}, "lookup_time": {"type": "integer"}}, "required": ["appid", "name", "windows", "mac", "linux", "early_...
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"tables": {"type": "object", "properties": {"my_product_seq": {"type": "object", "properties": {"type": {"type": "string"}}, "required": ["type"]}, "my_order_seq": {"type": "object", "properties": {"type": {"t...
{"tables" : {"my_product_seq" : {"type" : "sequence"}, "my_order_seq" : {"type" : "sequence"}, "my_customer_seq" : {"type" : "sequence"}, "customers" : {"auto_increment" : {"column" : "id", "sequence" : "my_customer_seq"}}}}
json_instruct
{"type": "object", "properties": {"tables": {"type": "object", "properties": {"my_product_seq": {"type": "object", "properties": {"type": {"type": "string"}}, "required": ["type"]}, "my_order_seq": {"type": "object", "properties": {"type": {"type": "string"}}, "required": ["type"]}, "my_customer_seq": {"type": "object"...
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"Name": {"type": "string"}, "Author": {"type": "string"}, "Description": {"type": "string"}, "Version": {"type": "string"}, "Dependencies": {"type": "array", "items": {"type": "object", "properties": {"Id": {"type": ...
{"Name" : "Detailer", "Author" : "SkunkMonkey", "Description" : "Flora/fauna parts from various mods gathered under one monument. Powered by GPS", "Version" : "1.0.0", "Dependencies" : [{"Id" : "fc6ffa08-0843-4589-b3f8-1be073e8aac1", "Name" : "Shrubbery"}, {"Id" : "cfaa7652-e8e6-47d5-94d0-a75d49483913", "Name" : "Fanta...
json_instruct
{"type": "object", "properties": {"Name": {"type": "string"}, "Author": {"type": "string"}, "Description": {"type": "string"}, "Version": {"type": "string"}, "Dependencies": {"type": "array", "items": {"type": "object", "properties": {"Id": {"type": "string"}, "Name": {"type": "string"}}, "required": ["Id", "Name"]}}},...
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"examine": {"type": "string"}, "realPrice": {"type": "integer"}}, "required": ["examine", "realPrice"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"examine" : "Finely ground desert goat horn.", "realPrice" : 464}
json_instruct
{"type": "object", "properties": {"examine": {"type": "string"}, "realPrice": {"type": "integer"}}, "required": ["examine", "realPrice"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"taskName": {"type": "string"}, "range": {"type": "array", "items": {"type": "integer"}}, "startAmount": {"type": "number"}, "expirationDay": {"type": "integer"}, "run": {"type": "boolean"}, "listed": {"type": "array", "items": {...
{"taskName" : "set:opensea", "range" : [664, 670], "startAmount" : 0.06, "expirationDay" : 180, "run" : true, "listed" : [664, 665, 666, 667, 668, 669, 670], "error" : null, "ranAt" : "2021-11-15T03:44:59.192Z"}
json_instruct
{"type": "object", "properties": {"taskName": {"type": "string"}, "range": {"type": "array", "items": {"type": "integer"}}, "startAmount": {"type": "number"}, "expirationDay": {"type": "integer"}, "run": {"type": "boolean"}, "listed": {"type": "array", "items": {"type": "integer"}}, "error": {"type": "null"}, "ranAt": ...
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"port": {"type": "integer"}, "db": {"type": "string"}, "maxResults": {"type": "integer"}, "limit": {"type": "integer"}, "resetInterval": {"type": "integer"}, "latestVersion": {"type": "string"}, "stripePublishKey": {...
{"port" : 3000, "db" : "", "maxResults" : 5000, "limit" : 20000, "resetInterval" : 300000, "latestVersion" : "1.3", "stripePublishKey" : "", "stripePrivateKey" : "", "googleCaptchaKey" : "", "googleCaptchaSecretKey" : ""}
json_instruct
{"type": "object", "properties": {"port": {"type": "integer"}, "db": {"type": "string"}, "maxResults": {"type": "integer"}, "limit": {"type": "integer"}, "resetInterval": {"type": "integer"}, "latestVersion": {"type": "string"}, "stripePublishKey": {"type": "string"}, "stripePrivateKey": {"type": "string"}, "googleCapt...
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "scripts": {"type": "object", "properties": {"build": {"type": "string"}, "test": {"type": "string"}}, "required": ["build", "test"]}, "devDependencies": {"...
{"name" : "jetrominos2", "version" : "1.0.0", "scripts" : {"build" : "webpack", "test" : "mocha-webpack \"test/*.test.js\""}, "devDependencies" : {"babel-cli" : "^6.0.0", "babel-core" : "^6.26.0", "babel-loader" : "^7.1.2", "babel-polyfill" : "^6.26.0", "babel-preset-env" : "^1.6.0", "chai" : "^4.1.2", "eslint" : "^4.7...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "scripts": {"type": "object", "properties": {"build": {"type": "string"}, "test": {"type": "string"}}, "required": ["build", "test"]}, "devDependencies": {"type": "object", "properties": {"babel-cli": {"type": "string"}, "babel...
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"directions": {"type": "array", "items": {"type": "string"}}, "ingredients": {"type": "array", "items": {"type": "string"}}, "language": {"type": "string"}, "source": {"type": "string"}, "tags": {"type": "array", "ite...
{"directions" : ["Butter 8x8x2-inch glass baking dish. Melt 6 tablespoons butter in heavy large skillet over medium-high heat. Add onions and saut\u00e9 until translucent, about 8 minutes. Transfer to large bowl. Mix in bread cubes, pomegranate seeds, apricots, pistachios, mint, lemon peel, salt, and pepper. Add broth ...
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"...
Following the schema specification below, generate a valid JSON instance: {"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...
[{"year" : 1974, "sex" : "F", "n" : 10, "prop" : 6.39e-06}, {"year" : 1976, "sex" : "F", "n" : 5, "prop" : 3.18e-06}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"year": {"type": "integer"}, "sex": {"type": "string"}, "n": {"type": "integer"}, "prop": {"type": "number"}}, "required": ["year", "sex", "n", "prop"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
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" : [[[-104.618104, 38.300926], [-104.617507, 38.300934], [-104.617348, 38.307702], [-104.603548, 38.307415], [-104.604205, 38.303848], [-104.603452, 38.302601], [-104.603944, 38.298101], [-104.60236, 38.29586], [-104.602351, 38...
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...
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]},...
{"name" : "@lrnwebcomponents/es-global-bridge", "version" : "3.0.0", "description" : "A very simple class to help bridge global scoped code with ES Modules", "repository" : {"type" : "git", "url" : "https://github.com/elmsln/lrnwebcomponents.git"}, "type" : "module", "main" : "es-global-bridge.js", "author" : {"name" :...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "type": {"type": "string"}, "main": {"type": "string"}, "a...
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"nom": {"type": "string"}, "dpt": {"type": "string"}, "inscrits": {"type": "integer"}, "abs": {"type": "integer"}, "votants": {"type": "integer"}, "blancs": {"type": "integer"}, "nuls": {"type": "integer"}, "exp": {"type": "int...
{"nom" : "Wasserbourg", "dpt" : "Haut-Rhin", "inscrits" : 382, "abs" : 56, "votants" : 326, "blancs" : 32, "nuls" : 6, "exp" : 288, "res" : [{"panneau" : "1", "voix" : 154}, {"panneau" : "2", "voix" : 134}]}
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 a JSON structure that matches this schema definition: {"type": "object", "properties": {"latest_version": {"type": "array", "items": {"type": "string"}}, "meta": {"type": "object", "properties": {"description": {"type": "string"}, "homepage": {"type": "string"}, "license": {"type": "string"}}, "required": ["des...
{"latest_version" : ["0.2.2"], "meta" : {"description" : "A tool for determining the health of branches in a git repository", "homepage" : "http://github.com/jwir3/gitbranchhealth", "license" : "Mozilla Public License v2.0"}, "versions" : {"0.2" : {"sha256" : "0b39221d9068f260275c14eb9111a25cf5d4d3910c72a2675630d6a7282...
json_instruct
{"type": "object", "properties": {"latest_version": {"type": "array", "items": {"type": "string"}}, "meta": {"type": "object", "properties": {"description": {"type": "string"}, "homepage": {"type": "string"}, "license": {"type": "string"}}, "required": ["description", "homepage", "license"]}, "versions": {"type": "obje...
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"minVersion": {"type": "string"}, "minAllowPatchVersion": {"type": "string"}, "newVersion": {"type": "string"}, "tip": {"type": "string"}, "size": {"type": "integer"}, "apkURL": {"type": "string"}, "hash": {"type": "string"}, "...
{"minVersion" : "100", "minAllowPatchVersion" : "100", "newVersion" : "101", "tip" : "\u6d4b\u8bd5\u66f4\u65b0", "size" : 2036177, "apkURL" : "https://raw.githubusercontent.com/itlwy/AppSmartUpdate/master/resources/app/smart_update.apk", "hash" : "9f60c46f29299d8922a72ebfb6bab8ee", "patchInfo" : {"v100" : {"patchURL" :...
json_instruct
{"type": "object", "properties": {"minVersion": {"type": "string"}, "minAllowPatchVersion": {"type": "string"}, "newVersion": {"type": "string"}, "tip": {"type": "string"}, "size": {"type": "integer"}, "apkURL": {"type": "string"}, "hash": {"type": "string"}, "patchInfo": {"type": "object", "properties": {"v100": {"typ...
The schema below describes a JSON structure. Generate a valid example: {"type": "array", "items": {"type": "object", "properties": {"namaKab": {"type": "string"}, "originalFilename": {"type": "string"}, "namaPartai": {"type": "string"}, "id": {"type": "integer"}, "noUrut": {"type": "integer"}, "nama": {"type": "string...
[{"namaKab" : "LANGKAT", "originalFilename" : "FOTO 001.jpg", "namaPartai" : "PARTAI DEMOKRAT", "id" : 87442, "noUrut" : 1, "nama" : "AGUS SALIM, SE", "stringJenisKelamin" : "Laki-Laki"}, {"namaKab" : "LANGKAT", "originalFilename" : "FOTO 002.jpg", "namaPartai" : "PARTAI DEMOKRAT", "id" : 87538, "noUrut" : 2, "nama" : ...
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"namaKab": {"type": "string"}, "originalFilename": {"type": "string"}, "namaPartai": {"type": "string"}, "id": {"type": "integer"}, "noUrut": {"type": "integer"}, "nama": {"type": "string"}, "stringJenisKelamin": {"type": "string"}}, "required": ["namaKab", "...
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"requestRecordReference": {"type": "string"}, "corporateTaxAdvisoryFulfillmentArrangementRequestActionTaskReference": {"type": "string"}, "corporateTaxAdvisoryFulfillmentArrangementInstanceRecord": {"type": "object", "proper...
{"requestRecordReference" : "RRR778741", "corporateTaxAdvisoryFulfillmentArrangementRequestActionTaskReference" : "CTAFARATR723572", "corporateTaxAdvisoryFulfillmentArrangementInstanceRecord" : {"employeeBusinessUnitReference" : "713098", "dateType" : {"date" : "09-22-2018"}, "corporateTaxAdviceConsolidationRecord" : {...
json_instruct
{"type": "object", "properties": {"requestRecordReference": {"type": "string"}, "corporateTaxAdvisoryFulfillmentArrangementRequestActionTaskReference": {"type": "string"}, "corporateTaxAdvisoryFulfillmentArrangementInstanceRecord": {"type": "object", "properties": {"employeeBusinessUnitReference": {"type": "string"}, "...
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"id": {"type": "integer"}, "node": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "nameCN": {"type": "string"}, "image": {"type": "string"}, "...
{"id" : 196196, "node" : [{"id" : 196196, "name" : "\u5c11\u5973\u5947\u8ac7", "nameCN" : "\u5c11\u5973\u5947\u8c08", "image" : "//lain.bgm.tv/pic/cover/m/6a/20/196196_DwKGF.jpg", "date" : "2013-11-04"}, {"id" : 196197, "name" : "\u5c11\u5973\u507d\u8ac7", "nameCN" : "\u5c11\u5973\u4f2a\u8c08", "image" : "//lain.bgm.tv...
json_instruct
{"type": "object", "properties": {"id": {"type": "integer"}, "node": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "nameCN": {"type": "string"}, "image": {"type": "string"}, "date": {"type": "string"}}, "required": ["id", "name", "nameCN", "image", "...
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"features": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "it...
{"features" : [{"type" : "Feature", "geometry" : {"type" : "Point", "coordinates" : [23.595178653302963, 37.745330282479785]}, "properties" : {"TIMESTAMP UTC" : "2020-07-29T09:20:10", "CLASSIFICATION" : "Flying plane"}}, {"type" : "Feature", "geometry" : {"type" : "Point", "coordinates" : [24.352467947152622, 37.754045...
json_instruct
{"type": "object", "properties": {"features": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "number"}}}, "required": ["type", "coordinates"]}, "properti...
Based on the schema below, produce a valid JSON object: {"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" : "Tribeland Game Token", "symbol" : "SHELL", "logoURI" : "https://raw.githubusercontent.com/tribeland/token-list/main/assets/mainnet/CpwH9nYz2CwsY7vVqxWbJxAWuvH7KnwP5B9JzoSHYdCA/logo.png", "decimals" : 9, "address" : "CpwH9nYz2CwsY7vVqxWbJxAWuvH7KnwP5B9JzoSHYdCA", "chainId" : 101, "tags" : ["game", "utility-to...
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"}}, "extensions": {"type": "object", "properties"...
Using the following JSON schema, generate a compatible 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" : "Aurensan", "dpt" : "Hautes-Pyr\u00e9n\u00e9es", "inscrits" : 602, "abs" : 118, "votants" : 484, "blancs" : 75, "nuls" : 17, "exp" : 392, "res" : [{"panneau" : "1", "voix" : 237}, {"panneau" : "2", "voix" : 155}]}
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": {"Version": {"type": "integer"}, "SourceFileDate": {"type": "integer"}, "Flags": {"type": "array", "items": {"type": "string"}}}, "required": ["Version", "SourceFileDate", "Flags"], "$schema": "http://json-schema.org/draft-07/sc...
{"Version" : 2, "SourceFileDate" : 132440523874216788, "Flags" : ["FL_BITMAP_COMPRESSION", "FL_BITMAP_MIPMAP"]}
json_instruct
{"type": "object", "properties": {"Version": {"type": "integer"}, "SourceFileDate": {"type": "integer"}, "Flags": {"type": "array", "items": {"type": "string"}}}, "required": ["Version", "SourceFileDate", "Flags"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"Time": {"type": "string"}, "Temp": {"type": "integer"}, "RelHum": {"type": "integer"}, "WindSpeed": {"type": "integer"}, "WindDir": {"type": "integer"}}, "required": ["Time", "Temp", "RelHum", "WindSpeed", "WindDir"], "$schema":...
{"Time" : "2021-04-21T05:00:00Z", "Temp" : 18, "RelHum" : 78, "WindSpeed" : 2, "WindDir" : 269}
json_instruct
{"type": "object", "properties": {"Time": {"type": "string"}, "Temp": {"type": "integer"}, "RelHum": {"type": "integer"}, "WindSpeed": {"type": "integer"}, "WindDir": {"type": "integer"}}, "required": ["Time", "Temp", "RelHum", "WindSpeed", "WindDir"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"_id": {"type": "string"}, "updated": {"type": "object", "properties": {"type": {"type": "string"}, "by": {"type": "string"}, "at": {"type": "string"}}, "required": ["type", "by", "at"]}, "data": {"type": "obj...
{"_id" : "Wt1poFfN7wAkoSpHyv922w_ZpB0", "updated" : {"type" : "mortgage_delta", "by" : "558d0dd3afa24c7af459c706", "at" : "2015-06-26T08:31:25.161Z"}, "data" : {"etag" : "822f73eb83a4aeb97853572e9f238beb3b296920", "satisfied_on" : "1993-08-21T00:00:00.000Z", "delivered_on" : "1951-09-05T00:00:00.000Z", "charge_number" ...
json_instruct
{"type": "object", "properties": {"_id": {"type": "string"}, "updated": {"type": "object", "properties": {"type": {"type": "string"}, "by": {"type": "string"}, "at": {"type": "string"}}, "required": ["type", "by", "at"]}, "data": {"type": "object", "properties": {"etag": {"type": "string"}, "satisfied_on": {"type": "st...
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"h": {"type": "string"}, "c": {"type": "object", "properties": {"index": {"type": "boolean"}}, "required": ["index"]}}, "required": ["h", "c"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"h" : "f635e7a8660f0eb43e25", "c" : {"index" : true}}
json_instruct
{"type": "object", "properties": {"h": {"type": "string"}, "c": {"type": "object", "properties": {"index": {"type": "boolean"}}, "required": ["index"]}}, "required": ["h", "c"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "array", "items": {"type": "object", "properties": {"Id": {"type": "string"}, "ThreadId": {"type": "string"}, "Html": {"type": "string"}, "PostedDate": {"type": "string"}, "UserRole": {"type": "null"}, "MarkedAsAnswerDate": {"type": "nu...
[{"Id" : "1128983", "ThreadId" : "471138", "Html" : "Hello,\r<br />\n<br />\nI was wondering what the easiest way to theme a normal Menu control to fit in with the current Modern UI theme is? Should I create my own style? Or is there a way to reuse some styles that have already been provided?\r<br />\n<br />\nAlso, I w...
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"Id": {"type": "string"}, "ThreadId": {"type": "string"}, "Html": {"type": "string"}, "PostedDate": {"type": "string"}, "UserRole": {"type": "null"}, "MarkedAsAnswerDate": {"type": "null"}}, "required": ["Id", "ThreadId", "Html", "PostedDate", "UserRole", "Ma...
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"header": {"type": "integer"}, "bgnlib": {"type": "array", "items": {"type": "object", "properties": {"time": {"type": "array", "items": {"type": "integer"}}, "libname": {"type": "string"}, "units": {"type": "array",...
{"header" : 600, "bgnlib" : [{"time" : [2019, 10, 15, 12, 15, 4, 2019, 10, 15, 12, 15, 4], "libname" : "pcell", "units" : [2.5e-05, 2.5e-11], "bgnstr" : [{"time" : [2019, 10, 15, 12, 15, 4, 2019, 10, 15, 12, 15, 4], "strname" : "guardring", "elements" : [{"type" : "boundary", "layer" : 13, "datatype" : 0, "xy" : [0, 0,...
json_instruct
{"type": "object", "properties": {"header": {"type": "integer"}, "bgnlib": {"type": "array", "items": {"type": "object", "properties": {"time": {"type": "array", "items": {"type": "integer"}}, "libname": {"type": "string"}, "units": {"type": "array", "items": {"type": "number"}}, "bgnstr": {"type": "array", "items": {"...
Generate sample JSON data that conforms to the following schema definition: {"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": "strin...
{"n_dim" : 2, "n_trials" : 50, "objective" : "deap_combo1_on_cube", "white" : "ultraopt_etpe", "black" : "dlib", "traceback" : ["passing", "passing"], "best_val" : [0.6565521302709626, 0.5931423618462347], "best_x" : [[0.502358023432484, 0.4968748754752239], [0.5653588636965369, 0.5073951808524232]], "feval_count" : [5...
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": {...
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"asset": {"type": "object", "properties": {"format": {"type": "string"}, "id": {"type": "string"}, "name": {"type": "string"}, "path": {"type": "string"}, "size": {"type": "object", "properties": {"width": {"type": "...
{"asset" : {"format" : "jpg", "id" : "6d538ca5859709e989698bbd05431632", "name" : "0132_02227_b.jpg", "path" : "file:C:/Users/truon/Downloads/GreenParking/0132_02227_b.jpg", "size" : {"width" : 472, "height" : 303}, "state" : 2, "type" : 1}, "regions" : [{"id" : "yBccTozbs", "type" : "RECTANGLE", "tags" : ["license_Pla...
json_instruct
{"type": "object", "properties": {"asset": {"type": "object", "properties": {"format": {"type": "string"}, "id": {"type": "string"}, "name": {"type": "string"}, "path": {"type": "string"}, "size": {"type": "object", "properties": {"width": {"type": "integer"}, "height": {"type": "integer"}}, "required": ["width", "heig...
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "stri...
{"name" : "appitventures/phpgmaps", "description" : "A codeigniter library that has been modified a bit so that it's laravel friendly", "keywords" : ["laravel", "phpgmaps", "googlemaps", "biostall"], "authors" : [{"name" : "Michael Hopkins", "email" : "michael@appitventures.com", "role" : "developer"}], "require" : {"p...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}, "role": {"type": "string"}}, "requ...
Generate sample JSON data that conforms to the following schema definition: {"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"}
["grunt-springroll"]
json_instruct
{"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"acorn.js": {"type": "string"}, "acorn.min.js": {"type": "string"}}, "required": ["acorn.js", "acorn.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"acorn.js" : "sha512-DCjza2FBRWNAlyYE8Ntv8/+bxGGl2yESU4BRl5C9k4iOGSBPOKBpTbbrFAqCS4+f+dX3TmXCx8P6rsbYOk0P8Q==", "acorn.min.js" : "sha512-uh30NMIFRUM1/x8Cjsfz+7k8dEOmX8dEMV8zHUYlKuzVrrne5UW1GZpPCyAhmb9BRJ56iLuO7R17C9KMFme/fg=="}
json_instruct
{"type": "object", "properties": {"acorn.js": {"type": "string"}, "acorn.min.js": {"type": "string"}}, "required": ["acorn.js", "acorn.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"success": {"type": "boolean"}, "code": {"type": "string"}, "data": {"type": "object", "properties": {"states": {"type": "null"}, "districts": {"type": "array", "items": {"type": "object", "properties": {"entityName": {"type": ...
{"success" : true, "code" : "SUCCESS", "data" : {"states" : null, "districts" : [{"entityName" : "papum pare", "metric" : {"type" : "TOTAL", "count" : 180373, "amount" : 457430754.15953165}}, {"entityName" : "west kameng", "metric" : {"type" : "TOTAL", "count" : 75363, "amount" : 198712422.2374845}}, {"entityName" : "c...
json_instruct
{"type": "object", "properties": {"success": {"type": "boolean"}, "code": {"type": "string"}, "data": {"type": "object", "properties": {"states": {"type": "null"}, "districts": {"type": "array", "items": {"type": "object", "properties": {"entityName": {"type": "string"}, "metric": {"type": "object", "properties": {"typ...
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"dis_max": {"type": "object", "properties": {"queries": {"type": "array", "items": {"type": "object", "properties": {"prefix": {"type": "object", "properties": {"name.first": {"type": "object", "properties": {"value"...
{"dis_max" : {"queries" : [{"prefix" : {"name.first" : {"value" : "sh", "boost" : 1.2}}}]}}
json_instruct
{"type": "object", "properties": {"dis_max": {"type": "object", "properties": {"queries": {"type": "array", "items": {"type": "object", "properties": {"prefix": {"type": "object", "properties": {"name.first": {"type": "object", "properties": {"value": {"type": "string"}, "boost": {"type": "number"}}, "required": ["valu...
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "main": {"type": "string"}, "license": {"type": "string"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}, "dev": {"type": "string...
{"name" : "direction-controller", "version" : "1.0.0", "main" : "index.js", "license" : "MIT", "scripts" : {"start" : "node build/index.js", "dev" : "concurrently \"yarn dev:client --watch\" \"yarn dev:server\"", "dev:client" : "webpack --config ./webpack.config.client.js --watch", "dev:server" : "nodemon --watch src -...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "main": {"type": "string"}, "license": {"type": "string"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}, "dev": {"type": "string"}, "dev:client": {"type": "string"}, "dev:server": {"type": "string"},...
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"datestamp": {"type": "string"}, "nameWithOwner": {"type": "string"}, "name": {"type": "string"}, "commits": {"type": "integer"}, "forkCount": {"type": "integer"}, "issues": {"type": "integer"}, "openIssues": {"...
{"datestamp" : "2019-12-20", "nameWithOwner" : "twitter/typeahead.js", "name" : "typeahead.js", "commits" : 594, "forkCount" : 3400, "issues" : 1305, "openIssues" : 402, "closedIssues" : 903, "pullRequests" : 468, "openPullRequests" : 95, "mergedPullRequests" : 106, "closedPullRequests" : 267, "stargazers" : 15927, "wa...
json_instruct
{"type": "object", "properties": {"datestamp": {"type": "string"}, "nameWithOwner": {"type": "string"}, "name": {"type": "string"}, "commits": {"type": "integer"}, "forkCount": {"type": "integer"}, "issues": {"type": "integer"}, "openIssues": {"type": "integer"}, "closedIssues": {"type": "integer"}, "pullRequests": {"t...
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"cytoscape-panzoom.js": {"type": "string"}, "cytoscape-panzoom.min.js": {"type": "string"}, "cytoscape.js-panzoom.css": {"type": "string"}, "cytoscape.js-panzoom.min.css": {"type": "string"}}, "required": ["cytoscape-...
{"cytoscape-panzoom.js" : "sha512-Ju6IXgt/kUdlQiYuMsNQBtybkqeIaoIwjsUdIucUirp2n3+IWJob2PCKcf/YYBuBXFa4AIxK7iwxv4EmXfe26w==", "cytoscape-panzoom.min.js" : "sha512-gr42SGBlgJhf6Ye45hIHq0OXQox911cLGXSTgT6QDEIF7iQxNK7FvP0KubwrdKCZ/i99Y+KxwujRX9XfrlFFFw==", "cytoscape.js-panzoom.css" : "sha512-mkWGW6NaxalUrj5AV/pEmFNqdeej/X...
json_instruct
{"type": "object", "properties": {"cytoscape-panzoom.js": {"type": "string"}, "cytoscape-panzoom.min.js": {"type": "string"}, "cytoscape.js-panzoom.css": {"type": "string"}, "cytoscape.js-panzoom.min.css": {"type": "string"}}, "required": ["cytoscape-panzoom.js", "cytoscape-panzoom.min.js", "cytoscape.js-panzoom.css", ...
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "displayName": {"type": "string"}, "description": {"type": "string"}, "unity": {"type": "string"}, "unityRelease": {"type": "string"}, "dependencies": {"type": "object", ...
{"name" : "com.i5.toolkit.mixedreality", "version" : "0.1.0", "displayName" : "i5 Toolkit for Mixed Reality", "description" : "This package contains a collection of tools, features and assets for the development of mixed reality Unity projects", "unity" : "2018.4", "unityRelease" : "15f1", "dependencies" : {"com.i5.too...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "displayName": {"type": "string"}, "description": {"type": "string"}, "unity": {"type": "string"}, "unityRelease": {"type": "string"}, "dependencies": {"type": "object", "properties": {"com.i5.toolkit.core": {"type": "string"},...
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": {"posttest": {"type": "string"}, "test": {"type": "string"}, ...
{"name" : "micro-monitor", "version" : "3.1.0", "description" : "add a monitoring endpoint to your node background services", "main" : "index.js", "scripts" : {"posttest" : "standard", "test" : "nyc mocha test.js", "coverage" : "nyc --reporter=text-lcov mocha | coveralls", "release" : "standard-version"}, "repository" ...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"posttest": {"type": "string"}, "test": {"type": "string"}, "coverage": {"type": "string"}, "release": {"type": "string...
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {"type": "integer"}}, "productReviews": {"type": "array", "items": {"type": "object", "properties": ...
{"userId" : 75467, "cartId" : "c96d5198-c35d-4343-a851-9d89956f60a9", "preferredProducts" : [4731, 985, 3520, 2916, 3835], "productReviews" : [{"productId" : 4204, "reviewText" : "It only works when I'm Rwanda.", "reviewDate" : "2019-04-28T15:13:16.6145869+03:00"}, {"productId" : 2282, "reviewText" : "The box this come...
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...
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"id": {"type": "integer"}, "node": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "nameCN": {"type": "string"}, "image": {"type": "string"}, "date": {"type": "s...
{"id" : 333865, "node" : [{"id" : 333864, "name" : "Encyclopaedia Eorzea \uff5eThe World of FINAL FANTASY XIV\uff5e", "nameCN" : "\u827e\u6b27\u6cfd\u4e9a\u767e\u79d1\u5168\u4e66", "image" : "//lain.bgm.tv/pic/cover/m/51/4a/333864_y7ymd.jpg", "date" : "2016-12-27"}, {"id" : 333865, "name" : "Encyclopaedia Eorzea \uff5e...
json_instruct
{"type": "object", "properties": {"id": {"type": "integer"}, "node": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "nameCN": {"type": "string"}, "image": {"type": "string"}, "date": {"type": "string"}}, "required": ["id", "name", "nameCN", "image", "...
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"Identifier": {"type": "string"}, "Name": {"type": "string"}, "Desc": {"type": "string"}, "Model": {"type": "string"}, "Health": {"type": "integer"}, "MarketPrice": {"type": "integer"}, "Category": {"type": "string"},...
{"Identifier" : "UPGR_EOTECH557", "Name" : "Viseur ELCAN C79", "Desc" : "", "Model" : "models/bunneh/elcan.mdl", "Health" : 50, "MarketPrice" : 10, "Category" : "EQUIPMENTS", "Quantity" : 0, "IsStackable" : true, "IsBuyableFromFlea" : true, "Entity" : "upgr_eotech557"}
json_instruct
{"type": "object", "properties": {"Identifier": {"type": "string"}, "Name": {"type": "string"}, "Desc": {"type": "string"}, "Model": {"type": "string"}, "Health": {"type": "integer"}, "MarketPrice": {"type": "integer"}, "Category": {"type": "string"}, "Quantity": {"type": "integer"}, "IsStackable": {"type": "boolean"},...
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"examine": {"type": "string"}}, "required": ["examine"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"examine" : "It's an Dragonbone platelegs."}
json_instruct
{"type": "object", "properties": {"examine": {"type": "string"}}, "required": ["examine"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"type": {"type": "string"}, "level": {"type": "string"}, "label": {"type": "string"}, "locale": {"type": "string"}, "country_id": {"type": "integer"}, ...
{"type" : "Feature", "properties" : {"type" : "barangay", "level" : "4", "label" : "San Pascual, Sorsogon City, Sorsogon, Bicol Region (Region V), PH", "locale" : "ph.bicol-region-region-v.sorsogon.sorsogon-city.san-pascual", "country_id" : 177, "country_reference" : 177, "country_name" : "Philippines", "region_id" : "...
json_instruct
{"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"type": {"type": "string"}, "level": {"type": "string"}, "label": {"type": "string"}, "locale": {"type": "string"}, "country_id": {"type": "integer"}, "country_reference": {"type": "integer"}, "country_name": {...
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"img0.jpeg": {"type": "string"}, "img1.jpeg": {"type": "string"}, "img2.jpeg": {"type": "string"}, "img3.jpeg": {"type": "string"}, "img4.jpeg": {"type": "string"}, "img5.jpeg": {"type": "string"}}, "required": ["img0...
{"img0.jpeg" : "", "img1.jpeg" : "/notifications", "img2.jpeg" : "/stuinfo", "img3.jpeg" : "", "img4.jpeg" : "", "img5.jpeg" : "/userAccountSetting"}
json_instruct
{"type": "object", "properties": {"img0.jpeg": {"type": "string"}, "img1.jpeg": {"type": "string"}, "img2.jpeg": {"type": "string"}, "img3.jpeg": {"type": "string"}, "img4.jpeg": {"type": "string"}, "img5.jpeg": {"type": "string"}}, "required": ["img0.jpeg", "img1.jpeg", "img2.jpeg", "img3.jpeg", "img4.jpeg", "img5.jpe...
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"solution_size": {"type": "integer"}, "ok": {"type": "boolean"}, "resemblance": {"type": "number"}, "problem_id": {"type": "integer"}, "solution_spec_hash": {"type": "string"}}, "required": ["solution_size", "ok", "re...
{"solution_size" : 2783, "ok" : true, "resemblance" : 0.999999, "problem_id" : 5307, "solution_spec_hash" : "5ce877a0616e675f43f638ed38ac563a1539705a"}
json_instruct
{"type": "object", "properties": {"solution_size": {"type": "integer"}, "ok": {"type": "boolean"}, "resemblance": {"type": "number"}, "problem_id": {"type": "integer"}, "solution_spec_hash": {"type": "string"}}, "required": ["solution_size", "ok", "resemblance", "problem_id", "solution_spec_hash"], "$schema": "http://j...
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"artists": {"type": "array", "items": {"type": "object", "properties": {"attribute-list": {"type": "array", "items": {"type": "string"}}, "mbid": {"type": "string"}, "name": {"type": "string"}, "type": {"type": "str...
{"artists" : [{"attribute-list" : ["nai"], "mbid" : "3a57e3a4-4e48-4ce2-aae0-c5b5275721eb", "name" : "Salih Bilgin", "type" : "instrument"}], "mbid" : "4af2dcea-69c6-412e-9a60-d86ba74d366f", "tags" : {"form" : "sazsemaisi", "makam" : "hicazkar"}, "title" : "Hicazkar Saz Semai (Kiz Ney)", "works" : [{"artists" : [{"mbid...
json_instruct
{"type": "object", "properties": {"artists": {"type": "array", "items": {"type": "object", "properties": {"attribute-list": {"type": "array", "items": {"type": "string"}}, "mbid": {"type": "string"}, "name": {"type": "string"}, "type": {"type": "string"}}, "required": ["attribute-list", "mbid", "name", "type"]}}, "mbid...
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"artists": {"type": "array", "items": {"type": "object", "properties": {"attribute-list": {"type": "array", "items": {"type": "string"}}, "mbid": {"type": "string"}, "name": {"type": "string"}, "type": {"type": "string"}}, "req...
{"artists" : [{"attribute-list" : ["tanbur"], "mbid" : "6256ace7-f139-4a22-a5e2-e9e46bffb0d4", "name" : "Fahrettin \u00c7imenli", "type" : "instrument"}], "mbid" : "787e326d-fb9f-4c5f-98cf-10cb9613cda2", "tags" : {"form" : "pe\u015frev", "makam" : "neveser", "usul" : "hafif"}, "title" : "Neveser Pesrev", "works" : [{"a...
json_instruct
{"type": "object", "properties": {"artists": {"type": "array", "items": {"type": "object", "properties": {"attribute-list": {"type": "array", "items": {"type": "string"}}, "mbid": {"type": "string"}, "name": {"type": "string"}, "type": {"type": "string"}}, "required": ["attribute-list", "mbid", "name", "type"]}}, "mbid...
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"class": {"type": "object", "properties": {}, "required": []}, "instance": {"type": "object", "properties": {"build:with:": {"type": "string"}, "children": {"type": "string"}}, "required": ["build:with:", "children"]}}, "req...
{"class" : {}, "instance" : {"build:with:" : "ct 9/1/2020 09:39", "children" : "ct 9/1/2020 09:40"}}
json_instruct
{"type": "object", "properties": {"class": {"type": "object", "properties": {}, "required": []}, "instance": {"type": "object", "properties": {"build:with:": {"type": "string"}, "children": {"type": "string"}}, "required": ["build:with:", "children"]}}, "required": ["class", "instance"], "$schema": "http://json-schema....
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"label": {"type": "string"}, "name": {"type": "array", "items": {"type": "object", "properties": {"_value": {"type": "string"}, "id": {"type": "string"}}, "required": ["_value", "id"]}}, "id": {"type": "string"}, "_r...
{"label" : "comic", "name" : [{"_value" : "A 333", "id" : "0f9cd602-4341-4a24-abc7-b384e8fc80f0"}], "id" : "7d762531-2d49-4afe-9c7c-5fbffc7dc1ef", "_rid" : "VyAjAPMRAAAhAAAAAAAAAA==", "_self" : "dbs/VyAjAA==/colls/VyAjAPMRAAA=/docs/VyAjAPMRAAAhAAAAAAAAAA==/", "_etag" : "\"500026e8-0000-0000-0000-595eb9350000\"", "_atta...
json_instruct
{"type": "object", "properties": {"label": {"type": "string"}, "name": {"type": "array", "items": {"type": "object", "properties": {"_value": {"type": "string"}, "id": {"type": "string"}}, "required": ["_value", "id"]}}, "id": {"type": "string"}, "_rid": {"type": "string"}, "_self": {"type": "string"}, "_etag": {"type"...
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"componentChunkName": {"type": "string"}, "path": {"type": "string"}, "webpackCompilationHash": {"type": "string"}, "result": {"type": "object", "properties": {"pageContext": {"type": "object", "properties": {...
{"componentChunkName" : "component---src-pages-smart-home-scsslint-tmp-1227239631993848173-js", "path" : "/smart-home_scsslint_tmp1227239631993848173/", "webpackCompilationHash" : "28b9cfcd7db2254461bc", "result" : {"pageContext" : {"isCreatedByStatefulCreatePages" : true}}}
json_instruct
{"type": "object", "properties": {"componentChunkName": {"type": "string"}, "path": {"type": "string"}, "webpackCompilationHash": {"type": "string"}, "result": {"type": "object", "properties": {"pageContext": {"type": "object", "properties": {"isCreatedByStatefulCreatePages": {"type": "boolean"}}, "required": ["isCreat...
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"name": {"type": "string"}, "id": {"type": "string"}, "address": {"type": "string"}, "school_type": {"type": "string"}, "fax": {"type": "string"}, "phone": {"type": "string"}, "website": {"type": "null"}, "state...
{"name" : "Volksschule Miltenberg", "id" : "BY-7815", "address" : "Wolfram-von-Eschenbach-Str. 17 63897 Miltenberg", "school_type" : "Grundschule", "fax" : "09371 99602", "phone" : "09371 8809", "website" : null, "state" : "BY", "programs" : {"programs" : []}, "full_time_school" : false, "lon" : 9.266282, "lat" : 49.70...
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": "null"}, "state": {"type": "string"}, "programs": {"type": "object", "properties": {"progr...
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"2001:470:1f13:6c0:5af4:69d9:d110:b154": {"type": "object", "properties": {"1h": {"type": "object", "properties": {"2001:470:1f13:6c0:5af4:69d9:d110:b154": {"type": "number"}, "192.168.1.4": {"type": "number"}}, "required": ...
{"2001:470:1f13:6c0:5af4:69d9:d110:b154" : {"1h" : {"2001:470:1f13:6c0:5af4:69d9:d110:b154" : 1.0, "192.168.1.4" : 1.0}, "6h" : {"2001:470:1f13:6c0:5af4:69d9:d110:b154" : 1.0, "192.168.1.4" : 1.0}}, "192.168.1.4" : {"1h" : {"2001:470:1f13:6c0:5af4:69d9:d110:b154" : 1.0, "192.168.1.4" : 1.0}, "6h" : {"2001:470:1f13:6c0:...
json_instruct
{"type": "object", "properties": {"2001:470:1f13:6c0:5af4:69d9:d110:b154": {"type": "object", "properties": {"1h": {"type": "object", "properties": {"2001:470:1f13:6c0:5af4:69d9:d110:b154": {"type": "number"}, "192.168.1.4": {"type": "number"}}, "required": ["2001:470:1f13:6c0:5af4:69d9:d110:b154", "192.168.1.4"]}, "6h...
Based on the schema below, produce a valid JSON object: {"type": "array", "items": {"type": "object", "properties": {"results": {"type": "array", "items": {"type": "object", "properties": {"tech": {"type": "integer"}, "pts": {"type": "integer"}, "connections": {"type": "integer"}, "capacity": {"type": "integer"}, "inv...
[{"results" : [{"tech" : 1, "pts" : 336, "connections" : 173436, "capacity" : 4566304, "investments" : 43369232}]}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"results": {"type": "array", "items": {"type": "object", "properties": {"tech": {"type": "integer"}, "pts": {"type": "integer"}, "connections": {"type": "integer"}, "capacity": {"type": "integer"}, "investments": {"type": "integer"}}, "required": ["tech", "pt...
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"en_US": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}, "fr_FR": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}, "de_DE": {"type": "array", "items": {"type": "...
{"en_US" : [["fruits", "fruits.pug"], ["fruits extended", "fruits_extended.pug"], ["tutorial", "tutorial.pug"], ["tutorial for API, with external data option", "tutorial_api.pug"], ["conjugation", "conjugation.pug"], ["choosebest", "synonyms.pug"], ["compile error", "comperror.pug"], ["long text", "longtext.pug"]], "fr...
json_instruct
{"type": "object", "properties": {"en_US": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}, "fr_FR": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}, "de_DE": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}, "it_IT": {"type": "array", "ite...
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"target": {"type": "string"}, "writing_mode": {"type": "string"}, "title": {"type": "string"}, "creator": {"type": "string"}, "language": {"type": "string"}, "book_id": {"type": "string"}, "toc_depth": {"type": "integer"}, "ver...
{"target" : "config", "writing_mode" : "htb", "title" : "config", "creator" : "me", "language" : "ja", "book_id" : "SBDGInK1nP9YHIg6nylpaK25IKFtFw", "toc_depth" : 2, "verbose" : false, "save" : false, "config" : true, "cover_image" : null, "ignores" : ["repub_config.json", ".DS_Store"], "sequence" : null, "content_conf...
json_instruct
{"type": "object", "properties": {"target": {"type": "string"}, "writing_mode": {"type": "string"}, "title": {"type": "string"}, "creator": {"type": "string"}, "language": {"type": "string"}, "book_id": {"type": "string"}, "toc_depth": {"type": "integer"}, "verbose": {"type": "boolean"}, "save": {"type": "boolean"}, "c...
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "array", "items": {}}}, "required": ["contract...
{"contract" : "0xd7aa43749ef2d2227d961d83b3087e4a2bf26f10", "tool" : "osiris", "start" : 1564618278.6829617, "end" : 1564618281.34195, "duration" : 2.6589882373809814, "analysis" : []}
json_instruct
{"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "array", "items": {}}}, "required": ["contract", "tool", "start", "end", "duration", "analysis"], "$schema": "http://...
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"subscription": {"type": "string"}, "policy-subscriptions": {"type": "array", "items": {"type": "string"}}}, "required": ["subscription", "policy-subscriptions"], "$schema": "http://json-schema.org/draft-07/sche...
{"subscription" : "00000000-0000-0000-0000-000000000000", "policy-subscriptions" : ["11111111-1111-1111-1111-111111111111", "22222222-2222-2222-2222-222222222222"]}
json_instruct
{"type": "object", "properties": {"subscription": {"type": "string"}, "policy-subscriptions": {"type": "array", "items": {"type": "string"}}}, "required": ["subscription", "policy-subscriptions"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"fro": {"type": "string"}, "too": {"type": "string"}, "value": {"type": "integer"}, "date": {"type": "number"}, "sign": {"type": "string"}}, "required": ["fro", "too", "value", "date", "sign"], "$schema": "http://jso...
{"fro" : "Judith", "too" : "Moritz", "value" : 350, "date" : 3203020800.0, "sign" : "30450221008163952dfba67ba282f9b2b3c07a12b370d0a8939750b5147924a3fc8e398e90022025b45751382c77c286ba408a9ca2143edeea36ab4abe31591ade20e397665927"}
json_instruct
{"type": "object", "properties": {"fro": {"type": "string"}, "too": {"type": "string"}, "value": {"type": "integer"}, "date": {"type": "number"}, "sign": {"type": "string"}}, "required": ["fro", "too", "value", "date", "sign"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"neworder": {"type": "string"}, "undueorder": {"type": "string"}, "dueorder": {"type": "string"}}, "required": ["neworder", "undueorder", "dueorder"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"neworder" : "[sortrandom[]]", "undueorder" : "[sortrandom[]]", "dueorder" : "[sortrandom[]]"}
json_instruct
{"type": "object", "properties": {"neworder": {"type": "string"}, "undueorder": {"type": "string"}, "dueorder": {"type": "string"}}, "required": ["neworder", "undueorder", "dueorder"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"version": {"type": "number"}, "people": {"type": "array", "items": {"type": "object", "properties": {"pose_keypoints": {"type": "array", "items": {"type": "number"}}, "face_keypoints": {"type": "array", "items": {}}...
{"version" : 1.0, "people" : [{"pose_keypoints" : [453.388, 138.811, 0.920283, 424.663, 160.96, 0.882795, 414.26, 158.448, 0.852274, 403.781, 197.56, 0.851624, 445.549, 202.784, 0.867048, 433.863, 160.979, 0.811121, 433.797, 193.644, 0.431541, 453.389, 198.879, 0.481839, 423.393, 234.16, 0.779953, 446.86, 298.042, 0.82...
json_instruct
{"type": "object", "properties": {"version": {"type": "number"}, "people": {"type": "array", "items": {"type": "object", "properties": {"pose_keypoints": {"type": "array", "items": {"type": "number"}}, "face_keypoints": {"type": "array", "items": {}}, "hand_left_keypoints": {"type": "array", "items": {}}, "hand_right_k...
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"plugin/wavesurfer.elan.min.js": {"type": "string"}, "plugin/wavesurfer.microphone.min.js": {"type": "string"}, "plugin/wavesurfer.minimap.min.js": {"type": "string"}, "plugin/wavesurfer.regions.min.js": {"type": "string"}, ...
{"plugin/wavesurfer.elan.min.js" : "sha512-5dPSK/w8okP5HzajV2lri4Sz1yDqvMviASNrpWc/A6ccd3tPtzFA39CPhWpoVloWXkuXIIt7l/KyinQo5g3nkQ==", "plugin/wavesurfer.microphone.min.js" : "sha512-xa7u2vQlPqzPRpZt7ZwP05FhIkbelAYLtHf9jdsOcbRDAvJF8BZBlgzK15iIrzA4SZvYKDMRyDhfYqWT89dzhg==", "plugin/wavesurfer.minimap.min.js" : "sha512-Zp...
json_instruct
{"type": "object", "properties": {"plugin/wavesurfer.elan.min.js": {"type": "string"}, "plugin/wavesurfer.microphone.min.js": {"type": "string"}, "plugin/wavesurfer.minimap.min.js": {"type": "string"}, "plugin/wavesurfer.regions.min.js": {"type": "string"}, "plugin/wavesurfer.spectrogram.min.js": {"type": "string"}, "p...
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"abi": {"type": "array", "items": {}}, "evm": {"type": "object", "properties": {"bytecode": {"type": "object", "properties": {"linkReferences": {"type": "object", "properties": {}, "required": []}, "object": {"type"...
{"abi" : [], "evm" : {"bytecode" : {"linkReferences" : {}, "object" : "60566023600b82828239805160001a607314601657fe5b30600052607381538281f3fe73000000000000000000000000000000000000000030146080604052600080fdfea26469706673582212208b148f8e1824dc10de682a1d673be1373d35fbeb499e801c86e2b5ee309caf4564736f6c63430006060033", "opc...
json_instruct
{"type": "object", "properties": {"abi": {"type": "array", "items": {}}, "evm": {"type": "object", "properties": {"bytecode": {"type": "object", "properties": {"linkReferences": {"type": "object", "properties": {}, "required": []}, "object": {"type": "string"}, "opcodes": {"type": "string"}, "sourceMap": {"type": "stri...
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"brief": {"type": "string"}, "long": {"type": "string"}}, "required": ["brief", "long"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"brief" : "themselves", "long" : "<i>Meaning:</i> \"themselves\" (often used emphatic for the copula, also in indirect relation).<br/><i>Usage:</i> \u00d7 in, \u00d7 such (and such things), their, (into) them, thence, therein, these, they (had), on this side, whose, wherein.<br/><i>Source:</i> prolongation for \"H2004...
json_instruct
{"type": "object", "properties": {"brief": {"type": "string"}, "long": {"type": "string"}}, "required": ["brief", "long"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"uuid": {"type": "string"}, "name": {"type": "string"}, "description": {"type": "string"}, "start": {"type": "integer"}, "stop": {"type": "integer"}, "children": {"type": "array", "items": {"type": "string"}}, "befo...
{"uuid" : "0de2f4d0-b13c-4525-9ab5-6a5631574b22", "name" : "im.atzma.tests.AppointmentCreationTest.preconditions", "description" : "", "start" : 1554403578176, "stop" : 1554403578177, "children" : ["e6c09989-ed80-4c22-a753-cc36f37020e4"], "befores" : [{"name" : "preconditions", "status" : "broken", "stage" : "finished"...
json_instruct
{"type": "object", "properties": {"uuid": {"type": "string"}, "name": {"type": "string"}, "description": {"type": "string"}, "start": {"type": "integer"}, "stop": {"type": "integer"}, "children": {"type": "array", "items": {"type": "string"}}, "befores": {"type": "array", "items": {"type": "object", "properties": {"nam...
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"testRunIds": {"type": "array", "items": {"type": "string"}}, "unfilteredTests": {"type": "object", "properties": {"dts": {"type": "array", "items": {}}}, "required": ["dts"]}, "filteredTests": {"type": "objec...
{"testRunIds" : ["1635730879446-ac59f4fc-99d8-4a0e-9f6c-6bde1d102cf0"], "unfilteredTests" : {"dts" : []}, "filteredTests" : {"dts" : []}, "roundTime" : 1.889871355}
json_instruct
{"type": "object", "properties": {"testRunIds": {"type": "array", "items": {"type": "string"}}, "unfilteredTests": {"type": "object", "properties": {"dts": {"type": "array", "items": {}}}, "required": ["dts"]}, "filteredTests": {"type": "object", "properties": {"dts": {"type": "array", "items": {}}}, "required": ["dts"...
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"name": {"type": "string"}, "id": {"type": "string"}, "address": {"type": "string"}, "email": {"type": "string"}, "school_type": {"type": "string"}, "legal_status": {"type": "integer"}, "fax": {"type": "string"}, "phone": {"typ...
{"name" : "6. Schulpraktisches Seminar Reinickendorf", "id" : "BE-15981", "address" : "Lindauer Allee 23, 13407 Berlin", "email" : "sekr2.sps-reinickendorf@gmx.de", "school_type" : "Schulpraktisches Seminar", "legal_status" : 1, "fax" : "49857596-8", "phone" : "49857596-9", "director" : "Hr. Ziegenhagen", "full_time_sc...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "id": {"type": "string"}, "address": {"type": "string"}, "email": {"type": "string"}, "school_type": {"type": "string"}, "legal_status": {"type": "integer"}, "fax": {"type": "string"}, "phone": {"type": "string"}, "director": {"type": "string"}, "full_time_s...
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"atmosphere.js": {"type": "string"}, "atmosphere.min.js": {"type": "string"}}, "required": ["atmosphere.js", "atmosphere.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"atmosphere.js" : "sha256-k4aNnSj4IP/03EXBq7fsvSN3fDUx8ndNeXNcxhr4nZM=", "atmosphere.min.js" : "sha256-b1aR46+C+0K5YSBopYSMbYnqI9hhCo96/Y+RDpery0c="}
json_instruct
{"type": "object", "properties": {"atmosphere.js": {"type": "string"}, "atmosphere.min.js": {"type": "string"}}, "required": ["atmosphere.js", "atmosphere.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"groupAffiliation": {"type": "string"}, "relatives": {"type": "string"}}, "required": ["groupAffiliation", "relatives"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"groupAffiliation" : "Avengers, Mighty Avengers, Olympic Pantheon; Warhawks", "relatives" : "Zeus (father), Hera (mother), Enyo (wife), Deimos, Phobos, Alexander (sons), Neptune, Pluto (uncles), Demeter, Hestia (aunts), Hephaestus (brother), Apollo, Dionysus, Hercules, Hermes(half-brothers), Artemis, Pallas Athena, Ve...
json_instruct
{"type": "object", "properties": {"groupAffiliation": {"type": "string"}, "relatives": {"type": "string"}}, "required": ["groupAffiliation", "relatives"], "$schema": "http://json-schema.org/draft-07/schema#"}
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" : ["Bring a large pot of lightly salted water to a boil. Add pasta and cook for 8 to 10 minutes or until al dente; drain.", "Heat oil in a large pot over medium heat. Saute bacon, onion and garlic until lightly browned. Stir in tomato sauce. Season with parsley, basil, garlic powder and pepper. Bring to a...
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...
Based on the schema below, produce a valid JSON object: {"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":...
{"rustc" : 13783575115907918084, "features" : "[]", "target" : 3826634923158569614, "profile" : 16668067249205866872, "path" : 16872505104454253384, "deps" : [], "local" : [{"CheckDepInfo" : {"dep_info" : "wasm32-wasi/debug/.fingerprint/glob-a9926e59002136a4/dep-lib-glob"}}], "rustflags" : [], "metadata" : 172631811954...
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 a JSON structure that matches this schema definition: {"type": "object", "properties": {"_id": {"type": "string"}, "brewery": {"type": "string"}, "name": {"type": "string"}, "abv": {"type": "string"}, "category": {"type": "string"}, "style": {"type": "string"}, "updated": {"type": "string"}}, "required": ["_id"...
{"_id" : "beer_Hobgoblin", "brewery" : "Wychwood Brewery", "name" : "Hobgoblin", "abv" : "5.5", "category" : "North American Ale", "style" : "Dark American-Belgo-Style Ale", "updated" : "2010-07-22 20:00:20"}
json_instruct
{"type": "object", "properties": {"_id": {"type": "string"}, "brewery": {"type": "string"}, "name": {"type": "string"}, "abv": {"type": "string"}, "category": {"type": "string"}, "style": {"type": "string"}, "updated": {"type": "string"}}, "required": ["_id", "brewery", "name", "abv", "category", "style", "updated"], "...
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"ast": {"type": "null"}, "code": {"type": "string"}, "map": {"type": "object", "properties": {"version": {"type": "integer"}, "sources": {"type": "array", "items": {"type": "string"}}, "names": {"type": "array...
{"ast" : null, "code" : "'use strict';\n\nvar debug = require('debug');\n\nvar log = debug('libp2p:floodsub');\nlog.err = debug('libp2p:floodsub:error');\nmodule.exports = {\n log: log,\n multicodec: '/floodsub/1.0.0'\n};", "map" : {"version" : 3, "sources" : ["C:/Users/dd/Desktop/Project SSI/Major Project/client/nod...
json_instruct
{"type": "object", "properties": {"ast": {"type": "null"}, "code": {"type": "string"}, "map": {"type": "object", "properties": {"version": {"type": "integer"}, "sources": {"type": "array", "items": {"type": "string"}}, "names": {"type": "array", "items": {"type": "string"}}, "mappings": {"type": "string"}, "sourcesCont...
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "is_illegal": {"type": "boolean"}, "is_custom": {"type": "boolean"}, "text": {"type": "string"}, "images": {"type": "array", "items": {"type": "string"}}, "type": {"type": ...
{"id" : 99726621, "name" : "Tri-Brigade Shuraig the Ominous Omen", "is_illegal" : false, "is_custom" : false, "text" : "2+ Beast, Beast-Warrior, and/or Winged Beast monsters\nIf this card is Special Summoned, or if another Beast, Beast-Warrior, or Winged Beast monster(s) is Special Summoned to your field: You can banis...
json_instruct
{"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "is_illegal": {"type": "boolean"}, "is_custom": {"type": "boolean"}, "text": {"type": "string"}, "images": {"type": "array", "items": {"type": "string"}}, "type": {"type": "string"}, "attribute": {"type": "string"}, "atk": {"type":...
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"Exif": {"type": "object", "properties": {"Lat": {"type": "integer"}, "Long": {"type": "integer"}, "Date": {"type": "string"}, "Tags": {"type": "object", "properties": {"ImageDescription": {"type": "string"}}, "requ...
{"Exif" : {"Lat" : 0, "Long" : 0, "Date" : "0001-01-01T00:00:00Z", "Tags" : {"ImageDescription" : "Burial & Four Tet & Thom Yorke - Her Revolution / His Rope"}}}
json_instruct
{"type": "object", "properties": {"Exif": {"type": "object", "properties": {"Lat": {"type": "integer"}, "Long": {"type": "integer"}, "Date": {"type": "string"}, "Tags": {"type": "object", "properties": {"ImageDescription": {"type": "string"}}, "required": ["ImageDescription"]}}, "required": ["Lat", "Long", "Date", "Tag...
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"atrament.min.js": {"type": "string"}}, "required": ["atrament.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"atrament.min.js" : "sha512-i0zY6xDIkyjXWL7G7h8CUnINT/sxHLKHVl/4AmqnlxXlYhJmJcamgK8SjxYERxs/hbVRrkhMB02RMv1NxSQYDg=="}
json_instruct
{"type": "object", "properties": {"atrament.min.js": {"type": "string"}}, "required": ["atrament.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"name": {"type": "string"}, "displayName": {"type": "string"}, "description": {"type": "string"}, "version": {"type": "string"}, "engines": {"type": "object", "properties": {"vscode": {"type": "string"}}, "required":...
{"name" : "extensions-pack-vue", "displayName" : "extensions-pack-vue", "description" : "The vue extensions pack of VS Code.", "version" : "0.0.1", "engines" : {"vscode" : "^1.56.0"}, "categories" : ["octref.vetur"], "extensionPack" : ["publisher.extensionName"]}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "displayName": {"type": "string"}, "description": {"type": "string"}, "version": {"type": "string"}, "engines": {"type": "object", "properties": {"vscode": {"type": "string"}}, "required": ["vscode"]}, "categories": {"type": "array", "items": {"type": "strin...
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"IsModified": {"type": "boolean"}, "IsNew": {"type": "boolean"}, "Description": {"type": "string"}, "SetName": {"type": "string"}, "FullName": {"type": "string"}, "ImageName": {"type": "string"}, "Power": {"type...
{"IsModified" : false, "IsNew" : false, "Description" : "Masters of the void, Warshades can manipulate dark energy, gravity and matter to blast and dominate their foes. The gravimetric nature of most Umbral Blast powers often slows the targets attack and movement speed.", "SetName" : "Umbral_Blast", "FullName" : "Wars...
json_instruct
{"type": "object", "properties": {"IsModified": {"type": "boolean"}, "IsNew": {"type": "boolean"}, "Description": {"type": "string"}, "SetName": {"type": "string"}, "FullName": {"type": "string"}, "ImageName": {"type": "string"}, "Power": {"type": "null"}, "SetType": {"type": "string"}, "DisplayName": {"type": "string"...
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"id": {"type": "integer"}, "title": {"type": "array", "items": {"type": "string"}}, "description": {"type": "array", "items": {"type": "string"}}, "paths": {"type": "array", "items": {"type": "string"}}, "location": {"type": "s...
{"id" : 18966, "title" : ["[Sorcerer Guild, Planetarium]"], "description" : ["The summit of the tower spreads out in a large, round platform. The platform has been made from black marble to absorb as much ambient light as possible, and the sides of the platform are walled to a height of four feet to shut off light fro...
json_instruct
{"type": "object", "properties": {"id": {"type": "integer"}, "title": {"type": "array", "items": {"type": "string"}}, "description": {"type": "array", "items": {"type": "string"}}, "paths": {"type": "array", "items": {"type": "string"}}, "location": {"type": "string"}, "wayto": {"type": "object", "properties": {"18965"...
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "dependencies": {"type": "object", "properties": {"@types/node": {"type": "string"}, "@types/q": {"type": "string"}, "applicationinsights": {"type": "string...
{"name" : "azure-iot-edge-vsts-extension-task", "version" : "1.1.2", "dependencies" : {"@types/node" : "^9.6.36", "@types/q" : "^1.5.1", "applicationinsights" : "^1.0.2", "azure-pipelines-task-lib" : "^2.7.5", "utility-common" : "file:../../_build/Tasks/Common/utility-common-1.0.2.tgz"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "dependencies": {"type": "object", "properties": {"@types/node": {"type": "string"}, "@types/q": {"type": "string"}, "applicationinsights": {"type": "string"}, "azure-pipelines-task-lib": {"type": "string"}, "utility-common": {...
Generate sample JSON data that conforms to the following schema definition: {"type": "array", "items": {"type": "object", "properties": {"Name": {"type": "string"}, "Start": {"type": "integer"}, "End": {"type": "integer"}, "Text": {"type": "string"}}, "required": ["Name", "Start", "End", "Text"]}, "$schema": "http://j...
[{"Name" : "SELECT", "Start" : 0, "End" : 6, "Text" : "SELECT"}, {"Name" : "ASCII_42", "Start" : 7, "End" : 8, "Text" : "*"}, {"Name" : "FROM", "Start" : 9, "End" : 13, "Text" : "FROM"}, {"Name" : "IDENT", "Start" : 14, "End" : 22, "Text" : "my_table"}, {"Name" : "TABLESAMPLE", "Start" : 23, "End" : 34, "Text" : "TABLE...
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"Name": {"type": "string"}, "Start": {"type": "integer"}, "End": {"type": "integer"}, "Text": {"type": "string"}}, "required": ["Name", "Start", "End", "Text"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "repository": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "description", "repository", "keywor...
{"name" : "Flask Echo", "description" : "An app that will reply with metadata about the HTTP request.", "repository" : "https://github.com/tomfa/echo", "keywords" : ["flask", "python", "logging"]}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "repository": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "description", "repository", "keywords"], "$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"}, "repository": {"type": "string"}, "author": {"type": "string"}, "license": {"type": "string"}, "dependenc...
{"name" : "ct_api_node", "version" : "1.0.0", "description" : "an example of the CrowdTangle API in node", "main" : "index.js", "repository" : "https://github.com/CrowdTangle/API", "author" : "georgemayer", "license" : "MIT", "dependencies" : {"body-parser" : "^1.18.3", "dotenv" : "^6.2.0", "express" : "^4.16.4", "mome...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "repository": {"type": "string"}, "author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"body-parser": {"ty...
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"id": {"type": "integer"}, "title": {"type": "array", "items": {"type": "string"}}, "description": {"type": "array", "items": {"type": "string"}}, "paths": {"type": "array", "items": {"type": "string"}}, "location": {"type":...
{"id" : 7761, "title" : ["[Upper Trollfang]"], "description" : ["Several large pits are clearly visible in this area. They have apparently been caused by the uprooting of several of the oak and maple trees that grow here. One of these pits now serves as the entrance to an exceptionally small cave."], "paths" : ["Obvi...
json_instruct
{"type": "object", "properties": {"id": {"type": "integer"}, "title": {"type": "array", "items": {"type": "string"}}, "description": {"type": "array", "items": {"type": "string"}}, "paths": {"type": "array", "items": {"type": "string"}}, "location": {"type": "string"}, "wayto": {"type": "object", "properties": {"7767":...
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"h": {"type": "array", "items": {"type": "object", "properties": {"d": {"type": "array", "items": {"type": "object", "properties": {"e": {"type": "array", "items": {"type": "string"}}, "f": {"type": "string"}}, "requ...
{"h" : [{"d" : [{"e" : ["\ufff9`Sapipalakecaw~ `naira~ `ci~ `Latengan~.\ufffa\ufffb\u4ed6\u5011\u60f3\u5f15\u6e21 Lateng(\u62c9\u4e39)\u3002"], "f" : "\u60f3\u5f15\u6e21\u3001\u64fa\u6e21\u3002"}]}], "stem" : "lakec", "t" : "sapipalakecaw"}
json_instruct
{"type": "object", "properties": {"h": {"type": "array", "items": {"type": "object", "properties": {"d": {"type": "array", "items": {"type": "object", "properties": {"e": {"type": "array", "items": {"type": "string"}}, "f": {"type": "string"}}, "required": ["e", "f"]}}}, "required": ["d"]}}, "stem": {"type": "string"},...
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "description": {"type": "string"}, "user": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "email": {"type": "string"}, ...
{"id" : 97781, "name" : "Ars Technica LOL funny pictures thread text hider", "description" : "All this does is set the font color to white for that thread only. Select the text if you want to read it. 1 minute style creation, so there are probably lots of things that could and should be done better.", "user" : {"id" ...
json_instruct
{"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "description": {"type": "string"}, "user": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "email": {"type": "string"}, "paypal_email": {"type": "null"}, "homepage": {"type": "null"}, "about...
Construct a JSON document that adheres to this schema specification: {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "effect": {"type": "string"}, "description": {"type": "string"}, "type": {"type": "string"}}, "required": ["name", "effect", "description", "type"]}, "$schema": ...
[{"name" : "Serrated", "effect" : "Gain +1 to your damage", "description" : "Gain a bonus to your damage rolls", "type" : "prefix"}, {"name" : "bursting", "effect" : "Deal 1d4 additional damage when you roll max damage", "description" : "Deal more damage when you do a lot of damage", "type" : "prefix"}, {"name" : "Hone...
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "effect": {"type": "string"}, "description": {"type": "string"}, "type": {"type": "string"}}, "required": ["name", "effect", "description", "type"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"parameters": {"type": "object", "properties": {"AzureRegion": {"type": "string"}, "Ocp-Apim-Subscription-Key": {"type": "string"}, "appId": {"type": "string"}, "versionId": {"type": "string"}, "compositeModelCreateOb...
{"parameters" : {"AzureRegion" : "westus", "Ocp-Apim-Subscription-Key" : "{apiKey}", "appId" : "{appId}", "versionId" : "{versionId}", "compositeModelCreateObject" : {"name" : "Reservation", "children" : ["Location::To", "datetime"]}}, "responses" : {"201" : {"headers" : {}, "body" : "bc1bae43-7904-48ad-a165-88b1910174...
json_instruct
{"type": "object", "properties": {"parameters": {"type": "object", "properties": {"AzureRegion": {"type": "string"}, "Ocp-Apim-Subscription-Key": {"type": "string"}, "appId": {"type": "string"}, "versionId": {"type": "string"}, "compositeModelCreateObject": {"type": "object", "properties": {"name": {"type": "string"}, ...
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"version": {"type": "integer"}, "projects": {"type": "object", "properties": {"build-pipeline": {"type": "string"}, "boilerplate": {"type": "string"}, "config-builder": {"type": "string"}, "controller-shared": {"type": "string"...
{"version" : 2, "projects" : {"build-pipeline" : "apps/build-pipeline", "boilerplate" : "libs/boilerplate", "config-builder" : "apps/config-builder", "controller-shared" : "libs/controller-shared", "controller-sdk" : "libs/controller-sdk", "devtools" : "apps/devtools", "formio" : "libs/formio", "home-assistant-shared" ...
json_instruct
{"type": "object", "properties": {"version": {"type": "integer"}, "projects": {"type": "object", "properties": {"build-pipeline": {"type": "string"}, "boilerplate": {"type": "string"}, "config-builder": {"type": "string"}, "controller-shared": {"type": "string"}, "controller-sdk": {"type": "string"}, "devtools": {"type...
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"vertices": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}}, "required": ["vertices"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"vertices" : [[685, 726], [601, 683], [645, 647], [480, 552], [451, 617], [534, 582], [515, 660], [575, 600], [539, 659], [439, 618], [194, 516], [130, 483], [232, 415], [180, 391], [525, 653], [453, 542], [470, 612], [490, 543], [536, 575], [176, 578], [484, 623], [184, 448], [426, 684], [513, 654], [341, 418], [453,...
json_instruct
{"type": "object", "properties": {"vertices": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}}, "required": ["vertices"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"applicationName": {"type": "string"}, "applicationId": {"type": "string"}, "applicationKey": {"type": "string"}, "global": {"type": "object", "properties": {"avVersion": {"type": "string"}}, "required": ["avVer...
{"applicationName" : "TicketDemo", "applicationId" : "my7clww2hnrairocm6uwus69fg806z50vvmtaz7oughnfq94", "applicationKey" : "npn86d4vj3ttgl0qemc972v70wrs1oimye04w2x3sb4r0zl7", "global" : {"avVersion" : "0.2.0"}}
json_instruct
{"type": "object", "properties": {"applicationName": {"type": "string"}, "applicationId": {"type": "string"}, "applicationKey": {"type": "string"}, "global": {"type": "object", "properties": {"avVersion": {"type": "string"}}, "required": ["avVersion"]}}, "required": ["applicationName", "applicationId", "applicationKey"...
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"KinematicMoveToGoal": {"type": "object", "properties": {"checkpoints": {"type": "array", "items": {"type": "object", "properties": {"steps": {"type": "integer"}, "file_path": {"type": "string"}, "reward": {"type": "null"}, "crea...
{"KinematicMoveToGoal" : {"checkpoints" : [{"steps" : 45525, "file_path" : "results/Kinematic10/KinematicMoveToGoal/KinematicMoveToGoal-45525.onnx", "reward" : null, "creation_time" : 1627087616.0916312, "auxillary_file_paths" : ["results/Kinematic10/KinematicMoveToGoal/KinematicMoveToGoal-45525.pt"]}], "final_checkpoi...
json_instruct
{"type": "object", "properties": {"KinematicMoveToGoal": {"type": "object", "properties": {"checkpoints": {"type": "array", "items": {"type": "object", "properties": {"steps": {"type": "integer"}, "file_path": {"type": "string"}, "reward": {"type": "null"}, "creation_time": {"type": "number"}, "auxillary_file_paths": {...
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "repo...
{"name" : "comerr", "version" : "0.0.9", "description" : "ERROR: No README.md file found!", "main" : "lib/index.js", "scripts" : {"test" : "echo \"Error: no test specified\" && exit 1"}, "repository" : {"type" : "git", "url" : "git://github.com/crcn/errcodes.js.git"}, "author" : "", "license" : "BSD", "gitHead" : "88e5...
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...
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "manifest_version": {"type": "integer"}, "description": {"type": "string"}, "permissions": {"type": "array", "items": {"type": "string"}}, "background":...
{"name" : "Conscient", "version" : "1.0", "manifest_version" : 2, "description" : "Build an Extension!", "permissions" : ["declarativeContent", "storage", "activeTab", "audio", "input"], "background" : {"scripts" : ["background.js"], "persistent" : false}, "icons" : {"16" : "logo/conscient_logo_16.png", "48" : "logo/co...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "manifest_version": {"type": "integer"}, "description": {"type": "string"}, "permissions": {"type": "array", "items": {"type": "string"}}, "background": {"type": "object", "properties": {"scripts": {"type": "array", "items": {"...
The schema below describes a JSON structure. Generate a valid example: {"type": "array", "items": {"type": "object", "properties": {"namaKab": {"type": "string"}, "originalFilename": {"type": "string"}, "namaPartai": {"type": "string"}, "id": {"type": "integer"}, "noUrut": {"type": "integer"}, "nama": {"type": "string...
[{"namaKab" : "JAKARTA BARAT", "originalFilename" : "PHOTO_001.jpg", "namaPartai" : "Persatuan Indonesia", "id" : 66238, "noUrut" : 1, "nama" : "DR. M QUDRAT NUGRAHA, MSi", "stringJenisKelamin" : "Laki-Laki"}, {"namaKab" : "JAKARTA TIMUR", "originalFilename" : "Untitled-1.jpg", "namaPartai" : "Persatuan Indonesia", "id...
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"namaKab": {"type": "string"}, "originalFilename": {"type": "string"}, "namaPartai": {"type": "string"}, "id": {"type": "integer"}, "noUrut": {"type": "integer"}, "nama": {"type": "string"}, "stringJenisKelamin": {"type": "string"}}, "required": ["namaKab", "...
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"workers": {"type": "integer"}, "machines": {"type": "integer"}, "debug_level_logging": {"type": "boolean"}, "json_logging": {"type": "boolean"}, "aws": {"type": "object", "properties": {"region": {"type": "string"},...
{"workers" : 3, "machines" : 1, "debug_level_logging" : true, "json_logging" : false, "aws" : {"region" : "ap-northeast-1", "access_key_id" : "gokurou-s3-access-key", "secret_access_key" : "gokurou-s3-secret-key", "s3_endpoint" : "http://localhost:11113"}, "artifact" : {"bucket" : "gokurou-dev", "key_prefix" : "crawled...
json_instruct
{"type": "object", "properties": {"workers": {"type": "integer"}, "machines": {"type": "integer"}, "debug_level_logging": {"type": "boolean"}, "json_logging": {"type": "boolean"}, "aws": {"type": "object", "properties": {"region": {"type": "string"}, "access_key_id": {"type": "string"}, "secret_access_key": {"type": "s...