input
stringlengths
159
2.05k
output
stringlengths
5
10.3k
task
stringclasses
1 value
schema
stringlengths
100
1.99k
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"pages": {"type": "array", "items": {"type": "string"}}, "window": {"type": "object", "properties": {"navigationStyle": {"type": "string"}, "backgroundTextStyle": {"type": "string"}, "navigationBarBackgroundColor": {"type": "st...
{"pages" : ["pages/index/index", "pages/detail/detail", "pages/web-view/web-view", "pages/search/search", "pages/board/board"], "window" : {"navigationStyle" : "custom", "backgroundTextStyle" : "light", "navigationBarBackgroundColor" : "#8BCEFF", "navigationBarTitleText" : "\u5357\u82d1\u5bfc\u89c8", "navigationBarText...
json_instruct
{"type": "object", "properties": {"pages": {"type": "array", "items": {"type": "string"}}, "window": {"type": "object", "properties": {"navigationStyle": {"type": "string"}, "backgroundTextStyle": {"type": "string"}, "navigationBarBackgroundColor": {"type": "string"}, "navigationBarTitleText": {"type": "string"}, "navi...
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"pli-tv-bi-vb-pc43:1.1": {"type": "string"}, "pli-tv-bi-vb-pc43:1.3": {"type": "string"}, "pli-tv-bi-vb-pc43:1.5": {"type": "string"}, "pli-tv-bi-vb-pc43:1.14.1": {"type": "string"}, "pli-tv-bi-vb-pc43:2.1.1":...
{"pli-tv-bi-vb-pc43:1.1" : "dr3.152, ms2V_3011, msdiv986, pts-cs1, pts-vp-en3.328, sc1", "pli-tv-bi-vb-pc43:1.3" : "pts-vp-pli4.300", "pli-tv-bi-vb-pc43:1.5" : "cck3.168, ms2V_3012, sc2, sya3.168, vri88.410", "pli-tv-bi-vb-pc43:1.14.1" : "ms2V_3013, msdiv987, ndp2.410, sc3", "pli-tv-bi-vb-pc43:2.1.1" : "mc3.142, ms2V_3...
json_instruct
{"type": "object", "properties": {"pli-tv-bi-vb-pc43:1.1": {"type": "string"}, "pli-tv-bi-vb-pc43:1.3": {"type": "string"}, "pli-tv-bi-vb-pc43:1.5": {"type": "string"}, "pli-tv-bi-vb-pc43:1.14.1": {"type": "string"}, "pli-tv-bi-vb-pc43:2.1.1": {"type": "string"}, "pli-tv-bi-vb-pc43:2.1.5": {"type": "string"}, "pli-tv-b...
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"nom": {"type": "string"}, "circ": {"type": "string"}, "dpt": {"type": "string"}, "inscrits": {"type": "integer"}, "abs": {"type": "integer"}, "votants": {"type": "integer"}, "blancs": {"type": "integer"}, "nuls": {"...
{"nom" : "Blessonville", "circ" : "1\u00e8re circonscription", "dpt" : "Haute-Marne", "inscrits" : 192, "abs" : 116, "votants" : 76, "blancs" : 1, "nuls" : 3, "exp" : 72, "res" : [{"nuance" : "REM", "nom" : "Mme B\u00e9rang\u00e8re ABBA", "voix" : 38}, {"nuance" : "LR", "nom" : "M. Adrien GUEN\u00c9", "voix" : 34}]}
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"...
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "homepage": {"type": "string"}, "type": {"type": "string"}, "license": {"type": "string"}, "a...
{"name" : "jouwweb/sendcloud", "description" : "Provides a client to interact with the Sendcloud API in an object-oriented way.", "keywords" : ["sendcloud", "client", "api", "jouwweb", "parcel", "webhook"], "homepage" : "https://github.com/Webador/sendcloud", "type" : "library", "license" : "MIT", "authors" : [{"name" ...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "homepage": {"type": "string"}, "type": {"type": "string"}, "license": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {...
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"jquery.panzoom.js": {"type": "string"}, "jquery.panzoom.min.js": {"type": "string"}}, "required": ["jquery.panzoom.js", "jquery.panzoom.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"jquery.panzoom.js" : "sha256-WV+nAXTC7R5qJVQeZ2SHFVJR/ggnMkX90kMnC6MRii8=", "jquery.panzoom.min.js" : "sha256-zD7+6Q+MSErGLV/pmz5mWeFtJ79AdfRA5pZn9TT2uVA="}
json_instruct
{"type": "object", "properties": {"jquery.panzoom.js": {"type": "string"}, "jquery.panzoom.min.js": {"type": "string"}}, "required": ["jquery.panzoom.js", "jquery.panzoom.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"s": {"type": "string"}, "run": {"type": "integer"}, "luminosity": {"type": "number"}, "version": {"type": "string"}}, "required": ["s", "run", "luminosity", "version"], "$schema": "http://json-schema.org/draft-07/s...
{"s" : "abcd", "run" : 123, "luminosity" : 3.14, "version" : "2.4"}
json_instruct
{"type": "object", "properties": {"s": {"type": "string"}, "run": {"type": "integer"}, "luminosity": {"type": "number"}, "version": {"type": "string"}}, "required": ["s", "run", "luminosity", "version"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"directions": {"type": "array", "items": {"type": "string"}}, "ingredients": {"type": "array", "items": {"type": "string"}}, "language": {"type": "string"}, "source": {"type": "string"}, "tags": {"type": "array", "it...
{"directions" : ["Place rice in a strainer and rinse under cold water until run-off turns from cloudy to completely clear, about 2 minutes. Place strainer over a bowl and let drain until almost dry, about 1 hour. Transfer to a heavy bottom saucepan with a tight-fitting lid.", "Pour water over rice. Place pot over mediu...
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...
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"authors": {"type": "object", "properties": {"name": {"type": "string"}, "url": {"type": "string"}}, "required": ["name", "url"]}, "description": {"type": "string"}, "examples": {"type": "array", "items": {"type": "st...
{"authors" : {"name" : "Leong Kum Loong (NYP)", "url" : "https://os.mbed.com/teams/Leong-Kum-Loong/"}, "description" : "My HCSR04 library written for HC-SR04 Ultrasonic Ranging sensor.", "examples" : ["https://os.mbed.com/teams/Leong-Kum-Loong/code/Utrasonic_Example/"], "frameworks" : "mbed", "keywords" : ["HC-SR04", "...
json_instruct
{"type": "object", "properties": {"authors": {"type": "object", "properties": {"name": {"type": "string"}, "url": {"type": "string"}}, "required": ["name", "url"]}, "description": {"type": "string"}, "examples": {"type": "array", "items": {"type": "string"}}, "frameworks": {"type": "string"}, "keywords": {"type": "arra...
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"version": {"type": "number"}, "people": {"type": "array", "items": {"type": "object", "properties": {"face_keypoints": {"type": "array", "items": {}}, "pose_keypoints": {"type": "array", "items": {"type": "number"}}, "hand_rig...
{"version" : 1.0, "people" : [{"face_keypoints" : [], "pose_keypoints" : [82.6456692913386, 34.6763636363636, 0.919314786791801, 95.748031496063, 75.8690909090909, 0.742059022188187, 58.9606299212598, 79.8254545454545, 0.673971608281136, 52.6614173228346, 137.774545454545, 0.6679727435112, 46.8661417322835, 192, 0.6083...
json_instruct
{"type": "object", "properties": {"version": {"type": "number"}, "people": {"type": "array", "items": {"type": "object", "properties": {"face_keypoints": {"type": "array", "items": {}}, "pose_keypoints": {"type": "array", "items": {"type": "number"}}, "hand_right_keypoints": {"type": "array", "items": {}}, "hand_left_k...
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"uuid": {"type": "string"}, "befores": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "status": {"type": "string"}, "start": {"type": "integer"}, "stop": {"type": "int...
{"uuid" : "3eda8dc8-5b6e-49e5-a7f3-693a5565cf65", "befores" : [{"name" : "checkin_alzer", "status" : "passed", "start" : 1597961811174, "stop" : 1597961811174}], "start" : 1597961811174, "stop" : 1597961829803}
json_instruct
{"type": "object", "properties": {"uuid": {"type": "string"}, "befores": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "status": {"type": "string"}, "start": {"type": "integer"}, "stop": {"type": "integer"}}, "required": ["name", "status", "start", "stop"]}}, "start": {"type":...
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "array", "items": {}}}, "required": ["contrac...
{"contract" : "0x0759d3b719ff3c1f88e03a41c6d2241aa29dc9c0", "tool" : "oyente", "start" : 1563342669.8256671, "end" : 1563342673.8277676, "duration" : 4.002100467681885, "analysis" : []}
json_instruct
{"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "array", "items": {}}}, "required": ["contract", "tool", "start", "end", "duration", "analysis"], "$schema": "http://...
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"version": {"type": "number"}, "people": {"type": "array", "items": {"type": "object", "properties": {"pose_keypoints": {"type": "array", "items": {"type": "number"}}, "face_keypoints": {"type": "array", "items": {}}, "hand_...
{"version" : 1.0, "people" : [{"pose_keypoints" : [319.581, 97.7492, 0.890005, 315.659, 151.371, 0.829862, 264.777, 150.03, 0.809789, 207.385, 170.815, 0.834604, 220.411, 89.9817, 0.765551, 366.505, 156.499, 0.712413, 433.066, 161.8, 0.853636, 419.995, 84.7841, 0.733123, 275.2, 316.94, 0.513844, 273.921, 443.486, 0.568...
json_instruct
{"type": "object", "properties": {"version": {"type": "number"}, "people": {"type": "array", "items": {"type": "object", "properties": {"pose_keypoints": {"type": "array", "items": {"type": "number"}}, "face_keypoints": {"type": "array", "items": {}}, "hand_left_keypoints": {"type": "array", "items": {}}, "hand_right_k...
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"pageContext": {"type": "object", "properties": {"id": {"type": "string"}}, "required": ["id"]}}, "required": ["pageContext"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"pageContext" : {"id" : "61be9b9e-3e35-5119-b709-0cf021f9e0c4"}}
json_instruct
{"type": "object", "properties": {"pageContext": {"type": "object", "properties": {"id": {"type": "string"}}, "required": ["id"]}}, "required": ["pageContext"], "$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": {"FAQ": {"type": "object", "properties": {"\u80fd\u91cf": {"type": "string"}}, "required": ["\u80fd\u91cf"]}}, "required": ["FAQ"]}, "$schema": "http://json-schema.org/draft-07/schema...
[{"FAQ" : {"\u80fd\u91cf" : "\u80fd\u91cf\u662ftest\u5167\u5bb9 2"}}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"FAQ": {"type": "object", "properties": {"\u80fd\u91cf": {"type": "string"}}, "required": ["\u80fd\u91cf"]}}, "required": ["FAQ"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"ObjectID": {"type": "object", "properties": {"$oid": {"type": "string"}}, "required": ["$oid"]}, "customerID": {"type": "string"}, "FirstName": {"type": "string"}, "LastName": {"type": "string"}, "Email": {"typ...
{"ObjectID" : {"$oid" : "5cc0db8a22ce4a0d8d89fddc"}, "customerID" : "c309daf3-9fc9-4a95-b044-a57649712f06", "FirstName" : "Reed", "LastName" : "Carey", "Email" : "reedcarey@emoltra.com", "Postal" : "92634-3572", "Phone" : "(975) 449-2419", "Updated" : "2015-11-24T11:19:11 +08:00"}
json_instruct
{"type": "object", "properties": {"ObjectID": {"type": "object", "properties": {"$oid": {"type": "string"}}, "required": ["$oid"]}, "customerID": {"type": "string"}, "FirstName": {"type": "string"}, "LastName": {"type": "string"}, "Email": {"type": "string"}, "Postal": {"type": "string"}, "Phone": {"type": "string"}, "...
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"previewPlayer": {"type": "string"}, "trackDetails": {"type": "string"}, "goBackWithResult": {"type": "string"}, "exit_question": {"type": "string"}, "something_went_wrong": {"type": "string"}, "some_error": {"type":...
{"previewPlayer" : "Preview Player", "trackDetails" : "Track Details", "goBackWithResult" : "Go back with result - OK", "exit_question" : "Are you sure you want to exit the application?", "something_went_wrong" : "Something went wrong!", "some_error" : "We have some error: ", "empty_list" : "List of tracks is empty", "...
json_instruct
{"type": "object", "properties": {"previewPlayer": {"type": "string"}, "trackDetails": {"type": "string"}, "goBackWithResult": {"type": "string"}, "exit_question": {"type": "string"}, "something_went_wrong": {"type": "string"}, "some_error": {"type": "string"}, "empty_list": {"type": "string"}, "no_route": {"type": "st...
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"name": {"type": "string"}, "script": {"type": "string"}, "args": {"type": "array", "items": {"type": "string"}}, "node_args": {"type": "array", "items": {"type": "string"}}, "env": {"type": "object", "properties": {"NODE_ENV": {...
{"name" : "PathQuiz", "script" : "./dist/index.js", "args" : ["dotenv_config_path=./.env"], "node_args" : ["-r", "dotenv/config"], "env" : {"NODE_ENV" : "production", "PORT" : 4000}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "script": {"type": "string"}, "args": {"type": "array", "items": {"type": "string"}}, "node_args": {"type": "array", "items": {"type": "string"}}, "env": {"type": "object", "properties": {"NODE_ENV": {"type": "string"}, "PORT": {"type": "integer"}}, "require...
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "private": {"type": "boolean"}, "main": {"type": "string"}, "type": {"type": "string"}, "scripts": {"type": "object", "properties": {"dev": {"type": "st...
{"name" : "es6-nodejs-eslint-without-babel", "version" : "0.0.1", "private" : true, "main" : "app.js", "type" : "module", "scripts" : {"dev" : "NODE_ENV=development node --es-module-specifier-resolution=node ./bin/www", "prod" : "NODE_ENV=production node --es-module-specifier-resolution=node ./bin/www", "watch" : "node...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "private": {"type": "boolean"}, "main": {"type": "string"}, "type": {"type": "string"}, "scripts": {"type": "object", "properties": {"dev": {"type": "string"}, "prod": {"type": "string"}, "watch": {"type": "string"}}, "required...
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {"type": "integer"}}, "productReviews": {"type": "array", "items": {"type": "object", "properties": {"produc...
{"userId" : 87541, "cartId" : "cc0788c8-1c68-440f-b73e-baaacf349854", "preferredProducts" : [2656, 3670, 3599, 3267, 850, 2965, 4764, 3122, 3652, 4623], "productReviews" : [{"productId" : 4594, "reviewText" : "It only works when I'm Norway.", "reviewDate" : "2017-10-27T13:01:56.2029969+03: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...
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"CN": {"type": "string"}, "hosts": {"type": "array", "items": {"type": "string"}}, "key": {"type": "object", "properties": {"algo": {"type": "string"}, "size": {"type": "integer"}}, "required": ["algo", "size"]}, "names": {"typ...
{"CN" : "vasp2.trisa.ciphertrace.com", "hosts" : ["vasp2.trisa.ciphertrace.com"], "key" : {"algo" : "rsa", "size" : 2048}, "names" : [{"C" : "BE", "L" : "Brussels", "O" : "VASP 2"}]}
json_instruct
{"type": "object", "properties": {"CN": {"type": "string"}, "hosts": {"type": "array", "items": {"type": "string"}}, "key": {"type": "object", "properties": {"algo": {"type": "string"}, "size": {"type": "integer"}}, "required": ["algo", "size"]}, "names": {"type": "array", "items": {"type": "object", "properties": {"C"...
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"totalSize": {"type": "integer"}, "done": {"type": "boolean"}, "records": {"type": "array", "items": {"type": "object", "properties": {"attributes": {"type": "object", "properties": {"type": {"type": "string"}, ...
{"totalSize" : 1, "done" : true, "records" : [{"attributes" : {"type" : "BMCServiceDesk__Status__c", "url" : "/services/data/v48.0/sobjects/BMCServiceDesk__Status__c/a3w2w000000TfGCAA0"}, "Id" : "a3w2w000000TfGCAA0", "Name" : "CLOSED"}]}
json_instruct
{"type": "object", "properties": {"totalSize": {"type": "integer"}, "done": {"type": "boolean"}, "records": {"type": "array", "items": {"type": "object", "properties": {"attributes": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "Id": {"type": "s...
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "is_illegal": {"type": "boolean"}, "is_custom": {"type": "boolean"}, "text": {"type": "string"}, "images": {"type": "array", "items": {"type": "string"}}, "type":...
{"id" : 67227834, "name" : "Magic Formula", "is_illegal" : false, "is_custom" : false, "text" : "Equip only to \"Dark Magician\" or \"Dark Magician Girl\". It gains 700 ATK. If this card is sent from the field to the GY: Gain 1000 LP.", "images" : ["https://storage.googleapis.com/ygoprodeck.com/pics/67227834.jpg"], "ty...
json_instruct
{"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "is_illegal": {"type": "boolean"}, "is_custom": {"type": "boolean"}, "text": {"type": "string"}, "images": {"type": "array", "items": {"type": "string"}}, "type": {"type": "string"}, "spell_type": {"type": "string"}}, "required": [...
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"type": {"type": "string"}, "features": {"type": "array", "items": {"type": "object", "properties": {"geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "...
{"type" : "FeatureCollection", "features" : [{"geometry" : {"type" : "Polygon", "coordinates" : [[[-77.735797, 39.628474], [-77.72884, 39.63716], [-77.727773, 39.640882], [-77.72227, 39.639], [-77.72313, 39.63188], [-77.72658, 39.62743], [-77.72796, 39.62408], [-77.73383, 39.6267], [-77.735797, 39.628474]]]}, "type" : ...
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...
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"transformers": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "only": {"type": "string"}}, "required": ["name", "only"]}}}, "required": ["transformers"], "$schema": "http://...
{"transformers" : [{"name" : ".", "only" : "**/*.txt"}]}
json_instruct
{"type": "object", "properties": {"transformers": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "only": {"type": "string"}}, "required": ["name", "only"]}}}, "required": ["transformers"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"type": {"type": "string"}, "now": {"type": "string"}, "pr_number": {"type": "integer"}, "author": {"type": "string"}, "owners": {"type": "array", "items": {"type": "string"}}, "dangerLevel": {"type": "string"}, "he...
{"type" : "info", "now" : "2020-07-08T18:57:14.868Z", "pr_number" : 45836, "author" : "mmorearty", "owners" : ["bradleyayers", "davidka", "timjb", "patsimm", "mmorearty"], "dangerLevel" : "MultiplePackagesEdited", "headCommitAbbrOid" : "6c7735e", "headCommitOid" : "6c7735e2b8f39640cb73e40ae04cb6642a8ab2cd", "mergeIsReq...
json_instruct
{"type": "object", "properties": {"type": {"type": "string"}, "now": {"type": "string"}, "pr_number": {"type": "integer"}, "author": {"type": "string"}, "owners": {"type": "array", "items": {"type": "string"}}, "dangerLevel": {"type": "string"}, "headCommitAbbrOid": {"type": "string"}, "headCommitOid": {"type": "string...
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"reposts": {"type": "array", "items": {}}, "hasvisible": {"type": "boolean"}, "previous_cursor": {"type": "integer"}, "next_cursor": {"type": "integer"}, "total_number": {"type": "integer"}}, "required": ["reposts", "...
{"reposts" : [], "hasvisible" : false, "previous_cursor" : 0, "next_cursor" : 0, "total_number" : 0}
json_instruct
{"type": "object", "properties": {"reposts": {"type": "array", "items": {}}, "hasvisible": {"type": "boolean"}, "previous_cursor": {"type": "integer"}, "next_cursor": {"type": "integer"}, "total_number": {"type": "integer"}}, "required": ["reposts", "hasvisible", "previous_cursor", "next_cursor", "total_number"], "$sch...
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"class": {"type": "object", "properties": {"benchmarksFromHistoricData:": {"type": "string"}, "exploreHistoricTimesToRun": {"type": "string"}, "historicData": {"type": "string"}, "historicDataUrl": {"type": "string"}, "histo...
{"class" : {"benchmarksFromHistoricData:" : "ct 1/8/2022 22:52", "exploreHistoricTimesToRun" : "ct 1/8/2022 23:02", "historicData" : "ct 1/8/2022 22:45", "historicDataUrl" : "ct 4/29/2022 18:25", "historicRawData" : "ct 1/8/2022 22:41", "historicTimesToRun" : "ct 3/14/2022 22:37", "newDefault" : "ct 1/9/2022 02:57", "p...
json_instruct
{"type": "object", "properties": {"class": {"type": "object", "properties": {"benchmarksFromHistoricData:": {"type": "string"}, "exploreHistoricTimesToRun": {"type": "string"}, "historicData": {"type": "string"}, "historicDataUrl": {"type": "string"}, "historicRawData": {"type": "string"}, "historicTimesToRun": {"type"...
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" : 421184387, "type" : "Feature", "properties" : {"src:alt_label" : "quattroshapes", "src:geom" : "quattroshapes", "wof:geomhash" : "28ef7bd042beb6915527fb6d8837ffb4", "wof:id" : 421184387, "wof:repo" : "whosonfirst-data-admin-ve"}, "bbox" : [-65.591812, 10.135172, -65.591812, 10.135172], "geometry" : {"coordinate...
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": ["...
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"parent": {"type": "string"}, "textures": {"type": "object", "properties": {"1": {"type": "string"}, "3": {"type": "string"}, "4": {"type": "string"}, "5": {"type": "string"}, "6": {"type": "string"}, "particle": {"type": "stri...
{"parent" : "bloodmagic:block/sub/shaped_charge", "textures" : {"1" : "minecraft:block/sandstone_bottom", "3" : "minecraft:block/sandstone_bottom", "4" : "bloodmagic:block/blankrune", "5" : "minecraft:block/sand", "6" : "bloodmagic:models/defaultcrystal", "particle" : "bloodmagic:models/defaultcrystal"}}
json_instruct
{"type": "object", "properties": {"parent": {"type": "string"}, "textures": {"type": "object", "properties": {"1": {"type": "string"}, "3": {"type": "string"}, "4": {"type": "string"}, "5": {"type": "string"}, "6": {"type": "string"}, "particle": {"type": "string"}}, "required": ["1", "3", "4", "5", "6", "particle"]}},...
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" : "minecraft:block/vine_u"}
json_instruct
{"type": "object", "properties": {"parent": {"type": "string"}}, "required": ["parent"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"vault_transit_secret_backend_cache_config": {"type": "object", "properties": {"status": {"type": "string"}, "layout": {"type": "string"}, "page_title": {"type": "string"}, "sidebar_current": {"type": "string"}, "description": ...
{"vault_transit_secret_backend_cache_config" : {"status" : "ASSESS", "layout" : "vault", "page_title" : "Vault: vault_transit_secret_backend_cache_config resource", "sidebar_current" : "docs-vault-resource-transit-secret-backend-cache-config", "description" : "Configure the cache for the Transit Secret Backend in Vault...
json_instruct
{"type": "object", "properties": {"vault_transit_secret_backend_cache_config": {"type": "object", "properties": {"status": {"type": "string"}, "layout": {"type": "string"}, "page_title": {"type": "string"}, "sidebar_current": {"type": "string"}, "description": {"type": "string"}, "arguments": {"type": "object", "proper...
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"hamburger": {"type": "object", "properties": {"menubutton": {"type": "object", "properties": {"aria-label": {"type": "string"}}, "required": ["aria-label"]}, "menu": {"type": "object", "properties": {"aria-label": {"type": ...
{"hamburger" : {"menubutton" : {"aria-label" : "Menu principal"}, "menu" : {"aria-label" : "Options du menu principal", "items" : {"home" : "Accueil", "item1" : "Objet 1", "item2" : "Objet 2", "item3" : "Inscrivez-vous", "usermanagement" : "Gestion des utilisateurs", "supportedlocales" : "Langues prises en charge"}}}, ...
json_instruct
{"type": "object", "properties": {"hamburger": {"type": "object", "properties": {"menubutton": {"type": "object", "properties": {"aria-label": {"type": "string"}}, "required": ["aria-label"]}, "menu": {"type": "object", "properties": {"aria-label": {"type": "string"}, "items": {"type": "object", "properties": {"home": ...
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"private": {"type": "boolean"}, "name": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "devDependencies": {"type": "object", "pro...
{"private" : true, "name" : "create-react-app", "main" : "src/index.js", "scripts" : {"test" : "react-scripts build"}, "devDependencies" : {"react-scripts" : "*"}, "dependencies" : {"@turf/turf" : "*"}}
json_instruct
{"type": "object", "properties": {"private": {"type": "boolean"}, "name": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "devDependencies": {"type": "object", "properties": {"react-scripts": {"type": "string"}}, "required"...
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"name": {"type": "string"}, "main": {"type": "string"}, "authors": {"type": "array", "items": {"type": "string"}}, "keywords": {"type": "array", "items": {"type": "string"}}, "license": {"type": "string"}, "homepage": {"type": ...
{"name" : "angular-analytics-integrations-segment", "main" : "angular-analytics-integrations-segment.js", "authors" : ["L42y <423300@gmail.com>"], "keywords" : ["angular", "analytics", "segment"], "license" : "WTFPL", "homepage" : "https://github.com/L42y/angular-analytics-integrations-segment", "dependencies" : {"angu...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "main": {"type": "string"}, "authors": {"type": "array", "items": {"type": "string"}}, "keywords": {"type": "array", "items": {"type": "string"}}, "license": {"type": "string"}, "homepage": {"type": "string"}, "dependencies": {"type": "object", "properties":...
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"id_4215": {"type": "object", "properties": {"publicdate": {"type": "string"}, "title": {"type": "string"}}, "required": ["publicdate", "title"]}}, "required": ["id_4215"], "$schema": "http://json-schema.org/draft-07/...
{"id_4215" : {"publicdate" : "2010-04-16 19:49:49", "title" : "The Elements of Style"}}
json_instruct
{"type": "object", "properties": {"id_4215": {"type": "object", "properties": {"publicdate": {"type": "string"}, "title": {"type": "string"}}, "required": ["publicdate", "title"]}}, "required": ["id_4215"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"author": {"type": "object", "properties": {"name": {"type": "null"}, "url": {"type": "null"}, "icon_url": {"type": "null"}}, "required": ["name", "url", "icon_url"]}, "title": {"type": "string"}, "color": {"type": "string"}...
{"author" : {"name" : null, "url" : null, "icon_url" : null}, "title" : "R\u00e8glement", "color" : "5670da", "description" : null, "fields" : [{"name" : "Le r\u00e8glement ci-dessous a \u00e9t\u00e9 con\u00e7u dans le but d'entretenir une bonne ambiance\n \n*Toute personne qui ne respecte pas les r\u00e8gles sera sanc...
json_instruct
{"type": "object", "properties": {"author": {"type": "object", "properties": {"name": {"type": "null"}, "url": {"type": "null"}, "icon_url": {"type": "null"}}, "required": ["name", "url", "icon_url"]}, "title": {"type": "string"}, "color": {"type": "string"}, "description": {"type": "null"}, "fields": {"type": "array",...
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["type", "coordinates"], "$schema": "http://json-schema.org/draft-0...
{"type" : "Polygon", "coordinates" : [[[0.93578337, 51.877961393], [0.928984407, 51.879802869], [0.927128788, 51.881257485], [0.926782282, 51.88508257], [0.926081779, 51.885840901], [0.914402743, 51.890909884], [0.95083143, 51.859915999], [0.913612297, 51.863474999], [0.899401693, 51.845937952], [0.888304226, 51.846197...
json_instruct
{"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["type", "coordinates"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"timestamp": {"type": "integer"}, "object_list": {"type": "array", "items": {"type": "object", "properties": {"position": {"type": "array", "items": {"type": "number"}}, "id": {"type": "integer"}}, "required": ["posi...
{"timestamp" : 813, "object_list" : [{"position" : [6.05550213415, 5.1641207462], "id" : 69}, {"position" : [6.48064165559, 5.01185579398], "id" : 70}, {"position" : [6.86284629467, 4.22427845493], "id" : 111}, {"position" : [6.0348765534, 4.34360835478], "id" : 112}, {"position" : [0.456077892559, 9.22825847552], "id"...
json_instruct
{"type": "object", "properties": {"timestamp": {"type": "integer"}, "object_list": {"type": "array", "items": {"type": "object", "properties": {"position": {"type": "array", "items": {"type": "number"}}, "id": {"type": "integer"}}, "required": ["position", "id"]}}, "frame": {"type": "integer"}, "size": {"type": "intege...
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"main": {"type": "string"}, "private": {"type": "boolean"}, "dependencies": {"type": "object", "properties": {"@expo/vector-icons": {"type": "string"}, "expo": {"type": "string"}, "lottie-react-native": {"type": "string"}, "rea...
{"main" : "node_modules/expo/AppEntry.js", "private" : true, "dependencies" : {"@expo/vector-icons" : "^9.0.0", "expo" : "^32.0.1", "lottie-react-native" : "^2.3.2", "react" : "16.7.0", "react-native" : "^0.57.1", "react-native-elements" : "^1.0.0-beta4", "react-native-qrcode-svg" : "^5.0.6", "react-native-swipeout" : ...
json_instruct
{"type": "object", "properties": {"main": {"type": "string"}, "private": {"type": "boolean"}, "dependencies": {"type": "object", "properties": {"@expo/vector-icons": {"type": "string"}, "expo": {"type": "string"}, "lottie-react-native": {"type": "string"}, "react": {"type": "string"}, "react-native": {"type": "string"}...
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" : 404414593, "type" : "Feature", "properties" : {"src:alt_label" : "quattroshapes_pg", "src:geom" : "quattroshapes_pg", "wof:geomhash" : "373f189e5bb9bfc217cd1b5f4f986639", "wof:id" : 404414593, "wof:repo" : "whosonfirst-data-admin-fr"}, "bbox" : [5.59361, 46.73111, 5.59361, 46.73111], "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 sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"type": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "n...
{"type" : "Feature", "geometry" : {"type" : "Polygon", "coordinates" : [[[127.75, 34.5], [127.75, 34.583333333333336], [127.875, 34.583333333333336], [127.875, 34.5], [127.75, 34.5]]]}, "properties" : {"code" : 512766, "url" : "http://madefor.github.io/0410/api/v1/512766.geojson", "view" : "https://github.com/madefor/0...
json_instruct
{"type": "object", "properties": {"type": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["type", "coordinates"]}, "properties": {"type": "ob...
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"PREVALENCE_BY_GENDER_AGE_YEAR": {"type": "object", "properties": {"TRELLIS_NAME": {"type": "array", "items": {}}, "SERIES_NAME": {"type": "array", "items": {}}, "X_CALENDAR_YEAR": {"type": "array", "items": {}}, "...
{"PREVALENCE_BY_GENDER_AGE_YEAR" : {"TRELLIS_NAME" : [], "SERIES_NAME" : [], "X_CALENDAR_YEAR" : [], "Y_PREVALENCE_1000PP" : []}, "PREVALENCE_BY_MONTH" : {"X_CALENDAR_MONTH" : [], "Y_PREVALENCE_1000PP" : []}, "CONDITIONS_BY_TYPE" : {"CONCEPT_NAME" : "Claim- Inpatient: Primary diagnosis", "COUNT_VALUE" : 8}, "AGE_AT_FIR...
json_instruct
{"type": "object", "properties": {"PREVALENCE_BY_GENDER_AGE_YEAR": {"type": "object", "properties": {"TRELLIS_NAME": {"type": "array", "items": {}}, "SERIES_NAME": {"type": "array", "items": {}}, "X_CALENDAR_YEAR": {"type": "array", "items": {}}, "Y_PREVALENCE_1000PP": {"type": "array", "items": {}}}, "required": ["TRE...
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"id": {"type": "integer"}, "group": {"type": "string"}, "joblink": {"type": "boolean"}, "name": {"type": "string"}, "potential": {"type": "integer"}, "skills": {"type": "array", "items": {"type": "object", "properties": {"id": {"...
{"id" : 15473, "group" : "83213109", "joblink" : true, "name" : "Betriebswirt/in (Fachschule) - Hauswirtschaft", "potential" : 70, "skills" : [{"id" : 62216, "skill" : "Einkauf, Beschaffung", "replaceable" : true}, {"id" : 62234, "skill" : "Kosten- und Leistungsrechnung", "replaceable" : true}, {"id" : 62252, "skill" :...
json_instruct
{"type": "object", "properties": {"id": {"type": "integer"}, "group": {"type": "string"}, "joblink": {"type": "boolean"}, "name": {"type": "string"}, "potential": {"type": "integer"}, "skills": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "skill": {"type": "string"}, "replacea...
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"word" : "refuter", "definition" : "One who, or that which, refutes."}
json_instruct
{"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"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#"}
[{"name" : "EKAGER", "frequency" : 1, "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#"}
Based on the schema below, produce a valid JSON object: {"type": "array", "items": {"type": "object", "properties": {"liveId": {"type": "string"}, "title": {"type": "string"}, "subTitle": {"type": "string"}, "picPath": {"type": "string"}, "startTime": {"type": "integer"}, "memberId": {"type": "integer"}, "liveType": {...
[{"liveId" : "5b1916350cf2565260b817e0", "title" : "\u4e07\u4e3d\u5a1c\u7684\u76f4\u64ad\u95f4", "subTitle" : "\u5404\u4f4d\u665a\u4e0a\u597d\uff0c\u4e0b\u73ed\u4e86\u5417", "picPath" : "/mediasource/live/15082359928777TQ6z7gAD0.jpg", "startTime" : 1528370741789, "memberId" : 25, "liveType" : 1, "picLoopTime" : 0, "lrc...
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"liveId": {"type": "string"}, "title": {"type": "string"}, "subTitle": {"type": "string"}, "picPath": {"type": "string"}, "startTime": {"type": "integer"}, "memberId": {"type": "integer"}, "liveType": {"type": "integer"}, "picLoopTime": {"type": "integer"}, "...
Based on the schema below, produce a valid JSON object: {"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\u540d\u7a31" : "\u9ad8\u8aa0\u79d1\u6280\u80a1\u4efd\u6709\u9650\u516c\u53f8", "\u5de5\u5ee0\u767b\u8a18\u7de8\u865f" : "65001838", "\u5de5\u5ee0\u8a2d\u7acb\u8a31\u53ef\u6848\u865f" : "", "\u5de5\u5ee0\u5730\u5740" : "\u65b0\u5317\u5e02\u571f\u57ce\u5340\u4e9e\u6d32\u8def58\u5df73\u5f049\u865f1\u6a13", ...
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...
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "author": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}, "repository": {"ty...
{"name" : "gitbook-plugin-filter", "version" : "1.0.0", "author" : {"name" : "liguanlin", "email" : "liguanlin@4paradigm.com"}, "repository" : "gitbook-plugins/gitbook-plugin-filter", "engines" : {"gitbook" : ">=3.0.0"}, "analyze" : true, "license" : "MIT"}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "author": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}, "repository": {"type": "string"}, "engines": {"type": "object", "properties": {"gitbook": {"t...
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"vertices": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}}, "required": ["vertices"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"vertices" : [[16, 123], [27, 140], [14, 120], [27, 138], [38, 121], [9, 97], [14, 88], [14, 118], [23, 115], [26, 138], [17, 117], [16, 110], [35, 104], [20, 112], [4, 95], [13, 118], [5, 98], [15, 117], [6, 93], [6, 94], [22, 119], [4, 95], [16, 125], [24, 101], [24, 94], [19, 87], [13, 119], [24, 107], [25, 99], [1...
json_instruct
{"type": "object", "properties": {"vertices": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}}, "required": ["vertices"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"vertices": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}}, "required": ["vertices"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"vertices" : [[68, 61], [53, 9], [67, 14], [63, 11], [56, 11], [35, 56], [53, 29], [53, 29], [43, 29], [53, 29], [68, 27], [58, 23], [54, 8], [68, 27], [53, 29], [43, 25], [77, 11], [64, 19], [34, 38], [84, 51], [24, 36], [38, 28], [44, 42], [22, 52], [83, 30], [68, 27], [53, 29], [38, 28], [19, 67], [65, 12], [31, 77...
json_instruct
{"type": "object", "properties": {"vertices": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}}, "required": ["vertices"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"published": {"type": "string"}, "media-type": {"type": "string"}, "title": {"type": "string"}, "id": {"type": "string"}, "content": {"type": "string"}, "source": {"type": "string"}}, "required": ["published",...
{"published" : "2015-09-18T19:11:53Z", "media-type" : "News", "title" : "Temperature driving speckled-trout action at Lake Pontchartrain bridges", "id" : "176e1c9b-fd71-4684-b804-f533832e46f8", "content" : "Are you sitting at home counting the minutes until speckled trout show up in big numbers at the bridges in Lake P...
json_instruct
{"type": "object", "properties": {"published": {"type": "string"}, "media-type": {"type": "string"}, "title": {"type": "string"}, "id": {"type": "string"}, "content": {"type": "string"}, "source": {"type": "string"}}, "required": ["published", "media-type", "title", "id", "content", "source"], "$schema": "http://json-s...
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" : "Petri Automata for Kleene Allegories.", "fields" : ["generalized star height problem", "binary relation", "kleene star", "kleene s recursion theorem", "kleene algebra"], "abstract" : "Kleene algebra axioms are complete with respect to both language models and binary relation models. In particular, two regul...
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...
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"key": {"type": "string"}, "suffix": {"type": "string"}, "positions": {"type": "array", "items": {"type": "object", "properties": {"frets": {"type": "string"}, "fingers": {"type": "string"}, "barres": {"type": "string"}, "capo": ...
{"key" : "G#", "suffix" : "maj9/C#", "positions" : [{"frets" : "9x5596", "fingers" : "301142", "barres" : "5", "capo" : "true"}, {"frets" : "lxhhli", "fingers" : "301142", "barres" : "17", "capo" : "true"}]}
json_instruct
{"type": "object", "properties": {"key": {"type": "string"}, "suffix": {"type": "string"}, "positions": {"type": "array", "items": {"type": "object", "properties": {"frets": {"type": "string"}, "fingers": {"type": "string"}, "barres": {"type": "string"}, "capo": {"type": "string"}}, "required": ["frets", "fingers", "ba...
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"title": {"type": "string"}, "text": {"type": "string"}, "scanUrl": {"type": "string"}}, "required": ["title", "text", "scanUrl"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"title" : "Ulaire Lemenya, Winged Hunter (6U86)", "text" : "Set:\tEnts of Fangorn\nKind:\tShadow\nCulture:\tWraith\nTwilight:\t4\nCard Type:\tMinion \u2022 Nazgul\nStrength:\t9\nVitality:\t2\nSite:\t3\nGame Text:\tRegroup: Exert Ulaire Lemenya and discard 3 cards from hand to return a companion (except the Ring-bearer...
json_instruct
{"type": "object", "properties": {"title": {"type": "string"}, "text": {"type": "string"}, "scanUrl": {"type": "string"}}, "required": ["title", "text", "scanUrl"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"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": {...
{"\u5de5\u5ee0\u540d\u7a31" : "\u5f18\u9245\u6c7d\u8eca\u88fd\u9020\u80a1\u4efd\u6709\u9650\u516c\u53f8", "\u5de5\u5ee0\u767b\u8a18\u7de8\u865f" : "65005542", "\u5de5\u5ee0\u8a2d\u7acb\u8a31\u53ef\u6848\u865f" : "", "\u5de5\u5ee0\u5730\u5740" : "\u65b0\u5317\u5e02\u6c50\u6b62\u5340\u798f\u5fb7\u4e00\u8def390\u865f", "\...
json_instruct
{"type": "object", "properties": {"\u5de5\u5ee0\u540d\u7a31": {"type": "string"}, "\u5de5\u5ee0\u767b\u8a18\u7de8\u865f": {"type": "string"}, "\u5de5\u5ee0\u8a2d\u7acb\u8a31\u53ef\u6848\u865f": {"type": "string"}, "\u5de5\u5ee0\u5730\u5740": {"type": "string"}, "\u5de5\u5ee0\u5e02\u93ae\u9109\u6751\u91cc": {"type": "st...
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"authors": {"type": "array", "items": {"type": "object", "properties": {"author": {"type": "string"}}, "required": ["author"]}}, "doi": {"type": "string"}, "publication_date": {"type": "string"}, "id": {"type": "string"}, "url"...
{"authors" : [{"author" : "Atif Ali Hashmi"}, {"author" : "Naveen Faridi"}, {"author" : "Muhammad Muzzammil Edhi"}, {"author" : "Mehmood Khan"}], "doi" : "10.1186/1755-7682-7-47", "publication_date" : "2014-11-15", "id" : "EN115640", "url" : "https://pubmed.ncbi.nlm.nih.gov/25395990", "source" : "International archives...
json_instruct
{"type": "object", "properties": {"authors": {"type": "array", "items": {"type": "object", "properties": {"author": {"type": "string"}}, "required": ["author"]}}, "doi": {"type": "string"}, "publication_date": {"type": "string"}, "id": {"type": "string"}, "url": {"type": "string"}, "source": {"type": "string"}, "source...
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"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}, "production":...
{"name" : "nodest-bootstrap-web", "version" : "0.1.0", "description" : "Starter project for a Nodest REST API app", "main" : "index.js", "scripts" : {"start" : "node --use_strict --harmony index.js", "production" : "export NODE_ENV=production; node --use_strict --harmony index.js", "test" : "echo \"Error: no test speci...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}, "production": {"type": "string"}, "test": {"type": "string"}}, "required": ["start", "prod...
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"variants": {"type": "object", "properties": {"": {"type": "object", "properties": {"model": {"type": "string"}}, "required": ["model"]}}, "required": [""]}}, "required": ["variants"], "$schema": "http://json-schema.org/draft-0...
{"variants" : {"" : {"model" : "minecraft:block/bubble_coral_block"}}}
json_instruct
{"type": "object", "properties": {"variants": {"type": "object", "properties": {"": {"type": "object", "properties": {"model": {"type": "string"}}, "required": ["model"]}}, "required": [""]}}, "required": ["variants"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"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...
{"uuid" : "e904ed97-4c8c-411d-804f-ff3524a10011", "children" : ["972f2a0c-d8fe-4ac2-a19a-36730d52bf43"], "befores" : [{"name" : "xunit_setup_class_fixture_TestKaiShiSong", "status" : "passed", "start" : 1622881850176, "stop" : 1622881867776}], "afters" : [{"name" : "xunit_setup_class_fixture_TestKaiShiSong::0", "status...
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...
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"schema_version": {"type": "string"}, "id": {"type": "string"}, "modified": {"type": "string"}, "published": {"type": "string"}, "aliases": {"type": "array", "items": {"type": "string"}}, "details": {"type": "...
{"schema_version" : "1.2.0", "id" : "GHSA-5x2f-7539-frwf", "modified" : "2022-05-02T03:35:13Z", "published" : "2022-05-02T03:35:13Z", "aliases" : ["CVE-2009-2432"], "details" : "WordPress and WordPress MU before 2.8.1 allow remote attackers to obtain sensitive information via a direct request to wp-settings.php, which ...
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...
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"build": {"type": "string"}, "build-prod": {"type": "stri...
{"name" : "photobooth", "version" : "0.1.0", "description" : "HTML5 Photobooth", "main" : "src/index.js", "scripts" : {"build" : "webpack --config webpack.config.js", "build-prod" : "webpack --config webpack.config.js --mode=production", "test" : "echo \"Error: no test specified\" && exit 1"}, "author" : "Britt Gresham...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"build": {"type": "string"}, "build-prod": {"type": "string"}, "test": {"type": "string"}}, "required": ["build", "buil...
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"name": {"type": "string"}, "displayName": {"type": "string"}}, "required": ["name", "displayName"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "MessengerReactNative", "displayName" : "MessengerReactNative"}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "displayName": {"type": "string"}}, "required": ["name", "displayName"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"long": {"type": "string"}, "short": {"type": "string"}}, "required": ["long", "short"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"long" : "Create GitLab objects", "short" : "Create GitLab objects"}
json_instruct
{"type": "object", "properties": {"long": {"type": "string"}, "short": {"type": "string"}}, "required": ["long", "short"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"success": {"type": "boolean"}, "code": {"type": "string"}, "data": {"type": "object", "properties": {"hoverData": {"type": "object", "properties": {"north and middle andaman district": {"type": "object", "properties...
{"success" : true, "code" : "SUCCESS", "data" : {"hoverData" : {"north and middle andaman district" : {"registeredUsers" : 5355, "appOpens" : 76553}, "south andaman district" : {"registeredUsers" : 34833, "appOpens" : 417785}, "nicobars district" : {"registeredUsers" : 1147, "appOpens" : 21227}}}, "responseTimestamp" :...
json_instruct
{"type": "object", "properties": {"success": {"type": "boolean"}, "code": {"type": "string"}, "data": {"type": "object", "properties": {"hoverData": {"type": "object", "properties": {"north and middle andaman district": {"type": "object", "properties": {"registeredUsers": {"type": "integer"}, "appOpens": {"type": "inte...
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"ip_address": {"type": "string"}, "tunnel_id": {"type": "string"}}, "required": ["ip_address", "tunnel_id"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"ip_address" : "109.109.109.109", "tunnel_id" : "50000"}
json_instruct
{"type": "object", "properties": {"ip_address": {"type": "string"}, "tunnel_id": {"type": "string"}}, "required": ["ip_address", "tunnel_id"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "array", "items": {"type": "object", "properties": {"package": {"type": "string"}, "downloads": {"type": "integer"}, "count": {"type": "integer"}}, "required": ["package", "downloads", "count"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"package" : "bioconductor-nem", "downloads" : 16500, "count" : 7432}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"package": {"type": "string"}, "downloads": {"type": "integer"}, "count": {"type": "integer"}}, "required": ["package", "downloads", "count"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"versionList": {"type": "array", "items": {"type": "object", "properties": {"description": {"type": "string"}, "mcVersion": {"type": "string"}, "modVersion": {"type": "string"}, "pkVersion": {"type": "string"}, "chan...
{"versionList" : [{"description" : "Pixelmon Reforged", "mcVersion" : "Minecraft 1.12.2", "modVersion" : "4.1.4", "pkVersion" : "Pixelmon 6.1.0", "changeLog" : [], "updateURL" : "https://github.com/kcaf/PokeRadar", "isDirectLink" : "false", "newFileName" : ""}, {"description" : "Pixelmon Generations", "mcVersion" : "Mi...
json_instruct
{"type": "object", "properties": {"versionList": {"type": "array", "items": {"type": "object", "properties": {"description": {"type": "string"}, "mcVersion": {"type": "string"}, "modVersion": {"type": "string"}, "pkVersion": {"type": "string"}, "changeLog": {"type": "array", "items": {}}, "updateURL": {"type": "string"...
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"ETag": {"type": "string"}, "Last-Modified": {"type": "string"}, "base": {"type": "object", "properties": {"repo": {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"]}}, "required": ["r...
{"ETag" : "W/\"ea928b3c60d228789b2c44896b5a4efd3982f1fa6fe8b3308fac27e9119e6444\"", "Last-Modified" : "Thu, 17 Dec 2020 16:26:59 GMT", "base" : {"repo" : {"name" : "pytrilinos-feedstock"}}, "closed_at" : null, "created_at" : "2020-09-11T22:42:53Z", "draft" : false, "head" : {"ref" : "rebuild-boost_cpp1740-0-1_hd18e77"}...
json_instruct
{"type": "object", "properties": {"ETag": {"type": "string"}, "Last-Modified": {"type": "string"}, "base": {"type": "object", "properties": {"repo": {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"]}}, "required": ["repo"]}, "closed_at": {"type": "null"}, "created_at": {"type": "string...
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"published": {"type": "string"}, "media-type": {"type": "string"}, "title": {"type": "string"}, "id": {"type": "string"}, "content": {"type": "string"}, "source": {"type": "string"}}, "required": ["published", "media-type", ...
{"published" : "2015-09-23T06:40:00Z", "media-type" : "News", "title" : "WIRED Awake: 10 must-read articles for 23 September", "id" : "c79ad7a1-afcf-4cd5-ba35-dfd06574bde9", "content" : "Your WIRED.co.uk daily briefing.\u00a0Today, a new species of cold-weather dinosaur, Google adds easy blocking to Gmail for Android, ...
json_instruct
{"type": "object", "properties": {"published": {"type": "string"}, "media-type": {"type": "string"}, "title": {"type": "string"}, "id": {"type": "string"}, "content": {"type": "string"}, "source": {"type": "string"}}, "required": ["published", "media-type", "title", "id", "content", "source"], "$schema": "http://json-s...
Create an example JSON object that satisfies this schema: {"type": "array", "items": {"type": "object", "properties": {"mnemonic": {"type": "string"}, "form": {"type": "string"}, "stencil": {"type": "string"}, "type": {"type": "array", "items": {"type": "string"}}, "l-oper": {"type": "string"}}, "required": ["mnemonic...
[{"mnemonic" : "mul", "form" : "R", "stencil" : "0x2000033", "type" : ["int", "mul"], "l-oper" : "all"}, {"mnemonic" : "mulh", "form" : "R", "stencil" : "0x2001033", "type" : ["int", "mul"], "l-oper" : "all"}, {"mnemonic" : "mulhsu", "form" : "R", "stencil" : "0x2002033", "type" : ["int", "mul"], "l-oper" : "all"}, {"m...
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"mnemonic": {"type": "string"}, "form": {"type": "string"}, "stencil": {"type": "string"}, "type": {"type": "array", "items": {"type": "string"}}, "l-oper": {"type": "string"}}, "required": ["mnemonic", "form", "stencil", "type", "l-oper"]}, "$schema": "http:...
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"body": {"type": "string"}, "user": {"type": "string"}, "url": {"type": "string"}, "updated_at": {"type": "string"}, "created_at": {"type": "string"}, "closed_at": {"type": "string"}, "state": {"type": "string"}, "title": {"...
{"body" : "The current develop branch of Flux requires an updated version of zeromq (which in turn requires a newer version of libsodium). Also includes a fix for older version of libsodium since the URLs have changed.\n", "user" : "SteVwonder", "url" : "https://api.github.com/repos/spack/spack/issues/2108", "updated_...
json_instruct
{"type": "object", "properties": {"body": {"type": "string"}, "user": {"type": "string"}, "url": {"type": "string"}, "updated_at": {"type": "string"}, "created_at": {"type": "string"}, "closed_at": {"type": "string"}, "state": {"type": "string"}, "title": {"type": "string"}, "number": {"type": "integer"}, "milestone": ...
Create a JSON structure that matches this schema definition: {"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"...
{"type" : "FeatureCollection", "features" : [{"geometry" : {"type" : "Polygon", "coordinates" : [[[-74.421048, 39.38576], [-74.413179, 39.389855], [-74.415919, 39.392999], [-74.415976, 39.394334], [-74.409581, 39.402507], [-74.40133, 39.396219], [-74.398089, 39.395747], [-74.397415, 39.387617], [-74.399248, 39.384966],...
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...
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"formly.js": {"type": "string"}, "formly.min.js": {"type": "string"}}, "required": ["formly.js", "formly.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"formly.js" : "sha256-okcRsbEFm46/M1kZqyAxQoyb7WsZmQNKCE4JrrQ+khc=", "formly.min.js" : "sha256-nS6iheDsSWxi5rioFSMbr8gQWoTPoGISGQsuhnRvKPk="}
json_instruct
{"type": "object", "properties": {"formly.js": {"type": "string"}, "formly.min.js": {"type": "string"}}, "required": ["formly.js", "formly.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"manifest_version": {"type": "integer"}, "name": {"type": "string"}, "version": {"type": "string"}, "content_scripts": {"type": "array", "items": {"type": "object", "properties": {"matches": {"type": "array", "items": {"type": "s...
{"manifest_version" : 3, "name" : "hello-html2canvas", "version" : "0.0.0", "content_scripts" : [{"matches" : ["http://*/*", "https://*/*"], "js" : ["html2canvas-dist/html2canvas.min.js", "fabric-dist/fabric.min.js", "content_script.js"]}]}
json_instruct
{"type": "object", "properties": {"manifest_version": {"type": "integer"}, "name": {"type": "string"}, "version": {"type": "string"}, "content_scripts": {"type": "array", "items": {"type": "object", "properties": {"matches": {"type": "array", "items": {"type": "string"}}, "js": {"type": "array", "items": {"type": "stri...
Generate sample JSON data that conforms to the following schema definition: {"type": "array", "items": {"type": "object", "properties": {"province": {"type": "string"}, "city": {"type": "string"}, "area": {"type": "string"}, "name": {"type": "string"}, "code": {"type": "string"}, "address": {"type": "string"}, "phone"...
[{"province" : "\u5317\u4eac\u5e02", "city" : "\u5317\u4eac\u5e02", "area" : "\u4e30\u53f0\u533a", "name" : "\u5b8b\u5bb6\u5e84\u90ae\u653f\u6240", "code" : "100079", "address" : "\u4e30\u53f0\u4e1c\u94c1\u8425\u987a\u516d\u676128\u53f7", "phone" : "010-67610576\u6062\u590d\u8425\u4e1a\u65f6\u95f4:2020-08-01"}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"province": {"type": "string"}, "city": {"type": "string"}, "area": {"type": "string"}, "name": {"type": "string"}, "code": {"type": "string"}, "address": {"type": "string"}, "phone": {"type": "string"}}, "required": ["province", "city", "area", "name", "code...
Generate sample JSON data that conforms to the following schema definition: {"type": "array", "items": {"type": "object", "properties": {"liveId": {"type": "string"}, "title": {"type": "string"}, "subTitle": {"type": "string"}, "picPath": {"type": "string"}, "startTime": {"type": "integer"}, "memberId": {"type": "inte...
[{"liveId" : "5c8cc4360cf20f4b9b9362e8", "title" : "\u66f2\u7f8e\u9716\u7684\u76f4\u64ad\u95f4", "subTitle" : "\u5355\u8eab\u8d35\u65cf\u306e\u51b2\u6d6a\ud83c\udfc4\u200d\u2640\ufe0f", "picPath" : "/mediasource/live/1551545814462HbL7Yacs97.jpg", "startTime" : 1552729142512, "memberId" : 711735, "liveType" : 1, "picLoo...
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"liveId": {"type": "string"}, "title": {"type": "string"}, "subTitle": {"type": "string"}, "picPath": {"type": "string"}, "startTime": {"type": "integer"}, "memberId": {"type": "integer"}, "liveType": {"type": "integer"}, "picLoopTime": {"type": "integer"}, "...
Construct a JSON document that adheres to this schema specification: {"type": "array", "items": {"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" : "1805042001", "district_id" : "1805042", "name" : "SUKAJAWA"}, {"id" : "1805042002", "district_id" : "1805042", "name" : "SIDOKERTO"}, {"id" : "1805042003", "district_id" : "1805042", "name" : "SUKAJADI"}, {"id" : "1805042004", "district_id" : "1805042", "name" : "WATES"}, {"id" : "1805042005", "district_id" :...
json_instruct
{"type": "array", "items": {"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 an example JSON object that satisfies this schema: {"type": "object", "properties": {"author": {"type": "string"}, "classification": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "period": {"type": "string"}, "reference": {"type": "string"}, "region": {"type": "string"}, "text"...
{"author" : "Linda Pastan", "classification" : "Free Verse", "keywords" : ["Relationships", "Nature"], "period" : "", "reference" : "http://www.poetryfoundation.org/poem/181124", "region" : "U.S., Mid-Atlantic", "text" : ["If there were a monument", "to silence, it would not be", "the tree whose leaves", "murmur contin...
json_instruct
{"type": "object", "properties": {"author": {"type": "string"}, "classification": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "period": {"type": "string"}, "reference": {"type": "string"}, "region": {"type": "string"}, "text": {"type": "array", "items": {"type": "string"}}, "title": ...
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"type": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "number"}}}, "required": ["type", "coordinates"]}, "properties"...
{"type" : "Feature", "geometry" : {"type" : "Point", "coordinates" : [-1.313193, 51.814714]}, "properties" : {"site" : "BLR58", "site-plan-url" : "https://www.cherwell.gov.uk/info/33/planning-policy/384/brownfield-land-register", "planning-permission-status" : "permissioned", "organisation" : "local-authority-eng:CHR",...
json_instruct
{"type": "object", "properties": {"type": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "number"}}}, "required": ["type", "coordinates"]}, "properties": {"type": "object", "properties": {"site": {"type": "string"}, "site-...
Generate a valid JSON object that conforms to the following schema: {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
[[1913, 7], [1914, 5], [1916, 5], [1919, 5], [1920, 8], [1921, 5], [1922, 6], [1923, 7], [1925, 9], [1926, 5], [1928, 9], [1929, 7], [1930, 7], [1931, 6], [1932, 14], [1935, 9], [1937, 6], [1938, 10], [1939, 5], [1940, 6], [1941, 9], [1942, 5], [1943, 12], [1945, 6], [1946, 9], [1948, 5], [1950, 5], [1951, 5], [1952, 6...
json_instruct
{"type": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"make": {"type": "string"}, "model": {"type": "string"}}, "required": ["make", "model"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"make" : "Honda", "model" : "Civic"}
json_instruct
{"type": "object", "properties": {"make": {"type": "string"}, "model": {"type": "string"}}, "required": ["make", "model"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "description": {"type": "string"}, "file": {"type": "string"}, "patches": {"type": "array", "items": {"type": "object", "properties": {"before": {"type": "string"}, "after...
[{"id" : "filestore_config", "description" : "Configure FileStore for file uploads", "file" : "/etc/ckan/default/development.ini", "patches" : [{"before" : "[app:main]", "after" : "[app:main]\nckan.storage_path = /var/lib/ckan/default"}]}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "description": {"type": "string"}, "file": {"type": "string"}, "patches": {"type": "array", "items": {"type": "object", "properties": {"before": {"type": "string"}, "after": {"type": "string"}}, "required": ["before", "after"]}}}, "r...
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {}}, "productReviews": {"type": "array", "items": {"type": "object", "properties": {"productId": {"t...
{"userId" : 31651, "cartId" : "0babdd8d-695d-46e8-921a-db17d6ee0cb0", "preferredProducts" : [], "productReviews" : [{"productId" : 1066, "reviewText" : "My hummingbird loves to play with it.", "reviewDate" : "2019-05-20T21:15:01.4446824+03:00"}]}
json_instruct
{"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {}}, "productReviews": {"type": "array", "items": {"type": "object", "properties": {"productId": {"type": "integer"}, "reviewText": {"type": "string"}, "reviewDate": {"type": "s...
Generate sample JSON data that conforms to the following schema definition: {"type": "array", "items": {"type": "object", "properties": {"product": {"type": "string"}, "pipeline": {"type": "string"}, "path": {"type": "string"}}, "required": ["product", "pipeline", "path"]}, "$schema": "http://json-schema.org/draft-07/...
[{"product" : "Nextflow Advanced", "pipeline" : "RL_RG_Nextflow_Advanced", "path" : "/RL/RG/StandardCatalog/nextflow-latest"}, {"product" : "RStudio", "pipeline" : "RL_RG_RStudio", "path" : "/RL/RG/StandardCatalog/RStudio"}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"product": {"type": "string"}, "pipeline": {"type": "string"}, "path": {"type": "string"}}, "required": ["product", "pipeline", "path"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "category": {"type": "string"}, "games": {"type": "object", "properties": {"nl": {"type": "object", "properties": {"orderable": {"type": "boolean"}, "fashionThemes": {"ty...
{"id" : "terry-cloth-do-rag", "name" : "Terry-cloth Do-rag", "category" : "Hats", "games" : {"nl" : {"orderable" : true, "fashionThemes" : ["Rock-n'-roll"], "sellPrice" : {"currency" : "bells", "value" : 60}, "sources" : ["Labelle"], "buyPrices" : [{"currency" : "bells", "value" : 240}]}, "nh" : {"sellPrice" : {"curren...
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "category": {"type": "string"}, "games": {"type": "object", "properties": {"nl": {"type": "object", "properties": {"orderable": {"type": "boolean"}, "fashionThemes": {"type": "array", "items": {"type": "string"}}, "sellPrice": {"typ...
Create a JSON structure that matches this schema definition: {"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"...
{"type" : "FeatureCollection", "features" : [{"geometry" : {"type" : "Polygon", "coordinates" : [[[-87.150464, 30.720035], [-87.150089, 30.722042], [-87.147143, 30.720652], [-87.111867, 30.720184], [-87.112156, 30.710288], [-87.106752, 30.705353], [-87.1048, 30.705327], [-87.103821, 30.707104], [-87.103328, 30.714805],...
json_instruct
{"type": "object", "properties": {"type": {"type": "string"}, "features": {"type": "array", "items": {"type": "object", "properties": {"geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "numbe...
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"all_tests": {"type": "array", "items": {"type": "object", "properties": {"browser": {"type": "string"}, "testResults": {"type": "null"}, "timeStarted": {"type": "string"}, "reportedVersion": {"type": "string"}, "os": {"type": ...
{"all_tests" : [{"browser" : "yandex", "testResults" : null, "timeStarted" : "2021-12-16T02:13:12.521Z", "reportedVersion" : "21.11.5.121", "os" : "Darwin", "os_version" : "Darwin Kernel Version 21.1.0: Wed Oct 13 17:33:24 PDT 2021; root:xnu-8019.41.5~1/RELEASE_ARM64_T8101"}], "git" : "250be3bb459b8a6d8c76fbbdbbd886083...
json_instruct
{"type": "object", "properties": {"all_tests": {"type": "array", "items": {"type": "object", "properties": {"browser": {"type": "string"}, "testResults": {"type": "null"}, "timeStarted": {"type": "string"}, "reportedVersion": {"type": "string"}, "os": {"type": "string"}, "os_version": {"type": "string"}}, "required": [...
Construct a JSON document that adheres to this schema specification: {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "id": {"type": "string"}, "description": {"type": "string"}, "tags": {"type": "array", "items": {"type": "string"}}, "severity": {"type": "string"}, "patterns": ...
[{"name" : "Backdoor: Reverse Shell", "id" : "BD000300", "description" : "Backdoor: Reverse Shell", "tags" : ["Security.Backdoor.ReverseShell"], "severity" : "moderate", "patterns" : [{"pattern" : "(shell\\.now\\.sh|tcp\\.ngrok\\.io|reverse shell)", "type" : "regex-word", "scopes" : ["code", "comment"], "modifiers" : [...
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "id": {"type": "string"}, "description": {"type": "string"}, "tags": {"type": "array", "items": {"type": "string"}}, "severity": {"type": "string"}, "patterns": {"type": "array", "items": {"type": "object", "properties": {"pattern"...
Generate sample JSON data that conforms to the following 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"}, "...
{"id" : 404399167, "type" : "Feature", "properties" : {"src:alt_label" : "quattroshapes", "src:geom" : "quattroshapes", "wof:geomhash" : "e0c23782e0e97587f08163a2a19300e4", "wof:id" : 404399167, "wof:repo" : "whosonfirst-data-admin-fr"}, "bbox" : [1.13058117795907, 43.63558365124287, 1.17553677404053, 43.65846058182396...
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": ["...
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" : "rankine:block/juniper_fence_gate"}
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": "array", "items": {"type": "object", "properties": {"country": {"type": "string"}, "name": {"type": "string"}, "domain": {"type": "string"}}, "required": ["country", "name", "domain"]}, "$schema": "http://json-schema.org/draft-07/schema#"}...
[{"country" : "Panama", "name" : "Columbus University", "domain" : "http://www.columbus.edu/"}, {"country" : "Panama", "name" : "Floret Global University", "domain" : "http://www.floret.edu.pa/"}, {"country" : "Panama", "name" : "Instituto de Ense\u00f1anza Superior Oteima", "domain" : "http://www.institutoteima.ac.pa/...
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"country": {"type": "string"}, "name": {"type": "string"}, "domain": {"type": "string"}}, "required": ["country", "name", "domain"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"artist": {"type": "string"}, "artworkName": {"type": "string"}, "description": {"type": "string"}, "attributes": {"type": "object", "properties": {"tags": {"type": "array", "items": {"type": "string"}}}, "req...
{"artist" : "obxium", "artworkName" : "DDF1", "description" : "Dope Dead Frog 1 (DDF1) combines deathly amphibious emoji with bright vapor wave notes and tart pixelated highlights", "attributes" : {"tags" : ["high res", "digital", "illustration", "asset", "rare", "character", "frog"]}, "external_uri" : "http://knownori...
json_instruct
{"type": "object", "properties": {"artist": {"type": "string"}, "artworkName": {"type": "string"}, "description": {"type": "string"}, "attributes": {"type": "object", "properties": {"tags": {"type": "array", "items": {"type": "string"}}}, "required": ["tags"]}, "external_uri": {"type": "string"}}, "required": ["artist"...
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"angular-ui-handsontable.full.css": {"type": "string"}, "angular-ui-handsontable.full.js": {"type": "string"}, "angular-ui-handsontable.full.min.css": {"type": "string"}, "angular-ui-handsontable.full.min.js":...
{"angular-ui-handsontable.full.css" : "sha256-kYIsYkamUg3zraBfMkjn/Vne/EdyTBIzGuTgYVW9KM8=", "angular-ui-handsontable.full.js" : "sha256-la0OiKwHGc0VK00/4STAAnXMjSyxpUrt6aOYkCc11YY=", "angular-ui-handsontable.full.min.css" : "sha256-NLDYFg7K0QDd2uPSgggXIhD8g+sh1o8+Mlp8OdfUufc=", "angular-ui-handsontable.full.min.js" : ...
json_instruct
{"type": "object", "properties": {"angular-ui-handsontable.full.css": {"type": "string"}, "angular-ui-handsontable.full.js": {"type": "string"}, "angular-ui-handsontable.full.min.css": {"type": "string"}, "angular-ui-handsontable.full.min.js": {"type": "string"}}, "required": ["angular-ui-handsontable.full.css", "angul...
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"copyright": {"type": "string"}, "url": {"type": "string"}, "theme": {"type": "string"}}, "required": ["copyright", "url", "theme"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"copyright" : "John-David Dalton", "url" : "http://allyoucanleet.com/", "theme" : "double-windsor"}
json_instruct
{"type": "object", "properties": {"copyright": {"type": "string"}, "url": {"type": "string"}, "theme": {"type": "string"}}, "required": ["copyright", "url", "theme"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"siteName": {"type": "string"}, "siteLang": {"type": "string"}}, "required": ["siteName", "siteLang"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"siteName" : "TEDx \u0130zmit Web Sitesi", "siteLang" : "tr"}
json_instruct
{"type": "object", "properties": {"siteName": {"type": "string"}, "siteLang": {"type": "string"}}, "required": ["siteName", "siteLang"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"dev": {"type": "object", "properties": {"server": {"type": "string"}}, "required": ["server"]}, "prod": {"type": "object", "properties": {"server": {"type": "string"}}, "required": ["server"]}}, "required": ["dev"...
{"dev" : {"server" : "localhost:3000"}, "prod" : {"server" : "<prod server>:3000"}}
json_instruct
{"type": "object", "properties": {"dev": {"type": "object", "properties": {"server": {"type": "string"}}, "required": ["server"]}, "prod": {"type": "object", "properties": {"server": {"type": "string"}}, "required": ["server"]}}, "required": ["dev", "prod"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"name": {"type": "string"}, "title": {"type": "string"}, "displayName": {"type": "string"}, "theme": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "license": {"type": "string"}, "engines"...
{"name" : "theme-jiggi", "title" : "Jiggi theme", "displayName" : "Jiggi theme", "theme" : "theme-jiggi", "version" : "0.1.1", "description" : "An attempt to create a nice dark gray theme.", "license" : "GNU", "engines" : {"mailspring" : "*"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "title": {"type": "string"}, "displayName": {"type": "string"}, "theme": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "license": {"type": "string"}, "engines": {"type": "object", "properties": {"mailspring": {"type": ...
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"components": {"type": "array", "items": {}}, "template": {"type": "null"}, "style": {"type": "null"}, "script": {"type": "object", "properties": {"code": {"type": "string"}, "map": {"type": "null"}}, "required": ["c...
{"components" : [], "template" : null, "style" : null, "script" : {"code" : "\n const someth = require('hhgttg')\n const answer = require('hhgttg')\n", "map" : null}}
json_instruct
{"type": "object", "properties": {"components": {"type": "array", "items": {}}, "template": {"type": "null"}, "style": {"type": "null"}, "script": {"type": "object", "properties": {"code": {"type": "string"}, "map": {"type": "null"}}, "required": ["code", "map"]}}, "required": ["components", "template", "style", "scrip...
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "require": {"type": "object", "properties": {"php": {"type": "string"}, "guzzlehttp/guzzle": {"type": "string"}, "illuminate/support": {"type": "string...
{"name" : "bingogg14/php-cfstream", "description" : "Upload and manage Cloudflare Stream easily", "require" : {"php" : ">=5.5", "guzzlehttp/guzzle" : "^6.3", "illuminate/support" : "^5.7"}, "authors" : [{"name" : "See Jian Jye", "email" : "seejianjye@gmail.com"}], "homepage" : "https://github.com/bingogg14/php-cfstream...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "require": {"type": "object", "properties": {"php": {"type": "string"}, "guzzlehttp/guzzle": {"type": "string"}, "illuminate/support": {"type": "string"}}, "required": ["php", "guzzlehttp/guzzle", "illuminate/support"]}, "a...
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "is_illegal": {"type": "boolean"}, "is_custom": {"type": "boolean"}, "text": {"type": "string"}, "images": {"type": "array", "items": {"type": "string"}}, "type": {"type": "s...
{"id" : 65961683, "name" : "Jurrac Velphito", "is_illegal" : false, "is_custom" : false, "text" : "1 Tuner + 1 or more non-Tuner Dinosaur-Type monsters\nThis card's ATK and DEF are equal to the total original ATK of the Synchro Material Monsters used for its Synchro Summon. If this card attacks a face-down Defense Posi...
json_instruct
{"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "is_illegal": {"type": "boolean"}, "is_custom": {"type": "boolean"}, "text": {"type": "string"}, "images": {"type": "array", "items": {"type": "string"}}, "type": {"type": "string"}, "attribute": {"type": "string"}, "atk": {"type":...