input stringlengths 159 2.05k | output stringlengths 5 10.3k | task stringclasses 1
value | schema stringlengths 100 1.99k |
|---|---|---|---|
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "homepage": {"type": "string"}, "bugs": {"type": "object", "p... | {"name" : "web-audio-api-player_simple-player_example_client", "version" : "4.0.0", "description" : "web audio api player simple player example server client", "keywords" : ["web", "audio", "api", "javascript", "typescript", "player", "promises", "event-driven", "play", "sound", "playlist"], "homepage" : "https://githu... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "homepage": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "reposit... |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"brief": {"type": "string"}, "long": {"type": "string"}}, "required": ["brief", "long"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"brief" : "purity", "long" : "<i>Meaning:</i> \"purity\".<br/><i>Usage:</i> innocency.<br/><i>Source:</i> (Aramaic) from a root corresponding to \"H2135\";"} | json_instruct | {"type": "object", "properties": {"brief": {"type": "string"}, "long": {"type": "string"}}, "required": ["brief", "long"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"org": {"type": "string"}, "space": {"type": "string"}}, "required": ["org", "... | [{"name" : "CF-DEV", "type" : "CLOUD-FOUNDRY", "properties" : {"org" : "trial", "space" : "stoyan.rachev@sap.com"}}, {"name" : "CF-TRIAL", "type" : "CLOUD-FOUNDRY", "properties" : {"org" : "trial", "space" : "i027947"}}, {"name" : "XS2-INITIAL", "type" : "XS2", "properties" : {"org" : "initial", "space" : "initial"}}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"org": {"type": "string"}, "space": {"type": "string"}}, "required": ["org", "space"]}}, "required": ["name", "type", "properties"]}, "$schema": "http://js... |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"id": {"type": "string"}, "playerTags": {"type": "array", "items": {}}, "teamTags": {"type": "array", "items": {"type": "string"}}, "gameTags": {"type": "array", "items": {"type": "string"}}, "metadata": {"type": "... | {"id" : "83e85d62-21bc-46fb-b70d-50d9650fc876", "playerTags" : [], "teamTags" : ["ca3f1c8c-c025-4d8e-8eef-5be6accbeb16", "a37f9158-7f82-46bc-908c-c9e2dda7c33b"], "gameTags" : ["5c7f0859-892a-432b-8cb7-84209a8493aa"], "metadata" : {"play" : 72, "subPlay" : -1, "children" : ["f42b8b5d-1703-47b3-a5ab-326394ac56ed"]}, "cre... | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "playerTags": {"type": "array", "items": {}}, "teamTags": {"type": "array", "items": {"type": "string"}}, "gameTags": {"type": "array", "items": {"type": "string"}}, "metadata": {"type": "object", "properties": {"play": {"type": "integer"}, "subPlay": {"type":... |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"dependencies": {"type": "object", "properties": {"bootstrap": {"type": "string"}, "jquery": {"type": "string"}, "sortablejs": {"type": "string"}}, "required": ["bootstrap", "jquery", "sortablejs"]}}, "required": [... | {"dependencies" : {"bootstrap" : "^3.3.7", "jquery" : "^3.2.1", "sortablejs" : "^1.5.1"}} | json_instruct | {"type": "object", "properties": {"dependencies": {"type": "object", "properties": {"bootstrap": {"type": "string"}, "jquery": {"type": "string"}, "sortablejs": {"type": "string"}}, "required": ["bootstrap", "jquery", "sortablejs"]}}, "required": ["dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"FreeSamplePlotCoupon": {"type": "array", "items": {"type": "string"}}}, "required": ["FreeSamplePlotCoupon"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"FreeSamplePlotCoupon" : ["PlotCoupon", "BigBad", "MacGuffin", "PlotCoupon", "ThisIsYourPremiseOnDrugs", "QuestGiver", "TomatoSurprise", "WastefulWishing", "MockGuffin", "DoubleSubversion", "BigBad", "Exaggerated", "MonsterOfTheWeek", "NiceJobBreakingItHero", "ArtifactOfDoom", "SuperMode", "AllYourBaseAreBelongToUs", ... | json_instruct | {"type": "object", "properties": {"FreeSamplePlotCoupon": {"type": "array", "items": {"type": "string"}}}, "required": ["FreeSamplePlotCoupon"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "number"}}}, "required": ["type", "coordinates"]}, "type": {"type": "string"}, "id": {"type"... | {"geometry" : {"type" : "Point", "coordinates" : [-90.88, 33.27]}, "type" : "Feature", "id" : "38722", "properties" : {"other_cities" : "", "city" : "Arcola", "state" : "MS", "county" : "Washington County"}} | json_instruct | {"type": "object", "properties": {"geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "number"}}}, "required": ["type", "coordinates"]}, "type": {"type": "string"}, "id": {"type": "string"}, "properties": {"type": "object", "properties": {"other_c... |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"schema_version": {"type": "string"}, "id": {"type": "string"}, "modified": {"type": "string"}, "published": {"type": "string"}, "aliases": {"type": "array", "items": {"type": "string"}}, "details": {"type": "string"... | {"schema_version" : "1.2.0", "id" : "GHSA-gqvh-9hmr-92p2", "modified" : "2022-04-30T18:19:20Z", "published" : "2022-04-30T18:19:20Z", "aliases" : ["CVE-2002-0501"], "details" : "Format string vulnerability in log_print() function of Posadis DNS server before version m5pre2 allows local users and possibly remote attacke... | json_instruct | {"type": "object", "properties": {"schema_version": {"type": "string"}, "id": {"type": "string"}, "modified": {"type": "string"}, "published": {"type": "string"}, "aliases": {"type": "array", "items": {"type": "string"}}, "details": {"type": "string"}, "severity": {"type": "array", "items": {}}, "affected": {"type": "a... |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"answers": {"type": "array", "items": {"type": "string"}}, "centerLetter": {"type": "string"}, "letterString": {"type": "string"}, "outerLetters": {"type": "array", "items": {"type": "string"}}, "pangrams": {"type"... | {"answers" : ["beef", "beefed", "befeld", "befell", "befleck", "beflecked", "clef", "delf", "effed", "elfed", "feck", "fecked", "feeb", "feeble", "feebled", "feed", "feel", "fell", "felled", "fleck", "flecked", "fled", "flee", "fleece", "fleeced", "fleek", "keef", "keffel"], "centerLetter" : "f", "letterString" : "fbcd... | json_instruct | {"type": "object", "properties": {"answers": {"type": "array", "items": {"type": "string"}}, "centerLetter": {"type": "string"}, "letterString": {"type": "string"}, "outerLetters": {"type": "array", "items": {"type": "string"}}, "pangrams": {"type": "array", "items": {"type": "string"}}, "validLetters": {"type": "array... |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"location_history": {"type": "array", "items": {"type": "object", "properties": {"url": {"type": "string"}, "title": {"type": "string"}}, "required": ["url", "title"]}}, "outline": {"type": "array", "items": {"type": ... | {"location_history" : [{"url" : "/examples", "title" : "Code examples"}, {"url" : "/examples/audio", "title" : "Audio Data"}], "outline" : [{"title" : "Speaker Recognition", "url" : "#speaker-recognition", "depth" : 1}, {"title" : "Introduction", "url" : "#introduction", "depth" : 2}, {"title" : "Setup", "url" : "#setu... | json_instruct | {"type": "object", "properties": {"location_history": {"type": "array", "items": {"type": "object", "properties": {"url": {"type": "string"}, "title": {"type": "string"}}, "required": ["url", "title"]}}, "outline": {"type": "array", "items": {"type": "object", "properties": {"title": {"type": "string"}, "url": {"type":... |
Create a JSON structure that matches this schema definition:
{"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/draf... | {"id" : "010700030302", "variable1" : 0.5717, "variable2" : 1.3105, "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#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"author": {"type": "string"}, "name": {"type": "string"}, "description": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "version": {"type": "string"}, "homepage": {"type": "string"},... | {"author" : "Brandon Benvie <http://bbenvie.com>", "name" : "weakmap", "description" : "Shim for WeakMap with non-leaky O(1) lookup time", "keywords" : ["harmony", "collection", "weakmap", "ecmascript", "es6", "shim", "garbage collection", "gc"], "version" : "0.0.6", "homepage" : "http://benvie.github.com/WeakMap", "re... | json_instruct | {"type": "object", "properties": {"author": {"type": "string"}, "name": {"type": "string"}, "description": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "version": {"type": "string"}, "homepage": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "stri... |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"expireTime": {"type": "integer"}, "key": {"type": "string"}, "val": {"type": "string"}}, "required": ["expireTime", "key", "val"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"expireTime" : 9007200888100689000, "key" : "/static/71e659ca7ed85d2e13a014bf1ecb20f7/3ff62/iambored-home.png", "val" : "57f1f3a51b2054aa350a48c724c53700"} | json_instruct | {"type": "object", "properties": {"expireTime": {"type": "integer"}, "key": {"type": "string"}, "val": {"type": "string"}}, "required": ["expireTime", "key", "val"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"id": {"type": "string"}, "code": {"type": "string"}, "name": {"type": "string"}, "description": {"type": "string"}, "division": {"type": "string"}, "department": {"type": "string"}, "prerequisites": {"type": ... | {"id" : "AER310H1S20201", "code" : "AER310H1S", "name" : "Gasdynamics", "description" : "Basic introduction to compressible gasdynamics. Includes some fundamental thermodynamics, thermal and caloric equations of state, derivation of Euler\u2019s equations by control volume approach. Also, includes the theory of steady ... | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "code": {"type": "string"}, "name": {"type": "string"}, "description": {"type": "string"}, "division": {"type": "string"}, "department": {"type": "string"}, "prerequisites": {"type": "string"}, "exclusions": {"type": "string"}, "level": {"type": "integer"}, "c... |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"keywords": {"type": "array", "items": {"type": "string"}}}, "required": ["keywords"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"keywords" : ["Aloxe-Corton"]} | json_instruct | {"type": "object", "properties": {"keywords": {"type": "array", "items": {"type": "string"}}}, "required": ["keywords"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"h": {"type": "array", "items": {"type": "object", "properties": {"d": {"type": "array", "items": {"type": "object", "properties": {"s": {"type": "array", "items": {"type": "string"}}, "f": {"type": "string"}}, "required": [... | {"h" : [{"d" : [{"s" : ["`ona~"], "f" : "\ufff9\ufffathis. See Pronouns - Appendix 1.\ufffb\u9019\u662f\u3002\u53c3\u95b1\u9644\u9304\u2160\u4ee3\u540d\u8a5e"}]}], "t" : "onini"} | json_instruct | {"type": "object", "properties": {"h": {"type": "array", "items": {"type": "object", "properties": {"d": {"type": "array", "items": {"type": "object", "properties": {"s": {"type": "array", "items": {"type": "string"}}, "f": {"type": "string"}}, "required": ["s", "f"]}}}, "required": ["d"]}}, "t": {"type": "string"}}, "... |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "default_locale": {"type": "string"}, "version": {"type": "string"}, "manifest_version": {"type": "integer"}, "permissions": {"type": "array", "item... | {"name" : "__MSG_appName__", "description" : "__MSG_appDesc__", "default_locale" : "en", "version" : "_", "manifest_version" : 2, "permissions" : ["activeTab"], "icons" : {"16" : "icons/icon.16.png", "32" : "icons/icon.32.png", "48" : "icons/icon.48.png", "64" : "icons/icon.64.png", "128" : "icons/icon.128.png", "256" ... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "default_locale": {"type": "string"}, "version": {"type": "string"}, "manifest_version": {"type": "integer"}, "permissions": {"type": "array", "items": {"type": "string"}}, "icons": {"type": "object", "properties": {"16": {... |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "array", "items": {"type": "object", "pr... | {"contract" : "0xb2d80b0f2fbd94d475a6ed13cd650aa7b69cafc7", "tool" : "osiris", "start" : 1564617897.6442127, "end" : 1564617901.1976497, "duration" : 3.5534369945526123, "analysis" : [{"errors" : [], "file" : "/unique_chucks/42/0xb2d80b0f2fbd94d475a6ed13cd650aa7b69cafc7.sol", "name" : "dubbel"}]} | json_instruct | {"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "array", "items": {"type": "object", "properties": {"errors": {"type": "array", "items": {}}, "file": {"type": "strin... |
Please provide a valid JSON object following this schema:
{"type": "array", "items": {"type": "object", "properties": {"adcode": {"type": "integer"}, "lng": {"type": "number"}, "lat": {"type": "number"}, "name": {"type": "string"}, "level": {"type": "string"}, "parent": {"type": "integer"}}, "required": ["adcode", "ln... | [{"adcode" : 610402, "lng" : 108.698636, "lat" : 34.329801, "name" : "\u79e6\u90fd\u533a", "level" : "district", "parent" : 610400}, {"adcode" : 610403, "lng" : 108.086348, "lat" : 34.27135, "name" : "\u6768\u9675\u533a", "level" : "district", "parent" : 610400}, {"adcode" : 610404, "lng" : 108.730957, "lat" : 34.33684... | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"adcode": {"type": "integer"}, "lng": {"type": "number"}, "lat": {"type": "number"}, "name": {"type": "string"}, "level": {"type": "string"}, "parent": {"type": "integer"}}, "required": ["adcode", "lng", "lat", "name", "level", "parent"]}, "$schema": "http://... |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"n_dim": {"type": "integer"}, "n_trials": {"type": "integer"}, "objective": {"type": "string"}, "white": {"type": "string"}, "black": {"type": "string"}, "traceback": {"type": "array", "items": {"type": "string"}}, "best_val... | {"n_dim" : 8, "n_trials" : 210, "objective" : "markowitz_realized_on_cube", "white" : "platypus_epsmoea", "black" : "optuna_random_clone", "traceback" : ["passing", "passing"], "best_val" : [0.4829364691993517, 0.774242243754828], "best_x" : [[0.005040982965000995, 0.06414316331037195, 0.1732775306660739, 0.76632747392... | 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 sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"name": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "start_date": {"type": "string"}}, "required": ["name", "start_date"]}}, "history": {"type": "object", "properti... | {"name" : [{"name" : "\u8fb2\u7522\u54c1\u5e02\u5834\u4ea4\u6613\u6cd5", "start_date" : "1981-07-24"}], "history" : {"1981-07-24" : "\u5236\u5b9a43\u689d", "1981-08-05" : "\u516c\u5e03", "1982-09-01" : "\u65bd\u884c", "1983-11-29" : "\u4fee\u6b63\u7b2c3, 13, 18, 21\u689d", "1983-12-12" : "\u516c\u5e03", "1984-04-21" : ... | json_instruct | {"type": "object", "properties": {"name": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "start_date": {"type": "string"}}, "required": ["name", "start_date"]}}, "history": {"type": "object", "properties": {"1981-07-24": {"type": "string"}, "1981-08-05": {"type": "string"}, "19... |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"title": {"type": "string"}, "author": {"type": "string"}, "description": {"type": "string"}, "thumb": {"type": "string"}, "download": {"type": "string"}, "origin": {"type": "string"}}, "required": ["title", "author", "descript... | {"title" : "\u3010r18mmd\u3011\u6771\u65b9 \u4e5d\u5c3e\u4e00\u89d2\u306esexy mimimi \u516b\u96f2\u7c43 \u52c7\u5100\uff11\uff18\u6b73\u4ee5\u4e0a\uff01", "author" : "kidps2", "description" : "Godundefineddmanundefinedthat'sundefinedgood", "thumb" : "//i.iwara.tv/sites/default/files/styles/thumbnail/public/videos/... | json_instruct | {"type": "object", "properties": {"title": {"type": "string"}, "author": {"type": "string"}, "description": {"type": "string"}, "thumb": {"type": "string"}, "download": {"type": "string"}, "origin": {"type": "string"}}, "required": ["title", "author", "description", "thumb", "download", "origin"], "$schema": "http://js... |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "homepage": {"type": "string"}, "license": {"type": "string"}, "type": {"ty... | {"name" : "saintsystems/dynamics-sdk-php", "version" : "0.1.0", "description" : "Saint Systems Microsoft Dynamics 365 SDK for PHP", "keywords" : ["crm", "xrm", "dynamics", "dynamics crm", "dynamics 365", "sdk"], "homepage" : "https://github.com/saintsystems/dynamics-sdk-php", "license" : "MIT", "type" : "library", "aut... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "homepage": {"type": "string"}, "license": {"type": "string"}, "type": {"type": "string"}, "authors": {"type": "array", "items": {"t... |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"code": {"type": "integer"}, "parent": {"type": "integer"}, "name": {"type": "string"}, "latitude": {"type": "null"}, "longitude": {"type": "null"}, "postal": {"type": "array", "items": {"type": "integer"}}, "ch... | {"code" : 1507013009, "parent" : 1507013, "name" : "TALANG MAKMUR", "latitude" : null, "longitude" : null, "postal" : [36551], "children" : []} | json_instruct | {"type": "object", "properties": {"code": {"type": "integer"}, "parent": {"type": "integer"}, "name": {"type": "string"}, "latitude": {"type": "null"}, "longitude": {"type": "null"}, "postal": {"type": "array", "items": {"type": "integer"}}, "children": {"type": "array", "items": {}}}, "required": ["code", "parent", "n... |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "private": {"type": "boolean"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}}, "required": ["start"]}, "dependencies": {"type": "o... | {"name" : "miniweb", "version" : "1.0.0", "private" : true, "scripts" : {"start" : "node app"}, "dependencies" : {"keygrip" : "^1.1.0", "koa" : "^2.7.0", "koa-body" : "^4.1.1", "koa-bodyparser" : "^4.2.1", "koa-ejs" : "^4.2.0", "koa-generic-session" : "^2.0.1", "koa-router" : "^7.4.0", "koa-sqlite3-session" : "^1.0.4",... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "private": {"type": "boolean"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}}, "required": ["start"]}, "dependencies": {"type": "object", "properties": {"keygrip": {"type": "string"}, "koa": {"type":... |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"pages": {"type": "array", "items": {"type": "string"}}, "subPackages": {"type": "array", "items": {}}, "window": {"type": "object", "properties": {"navigationBarTextStyle": {"type": "string"}, "navigationBarTitleText": {"type"... | {"pages" : ["pages/images/images", "pages/main/main", "pages/index/index", "pages/avatar/avatar", "pages/news/index", "pages/mannage/index/index", "pages/mannage/update/update", "pages/images/index", "pages/special/special", "pages/special/detail"], "subPackages" : [], "window" : {"navigationBarTextStyle" : "black", "n... | json_instruct | {"type": "object", "properties": {"pages": {"type": "array", "items": {"type": "string"}}, "subPackages": {"type": "array", "items": {}}, "window": {"type": "object", "properties": {"navigationBarTextStyle": {"type": "string"}, "navigationBarTitleText": {"type": "string"}, "navigationBarBackgroundColor": {"type": "stri... |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"spec": {"type": "object", "properties": {"title": {"type": "string"}, "url": {"type": "string"}}, "required": ["title", "url"]}, "refs": {"type": "object", "properties": {"normative": {"type": "array", "items": {"type": "objec... | {"spec" : {"title" : "Resize Observer", "url" : "https://www.w3.org/TR/resize-observer-1/"}, "refs" : {"normative" : [{"name" : "CSS-BOX-3", "url" : "https://www.w3.org/TR/css-box-3/"}, {"name" : "CSSOM-VIEW-1", "url" : "https://www.w3.org/TR/cssom-view-1/"}, {"name" : "DOM", "url" : "https://dom.spec.whatwg.org/"}, {"... | json_instruct | {"type": "object", "properties": {"spec": {"type": "object", "properties": {"title": {"type": "string"}, "url": {"type": "string"}}, "required": ["title", "url"]}, "refs": {"type": "object", "properties": {"normative": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "url": {"typ... |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"h": {"type": "string"}, "c": {"type": "object", "properties": {}, "required": []}}, "required": ["h", "c"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"h" : "ff05d81bdbd5f5223e1f", "c" : {}} | json_instruct | {"type": "object", "properties": {"h": {"type": "string"}, "c": {"type": "object", "properties": {}, "required": []}}, "required": ["h", "c"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "provinceId": {"type": "string"}, "regencyId": {"type": "string"}, "districtId": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "provinceId",... | [{"id" : "2001", "provinceId" : "12", "regencyId" : "24", "districtId" : "06", "name" : "Banua Sibohou III"}, {"id" : "2002", "provinceId" : "12", "regencyId" : "24", "districtId" : "06", "name" : "Harefanaese"}, {"id" : "2003", "provinceId" : "12", "regencyId" : "24", "districtId" : "06", "name" : "Hilimbowo Kare"}, {... | json_instruct | {"type": "array", "items": {"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.or... |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "bin": {"type": "object", "properties": {"gbpack": {"type": "string"}}, "required": ["gbpack"]}, "scripts": {"type": "obje... | {"name" : "gb.pack-cli", "version" : "1.1.4", "description" : "gb code pack tool", "bin" : {"gbpack" : "./bin/cmd.js"}, "scripts" : {"init" : "node ./bin/cmd.js init www"}, "author" : "keydone", "license" : "MIT", "preferGlobal" : true, "dependencies" : {"boxen" : "^2.0.0", "chalk" : "^2.4.1", "commander" : "^2.19.0", ... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "bin": {"type": "object", "properties": {"gbpack": {"type": "string"}}, "required": ["gbpack"]}, "scripts": {"type": "object", "properties": {"init": {"type": "string"}}, "required": ["init"]}... |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"Class IoU": {"type": "object", "properties": {"0": {"type": "number"}, "1": {"type": "number"}, "2": {"type": "number"}, "3": {"type": "number"}, "4": {"type": "number"}, "5": {"type": "number"}, "6": {"type": ... | {"Class IoU" : {"0" : 0.9723835140393139, "1" : 0.932284405801355, "2" : 0.7468137710962681, "3" : 0.9218783356840369, "4" : 0.8484579004810219, "5" : 0.8696297249201347, "6" : 0.9720973207300103, "7" : 0.935915049578212, "8" : 0.9374628071322245, "9" : 0.6875070250549213, "10" : 0.9582069281376151, "11" : 0.8308168870... | json_instruct | {"type": "object", "properties": {"Class IoU": {"type": "object", "properties": {"0": {"type": "number"}, "1": {"type": "number"}, "2": {"type": "number"}, "3": {"type": "number"}, "4": {"type": "number"}, "5": {"type": "number"}, "6": {"type": "number"}, "7": {"type": "number"}, "8": {"type": "number"}, "9": {"type": ... |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"body": {"type": "string"}, "next": {"type": "string"}}, "required": ["body", "next"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"body" : "FOR WHO EVER BEGAN TO BUILD HIS KNOWLEDGE ON THIS GENERAL PROPOSITION, WHAT IS, IS;", "next" : "https://raw.githubusercontent.com/CAPSELOCKE/CAPSELOCKE/master/tweets/15278.json"} | json_instruct | {"type": "object", "properties": {"body": {"type": "string"}, "next": {"type": "string"}}, "required": ["body", "next"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"name": {"type": "string"}, "config": {"type": "object", "properties": {"connector.class": {"type": "string"}, "tasks.max": {"type": "string"}, "topics": {"type": "string"}, "connection.url": {"type": "string"}, "t... | {"name" : "jdbc-sink", "config" : {"connector.class" : "io.confluent.connect.jdbc.JdbcSinkConnector", "tasks.max" : "1", "topics" : "dbserver1_inventory_Hike", "connection.url" : "jdbc:postgresql://postgres:5432/inventory?user=postgresuser&password=postgrespw", "transforms" : "unwrap", "transforms.unwrap.type" : "io.de... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "config": {"type": "object", "properties": {"connector.class": {"type": "string"}, "tasks.max": {"type": "string"}, "topics": {"type": "string"}, "connection.url": {"type": "string"}, "transforms": {"type": "string"}, "transforms.unwrap.type": {"type": "stri... |
Create an example JSON object that satisfies this schema:
{"type": "array", "items": {"type": "object", "properties": {"appId": {"type": "string"}, "cpu": {"type": "string"}, "duration": {"type": "string"}, "gpu": {"type": "string"}, "gpuDriver": {"type": "string"}, "kernel": {"type": "string"}, "notes": {"type": "str... | [{"appId" : "15380", "cpu" : "AMD Ryzen 5 2500U with Radeon Vega Mobile Gfx", "duration" : "lessThanFifteenMinutes", "gpu" : "X.Org AMD RAVEN (DRM 3.26.0, 4.18.7-arch1-1-ARCH, LLVM 6.0.1)", "gpuDriver" : "4.4 (Compatibility Profile) Mesa 18.2.0", "kernel" : "4.18.7-arch1-1-ARCH", "notes" : "Game enters fullscreen mode ... | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"appId": {"type": "string"}, "cpu": {"type": "string"}, "duration": {"type": "string"}, "gpu": {"type": "string"}, "gpuDriver": {"type": "string"}, "kernel": {"type": "string"}, "notes": {"type": "string"}, "os": {"type": "string"}, "protonVersion": {"type": ... |
Generate sample JSON data that conforms to the following schema definition:
{"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "frequency": {"type": "integer"}, "gender": {"type": "string"}}, "required": ["name", "frequency", "gender"]}, "$schema": "http://json-schema.org/draft-07... | [{"name" : "TELFORD", "frequency" : 0, "gender" : "female"}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "frequency": {"type": "integer"}, "gender": {"type": "string"}}, "required": ["name", "frequency", "gender"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"family": {"type": "string"}, "name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "author": {"type": "string"}, "maintainers": {"type": "array", "items": {"type": "str... | {"family" : "arale", "name" : "calendar", "version" : "0.9.0", "description" : "Calendar widget.", "author" : "Hsiaoming Yang <me@lepture.com>", "maintainers" : ["\u5357\u4f2f <me@lepture.com>", "\u504f\u53f3 <afc163@gmail.com>"], "homepage" : "http://aralejs.org/calendar/", "repository" : {"type" : "git", "url" : "htt... | json_instruct | {"type": "object", "properties": {"family": {"type": "string"}, "name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "author": {"type": "string"}, "maintainers": {"type": "array", "items": {"type": "string"}}, "homepage": {"type": "string"}, "repository": {"type": "object", "pro... |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"HOME": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}}, "required": ["HOME"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"HOME" : {"test" : "test po polsku"}} | json_instruct | {"type": "object", "properties": {"HOME": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}}, "required": ["HOME"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"name": {"type": "string"}, "string": {"type": "string"}, "json": {"type": "object", "properties": {"aaa": {"type": "integer"}, "bbb": {"type": "integer"}}, "required": ["aaa", "bbb"]}}, "required": ["name", "string", "json"], ... | {"name" : "Alice", "string" : "{\"xxx\":\"abc\",\"yyy\":\"def\"}", "json" : {"aaa" : 111, "bbb" : 222}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "string": {"type": "string"}, "json": {"type": "object", "properties": {"aaa": {"type": "integer"}, "bbb": {"type": "integer"}}, "required": ["aaa", "bbb"]}}, "required": ["name", "string", "json"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"rulesDirectory": {"type": "array", "items": {"type": "string"}}, "jsRules": {"type": "object", "properties": {"always-fail": {"type": "boolean"}, "no-fail": {"type": "boolean"}, "rule-two": {"type": "boolean"}}... | {"rulesDirectory" : ["../files/custom-rules-2", "../files/custom-rules/"], "jsRules" : {"always-fail" : true, "no-fail" : true, "rule-two" : true}, "rules" : {"always-fail" : true, "no-fail" : true, "rule-two" : true}} | json_instruct | {"type": "object", "properties": {"rulesDirectory": {"type": "array", "items": {"type": "string"}}, "jsRules": {"type": "object", "properties": {"always-fail": {"type": "boolean"}, "no-fail": {"type": "boolean"}, "rule-two": {"type": "boolean"}}, "required": ["always-fail", "no-fail", "rule-two"]}, "rules": {"type": "o... |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"stationId": {"type": "integer"}, "stationGroupId": {"type": "integer"}, "name": {"type": "string"}, "lineId": {"type": "integer"}, "zipCode": {"type": "string"}, "pref": {"type": "string"}, "city": {"type": "string"... | {"stationId" : 3100424, "stationGroupId" : 3100424, "name" : "\u6c60\u91ce", "lineId" : 31004, "zipCode" : "503-2424", "pref" : "\u5c90\u961c\u770c", "city" : "\u63d6\u6590\u90e1\u6c60\u7530\u753a", "town" : "\u6c60\u91ce", "longitude" : 136.578712, "latitude" : 35.436512, "status" : 2} | 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... |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"stationId": {"type": "integer"}, "stationGroupId": {"type": "integer"}, "name": {"type": "string"}, "lineId": {"type": "integer"}, "zipCode": {"type": "string"}, "pref": {"type": "string"}, "city": {"type": "strin... | {"stationId" : 3101202, "stationGroupId" : 3101202, "name" : "\u67cf\u539f\u5357\u53e3", "lineId" : 31012, "zipCode" : "582-0007", "pref" : "\u5927\u962a\u5e9c", "city" : "\u67cf\u539f\u5e02", "town" : "\u4e0a\u5e02", "longitude" : 135.624956, "latitude" : 34.58153, "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... |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"id_6701": {"type": "object", "properties": {"publicdate": {"type": "string"}, "title": {"type": "string"}}, "required": ["publicdate", "title"]}}, "required": ["id_6701"], "$schema": "http://json-schema.org/d... | {"id_6701" : {"publicdate" : "2012-07-13 19:57:43", "title" : "Librivox Multilingual Short Works Collection 002"}} | json_instruct | {"type": "object", "properties": {"id_6701": {"type": "object", "properties": {"publicdate": {"type": "string"}, "title": {"type": "string"}}, "required": ["publicdate", "title"]}}, "required": ["id_6701"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"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" : "\u5de8\u5927\u6a5f\u68b0\u5de5\u696d\u80a1\u4efd\u6709\u9650\u516c\u53f8\u65e5\u5357\u5ee0", "\u5de5\u5ee0\u767b\u8a18\u7de8\u865f" : "99633598", "\u5de5\u5ee0\u8a2d\u7acb\u8a31\u53ef\u6848\u865f" : "06910006121990", "\u5de5\u5ee0\u5730\u5740" : "\u81fa\u4e2d\u5e02\u5927\u7532\u5340\u9f8d... | 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": {"rustc": {"type": "integer"}, "features": {"type": "string"}, "target": {"type": "integer"}, "profile": {"type": "integer"}, "path": {"type": "integer"}, "deps": {"type": "array", "items": {}}, "local": {"type": "a... | {"rustc" : 12441814257248498227, "features" : "[]", "target" : 8090564521612164149, "profile" : 9935990280773120926, "path" : 8904678177526434872, "deps" : [], "local" : [{"CheckDepInfo" : {"dep_info" : "debug/.fingerprint/anymap-b24c1dfc7319aba4/dep-lib-anymap-b24c1dfc7319aba4"}}], "rustflags" : [], "metadata" : 14142... | json_instruct | {"type": "object", "properties": {"rustc": {"type": "integer"}, "features": {"type": "string"}, "target": {"type": "integer"}, "profile": {"type": "integer"}, "path": {"type": "integer"}, "deps": {"type": "array", "items": {}}, "local": {"type": "array", "items": {"type": "object", "properties": {"CheckDepInfo": {"type... |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"title": {"type": "string"}, "fields": {"type": "array", "items": {"type": "string"}}, "abstract": {"type": "string"}, "citation": {"type": "string"}, "departments": {"type": "array", "items": {"type": "string"}}, ... | {"title" : "Near-Ideal Networks-on-Chip for Servers.", "fields" : ["network packet", "latency", "cache", "resource allocation", "server"], "abstract" : "Server workloads benefit from execution on many-core processors due to their massive request-level parallelism. A key characteristic of server workloads is the large i... | 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... |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"persone": {"type": "object", "properties": {"controllate": {"type": "integer"}, "sanzionate": {"type": "integer"}, "denunciateFalseDichiarazione": {"type": "integer"}, "denunciateQuarantena": {"type": "integer"}}, "required": ... | {"persone" : {"controllate" : 98813, "sanzionate" : 1918, "denunciateFalseDichiarazione" : 0, "denunciateQuarantena" : 9}, "attivita" : {"controllate" : 11117, "sanzionate" : 33, "chiusuraProvvisoria" : 8, "chiusuraTotale" : 3}} | json_instruct | {"type": "object", "properties": {"persone": {"type": "object", "properties": {"controllate": {"type": "integer"}, "sanzionate": {"type": "integer"}, "denunciateFalseDichiarazione": {"type": "integer"}, "denunciateQuarantena": {"type": "integer"}}, "required": ["controllate", "sanzionate", "denunciateFalseDichiarazione... |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"dependencies": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"]}}, "generated": {"type": "object", "properties": {"css": {"type": "string"}, "js": {... | {"dependencies" : [{"name" : "_css_loader"}], "generated" : {"css" : "/* http://meyerweb.com/eric/tools/css/reset/\n v2.0 | 20110126\n License: none (public domain)\n*/\n\nhtml, body, div, span, applet, object, iframe,\nh1, h2, h3, h4, h5, h6, p, blockquote, pre,\na, abbr, acronym, address, big, cite, code,\ndel, d... | json_instruct | {"type": "object", "properties": {"dependencies": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"]}}, "generated": {"type": "object", "properties": {"css": {"type": "string"}, "js": {"type": "string"}}, "required": ["css", "js"]}, "hash": {"type": "string"}}... |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"responses": {"type": "array", "items": {"type": "object", "properties": {"labelAnnotations": {"type": "array", "items": {"type": "object", "properties": {"mid": {"type": "string"}, "description": {"type": "string"}, "score": {"t... | {"responses" : [{"labelAnnotations" : [{"mid" : "/m/03q69", "description" : "Hair", "score" : 0.96488434, "topicality" : 0.96488434}, {"mid" : "/m/0ds4x", "description" : "Hairstyle", "score" : 0.82939821, "topicality" : 0.82939821}, {"mid" : "/m/0k65p", "description" : "Hand", "score" : 0.69691736, "topicality" : 0.69... | json_instruct | {"type": "object", "properties": {"responses": {"type": "array", "items": {"type": "object", "properties": {"labelAnnotations": {"type": "array", "items": {"type": "object", "properties": {"mid": {"type": "string"}, "description": {"type": "string"}, "score": {"type": "number"}, "topicality": {"type": "number"}}, "requ... |
Create a JSON structure that matches this schema definition:
{"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"}
| ["G.O.L.E.M.", "Arborstone", "Gates of Kryta", "Gate of Madness", "The Elusive Golemancer", "Riverside Province", "Boreas Seabed", "Ruins of Morah", "Hell's Precipice", "Ruins of Surmia", "Curse of the Nornbear", "Sunjiang District", "Elona Reach", "Gate of Pain", "Blood Washes Blood", "Bloodstone Fen", "Jennur's Horde... | json_instruct | {"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "href": {"type": "string"}, "url": {"type": "string"}, "count": {"type": "integer"}}, "required": ["id", "name", "href", "url", "count"], "$schema": "http://json-... | {"id" : "CWE-460", "name" : "Improper Cleanup on Thrown Exception", "href" : "AIP/quality-standards/CWE/items/CWE-460", "url" : "https://cwe.mitre.org/data/definitions/460.html", "count" : 0} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "href": {"type": "string"}, "url": {"type": "string"}, "count": {"type": "integer"}}, "required": ["id", "name", "href", "url", "count"], "$schema": "http://json-schema.org/draft-07/schema#"} |
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"}}, "required": ["test"]}, "repositor... | {"name" : "jedligrid", "version" : "1.2.1", "description" : "lightweight, easy to use, pure (vanilla) JavaScript library to show and manage data in tables", "main" : "jedlislider.js", "scripts" : {"test" : "test"}, "repository" : {"type" : "git", "url" : "git+https://github.com/jedlikk/jedliGrid.git"}, "keywords" : ["g... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "repository": {"type": "object", "properties": {"type": {"type": "s... |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"1258": {"type": "string"}, "1256": {"type": "string"}}, "required": ["1258", "1256"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"1258" : "1259", "1256" : "1257"} | json_instruct | {"type": "object", "properties": {"1258": {"type": "string"}, "1256": {"type": "string"}}, "required": ["1258", "1256"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "array", "items": {"type": "object", "properties": {"__symbolic": {"type": "string"}, "version": {"type": "integer"}, "metadata": {"type": "object", "properties": {"loadNgModule": {"type": "object", "properties": {"__symbolic": {"type": "string"}, "par... | [{"__symbolic" : "module", "version" : 3, "metadata" : {"loadNgModule" : {"__symbolic" : "function", "parameters" : ["moduleToLoad"], "value" : {"__symbolic" : "error", "message" : "Function call not supported", "line" : 71, "character" : 9}}, "loadModuleFactory" : {"__symbolic" : "function"}, "applyNgModule" : {"__sym... | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"__symbolic": {"type": "string"}, "version": {"type": "integer"}, "metadata": {"type": "object", "properties": {"loadNgModule": {"type": "object", "properties": {"__symbolic": {"type": "string"}, "parameters": {"type": "array", "items": {"type": "string"}}, "... |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "directories": {"type": "object", "properties": {"test": {"type": "string"}}, "required... | {"name" : "mtrl-icon", "version" : "1.0.0", "description" : "Vanilla custom element that displays Material icons", "main" : "src/mtrl-icon.js", "directories" : {"test" : "test"}, "scripts" : {"test" : "echo \"Error: no test specified\" && exit 1"}, "repository" : {"type" : "git", "url" : "git+https://github.com/aeoling... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "directories": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "scripts": {"type": "object", "properties": {"test": {"type": "... |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"nom": {"type": "string"}, "circ": {"type": "string"}, "dpt": {"type": "string"}, "inscrits": {"type": "integer"}, "abs": {"type": "integer"}, "votants": {"type": "integer"}, "blancs": {"type": "integer"}, "nuls": {"type": "integ... | {"nom" : "Mallemoisson", "circ" : "1\u00e8re circonscription", "dpt" : "Alpes-de-Haute-Provence", "inscrits" : 785, "abs" : 447, "votants" : 338, "blancs" : 24, "nuls" : 11, "exp" : 303, "res" : [{"nuance" : "REM", "nom" : "Mme Delphine BAGARRY", "voix" : 174}, {"nuance" : "FN", "nom" : "Mme Odile BRUN", "voix" : 129}]... | 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"... |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"ratings": {"type": "array", "items": {"type": "object", "properties": {"attendance": {"type": "string"}, "clarityColor": {"type": "string"}, "easyColor": {"type": "string"}, "helpColor": {"type": "string"}, "... | {"ratings" : [{"attendance" : "N/A", "clarityColor" : "good", "easyColor" : "poor", "helpColor" : "good", "helpCount" : 0, "id" : 14077649, "notHelpCount" : 0, "onlineClass" : "", "quality" : "good", "rClarity" : 5, "rClass" : "PHIL103", "rComments" : "Content was really interesting. I enjoy logic, but others struggled... | json_instruct | {"type": "object", "properties": {"ratings": {"type": "array", "items": {"type": "object", "properties": {"attendance": {"type": "string"}, "clarityColor": {"type": "string"}, "easyColor": {"type": "string"}, "helpColor": {"type": "string"}, "helpCount": {"type": "integer"}, "id": {"type": "integer"}, "notHelpCount": {... |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"manufacturer": {"type": "string"}, "devices": {"type": "array", "items": {"type": "object", "properties": {"manufacturer": {"type": "string"}, "market_name": {"type": "string"}, "codename": {"type": "string"}, "mo... | {"manufacturer" : "Oale", "devices" : [{"manufacturer" : "", "market_name" : "APEX1", "codename" : "Apex1", "model" : "Apex1"}, {"manufacturer" : "", "market_name" : "Apex2", "codename" : "Apex2", "model" : "Apex2"}, {"manufacturer" : "", "market_name" : "Apex3", "codename" : "Apex3", "model" : "Apex3"}, {"manufacturer... | json_instruct | {"type": "object", "properties": {"manufacturer": {"type": "string"}, "devices": {"type": "array", "items": {"type": "object", "properties": {"manufacturer": {"type": "string"}, "market_name": {"type": "string"}, "codename": {"type": "string"}, "model": {"type": "string"}}, "required": ["manufacturer", "market_name", "... |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"rows": {"type": "array", "items": {"type": "object", "properties": {"comp": {"type": "null"}, "match": {"type": "null"}, "red1": {"type": "null"}, "red2": {"type": "null"}, "redscore": {"type": "null"}, "blue1": {"type": "null... | {"rows" : [{"comp" : null, "match" : null, "red1" : null, "red2" : null, "redscore" : null, "blue1" : null, "blue2" : null, "bluescore" : null, "contrib" : "6226"}], "confed" : []} | json_instruct | {"type": "object", "properties": {"rows": {"type": "array", "items": {"type": "object", "properties": {"comp": {"type": "null"}, "match": {"type": "null"}, "red1": {"type": "null"}, "red2": {"type": "null"}, "redscore": {"type": "null"}, "blue1": {"type": "null"}, "blue2": {"type": "null"}, "bluescore": {"type": "null"... |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"builders": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "iso_url": {"type": "string"}, "iso_checksum_url": {"type": "string"}, "iso_checksum_type": {"type": "string"}, "output_director... | {"builders" : [{"type" : "qemu", "iso_url" : "{{user `mirror`}}/{{user `release`}}/ubuntu-{{user `release`}}-server-amd64.iso", "iso_checksum_url" : "{{user `mirror`}}/{{user `release`}}/SHA256SUMS", "iso_checksum_type" : "sha256", "output_directory" : "output-ubuntu-{{user `release`}}-amd64-{{build_type}}", "vm_name" ... | json_instruct | {"type": "object", "properties": {"builders": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "iso_url": {"type": "string"}, "iso_checksum_url": {"type": "string"}, "iso_checksum_type": {"type": "string"}, "output_directory": {"type": "string"}, "vm_name": {"type": "string"}, "d... |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"coord": {"type": "object", "properties": {"lon": {"type": "number"}, "lat": {"type": "number"}}, "required": ["lon", "lat"]}, "weather": {"type": "array", "items": {"type": "object", "properties": {"id": {"ty... | {"coord" : {"lon" : 10.5, "lat" : 51.5}, "weather" : [{"id" : 600, "main" : "Snow", "description" : "light snow", "icon" : "13d"}], "base" : "stations", "main" : {"temp" : 0.56, "feels_like" : -5.68, "temp_min" : 0, "temp_max" : 1.11, "pressure" : 1004, "humidity" : 86}, "visibility" : 8468, "wind" : {"speed" : 8.23, "... | json_instruct | {"type": "object", "properties": {"coord": {"type": "object", "properties": {"lon": {"type": "number"}, "lat": {"type": "number"}}, "required": ["lon", "lat"]}, "weather": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "main": {"type": "string"}, "description": {"type": "string"... |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"description": {"type": "string"}, "code": {"type": "string"}, "ldc": {"type": "array", "items": {}}, "sintaxis": {"type": "string"}, "atributos": {"type": "array", "items": {}}, "metodos": {"type": "array", "items"... | {"description" : "", "code" : "", "ldc" : [], "sintaxis" : "class Sequence\n", "atributos" : [], "metodos" : [], "constructores" : [{"nombre" : "Sequence", "description" : "", "code" : "", "ldc" : [], "sintaxis" : "class typing.Sequence(Reversible[T_co], Collection[T_co])\n", "parametros" : [{"nombre" : "Reversible[T_c... | json_instruct | {"type": "object", "properties": {"description": {"type": "string"}, "code": {"type": "string"}, "ldc": {"type": "array", "items": {}}, "sintaxis": {"type": "string"}, "atributos": {"type": "array", "items": {}}, "metodos": {"type": "array", "items": {}}, "constructores": {"type": "array", "items": {"type": "object", "... |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"id": {"type": "integer"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"src:alt_label": {"type": "string"}, "src:geom": {"type": "string"}, "wof:geomhash": {"type": "string"}, "wo... | {"id" : 101879513, "type" : "Feature", "properties" : {"src:alt_label" : "quattroshapes_pg", "src:geom" : "quattroshapes_pg", "wof:geomhash" : "f61c1ef1c48fe0bd7631df93f50dbaa1", "wof:id" : 101879513, "wof:repo" : "whosonfirst-data-admin-fr"}, "bbox" : [-1.06667, 48.75, -1.06667, 48.75], "geometry" : {"coordinates" : [... | 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": ["... |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"libraryStrings": {"type": "object", "properties": {"previousStep": {"type": "string"}, "nextStep": {"type": "string"}, "step": {"type": "string"}}, "required": ["previousStep", "nextStep", "step"]}}, "required": ["li... | {"libraryStrings" : {"previousStep" : "\u041f\u0440\u0435\u0434\u0438\u0448\u043d\u0430 \u0441\u0442\u044a\u043f\u043a\u0430", "nextStep" : "\u0421\u043b\u0435\u0434\u0432\u0430\u0449\u0430 \u0441\u0442\u044a\u043f\u043a\u0430", "step" : "\u0421\u0442\u044a\u043f\u043a\u0430 :index"}} | json_instruct | {"type": "object", "properties": {"libraryStrings": {"type": "object", "properties": {"previousStep": {"type": "string"}, "nextStep": {"type": "string"}, "step": {"type": "string"}}, "required": ["previousStep", "nextStep", "step"]}}, "required": ["libraryStrings"], "$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"}, "properties": {"type": "object", "properties": {"name": {"type": "string"}, "fips": {"type": "string"}, "state_code": {"type": "integer"}, "county_code": {"type": "integer"}, "population": ... | {"type" : "Feature", "properties" : {"name" : "Cook County", "fips" : "13075", "state_code" : 13, "county_code" : 75, "population" : 17270, "countrylevel_id" : "fips:13075", "census_data" : {"COUNTYNS" : "00343878", "AFFGEOID" : "0500000US13075", "LSAD" : "06", "ALAND" : 591237665, "AWATER" : 12755190}}, "geometry" : {... | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"name": {"type": "string"}, "fips": {"type": "string"}, "state_code": {"type": "integer"}, "county_code": {"type": "integer"}, "population": {"type": "integer"}, "countrylevel_id": {"type": "string"}, "census_d... |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"id": {"type": "string"}, "text": {"type": "string"}}, "required": ["id", "text"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "d981-70", "text" : "(initial efforts in this direction have already been undertaken.\nWith funds provided lay the current grant from the Ford Foundation,\nthe NAEB is conducting, this summer, a seminar on utilization\nof television and radio in the\nclassroom. Aupmmgxmtnaiay: Approximately half of the particip... | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "text": {"type": "string"}}, "required": ["id", "text"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "bin": {... | {"name" : "pickpocket-cli", "version" : "1.0.2", "description" : "CLI for the pickpocket module", "main" : "cli.js", "scripts" : {"test" : "ava test.js"}, "bin" : {"pickpocket" : "cli.js"}, "files" : ["cli.js"], "repository" : {"type" : "git", "url" : "git+https://github.com/janis-kra/pickpocket-cli.git"}, "keywords" :... | 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"]}, "bin": {"type": "object", "properties": {"pickpocket": {"type": "st... |
Following the schema specification below, generate a valid JSON instance:
{"type": "array", "items": {"type": "array", "items": {"type": "string"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [["530103009001", "\u4e4c\u9f99\u793e\u533a\u5c45\u59d4\u4f1a", "111", "0"], ["530103009002", "\u9ea6\u51b2\u793e\u533a\u5c45\u59d4\u4f1a", "220", "0"], ["530103009003", "\u9ea6\u5730\u5858\u793e\u533a\u5c45\u59d4\u4f1a", "220", "0"], ["530103009004", "\u5e84\u623f\u793e\u533a\u5c45\u59d4\u4f1a", "220", "0"]] | json_instruct | {"type": "array", "items": {"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": "object", "properties": {"browser": {"type": "string"}}, "required": ["browser"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"browser" : "surface/drawer.umd.js"} | json_instruct | {"type": "object", "properties": {"browser": {"type": "string"}}, "required": ["browser"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"id": {"type": "string"}}, "required": ["id"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "607926b0a335db9f4de82eb249849a2e062b2fe3"} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}}, "required": ["id"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"Plugins": {"type": "array", "items": {"type": "object", "properties": {"Type": {"type": "string"}, "Name": {"type": "string"}, "Root": {"type": "string"}, "LibraryPath": {"type": "string"}, "ResourcePath": {"type": "... | {"Plugins" : [{"Type" : "library", "Name" : "TestPlugDso2", "Root" : "@TEST_PLUG_INFO_ROOT@", "LibraryPath" : "@TEST_PLUG_INFO_LIBRARY_PATH@", "ResourcePath" : "@TEST_PLUG_INFO_RESOURCE_PATH@", "Info" : {"Types" : {"TestPlugDerived2" : {"bases" : ["_TestPlugBase<2>"]}}}}]} | json_instruct | {"type": "object", "properties": {"Plugins": {"type": "array", "items": {"type": "object", "properties": {"Type": {"type": "string"}, "Name": {"type": "string"}, "Root": {"type": "string"}, "LibraryPath": {"type": "string"}, "ResourcePath": {"type": "string"}, "Info": {"type": "object", "properties": {"Types": {"type":... |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"result_path": {"type": "string"}, "output_path": {"type": "string"}, "name": {"type": "string"}, "title": {"type": "string"}, "labels": {"type": "array", "items": {"type": "string"}}, "y_axis": {"type": "string"}, ... | {"result_path" : "./results/", "output_path" : "./diagrams/", "name" : "classify 10g sugar+carbo product name distinct", "title" : "", "labels" : ["oh-c", "un-c", "un-p", "un-rd"], "y_axis" : "Accuracy", "fliers" : true, "plots" : ["sugar 10g product names filtered distinct/one-hot-column-centroid name+sugar+carbo delt... | json_instruct | {"type": "object", "properties": {"result_path": {"type": "string"}, "output_path": {"type": "string"}, "name": {"type": "string"}, "title": {"type": "string"}, "labels": {"type": "array", "items": {"type": "string"}}, "y_axis": {"type": "string"}, "fliers": {"type": "boolean"}, "plots": {"type": "array", "items": {"ty... |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"version": {"type": "integer"}, "alias": {"type": "array", "items": {"type": "string"}}, "env": {"type": "object", "properties": {"NODE_ENV": {"type": "string"}, "PORT": {"type": "string"}}, "required": ["NODE_E... | {"version" : 2, "alias" : ["nest-server"], "env" : {"NODE_ENV" : "production", "PORT" : "80"}, "builds" : [{"src" : "dist/main.js", "use" : "@now/node@canary", "config" : {"maxLambdaSize" : "50mb"}}], "routes" : [{"src" : "/(.*)", "dest" : "dist/main.js"}]} | json_instruct | {"type": "object", "properties": {"version": {"type": "integer"}, "alias": {"type": "array", "items": {"type": "string"}}, "env": {"type": "object", "properties": {"NODE_ENV": {"type": "string"}, "PORT": {"type": "string"}}, "required": ["NODE_ENV", "PORT"]}, "builds": {"type": "array", "items": {"type": "object", "pro... |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"meta": {"type": "object", "properties": {"username": {"type": "string"}, "repositoryName": {"type": "string"}, "branch": {"type": "string"}, "cname": {"type": "string"}}, "required": ["username", "repositoryName", "... | {"meta" : {"username" : "acaciomartins", "repositoryName" : "acaciomartins.github.io", "branch" : "master", "cname" : ""}, "theme" : {"name" : "casper"}} | json_instruct | {"type": "object", "properties": {"meta": {"type": "object", "properties": {"username": {"type": "string"}, "repositoryName": {"type": "string"}, "branch": {"type": "string"}, "cname": {"type": "string"}}, "required": ["username", "repositoryName", "branch", "cname"]}, "theme": {"type": "object", "properties": {"name":... |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"title": {"type": "string"}, "fields": {"type": "array", "items": {"type": "string"}}, "abstract": {"type": "string"}, "citation": {"type": "string"}, "year": {"type": "string"}, "departments": {"type": "array", "it... | {"title" : "Object proposal by multi-branch hierarchical segmentation.", "fields" : ["viola jones object detection framework", "segmentation based object categorization", "merge", "scale space segmentation", "fold"], "abstract" : "Hierarchical segmentation based object proposal methods have become an important step in ... | json_instruct | {"type": "object", "properties": {"title": {"type": "string"}, "fields": {"type": "array", "items": {"type": "string"}}, "abstract": {"type": "string"}, "citation": {"type": "string"}, "year": {"type": "string"}, "departments": {"type": "array", "items": {"type": "string"}}, "conf": {"type": "string"}, "authors": {"typ... |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"$schema": {"type": "string"}, "contentVersion": {"type": "string"}, "parameters": {"type": "object", "properties": {"sites_appfunction_name": {"type": "object", "properties": {"value": {"type": "null"}}, "required": ["value... | {"$schema" : "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", "contentVersion" : "1.0.0.0", "parameters" : {"sites_appfunction_name" : {"value" : null}, "IotHubs_iothubresource_name" : {"value" : null}, "serverfarms_appservice_serverfarm_name" : {"value" : null}, "components_app_insi... | json_instruct | {"type": "object", "properties": {"$schema": {"type": "string"}, "contentVersion": {"type": "string"}, "parameters": {"type": "object", "properties": {"sites_appfunction_name": {"type": "object", "properties": {"value": {"type": "null"}}, "required": ["value"]}, "IotHubs_iothubresource_name": {"type": "object", "proper... |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"station": {"type": "array", "items": {"type": "object", "properties": {"pref_cd": {"type": "integer"}, "line_cd": {"type": "integer"}, "line_name": {"type": "string"}, "station_cd": {"type": "integer"}, "station_g_cd": {"type"... | {"station" : [{"pref_cd" : 40, "line_cd" : 11902, "line_name" : "JR\u9e7f\u5150\u5cf6\u672c\u7dda(\u4e0b\u95a2\u30fb\u9580\u53f8\u6e2f\uff5e\u535a\u591a)", "station_cd" : 1190209, "station_g_cd" : 1190209, "station_name" : "\u679d\u5149", "lon" : 130.813318, "lat" : 33.879367}]} | json_instruct | {"type": "object", "properties": {"station": {"type": "array", "items": {"type": "object", "properties": {"pref_cd": {"type": "integer"}, "line_cd": {"type": "integer"}, "line_name": {"type": "string"}, "station_cd": {"type": "integer"}, "station_g_cd": {"type": "integer"}, "station_name": {"type": "string"}, "lon": {"... |
Please provide a valid JSON object following this schema:
{"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "title": {"type": "string"}, "year": {"type": "integer"}, "type": {"type": "string"}, "nominations": {"type": "integer"}, "wins": {"type": "integer"}}, "required": ["id", "t... | [{"id" : 23153, "title" : "I've Come to Marry the Princess", "year" : 2016, "type" : "short-story", "nominations" : 0, "wins" : -1}, {"id" : 23157, "title" : "Mouth", "year" : 2015, "type" : "short-story", "nominations" : 0, "wins" : -1}, {"id" : 23237, "title" : "When We Were Giants", "year" : 2015, "type" : "short-st... | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "title": {"type": "string"}, "year": {"type": "integer"}, "type": {"type": "string"}, "nominations": {"type": "integer"}, "wins": {"type": "integer"}}, "required": ["id", "title", "year", "type", "nominations", "wins"]}, "$schema": ... |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"endpoints": {"type": "array", "items": {"type": "object", "properties": {"path": {"type": "string"}, "description": {"type": "string"}}, "required": ["path", "description"]}}}, "required": ["endpoints"], "$schema": "http://json-... | {"endpoints" : [{"path" : "/", "description" : "List of available endpoints (you are here)"}, {"path" : "/health", "description" : "Example of simple middleware usage (without router)"}, {"path" : "/post", "description" : "Receive POST body, parse it and return"}, {"path" : "/status", "description" : "Uptime and freeme... | json_instruct | {"type": "object", "properties": {"endpoints": {"type": "array", "items": {"type": "object", "properties": {"path": {"type": "string"}, "description": {"type": "string"}}, "required": ["path", "description"]}}}, "required": ["endpoints"], "$schema": "http://json-schema.org/draft-07/schema#"} |
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" : "rechiseled_compat:block/atmospheric_yucca_planks_flooring_connecting"} | json_instruct | {"type": "object", "properties": {"parent": {"type": "string"}}, "required": ["parent"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"71662": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "71665": {"type": "object", "properties": {"nama": {"type": "stri... | {"71662" : {"nama" : "BARAMMAMASE", "dapil" : [73, 7303, 17311, 2731703]}, "71665" : {"nama" : "BATU SITANDUK", "dapil" : [73, 7303, 17311, 2731703]}, "71658" : {"nama" : "BULO", "dapil" : [73, 7303, 17311, 2731703]}, "71661" : {"nama" : "HARAPAN", "dapil" : [73, 7303, 17311, 2731703]}, "71666" : {"nama" : "KALIBAMAMAS... | json_instruct | {"type": "object", "properties": {"71662": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "71665": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer... |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"categories": {"type": "array", "items": {"type": "string"}}, "desc": {"type": "string"}, "details": {"type": "object", "properties": {"authors": {"type": "string"}, "format": {"type": "string"}, "isbn-10": {"... | {"categories" : ["Engineering", "Programming"], "desc" : " &>standalone\u00a0product; MasteringEngineering", "details" : {"authors" : "David R. O'Hallaron", "format" : "pdf", "isbn-10" : "013409266X", "isbn-13" : "978-0134092669", "pages" : "1120 pages", "publication date" : "March 12, 2015", "publisher" : "Pearson", "... | json_instruct | {"type": "object", "properties": {"categories": {"type": "array", "items": {"type": "string"}}, "desc": {"type": "string"}, "details": {"type": "object", "properties": {"authors": {"type": "string"}, "format": {"type": "string"}, "isbn-10": {"type": "string"}, "isbn-13": {"type": "string"}, "pages": {"type": "string"},... |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"parent": {"type": "string"}}, "required": ["parent"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"parent" : "item/template_pig_spawn_egg"} | 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": {"main": {"type": "string"}}, "required": ["main"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"main" : "managetwitch.js"} | json_instruct | {"type": "object", "properties": {"main": {"type": "string"}}, "required": ["main"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"elt_id": {"type": "string"}, "previous": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}, "html": {"type": "string"}, "jstree_data": {"type": "object", "properties": {"text": {"type": "string"}, "state... | {"elt_id" : "texts:list__text1_text2:0:text1", "previous" : [["inside", "#tree_texts"]], "html" : "<select class=\"btn-add btn-list\"><option>New text1/text2</option><option class=\"xt-option-text1\" value=\"texts:list__text1_text2:0:text1\">text1</option><option class=\"xt-option-text2\" value=\"texts:list__text1_text... | json_instruct | {"type": "object", "properties": {"elt_id": {"type": "string"}, "previous": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}, "html": {"type": "string"}, "jstree_data": {"type": "object", "properties": {"text": {"type": "string"}, "state": {"type": "object", "properties": {"opened": {"type": "... |
Using the following JSON schema, generate a compatible JSON instance:
{"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" : "Saint-Gervais-d'Auvergne", "circ" : "2\u00e8me circonscription", "dpt" : "Puy-de-D\u00f4me", "inscrits" : 1010, "abs" : 438, "votants" : 572, "blancs" : 20, "nuls" : 8, "exp" : 544, "res" : [{"nuance" : "SOC", "nom" : "Mme Christine PIR\u00c8S BEAUNE", "voix" : 447}, {"nuance" : "REM", "nom" : "M. Mohand HAMO... | 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": {"citations": {"type": "array", "items": {"type": "object", "properties": {"textCitation": {"type": "string"}}, "required": ["textCitation"]}}, "names": {"type": "array", "items": {"type": "string"}}, "language": {"... | {"citations" : [{"textCitation" : "[See rlimf on Metamath](http://us.metamath.org/mpegif/rlimf.html)"}], "names" : ["rlimf"], "language" : "METAMATH_SET_MM", "lookupTerms" : ["#T_cF", "#T_crli", "#T_cA", "#T_wi", "#T_cF", "#T_wf--1", "#T_cdm", "#T_cF", "#T_wf--2", "#T_cc"], "metaLanguage" : "METAMATH", "remarks" : " Cl... | json_instruct | {"type": "object", "properties": {"citations": {"type": "array", "items": {"type": "object", "properties": {"textCitation": {"type": "string"}}, "required": ["textCitation"]}}, "names": {"type": "array", "items": {"type": "string"}}, "language": {"type": "string"}, "lookupTerms": {"type": "array", "items": {"type": "st... |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"code": {"type": "string"}, "lang": {"type": "string"}, "description": {"type": "null"}, "name": {"type": "string"}, "type": {"type": "string"}}, "required": ["code", "lang", "description", "name", "type"], "$schema": "http://jso... | {"code" : "IKTNZ2", "lang" : "de", "description" : null, "name" : "Nutzung von IKT", "type" : "Merkmal"} | json_instruct | {"type": "object", "properties": {"code": {"type": "string"}, "lang": {"type": "string"}, "description": {"type": "null"}, "name": {"type": "string"}, "type": {"type": "string"}}, "required": ["code", "lang", "description", "name", "type"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"2": {"type": "string"}, "3": {"type": "string"}, "4": {"type": "string"}, "E": {"type": "string"}, "A": {"type": "string"}, "Y": {"type": "string"}, "L": {"type": "string"}, "D": {"type": "string"}, "H": {"type": "s... | {"2" : "\u0259", "3" : "\u0437", "4" : "\ua72d", "E" : "\u025b", "A" : "\u2200", "Y" : "\u0264", "L" : "\u05ea", "D" : "\u311c", "H" : "\ua715", "5" : "\ua747", "F" : "\u07d4", "T" : "\u0275", "V" : "\u028e"} | json_instruct | {"type": "object", "properties": {"2": {"type": "string"}, "3": {"type": "string"}, "4": {"type": "string"}, "E": {"type": "string"}, "A": {"type": "string"}, "Y": {"type": "string"}, "L": {"type": "string"}, "D": {"type": "string"}, "H": {"type": "string"}, "5": {"type": "string"}, "F": {"type": "string"}, "T": {"type... |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"uuid": {"type": "string"}, "children": {"type": "array", "items": {"type": "string"}}, "befores": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "status": {"type": "string"}, "start": ... | {"uuid" : "7179c501-8380-441a-b2a2-dd7d7ff59211", "children" : ["39d8b82c-ecc9-4073-94b6-cef6bb0a3e33"], "befores" : [{"name" : "app", "status" : "passed", "start" : 1632511071281, "stop" : 1632511072379}], "start" : 1632511071281, "stop" : 1632511075440} | json_instruct | {"type": "object", "properties": {"uuid": {"type": "string"}, "children": {"type": "array", "items": {"type": "string"}}, "befores": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "status": {"type": "string"}, "start": {"type": "integer"}, "stop": {"type": "integer"}}, "require... |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "author": {"type": "string"}, "homepage": {"type": "string"}, "dependencies": {"type": "object", "properties": {"browser-sync": {"type"... | {"name" : "Readium", "version" : "2.0.0", "description" : "Just a medium-like blogging platform.", "author" : "Sven Read", "homepage" : "http://www.svenread.com/readium", "dependencies" : {"browser-sync" : "^2.6.9", "gulp" : "^3.8.11", "gulp-ruby-sass" : "^1.0.5"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "author": {"type": "string"}, "homepage": {"type": "string"}, "dependencies": {"type": "object", "properties": {"browser-sync": {"type": "string"}, "gulp": {"type": "string"}, "gulp-ruby-sass"... |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"swagger": {"type": "string"}, "info": {"type": "object", "properties": {"contact": {"type": "object", "properties": {}, "required": []}}, "required": ["contact"]}, "paths": {"type": "object", "properties": {"/v1/new... | {"swagger" : "2.0", "info" : {"contact" : {}}, "paths" : {"/v1/news/" : {"get" : {"description" : "List news", "tags" : ["News"], "responses" : {"200" : {"description" : "Test", "schema" : {"type" : "string"}}}}}, "/v1/users/" : {"get" : {"description" : "Get an item by its ID", "consumes" : ["application/json"], "prod... | json_instruct | {"type": "object", "properties": {"swagger": {"type": "string"}, "info": {"type": "object", "properties": {"contact": {"type": "object", "properties": {}, "required": []}}, "required": ["contact"]}, "paths": {"type": "object", "properties": {"/v1/news/": {"type": "object", "properties": {"get": {"type": "object", "prop... |
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": {"build": {"type": "string"}, "dev": {"type":... | {"name" : "react-config-boilerplate", "version" : "1.0.0", "description" : "A configurable boilerplate for redux projects.", "main" : "src/index.js", "scripts" : {"build" : "webpack --verbose --colors --display-error-details --config webpack/prod.config.js", "dev" : "webpack-dev-server --config webpack/dev.config.js", ... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"build": {"type": "string"}, "dev": {"type": "string"}, "postinstall": {"type": "string"}, "prod": {"type": "string"}, ... |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"author": {"type": "string"}, "dependencies": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "version_requirement": {"type": "string"}}, "required": ["name", "version_require... | {"author" : "Tom McLaughlin <tmclaughlin@hubspot.com>", "dependencies" : [{"name" : "puppetlabs/stdlib", "version_requirement" : ">=0.0.0"}, {"name" : "maestrodev/wget", "version_requirement" : ">=1.0.0"}], "description" : "Setup and configure Sonatype Nexus.\n\nhttp://www.sonatype.org/nexus/", "license" : "BSD License... | json_instruct | {"type": "object", "properties": {"author": {"type": "string"}, "dependencies": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "version_requirement": {"type": "string"}}, "required": ["name", "version_requirement"]}}, "description": {"type": "string"}, "license": {"type": "stri... |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"id": {"type": "string"}, "service_account_id": {"type": "string"}, "created_at": {"type": "string"}, "key_algorithm": {"type": "string"}, "public_key": {"type": "string"}, "private_key": {"type": "string"}}, "requir... | {"id" : "vstr", "service_account_id" : "vstr", "created_at" : "2022-03-26T17:01:30.096923290Z", "key_algorithm" : "RSA_2048", "public_key" : "-----BEGIN PUBLIC KEY-----\n", "private_key" : "-----BEGIN PRIVATE KEY-----\n"} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "service_account_id": {"type": "string"}, "created_at": {"type": "string"}, "key_algorithm": {"type": "string"}, "public_key": {"type": "string"}, "private_key": {"type": "string"}}, "required": ["id", "service_account_id", "created_at", "key_algorithm", "publ... |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"name": {"type": "string"}, "main": {"type": "string"}, "version": {"type": "string"}, "homepage": {"type": "string"}, "authors": {"type": "array", "items": {"type": "string"}}, "keywords": {"type": "array", "it... | {"name" : "image-preview", "main" : "image-preview.js", "version" : "0.0.3", "homepage" : "https://github.com/mambahao/image-preview", "authors" : ["Justin Hao <justin@haoyufeng.com>"], "keywords" : ["image-preview"], "license" : "MIT", "ignore" : ["**/.*", "node_modules", "bower_components", "test", "tests"]} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "main": {"type": "string"}, "version": {"type": "string"}, "homepage": {"type": "string"}, "authors": {"type": "array", "items": {"type": "string"}}, "keywords": {"type": "array", "items": {"type": "string"}}, "license": {"type": "string"}, "ignore": {"type"... |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}, "test": {"type": "string"}}, "r... | {"name" : "@isaacpearl/lighthouse-sitemap-auditor", "version" : "1.0.0", "description" : "A tool for running lighthouse audits across all pages of an .xml sitemap in bulk", "main" : "index.js", "scripts" : {"start" : "node index.js", "test" : "echo \"Error: no test specified\" && exit 1"}, "repository" : {"type" : "git... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}, "test": {"type": "string"}}, "required": ["start", "test"]}, "repository": {"type": "objec... |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"}
| ["vim-go-with-ultisnips"] | 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": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "publishConfig": {"type": "object", "properties": {"registry": {"type": "string"}}, "requ... | {"name" : "intram-node", "version" : "0.2.0", "description" : "INTRAM NODEJS API CLIENT", "main" : "index.js", "publishConfig" : {"registry" : "https://npm.pkg.github.com/"}, "scripts" : {"test" : "mocha"}, "keywords" : [], "author" : "Bahsoumany Oualid", "license" : "MIT", "dependencies" : {"bluebird" : "latest", "bod... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "publishConfig": {"type": "object", "properties": {"registry": {"type": "string"}}, "required": ["registry"]}, "scripts": {"type": "object", "properties": {"test": ... |
Generate sample JSON data that conforms to the following schema definition:
{"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "text": {"type": "string"}}, "required": ["id", "text"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"id" : "370832111200", "text" : "\u8d75\u575d\u6751\u6c11\u59d4\u5458\u4f1a"}, {"id" : "370832111201", "text" : "\u6768\u8425\u6751\u6c11\u59d4\u5458\u4f1a"}, {"id" : "370832111202", "text" : "\u9a6c\u8425\u6751\u6c11\u59d4\u5458\u4f1a"}, {"id" : "370832111203", "text" : "\u82a6\u91cc\u6751\u6c11\u59d4\u5458\u4f1a"},... | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "text": {"type": "string"}}, "required": ["id", "text"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}}, "required": ["start"]}, "license": {"type": "string"... | {"name" : "server", "version" : "1.0.0", "main" : "build/index.js", "scripts" : {"start" : "tsc && node build/index.js"}, "license" : "MIT", "dependencies" : {"express" : "^4.17.1", "tslint" : "^6.1.3", "typescript" : "^4.4.3"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}}, "required": ["start"]}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"express": {"type":... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.