input stringlengths 159 2.05k | output stringlengths 5 10.3k | task stringclasses 1
value | schema stringlengths 100 1.99k |
|---|---|---|---|
Based on the schema below, produce a valid JSON object:
{"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": {"... | {"n_dim" : 21, "n_trials" : 210, "objective" : "matyas_on_cube", "white" : "optuna_random_clone_1", "black" : "bobyqa_default", "traceback" : ["passing", "passing"], "best_val" : [2.6117162979388997, 1.005865028174544e-12], "best_x" : [[0.6993851911960937, 0.9170034379171269, 0.2624604379937835, 0.13713441200242837, 0.... | 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": {... |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"IsRecentlyVerified": {"type": "boolean"}, "ID": {"type": "integer"}, "UUID": {"type": "string"}, "DataProviderID": {"type": "integer"}, "DataProvidersReference": {"type": "string"}, "OperatorID": {"type": "integer... | {"IsRecentlyVerified" : false, "ID" : 102803, "UUID" : "D80F5B20-CE4C-4CAF-BDE2-EFBCE55A34F9", "DataProviderID" : 2, "DataProvidersReference" : "94931", "OperatorID" : 5, "UsageTypeID" : 1, "AddressInfo" : {"ID" : 103149, "Title" : "CDC", "AddressLine1" : "1540-1698 Wallace Rd", "Town" : "South Park Township", "StateOr... | json_instruct | {"type": "object", "properties": {"IsRecentlyVerified": {"type": "boolean"}, "ID": {"type": "integer"}, "UUID": {"type": "string"}, "DataProviderID": {"type": "integer"}, "DataProvidersReference": {"type": "string"}, "OperatorID": {"type": "integer"}, "UsageTypeID": {"type": "integer"}, "AddressInfo": {"type": "object"... |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"nft": {"type": "object", "properties": {"id": {"type": "integer"}, "image": {"type": "string"}, "attributes": {"type": "array", "items": {"type": "object", "properties": {"trait_type": {"type": "string"}, "value": {... | {"nft" : {"id" : 3512, "image" : "ipfs://QmS5ZPC7o82TLwrk3zNDEq3FFYJ4bm4HLxJJuPuXVocC7f", "attributes" : [{"trait_type" : "Earring", "value" : "Silver Hoop"}, {"trait_type" : "Mouth", "value" : "Jovial"}, {"trait_type" : "Fur", "value" : "Black"}, {"trait_type" : "Clothes", "value" : "Black T"}, {"trait_type" : "Eyes",... | json_instruct | {"type": "object", "properties": {"nft": {"type": "object", "properties": {"id": {"type": "integer"}, "image": {"type": "string"}, "attributes": {"type": "array", "items": {"type": "object", "properties": {"trait_type": {"type": "string"}, "value": {"type": "string"}}, "required": ["trait_type", "value"]}}}, "required"... |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "license": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"},... | {"name" : "@stack-tools/v8-tools", "version" : "1.0.0", "description" : "Tools for printing and parsing v8 errors and their stacks", "license" : "MIT", "repository" : {"type" : "github", "url" : "stack-tools-js/stack-tools", "directory" : "packages/stack-tools-v8"}, "main" : "lib/index.js", "exports" : {"." : {"import"... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "license": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}, "directory": {"type": "string"}}, "required": ["type", "ur... |
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" : [[[134.25, 42.0], [134.25, 42.083333333333336], [134.375, 42.083333333333336], [134.375, 42.0], [134.25, 42.0]]]}, "properties" : {"code" : 633402, "url" : "http://madefor.github.io/0410/api/v1/633402.geojson", "view" : "https://github.com/madefor/0... | 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... |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"symbol": {"type": "string"}, "name": {"type": "string"}, "decimals": {"type": "integer"}, "address": {"type": "string"}}, "required": ["symbol", "name", "decimals", "address"], "$schema": "http://json-schema.org/draft-07/schem... | {"symbol" : "BBR", "name" : "Bitberry Token", "decimals" : 18, "address" : "0x7671904eed7f10808b664fc30bb8693fd7237abf"} | json_instruct | {"type": "object", "properties": {"symbol": {"type": "string"}, "name": {"type": "string"}, "decimals": {"type": "integer"}, "address": {"type": "string"}}, "required": ["symbol", "name", "decimals", "address"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"nom": {"type": "string"}, "dpt": {"type": "string"}, "inscrits": {"type": "integer"}, "abs": {"type": "integer"}, "votants": {"type": "integer"}, "blancs": {"type": "integer"}, "nuls": {"type": "integer"}, "e... | {"nom" : "Quin\u00e9ville", "dpt" : "Manche", "inscrits" : 253, "abs" : 63, "votants" : 190, "blancs" : 20, "nuls" : 1, "exp" : 169, "res" : [{"panneau" : "1", "voix" : 92}, {"panneau" : "2", "voix" : 77}]} | 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"... |
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" : [[[148.125, 43.083333333333336], [148.125, 43.166666666666664], [148.25, 43.166666666666664], [148.25, 43.083333333333336], [148.125, 43.083333333333336]]]}, "properties" : {"code" : 644851, "url" : "http://madefor.github.io/0410/api/v1/644851.geojs... | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["type", "coordinates"]}, "properties": {"type": "ob... |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"CommonLearnStrings.dontShowThisAgainLabel": {"type": "string"}, "CommonLearnStrings.exploreResources": {"type": "string"}, "CommonLearnStrings.learnLabel": {"type": "string"}, "CommonLearnStrings.libraryLabel": {"... | {"CommonLearnStrings.dontShowThisAgainLabel" : "N\u00e3o mostrar novamente", "CommonLearnStrings.exploreResources" : "Explorar conte\u00fados", "CommonLearnStrings.learnLabel" : "Aprender", "CommonLearnStrings.libraryLabel" : "Biblioteca", "CommonLearnStrings.logo" : "Do canal {channelTitle}", "CommonLearnStrings.markR... | json_instruct | {"type": "object", "properties": {"CommonLearnStrings.dontShowThisAgainLabel": {"type": "string"}, "CommonLearnStrings.exploreResources": {"type": "string"}, "CommonLearnStrings.learnLabel": {"type": "string"}, "CommonLearnStrings.libraryLabel": {"type": "string"}, "CommonLearnStrings.logo": {"type": "string"}, "Common... |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "description": {"type": "string"}, "user": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "email": {"type": "str... | {"id" : 118872, "name" : "Style Lysandre Amor Doce - BeccaMalik", "description" : "Style para Amor Doce do Lysandre. By: BeccaMalik", "user" : {"id" : 299337, "name" : "Hally Revolts", "email" : "redacted", "paypal_email" : null, "homepage" : null, "about" : null, "license" : null}, "updated" : "2015-09-16T22:37:11.00... | 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... |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"name": {"type": "string"}, "css_prefix_text": {"type": "string"}, "css_use_suffix": {"type": "boolean"}, "hinting": {"type": "boolean"}, "units_per_em": {"type": "integer"}, "ascent": {"type": "integer"}, "glyphs": {... | {"name" : "", "css_prefix_text" : "icon-", "css_use_suffix" : false, "hinting" : true, "units_per_em" : 1000, "ascent" : 850, "glyphs" : [{"uid" : "ce5e29aa5208417700e7f7012a236c00", "css" : "undo", "code" : 59392, "src" : "iconic"}, {"uid" : "8d8f4722d16e95290858eaf294d9d830", "css" : "left-thin", "code" : 59393, "src... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "css_prefix_text": {"type": "string"}, "css_use_suffix": {"type": "boolean"}, "hinting": {"type": "boolean"}, "units_per_em": {"type": "integer"}, "ascent": {"type": "integer"}, "glyphs": {"type": "array", "items": {"type": "object", "properties": {"uid": {"... |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "license": {"type": "null"}, "starNum": {"type": "integer"}, "folkNum": {"type": "integer"}, "watchNum": {"type": "integer"}, "topic": {"type": "a... | {"name" : "EC-Spider", "description" : "Obsolete \u5df2\u5e9f\u5f03. ", "license" : null, "starNum" : 94, "folkNum" : 79, "watchNum" : 94, "topic" : []} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "license": {"type": "null"}, "starNum": {"type": "integer"}, "folkNum": {"type": "integer"}, "watchNum": {"type": "integer"}, "topic": {"type": "array", "items": {}}}, "required": ["name", "description", "license", "starNum... |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"id": {"type": "integer"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"src:alt_label": {"type": "string"}, "src:geom": {"type": "string"}, "wof:geomhash": {"type": "string"}, "wof:i... | {"id" : 404378617, "type" : "Feature", "properties" : {"src:alt_label" : "quattroshapes", "src:geom" : "quattroshapes", "wof:geomhash" : "96b09d0617352c979576e8f2e4f33979", "wof:id" : 404378617, "wof:repo" : "whosonfirst-data-admin-fr"}, "bbox" : [-1.40329425534713, 43.61385131547811, -1.32959540914553, 43.654302889567... | json_instruct | {"type": "object", "properties": {"id": {"type": "integer"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"src:alt_label": {"type": "string"}, "src:geom": {"type": "string"}, "wof:geomhash": {"type": "string"}, "wof:id": {"type": "integer"}, "wof:repo": {"type": "string"}}, "required": ["... |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "summary": {"type": "string"}, "description": {"type": "string"}, "homepage": {"type": "string"}, "screenshots": {"type": "array", "items": {"type": "string"}}, "license"... | {"name" : "PeekView", "version" : "1.1.3", "summary" : "PeekView supports peek, pop and preview actions for iOS devices without 3D Touch capibility", "description" : "When implementing peek, pop and preview actions with 3D Touch, you may want to support such features for users accessing your app from older devices that... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "summary": {"type": "string"}, "description": {"type": "string"}, "homepage": {"type": "string"}, "screenshots": {"type": "array", "items": {"type": "string"}}, "license": {"type": "object", "properties": {"type": {"type": "str... |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"line_cd": {"type": "integer"}, "line_name": {"type": "string"}, "line_lon": {"type": "number"}, "line_lat": {"type": "number"}, "line_zoom": {"type": "integer"}, "station_l": {"type": "array", "items": {"type... | {"line_cd" : 26008, "line_name" : "\u6771\u6025\u3053\u3069\u3082\u306e\u56fd\u7dda", "line_lon" : 139.48785908992, "line_lat" : 35.548109757537, "line_zoom" : 14, "station_l" : [{"station_cd" : 2600801, "station_g_cd" : 1130609, "station_name" : "\u9577\u6d25\u7530", "lon" : 139.493548, "lat" : 35.53196}, {"station_cd... | json_instruct | {"type": "object", "properties": {"line_cd": {"type": "integer"}, "line_name": {"type": "string"}, "line_lon": {"type": "number"}, "line_lat": {"type": "number"}, "line_zoom": {"type": "integer"}, "station_l": {"type": "array", "items": {"type": "object", "properties": {"station_cd": {"type": "integer"}, "station_g_cd"... |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "bin": {"type": "object", "properties": {"lau... | {"name" : "script-launcher", "version" : "1.36.1", "description" : "Enhance your package.json scripts with features like: menus, functions, arrays, concurrency and many more.", "main" : "launch.js", "keywords" : ["npm", "script", "scripts", "shell", "build", "environment", "windows", "concurrent", "parallel", "array", ... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "bin": {"type": "object", "properties": {"launch": {"type": "string"}}, "required": ["launch"]}, "reposi... |
Generate sample JSON data that conforms to the following schema definition:
{"type": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [[6, 1, 7, 2], [10, 3, 11, 4], [11, 17, 12, 16], [7, 20, 8, 21], [19, 8, 20, 9], [21, 15, 22, 14], [15, 19, 16, 22], [13, 5, 14, 18], [17, 13, 18, 12], [2, 5, 3, 6], [4, 9, 1, 10]] | 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": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"}
| ["orange", "apple", "grape", "kiwi", "strawberry", "plum", "banana"] | 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": {"status": {"type": "integer"}, "startTimes": {"type": "array", "items": {"type": "integer"}}, "objectiveValue": {"type": "number"}, "solverRuntimeInMilliseconds": {"type": "integer"}, "optional": {"type": "object", "properties"... | {"status" : 1, "startTimes" : [13, 79, 56, 29, 37, 134, 88, 64, 105, 118], "objectiveValue" : 283.0, "solverRuntimeInMilliseconds" : 2094, "optional" : {}} | json_instruct | {"type": "object", "properties": {"status": {"type": "integer"}, "startTimes": {"type": "array", "items": {"type": "integer"}}, "objectiveValue": {"type": "number"}, "solverRuntimeInMilliseconds": {"type": "integer"}, "optional": {"type": "object", "properties": {}, "required": []}}, "required": ["status", "startTimes"... |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"changelog": {"type": "string"}, "test": {"t... | {"name" : "hapi-joier", "version" : "1.1.0", "description" : "Better 400 error messages for Hapi responses", "main" : "index.js", "scripts" : {"changelog" : "./node_modules/.bin/conventional-changelog -i changelog.md --overwrite", "test" : "./node_modules/.bin/mocha --bdd --bail test/**/*-test.js", "travis" : "./node_m... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"changelog": {"type": "string"}, "test": {"type": "string"}, "travis": {"type": "string"}}, "required": ["changelog", "... |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {"type": "integer"}}, "productReviews": {"type": "array", "items": {"type": "object", "properties": {"prod... | {"userId" : 75607, "cartId" : "1a29f71f-d468-4002-bbd7-51f230eb5a34", "preferredProducts" : [4734, 3408, 2258, 1469, 1705, 4773, 4366, 349, 3349, 1213], "productReviews" : [{"productId" : 4750, "reviewText" : "heard about this on compas radio, decided to give it a try.", "reviewDate" : "2018-03-30T04:04:43.6459113+03:0... | 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... |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["t... | {"name" : "dd", "version" : "1.0.0", "description" : "", "main" : "gulpfile.babel.js", "scripts" : {"test" : "echo \"Error: no test specified\" && exit 1"}, "author" : "", "license" : "ISC", "devDependencies" : {"babel-core" : "^6.18.2", "babel-preset-es2015" : "^6.18.0", "babel-register" : "^6.18.0", "browser-sync" : ... | 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"]}, "author": {"type": "string"}, "license": {"type": "string"}, "devDe... |
Based on the schema below, produce a valid JSON object:
{"type": "array", "items": {"type": "object", "properties": {"apartDong": {"type": "string"}, "apartName": {"type": "string"}, "dealDay": {"type": "string"}, "apartAddress": {"type": "string"}, "dealYear": {"type": "string"}, "cancelYN": {"type": "string"}, "deal... | [{"apartDong" : "\uccad\ub77c\ub3d9", "apartName" : "\uccad\ub77c\uc81c\uc77c\ud48d\uacbd\ucc44", "dealDay" : "11", "apartAddress" : "115-1", "dealYear" : "2021", "cancelYN" : "N", "dealFloor" : "11", "apartCreatedYear" : "2012", "dealUpdated" : "2021-09-22", "apartSize" : "115.9895", "apartCityCode" : "28260", "id" : ... | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"apartDong": {"type": "string"}, "apartName": {"type": "string"}, "dealDay": {"type": "string"}, "apartAddress": {"type": "string"}, "dealYear": {"type": "string"}, "cancelYN": {"type": "string"}, "dealFloor": {"type": "string"}, "apartCreatedYear": {"type": ... |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"title": {"type": "string"}, "fields": {"type": "array", "items": {"type": "string"}}, "abstract": {"type": "string"}, "citation": {"type": "string"}, "departments": {"type": "array", "items": {"type": "string"}}, "a... | {"title" : "Type-and-example-directed program synthesis.", "fields" : ["algebraic number", "recursion", "exploit", "program synthesis", "type theory"], "abstract" : "This paper presents an algorithm for synthesizing recursive functions that process algebraic datatypes. It is founded on proof-theoretic techniques that e... | json_instruct | {"type": "object", "properties": {"title": {"type": "string"}, "fields": {"type": "array", "items": {"type": "string"}}, "abstract": {"type": "string"}, "citation": {"type": "string"}, "departments": {"type": "array", "items": {"type": "string"}}, "authors": {"type": "array", "items": {"type": "string"}}, "conf": {"typ... |
Generate a valid JSON object that conforms to the following schema:
{"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"}
| ["memberof"] | json_instruct | {"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "sites": {"type": "array", "items": {"type": "object", "properties": {"site": {"type": "string"}, "id": {"type": "string"}, "sort": {"type": "integer"}}, "re... | {"id" : "47726", "name" : "\u30c8\u30ef\u30ce\u30af\u30aa\u30f3 \u7b2c\u4e09\u7ae0 \u5922\u5e7b\u306e\u9023\u5ea7", "sites" : [{"site" : "bilibili", "id" : "4472", "sort" : 6}], "eps" : [{"id" : 258124, "sort" : 3, "name" : "\u30c8\u30ef\u30ce\u30af\u30aa\u30f3 \u7b2c\u4e09\u7ae0 \u5922\u5e7b\u306e\u9023\u5ea7", "sites... | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "sites": {"type": "array", "items": {"type": "object", "properties": {"site": {"type": "string"}, "id": {"type": "string"}, "sort": {"type": "integer"}}, "required": ["site", "id", "sort"]}}, "eps": {"type": "array", "items": {"type... |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"id": {"type": "integer"}, "info": {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "additionalInfo": {"type": "null"}, "format": {"type": "string"}, "category": {"type": "stri... | {"id" : 116847, "info" : {"name" : "Slaent - Classic theme, white", "description" : "Sorry reilo :3", "additionalInfo" : null, "format" : "uso", "category" : "slaent", "createdAt" : "2015-07-24T15:50:14.000Z", "updatedAt" : "2015-07-24T15:50:14.000Z", "license" : "CC-BY-4.0", "author" : {"id" : 294903, "name" : "il mea... | json_instruct | {"type": "object", "properties": {"id": {"type": "integer"}, "info": {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "additionalInfo": {"type": "null"}, "format": {"type": "string"}, "category": {"type": "string"}, "createdAt": {"type": "string"}, "updatedAt": {"type": "... |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"city": {"type": "object", "properties": {"name": {"type": "string"}, "state": {"type": "string"}}, "required": ["name", "state"]}, "borders": {"type": "array", "items": {"type": "array", "items": {"type": "object", "properties... | {"city" : {"name" : "VIEIR\u00d3POLIS", "state" : "PB"}, "borders" : [[{"lat" : -6.483947764677566, "lng" : -38.2271195221482}, {"lat" : -6.554655581889563, "lng" : -38.19543203486046}, {"lat" : -6.55366332030593, "lng" : -38.209564636198934}, {"lat" : -6.580386260317596, "lng" : -38.224535706057964}, {"lat" : -6.59779... | json_instruct | {"type": "object", "properties": {"city": {"type": "object", "properties": {"name": {"type": "string"}, "state": {"type": "string"}}, "required": ["name", "state"]}, "borders": {"type": "array", "items": {"type": "array", "items": {"type": "object", "properties": {"lat": {"type": "number"}, "lng": {"type": "number"}}, ... |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"image": {"type": "string"}, "position": {"type": "array", "items": {"type": "integer"}}, "scale": {"type": "integer"}, "idle_anim": {"type": "string"}, "confirm_anim": {"type": "string"}}, "required": ["image", "position", ... | {"image" : "Menu_Mario", "position" : [0, -100], "scale" : 1, "idle_anim" : "Mario menu asset", "confirm_anim" : "Mario menu asset"} | json_instruct | {"type": "object", "properties": {"image": {"type": "string"}, "position": {"type": "array", "items": {"type": "integer"}}, "scale": {"type": "integer"}, "idle_anim": {"type": "string"}, "confirm_anim": {"type": "string"}}, "required": ["image", "position", "scale", "idle_anim", "confirm_anim"], "$schema": "http://json... |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"nom": {"type": "string"}, "circ": {"type": "string"}, "dpt": {"type": "string"}, "inscrits": {"type": "integer"}, "abs": {"type": "integer"}, "votants": {"type": "integer"}, "blancs": {"type": "integer"}, "nuls": {"... | {"nom" : "Commelle-Vernay", "circ" : "5\u00e8me circonscription", "dpt" : "Loire", "inscrits" : 2259, "abs" : 1207, "votants" : 1052, "blancs" : 72, "nuls" : 28, "exp" : 952, "res" : [{"nuance" : "MDM", "nom" : "Mme Nathalie SARLES", "voix" : 560}, {"nuance" : "LR", "nom" : "Mme Clotilde ROBIN", "voix" : 392}]} | json_instruct | {"type": "object", "properties": {"nom": {"type": "string"}, "circ": {"type": "string"}, "dpt": {"type": "string"}, "inscrits": {"type": "integer"}, "abs": {"type": "integer"}, "votants": {"type": "integer"}, "blancs": {"type": "integer"}, "nuls": {"type": "integer"}, "exp": {"type": "integer"}, "res": {"type": "array"... |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"IsRecentlyVerified": {"type": "boolean"}, "ID": {"type": "integer"}, "UUID": {"type": "string"}, "DataProviderID": {"type": "integer"}, "OperatorID": {"type": "integer"}, "UsageTypeID": {"type": "integer"}, "Addre... | {"IsRecentlyVerified" : false, "ID" : 97265, "UUID" : "94F9EB3D-BC50-49B9-AFAA-78AD52AD0BDB", "DataProviderID" : 1, "OperatorID" : 1, "UsageTypeID" : 4, "AddressInfo" : {"ID" : 97611, "Title" : "Taco Station", "AddressLine1" : "TF-28", "Town" : "San Crist\u00f3bal de La Laguna", "StateOrProvince" : "Santa Cruz de Tener... | json_instruct | {"type": "object", "properties": {"IsRecentlyVerified": {"type": "boolean"}, "ID": {"type": "integer"}, "UUID": {"type": "string"}, "DataProviderID": {"type": "integer"}, "OperatorID": {"type": "integer"}, "UsageTypeID": {"type": "integer"}, "AddressInfo": {"type": "object", "properties": {"ID": {"type": "integer"}, "T... |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "type": {"type": "string"}, "license": {"type": "array", "items": {"type": "string"}}, "require": {"type": "object", "properties": {"php": {"type": "string"}, "nett... | {"name" : "nette/web-project", "description" : "Nette: Standard Web Project", "type" : "project", "license" : ["MIT", "BSD-3-Clause", "GPL-2.0", "GPL-3.0"], "require" : {"php" : ">= 5.3", "nette/application" : "^2.3.6", "nette/bootstrap" : "^2.3", "nette/caching" : "^2.3", "nette/database" : "^2.3", "nette/di" : "^2.3"... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "type": {"type": "string"}, "license": {"type": "array", "items": {"type": "string"}}, "require": {"type": "object", "properties": {"php": {"type": "string"}, "nette/application": {"type": "string"}, "nette/bootstrap": {"ty... |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"username": {"type": "string"}, "accessKey": {"type": "string"}}, "required": ["username", "accessKey"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"username" : "yourSauceUsername", "accessKey" : "yourSauceAccessKey"} | json_instruct | {"type": "object", "properties": {"username": {"type": "string"}, "accessKey": {"type": "string"}}, "required": ["username", "accessKey"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"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", "r... | {"solution_size" : 2757, "ok" : true, "resemblance" : 0.936515, "problem_id" : 3708, "solution_spec_hash" : "8013ff5e2c4e3b8ab293ab756eccb9580b85bced"} | 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": {"\u5de5\u5ee0\u540d\u7a31": {"type": "string"}, "\u5de5\u5ee0\u767b\u8a18\u7de8\u865f": {"type": "string"}, "\u5de5\u5ee0\u8a2d\u7acb\u8a31\u53ef\u6848\u865f": {"type": "string"}, "\u5de5\u5ee0\u5730\u5740": {"type"... | {"\u5de5\u5ee0\u540d\u7a31" : "\u5b8f\u806f\u5de5\u696d\u793e", "\u5de5\u5ee0\u767b\u8a18\u7de8\u865f" : "99651016", "\u5de5\u5ee0\u8a2d\u7acb\u8a31\u53ef\u6848\u865f" : "", "\u5de5\u5ee0\u5730\u5740" : "\u5f70\u5316\u7e23\u548c\u7f8e\u93ae\u7cd6\u53cb\u91cc\u6771\u840a\u8def\uff11\uff15\uff11\u5df7\uff13\uff16\u865f",... | json_instruct | {"type": "object", "properties": {"\u5de5\u5ee0\u540d\u7a31": {"type": "string"}, "\u5de5\u5ee0\u767b\u8a18\u7de8\u865f": {"type": "string"}, "\u5de5\u5ee0\u8a2d\u7acb\u8a31\u53ef\u6848\u865f": {"type": "string"}, "\u5de5\u5ee0\u5730\u5740": {"type": "string"}, "\u5de5\u5ee0\u5e02\u93ae\u9109\u6751\u91cc": {"type": "st... |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"moniker": {"type": "string"}, "valopr_address": {"type": "string"}, "addedPeer": {"type": "string"}}, "required": ["moniker", "valopr_address", "addedPeer"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"moniker" : "Money", "valopr_address" : "cohovaloper1wnhjkqkvy8yj7uwnphukcllg9f64ahcdpxhe7e", "addedPeer" : "D106DA60F02FEF288DAA4E86FD8CEA98BE34EF612E451A26C910C44D601429FD"} | json_instruct | {"type": "object", "properties": {"moniker": {"type": "string"}, "valopr_address": {"type": "string"}, "addedPeer": {"type": "string"}}, "required": ["moniker", "valopr_address", "addedPeer"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"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": ... | {"n_dim" : 2, "n_trials" : 340, "objective" : "rastrigin_on_cube", "white" : "optuna_random_clone", "black" : "platypus_nsgaii", "traceback" : ["passing", "passing"], "best_val" : [0.42443674682955207, 0.5455700178095029], "best_x" : [[0.5240883899562652, 0.539282323861773], [0.5401973319127735, 0.6323956437481112]], "... | 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": {... |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"BarSlide": {"type": "array", "items": {"type": "string"}}}, "required": ["BarSlide"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"BarSlide" : ["TheWestern", "FlairBartending", "WipeTheFloorWithYou", "BarBrawl", "MundaneMadeAwesome", "HomageShot", "MundaneMadeAwesome", "HomageShot", "GreasySpoon", "TheWestern", "FrothyMugsOfWater", "TheIllegal", "EpicFail", "SunglassesAtNight", "OhCrap", "MiniGame", "WildWest", "FrothyMugsOfWater", "ImprovisedWe... | json_instruct | {"type": "object", "properties": {"BarSlide": {"type": "array", "items": {"type": "string"}}}, "required": ["BarSlide"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"name": {"type": "string"}, "private": {"type": "boolean"}, "version": {"type": "string"}, "description": {"type": "string"}, "author": {"type": "string"}, "license": {"type": "string"}, "scripts": {"type": "object"... | {"name" : "bound-sensor-base", "private" : true, "version" : "1.0.7", "description" : "Find out once element size changes", "author" : "aminpaks <amin.pakseresht@hotmail.com>", "license" : "MIT", "scripts" : {"bootstrap" : "lerna bootstrap", "postinstall" : "npm run bootstrap", "clean" : "lerna run clean", "build" : "l... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "private": {"type": "boolean"}, "version": {"type": "string"}, "description": {"type": "string"}, "author": {"type": "string"}, "license": {"type": "string"}, "scripts": {"type": "object", "properties": {"bootstrap": {"type": "string"}, "postinstall": {"type... |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"Id": {"type": "string"}, "ProductId": {"type": "string"}, "UserId": {"type": "string"}, "ProfileName": {"type": "string"}, "HelpfulnessNumerator": {"type": "integer"}, "HelpfulnessDenominator": {"type": "integer"}, "Score": {"... | {"Id" : "110741", "ProductId" : "P1000-04", "UserId" : "A2BZ4HSRBB5V6A", "ProfileName" : "Michael", "HelpfulnessNumerator" : 1, "HelpfulnessDenominator" : 1, "Score" : 5, "Time" : "1327622400", "Summary" : "This coffee has saved me more than once", "text" : "Recently at work, we've been looking to cut costs and save mo... | json_instruct | {"type": "object", "properties": {"Id": {"type": "string"}, "ProductId": {"type": "string"}, "UserId": {"type": "string"}, "ProfileName": {"type": "string"}, "HelpfulnessNumerator": {"type": "integer"}, "HelpfulnessDenominator": {"type": "integer"}, "Score": {"type": "integer"}, "Time": {"type": "string"}, "Summary": {... |
Based on the schema below, produce a valid JSON object:
{"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"}
| ["Graduate", "Prof Dev Nontrans Credit", "Undergraduate"] | 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": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "files": {"type": "array", "items": {"type": "string"}}, "scripts": {"type": "object", "properties": {"cr... | {"name" : "lambdaDynamoDbDemo", "version" : "1.0.0", "description" : "A demo of using DynamoDb from Lambda for a blog post. ", "main" : "index.js", "files" : ["*.js"], "scripts" : {"create" : "claudia create --name lambdaDynamoDbDemo --region us-west-2 --api-module index --policies policies", "deploy" : "claudia updat... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "files": {"type": "array", "items": {"type": "string"}}, "scripts": {"type": "object", "properties": {"create": {"type": "string"}, "deploy": {"type": "string"}, "t... |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"900667257": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900667258": {"type": "object", "properties": {"nama": {"type... | {"900667257" : {"nama" : "TPS 1", "dapil" : [6201, 16203, 2620104]}, "900667258" : {"nama" : "TPS 2", "dapil" : [6201, 16203, 2620104]}, "900667259" : {"nama" : "TPS 3", "dapil" : [6201, 16203, 2620104]}, "900667260" : {"nama" : "TPS 4", "dapil" : [6201, 16203, 2620104]}, "900667261" : {"nama" : "TPS 5", "dapil" : [620... | json_instruct | {"type": "object", "properties": {"900667257": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900667258": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": ... |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "private": {"type": "boolean"}, "scripts": {"type": "object", "properties": {"serve": {"type": "string"}, "build": {"type": "string"}, "lint": {"type": "string"}, "dock... | {"name" : "client", "version" : "0.1.0", "private" : true, "scripts" : {"serve" : "vue-cli-service serve", "build" : "vue-cli-service build", "lint" : "vue-cli-service lint", "docker-build" : "docker build -t leads2b-test/client .", "docker-run" : "docker run -it -dp 8080:80 --rm --name leads2b-test-client-1 leads2b-te... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "private": {"type": "boolean"}, "scripts": {"type": "object", "properties": {"serve": {"type": "string"}, "build": {"type": "string"}, "lint": {"type": "string"}, "docker-build": {"type": "string"}, "docker-run": {"type": "stri... |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"name": {"type": "string"}, "author": {"type": "string"}, "description": {"type": "string"}, "version": {"type": "string"}, "homepage": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "strin... | {"name" : "opmlparser", "author" : "Dan MacTough <danmactough@gmail.com>", "description" : "OPML parsing using sax js", "version" : "0.8.0", "homepage" : "http://github.com/danmactough/node-opmlparser", "repository" : {"type" : "git", "url" : "git://github.com/danmactough/node-opmlparser.git"}, "bugs" : {"url" : "http:... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "author": {"type": "string"}, "description": {"type": "string"}, "version": {"type": "string"}, "homepage": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"... |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"name": {"type": "string"}, "dependencies": {"type": "object", "properties": {"nightmare": {"type": "string"}, "nightmare-inline-download": {"type": "string"}, "xvfb-maybe": {"type": "string"}}, "required": ["nightmar... | {"name" : "sitemaster", "dependencies" : {"nightmare" : "^2.9.1", "nightmare-inline-download" : "^0.2.2", "xvfb-maybe" : "^0.1.3"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "dependencies": {"type": "object", "properties": {"nightmare": {"type": "string"}, "nightmare-inline-download": {"type": "string"}, "xvfb-maybe": {"type": "string"}}, "required": ["nightmare", "nightmare-inline-download", "xvfb-maybe"]}}, "required": ["name"... |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"name": {"type": "string"}, "homeassistant": {"type": "string"}, "persistent_directory": {"type": "string"}, "render_readme": {"type": "boolean"}}, "required": ["name", "homeassistant", "persistent_directory",... | {"name" : "Smart Climate", "homeassistant" : "0.115", "persistent_directory" : "codes", "render_readme" : true} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "homeassistant": {"type": "string"}, "persistent_directory": {"type": "string"}, "render_readme": {"type": "boolean"}}, "required": ["name", "homeassistant", "persistent_directory", "render_readme"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "array", "items": {"type": "object", "properties": {"merged": {"type": "string"}, "source": {"type": "string"}}, "required": ["merged", "source"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"merged" : "/home/nhl/Gitstuff/doggo-checker/android/gradleBuild/intermediates/res/merged/debug/layout/activity_camera.xml", "source" : "/home/nhl/Gitstuff/doggo-checker/android/res/layout/activity_camera.xml"}, {"merged" : "/home/nhl/Gitstuff/doggo-checker/android/gradleBuild/intermediates/res/merged/debug/layout/ca... | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"merged": {"type": "string"}, "source": {"type": "string"}}, "required": ["merged", "source"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"nodes": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "value": {"type": "number"}, "category": {"type": "integer"}}, "required": ["name", "value", "category"]}}, "link... | {"nodes" : [{"name" : "\u6b27\u6d3e\u5bb6\u5c45\u96c6\u56e2\u80a1\u4efd\u6709\u9650\u516c\u53f8", "value" : 12466166637.62, "category" : 1173}, {"name" : "\u59da\u826f\u67cf", "value" : 2139.83, "category" : 1173}], "links" : [{"source" : "\u6b27\u6d3e\u5bb6\u5c45\u96c6\u56e2\u80a1\u4efd\u6709\u9650\u516c\u53f8", "targ... | json_instruct | {"type": "object", "properties": {"nodes": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "value": {"type": "number"}, "category": {"type": "integer"}}, "required": ["name", "value", "category"]}}, "links": {"type": "array", "items": {"type": "object", "properties": {"source": ... |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"device_automation": {"type": "object", "properties": {"trigger_type": {"type": "object", "properties": {"turned_off": {"type": "string"}, "turned_on": {"type": "string"}}, "required": ["turned_off", "turned_on"... | {"device_automation" : {"trigger_type" : {"turned_off" : "{entity_name} slukket", "turned_on" : "{entity_name} t\u00e6ndt"}}} | json_instruct | {"type": "object", "properties": {"device_automation": {"type": "object", "properties": {"trigger_type": {"type": "object", "properties": {"turned_off": {"type": "string"}, "turned_on": {"type": "string"}}, "required": ["turned_off", "turned_on"]}}, "required": ["trigger_type"]}}, "required": ["device_automation"], "$s... |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"vendor": {"type": "string"}, "filename": {"type": "string"}, "release_type": {"type": "string"}, "version": {"type": "string"}, "java_version": {"type": "string"}, "jvm_impl": {"type": "string"}, "os": {"type... | {"vendor" : "liberica", "filename" : "bellsoft-jre15+36-linux-i586.deb", "release_type" : "ga", "version" : "15+36", "java_version" : "15+36", "jvm_impl" : "hotspot", "os" : "linux", "architecture" : "i686", "file_type" : "deb", "image_type" : "jre", "features" : [], "url" : "https://github.com/bell-sw/Liberica/release... | json_instruct | {"type": "object", "properties": {"vendor": {"type": "string"}, "filename": {"type": "string"}, "release_type": {"type": "string"}, "version": {"type": "string"}, "java_version": {"type": "string"}, "jvm_impl": {"type": "string"}, "os": {"type": "string"}, "architecture": {"type": "string"}, "file_type": {"type": "stri... |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"id": {"type": "string"}, "symbol": {"type": "string"}, "name": {"type": "string"}, "platforms": {"type": "object", "properties": {}, "required": []}, "hashing_algorithm": {"type": "string"}, "categories": {"type": "array", "item... | {"id" : "connect-business-network", "symbol" : "cbn", "name" : "Connect Business Network", "platforms" : {}, "hashing_algorithm" : "Quark", "categories" : [], "description" : {"en" : "Connect Business Network is a secure network for payments worldwide. Network security is based on the development of artificial intellig... | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "symbol": {"type": "string"}, "name": {"type": "string"}, "platforms": {"type": "object", "properties": {}, "required": []}, "hashing_algorithm": {"type": "string"}, "categories": {"type": "array", "items": {}}, "description": {"type": "object", "properties": ... |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"classifiers": {"type": "array", "items": {"type": "string"}}, "extensions": {"type": "object", "properties": {"python.details": {"type": "object", "properties": {"contacts": {"type": "array", "items": {"type": "obje... | {"classifiers" : ["Intended Audience :: Developers", "Intended Audience :: End Users/Desktop", "Operating System :: OS Independent", "Programming Language :: Python", "Programming Language :: Python :: 3", "Topic :: Text Processing :: Fonts"], "extensions" : {"python.details" : {"contacts" : [{"email" : "brecht@mos6581... | json_instruct | {"type": "object", "properties": {"classifiers": {"type": "array", "items": {"type": "string"}}, "extensions": {"type": "object", "properties": {"python.details": {"type": "object", "properties": {"contacts": {"type": "array", "items": {"type": "object", "properties": {"email": {"type": "string"}, "name": {"type": "str... |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"config": {"type": "object", "properties": {"abort": {"type": "object", "properties": {"already_configured": {"type": "string"}, "no_serial_ports": {"type": "string"}}, "required": ["already_configured", "no_serial_... | {"config" : {"abort" : {"already_configured" : "\u88dd\u7f6e\u5df2\u7d93\u8a2d\u5b9a\u5b8c\u6210", "no_serial_ports" : "\u627e\u4e0d\u5230\u901a\u8a0a\u57e0\u3002\u9700\u8981\u6709\u6548\u7684 RS485 \u88dd\u7f6e\u9032\u884c\u901a\u8a0a\u3002"}, "error" : {"cannot_connect" : "\u7121\u6cd5\u9023\u63a5\uff0c\u8acb\u6aa2\u... | json_instruct | {"type": "object", "properties": {"config": {"type": "object", "properties": {"abort": {"type": "object", "properties": {"already_configured": {"type": "string"}, "no_serial_ports": {"type": "string"}}, "required": ["already_configured", "no_serial_ports"]}, "error": {"type": "object", "properties": {"cannot_connect": ... |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"author": {"type": "string"}, "homepage": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "licenses": {... | {"author" : "Andrew Nesbitt <andrewnez@gmail.com> (http://andrew.github.com)", "homepage" : "https://github.com/andrew/node-gps", "keywords" : ["gps", "nodecopter", "nmea"], "bugs" : {"url" : "https://github.com/andrew/node-gps/issues"}, "licenses" : [{"type" : "MIT", "url" : "https://github.com/andrew/node-gps/blob/ma... | json_instruct | {"type": "object", "properties": {"author": {"type": "string"}, "homepage": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "licenses": {"type": "array", "items": {"type": "object", "properties": ... |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"inferno-test-utils.js": {"type": "string"}, "inferno-test-utils.min.js": {"type": "string"}}, "required": ["inferno-test-utils.js", "inferno-test-utils.min.js"], "$schema": "http://json-schema.org/draft-07/sc... | {"inferno-test-utils.js" : "sha512-igg61XfijGtNFOK88P2CtidfZpbls5RvMu1VIDzZ0gNwN6dZZYiVW7Yhmk/PPo0i66V0sxMSYvkVqLsWmDvsdQ==", "inferno-test-utils.min.js" : "sha512-Oz8vuN6zJ0sw7WaXDv7bF3CFTriLe+AT93+R0e0Aut6kwStjJ/akLdKl3o//V4pj0TQwdjWkAnYnQGVHu0zMNQ=="} | json_instruct | {"type": "object", "properties": {"inferno-test-utils.js": {"type": "string"}, "inferno-test-utils.min.js": {"type": "string"}}, "required": ["inferno-test-utils.js", "inferno-test-utils.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"itemid": {"type": "string"}, "displayname": {"type": "string"}, "nbttag": {"type": "string"}, "damage": {"type": "integer"}, "lore": {"type": "array", "items": {"type": "string"}}, "internalname": {"type": "string"}, "crafttex... | {"itemid" : "minecraft:gold_nugget", "displayname" : "\u00a7f\u00a7eShiny Yellow Rock", "nbttag" : "{ench:[],HideFlags:254,display:{Lore:[0:\"\u00a77Grants a 1 in\",1:\"\u00a771,000,000,000,000 chance to\",2:\"\u00a77deal \u00a7c+100% \u00a77damage.\",3:\"\",4:\"\u00a77\u00a78True love is tough to find,\",5:\"\u00a78bu... | json_instruct | {"type": "object", "properties": {"itemid": {"type": "string"}, "displayname": {"type": "string"}, "nbttag": {"type": "string"}, "damage": {"type": "integer"}, "lore": {"type": "array", "items": {"type": "string"}}, "internalname": {"type": "string"}, "crafttext": {"type": "string"}, "clickcommand": {"type": "string"},... |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "summary": {"type": "string"}, "description": {"type": "string"}, "homepage": {"type": "string"}, "screenshots": {"type": "array", "items": {"type": "string"}... | {"name" : "XNLogger", "version" : "2.2.1", "summary" : "Network Logger - Framework to log network traffics", "description" : "XNLogger is simple and extensible network traffic logger. It makes easy to log network request and response on file, Xcode console or send log to servers. It provides user friendly UI for debugg... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "summary": {"type": "string"}, "description": {"type": "string"}, "homepage": {"type": "string"}, "screenshots": {"type": "array", "items": {"type": "string"}}, "license": {"type": "object", "properties": {"type": {"type": "str... |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"track": {"type": "string"}, "exercise": {"type": "string"}, "id": {"type": "string"}, "url": {"type": "string"}, "handle": {"type": "string"}, "is_requester": {"type": "boolean"}, "auto_approve": {"type": "boolean"}... | {"track" : "python", "exercise" : "armstrong-numbers", "id" : "2954220e592c4dcfbcad9c4f4d625d44", "url" : "https://exercism.io/my/solutions/2954220e592c4dcfbcad9c4f4d625d44", "handle" : "ropable", "is_requester" : true, "auto_approve" : false} | json_instruct | {"type": "object", "properties": {"track": {"type": "string"}, "exercise": {"type": "string"}, "id": {"type": "string"}, "url": {"type": "string"}, "handle": {"type": "string"}, "is_requester": {"type": "boolean"}, "auto_approve": {"type": "boolean"}}, "required": ["track", "exercise", "id", "url", "handle", "is_reques... |
Following the schema specification below, generate a valid 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"}... | {"body" : "", "user" : "j-woz", "url" : "https://api.github.com/repos/spack/spack/issues/23702", "updated_at" : "2021-05-18 18:02:31", "created_at" : "2021-05-17 17:37:38", "closed_at" : "2021-05-18 18:02:31", "state" : "closed", "title" : "Swift/T Release 1.5.0 (PR2)", "number" : 23702, "milestone" : null, "labels" : ... | json_instruct | {"type": "object", "properties": {"body": {"type": "string"}, "user": {"type": "string"}, "url": {"type": "string"}, "updated_at": {"type": "string"}, "created_at": {"type": "string"}, "closed_at": {"type": "string"}, "state": {"type": "string"}, "title": {"type": "string"}, "number": {"type": "integer"}, "milestone": ... |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "build:sass": {"type": "string"}, ... | {"name" : "web-viewer", "version" : "1.0.0", "description" : "", "main" : "index.js", "scripts" : {"test" : "echo \"Error: no test specified\" && exit 1", "build:sass" : "node-sass style/style.scss public/css/compiled.css", "build:sass:watch" : "node-sass -w style/style.scss public/css/compiled.css", "start" : "npm ins... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "build:sass": {"type": "string"}, "build:sass:watch": {"type": "string"}, "start": {"type":... |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"xmin": {"type": "array", "items": {"type": "integer"}}, "xmax": {"type": "array", "items": {"type": "integer"}}, "ymin": {"type": "array", "items": {"type": "integer"}}, "ymax": {"type": "array", "items": {"type": "integer"... | {"xmin" : [1120, 390, 500, 1256, 1211, 1354, 680, 426, 775, 634, 1497, 1417, 1559], "xmax" : [1170, 442, 549, 1306, 1252, 1453, 762, 471, 824, 676, 1538, 1456, 1627], "ymin" : [439, 673, 297, 158, 117, 49, 13, 798, 513, 325, 282, 542, 1118], "ymax" : [516, 714, 371, 224, 179, 98, 69, 862, 606, 379, 327, 577, 1165]} | json_instruct | {"type": "object", "properties": {"xmin": {"type": "array", "items": {"type": "integer"}}, "xmax": {"type": "array", "items": {"type": "integer"}}, "ymin": {"type": "array", "items": {"type": "integer"}}, "ymax": {"type": "array", "items": {"type": "integer"}}}, "required": ["xmin", "xmax", "ymin", "ymax"], "$schema": ... |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"activeSemester": {"type": "string"}, "title": {"type": "string"}, "description": {"type": "string"}, "links": {"type": "array", "items": {"type": "object", "properties": {"label": {"type": "string"}, "url": {"type... | {"activeSemester" : "2018/2", "title" : "Campus Online", "description" : "Laborat\u00f3rio de Jornalismo da UnB", "links" : [{"label" : "facebook", "url" : "https://www.facebook.com/onlinecampus/"}, {"label" : "twitter", "url" : "https://twitter.com/campusitounb"}, {"label" : "instagram", "url" : "https://www.instagram... | json_instruct | {"type": "object", "properties": {"activeSemester": {"type": "string"}, "title": {"type": "string"}, "description": {"type": "string"}, "links": {"type": "array", "items": {"type": "object", "properties": {"label": {"type": "string"}, "url": {"type": "string"}}, "required": ["label", "url"]}}}, "required": ["activeSeme... |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"en": {"type": "object", "properties": {"title": {"type": "string"}}, "required": ["title"]}}, "required": ["en"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"en" : {"title" : "Category"}} | json_instruct | {"type": "object", "properties": {"en": {"type": "object", "properties": {"title": {"type": "string"}}, "required": ["title"]}}, "required": ["en"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"index": {"type": "integer"}, "hash": {"type": "integer"}, "artDyeHash": {"type": "integer"}, "redacted": {"type": "boolean"}, "dyeManifestHash": {"type": "integer"}, "blacklisted": {"type": "boolean"}}, "requ... | {"index" : 10196, "hash" : 1818354696, "artDyeHash" : 1818354696, "redacted" : false, "dyeManifestHash" : 2407663112, "blacklisted" : false} | json_instruct | {"type": "object", "properties": {"index": {"type": "integer"}, "hash": {"type": "integer"}, "artDyeHash": {"type": "integer"}, "redacted": {"type": "boolean"}, "dyeManifestHash": {"type": "integer"}, "blacklisted": {"type": "boolean"}}, "required": ["index", "hash", "artDyeHash", "redacted", "dyeManifestHash", "blackl... |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"model": {"type": "string"}, "pretrained": {"type": "boolean"}, "input_info": {"type": "object", "properties": {"sample_size": {"type": "array", "items": {"type": "integer"}}}, "required": ["sample_size"]}, "batch_... | {"model" : "ResNet50", "pretrained" : true, "input_info" : {"sample_size" : [1, 224, 224, 3]}, "batch_size" : 128, "epochs" : 4, "optimizer" : {"type" : "Adam", "schedule_type" : "piecewise_constant", "schedule_params" : {"boundaries" : [2], "values" : [1e-05, 1e-06]}}, "dataset" : "imagenet2012", "dataset_type" : "tfd... | json_instruct | {"type": "object", "properties": {"model": {"type": "string"}, "pretrained": {"type": "boolean"}, "input_info": {"type": "object", "properties": {"sample_size": {"type": "array", "items": {"type": "integer"}}}, "required": ["sample_size"]}, "batch_size": {"type": "integer"}, "epochs": {"type": "integer"}, "optimizer": ... |
The schema below describes a JSON structure. Generate a valid example:
{"type": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [[1899, 6], [1912, 5], [1913, 6], [1914, 6], [1915, 8], [1916, 10], [1917, 11], [1918, 12], [1919, 10], [1920, 15], [1921, 10], [1922, 16], [1923, 17], [1924, 13], [1925, 13], [1926, 11], [1927, 11], [1928, 10], [1929, 12], [1930, 8], [1931, 7], [1932, 12], [1933, 8], [1935, 7], [1936, 8], [1937, 10], [1938, 7], [1939,... | json_instruct | {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"directions": {"type": "array", "items": {"type": "string"}}, "ingredients": {"type": "array", "items": {"type": "string"}}, "language": {"type": "string"}, "source": {"type": "string"}, "tags": {"type": "array", "i... | {"directions" : ["Place the grated root veggies and onion in a large kitchen towel and wring out any liquid, then add them to a medium bowl.", "Stir in the egg whites. Stir in the flour, salt, and pepper to taste.", "In a large skillet, heat 1/4 cup of the oil over medium-high heat. Use a scant 1/4 cup measure to scoop... | json_instruct | {"type": "object", "properties": {"directions": {"type": "array", "items": {"type": "string"}}, "ingredients": {"type": "array", "items": {"type": "string"}}, "language": {"type": "string"}, "source": {"type": "string"}, "tags": {"type": "array", "items": {"type": "string"}}, "title": {"type": "string"}, "url": {"type"... |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"int": {"type": "integer"}, "rcv": {"type": "integer"}, "send": {"type": "integer"}, "bit_length": {"type": "array", "items": {"type": "integer"}}, "clock": {"type": "array", "items": {"type": "integer"}}, "id": {"typ... | {"int" : 6, "rcv" : 7, "send" : 6, "bit_length" : [3, 9, 12, 15, 37, 39, 42, 57, 59, 62, 65, 68, 96, 103, 106, 109, 115, 118, 130], "clock" : [7, 441, 3087, 21609, 75631500000, 529420500000, 3705943500000, 77824813500000000, 544773694500000000, 3813415861500000000, 26693911030500000000, 186857377213500000000, 446968685... | json_instruct | {"type": "object", "properties": {"int": {"type": "integer"}, "rcv": {"type": "integer"}, "send": {"type": "integer"}, "bit_length": {"type": "array", "items": {"type": "integer"}}, "clock": {"type": "array", "items": {"type": "integer"}}, "id": {"type": "integer"}}, "required": ["int", "rcv", "send", "bit_length", "cl... |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"vehicule": {"type": "array", "items": {"type": "object", "properties": {"localisation": {"type": "object", "properties": {"lat": {"type": "number"}, "lng": {"type": "number"}, "cap": {"type": "integer"}}, "re... | {"vehicule" : [{"localisation" : {"lat" : 35.14256320862518, "lng" : -90.00018405097278, "cap" : 96}, "conduite" : {"idLigne" : 51284, "vitesse" : 12, "destination" : "EXETER RD @ POPLAR AVE", "avanceRetard" : "on time", "arretSuiv" : {"nomCommercial" : "POPLAR @MCLEAN", "estimationTemps" : -1104}}, "id" : 10124, "vehi... | json_instruct | {"type": "object", "properties": {"vehicule": {"type": "array", "items": {"type": "object", "properties": {"localisation": {"type": "object", "properties": {"lat": {"type": "number"}, "lng": {"type": "number"}, "cap": {"type": "integer"}}, "required": ["lat", "lng", "cap"]}, "conduite": {"type": "object", "properties":... |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"routes": {"type": "array", "items": {"type": "object", "properties": {"method": {"type": "string"}, "path": {"type": "string"}, "handler": {"type": "string"}, "config": {"type": "object", "properties": {"policies": {"type": "a... | {"routes" : [{"method" : "GET", "path" : "/car", "handler" : "Car.find", "config" : {"policies" : []}}, {"method" : "GET", "path" : "/car/count", "handler" : "Car.count", "config" : {"policies" : []}}, {"method" : "GET", "path" : "/car/:_id", "handler" : "Car.findOne", "config" : {"policies" : []}}, {"method" : "POST",... | json_instruct | {"type": "object", "properties": {"routes": {"type": "array", "items": {"type": "object", "properties": {"method": {"type": "string"}, "path": {"type": "string"}, "handler": {"type": "string"}, "config": {"type": "object", "properties": {"policies": {"type": "array", "items": {}}}, "required": ["policies"]}}, "required... |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"editor.defaultFormatter": {"type": "string"}, "[javascript]": {"type": "object", "properties": {"editor.defaultFormatter": {"type": "string"}}, "required": ["editor.defaultFormatter"]}, "cSpell.words": {"type": "array", "items":... | {"editor.defaultFormatter" : "esbenp.prettier-vscode", "[javascript]" : {"editor.defaultFormatter" : "esbenp.prettier-vscode"}, "cSpell.words" : ["Dangi", "svgr", "todos"]} | json_instruct | {"type": "object", "properties": {"editor.defaultFormatter": {"type": "string"}, "[javascript]": {"type": "object", "properties": {"editor.defaultFormatter": {"type": "string"}}, "required": ["editor.defaultFormatter"]}, "cSpell.words": {"type": "array", "items": {"type": "string"}}}, "required": ["editor.defaultFormat... |
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"], "meta" : {"description" : "zest.releaser plugin to enter from the command-line the destination of the upload", "homepage" : "https://github.com/codesyntax/cs.zestreleaser.upload", "license" : "GPL"}, "versions" : {"1.0" : {"sha256" : "1f812b26321c4d918d196a979782b2bb7d9108a27fd09935f2d9b255... | 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... |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "repository": {"type": "string"}, "author": {"type": "string"}, "license": {"type": "string"... | {"name" : "fetch-retryable", "version" : "1.1.2", "description" : "Simple wrapper around fetch to enable custom retry behaviour based on statusCode", "main" : "index.js", "repository" : "git@github.com:astalwick/fetch-retryable.git", "author" : "astalwick <arlen@nsono.net>", "license" : "MIT", "dependencies" : {"isomor... | 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": {"isomorphic-fetch":... |
Create an example JSON object that satisfies this schema:
{"type": "array", "items": {"type": "object", "properties": {"score": {"type": "array", "items": {"type": "string"}}, "link": {"type": "string"}, "id": {"type": "string"}, "home": {"type": "string"}, "away": {"type": "string"}}, "required": ["score", "link", "i... | [{"score" : ["0 ", " 1"], "link" : "/matches/2017/05/01/england/premier-league/watford-football-club/liverpool-fc/2242107/", "id" : "2242107", "home" : "Watford Football Club", "away" : "Liverpool Fc"}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"score": {"type": "array", "items": {"type": "string"}}, "link": {"type": "string"}, "id": {"type": "string"}, "home": {"type": "string"}, "away": {"type": "string"}}, "required": ["score", "link", "id", "home", "away"]}, "$schema": "http://json-schema.org/dr... |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test... | {"name" : "kartotherian-dynamodb", "version" : "0.0.1", "description" : "DynamoDB tile storage for Kartotherian map tile server", "main" : "DynamoStore.js", "scripts" : {"test" : "echo \"Error: no test specified\" && exit 1"}, "repository" : {"type" : "git", "url" : "https://github.com/adonig/kartotherian-dynamodb.git"... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "repository": {"type": "object", "properties": {"type": {"type": "s... |
Create 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": {"test": {"type": "string"}}, "required": ["test"]}, "reposit... | {"name" : "Test", "version" : "1.0.17", "description" : "Test anything here", "main" : "index.js", "scripts" : {"test" : "echo \"Error: no test specified\" && exit 1"}, "repository" : {"type" : "git", "url" : "git+https://github.com/elenadotedu/test.git"}, "author" : "Elena Filatova", "license" : "MIT", "bugs" : {"url"... | 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"}, "description": {"type": "string"}, "author": {"type": "string"}, "license": {"type": "string"}, "version": {"type": "string"}, "main": {"type": "string"}, "dependencies": {"type": "ob... | {"name" : "arp-alert", "description" : "Monitors the ARP table and notifies of new clients.", "author" : "Carlos R", "license" : "MIT", "version" : "0.0.1", "main" : "arp-alert.js", "dependencies" : {"debug" : "^2.1.3", "iotdb-arp" : "^0.0.3", "macvendor" : "^0.1.1", "arp-monitor" : "^0.1.0"}, "repository" : {"type" : ... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "author": {"type": "string"}, "license": {"type": "string"}, "version": {"type": "string"}, "main": {"type": "string"}, "dependencies": {"type": "object", "properties": {"debug": {"type": "string"}, "iotdb-arp": {"type": "s... |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"url": {"type": "string"}, "tabCounts": {"type": "object", "properties": {"440": {"type": "integer"}, "570": {"type": "integer"}, "620": {"type": "integer"}, "753": {"type": "integer"}, "99900": {"type": "integer"}, "238460"... | {"url" : "https://steamcommunity.com/profiles/76561198005765184/inventory", "tabCounts" : {"440" : 4, "570" : 5, "620" : 2, "753" : 1, "99900" : 17, "238460" : 19, "290340" : 1, "322330" : 5}, "private" : false, "name" : "Diogo Brc"} | json_instruct | {"type": "object", "properties": {"url": {"type": "string"}, "tabCounts": {"type": "object", "properties": {"440": {"type": "integer"}, "570": {"type": "integer"}, "620": {"type": "integer"}, "753": {"type": "integer"}, "99900": {"type": "integer"}, "238460": {"type": "integer"}, "290340": {"type": "integer"}, "322330"... |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"parent": {"type": "string"}, "textures": {"type": "object", "properties": {"layer0": {"type": "string"}}, "required": ["layer0"]}, "overrides": {"type": "array", "items": {"type": "object", "properties": {"predicate"... | {"parent" : "item/generated", "textures" : {"layer0" : "item/shears"}, "overrides" : [{"predicate" : {"custom_model_data" : 113}, "model" : "gm4:item/metallurgy/shamir/aluminium/shears"}]} | json_instruct | {"type": "object", "properties": {"parent": {"type": "string"}, "textures": {"type": "object", "properties": {"layer0": {"type": "string"}}, "required": ["layer0"]}, "overrides": {"type": "array", "items": {"type": "object", "properties": {"predicate": {"type": "object", "properties": {"custom_model_data": {"type": "in... |
Please provide a valid JSON object following this schema:
{"type": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [[1995, 5], [2003, 5], [2007, 5]] | json_instruct | {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"variants": {"type": "object", "properties": {"normal": {"type": "object", "properties": {"model": {"type": "string"}}, "required": ["model"]}}, "required": ["normal"]}}, "required": ["variants"], "$schema": "http:... | {"variants" : {"normal" : {"model" : "acblocks:weather_vane_1_web"}}} | json_instruct | {"type": "object", "properties": {"variants": {"type": "object", "properties": {"normal": {"type": "object", "properties": {"model": {"type": "string"}}, "required": ["model"]}}, "required": ["normal"]}}, "required": ["variants"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"word" : "araise", "definition" : "To raise. [Obs.] Shak."} | json_instruct | {"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"index": {"type": "integer"}, "hash": {"type": "integer"}, "blacklisted": {"type": "boolean"}, "redacted": {"type": "boolean"}, "displayProperties": {"type": "object", "properties": {"hasIcon": {"type": "boolean... | {"index" : 290, "hash" : 4036115577, "blacklisted" : false, "redacted" : false, "displayProperties" : {"hasIcon" : false, "description" : "V229CBI800JHS215\nAI-COM/RSPN: ASSETS//ARESN//IMPERATIVE\nIMMEDIATE EVALUATION DIRECTIVE\n\nThis is a SUBTLE ASSETS IMPERATIVE (secured/CONFERENCE)\n\nThis is an INTERNAL ALERT.\n\n... | json_instruct | {"type": "object", "properties": {"index": {"type": "integer"}, "hash": {"type": "integer"}, "blacklisted": {"type": "boolean"}, "redacted": {"type": "boolean"}, "displayProperties": {"type": "object", "properties": {"hasIcon": {"type": "boolean"}, "description": {"type": "string"}, "name": {"type": "string"}}, "requir... |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"900785580": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900785581": {"type": "object", "properties... | {"900785580" : {"nama" : "TPS 1", "dapil" : [9101, 19106, 2912402]}, "900785581" : {"nama" : "TPS 2", "dapil" : [9101, 19106, 2912402]}} | json_instruct | {"type": "object", "properties": {"900785580": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900785581": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": ... |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"word" : "flectional", "definition" : "Capable of, or pertaining to, flection or inflection. A flectional word is a phrase in the bud. Earle."} | json_instruct | {"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"venus": {"type": "string"}}, "required": ["venus"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"venus" : "1"} | json_instruct | {"type": "object", "properties": {"venus": {"type": "string"}}, "required": ["venus"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"}
| ["koa-convert"] | json_instruct | {"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "array", "items": {"type": "object", "properties": {"company_id": {"type": "integer"}, "module_id": {"type": "integer"}}, "required": ["company_id", "module_id"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"company_id" : 1, "module_id" : 1}, {"company_id" : 1, "module_id" : 2}, {"company_id" : 2, "module_id" : 1}, {"company_id" : 2, "module_id" : 2}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"company_id": {"type": "integer"}, "module_id": {"type": "integer"}}, "required": ["company_id", "module_id"]}, "$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"}, "provinceId": {"type": "string"}, "regencyId": {"type": "string"}, "districtId": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "provinceId", "regencyId", "districtId", "... | {"id" : "1015", "provinceId" : "53", "regencyId" : "03", "districtId" : "04", "name" : "Kiuola"} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "provinceId": {"type": "string"}, "regencyId": {"type": "string"}, "districtId": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "provinceId", "regencyId", "districtId", "name"], "$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"}, "url": {"type": "string"}}, "required": ["name", "description", "url"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "XGK EX", "description" : "A multi-fuel portable stove.", "url" : "http://www.cascadedesigns.com/msr/stoves/rapid-cooking/xgk-ex/product?"} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "url": {"type": "string"}}, "required": ["name", "description", "url"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"blacklist": {"type": "object", "properties": {"u3f772ab99f5fd70a7613414d1a6d7b52": {"type": "boolean"}, "u4e6a6f6598f776f7b90815bc218d4c39": {"type": "boolean"}, "u6e5c1dc927e9c47b9a11bf2d60708837": {"type": "boolean"}, "ufe10... | {"blacklist" : {"u3f772ab99f5fd70a7613414d1a6d7b52" : true, "u4e6a6f6598f776f7b90815bc218d4c39" : true, "u6e5c1dc927e9c47b9a11bf2d60708837" : true, "ufe10222b93e6e4c7ffd5c5f873dab259" : true}} | json_instruct | {"type": "object", "properties": {"blacklist": {"type": "object", "properties": {"u3f772ab99f5fd70a7613414d1a6d7b52": {"type": "boolean"}, "u4e6a6f6598f776f7b90815bc218d4c39": {"type": "boolean"}, "u6e5c1dc927e9c47b9a11bf2d60708837": {"type": "boolean"}, "ufe10222b93e6e4c7ffd5c5f873dab259": {"type": "boolean"}}, "requi... |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"id": {"type": "integer"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"src:alt_label": {"type": "string"}, "src:geom": {"type": "string"}, "wof:geomhash": {"type": "string"}, "wof:id": {"type": ... | {"id" : 404397833, "type" : "Feature", "properties" : {"src:alt_label" : "quattroshapes", "src:geom" : "quattroshapes", "wof:geomhash" : "f5726be2f7047681fbb5cc0db5970368", "wof:id" : 404397833, "wof:repo" : "whosonfirst-data-admin-fr"}, "bbox" : [5.12581581766005, 44.91814007388064, 5.19334587365336, 44.96511590517971... | json_instruct | {"type": "object", "properties": {"id": {"type": "integer"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"src:alt_label": {"type": "string"}, "src:geom": {"type": "string"}, "wof:geomhash": {"type": "string"}, "wof:id": {"type": "integer"}, "wof:repo": {"type": "string"}}, "required": ["... |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"rtime": {"type": "number"}, "utime": {"type": "number"}, "stime": {"type": "number"}, "cutime": {"type": "number"}, "cstime": {"type": "number"}, "minor_gb": {"type": "number"}, "promoted_gb": {"type": "number"}, "... | {"rtime" : 1.0834839344024658, "utime" : 0.88, "stime" : 0.012, "cutime" : 0.0, "cstime" : 0.0, "minor_gb" : 1.1361771747469902, "promoted_gb" : 0.008033640682697296, "major_gb" : 0.014179475605487823, "allocated_gb" : 1.1423230096697807, "minor_collections" : 150, "major_collections" : 2, "compactions" : 0, "top_heap_... | json_instruct | {"type": "object", "properties": {"rtime": {"type": "number"}, "utime": {"type": "number"}, "stime": {"type": "number"}, "cutime": {"type": "number"}, "cstime": {"type": "number"}, "minor_gb": {"type": "number"}, "promoted_gb": {"type": "number"}, "major_gb": {"type": "number"}, "allocated_gb": {"type": "number"}, "min... |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"source_schema": {"type": "string"}, "source_taxonomy": {"type": "string"}, "target_schema": {"type": "string"}, "target_taxonomy": {"type": "string"}, "source_damage_states": {"type": "array", "items": {"type": "inte... | {"source_schema" : "SUPPASRI2013_v2.0", "source_taxonomy" : "W1", "target_schema" : "SARA_v1.0", "target_taxonomy" : "S-LFM-H4-7", "source_damage_states" : [0, 1, 2, 3, 4, 5, 6], "target_damage_states" : [0, 1, 2, 3, 4], "conv_matrix" : {"0" : {"0" : 0.9956337267, "1" : 7.3679e-06, "2" : 0.042723686, "3" : 0.0111123585... | json_instruct | {"type": "object", "properties": {"source_schema": {"type": "string"}, "source_taxonomy": {"type": "string"}, "target_schema": {"type": "string"}, "target_taxonomy": {"type": "string"}, "source_damage_states": {"type": "array", "items": {"type": "integer"}}, "target_damage_states": {"type": "array", "items": {"type": "... |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"sn1.3:1.1": {"type": "string"}, "sn1.3:2.1": {"type": "string"}, "sn1.3:3.1": {"type": "string"}}, "required": ["sn1.3:1.1", "sn1.3:2.1", "sn1.3:3.1"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"sn1.3:1.1" : "cck15.3, dr15.3, ms12S1_10, msdiv3, vri23.3", "sn1.3:2.1" : "ms12S1_11", "sn1.3:3.1" : "ms12S1_12"} | json_instruct | {"type": "object", "properties": {"sn1.3:1.1": {"type": "string"}, "sn1.3:2.1": {"type": "string"}, "sn1.3:3.1": {"type": "string"}}, "required": ["sn1.3:1.1", "sn1.3:2.1", "sn1.3:3.1"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"uuid": {"type": "string"}, "befores": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "status": {"type": "string"}, "start": {"type": "integer"}, "stop": {"type": "int... | {"uuid" : "2c6f0220-d00d-4c00-b239-4af2bf1f4df4", "befores" : [{"name" : "path_dict", "status" : "passed", "start" : 1580623611228, "stop" : 1580623611228}], "start" : 1580623611228, "stop" : 1580623611307} | json_instruct | {"type": "object", "properties": {"uuid": {"type": "string"}, "befores": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "status": {"type": "string"}, "start": {"type": "integer"}, "stop": {"type": "integer"}}, "required": ["name", "status", "start", "stop"]}}, "start": {"type":... |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"votes": {"type": "object", "properties": {"diff": {"type": "integer"}, "dem": {"type": "integer"}, "tot": {"type": "integer"}, "gop": {"type": "integer"}}, "required": ["diff", "dem", "tot", "gop"]}, "for": {"type": "string"}, "... | {"votes" : {"diff" : 748, "dem" : 1514, "tot" : 2448, "gop" : 766}, "for" : "VA/Lexington city/51678", "pct" : {"dem" : 61.85, "per_point_diff" : 30.56, "gop" : 31.29}} | json_instruct | {"type": "object", "properties": {"votes": {"type": "object", "properties": {"diff": {"type": "integer"}, "dem": {"type": "integer"}, "tot": {"type": "integer"}, "gop": {"type": "integer"}}, "required": ["diff", "dem", "tot", "gop"]}, "for": {"type": "string"}, "pct": {"type": "object", "properties": {"dem": {"type": "... |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"Sleep": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}, "Dress_up": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}, "Cooking0": {"type": "array", "items": {"t... | {"Sleep" : [[15, 23], [16, 23], [17, 23], [18, 23], [19, 23], [20, 23], [21, 23], [22, 23], [23, 23], [24, 23], [25, 23], [26, 23], [27, 23], [32, 28], [32, 29], [32, 30], [32, 31], [32, 32], [32, 33], [32, 34], [32, 35], [32, 36], [32, 37], [32, 38], [32, 39], [32, 40], [32, 41], [32, 42], [32, 43], [32, 44], [32, 45]... | json_instruct | {"type": "object", "properties": {"Sleep": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}, "Dress_up": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}, "Cooking0": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}, "Cooking1": {"type": "... |
Following the schema specification below, generate a valid JSON instance:
{"type": "array", "items": {"type": "object", "properties": {"package": {"type": "string"}, "downloads": {"type": "integer"}, "count": {"type": "integer"}}, "required": ["package", "downloads", "count"]}, "$schema": "http://json-schema.org/draft... | [{"package" : "mcl", "downloads" : 43100, "count" : 8362}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"package": {"type": "string"}, "downloads": {"type": "integer"}, "count": {"type": "integer"}}, "required": ["package", "downloads", "count"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.