input stringlengths 159 2.05k | output stringlengths 5 10.3k | task stringclasses 1
value | schema stringlengths 100 1.99k |
|---|---|---|---|
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"throws": {"type": "string"}}, "required": ["throws"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"throws" : "Binding 'eval' in strict mode (1:9)"} | json_instruct | {"type": "object", "properties": {"throws": {"type": "string"}}, "required": ["throws"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"name": {"type": "string"}, "max_rarity": {"type": "integer"}, "2-piece_bonus": {"type": "string"}, "4-piece_bonus": {"type": "string"}}, "required": ["name", "max_rarity", "2-piece_bonus", "4-piece_bonus"], "$schema"... | {"name" : "Bande vagabonde", "max_rarity" : 5, "2-piece_bonus" : "Augmente la ma\u00eetrise \u00e9l\u00e9mentaire de 80pts.", "4-piece_bonus" : "Augmente les DGT inflig\u00e9s par les attaques charg\u00e9es de 35% lorsque ce set d'art\u00e9facts est \u00e9quip\u00e9 par les personnages maniant un arc ou un catalyseur."... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "max_rarity": {"type": "integer"}, "2-piece_bonus": {"type": "string"}, "4-piece_bonus": {"type": "string"}}, "required": ["name", "max_rarity", "2-piece_bonus", "4-piece_bonus"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"symbols": {"type": "object", "properties": {}, "required": []}, "files": {"type": "object", "properties": {"vendor\\symfony\\translation\\Tests\\fixtures\\resources.ts": {"type": "string"}}, "required": ["ven... | {"symbols" : {}, "files" : {"vendor\\symfony\\translation\\Tests\\fixtures\\resources.ts" : "2019-07-30T17:32:12.985Z"}} | json_instruct | {"type": "object", "properties": {"symbols": {"type": "object", "properties": {}, "required": []}, "files": {"type": "object", "properties": {"vendor\\symfony\\translation\\Tests\\fixtures\\resources.ts": {"type": "string"}}, "required": ["vendor\\symfony\\translation\\Tests\\fixtures\\resources.ts"]}}, "required": ["s... |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"locationData": {"type": "object", "properties": {"relativeBoundingBox": {"type": "object", "properties": {"xmin": {"type": "number"}, "width": {"type": "number"}, "ymin": {"type": "number"}, "height": {"type": "number"}}, "... | {"locationData" : {"relativeBoundingBox" : {"xmin" : 0.27123937, "width" : 0.052601814, "ymin" : 0.17149946, "height" : 0.06575221}, "relativeKeypoints" : [{"y" : 0.1884222, "x" : 0.2728318}, {"y" : 0.21343894, "x" : 0.32131174}, {"y" : 0.20398639, "x" : 0.3212628}, {"y" : 0.19628893, "x" : 0.31690383}, {"y" : 0.190109... | json_instruct | {"type": "object", "properties": {"locationData": {"type": "object", "properties": {"relativeBoundingBox": {"type": "object", "properties": {"xmin": {"type": "number"}, "width": {"type": "number"}, "ymin": {"type": "number"}, "height": {"type": "number"}}, "required": ["xmin", "width", "ymin", "height"]}, "relativeKeyp... |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"Time": {"type": "string"}, "Temp": {"type": "number"}, "RelHum": {"type": "integer"}, "WindSpeed": {"type": "number"}, "WindDir": {"type": "integer"}}, "required": ["Time", "Temp", "RelHum", "WindSpeed", "WindDir"],... | {"Time" : "2021-02-10T08:00:00Z", "Temp" : 18.7, "RelHum" : 40, "WindSpeed" : 1.3, "WindDir" : 254} | json_instruct | {"type": "object", "properties": {"Time": {"type": "string"}, "Temp": {"type": "number"}, "RelHum": {"type": "integer"}, "WindSpeed": {"type": "number"}, "WindDir": {"type": "integer"}}, "required": ["Time", "Temp", "RelHum", "WindSpeed", "WindDir"], "$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"]}, "author": ... | {"name" : "place-lookup", "version" : "1.0.1", "description" : "A lightweight Node.js module to get the latitude and longitude for any fuzzy place name using the Google Places API", "main" : "index.js", "scripts" : {"test" : "echo \"Error: no test specified yet\" && exit 1"}, "author" : "Alicia Sykes <sykes.alicia@gmai... | 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... |
Create a JSON structure that matches this schema definition:
{"type": "array", "items": {"type": "object", "properties": {"label": {"type": "string"}, "normalizedVertices": {"type": "array", "items": {"type": "object", "properties": {"x": {"type": "number"}, "y": {"type": "number"}}, "required": ["x", "y"]}}, "score":... | [{"label" : "Owl", "normalizedVertices" : [{"x" : 0.2794706, "y" : 0.335}, {"x" : 0.7224119, "y" : 0.335}, {"x" : 0.7224119, "y" : 0.6739412}, {"x" : 0.2794706, "y" : 0.6739412}], "score" : 0.71131974}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"label": {"type": "string"}, "normalizedVertices": {"type": "array", "items": {"type": "object", "properties": {"x": {"type": "number"}, "y": {"type": "number"}}, "required": ["x", "y"]}}, "score": {"type": "number"}}, "required": ["label", "normalizedVertice... |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["typ... | {"name" : "redux-method-middleware", "version" : "1.0.0", "description" : "Similar to Promise Middleware, handle asynchronous callback functions via Redux Middleware", "repository" : {"type" : "git", "url" : "https://github.com/abhiaiyer91/redux-method-middleware.git"}, "license" : "MIT", "scripts" : {"prepublish" : ".... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "license": {"type": "string"}, "scripts": {"type": "object... |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"stationGroupId": {"type": "integer"}, "stations": {"type": "array", "items": {"type": "string"}}}, "required": ["stationGroupId", "stations"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"stationGroupId" : 1141536, "stations" : ["1141536"]} | json_instruct | {"type": "object", "properties": {"stationGroupId": {"type": "integer"}, "stations": {"type": "array", "items": {"type": "string"}}}, "required": ["stationGroupId", "stations"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"word" : "recompensive", "definition" : "Of the nature of recompense; serving to recompense. Sir T. Browne."} | json_instruct | {"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"elapsed": {"type": "string"}, "endpoint-url": {"type": "string"}, "entry-date": {"type": "string"}, "request-headers": {"type": "object", "properties": {"Accept": {"type": "string"}, "Accept-Encoding": {"type": "str... | {"elapsed" : "0.407", "endpoint-url" : "https://www.oxford.gov.uk/download/downloads/id/4244/oxford_brownfield_register_-_december_2017_csv.csv", "entry-date" : "2020-09-02T00:37:39.117809", "request-headers" : {"Accept" : "*/*", "Accept-Encoding" : "gzip, deflate", "Connection" : "keep-alive", "User-Agent" : "Digital ... | json_instruct | {"type": "object", "properties": {"elapsed": {"type": "string"}, "endpoint-url": {"type": "string"}, "entry-date": {"type": "string"}, "request-headers": {"type": "object", "properties": {"Accept": {"type": "string"}, "Accept-Encoding": {"type": "string"}, "Connection": {"type": "string"}, "User-Agent": {"type": "strin... |
Generate a valid JSON object that conforms to the following schema:
{"type": "array", "items": {"type": "array", "items": {"type": "string"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [["513230208200", "\u5c15\u591a\u6751\u6c11\u59d4\u5458\u4f1a", "210", "0"], ["513230208201", "\u70ed\u4e0d\u5361\u6751\u6c11\u59d4\u5458\u4f1a", "220", "0"], ["513230208202", "\u6c42\u5858\u6751\u6c11\u59d4\u5458\u4f1a", "220", "0"], ["513230208203", "\u6614\u90ce\u6751\u6c11\u59d4\u5458\u4f1a", "220", "0"], ["5132302... | json_instruct | {"type": "array", "items": {"type": "array", "items": {"type": "string"}}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "array", "items": {"type": "object", "properties": {"oq": {"type": "string"}, "q": {"type": "string"}, "rvnm": {"type": "string"}, "stcd": {"type": "string"}, "stnm": {"type": "string"}, "tm": {"type": "integer"}, "wptn": {"type": "string"}, "z": {"type"... | [{"oq" : "0", "q" : "5660", "rvnm" : "\u957f\u6c5f", "stcd" : "60105400", "stnm" : "\u5bf8\u6ee9", "tm" : 1606953600000, "wptn" : "5", "z" : "173.99"}, {"oq" : "0", "q" : "470", "rvnm" : "\u4e4c\u6c5f", "stcd" : "60803000", "stnm" : "\u6b66\u9686", "tm" : 1606953600000, "wptn" : "5", "z" : "174.12"}, {"oq" : "0", "q" :... | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"oq": {"type": "string"}, "q": {"type": "string"}, "rvnm": {"type": "string"}, "stcd": {"type": "string"}, "stnm": {"type": "string"}, "tm": {"type": "integer"}, "wptn": {"type": "string"}, "z": {"type": "string"}}, "required": ["oq", "q", "rvnm", "stcd", "st... |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"edges": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}, "features": {"type": "object", "properties": {"0": {"type": "string"}, "1": {"type": "string"}, "2": {"type": "string"}, "3":... | {"edges" : [[28, 29], [7, 33], [3, 13], [19, 12], [13, 21], [13, 2], [23, 13], [6, 13], [31, 30], [19, 12], [23, 13], [6, 13], [5, 13], [27, 1], [13, 3], [10, 13], [8, 13], [3, 13], [13, 3], [13, 35], [17, 13], [21, 13], [5, 13], [13, 5], [34, 26], [13, 3], [18, 22], [11, 12], [32, 4], [16, 9], [25, 20], [13, 17], [13,... | json_instruct | {"type": "object", "properties": {"edges": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}, "features": {"type": "object", "properties": {"0": {"type": "string"}, "1": {"type": "string"}, "2": {"type": "string"}, "3": {"type": "string"}, "4": {"type": "string"}, "5": {"type": "string"}, "6":... |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {"type": "integer"}}, "productReviews": {"type": "array", "items": {"type": "object", "properties": {"productId": {... | {"userId" : 42345, "cartId" : "1dac720f-2156-426d-b2cb-c646cfa897ad", "preferredProducts" : [316, 4535, 4584, 1468, 155, 2886, 2273, 688, 1137, 1724], "productReviews" : [{"productId" : 72, "reviewText" : "My co-worker Bryton has one of these. He says it looks ragged.", "reviewDate" : "2018-02-18T06:51:59.1359734+02:00... | json_instruct | {"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {"type": "integer"}}, "productReviews": {"type": "array", "items": {"type": "object", "properties": {"productId": {"type": "integer"}, "reviewText": {"type": "string"}, "reviewD... |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"nodes": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "predicate": {"type": "string"}, "args": {"type": "array", "items": {"type": "string"}}}, "required": ["id", "predicate", "args"]}}, ... | {"nodes" : [{"id" : "n1", "predicate" : "acceptable", "args" : ["NPS"]}, {"id" : "n2", "predicate" : "fact", "args" : ["HCN"]}, {"id" : "n3", "predicate" : "evidence", "args" : ["HCN", "NPS"]}], "edges" : [{"id" : "e1", "from" : "n1", "to" : "n2"}, {"id" : "e2", "from" : "n3", "to" : "n2"}], "variables" : {"NPS" : {"ty... | json_instruct | {"type": "object", "properties": {"nodes": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "predicate": {"type": "string"}, "args": {"type": "array", "items": {"type": "string"}}}, "required": ["id", "predicate", "args"]}}, "edges": {"type": "array", "items": {"type": "object", "p... |
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" : ["Sprinkle the chicken well with salt and pepper.", "Heat the oil and butter in a heavy-bottomed skillet. Add the chickenbreasts and saut\u00e9 over medium-high heat, turning the pieces often until lightly browned, about 5 minutes.", "Scatter the shallots and garlic around the chicken. Cook briefly; add... | json_instruct | {"type": "object", "properties": {"directions": {"type": "array", "items": {"type": "string"}}, "ingredients": {"type": "array", "items": {"type": "string"}}, "language": {"type": "string"}, "source": {"type": "string"}, "tags": {"type": "array", "items": {"type": "string"}}, "title": {"type": "string"}, "url": {"type"... |
Following the schema specification below, generate a valid JSON instance:
{"type": "array", "items": {"type": "object", "properties": {"DeniedAlternatives": {"type": "array", "items": {}}, "Files": {"type": "object", "properties": {"objects/minibiome/arboreal/shimbush1.object": {"type": "array", "items": {"type": "str... | [{"DeniedAlternatives" : [], "Files" : {"objects/minibiome/arboreal/shimbush1.object" : ["/description", "/shortdescription"], "objects/minibiome/arboreal/shimbush2.object" : ["/description", "/shortdescription"], "objects/minibiome/arboreal/shimbush3.object" : ["/description", "/shortdescription"]}, "Texts" : {"Chs" :... | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"DeniedAlternatives": {"type": "array", "items": {}}, "Files": {"type": "object", "properties": {"objects/minibiome/arboreal/shimbush1.object": {"type": "array", "items": {"type": "string"}}, "objects/minibiome/arboreal/shimbush2.object": {"type": "array", "i... |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "private": {"type": "boolean"}, "main": {"type": "string"}, "typings": {"type": "string"}, "scripts": {"type": "object", "properties"... | {"name" : "@otchi/api", "version" : "1.0.0", "description" : "", "private" : true, "main" : "dist/index.js", "typings" : "dist/index.d.ts", "scripts" : {"dev" : "nodemon", "build" : "tsc", "postbuild" : "lerna bootstrap"}, "keywords" : [], "author" : "", "license" : "ISC", "devDependencies" : {"@types/cheerio" : "^0.22... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "private": {"type": "boolean"}, "main": {"type": "string"}, "typings": {"type": "string"}, "scripts": {"type": "object", "properties": {"dev": {"type": "string"}, "build": {"type": "string"}, ... |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"comments": {"type": "boolean"}, "retainLines": {"type": "boolean"}, "compact": {"type": "boolean"}}, "required": ["comments", "retainLines", "compact"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"comments" : false, "retainLines" : true, "compact" : true} | json_instruct | {"type": "object", "properties": {"comments": {"type": "boolean"}, "retainLines": {"type": "boolean"}, "compact": {"type": "boolean"}}, "required": ["comments", "retainLines", "compact"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies 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" : 1126025225, "type" : "Feature", "properties" : {"src:alt_label" : "qs_pg", "src:geom" : "qs_pg", "wof:geomhash" : "9f219b82c1c4ddc0efdd9b10a643ce5a", "wof:id" : 1126025225, "wof:repo" : "whosonfirst-data-admin-fr"}, "bbox" : [6.15691, 48.24958, 6.15691, 48.24958], "geometry" : {"coordinates" : [6.15691, 48.2495... | 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": ["... |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"default-opacity": {"type": "number"}}, "required": ["default-opacity"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"default-opacity" : 0.7} | json_instruct | {"type": "object", "properties": {"default-opacity": {"type": "number"}}, "required": ["default-opacity"], "$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#"}
| ["cc-player-dxy"] | 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": {"title": {"type": "string"}, "author": {"type": "string"}, "description": {"type": "string"}, "thumb": {"type": "string"}, "download": {"type": "string"}, "origin": {"type": "string"}}, "required": ["title", "author", "descript... | {"title" : "Atago RaceQueen - Bubble Butt [Azur Lane]", "author" : "iwayen", "description" : "AzurundefinedLaneundefinedAtago", "thumb" : "//i.iwara.tv/sites/default/files/styles/thumbnail/public/videos/thumbnails/609784/thumbnail-609784_0004.jpg?itok=3PaHalmA", "download" : "https://www.iwara.tv/api/video/0m4wau1gejfz... | 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": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {"type": "integer"}}, "productReviews": {"type": "array", "items": {"type": "object", "properties": {"productId": {"type... | {"userId" : 85125, "cartId" : "beba407f-be0e-4596-a7b5-b406923afa66", "preferredProducts" : [3360, 3837, 2344, 500, 3097], "productReviews" : [{"productId" : 577, "reviewText" : "heard about this on rebetiko radio, decided to give it a try.", "reviewDate" : "2019-11-21T05:00:08.5586957+02:00"}, {"productId" : 1063, "re... | 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... |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"ast": {"type": "null"}, "code": {"type": "string"}, "map": {"type": "null"}, "metadata": {"type": "object", "properties": {}, "required": []}, "sourceType": {"type": "string"}}, "required": ["ast", "code", "map", "... | {"ast" : null, "code" : "import { Observable } from '../Observable';\nimport { innerFrom } from './from';\nimport { argsOrArgArray } from '../util/argsOrArgArray';\nimport { OperatorSubscriber } from '../operators/OperatorSubscriber';\nexport function race() {\n var sources = [];\n\n for (var _i = 0; _i < arguments.l... | json_instruct | {"type": "object", "properties": {"ast": {"type": "null"}, "code": {"type": "string"}, "map": {"type": "null"}, "metadata": {"type": "object", "properties": {}, "required": []}, "sourceType": {"type": "string"}}, "required": ["ast", "code", "map", "metadata", "sourceType"], "$schema": "http://json-schema.org/draft-07/s... |
Please provide a valid JSON object following this schema:
{"type": "array", "items": {"type": "object", "properties": {"comment": {"type": "string"}, "definition": {"type": "string"}, "orthologs": {"type": "object", "properties": {"K01909": {"type": "string"}, "K05939": {"type": "string"}}, "required": ["K01909", "K05... | [{"comment" : "", "definition" : "ATP + Long-chain fatty acid + Acyl-carrier protein <=> AMP + Diphosphate + Long-chain acyl-[acyl-carrier protein]", "orthologs" : {"K01909" : "long-chain-fatty-acid--[acyl-carrier-protein] ligase [EC:6.2.1.20]", "K05939" : "acyl-[acyl-carrier-protein]-phospholipid O-acyltransferase / l... | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"comment": {"type": "string"}, "definition": {"type": "string"}, "orthologs": {"type": "object", "properties": {"K01909": {"type": "string"}, "K05939": {"type": "string"}}, "required": ["K01909", "K05939"]}, "name": {"type": "string"}, "product_stoichiometrie... |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "main": {"type": "string"}, "repository": {"type": "object", "properties"... | {"name" : "express-static-compress", "version" : "1.0.5", "description" : "High performance static assets cache for express that also supports compression and maxAge cache-control.", "keywords" : ["express", "cache", "static", "compression", "deflate", "gzip", "cacheControl", "cache-control", "maxAge", "max-age", "perf... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "main": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, ... |
Generate sample JSON data that conforms to the following schema definition:
{"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" : "Computer usage in daily life.", "fields" : ["human computer interaction", "user profile", "multimedia", "asynchronous communication", "software"], "abstract" : "In this paper we explore the use of computer at home. This work is based on the automatic recording of application focus data in natural situation ... | 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": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"}
| ["appbuilder", "excel-push-pull", "julien-f-unzip", "mobile-cli-lib", "node-unzip-2", "tomahawkjs", "tomahawq", "unzip", "unzip-maxired", "unzip2"] | 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": {"title": {"type": "string"}, "fields": {"type": "array", "items": {"type": "string"}}, "abstract": {"type": "string"}, "citation": {"type": "string"}, "departments": {"type": "array", "items": {"type": "string"}}, "authors": {"... | {"title" : "The Geometry of Computation-Graph Abstraction.", "fields" : ["semantic data model", "lambda calculus", "geometry of interaction", "garbage collection", "automatic differentiation"], "abstract" : "The popular library TENSORFLOW (TF) has familiarised the mainstream of machine-learning community with programmi... | 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... |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"parent": {"type": "string"}}, "required": ["parent"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"parent" : "gamingmod:block/dark_block"} | json_instruct | {"type": "object", "properties": {"parent": {"type": "string"}}, "required": ["parent"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"id": {"type": "string"}, "district_id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "district_id", "name"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "1202020043", "district_id" : "1202020", "name" : "HADANGKAHAN"} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "district_id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "district_id", "name"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"name": {"type": "string"}, "scripts": {"type": "object", "properties": {"toc": {"type": "string"}}, "required": ["toc"]}, "dependencies": {"type": "object", "properties": {"markdown-toc": {"type": "string"}}, "required": ["... | {"name" : "awesome-electronics", "scripts" : {"toc" : "markdown-toc README.md -i"}, "dependencies" : {"markdown-toc" : "^1.1.0"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "scripts": {"type": "object", "properties": {"toc": {"type": "string"}}, "required": ["toc"]}, "dependencies": {"type": "object", "properties": {"markdown-toc": {"type": "string"}}, "required": ["markdown-toc"]}}, "required": ["name", "scripts", "dependencie... |
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" : "9e4ddc604e550b6e111506972e0e3c48b51dbf04"} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}}, "required": ["id"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"id": {"type": "string"}, "regency_id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "regency_id", "name"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "3271050", "regency_id" : "3271", "name" : "BOGOR BARAT"} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "regency_id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "regency_id", "name"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "array", "items": {"type": "object", "properties": {"namaKab": {"type": "string"}, "originalFilename": {"type": "string"}, "namaPartai": {"type": "string"}, "id": {"type": "integer"}, "noUrut": {"type": "integer"}, "nama": {"type": "string"}, "stringJeni... | [{"namaKab" : "OGAN KOMERING ULU SELATAN", "originalFilename" : "FHOTO.jpg", "namaPartai" : "PARTAI GERAKAN INDONESIA RAYA", "id" : 111747, "noUrut" : 1, "nama" : "KARLI, SE", "stringJenisKelamin" : "Laki-Laki"}, {"namaKab" : "OGAN KOMERING ULU SELATAN", "originalFilename" : "FHOTO.jpg", "namaPartai" : "PARTAI GERAKAN ... | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"namaKab": {"type": "string"}, "originalFilename": {"type": "string"}, "namaPartai": {"type": "string"}, "id": {"type": "integer"}, "noUrut": {"type": "integer"}, "nama": {"type": "string"}, "stringJenisKelamin": {"type": "string"}}, "required": ["namaKab", "... |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"id_8877": {"type": "object", "properties": {"title": {"type": "string"}, "language": {"type": "string"}, "totaltime": {"type": "string"}, "url_librivox": {"type": "string"}, "url_iarchive": {"type": "string"}, "readers": {"typ... | {"id_8877" : {"title" : "In Times Like These", "language" : "English", "totaltime" : "05:20:40", "url_librivox" : "http://librivox.org/in-times-like-these-by-nellie-mcclung/", "url_iarchive" : "http://archive.org/details/timeslikethese_1411_librivox", "readers" : ["7939"], "authors" : "10555", "genres" : "Family & Rela... | json_instruct | {"type": "object", "properties": {"id_8877": {"type": "object", "properties": {"title": {"type": "string"}, "language": {"type": "string"}, "totaltime": {"type": "string"}, "url_librivox": {"type": "string"}, "url_iarchive": {"type": "string"}, "readers": {"type": "array", "items": {"type": "string"}}, "authors": {"typ... |
Create a JSON structure that matches this schema definition:
{"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": {}... | {"directions" : ["Place the olive oil in a deep, heavy pot, and heat over medium-high heat. Stir in the onion, garlic, and 1 red pepper; cook until onion is transparent, about 5 minutes. Stir in the black beans. Add the mango, banana, cumin, ginger, and hot pepper sauce; stir and cook until fruit softens. Pour in the c... | json_instruct | {"type": "object", "properties": {"directions": {"type": "array", "items": {"type": "string"}}, "ingredients": {"type": "array", "items": {"type": "string"}}, "language": {"type": "string"}, "source": {"type": "string"}, "tags": {"type": "array", "items": {}}, "title": {"type": "string"}, "url": {"type": "string"}}, "r... |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"resources": {"type": "array", "items": {"type": "object", "properties": {"pattern": {"type": "string"}}, "required": ["pattern"]}}}, "required": ["resources"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"resources" : [{"pattern" : "\\QMETA-INF/swagger\\E"}, {"pattern" : ".*/swagger/micronaut-starter-.*yml"}, {"pattern" : "\\QMETA-INF/swagger/views/rapidoc/index.html\\E"}, {"pattern" : "\\QMETA-INF/swagger/views/swagger-ui/index.html\\E"}]} | json_instruct | {"type": "object", "properties": {"resources": {"type": "array", "items": {"type": "object", "properties": {"pattern": {"type": "string"}}, "required": ["pattern"]}}}, "required": ["resources"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"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" : 404349167, "type" : "Feature", "properties" : {"src:alt_label" : "quattroshapes", "src:geom" : "quattroshapes", "wof:geomhash" : "a8ccb59b210a96f3eaef011a0bdccc42", "wof:id" : 404349167, "wof:repo" : "whosonfirst-data-admin-fr"}, "bbox" : [1.76004192918469, 45.22592335140715, 1.8114489230611, 45.25821496292704]... | 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": {"ansible_version": {"type": "string"}, "requirements": {"type": "array", "items": {}}}, "required": ["ansible_version", "requirements"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"ansible_version" : "2.7.9", "requirements" : []} | json_instruct | {"type": "object", "properties": {"ansible_version": {"type": "string"}, "requirements": {"type": "array", "items": {}}}, "required": ["ansible_version", "requirements"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"glider-compat.min.js": {"type": "string"}, "glider.css": {"type": "string"}, "glider.js": {"type": "string"}, "glider.min.css": {"type": "string"}, "glider.min.js": {"type": "string"}}, "required": ["glider-compat.mi... | {"glider-compat.min.js" : "sha512-uDuWqOxg/d52jrK9sfrZf5qj1VjXlbekCDElkB/EOJAa6xOhLR1mVU1RZ0rFUqx5L4EkUPwyqPfJiwLF3D7Ypw==", "glider.css" : "sha512-rEnjEH5u8xKS8NLcXC4nuZwT89x+tMB19ddbolNGE7DTl6o3JEo11kHAwryLlALFnxdONjO4xVpjunLWdiZR1A==", "glider.js" : "sha512-WmXGzjXwJ6Q+GcyOEPXJt74JymP7JfSdKO0kV9OeMwP2GQwsaasexBKKIBH... | json_instruct | {"type": "object", "properties": {"glider-compat.min.js": {"type": "string"}, "glider.css": {"type": "string"}, "glider.js": {"type": "string"}, "glider.min.css": {"type": "string"}, "glider.min.js": {"type": "string"}}, "required": ["glider-compat.min.js", "glider.css", "glider.js", "glider.min.css", "glider.min.js"],... |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"background_color": {"type": "string"}, "description": {"type": "string"}, "display": {"type": "string"}, "name": {"type": "string"}, "orientation": {"type": "string"}, "scope": {"type": "string"}, "short_name": {"type": "strin... | {"background_color" : "{{ .Site.Params.brand_color }}", "description" : "{{ .Site.Params.description }}", "display" : "standalone", "name" : "{{ .Site.Title }}", "orientation" : "portrait", "scope" : "/", "short_name" : "{{ .Site.Title }}", "start_url" : "/?utm_source=homescreen", "theme_color" : "{{ .Site.Params.brand... | json_instruct | {"type": "object", "properties": {"background_color": {"type": "string"}, "description": {"type": "string"}, "display": {"type": "string"}, "name": {"type": "string"}, "orientation": {"type": "string"}, "scope": {"type": "string"}, "short_name": {"type": "string"}, "start_url": {"type": "string"}, "theme_color": {"type... |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"version": {"type": "number"}, "people": {"type": "array", "items": {"type": "object", "properties": {"pose_keypoints_2d": {"type": "array", "items": {"type": "number"}}, "face_keypoints_2d": {"type": "array", "item... | {"version" : 1.2, "people" : [{"pose_keypoints_2d" : [158.27, 446.998, 1, 211.071, 476.867, 1, 217.083, 488.906, 1, 290.309, 500.873, 1, 329.183, 510.883, 1, 211.039, 464.855, 1, 256.073, 443.787, 1, -1.29082, 0.29509, 0, 366.284, 460.96, 1, 476.185, 314.93, 1, 507.228, 399.746, 1, 374.289, 447.92, 1, 475.147, 315.928,... | json_instruct | {"type": "object", "properties": {"version": {"type": "number"}, "people": {"type": "array", "items": {"type": "object", "properties": {"pose_keypoints_2d": {"type": "array", "items": {"type": "number"}}, "face_keypoints_2d": {"type": "array", "items": {}}, "hand_left_keypoints_2d": {"type": "array", "items": {}}, "han... |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"ast": {"type": "null"}, "code": {"type": "string"}, "map": {"type": "object", "properties": {"version": {"type": "integer"}, "sources": {"type": "array", "items": {"type": "string"}}, "names": {"type": "array", "items": {"type... | {"ast" : null, "code" : "import{combineReducers}from'redux';import auth from'./auth_reducer';import expense from'./expense_reducer';import errors from'./error_reducer';export default combineReducers({auth:auth,expense:expense,errors:errors});", "map" : {"version" : 3, "sources" : ["C:/Users/ahmed/Documents/mern-expense... | json_instruct | {"type": "object", "properties": {"ast": {"type": "null"}, "code": {"type": "string"}, "map": {"type": "object", "properties": {"version": {"type": "integer"}, "sources": {"type": "array", "items": {"type": "string"}}, "names": {"type": "array", "items": {"type": "string"}}, "mappings": {"type": "string"}, "sourcesCont... |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"id": {"type": "string"}, "text": {"type": "string"}}, "required": ["id", "text"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "d530-46", "text" : "Ms*0 Harry'Jo S&oml\u00ae,\nJvOy 12, 1954\n-3-\nW\u00a9 do not belies that your association meana to give the\ninference that ooEsoroial ts&fiftlsiaii is built on violent, or that\neducational stations mat b\u00a9 justified on such a. paresis\u00a90 I thought\nhat this matte *h- .*.fbe call... | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "text": {"type": "string"}}, "required": ["id", "text"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "array", "items": {"type": "object", "properties": {"issues_url": {"type": "string"}, "members_url": {"type": "string"}, "description": {"type": "null"}, "public_members_url": {"type": "string"}, "url": {"type": "string"}, "events_url":... | [{"issues_url" : "https://api.github.com/orgs/PDXHub/issues", "members_url" : "https://api.github.com/orgs/PDXHub/members{/member}", "description" : null, "public_members_url" : "https://api.github.com/orgs/PDXHub/public_members{/member}", "url" : "https://api.github.com/orgs/PDXHub", "events_url" : "https://api.github... | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"issues_url": {"type": "string"}, "members_url": {"type": "string"}, "description": {"type": "null"}, "public_members_url": {"type": "string"}, "url": {"type": "string"}, "events_url": {"type": "string"}, "avatar_url": {"type": "string"}, "repos_url": {"type"... |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "compatibility": {"type": "string"}}, "required": ["name", "description", "compatibility"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "Related Parties", "description" : "An array of parties who are related to the milestone and a free text field to record any additional information", "compatibility" : ">=1.1"} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "compatibility": {"type": "string"}}, "required": ["name", "description", "compatibility"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "regexes": {"type": "array", "items": {"type": "string"}}}, "required": ["type", "regexes"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"type" : "number", "regexes" : ["\\b\\d*\\.?\\d+\\b"]}, {"type" : "function", "regexes" : ["^\\w+"]}, {"type" : "keyword", "regexes" : ["::", "@", "\\`.+\\`", "\\bas\\b", "\\bcase\\b", "\\bof\\b", "\\bclass\\b", "\\bdata\\b", "\\bdata family\\b", "\\bdata instance\\b", "\\bdefault\\b", "\\bderiving\\b", "\\bderiving ... | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "regexes": {"type": "array", "items": {"type": "string"}}}, "required": ["type", "regexes"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"Females": {"type": "array", "items": {}}, "Males": {"type": "array", "items": {"type": "object", "properties": {"Name": {"type": "string"}, "PinType": {"type": "string"}, "Protocols": {"type": "array", "items": {"type": "string"... | {"Females" : [], "Males" : [{"Name" : "Barrel", "PinType" : "DC Power Barrel", "Protocols" : ["USB 1.0", "USB 1.1", "USB 2.0"]}, {"Name" : "Wall Wart", "PinType" : "NEMA 5-15", "Protocols" : ["USB 1.0", "USB 1.1", "USB 2.0"]}], "Name" : "Generic AC Adapter - Barrel Plug"} | json_instruct | {"type": "object", "properties": {"Females": {"type": "array", "items": {}}, "Males": {"type": "array", "items": {"type": "object", "properties": {"Name": {"type": "string"}, "PinType": {"type": "string"}, "Protocols": {"type": "array", "items": {"type": "string"}}}, "required": ["Name", "PinType", "Protocols"]}}, "Nam... |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"actors": {"type": "array", "items": {}}, "countries": {"type": "array", "items": {}}, "enb_end_date": {"type": "string"}, "enb_long_title": {"type": "string"}, "enb_short_title": {"type": "string"}, "enb_start_date"... | {"actors" : [], "countries" : [], "enb_end_date" : "09-Jun-12", "enb_long_title" : "Thirty-fifth Session of the Intergovernmental Panel on Climate Change (IPCC)", "enb_short_title" : "IPCC-35", "enb_start_date" : "06-Jun-12", "enb_url" : "http://www.iisd.ca/vol12/enb12547e.html", "id" : "enb12547e_40", "section_title" ... | json_instruct | {"type": "object", "properties": {"actors": {"type": "array", "items": {}}, "countries": {"type": "array", "items": {}}, "enb_end_date": {"type": "string"}, "enb_long_title": {"type": "string"}, "enb_short_title": {"type": "string"}, "enb_start_date": {"type": "string"}, "enb_url": {"type": "string"}, "id": {"type": "s... |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"generated_at": {"type": "string"}, "required_by": {"type": "array", "items": {"type": "string"}}, "requires": {"type": "array", "items": {"type": "string"}}, "package": {"type": "string"}}, "required": ["generated_... | {"generated_at" : "2017-01-27T09:37:33.758149", "required_by" : ["datapipe"], "requires" : ["Django", "psycopg2"], "package" : "django-pgjsonb"} | json_instruct | {"type": "object", "properties": {"generated_at": {"type": "string"}, "required_by": {"type": "array", "items": {"type": "string"}}, "requires": {"type": "array", "items": {"type": "string"}}, "package": {"type": "string"}}, "required": ["generated_at", "required_by", "requires", "package"], "$schema": "http://json-sch... |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"id": {"type": "string"}, "title": {"type": "string"}, "author": {"type": "null"}, "language": {"type": "string"}, "license": {"type": "string"}, "citation": {"type": "string"}, "sentence_count": {"type": "integer"}... | {"id" : "torot:20180323:pskov-ivan", "title" : "Missive from Prince Ivan of Pskov, 1463\u20131465", "author" : null, "language" : "orv", "license" : "CC BY-NC-SA 4.0", "citation" : "Ivan of Pskov", "sentence_count" : 26, "token_count" : 339, "chunks" : [2747], "alignment" : {}} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "title": {"type": "string"}, "author": {"type": "null"}, "language": {"type": "string"}, "license": {"type": "string"}, "citation": {"type": "string"}, "sentence_count": {"type": "integer"}, "token_count": {"type": "integer"}, "chunks": {"type": "array", "item... |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"type": {"type": "string"}, "id": {"type": "string"}, "properties": {"type": "object", "properties": {"addr:city": {"type": "string"}, "addr:country": {"type": "string"}, "addr:housenumber": {"type": "string"}, "add... | {"type" : "Feature", "id" : "node/1448496573", "properties" : {"addr:city" : "Ried", "addr:country" : "CH", "addr:housenumber" : "26", "addr:postcode" : "3216", "addr:street" : "Kreuzweg", "name" : "Etter Gem\u00fcse und Jungpflanzen", "shop" : "farm", "id" : "node/1448496573"}, "geometry" : {"type" : "Point", "coordin... | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "id": {"type": "string"}, "properties": {"type": "object", "properties": {"addr:city": {"type": "string"}, "addr:country": {"type": "string"}, "addr:housenumber": {"type": "string"}, "addr:postcode": {"type": "string"}, "addr:street": {"type": "string"}, "na... |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"cam/image_array": {"type": "string"}, "user/angle": {"type": "number"}, "user/throttle": {"type": "number"}, "user/mode": {"type": "string"}, "pos/pos_x": {"type": "number"}, "pos/pos_y": {"type": "number"}, "pos/... | {"cam/image_array" : "5215_cam-image_array_.jpg", "user/angle" : 0.168, "user/throttle" : 0.764, "user/mode" : "user", "pos/pos_x" : 45.57447, "pos/pos_y" : 0.555894, "pos/pos_z" : 45.05651, "pos/speed" : 13.34517, "pos/cte" : -3.857901, "milliseconds" : 277703} | json_instruct | {"type": "object", "properties": {"cam/image_array": {"type": "string"}, "user/angle": {"type": "number"}, "user/throttle": {"type": "number"}, "user/mode": {"type": "string"}, "pos/pos_x": {"type": "number"}, "pos/pos_y": {"type": "number"}, "pos/pos_z": {"type": "number"}, "pos/speed": {"type": "number"}, "pos/cte": ... |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"nom": {"type": "string"}, "dpt": {"type": "string"}, "inscrits": {"type": "integer"}, "abs": {"type": "integer"}, "votants": {"type": "integer"}, "blancs": {"type": "integer"}, "nuls": {"type": "integer"}, "exp": {"t... | {"nom" : "Bouy", "dpt" : "Marne", "inscrits" : 406, "abs" : 84, "votants" : 322, "blancs" : 27, "nuls" : 10, "exp" : 285, "res" : [{"panneau" : "1", "voix" : 144}, {"panneau" : "2", "voix" : 141}]} | json_instruct | {"type": "object", "properties": {"nom": {"type": "string"}, "dpt": {"type": "string"}, "inscrits": {"type": "integer"}, "abs": {"type": "integer"}, "votants": {"type": "integer"}, "blancs": {"type": "integer"}, "nuls": {"type": "integer"}, "exp": {"type": "integer"}, "res": {"type": "array", "items": {"type": "object"... |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "object", "properties": {"name": {"type": "string"}, "... | {"name" : "clijs-boilerplate", "version" : "1.0.0", "description" : "A boilerplate to build CLIs with JavaScript", "keywords" : ["cli", "terminal", "boilerplate", "javascript"], "author" : {"name" : "Luiz Fernando Rodrigues", "email" : "fernahh@gmail.com", "url" : "http://fernahh.com.br"}, "license" : "MIT", "scripts" ... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}, "url": {"type": "string"}}, "re... |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"latest_version": {"type": "array", "items": {"type": "string"}}, "meta": {"type": "object", "properties": {"description": {"type": "string"}, "homepage": {"type": "string"}, "license": {"type": "string"}}, "require... | {"latest_version" : ["1.0"], "meta" : {"description" : "SQLAlchemy/Zope2 transaction integration", "homepage" : "http://svn.plone.org/svn/collective/collective.lead", "license" : "LGPL"}, "versions" : {"1.0" : {"sha256" : "1c0d15c0e58464d366a385045abab6a140a6c1c9c8092fc246b508cfc411fa3b", "url" : "https://files.pythonh... | 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... |
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": {"start": {"type": "string"}, "postinstall": {"type": "string... | {"name" : "nodemcu-file-tool", "version" : "1.0.0", "description" : "A tool for working with your NodeMCU", "main" : "main.js", "scripts" : {"start" : "electron .", "postinstall" : "electron-rebuild", "package" : "electron-packager . nodemcu-tool --overwrite --package-manager yarn && cp -rf ./node_modules/serialport ./... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}, "postinstall": {"type": "string"}, "package": {"type": "string"}}, "required": ["start", "... |
Please provide a valid JSON object following this schema:
{"type": "array", "items": {"type": "object", "properties": {"manufacturer": {"type": "string"}, "market_name": {"type": "string"}, "codename": {"type": "string"}, "model": {"type": "string"}}, "required": ["manufacturer", "market_name", "codename", "model"]}, ... | [{"manufacturer" : "Fossil", "market_name" : "Wear", "codename" : "firefish", "model" : "AX Connected"}, {"manufacturer" : "Fossil", "market_name" : "Wear", "codename" : "firefish", "model" : "Q Explorist HR"}, {"manufacturer" : "Fossil", "market_name" : "Wear", "codename" : "firefish", "model" : "Vapor 2"}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"manufacturer": {"type": "string"}, "market_name": {"type": "string"}, "codename": {"type": "string"}, "model": {"type": "string"}}, "required": ["manufacturer", "market_name", "codename", "model"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"nft": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "description": {"type": "string"}, "image": {"type": "string"}, "attributes": {"type": "array", "items": {"type": "o... | {"nft" : {"id" : "1752", "name" : "PixelFreak #01752", "description" : "They call us ugly, and misfits, but we prefer to call ourselves freaks", "image" : "ipfs://QmRkSa1ZVdbaLmC7k5cHvf3dx6nkfNEgvbcJjEhkBfbi1s", "attributes" : [{"trait_type" : "pet", "value" : "None"}, {"trait_type" : "body", "value" : "Demon"}, {"trai... | json_instruct | {"type": "object", "properties": {"nft": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "description": {"type": "string"}, "image": {"type": "string"}, "attributes": {"type": "array", "items": {"type": "object", "properties": {"trait_type": {"type": "string"}, "value": {"type": ... |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"plugins/jquery.min.js": {"type": "string"}, "rollbar.js": {"type": "string"}, "rollbar.min.js": {"type": "string"}, "rollbar.named-amd.js": {"type": "string"}, "rollbar.named-amd.min.js": {"type": "string"}, "rollbar.named-amd... | {"plugins/jquery.min.js" : "sha512-I0MreHfPQQ9fvXPcG4L1X5mGGPOrutiYgKIKlBf9mHaGhkGqKDp5s8sBo5oRlNO6NJV8b62ZXuXhzS8iAeXpTw==", "rollbar.js" : "sha512-S4MGsvREphWWu0gnp8KjC+6iO2mT9G4sfOQMrk3mA5QZiM/PdtPL30pzLrGa7ZvqFoTzBJEiI3PHTTCLd3s1Cw==", "rollbar.min.js" : "sha512-bDfkCaMFUqLKR/B76lE0vyUN3jRCgZ6ITNexeGjzGTU/aUnm/zFnw... | json_instruct | {"type": "object", "properties": {"plugins/jquery.min.js": {"type": "string"}, "rollbar.js": {"type": "string"}, "rollbar.min.js": {"type": "string"}, "rollbar.named-amd.js": {"type": "string"}, "rollbar.named-amd.min.js": {"type": "string"}, "rollbar.named-amd.nojson.js": {"type": "string"}, "rollbar.named-amd.nojson.... |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"api": {"type": "string"}, "city": {"type": "string"}, "country": {"type": "string"}, "data": {"type": "object", "properties": {"accountSupported": {"type": "boolean"}, "baseurl": {"type": "string"}, "KEY_SEARCH_QU... | {"api" : "pica", "city" : "Friedberg", "country" : "Deutschland", "data" : {"accountSupported" : true, "baseurl" : "https://opac.uni-giessen.de", "KEY_SEARCH_QUERY_FREE" : "6015", "db" : "40", "information" : "http://www.thm.de/bibliothek/"}, "geo" : [50.335278, 8.754999999999999], "state" : "Hessen", "support" : "Kata... | json_instruct | {"type": "object", "properties": {"api": {"type": "string"}, "city": {"type": "string"}, "country": {"type": "string"}, "data": {"type": "object", "properties": {"accountSupported": {"type": "boolean"}, "baseurl": {"type": "string"}, "KEY_SEARCH_QUERY_FREE": {"type": "string"}, "db": {"type": "string"}, "information": ... |
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" : "Unbounded cache model for online language modeling with open vocabulary.", "fields" : ["perplexity", "cache", "recurrent neural network", "leverage", "nearest neighbor search"], "abstract" : "Recently, continuous cache models were proposed as extensions to recurrent neural network language models, to adapt ... | 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... |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"stationId": {"type": "integer"}, "stationGroupId": {"type": "integer"}, "name": {"type": "string"}, "lineId": {"type": "integer"}, "zipCode": {"type": "string"}, "pref": {"type": "string"}, "city": {"type": "string"}, "town": {"... | {"stationId" : 9963719, "stationGroupId" : 9963719, "name" : "\u6797\u5d0e\u677e\u6c5f\u6d77\u5cb8", "lineId" : 99637, "zipCode" : "673-0035", "pref" : "\u5175\u5eab\u770c", "city" : "\u660e\u77f3\u5e02", "town" : "\u5357\u8cb4\u5d0e\u753a", "longitude" : 134.965056, "latitude" : 34.652289, "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... |
Construct a JSON document that adheres to this schema specification:
{"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "text": {"type": "string"}}, "required": ["id", "text"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"id" : "341602100200", "text" : "\u51cf\u5e97\u6751\u59d4\u4f1a"}, {"id" : "341602100201", "text" : "\u4e09\u53f0\u697c\u6751\u59d4\u4f1a"}, {"id" : "341602100202", "text" : "\u95e8\u5e84\u6751\u59d4\u4f1a"}, {"id" : "341602100205", "text" : "\u67f3\u884c\u6751\u59d4\u4f1a"}, {"id" : "341602100206", "text" : "\u8463\... | 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#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"data": {"type": "array", "items": {"type": "string"}}}, "required": ["data"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"data" : ["Awesome", "Rustic", "Small", "Gorgeous", "Fantastic", "Sleek", "Intelligent", "Unbranded", "Refined", "Licensed", "Generic", "Practical", "Ergonomic", "Handcrafted", "Tasty", "Handmade", "Incredible"]} | json_instruct | {"type": "object", "properties": {"data": {"type": "array", "items": {"type": "string"}}}, "required": ["data"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"\uc774\ub984": {"type": "string"}, "\ud55c\ubb38\uba85": {"type": "string"}, "\uc0dd\ub144\uc6d4\uc77c": {"type": "string"}, "\uc815\ub2f9": {"type": "string"}, "\uc120\uac70\uad6c": {"type": "string"}, "\ub2f9\uc120\ud69f\uc218... | {"\uc774\ub984" : "\uc774\uc778\uae30", "\ud55c\ubb38\uba85" : "\uf9e1\u4ec1\u57fa", "\uc0dd\ub144\uc6d4\uc77c" : "1953-02-26", "\uc815\ub2f9" : "\ubb34\uc18c\uc18d", "\uc120\uac70\uad6c" : "\uacbd\ubd81 \uace0\ub839\uad70\uc131\uc8fc\uad70\uce60\uace1\uad70", "\ub2f9\uc120\ud69f\uc218" : "3\uc120", "\ub2f9\uc120\ub300... | json_instruct | {"type": "object", "properties": {"\uc774\ub984": {"type": "string"}, "\ud55c\ubb38\uba85": {"type": "string"}, "\uc0dd\ub144\uc6d4\uc77c": {"type": "string"}, "\uc815\ub2f9": {"type": "string"}, "\uc120\uac70\uad6c": {"type": "string"}, "\ub2f9\uc120\ud69f\uc218": {"type": "string"}, "\ub2f9\uc120\ub300\uc218": {"type... |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"commands": {"type": "array", "items": {"type": "object", "properties": {"command": {"type": "string"}, "clientOnly": {"type": "boolean"}}, "required": ["command", "clientOnly"]}}, "offset": {"type": "integer"}, "count": {"type":... | {"commands" : [{"command" : "fake_command1", "clientOnly" : false}, {"command" : "fake_command2", "params" : "fake_params", "description" : "fake_description", "clientOnly" : false}], "offset" : 0, "count" : 2, "total" : 2, "success" : true} | json_instruct | {"type": "object", "properties": {"commands": {"type": "array", "items": {"type": "object", "properties": {"command": {"type": "string"}, "clientOnly": {"type": "boolean"}}, "required": ["command", "clientOnly"]}}, "offset": {"type": "integer"}, "count": {"type": "integer"}, "total": {"type": "integer"}, "success": {"t... |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"g": {"type": "array", "items": {"type": "number"}}, "logtime": {"type": "array", "items": {"type": "number"}}}, "required": ["g", "logtime"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"g" : [2.249772047505894, 2.5959317851808614, 2.892662387953437, 3.243758178767342, 3.5754286959150505, 4.06969958451391, 4.766655349741567, 5.496484366192256, 6.779836073040951, 7.768528182222621, 8.602192242742174, 10.00286575919676, 11.161248646862097, 14.40685733795879, 17.84742295390874, 18.891008878256272, 19.85... | json_instruct | {"type": "object", "properties": {"g": {"type": "array", "items": {"type": "number"}}, "logtime": {"type": "array", "items": {"type": "number"}}}, "required": ["g", "logtime"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"name": {"type": "string"}, "fips": {"type": "string"}, "state_code": {"type": "integer"}, "county_code": {"type": "integer"}, "popul... | {"type" : "Feature", "properties" : {"name" : "Lee County", "fips" : "37105", "state_code" : 37, "county_code" : 105, "population" : 61779, "countrylevel_id" : "fips:37105", "census_data" : {"COUNTYNS" : "01008567", "AFFGEOID" : "0500000US37105", "LSAD" : "06", "ALAND" : 660607408, "AWATER" : 10725289}}, "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": {"type": {"type": "string"}, "features": {"type": "array", "items": {"type": "object", "properties": {"geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "it... | {"type" : "FeatureCollection", "features" : [{"geometry" : {"type" : "Polygon", "coordinates" : [[[-75.25654, 40.582731], [-75.196803, 40.60858], [-75.192291, 40.602676], [-75.191443, 40.595492], [-75.189268, 40.589919], [-75.190035, 40.587122], [-75.194707, 40.581689], [-75.195485, 40.578964], [-75.194937, 40.577142],... | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "features": {"type": "array", "items": {"type": "object", "properties": {"geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "numbe... |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"name": {"type": "string"}, "displayName": {"type": "string"}, "description": {"type": "string"}, "version": {"type": "string"}, "publisher": {"type": "string"}, "author": {"type": "string"}, "license": {"type": "st... | {"name" : "sequelize-snippets", "displayName" : "Sequelize Snippets", "description" : "VS Code Sequelize ORM snippets", "version" : "1.0.0", "publisher" : "kvcvc", "author" : "Kova\u010devi\u0107 Marko", "license" : "MIT", "icon" : "icon.png", "repository" : {"type" : "git", "url" : "https://github.com/kvcvc/sequelize-... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "displayName": {"type": "string"}, "description": {"type": "string"}, "version": {"type": "string"}, "publisher": {"type": "string"}, "author": {"type": "string"}, "license": {"type": "string"}, "icon": {"type": "string"}, "repository": {"type": "object", "p... |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"NAD(P)H dehydrogenase subunit I": {"type": "string"}, "NADH-plastoquinone oxidoreductase subunit I": {"type": "string"}, "NDH subunit I": {"type": "string"}, "Q8HVM9": {"type": "string"}, "NDHI_PEUSC": {"type": "string"}, "... | {"NAD(P)H dehydrogenase subunit I" : "Q8HVM9", "NADH-plastoquinone oxidoreductase subunit I" : "Q8HVM9", "NDH subunit I" : "Q8HVM9", "Q8HVM9" : "Q8HVM9", "NDHI_PEUSC" : "Q8HVM9", "NAD(P)H-quinone oxidoreductase subunit I, chloroplastic" : "Q8HVM9", "ndhI" : "Q8HVM9"} | json_instruct | {"type": "object", "properties": {"NAD(P)H dehydrogenase subunit I": {"type": "string"}, "NADH-plastoquinone oxidoreductase subunit I": {"type": "string"}, "NDH subunit I": {"type": "string"}, "Q8HVM9": {"type": "string"}, "NDHI_PEUSC": {"type": "string"}, "NAD(P)H-quinone oxidoreductase subunit I, chloroplastic": {"ty... |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"text": {"type": "object", "properties": {"0": {"type": "object", "properties": {"m1": {"type": "string"}, "m2": {"type": "string"}}, "required": ["m1", "m2"]}, "1": {"type": "object", "properties": {"m1": {"type": ... | {"text" : {"0" : {"m1" : "\u062a\u0627 \u06a9\u06cc \u067e\u06cc \u0647\u0631 \u0646\u06af\u0627\u0631 \u0645\u0647\u0648\u0634\u060c \u0633\u0644\u0645\u0627\u0646\u060c", "m2" : "\u06af\u0631\u062f\u06cc \u0686\u0648 \u0633\u0631 \u0632\u0644\u0641 \u0645\u0634\u0648\u0634\u060c \u0633\u0644\u0645\u0627\u0646\u061f"}... | json_instruct | {"type": "object", "properties": {"text": {"type": "object", "properties": {"0": {"type": "object", "properties": {"m1": {"type": "string"}, "m2": {"type": "string"}}, "required": ["m1", "m2"]}, "1": {"type": "object", "properties": {"m1": {"type": "string"}, "m2": {"type": "string"}}, "required": ["m1", "m2"]}}, "requ... |
Using the following JSON schema, generate a compatible 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"}, "wof:id... | {"id" : 1125970109, "type" : "Feature", "properties" : {"src:alt_label" : "qs_pg", "src:geom" : "qs_pg", "wof:geomhash" : "084ac2e5c094d21f9664d57f9c80aa51", "wof:id" : 1125970109, "wof:repo" : "whosonfirst-data-admin-ro"}, "bbox" : [26.78333, 45.98333, 26.78333, 45.98333], "geometry" : {"coordinates" : [26.78333, 45.9... | json_instruct | {"type": "object", "properties": {"id": {"type": "integer"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"src:alt_label": {"type": "string"}, "src:geom": {"type": "string"}, "wof:geomhash": {"type": "string"}, "wof:id": {"type": "integer"}, "wof:repo": {"type": "string"}}, "required": ["... |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "homepage": {"type": "string"}, "main": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type":... | {"name" : "geojs", "version" : "0.15.0", "description" : "JavaScript Geo visualization and Analysis Library", "homepage" : "https://github.com/OpenGeoscience/geojs", "main" : "geo.js", "bugs" : {"url" : "https://github.com/OpenGeoscience/geojs/issues"}, "repository" : {"type" : "git", "url" : "https://github.com/OpenGe... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "homepage": {"type": "string"}, "main": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "repository": {"type": "object", "proper... |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"id": {"type": "string"}, "district_id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "district_id", "name"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "1201060015", "district_id" : "1201060", "name" : "TETE GOENAAI"} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "district_id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "district_id", "name"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "array", "items": {"type": "integer"}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [41694526672328253, 41416926672328253, 41694526672328253, 41416926672328253, 41694526672327213, 41694526672328253] | json_instruct | {"type": "array", "items": {"type": "integer"}, "$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": {"e_id": {"type": "string"}, "title": {"type": "string"}, "content": {"type": "string"}, "picNo": {"type": "string"}, "picUrl": {"type": "array", "items": {"type": "object", "properti... | [{"e_id" : "708", "title" : "\u5b89\u54e5\u62c9\u4e0e\u8461\u8404\u7259\u653f\u5e9c\u7b7e\u7f72\u72ec\u7acb\u6743\u5229\u7684\u300a\u963f\u6c83\u5c14\u534f\u8bae\u300b", "content" : "\n\u00a0\u00a0\u00a0\u00a0\u572846\u5e74\u524d\u7684\u4eca\u5929\uff0c1975\u5e741\u670815\u65e5(\u519c\u53861974\u5e7412\u67084\u65e5)\uf... | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"e_id": {"type": "string"}, "title": {"type": "string"}, "content": {"type": "string"}, "picNo": {"type": "string"}, "picUrl": {"type": "array", "items": {"type": "object", "properties": {"pic_title": {"type": "string"}, "suffix": {"type": "string"}, "id": {"... |
Based on the schema below, produce a valid JSON object:
{"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"}
| ["wf-bootstrap"] | json_instruct | {"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"requires": {"type": "boolean"}, "lockfileVersion": {"type": "integer"}, "dependencies": {"type": "object", "properties": {"array-flatten": {"type": "object", "properties": {"version": {"type": "string"}, "resolved"... | {"requires" : true, "lockfileVersion" : 1, "dependencies" : {"array-flatten" : {"version" : "3.0.0", "resolved" : "https://registry.npmjs.org/array-flatten/-/array-flatten-3.0.0.tgz", "integrity" : "sha512-zPMVc3ZYlGLNk4mpK1NzP2wg0ml9t7fUgDsayR5Y5rSzxQilzR9FGu/EH2jQOcKSAeAfWeylyW8juy3OkWRvNA=="}}} | json_instruct | {"type": "object", "properties": {"requires": {"type": "boolean"}, "lockfileVersion": {"type": "integer"}, "dependencies": {"type": "object", "properties": {"array-flatten": {"type": "object", "properties": {"version": {"type": "string"}, "resolved": {"type": "string"}, "integrity": {"type": "string"}}, "required": ["v... |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "author": {"type": "object", "properties": {"name": {"type": "string"}, "url": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "url", "... | {"name" : "event-drive", "version" : "1.1.2", "author" : {"name" : "Yoshitaka Sakamoto", "url" : "http://github.com/ystskm", "email" : "sakamoto@liberty-technology.biz"}, "contributors" : [], "description" : "Create event emitter with reactive callback", "dependencies" : {"micro-pipe" : "*"}, "devDependencies" : {"node... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "author": {"type": "object", "properties": {"name": {"type": "string"}, "url": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "url", "email"]}, "contributors": {"type": "array", "items": {}}, "descriptio... |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"description": {"type": "string"}, "language": {"type": "string"}, "recorded": {"type": "string"}, "related_urls": {"type": "array", "items": {"type": "object", "properties": {"label": {"type": "string"}, "url": {"typ... | {"description" : "Technical writing, in all its variations, is a type of interface with your product. It incorporates everything from an error message to an implementation guide. How can you as a developer make deploying, using, and promoting your product as painless as possible? Make it searchable. Make finding the an... | json_instruct | {"type": "object", "properties": {"description": {"type": "string"}, "language": {"type": "string"}, "recorded": {"type": "string"}, "related_urls": {"type": "array", "items": {"type": "object", "properties": {"label": {"type": "string"}, "url": {"type": "string"}}, "required": ["label", "url"]}}, "speakers": {"type": ... |
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-pf6g-9f5m-5mxf", "modified" : "2022-04-30T18:20:49Z", "published" : "2022-04-30T18:20:49Z", "aliases" : ["CVE-2002-1251"], "details" : "Buffer overflow in log2mail before 0.2.5.1 allows remote attackers to execute arbitrary code via a long log message.", "severity" : [], "affec... | 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... |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"BA533/77": {"type": "object", "properties": {"years": {"type": "array", "items": {"type": "null"}}, "original_title": {"type": "string"}, "date": {"type": "null"}, "width": {"type": "number"}, "folder": {"type": "null"}, "heig... | {"BA533/77" : {"years" : [null], "original_title" : "", "date" : null, "width" : 583.0, "folder" : null, "height" : 760.0, "text" : null, "thumb_url" : "http://purl.slwa.wa.gov.au/slwa_b1969392_1.png", "title" : "Gardam Building, 138 Murray Street, Perth, 1920", "image_url" : "http://purl.slwa.wa.gov.au/slwa_b1969392_1... | json_instruct | {"type": "object", "properties": {"BA533/77": {"type": "object", "properties": {"years": {"type": "array", "items": {"type": "null"}}, "original_title": {"type": "string"}, "date": {"type": "null"}, "width": {"type": "number"}, "folder": {"type": "null"}, "height": {"type": "number"}, "text": {"type": "null"}, "thumb_u... |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"objects": {"type": "object", "properties": {"vectile": {"type": "object", "properties": {"type": {"type": "string"}, "geometries": {"type": "array", "items": {"type": "object", "properties": {"arcs": {"type": "array... | {"objects" : {"vectile" : {"type" : "GeometryCollection", "geometries" : [{"arcs" : [[[0]], [[1]]], "type" : "MultiPolygon", "properties" : {"id" : 21, "nazev" : "Doma\ufffdlice"}, "clipped" : true, "id" : "a614e1ba40"}]}}, "type" : "Topology", "transform" : {"translate" : [12.568359374999993, 49.439556958940855], "sca... | json_instruct | {"type": "object", "properties": {"objects": {"type": "object", "properties": {"vectile": {"type": "object", "properties": {"type": {"type": "string"}, "geometries": {"type": "array", "items": {"type": "object", "properties": {"arcs": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"ty... |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"meshki.css": {"type": "string"}, "meshki.js": {"type": "string"}, "meshki.min.css": {"type": "string"}, "meshki.min.js": {"type": "string"}}, "required": ["meshki.css", "meshki.js", "meshki.min.css", "meshki.min.js"], "$sch... | {"meshki.css" : "sha256-KREw1hF8V/YCKedwyYe1aD4Eo4/RDX6Lc4URaFZRN04=", "meshki.js" : "sha256-YK1WuP0SVIolO2kdSay3v1YNOHrHM9puf1TiJv3FJnM=", "meshki.min.css" : "sha256-0fKZTeaUkDbp3PM46WMHeth2c/vfvGAr8U6cSI1deSM=", "meshki.min.js" : "sha256-4AOjQoTuDH012q29zSfLlsXsYGmMK3I9ZEyfFQcDFrs="} | json_instruct | {"type": "object", "properties": {"meshki.css": {"type": "string"}, "meshki.js": {"type": "string"}, "meshki.min.css": {"type": "string"}, "meshki.min.js": {"type": "string"}}, "required": ["meshki.css", "meshki.js", "meshki.min.css", "meshki.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"type": {"type": "string"}, "id": {"type": "string"}, "spec_version": {"type": "string"}, "objects": {"type": "array", "items": {"type": "object", "properties": {"created_by_ref": {"type": "string"}, "object_markin... | {"type" : "bundle", "id" : "bundle--1f66cc24-6469-4d6b-a2e6-789eec3a05cc", "spec_version" : "2.0", "objects" : [{"created_by_ref" : "identity--c78cb6e5-0c4b-4611-8297-d1b8b55e40b5", "object_marking_refs" : ["marking-definition--fa42a846-8d90-4e51-bc29-71d5b4802168"], "source_ref" : "course-of-action--cc2399fd-3cd3-4319... | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "id": {"type": "string"}, "spec_version": {"type": "string"}, "objects": {"type": "array", "items": {"type": "object", "properties": {"created_by_ref": {"type": "string"}, "object_marking_refs": {"type": "array", "items": {"type": "string"}}, "source_ref": {... |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"django": {"type": "object", "properties": {"parser": {"type": "string"}, "example_processor": {"type": "string"}, "model_path": {"type": "string"}, "beam_size": {"type": "integer"}}, "required": ["parser", "exa... | {"django" : {"parser" : "default_parser", "example_processor" : "django_example_processor", "model_path" : "data/pretrained_models/django.bin", "beam_size" : 15}} | json_instruct | {"type": "object", "properties": {"django": {"type": "object", "properties": {"parser": {"type": "string"}, "example_processor": {"type": "string"}, "model_path": {"type": "string"}, "beam_size": {"type": "integer"}}, "required": ["parser", "example_processor", "model_path", "beam_size"]}}, "required": ["django"], "$sc... |
Please provide a valid JSON object following this 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": ["descri... | {"latest_version" : ["1.0a1"], "meta" : {"description" : "AGX generator for plone products", "homepage" : "http://github.com/bluedynamics/agx.generator.plone", "license" : "GNU General Public Licence"}, "versions" : {"1.0a1" : {"sha256" : "3aa43badb72989defc0f5bb787036599f2281d2273d66f5da02602078f546296", "url" : "http... | 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... |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"modularity_score": {"type": "number"}, "explicitness_score_train": {"type": "number"}, "explicitness_score_test": {"type": "number"}, "elapsed_time": {"type": "number"}, "uuid": {"type": "string"}}, "required": ["modularity_scor... | {"modularity_score" : 0.8847066955909936, "explicitness_score_train" : 0.7861202073991629, "explicitness_score_test" : 0.7756057696781032, "elapsed_time" : 6.357369899749756, "uuid" : "650c0ee7-401b-47f3-a319-6d3b9246131b"} | json_instruct | {"type": "object", "properties": {"modularity_score": {"type": "number"}, "explicitness_score_train": {"type": "number"}, "explicitness_score_test": {"type": "number"}, "elapsed_time": {"type": "number"}, "uuid": {"type": "string"}}, "required": ["modularity_score", "explicitness_score_train", "explicitness_score_test"... |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"batchcomplete": {"type": "string"}, "query": {"type": "object", "properties": {"normalized": {"type": "array", "items": {"type": "object", "properties": {"from": {"type": "string"}, "to": {"type": "string"}}, "requir... | {"batchcomplete" : "", "query" : {"normalized" : [{"from" : "Csan\u00e1d_G\u00e9mesi", "to" : "Csan\u00e1d G\u00e9mesi"}], "pages" : {"43491277" : {"pageid" : 43491277, "ns" : 0, "title" : "Csan\u00e1d G\u00e9mesi", "pageprops" : {"defaultsort" : "Gemesi, Csanad", "page_image_free" : "Csanad_Gemesi_Fencing_WCH_SMS-IN_t... | json_instruct | {"type": "object", "properties": {"batchcomplete": {"type": "string"}, "query": {"type": "object", "properties": {"normalized": {"type": "array", "items": {"type": "object", "properties": {"from": {"type": "string"}, "to": {"type": "string"}}, "required": ["from", "to"]}}, "pages": {"type": "object", "properties": {"43... |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"id": {"type": "string"}, "district_id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "district_id", "name"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "7603010004", "district_id" : "7603010", "name" : "TADISI"} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "district_id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "district_id", "name"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"cSpell.words": {"type": "array", "items": {"type": "string"}}, "deno.enable": {"type": "boolean"}, "deno.lint": {"type": "boolean"}, "deno.unstable": {"type": "boolean"}}, "required": ["cSpell.words", "deno.enable", "deno.lint",... | {"cSpell.words" : ["singleflight"], "deno.enable" : true, "deno.lint" : true, "deno.unstable" : false} | json_instruct | {"type": "object", "properties": {"cSpell.words": {"type": "array", "items": {"type": "string"}}, "deno.enable": {"type": "boolean"}, "deno.lint": {"type": "boolean"}, "deno.unstable": {"type": "boolean"}}, "required": ["cSpell.words", "deno.enable", "deno.lint", "deno.unstable"], "$schema": "http://json-schema.org/dra... |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"Time": {"type": "string"}, "Temp": {"type": "number"}, "RelHum": {"type": "integer"}, "WindSpeed": {"type": "number"}, "WindDir": {"type": "integer"}}, "required": ["Time", "Temp", "RelHum", "WindSpeed", "WindDir"... | {"Time" : "2021-06-29T01:00:00Z", "Temp" : 21.7, "RelHum" : 77, "WindSpeed" : 2.4, "WindDir" : 266} | json_instruct | {"type": "object", "properties": {"Time": {"type": "string"}, "Temp": {"type": "number"}, "RelHum": {"type": "integer"}, "WindSpeed": {"type": "number"}, "WindDir": {"type": "integer"}}, "required": ["Time", "Temp", "RelHum", "WindSpeed", "WindDir"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"Content": {"type": "string"}, "ID": {"type": "string"}, "Tag": {"type": "string"}, "Time": {"type": "string"}, "User": {"type": "string"}}, "required": ["Content", "ID", "Tag", "Time", "User"], "$schema": "http://json-schema.org... | {"Content" : "\u6a13\u4e0a\u7d0d\u7c73\u5c4c", "ID" : "M.1467370683.A.B0B_513", "Tag" : "\u63a8 ", "Time" : " 07/04 15:28\n", "User" : "HuChunhua"} | json_instruct | {"type": "object", "properties": {"Content": {"type": "string"}, "ID": {"type": "string"}, "Tag": {"type": "string"}, "Time": {"type": "string"}, "User": {"type": "string"}}, "required": ["Content", "ID", "Tag", "Time", "User"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "full_name": {"type": "string"}, "owner": {"type": "object", "properties": {"login": {"type": "string"}, "id": {"type": "integer"}, "avatar_url":... | [{"id" : 148659258, "name" : "CVE-2018-16987", "full_name" : "gquere/CVE-2018-16987", "owner" : {"login" : "gquere", "id" : 1585000, "avatar_url" : "https://avatars.githubusercontent.com/u/1585000?v=4", "html_url" : "https://github.com/gquere"}, "html_url" : "https://github.com/gquere/CVE-2018-16987", "description" : "... | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "full_name": {"type": "string"}, "owner": {"type": "object", "properties": {"login": {"type": "string"}, "id": {"type": "integer"}, "avatar_url": {"type": "string"}, "html_url": {"type": "string"}}, "requ... |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"name": {"type": "string"}, "main": {"type": "string"}, "version": {"type": "string"}, "homepage": {"type": "string"}, "authors": {"type": "array", "items": {"type": "string"}}, "license": {"type": "string"}, "ignor... | {"name" : "backbone.genetics", "main" : "backbone.genetics.js", "version" : "0.0.2", "homepage" : "https://github.com/awkward/backbone.genetics", "authors" : ["David van Leeuwen <david@madeawkward.com>"], "license" : "MIT", "ignore" : ["**/.*", "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"}}, "license": {"type": "string"}, "ignore": {"type": "array", "items": {"type": "string"}}}, "required": ["name... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.