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": {"id_5188": {"type": "object", "properties": {"publicdate": {"type": "string"}, "title": {"type": "string"}}, "required": ["publicdate", "title"]}}, "required": ["id_5188"], "$schema": "http://json-schema.org/draft-07/schema#...
{"id_5188" : {"publicdate" : "2011-02-10 15:03:13", "title" : "The Augsburg Confession"}}
json_instruct
{"type": "object", "properties": {"id_5188": {"type": "object", "properties": {"publicdate": {"type": "string"}, "title": {"type": "string"}}, "required": ["publicdate", "title"]}}, "required": ["id_5188"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"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" : 20623, "name" : "Techpowerup.com Cleaner", "description" : "Bez reklam. No ads", "user" : {"id" : 24029, "name" : "Ethar", "email" : "redacted", "paypal_email" : "marcin.wojcik@hacjenda.info", "homepage" : null, "about" : null, "license" : "ccby"}, "updated" : "2016-10-20T13:19:32.000Z", "weekly_install_count" ...
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": "string"}, "homepage": {"type": "null"}, "abo...
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"\uc774\ub984": {"type": "string"}, "\ud55c\ubb38\uba85": {"type": "string"}, "\uc0dd\ub144\uc6d4\uc77c": {"type": "string"}, "\uc815\ub2f9": {"type": "string"}, "\uc120\uac70\uad6c": {"type": "string"}, "\ub2f9\uc120\ud69f\uc2...
{"\uc774\ub984" : "\uc774\uacbd\uc219", "\ud55c\ubb38\uba85" : "\uf9e1\u666f\u6dd1", "\uc0dd\ub144\uc6d4\uc77c" : "1953-08-15", "\uc815\ub2f9" : "\uc5f4\ub9b0\uc6b0\ub9ac\ub2f9", "\uc120\uac70\uad6c" : "\ube44\ub840\ub300\ud45c", "\ub2f9\uc120\ud69f\uc218" : "\ucd08\uc120", "\ub2f9\uc120\ub300\uc218" : "17"}
json_instruct
{"type": "object", "properties": {"\uc774\ub984": {"type": "string"}, "\ud55c\ubb38\uba85": {"type": "string"}, "\uc0dd\ub144\uc6d4\uc77c": {"type": "string"}, "\uc815\ub2f9": {"type": "string"}, "\uc120\uac70\uad6c": {"type": "string"}, "\ub2f9\uc120\ud69f\uc218": {"type": "string"}, "\ub2f9\uc120\ub300\uc218": {"type...
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"visit_intervals": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}}, "xs": {"type": "array", "items": {"type": "integer"}}, "ys": {"type": "array", "items": {"ty...
{"visit_intervals" : [[[152, 228], [613, 636]], [[674, 676], [342, 361]], [[620, 651], [104, 198]], [[753, 840], [488, 554]], [[293, 335], [902, 980]], [[649, 700], [265, 330]], [[602, 645], [266, 358]], [[923, 931], [822, 879]], [[99, 155], [956, 1046]], [[260, 316], [18, 61]], [[248, 293], [748, 794]], [[206, 208], [...
json_instruct
{"type": "object", "properties": {"visit_intervals": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}}, "xs": {"type": "array", "items": {"type": "integer"}}, "ys": {"type": "array", "items": {"type": "integer"}}, "values": {"type": "array", "items": {"type": "integ...
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"parent": {"type": "string"}, "textures": {"type": "object", "properties": {"layer0": {"type": "string"}}, "required": ["layer0"]}}, "required": ["parent", "textures"], "$schema": "http://json-schema.org/draft-0...
{"parent" : "minecraft:item/generated", "textures" : {"layer0" : "botania:item/cosmetic_kamui_eye"}}
json_instruct
{"type": "object", "properties": {"parent": {"type": "string"}, "textures": {"type": "object", "properties": {"layer0": {"type": "string"}}, "required": ["layer0"]}}, "required": ["parent", "textures"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"appService.zipIgnorePattern": {"type": "array", "items": {"type": "string"}}, "appService.defaultWebAppToDeploy": {"type": "string"}, "appService.deploySubpath": {"type": "string"}}, "required": ["appService.zipIgnorePattern", "...
{"appService.zipIgnorePattern" : ["node_modules{,/**}", ".vscode{,/**}"], "appService.defaultWebAppToDeploy" : "/subscriptions/19fbb581-23df-4687-9c2a-6af79bc6eb0b/resourceGroups/Work/providers/Microsoft.Web/sites/qrcodeapp20", "appService.deploySubpath" : ""}
json_instruct
{"type": "object", "properties": {"appService.zipIgnorePattern": {"type": "array", "items": {"type": "string"}}, "appService.defaultWebAppToDeploy": {"type": "string"}, "appService.deploySubpath": {"type": "string"}}, "required": ["appService.zipIgnorePattern", "appService.defaultWebAppToDeploy", "appService.deploySubp...
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"id": {"type": "string"}, "playerTags": {"type": "array", "items": {"type": "string"}}, "teamTags": {"type": "array", "items": {"type": "string"}}, "gameTags": {"type": "array", "items": {}}, "metadata": {"type"...
{"id" : "0f975da2-36f7-4af3-8aab-56667a31a0ea", "playerTags" : ["9a031b9a-16f8-4165-a468-5d0e28a81151"], "teamTags" : ["7966eb04-efcc-499b-8f03-d13916330531"], "gameTags" : [], "metadata" : {"mods" : ["COFFEE_PERIL"], "type" : 2}, "created" : "2021-04-05T23:31:56.156Z", "season" : 14, "tournament" : -1, "type" : 108, "...
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "playerTags": {"type": "array", "items": {"type": "string"}}, "teamTags": {"type": "array", "items": {"type": "string"}}, "gameTags": {"type": "array", "items": {}}, "metadata": {"type": "object", "properties": {"mods": {"type": "array", "items": {"type": "str...
Please provide a valid JSON object following 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" : 1923, "sex" : "F", "n" : 5, "prop" : 3.99e-06}, {"year" : 1962, "sex" : "F", "n" : 6, "prop" : 2.96e-06}, {"year" : 1965, "sex" : "F", "n" : 8, "prop" : 4.38e-06}, {"year" : 1966, "sex" : "F", "n" : 11, "prop" : 6.27e-06}, {"year" : 1970, "sex" : "F", "n" : 6, "prop" : 3.28e-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 sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"assessment": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "weight": {"type": "integer"}}, "required": ["name", "weight"]}}}, "required": ["assessment"], "$schema": ...
{"assessment" : [{"name" : "Oral Presentation", "weight" : 40}, {"name" : "MIDW2105", "weight" : 60}]}
json_instruct
{"type": "object", "properties": {"assessment": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "weight": {"type": "integer"}}, "required": ["name", "weight"]}}}, "required": ["assessment"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"cohortMetrics": {"type": "array", "items": {}}, "metrics": {"type": "object", "properties": {"testValueSquared": {"type": "integer"}, "controlValueSquared": {"type": "integer"}, "testNumConvSquared": {"type": "inte...
{"cohortMetrics" : [], "metrics" : {"testValueSquared" : 2949102338, "controlValueSquared" : 2259601706, "testNumConvSquared" : 949102338, "controlNumConvSquared" : 259601706, "controlValue" : 469983800, "controlConverters" : 2946139347, "controlConversions" : 2946139347, "testValue" : 1642701889, "controlPopulation" :...
json_instruct
{"type": "object", "properties": {"cohortMetrics": {"type": "array", "items": {}}, "metrics": {"type": "object", "properties": {"testValueSquared": {"type": "integer"}, "controlValueSquared": {"type": "integer"}, "testNumConvSquared": {"type": "integer"}, "controlNumConvSquared": {"type": "integer"}, "controlValue": {"...
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"body": {"type": "string"}, "user": {"type": "string"}, "url": {"type": "string"}, "updated_at": {"type": "string"}, "created_at": {"type": "string"}, "closed_at": {"type": "string"}, "state": {"type": "string"}, "t...
{"body" : "", "user" : "healther", "url" : "https://api.github.com/repos/spack/spack/issues/6489", "updated_at" : "2017-11-30 15:48:43", "created_at" : "2017-11-28 15:42:15", "closed_at" : "2017-11-30 08:17:29", "state" : "closed", "title" : "add package py-lazy-object-proxy", "number" : 6489, "milestone" : null, "labe...
json_instruct
{"type": "object", "properties": {"body": {"type": "string"}, "user": {"type": "string"}, "url": {"type": "string"}, "updated_at": {"type": "string"}, "created_at": {"type": "string"}, "closed_at": {"type": "string"}, "state": {"type": "string"}, "title": {"type": "string"}, "number": {"type": "integer"}, "milestone": ...
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {"type": "integer"}}, "productReviews": {"type": "array", "items": {"type": "object", "properties": {"pro...
{"userId" : 239, "cartId" : "9e03c13a-06df-4156-ae71-594caef20e87", "preferredProducts" : [2680, 2703, 3697, 339, 472], "productReviews" : [{"productId" : 4913, "reviewText" : "heard about this on compas radio, decided to give it a try.", "reviewDate" : "2019-07-19T09:21:24.5987188+03:00"}, {"productId" : 1978, "review...
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...
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"published": {"type": "string"}, "media-type": {"type": "string"}, "title": {"type": "string"}, "id": {"type": "string"}, "content": {"type": "string"}, "source": {"type": "string"}}, "required": ["published", "media-...
{"published" : "2015-09-14T03:58:00Z", "media-type" : "News", "title" : "Japan's Mount Aso volcano erupts, no reports of injuries", "id" : "17268844-2490-4a2c-9cf0-e253d16e01f7", "content" : "A video grab from the Japan Meteorological Agency's live camera image shows an eruption of Mount Aso in Aso, Kumamoto prefecture...
json_instruct
{"type": "object", "properties": {"published": {"type": "string"}, "media-type": {"type": "string"}, "title": {"type": "string"}, "id": {"type": "string"}, "content": {"type": "string"}, "source": {"type": "string"}}, "required": ["published", "media-type", "title", "id", "content", "source"], "$schema": "http://json-s...
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"domain": {"type": "string"}, "clientId": {"type": "string"}, "audience": {"type": "string"}}, "required": ["domain", "clientId", "audience"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"domain" : "dsjtenant.eu.auth0.com", "clientId" : "8Lz2k2rShSGQyXf7Yk5JMHj7YdOXp2BQ", "audience" : "YOUR_API_IDENTIFIER"}
json_instruct
{"type": "object", "properties": {"domain": {"type": "string"}, "clientId": {"type": "string"}, "audience": {"type": "string"}}, "required": ["domain", "clientId", "audience"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"name": {"type": "string"}, "displayName": {"type": "string"}, "author": {"type": "string"}, "description": {"type": "string"}, "version": {"type": "string"}, "main": {"type": "string"}, "minGameVersion": {"type": "string"},...
{"name" : "touhou-mod", "displayName" : "touhou turret mod", "author" : "dashmaster", "description" : "\ub3d9\ubc29 \ud3ec\ud0d1 \ubaa8\ub4dc\uc785\ub2c8\ub2e4, \ub178\ub825\ud574\uc11c \ub9cc\ub4e4\uaca0\uc2b5\ub2c8\ub2e4! touhou turret mod! (\uac10\uaca9)", "version" : "2.0", "main" : "touhouturret.core.Main", "minG...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "displayName": {"type": "string"}, "author": {"type": "string"}, "description": {"type": "string"}, "version": {"type": "string"}, "main": {"type": "string"}, "minGameVersion": {"type": "string"}, "dependencies": {"type": "array", "items": {}}, "hidden": {"t...
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"total_rows": {"type": "integer"}, "rows": {"type": "array", "items": {}}}, "required": ["total_rows", "rows"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"total_rows" : 0, "rows" : []}
json_instruct
{"type": "object", "properties": {"total_rows": {"type": "integer"}, "rows": {"type": "array", "items": {}}}, "required": ["total_rows", "rows"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"body": {"type": "string"}, "next": {"type": "string"}}, "required": ["body", "next"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"body" : "WHEN AT LEAST IT CONTAINS BUT SOME FEW OF THOSE PROPERTIES WHICH FLOW FROM ITS REAL ESSENCE AND CONSTITUTION.", "next" : "https://raw.githubusercontent.com/CAPSELOCKE/CAPSELOCKE/master/tweets/7512.json"}
json_instruct
{"type": "object", "properties": {"body": {"type": "string"}, "next": {"type": "string"}}, "required": ["body", "next"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"state": {"type": "string"}, "result": {"type": "string"}}, "required": ["state", "result"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"state" : "COMPLETE", "result" : "DELIVERY_ERROR"}
json_instruct
{"type": "object", "properties": {"state": {"type": "string"}, "result": {"type": "string"}}, "required": ["state", "result"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"Artist": {"type": "string"}, "Common name": {"type": "string"}, "Date created": {"type": "string"}, "Geographic origin": {"type": "string"}, "Notes on original": {"type": "string"}, "Physical description": {"type": "string"}, "S...
{"Artist" : "Schutt, Ellen Isham, 1873-1955", "Common name" : "grapes", "Date created" : "1911", "Geographic origin" : "California, United States", "Notes on original" : "F.L. Husmann, Oakville Experiment Vineyard", "Physical description" : "1 art original : col. ; 19 x 30 cm.", "Scientific name" : "Vitis", "Specimen" ...
json_instruct
{"type": "object", "properties": {"Artist": {"type": "string"}, "Common name": {"type": "string"}, "Date created": {"type": "string"}, "Geographic origin": {"type": "string"}, "Notes on original": {"type": "string"}, "Physical description": {"type": "string"}, "Scientific name": {"type": "string"}, "Specimen": {"type":...
The schema below describes a JSON structure. Generate a valid example: {"type": "array", "items": {"type": "object", "properties": {"c": {"type": "integer"}, "d": {"type": "string"}, "md": {"type": "boolean"}}, "required": ["c", "d", "md"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"c" : 2460001, "d" : "1M", "md" : false}, {"c" : 2460002, "d" : "2M", "md" : false}, {"c" : 2460003, "d" : "3M", "md" : false}, {"c" : 2460004, "d" : "4M", "md" : false}, {"c" : 2460005, "d" : "5M", "md" : false}, {"c" : 2460006, "d" : "6M", "md" : false}, {"c" : 2460007, "d" : "7M", "md" : false}, {"c" : 2460008, "d...
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"c": {"type": "integer"}, "d": {"type": "string"}, "md": {"type": "boolean"}}, "required": ["c", "d", "md"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "object", "properties": {"en": {"type": "string"}}, "required": ["en"]}, "country": {"type": "string"}, "region": {"type": "string"}, "identifiers": {"type": "object", "properties": {"...
{"id" : "33297", "name" : {"en" : "Brody"}, "country" : "UA", "region" : "LV", "identifiers" : {"wmo" : "33297", "ghcn" : "UPM00033297"}, "location" : {"latitude" : 50.1, "longitude" : 25.15, "elevation" : 227}, "timezone" : "Europe/Uzhgorod"}
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "object", "properties": {"en": {"type": "string"}}, "required": ["en"]}, "country": {"type": "string"}, "region": {"type": "string"}, "identifiers": {"type": "object", "properties": {"wmo": {"type": "string"}, "ghcn": {"type": "string"}}, "req...
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "bin": {"type": "object", "properties": {"create-carbon-app": {"type": "string"}}, "required": ["create-c...
{"name" : "create-carbon-app", "version" : "1.0.4", "description" : "Easily get started with a new Carbon based app.", "main" : "index.js", "bin" : {"create-carbon-app" : "./index.js"}, "author" : "The Sage Group plc", "license" : "Apache-2.0", "dependencies" : {"fs-extra" : "^6.0.1"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "bin": {"type": "object", "properties": {"create-carbon-app": {"type": "string"}}, "required": ["create-carbon-app"]}, "author": {"type": "string"}, "license": {"ty...
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"latest_version": {"type": "array", "items": {"type": "string"}}, "meta": {"type": "object", "properties": {"description": {"type": "string"}, "homepage": {"type": "string"}, "license": {"type": "string"}}, "required"...
{"latest_version" : ["1.0.7"], "meta" : {"description" : "Simple Backup Application", "homepage" : "https://bitbucket.org/kamar/tkbak", "license" : "GNU/GPLv3"}, "versions" : {"0.4.95" : {"sha256" : "a3ff6d018f574adfc64a55e43810faa728836263eb17ebfb9f6402c8a5d83ae2", "url" : "https://files.pythonhosted.org/packages/4d/d...
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": "array", "items": {"type": "object", "properties": {"title": {"type": "string"}, "time": {"type": "string"}, "file": {"type": "string"}}, "required": ["title", "time", "file"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"title" : "Test", "time" : "2020-07-26 16:38:08", "file" : "posts/2.md"}, {"title" : "\u5e7f\u4e1c\u77012020\u5e74\u666e\u901a\u9ad8\u6821\u62db\u751f\u5f55\u53d6\u6700\u4f4e\u5206\u6570\u7ebf\u516c\u5e03", "time" : "2020-07-23 18:00:00", "file" : "posts/1.md"}, {"title" : "111222333", "time" : "2020-07-26 17:03:00",...
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"title": {"type": "string"}, "time": {"type": "string"}, "file": {"type": "string"}}, "required": ["title", "time", "file"]}, "$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"}, "type": {"type": "string"}, "license": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "strin...
{"name" : "php-programmist/file-sql-logger-bundle", "description" : "Provides service that logs all mutable queries to the file", "type" : "symfony-bundle", "license" : "MIT", "authors" : [{"name" : "PHP-Programmist.ru", "email" : "php.programmist.ru@gmail.com"}], "require" : {"php" : "^7.2.5", "symfony/filesystem" : "...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "type": {"type": "string"}, "license": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}}, "...
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"title": {"type": "string"}, "price": {"type": "string"}}, "required": ["title", "price"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"title" : "Underarm", "price" : "30"}
json_instruct
{"type": "object", "properties": {"title": {"type": "string"}, "price": {"type": "string"}}, "required": ["title", "price"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "array", "items": {"type": "object", "properties": {"users": {"type": "integer"}, "id": {"type": "string"}}, "required": ["users", "id"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"users" : 4, "id" : "IN-DN"}, {"users" : 4, "id" : "IN-AN"}, {"users" : 1063, "id" : "IN-AP"}, {"users" : 30, "id" : "IN-AR"}, {"users" : 970, "id" : "IN-AS"}, {"users" : 1187, "id" : "IN-BR"}, {"users" : 4565, "id" : "IN-CH"}, {"users" : 463, "id" : "IN-CT"}, {"users" : 33621, "id" : "IN-DL"}, {"users" : 0, "id" : "...
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"users": {"type": "integer"}, "id": {"type": "string"}}, "required": ["users", "id"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"type": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "number"}}}, "required": ["type", "coordinates"]}, "proper...
{"type" : "Feature", "geometry" : {"type" : "Point", "coordinates" : [-1.19353, 53.91267]}, "properties" : {"maximum-net-dwellings" : "5", "planning-permission-type" : "full planning permission", "planning-permission-status" : "permissioned", "start-date" : "2018-08-07", "planning-permission-history" : "http://public.s...
json_instruct
{"type": "object", "properties": {"type": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "number"}}}, "required": ["type", "coordinates"]}, "properties": {"type": "object", "properties": {"maximum-net-dwellings": {"type": ...
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "object", "properties": {"is_lock_vulnerable": ...
{"contract" : "0xc560984d8c4ced2a0eba5790b33b6f43afeef759", "tool" : "maian", "start" : 1565236450.2879949, "end" : 1565236755.1281853, "duration" : 304.840190410614, "analysis" : {"is_lock_vulnerable" : false, "is_prodigal_vulnerable" : false, "is_suicidal_vulnerable" : false}}
json_instruct
{"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "object", "properties": {"is_lock_vulnerable": {"type": "boolean"}, "is_prodigal_vulnerable": {"type": "boolean"}, "i...
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"h": {"type": "string"}, "c": {"type": "array", "items": {"type": "integer"}}}, "required": ["h", "c"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"h" : "cda80e0898485ee30190", "c" : [3]}
json_instruct
{"type": "object", "properties": {"h": {"type": "string"}, "c": {"type": "array", "items": {"type": "integer"}}}, "required": ["h", "c"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"Modules": {"type": "array", "items": {"type": "object", "properties": {"Key": {"type": "string"}, "Source": {"type": "string"}, "Dir": {"type": "string"}}, "required": ["Key", "Source", "Dir"]}}}, "required": ["Modules"], "$sc...
{"Modules" : [{"Key" : "kfp_infra.kfp_gke_vpc", "Source" : "./modules/vpc", "Dir" : "../../modules/vpc"}, {"Key" : "kfp_infra.kfp_gke_cluster", "Source" : "./modules/gke", "Dir" : "../../modules/gke"}, {"Key" : "kfp_infra.gke_service_account", "Source" : "./modules/service_account", "Dir" : "../../modules/service_accou...
json_instruct
{"type": "object", "properties": {"Modules": {"type": "array", "items": {"type": "object", "properties": {"Key": {"type": "string"}, "Source": {"type": "string"}, "Dir": {"type": "string"}}, "required": ["Key", "Source", "Dir"]}}}, "required": ["Modules"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"text": {"type": "string"}, "url": {"type": "string"}}, "required": ["text", "url"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"text" : " How to convert between degrees and radians and vice versa\n\n[imath]\\frac{2 \\pi}{3}[/imath]\n\n\n", "url" : "https://www.youtube.com/watch?v=NBoadeWvUdw"}
json_instruct
{"type": "object", "properties": {"text": {"type": "string"}, "url": {"type": "string"}}, "required": ["text", "url"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"installed": {"type": "array", "items": {"type": "string"}}, "skipped": {"type": "array", "items": {"type": "string"}}, "scriptUpdater": {"type": "object", "properties": {"skipped": {"type": "array", "items": {"type":...
{"installed" : ["test"], "skipped" : ["skill"], "scriptUpdater" : {"skipped" : ["build.ci", "build.dev", "build.resolve-paths", "post.watch.build"]}}
json_instruct
{"type": "object", "properties": {"installed": {"type": "array", "items": {"type": "string"}}, "skipped": {"type": "array", "items": {"type": "string"}}, "scriptUpdater": {"type": "object", "properties": {"skipped": {"type": "array", "items": {"type": "string"}}}, "required": ["skipped"]}}, "required": ["installed", "s...
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"5f127f6f26831d0010e985e5": {"type": "object", "properties": {"1b048402-5527-4b89-8a76-09fbe61735a0": {"type": "string"}}, "required": ["1b048402-5527-4b89-8a76-09fbe61735a0"]}, "5f127f671ab28b001762c204": {"type":...
{"5f127f6f26831d0010e985e5" : {"1b048402-5527-4b89-8a76-09fbe61735a0" : "warning"}, "5f127f671ab28b001762c204" : {"af326982-eaf5-44c1-92dd-13b6ab715c4d" : "error", "23982f64-a487-45ba-9114-2e87431f6cda" : "warning", "55f17c73-b2ae-4aeb-866e-b296cc881476" : "warning"}, "5f127f5f3a6b100017232099" : {"ae0b82b0-76bf-4c14-9...
json_instruct
{"type": "object", "properties": {"5f127f6f26831d0010e985e5": {"type": "object", "properties": {"1b048402-5527-4b89-8a76-09fbe61735a0": {"type": "string"}}, "required": ["1b048402-5527-4b89-8a76-09fbe61735a0"]}, "5f127f671ab28b001762c204": {"type": "object", "properties": {"af326982-eaf5-44c1-92dd-13b6ab715c4d": {"type...
Create a JSON structure that matches this schema definition: {"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", "it...
{"rustc" : 69170261113966331, "features" : "[]", "target" : 3326035008365736537, "profile" : 7282077418741342047, "path" : 13400063842143762717, "deps" : [], "local" : [{"Precalculated" : "0.3.15"}], "rustflags" : [], "edition" : "Edition2015"}
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": {"Precalculated": {"typ...
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"author": {"type": "string"}, "contributors": {"type": "array", "items": {"type": "string"}}, "status": {"type": "string"}, "name": {"type": "string"}, "name_zh": {"type": "string"}, "description": {"type": "string"}...
{"author" : "billy3321", "contributors" : ["joy hsu", "kris chu"], "status" : "beta", "name" : "ly-tel", "name_zh" : "\u7acb\u59d4\u806f\u7d61\u8cc7\u6599", "description" : "Public participation in tele-form", "description_zh" : "\u8a71\u7b52\u5f0f\u7684\u516c\u5171\u53c3\u8207\uff1a\u5c0d\u516c\u5171\u8b70\u984c\u6709...
json_instruct
{"type": "object", "properties": {"author": {"type": "string"}, "contributors": {"type": "array", "items": {"type": "string"}}, "status": {"type": "string"}, "name": {"type": "string"}, "name_zh": {"type": "string"}, "description": {"type": "string"}, "description_zh": {"type": "string"}, "homepage": {"type": "string"}...
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"URL": {"type": "string"}, "heading": {"type": "string"}, "subheading": {"type": "string"}, "author": {"type": "string"}, "category": {"type": "string"}, "type": {"type": "string"}, "timestamp": {"type": "string"}, "text": {"ty...
{"URL" : "https://www.wired.com/1999/05/stocks-fall-sharply-again", "heading" : "stocks fall sharply again", "subheading" : "technology stocks knock the wind out of us stock markets. yahoo, amazon, and america online were hit particularly hard.", "author" : "reuters", "category" : "business", "type" : "article", "times...
json_instruct
{"type": "object", "properties": {"URL": {"type": "string"}, "heading": {"type": "string"}, "subheading": {"type": "string"}, "author": {"type": "string"}, "category": {"type": "string"}, "type": {"type": "string"}, "timestamp": {"type": "string"}, "text": {"type": "string"}}, "required": ["URL", "heading", "subheading...
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"images": {"type": "array", "items": {}}, "text": {"type": "array", "items": {"type": "object", "properties": {"title": {"type": "string"}, "path": {"type": "string"}, "x": {"type": "integer"}, "y": {"type": "integer"}}, "re...
{"images" : [], "text" : [{"title" : "How to create a multi-save backup?", "path" : "text.txt", "x" : 50, "y" : 100}]}
json_instruct
{"type": "object", "properties": {"images": {"type": "array", "items": {}}, "text": {"type": "array", "items": {"type": "object", "properties": {"title": {"type": "string"}, "path": {"type": "string"}, "x": {"type": "integer"}, "y": {"type": "integer"}}, "required": ["title", "path", "x", "y"]}}}, "required": ["images"...
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"name": {"type": "string"}, "id": {"type": "string"}, "address": {"type": "string"}, "school_type": {"type": "string"}, "legal_status": {"type": "integer"}, "fax": {"type": "string"}, "phone": {"type": "string"}, "pro...
{"name" : "Elsa-Br\u00e4ndstr\u00f6m-Schule", "id" : "SH-0705451", "address" : "Zum Kr\u00fcckaupark 7, 25337 Elmshorn", "school_type" : "Gymnasium", "legal_status" : 1, "fax" : "04121 - 436744", "phone" : "04121 - 43670", "provider" : "Stadt Elmshorn", "headmaster" : "Herr Lorenzen", "state" : "SH", "programs" : {"pro...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "id": {"type": "string"}, "address": {"type": "string"}, "school_type": {"type": "string"}, "legal_status": {"type": "integer"}, "fax": {"type": "string"}, "phone": {"type": "string"}, "provider": {"type": "string"}, "headmaster": {"type": "string"}, "state"...
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"values": {"type": "array", "items": {"type": "object", "properties": {"from": {"type": "string"}, "to": {"type": "string"}}, "required": ["from", "to"]}}}, "required": ["values"], "$schema": "http://json-schema.org/draft-07/sche...
{"values" : [{"from" : "NameError:", "to" : "NameNahiHaiError"}, {"from" : "unexpected indent", "to" : "Aapke code ki formatting theek nahi hai. Aapko apne code ki indentation (yaani spacing) theek karo, jisse ki python aapke code ko samajh jayein."}, {"from" : "StyntaxError", "to" : "aapne jo Styntax use kiya hai wo g...
json_instruct
{"type": "object", "properties": {"values": {"type": "array", "items": {"type": "object", "properties": {"from": {"type": "string"}, "to": {"type": "string"}}, "required": ["from", "to"]}}}, "required": ["values"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"stationId": {"type": "integer"}, "stationGroupId": {"type": "integer"}, "name": {"type": "string"}, "lineId": {"type": "integer"}, "zipCode": {"type": "string"}, "pref": {"type": "string"}, "city": {"type": "string"}, "town...
{"stationId" : 2200722, "stationGroupId" : 2200131, "name" : "\u6240\u6ca2", "lineId" : 22007, "zipCode" : "359-0037", "pref" : "\u57fc\u7389\u770c", "city" : "\u6240\u6ca2\u5e02", "town" : "\u304f\u3059\u306e\u304d\u53f0", "longitude" : 139.473324, "latitude" : 35.786627, "status" : 0}
json_instruct
{"type": "object", "properties": {"stationId": {"type": "integer"}, "stationGroupId": {"type": "integer"}, "name": {"type": "string"}, "lineId": {"type": "integer"}, "zipCode": {"type": "string"}, "pref": {"type": "string"}, "city": {"type": "string"}, "town": {"type": "string"}, "longitude": {"type": "number"}, "latit...
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"Title": {"type": "string"}, "Year": {"type": "string"}, "Rated": {"type": "string"}, "Released": {"type": "string"}, "Runtime": {"type": "string"}, "Genre": {"type": "string"}, "Director": {"type": "string"}, "Writer": {"type"...
{"Title" : "Hustlers", "Year" : "2019", "Rated" : "R", "Released" : "13 Sep 2019", "Runtime" : "110 min", "Genre" : "Comedy, Crime, Drama, Thriller", "Director" : "Lorene Scafaria", "Writer" : "Jessica Pressler (magazine article), Lorene Scafaria (screenplay)", "Actors" : "Constance Wu, Jennifer Lopez, Julia Stiles, Me...
json_instruct
{"type": "object", "properties": {"Title": {"type": "string"}, "Year": {"type": "string"}, "Rated": {"type": "string"}, "Released": {"type": "string"}, "Runtime": {"type": "string"}, "Genre": {"type": "string"}, "Director": {"type": "string"}, "Writer": {"type": "string"}, "Actors": {"type": "string"}, "Plot": {"type":...
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"README.md": {"type": "string"}, "Rakefile": {"type": "string"}, "files/carbon.dll": {"type": "string"}, "manifests/carbon_file.pp": {"type": "string"}, "manifests/checkver.pp": {"type": "string"}, "manifests/localgroup_add_user....
{"README.md" : "4fb2f99ade7425f70222256d5b78917d", "Rakefile" : "20b80e526e351a74df2001f504e756d2", "files/carbon.dll" : "39caf69d5ffde7598acd6b8644080fe9", "manifests/carbon_file.pp" : "ecdd21e2c74e7574df2d1782f0c3cf09", "manifests/checkver.pp" : "3ffee6b6e4994a97d0d5e9eb4a04d29f", "manifests/localgroup_add_user.pp" :...
json_instruct
{"type": "object", "properties": {"README.md": {"type": "string"}, "Rakefile": {"type": "string"}, "files/carbon.dll": {"type": "string"}, "manifests/carbon_file.pp": {"type": "string"}, "manifests/checkver.pp": {"type": "string"}, "manifests/localgroup_add_user.pp": {"type": "string"}, "manifests/network_firewall.pp":...
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "private": {"type": "boolean"}, "dependencies": {"type": "object", "properties": {}, "required": []}, "author": {"type": ...
{"name" : "elm-hash-routing", "version" : "1.0.0", "description" : "Create single page applications with hash-routing", "private" : true, "dependencies" : {}, "author" : "Michael Hadley", "license" : "MIT", "devDependencies" : {"elm" : "^0.19.0-no-deps", "elm-test" : "^0.19.1"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "private": {"type": "boolean"}, "dependencies": {"type": "object", "properties": {}, "required": []}, "author": {"type": "string"}, "license": {"type": "string"}, "devDependencies": {"type": "...
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "nodes": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "id": {"type": "integer"}, "lat": {"type": "number"}, "lon": {"...
{"id" : "49207292", "name" : "Lees Street", "nodes" : [{"type" : "node", "id" : 352670039, "lat" : 52.3252349, "lon" : -0.6173527}, {"type" : "node", "id" : 352670040, "lat" : 52.3246189, "lon" : -0.6174236}, {"type" : "node", "id" : 352670041, "lat" : 52.3240163, "lon" : -0.6179494}, {"type" : "node", "id" : 352670042...
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "nodes": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "id": {"type": "integer"}, "lat": {"type": "number"}, "lon": {"type": "number"}}, "required": ["type", "id", "lat", "lon"]}}, "volunte...
Create an example JSON object that satisfies this schema: {"type": "array", "items": {"type": "object", "properties": {"DeniedAlternatives": {"type": "array", "items": {}}, "Files": {"type": "object", "properties": {"objects/minibiome/metallic/tech2.object": {"type": "array", "items": {"type": "string"}}}, "required":...
[{"DeniedAlternatives" : [], "Files" : {"objects/minibiome/metallic/tech2.object" : ["/shortdescription"]}, "Texts" : {"Chs" : "\u5148\u9a71\u4e9a\u7a7a\u95f4\u5b58\u50a8\u5668", "Eng" : "Precursor Sub-Space Storage"}}, {"DeniedAlternatives" : [], "Files" : {"objects/minibiome/metallic/tech2.object" : ["/description"]}...
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"DeniedAlternatives": {"type": "array", "items": {}}, "Files": {"type": "object", "properties": {"objects/minibiome/metallic/tech2.object": {"type": "array", "items": {"type": "string"}}}, "required": ["objects/minibiome/metallic/tech2.object"]}, "Texts": {"t...
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"id": {"type": "string"}, "firstName": {"type": "string"}, "lastName": {"type": "string"}, "email": {"type": "string"}, "username": {"type": "string"}, "password": {"type": "string"}, "organisations": {"type": "array...
{"id" : "3d5b3ea3-f231-444b-8328-d801e7876e62", "firstName" : "Kayla", "lastName" : "Green", "email" : "kayla.green-8175@example.com", "username" : "kayla.green-8175@example.com", "password" : "bat", "organisations" : [{"id" : "6f88bf38-6cc5-4473-9619-496b9842af7b", "code" : "R16", "name" : "Redcar and Cleveland Teache...
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "firstName": {"type": "string"}, "lastName": {"type": "string"}, "email": {"type": "string"}, "username": {"type": "string"}, "password": {"type": "string"}, "organisations": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}...
Create an example JSON object that satisfies this schema: {"type": "array", "items": {"type": "object", "properties": {"subreddit": {"type": "string"}, "hour": {"type": "string"}, "avg": {"type": "number"}}, "required": ["subreddit", "hour", "avg"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"subreddit" : "MapleStoryM", "hour" : "01", "avg" : 4.324324324324325}, {"subreddit" : "MapleStoryM", "hour" : "02", "avg" : 7.928571428571429}, {"subreddit" : "MapleStoryM", "hour" : "03", "avg" : 6.7073170731707314}, {"subreddit" : "MapleStoryM", "hour" : "04", "avg" : 4.931034482758621}, {"subreddit" : "MapleStory...
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"subreddit": {"type": "string"}, "hour": {"type": "string"}, "avg": {"type": "number"}}, "required": ["subreddit", "hour", "avg"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"compare": {"type": "object", "properties": {"title": {"type": "string"}, "actual": {"type": "string"}, "expected": {"type": "string"}, "pass": {"type": "string"}, "fail": {"type": "string"}}, "required": ["titl...
{"compare" : {"title" : "\u041f\u043e\u0440\u0456\u0432\u043d\u044f\u043d\u043d\u044f \u0440\u0435\u0437\u0443\u043b\u044c\u0442\u0430\u0442\u0456\u0432 \u0440\u043e\u0437\u0432\u2019\u044f\u0437\u0430\u043d\u043d\u044f \u0437 \u043e\u0447\u0456\u043a\u0443\u0432\u0430\u043d\u0438\u043c \u0440\u0435\u0437\u0443\u043b\u...
json_instruct
{"type": "object", "properties": {"compare": {"type": "object", "properties": {"title": {"type": "string"}, "actual": {"type": "string"}, "expected": {"type": "string"}, "pass": {"type": "string"}, "fail": {"type": "string"}}, "required": ["title", "actual", "expected", "pass", "fail"]}, "error": {"type": "object", "pr...
Using the following JSON schema, generate a compatible JSON instance: {"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", "it...
{"ast" : null, "code" : "var _jsxFileName = \"D:\\\\YIGE Related\\\\SWATMobile\\\\image-searching\\\\src\\\\App.js\";\nimport React from \"react\";\n\nconst App = () => React.createElement(\"div\", {\n __source: {\n fileName: _jsxFileName,\n lineNumber: 4\n },\n __self: this\n}, React.createElement(\"span\", {...
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...
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"brief": {"type": "string"}, "long": {"type": "string"}}, "required": ["brief", "long"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"brief" : "an ode, song", "long" : "an ode, song, hymn."}
json_instruct
{"type": "object", "properties": {"brief": {"type": "string"}, "long": {"type": "string"}}, "required": ["brief", "long"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"900704302": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900704303": {"type": "object", "properties": {"nam...
{"900704302" : {"nama" : "TPS 1", "dapil" : [7101, 17101, 2717102]}, "900704303" : {"nama" : "TPS 2", "dapil" : [7101, 17101, 2717102]}, "900704304" : {"nama" : "TPS 3", "dapil" : [7101, 17101, 2717102]}, "900704305" : {"nama" : "TPS 4", "dapil" : [7101, 17101, 2717102]}, "900704306" : {"nama" : "TPS 5", "dapil" : [710...
json_instruct
{"type": "object", "properties": {"900704302": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900704303": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": ...
Create a JSON structure that matches this schema definition: {"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"}
["codsworth", "pipboy", "pipboycli", "pipboydata", "pipboyrelay"]
json_instruct
{"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"text": {"type": "string"}, "historical": {"type": "string"}, "credits": {"type": "string"}, "sections": {"type": "array", "items": {"type": "object", "properties": {"prefix": {"type": "string"}, "text": {"type": "string"}}, "r...
{"text" : "", "historical" : "Prior Codifications\n\n1981 Ed., \u00a7 21-306.\n\nLegislative History of Laws\n\nFor legislative history of D.C. Law 6-87, see Historical and Statutory Notes following \u00a7 21-301.\n\nUniform Law\n\nThis section is based upon \u00a7 6 of the Uniform Transfers to Minors Act. See 8B Unifo...
json_instruct
{"type": "object", "properties": {"text": {"type": "string"}, "historical": {"type": "string"}, "credits": {"type": "string"}, "sections": {"type": "array", "items": {"type": "object", "properties": {"prefix": {"type": "string"}, "text": {"type": "string"}}, "required": ["prefix", "text"]}}, "division": {"type": "objec...
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"stationGroupId": {"type": "integer"}, "stations": {"type": "array", "items": {"type": "string"}}}, "required": ["stationGroupId", "stations"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"stationGroupId" : 9981824, "stations" : ["9981824"]}
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#"}
Generate a valid JSON object that conforms to the following schema: {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
[[1992, 10], [1993, 13], [1994, 9], [1996, 10], [1997, 5], [1998, 6], [1999, 5], [2000, 5], [2001, 6]]
json_instruct
{"type": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"name": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"del": {"type": "string"}, "gulp": {"type": "string"}, "gulp-angular-templatecache": {"type": "string"}, "gulp-clean": {"type": "s...
{"name" : "<%= appName %>", "devDependencies" : {"del" : "~2.0.2", "gulp" : "~3.9.0", "gulp-angular-templatecache" : "1.7.0", "gulp-clean" : "^0.3.1", "gulp-concat" : "~2.6.0", "gulp-html-replace" : "~1.5.1", "gulp-sass" : "~2.0.4", "gulp-shell" : "^0.4.3", "require-dir" : "^0.3.0", "forever" : "^0.15.1", "gulp-develop...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"del": {"type": "string"}, "gulp": {"type": "string"}, "gulp-angular-templatecache": {"type": "string"}, "gulp-clean": {"type": "string"}, "gulp-concat": {"type": "string"}, "gulp-html-replace": {"type": "...
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"expo": {"type": "object", "properties": {"name": {"type": "string"}, "sdkVersion": {"type": "string"}, "description": {"type": "string"}, "slug": {"type": "string"}, "icon": {"type": "string"}, "loading": {"type":...
{"expo" : {"name" : "ExplorerApp", "sdkVersion" : "28.0.0", "description" : "react-native-ui-kitten is a framework that contains set of commonly used UI components styled in similar way. The main idea of this framework is to move style definitions into specific place making components reusable and styled in a single wa...
json_instruct
{"type": "object", "properties": {"expo": {"type": "object", "properties": {"name": {"type": "string"}, "sdkVersion": {"type": "string"}, "description": {"type": "string"}, "slug": {"type": "string"}, "icon": {"type": "string"}, "loading": {"type": "object", "properties": {"icon": {"type": "string"}}, "required": ["ico...
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" : "conquest:block/black_carpet_vertical_corner_4"}
json_instruct
{"type": "object", "properties": {"parent": {"type": "string"}}, "required": ["parent"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"layout": {"type": "string"}, "placeholder": {"type": "object", "properties": {"fallback": {"type": "string"}}, "required": ["fallback"]}, "images": {"type": "object", "properties": {"fallback": {"type": "object", "properties":...
{"layout" : "constrained", "placeholder" : {"fallback" : "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAANCAIAAAAmMtkJAAAACXBIWXMAAAsTAAALEwEAmpwYAAAC6klEQVQoz2WP609ScRzG+RPSWs1WLyprze5LaoZZkpVSlHnL1rqsN2qJilaIOUNMu8e6OG+prFxNi+XQRqKzmc1m6yKpgKhw9JwDh+uBwy05l1+DLqv1vP5+nufzZRUIHiRyhfmC+wxDQhBksVhsNhtN0+DfMH8HAIpm...
json_instruct
{"type": "object", "properties": {"layout": {"type": "string"}, "placeholder": {"type": "object", "properties": {"fallback": {"type": "string"}}, "required": ["fallback"]}, "images": {"type": "object", "properties": {"fallback": {"type": "object", "properties": {"src": {"type": "string"}, "srcSet": {"type": "string"}, ...
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"nendo": {"type": "integer"}, "seibetu": {"type": "string"}, "nenrei": {"type": "integer"}, "sintyoo": {"type": "integer"}, "taizyuu": {"type": "number"}}, "required": ["nendo", "seibetu", "nenrei", "sintyoo",...
{"nendo" : 2005, "seibetu" : "\u5973", "nenrei" : 13, "sintyoo" : 149, "taizyuu" : 43.4}
json_instruct
{"type": "object", "properties": {"nendo": {"type": "integer"}, "seibetu": {"type": "string"}, "nenrei": {"type": "integer"}, "sintyoo": {"type": "integer"}, "taizyuu": {"type": "number"}}, "required": ["nendo", "seibetu", "nenrei", "sintyoo", "taizyuu"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"category": {"type": "integer"}, "codes": {"type": "array", "items": {"type": "object", "properties": {"code": {"type": "string"}}, "required": ["code"]}}}, "required": ["category", "codes"], "$schema": "http:...
{"category" : 19, "codes" : [{"code" : "438839005"}, {"code" : "83794005"}, {"code" : "77257005"}, {"code" : "233594006"}, {"code" : "448955002"}, {"code" : "19647005"}, {"code" : "20720000"}, {"code" : "233564000"}, {"code" : "233565004"}, {"code" : "72541002"}, {"code" : "225067007"}]}
json_instruct
{"type": "object", "properties": {"category": {"type": "integer"}, "codes": {"type": "array", "items": {"type": "object", "properties": {"code": {"type": "string"}}, "required": ["code"]}}}, "required": ["category", "codes"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"solution": {"type": "object", "properties": {"name": {"type": "string"}, "id": {"type": "string"}, "version": {"type": "string"}}, "required": ["name", "id", "version"]}, "paths": {"type": "object", "properties...
{"solution" : {"name" : "async-await-spfx-client-side-solution", "id" : "e10fb30e-6e0d-4db6-88bc-197189fb0582", "version" : "1.0.0.0"}, "paths" : {"zippedPackage" : "solution/async-await-spfx.spapp"}}
json_instruct
{"type": "object", "properties": {"solution": {"type": "object", "properties": {"name": {"type": "string"}, "id": {"type": "string"}, "version": {"type": "string"}}, "required": ["name", "id", "version"]}, "paths": {"type": "object", "properties": {"zippedPackage": {"type": "string"}}, "required": ["zippedPackage"]}}, ...
Please provide a valid JSON object following this schema: {"type": "array", "items": {"type": "object", "properties": {"c_ref": {"type": "string"}, "totals": {"type": "object", "properties": {"Cases": {"type": "integer"}, "Deaths": {"type": "integer"}}, "required": ["Cases", "Deaths"]}, "daily": {"type": "object", "pr...
[{"c_ref" : "Bear River", "totals" : {"Cases" : 4867, "Deaths" : 15}, "daily" : {"Cases" : 113, "Deaths" : 0}}, {"c_ref" : "Central Utah", "totals" : {"Cases" : 1176, "Deaths" : 7}, "daily" : {"Cases" : 26, "Deaths" : 0}}, {"c_ref" : "Davis", "totals" : {"Cases" : 7763, "Deaths" : 41}, "daily" : {"Cases" : 153, "Deaths...
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"c_ref": {"type": "string"}, "totals": {"type": "object", "properties": {"Cases": {"type": "integer"}, "Deaths": {"type": "integer"}}, "required": ["Cases", "Deaths"]}, "daily": {"type": "object", "properties": {"Cases": {"type": "integer"}, "Deaths": {"type"...
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" : "Conie-Molitard", "dpt" : "Eure-et-Loir", "inscrits" : 333, "abs" : 58, "votants" : 275, "blancs" : 31, "nuls" : 4, "exp" : 240, "res" : [{"panneau" : "1", "voix" : 137}, {"panneau" : "2", "voix" : 103}]}
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": {"id": {"type": "string"}, "variable1": {"type": "number"}, "variable2": {"type": "number"}, "variable3": {"type": "string"}}, "required": ["id", "variable1", "variable2", "variable3"], "$schema": "http://json-schema.org/draft-0...
{"id" : "170102120603", "variable1" : 0.4868, "variable2" : -1.7673, "variable3" : "B"}
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "variable1": {"type": "number"}, "variable2": {"type": "number"}, "variable3": {"type": "string"}}, "required": ["id", "variable1", "variable2", "variable3"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"app_name": {"type": "string"}, "version": {"type": "string"}, "build_number": {"type": "string"}}, "required": ["app_name", "version", "build_number"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"app_name" : "Nguyen Van Tan", "version" : "1.0.3", "build_number" : "4"}
json_instruct
{"type": "object", "properties": {"app_name": {"type": "string"}, "version": {"type": "string"}, "build_number": {"type": "string"}}, "required": ["app_name", "version", "build_number"], "$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" : [[[-87.790313, 41.482036], [-87.790239, 41.491779], [-87.73225, 41.491761], [-87.732149, 41.469784], [-87.790303, 41.469846], [-87.790313, 41.482036]]]}, "type" : "Feature", "properties" : {"cartodb_id" : 22154}}]}
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...
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"spellright.language": {"type": "array", "items": {"type": "string"}}, "spellright.documentTypes": {"type": "array", "items": {"type": "string"}}, "spellright.parserByClass": {"type": "object", "properties": {"igno...
{"spellright.language" : ["en"], "spellright.documentTypes" : ["markdown", "latex", "plaintext", "ignore"], "spellright.parserByClass" : {"ignore" : {"parser" : "markdown"}}, "python.pythonPath" : "C:\\Users\\253393\\AppData\\Local\\Continuum\\anaconda3\\envs\\Pyrcel_clean\\python.exe"}
json_instruct
{"type": "object", "properties": {"spellright.language": {"type": "array", "items": {"type": "string"}}, "spellright.documentTypes": {"type": "array", "items": {"type": "string"}}, "spellright.parserByClass": {"type": "object", "properties": {"ignore": {"type": "object", "properties": {"parser": {"type": "string"}}, "r...
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"pos": {"type": "string"}, "translits": {"type": "object", "properties": {"elephantinon": {"type": "object", "properties": {"rev.18.12|24": {"type": "array", "items": {"type": "string"}}}, "required": ["rev.18.12|24"]}}, "requi...
{"pos" : "adj", "translits" : {"elephantinon" : {"rev.18.12|24" : ["article", "of ivory", "and"]}}, "meanings" : {"ivory" : 1}, "meaningsCount" : 1, "occurences" : 1, "translation" : "hebrew-8143"}
json_instruct
{"type": "object", "properties": {"pos": {"type": "string"}, "translits": {"type": "object", "properties": {"elephantinon": {"type": "object", "properties": {"rev.18.12|24": {"type": "array", "items": {"type": "string"}}}, "required": ["rev.18.12|24"]}}, "required": ["elephantinon"]}, "meanings": {"type": "object", "pr...
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"name": {"type": "string"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}, "dev": {"type": "string"}}, "required": ["start", "dev"]}, "dependencies": {"type": "object", "properties": {"@a...
{"name" : "qibo", "scripts" : {"start" : "node ./bin/www", "dev" : "nodemon ./bin/www"}, "dependencies" : {"@adminjs/express" : "^4.0.1", "@adminjs/mongoose" : "^2.0.0", "@material-ui/icons" : "^4.11.2", "adminjs" : "^5.3.3", "axios" : "^0.24.0", "body-parser" : "^1.19.0", "chart.js" : "^3.6.0", "cors" : "^2.8.5", "deb...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}, "dev": {"type": "string"}}, "required": ["start", "dev"]}, "dependencies": {"type": "object", "properties": {"@adminjs/express": {"type": "string"}, "@adminjs/mongoose": {"type": "stri...
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"host": {"type": "string"}, "name": {"type": "string"}, "api_token": {"type": "string"}, "id": {"type": "string"}}, "required": ["host", "name", "api_token", "id"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"host" : "pure-c35", "name" : "pure-c35", "api_token" : "2e4d248f-bc7a-5cd0-411c-a5dff8213fca", "id" : "d1162661-ea1a-de9d-9f7f-e17a3f51a103"}
json_instruct
{"type": "object", "properties": {"host": {"type": "string"}, "name": {"type": "string"}, "api_token": {"type": "string"}, "id": {"type": "string"}}, "required": ["host", "name", "api_token", "id"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"courseCode": {"type": "string"}, "courseCredit": {"type": "string"}, "description": {"type": "string"}, "faculty": {"type": "string"}, "title": {"type": "string"}}, "required": ["courseCode", "courseCredit", "description", "fa...
{"courseCode" : "PH4240", "courseCredit" : "5", "description" : "This module will explore in depth some advanced topics in metaphysics. Some possible topics include whether similar things have universals in common, whether time flows, whether past and future exist, whether a whole is something over and above the sum of...
json_instruct
{"type": "object", "properties": {"courseCode": {"type": "string"}, "courseCredit": {"type": "string"}, "description": {"type": "string"}, "faculty": {"type": "string"}, "title": {"type": "string"}}, "required": ["courseCode", "courseCredit", "description", "faculty", "title"], "$schema": "http://json-schema.org/draft-...
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"artist_id": {"type": "string"}, "artist_latitude": {"type": "number"}, "artist_location": {"type": "string"}, "artist_longitude": {"type": "number"}, "artist_name": {"type": "string"}, "duration": {"type": "number"}, "num_song...
{"artist_id" : "ARTY3711187B9AB37D", "artist_latitude" : 41.88415, "artist_location" : "Chicago, IL", "artist_longitude" : -87.63241, "artist_name" : "BarlowGirl", "duration" : 240.06485, "num_songs" : 1, "song_id" : "SOUSEGE12A8C141926", "title" : "Carol Of The Bells / Sing We Now Of Christmas (Album Version)", "year"...
json_instruct
{"type": "object", "properties": {"artist_id": {"type": "string"}, "artist_latitude": {"type": "number"}, "artist_location": {"type": "string"}, "artist_longitude": {"type": "number"}, "artist_name": {"type": "string"}, "duration": {"type": "number"}, "num_songs": {"type": "integer"}, "song_id": {"type": "string"}, "ti...
The schema below describes a JSON structure. Generate a valid example: {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "size": {"type": "integer"}, "link": {"type": "string"}, "created_at": {"type": "string"}, "downloads": {"type": "integer"}, "linkid": {"type": "string"}, "con...
[{"name" : "\u6bcd\u72d7\u5973\u5974\u8bad\u7ec3\u8425\u3010\u7ef3\u7cbe\u75c5\u3011\u7cfb\u5217\u8089\u4e1d\u7f8e\u5973\u6346\u7ed1\u675f\u7f1a\u9ad8\u901f\u70ae\u673a\u52a0\u85e4\u9e70\u624b\u6307\u4f3a\u5019\u6b32\u4ed9\u6b32\u6b7b", "size" : 119490078, "link" : "https://streamtape.com/e/wlyd161ARMtJXJD", "created_a...
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "size": {"type": "integer"}, "link": {"type": "string"}, "created_at": {"type": "string"}, "downloads": {"type": "integer"}, "linkid": {"type": "string"}, "convert": {"type": "string"}, "achorname": {"type": "string"}, "subscribe":...
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {"type": "integer"}}, "productReviews": {"type": "array", "items": {"type": "object", "properties": {"productId": {"ty...
{"userId" : 28375, "cartId" : "7189b54e-8d67-466e-ac07-ede78969d8ad", "preferredProducts" : [2271, 770, 3228, 915, 1335], "productReviews" : [{"productId" : 3006, "reviewText" : "The box this comes in is 5 kilometer by 6 yard and weights 18 gram.", "reviewDate" : "2016-11-14T06:17:51.0324773+02:00"}, {"productId" : 342...
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...
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"word" : "gastromalacia", "definition" : "A softening of the coats of the stomach; -- usually a post- morten change."}
json_instruct
{"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"parent": {"type": "string"}}, "required": ["parent"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"parent" : "rechiseled_compat:block/quark_light_blue_stained_planks_small_tiles"}
json_instruct
{"type": "object", "properties": {"parent": {"type": "string"}}, "required": ["parent"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"@metadata": {"type": "object", "properties": {"authors": {"type": "array", "items": {"type": "string"}}}, "required": ["authors"]}, "echo-category-title-login-fail": {"type": "string"}}, "required": ["@metadata", ...
{"@metadata" : {"authors" : ["Pyscowicz"]}, "echo-category-title-login-fail" : "Ep\u00e4onnistuneet lokkausyritykset"}
json_instruct
{"type": "object", "properties": {"@metadata": {"type": "object", "properties": {"authors": {"type": "array", "items": {"type": "string"}}}, "required": ["authors"]}, "echo-category-title-login-fail": {"type": "string"}}, "required": ["@metadata", "echo-category-title-login-fail"], "$schema": "http://json-schema.org/dr...
Based on the schema below, produce a valid JSON object: {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "en": {"type": "string"}, "ru": {"type": "string"}, "iso3": {"type": "string"}, "iso2": {"type": "string"}, "phoneCode": {"type": "string"}, "capital": {"type": "null"}, "curre...
[{"id" : "a81bc686-62db-4ec7-8e8a-c8b3c7981110", "en" : "Vietnam", "ru" : "\u0412\u044c\u0435\u0442\u043d\u0430\u043c", "iso3" : "VNM", "iso2" : "VN", "phoneCode" : "84", "capital" : null, "currency" : "VND"}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "en": {"type": "string"}, "ru": {"type": "string"}, "iso3": {"type": "string"}, "iso2": {"type": "string"}, "phoneCode": {"type": "string"}, "capital": {"type": "null"}, "currency": {"type": "string"}}, "required": ["id", "en", "ru",...
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"functions": {"type": "object", "properties": {"predeploy": {"type": "array", "items": {"type": "string"}}}, "required": ["predeploy"]}}, "required": ["functions"], "$schema": "http://json-schema.org/draft-07/schema...
{"functions" : {"predeploy" : ["npm --prefix \"$RESOURCE_DIR\" run lint-fix"]}}
json_instruct
{"type": "object", "properties": {"functions": {"type": "object", "properties": {"predeploy": {"type": "array", "items": {"type": "string"}}}, "required": ["predeploy"]}}, "required": ["functions"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"area": {"type": "array", "items": {"type": "object", "properties": {"xpos": {"type": "integer"}, "ypos": {"type": "integer"}, "width": {"type": "integer"}, "height": {"type": "integer"}, "type": {"type": "string"}}, "required"...
{"area" : [{"xpos" : 235, "ypos" : 344, "width" : 77, "height" : 14, "type" : "match"}], "tags" : ["openqa-screenshot"], "properties" : []}
json_instruct
{"type": "object", "properties": {"area": {"type": "array", "items": {"type": "object", "properties": {"xpos": {"type": "integer"}, "ypos": {"type": "integer"}, "width": {"type": "integer"}, "height": {"type": "integer"}, "type": {"type": "string"}}, "required": ["xpos", "ypos", "width", "height", "type"]}}, "tags": {"...
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"name": {"type": "string"}, "displayName": {"type": "string"}}, "required": ["name", "displayName"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "fapp", "displayName" : "fapp"}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "displayName": {"type": "string"}}, "required": ["name", "displayName"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"_id": {"type": "string"}, "owner_id": {"type": "string"}, "name": {"type": "string"}, "variables": {"type": "array", "items": {"type": "string"}}, "formula": {"type": "string"}, "description": {"type": "string"}}, "required...
{"_id" : "", "owner_id" : "", "name" : "Cosine", "variables" : ["x"], "formula" : "math.cos({x})", "description" : "Just my macro"}
json_instruct
{"type": "object", "properties": {"_id": {"type": "string"}, "owner_id": {"type": "string"}, "name": {"type": "string"}, "variables": {"type": "array", "items": {"type": "string"}}, "formula": {"type": "string"}, "description": {"type": "string"}}, "required": ["_id", "owner_id", "name", "variables", "formula", "descri...
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"id": {"type": "string"}, "provinceId": {"type": "string"}, "regencyId": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "provinceId", "regencyId", "name"], "$schema": "http://json-schema.org/draft-07/schema#"...
{"id" : "34", "provinceId" : "32", "regencyId" : "06", "name" : "Rajapolah"}
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "provinceId": {"type": "string"}, "regencyId": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "provinceId", "regencyId", "name"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"name": {"type": "string"}, "name_pretty": {"type": "string"}, "product_documentation": {"type": "string"}, "client_documentation": {"type": "string"}, "issue_tracker": {"type": "string"}, "release_level": {"type": "string"}...
{"name" : "orgpolicy", "name_pretty" : "Organization Policy", "product_documentation" : "https://cloud.google.com/resource-manager/docs/organization-policy/overview", "client_documentation" : "https://cloud.google.com/python/docs/reference/orgpolicy/latest", "issue_tracker" : "", "release_level" : "stable", "language" ...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "name_pretty": {"type": "string"}, "product_documentation": {"type": "string"}, "client_documentation": {"type": "string"}, "issue_tracker": {"type": "string"}, "release_level": {"type": "string"}, "language": {"type": "string"}, "library_type": {"type": "st...
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"parent": {"type": "string"}, "name": {"type": "string"}, "flags": {"type": "integer"}}, "required": ["parent", "name", "flags"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"parent" : "redEvent", "name" : "gameeventsResurrectEvent", "flags" : 2}
json_instruct
{"type": "object", "properties": {"parent": {"type": "string"}, "name": {"type": "string"}, "flags": {"type": "integer"}}, "required": ["parent", "name", "flags"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"object": {"type": "string"}, "accountid": {"type": "string"}, "usernameHash": {"type": "string"}, "passwordHash": {"type": "string"}, "sessionKey": {"type": "string"}, "sessionKeyNumber": {"type": "integer"}, "create...
{"object" : "account", "accountid" : "account_526ed19", "usernameHash" : "876b7e1fc23769e909aa758c3c06390ecd1f520a2d074822ee766baf9fa342b428efdc75e233499acf2f7706930a1758ae3667574ea89a8c9cc965c9f574603f", "passwordHash" : "$2a$04$NTjx2Sx3BVM5L33BDfxm7O409fdLcBj6O.yEQDCMm172AkxPqrxFu", "sessionKey" : "1d36242dda9fffdd0c...
json_instruct
{"type": "object", "properties": {"object": {"type": "string"}, "accountid": {"type": "string"}, "usernameHash": {"type": "string"}, "passwordHash": {"type": "string"}, "sessionKey": {"type": "string"}, "sessionKeyNumber": {"type": "integer"}, "created": {"type": "integer"}, "administrator": {"type": "integer"}, "owner...
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"_id": {"type": "string"}, "index": {"type": "integer"}, "guid": {"type": "string"}, "isActive": {"type": "boolean"}, "balance": {"type": "string"}, "picture": {"type": "string"}, "age": {"type": "integer"}, "eyeColor": {"ty...
{"_id" : "55ee5e988bdd737e6727dcc4", "index" : 2089, "guid" : "fc2d135f-8e78-4b68-a618-248349140b06", "isActive" : false, "balance" : "$6,658.82", "picture" : "http://placehold.it/32x32", "age" : 55, "eyeColor" : "hazel", "name" : "Eve Warren", "gender" : "female", "company" : "DIGIPRINT", "email" : "evewarren@digiprin...
json_instruct
{"type": "object", "properties": {"_id": {"type": "string"}, "index": {"type": "integer"}, "guid": {"type": "string"}, "isActive": {"type": "boolean"}, "balance": {"type": "string"}, "picture": {"type": "string"}, "age": {"type": "integer"}, "eyeColor": {"type": "string"}, "name": {"type": "string"}, "gender": {"type":...
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"n_dim": {"type": "integer"}, "n_trials": {"type": "integer"}, "objective": {"type": "string"}, "white": {"type": "string"}, "black": {"type": "string"}, "traceback": {"type": "array", "items": {"type": "string"}}, ...
{"n_dim" : 3, "n_trials" : 80, "objective" : "markowitz_skew_on_cube", "white" : "pymoo_unsga3", "black" : "ultraopt_forest", "traceback" : ["passing", "passing"], "best_val" : [-0.04304590535389274, -0.0299159055155811], "best_x" : [[0.5302344003097997, 0.11169023009628598, 0.35816490135648194], [0.21510253898181986, ...
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": {...
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "author": {"type": "string"}, "license": {"type": "string"}}, "required": ["name", "version", "description"...
{"name" : "scroll-phat-hd.js", "version" : "0.0.1", "description" : "Scroll Phat HD js library", "main" : "index.js", "author" : "Alejandro Hernandez <alejandroherr@protonmail.com>", "license" : "MIT"}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "author": {"type": "string"}, "license": {"type": "string"}}, "required": ["name", "version", "description", "main", "author", "license"], "$schema": "http://json-s...
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"nom": {"type": "string"}, "dpt": {"type": "string"}, "inscrits": {"type": "integer"}, "abs": {"type": "integer"}, "votants": {"type": "integer"}, "blancs": {"type": "integer"}, "nuls": {"type": "integer"}, "exp": {"type": "integ...
{"nom" : "Cendras", "dpt" : "Gard", "inscrits" : 1360, "abs" : 268, "votants" : 1092, "blancs" : 15, "nuls" : 7, "exp" : 1070, "res" : [{"panneau" : "9", "voix" : 466}, {"panneau" : "2", "voix" : 270}, {"panneau" : "3", "voix" : 153}, {"panneau" : "11", "voix" : 78}, {"panneau" : "4", "voix" : 41}, {"panneau" : "1", "v...
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"...
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" : "0xe353a36b99ea433790efcab938893ff44f5c326a9e154f88ba297f26263b15a9", "parentHash" : "0x019ace4bc0207988cc7bc2fb366c5476849f974db69c8afc47714d3b2563a33e", "number" : 44409, "timestamp" : 1438889648, "nonce" : "0x08abcc0338d133c7", "difficulty" : 1405449693587, "gasLimit" : {"_hex" : "0x26e1"}, "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"]...
The schema below describes a JSON structure. Generate a valid example: {"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.635186, 42.893356], [-76.592863, 42.89516], [-76.593485, 42.910006], [-76.552729, 42.911598], [-76.551857, 42.909719], [-76.547425, 42.906603], [-76.545479, 42.908133], [-76.542955, 42.908382], [-76.540592, 42.906142]...
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": {"type": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "requir...
{"type" : "Feature", "geometry" : {"type" : "Polygon", "coordinates" : [[[124.125, 37.166666666666664], [124.125, 37.25], [124.25, 37.25], [124.25, 37.166666666666664], [124.125, 37.166666666666664]]]}, "properties" : {"code" : 552461, "url" : "http://madefor.github.io/0410/api/v1/552461.geojson", "view" : "https://git...
json_instruct
{"type": "object", "properties": {"type": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["type", "coordinates"]}, "properties": {"type": "ob...
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"backgroundType": {"type": "string"}, "plainBackgroundMode": {"type": "string"}, "devIntro": {"type": "string"}, "devDesc": {"type": "string"}, "gradientColors": {"type": "string"}, "backgroundImageUrl": {"type": "string"}, ...
{"backgroundType" : "plain", "plainBackgroundMode" : "daylight", "devIntro" : "Hello, I'm Sebastian Karasi\u0144ski", "devDesc" : "QA Tester | FrontEnd Developer", "gradientColors" : "#EE7752, #E73C7E, #23A6D5, #23D5AB", "backgroundImageUrl" : "http://hdwpro.com/wp-content/uploads/2017/03/Art-Background-Image.png", "ic...
json_instruct
{"type": "object", "properties": {"backgroundType": {"type": "string"}, "plainBackgroundMode": {"type": "string"}, "devIntro": {"type": "string"}, "devDesc": {"type": "string"}, "gradientColors": {"type": "string"}, "backgroundImageUrl": {"type": "string"}, "icons": {"type": "array", "items": {"type": "object", "proper...
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"fetchzipVersion": {"type": "integer"}, "rev": {"type": "string"}, "sha256": {"type": "string"}, "version": {"type": "string"}}, "required": ["fetchzipVersion", "rev", "sha256", "version"], "$schema": "http://json-sch...
{"fetchzipVersion" : 6, "rev" : "v0.4.20", "sha256" : "221813a1e42535cd44cbe726f8a0606fdf4fc83d2b36cd7f125250e3c0a703ce", "version" : "v0.4.20"}
json_instruct
{"type": "object", "properties": {"fetchzipVersion": {"type": "integer"}, "rev": {"type": "string"}, "sha256": {"type": "string"}, "version": {"type": "string"}}, "required": ["fetchzipVersion", "rev", "sha256", "version"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "array", "items": {"type": "object", "properties": {"key": {"type": "string"}, "name": {"type": "string"}, "description": {"type": "string"}, "img": {"type": "string"}}, "required": ["key", "name", "description", "img"]}, "$schema": "http://...
[{"key" : "zwave", "name" : "Z-Wave", "description" : "Control your Z-Wave devices.", "img" : "/assets/integrations/cover/zwave.jpg"}, {"key" : "rtsp-camera", "name" : "Camera", "description" : "HTTP/RTSP cameras in Gladys.", "img" : "/assets/integrations/cover/rtsp-camera.jpg"}, {"key" : "xiaomi", "name" : "Xiaomi Hom...
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"key": {"type": "string"}, "name": {"type": "string"}, "description": {"type": "string"}, "img": {"type": "string"}}, "required": ["key", "name", "description", "img"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"id": {"type": "string"}, "expression": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}}, "required": ["id"]}}}, "required": ["id", "expression"], "$schema": "http://json-schema.o...
{"id" : "http://data.doremus.org/performance/69bd70b0-928b-3f44-936a-150b04a06f00", "expression" : [{"id" : "http://data.doremus.org/expression/defd2797-9c01-37f6-9b25-8973a8303983"}, {"id" : "http://data.doremus.org/expression/a214b616-8f2f-3304-9280-5067e3df744f"}, {"id" : "http://data.doremus.org/expression/a3162b7e...
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "expression": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}}, "required": ["id"]}}}, "required": ["id", "expression"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"id": {"type": "string"}}, "required": ["id"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : "b73c033adf7273f8a1d09947ad452a66ea9004de"}
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}}, "required": ["id"], "$schema": "http://json-schema.org/draft-07/schema#"}