input
stringlengths
159
2.05k
output
stringlengths
5
10.3k
task
stringclasses
1 value
schema
stringlengths
100
1.99k
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"id": {"type": "integer"}, "category": {"type": "object", "properties": {"name": {"type": "string"}, "subset": {"type": "string"}}, "required": ["name", "subset"]}, "help": {"type": "object", "properties": {"de": {"type": "s...
{"id" : 1553, "category" : {"name" : "Battle", "subset" : "Treasure Hunt"}, "help" : {"de" : "Die Aquapolis 5 Mal abgeschlossen.", "en" : "Raid the deepest room in the Aquapolis 5 times.", "fr" : "Conqu\u00e9rir 5 fois l'Aquapole.", "jp" : "\u5b9d\u7269\u5eab \u30a2\u30af\u30a2\u30dd\u30ea\u30b9\u3092\u7d2f\u8a085\u56d...
json_instruct
{"type": "object", "properties": {"id": {"type": "integer"}, "category": {"type": "object", "properties": {"name": {"type": "string"}, "subset": {"type": "string"}}, "required": ["name", "subset"]}, "help": {"type": "object", "properties": {"de": {"type": "string"}, "en": {"type": "string"}, "fr": {"type": "string"}, "...
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"IndexId": {"type": "integer"}, "Portraits": {"type": "array", "items": {"type": "object", "properties": {"PortraitId": {"type": "integer"}, "PortraitName": {"type": "string"}, "PortraitImageBase64": {"type": "string"}}, "require...
{"IndexId" : 935, "Portraits" : [{"PortraitId" : 0, "PortraitName" : "STANDARD", "PortraitImageBase64" : "iVBORw0KGgoAAAANSUhEUgAAACgAAAAoBAMAAAB+0KVeAAAAMFBMVEUA/wAkKDVBRkmci5zHts7r5f8/apVts/JGiMN3x9ePz8ev17fn97fbbXGcPzX///8rkK95AAAB+0lEQVQokW3RMW8TMRQAYP+FA/aK93xJaKIimbuhKlKlF3s7MVzsP5CBZr7FmU9Iubmd2rFMNBvdclub8SbEWo...
json_instruct
{"type": "object", "properties": {"IndexId": {"type": "integer"}, "Portraits": {"type": "array", "items": {"type": "object", "properties": {"PortraitId": {"type": "integer"}, "PortraitName": {"type": "string"}, "PortraitImageBase64": {"type": "string"}}, "required": ["PortraitId", "PortraitName", "PortraitImageBase64"]...
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"title": {"type": "string"}, "creation_date": {"type": "null"}, "creation_date_earliest": {"type": "string"}, "creation_date_latest": {"type": "string"}, "medium": {"type": "string"}, "accession_number": {"type": "string"}, "id...
{"title" : "Mender of Shoes-Rabat-Morocco", "creation_date" : null, "creation_date_earliest" : "1921-01-01", "creation_date_latest" : "1946-01-01", "medium" : "etching", "accession_number" : "46.18.4", "id" : "cmoa:things/2ead4993-b47f-4d8c-90f0-2592f103292e", "credit_line" : "Gift of Alfred C. Howell", "date_acquired"...
json_instruct
{"type": "object", "properties": {"title": {"type": "string"}, "creation_date": {"type": "null"}, "creation_date_earliest": {"type": "string"}, "creation_date_latest": {"type": "string"}, "medium": {"type": "string"}, "accession_number": {"type": "string"}, "id": {"type": "string"}, "credit_line": {"type": "string"}, "...
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"settings": {"type": "object", "properties": {"createApp": {"type": "object", "properties": {"url": {"type": "string"}, "image": {"type": "string"}}, "required": ["url", "image"]}, "copyingKey": {"type": "object", ...
{"settings" : {"createApp" : {"url" : "https://www.linkedin.com/secure/developer?newapp=", "image" : "config.png"}, "copyingKey" : {"url" : "https://www.linkedin.com/secure/developer", "image" : "keys.png"}, "install" : {"href" : {"provider" : "http://www.linkedin.com/", "docs" : "https://developer.linkedin.com/documen...
json_instruct
{"type": "object", "properties": {"settings": {"type": "object", "properties": {"createApp": {"type": "object", "properties": {"url": {"type": "string"}, "image": {"type": "string"}}, "required": ["url", "image"]}, "copyingKey": {"type": "object", "properties": {"url": {"type": "string"}, "image": {"type": "string"}}, ...
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"name": {"type": "string"}, "id": {"type": "string"}, "image": {"type": "string"}, "attributes": {"type": "object", "properties": {"No.": {"type": "string"}, "Type": {"type": "string"}, "Rarity": {"type": "string"}, "MP": {"typ...
{"name" : "Irresistible Pleasure", "id" : "MORRIGAN010", "image" : "https://nminchow.github.io/teppen-json/images/morrigan010.png", "attributes" : {"No." : "MORRIGAN 010", "Type" : "Action", "Rarity" : "Common", "MP" : "4", "Effects" : "Inflicts Halt on an enemy unit for 13 seconds."}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "id": {"type": "string"}, "image": {"type": "string"}, "attributes": {"type": "object", "properties": {"No.": {"type": "string"}, "Type": {"type": "string"}, "Rarity": {"type": "string"}, "MP": {"type": "string"}, "Effects": {"type": "string"}}, "required": ...
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"response_time": {"type": "array", "items": {"type": "integer"}}, "donator": {"type": "array", "items": {"type": "string"}}, "num_deepfakes": {"type": "integer"}, "users": {"type": "array", "items": {}}}, "required": ["respo...
{"response_time" : [60], "donator" : ["1643932737"], "num_deepfakes" : 0, "users" : []}
json_instruct
{"type": "object", "properties": {"response_time": {"type": "array", "items": {"type": "integer"}}, "donator": {"type": "array", "items": {"type": "string"}}, "num_deepfakes": {"type": "integer"}, "users": {"type": "array", "items": {}}}, "required": ["response_time", "donator", "num_deepfakes", "users"], "$schema": "h...
Using the following JSON schema, generate a compatible JSON instance: {"type": "array", "items": {"type": "array", "items": {"type": "string"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
[["410108003001", "\u8363\u82d1\u793e\u533a\u5c45\u6c11\u59d4\u5458\u4f1a", "111", "0"], ["410108003200", "\u4e0b\u5761\u6768\u6751\u6c11\u59d4\u5458\u4f1a", "111", "0"], ["410108003201", "\u675c\u5e84\u6751\u6c11\u59d4\u5458\u4f1a", "220", "0"], ["410108003202", "\u53cc\u6865\u6751\u6c11\u59d4\u5458\u4f1a", "220", "0"...
json_instruct
{"type": "array", "items": {"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": {"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" : 101788609, "type" : "Feature", "properties" : {"src:alt_label" : "quattroshapes", "src:geom" : "quattroshapes", "wof:geomhash" : "a43e08202b7d20fed15bc10e80828721", "wof:id" : 101788609, "wof:repo" : "whosonfirst-data-admin-ro"}, "bbox" : [24.111864, 46.59687, 24.147961, 46.623126], "geometry" : {"coordinates" ...
json_instruct
{"type": "object", "properties": {"id": {"type": "integer"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"src:alt_label": {"type": "string"}, "src:geom": {"type": "string"}, "wof:geomhash": {"type": "string"}, "wof:id": {"type": "integer"}, "wof:repo": {"type": "string"}}, "required": ["...
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"name": {"type": "string"}, "icon": {"type": "string"}, "category": {"type": "string"}, "flag": {"type": "string"}, "advancement": {"type": "string"}, "pages": {"type": "array", "items": {"type": "object", "properties...
{"name" : "Yaga Hog", "icon" : "minecraft:spawn_egg{EntityTag:{id:'mysticalwildlife:yaga_hog'}}", "category" : "animals", "flag" : "universalbestiary:entity:mysticalwildlife:yaga_hog", "advancement" : "universalbestiary:mysticalwildlife_yaga_hog", "pages" : [{"type" : "text", "text" : "The $(mob)Yaga Hog$() is an anima...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "icon": {"type": "string"}, "category": {"type": "string"}, "flag": {"type": "string"}, "advancement": {"type": "string"}, "pages": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "text": {"type": "string"}}, "require...
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"info": {"type": "object", "properties": {"gameover": {"type": "object", "properties": {"address": {"type": "integer"}, "type": {"type": "string"}}, "required": ["address", "type"]}, "health1": {"type": "object", "properties": ...
{"info" : {"gameover" : {"address" : 1056, "type" : "|u1"}, "health1" : {"address" : 1609, "type" : "|u1"}, "health2" : {"address" : 1611, "type" : "|u1"}, "health3" : {"address" : 1613, "type" : "|u1"}, "score" : {"address" : 1828, "type" : "<u2"}}}
json_instruct
{"type": "object", "properties": {"info": {"type": "object", "properties": {"gameover": {"type": "object", "properties": {"address": {"type": "integer"}, "type": {"type": "string"}}, "required": ["address", "type"]}, "health1": {"type": "object", "properties": {"address": {"type": "integer"}, "type": {"type": "string"}...
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"dialogue": {"type": "array", "items": {"type": "object", "properties": {"speed": {"type": "number"}, "portrait": {"type": "string"}, "boxState": {"type": "string"}, "expression": {"type": "string"}, "text": {"type":...
{"dialogue" : [{"speed" : 0.05, "portrait" : "TABI", "boxState" : "normal", "expression" : "talk", "text" : "So We Finally Meet After 1 Year Of Hiding"}, {"speed" : 0.05, "portrait" : "gf", "boxState" : "normal", "expression" : "shocked", "text" : "*Shaking From Fear*"}, {"speed" : 0.05, "portrait" : "TABI", "boxState"...
json_instruct
{"type": "object", "properties": {"dialogue": {"type": "array", "items": {"type": "object", "properties": {"speed": {"type": "number"}, "portrait": {"type": "string"}, "boxState": {"type": "string"}, "expression": {"type": "string"}, "text": {"type": "string"}}, "required": ["speed", "portrait", "boxState", "expression...
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" : "140429101200", "text" : "\u6d2a\u6c34\u6751\u59d4\u4f1a"}, {"id" : "140429101201", "text" : "\u65b0\u4e0a\u5cad\u6751\u59d4\u4f1a"}, {"id" : "140429101202", "text" : "\u5357\u53f0\u6751\u59d4\u4f1a"}, {"id" : "140429101203", "text" : "\u767d\u548c\u6751\u59d4\u4f1a"}, {"id" : "140429101204", "text" : "\u5e84\...
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": {"instance": {"type": "object", "properties": {"docType": {"type": "string"}, "docId:": {"type": "string"}, "mltFields:": {"type": "string"}, "docType:": {"type": "string"}, "searchUrl": {"type": "string"}, "docId": {"type": "st...
{"instance" : {"docType" : "PaulDeBruicker 5/8/2013 10:24", "docId:" : "PaulDeBruicker 5/8/2013 10:24", "mltFields:" : "PaulDeBruicker 5/8/2013 10:20", "docType:" : "PaulDeBruicker 5/8/2013 10:24", "searchUrl" : "PaulDeBruicker 5/8/2013 10:37", "docId" : "PaulDeBruicker 5/8/2013 10:24"}, "class" : {}}
json_instruct
{"type": "object", "properties": {"instance": {"type": "object", "properties": {"docType": {"type": "string"}, "docId:": {"type": "string"}, "mltFields:": {"type": "string"}, "docType:": {"type": "string"}, "searchUrl": {"type": "string"}, "docId": {"type": "string"}}, "required": ["docType", "docId:", "mltFields:", "d...
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"SNX": {"type": "object", "properties": {"asset": {"type": "string"}, "feed": {"type": "string"}}, "required": ["asset", "feed"]}, "ETH": {"type": "object", "properties": {"asset": {"type": "string"}, "feed": {"type": "string"}},...
{"SNX" : {"asset" : "SNX", "feed" : "0x38D2f492B4Ef886E71D111c592c9338374e1bd8d"}, "ETH" : {"asset" : "ETH", "feed" : "0x7f8847242a530E809E17bF2DA5D2f9d2c4A43261"}, "BTC" : {"asset" : "BTC", "feed" : "0xd9BdB42229F1aefe47Cdf028408272686445D3ff"}, "LINK" : {"asset" : "LINK", "feed" : "0x4e5A8fe9d533dec45C7CB57D548B04978...
json_instruct
{"type": "object", "properties": {"SNX": {"type": "object", "properties": {"asset": {"type": "string"}, "feed": {"type": "string"}}, "required": ["asset", "feed"]}, "ETH": {"type": "object", "properties": {"asset": {"type": "string"}, "feed": {"type": "string"}}, "required": ["asset", "feed"]}, "BTC": {"type": "object"...
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"06-2019": {"type": "integer"}, "07-2019": {"type": "integer"}, "08-2019": {"type": "integer"}}, "required": ["06-2019", "07-2019", "08-2019"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"06-2019" : 5414, "07-2019" : 950, "08-2019" : 11}
json_instruct
{"type": "object", "properties": {"06-2019": {"type": "integer"}, "07-2019": {"type": "integer"}, "08-2019": {"type": "integer"}}, "required": ["06-2019", "07-2019", "08-2019"], "$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"}, "version": {"type": "string"}, "private": {"type": "boolean"}, "scripts": {"type": "object", "properties": {"dev": {"type": "string"}, "build": {"type": "string"}, "start": {"type": "string...
{"name" : "stretchmate", "version" : "0.1.0", "private" : true, "scripts" : {"dev" : "next dev", "build" : "next build", "start" : "next start"}, "dependencies" : {"@apollo/react-hooks" : "^4.0.0", "@types/validator" : "^13.1.3", "apollo-boost" : "^0.4.9", "apollo-server-micro" : "^2.19.2", "class-transformer" : "^0.4....
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "private": {"type": "boolean"}, "scripts": {"type": "object", "properties": {"dev": {"type": "string"}, "build": {"type": "string"}, "start": {"type": "string"}}, "required": ["dev", "build", "start"]}, "dependencies": {"type":...
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"componentChunkName": {"type": "string"}, "path": {"type": "string"}, "webpackCompilationHash": {"type": "string"}, "result": {"type": "object", "properties": {"data": {"type": "object", "properties": {"allEpraccurCsv": {"ty...
{"componentChunkName" : "component---src-templates-surgery-js", "path" : "/hospital/A81058", "webpackCompilationHash" : "", "result" : {"data" : {"allEpraccurCsv" : {"edges" : [{"node" : {"field1" : "A81058", "field2" : "COULBY MEDICAL PRACTICE", "field5" : "COULBY MEDICAL PRACTICE", "field6" : "CROPTON WAY,COULBY NEWH...
json_instruct
{"type": "object", "properties": {"componentChunkName": {"type": "string"}, "path": {"type": "string"}, "webpackCompilationHash": {"type": "string"}, "result": {"type": "object", "properties": {"data": {"type": "object", "properties": {"allEpraccurCsv": {"type": "object", "properties": {"edges": {"type": "array", "item...
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["t...
{"name" : "erc20browntoken", "version" : "1.0.0", "description" : "The test network for browntoken deployment to the ethereum blockchain network", "main" : "index.js", "scripts" : {"test" : "npm run test"}, "keywords" : ["ethereum", "browntoken"], "author" : "Safelink (Augustine francis)", "license" : "ISC", "dependenc...
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"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author...
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"compilerOptions": {"type": "object", "properties": {"baseUrl": {"type": "string"}, "paths": {"type": "object", "properties": {"*": {"type": "array", "items": {"type": "string"}}}, "required": ["*"]}}, "required": ["baseUrl", "...
{"compilerOptions" : {"baseUrl" : ".", "paths" : {"*" : ["../../../../../../../var/folders/0t/67r6x8ws4j7388yz34hzv1sh0000gn/T/hugo_cache/modules/filecache/modules/pkg/mod/github.com/wowchemy/wowchemy-hugo-modules/wowchemy@v0.0.0-20210522185922-f54794f046c5/assets/*"]}}}
json_instruct
{"type": "object", "properties": {"compilerOptions": {"type": "object", "properties": {"baseUrl": {"type": "string"}, "paths": {"type": "object", "properties": {"*": {"type": "array", "items": {"type": "string"}}}, "required": ["*"]}}, "required": ["baseUrl", "paths"]}}, "required": ["compilerOptions"], "$schema": "htt...
The schema below describes a JSON structure. Generate a valid example: {"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" : "Ortiporio", "circ" : "2\u00e8me circonscription", "dpt" : "Haute-Corse", "inscrits" : 152, "abs" : 41, "votants" : 111, "blancs" : 0, "nuls" : 0, "exp" : 111, "res" : [{"nuance" : "REG", "nom" : "M. Jean-F\u00e9lix ACQUAVIVA", "voix" : 103}, {"nuance" : "REM", "nom" : "M. Francis GIUDICI", "voix" : 8}]}
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"...
Following the schema specification below, generate a valid 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" : "3321010003", "district_id" : "3321010", "name" : "KEBONBATUR"}
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 an example JSON object that satisfies 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" : [114.393700787402, 45.3818181818182, 0.913199439644814, 106.07874015748, 92.6254545454545, 0.592522233724594, 64.503937007874, 94.4872727272727, 0.459842985495925, 52.4094488188976, 182.923636363636, 0.68827123939991, 36.5354330708661, 120.5527272...
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...
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "img": {"type": "string"}, "links": {"type": "object", "properties": {"website": {"type": "string"}, "linkedin": {"type": "string"}, "github": {"type": "string"}}...
{"id" : "e7a5e9de-70d8-4a21-8616-c731d41ac5fc", "name" : "Micah Effiong", "img" : "https://media-exp1.licdn.com/dms/image/C4E03AQHiXqHMZKJO2w/profile-displayphoto-shrink_200_200/0?e=1599091200&v=beta&t=AP3H6fvEkCKlCV1fNyBFWU3Wws_iR4Et9g3_ijo7-Sk", "links" : {"website" : "", "linkedin" : "https://ng.linkedin.com/in/mica...
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "img": {"type": "string"}, "links": {"type": "object", "properties": {"website": {"type": "string"}, "linkedin": {"type": "string"}, "github": {"type": "string"}}, "required": ["website", "linkedin", "github"]}, "jobTitle": {"type":...
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"Department": {"type": "string"}, "Region": {"type": "string"}, "Position": {"type": "string"}, "Name": {"type": "string"}, "\u0414\u0435\u043a\u043b\u0430\u0440\u0430\u0446\u0456\u0457 2013": {"type": "string"}, "\u0414\u0435\u0...
{"Department" : "\u041f\u0440\u043e\u043a\u0443\u0440\u0430\u0442\u0443\u0440\u0430 \u0414\u043e\u043d\u0435\u0446\u044c\u043a\u043e\u0457 \u043e\u0431\u043b\u0430\u0441\u0442\u0456", "Region" : "\u0414\u043e\u043d\u0435\u0446\u044c\u043a\u0430 \u043e\u0431\u043b\u0430\u0441\u0442\u044c", "Position" : "\u0417\u0430\u04...
json_instruct
{"type": "object", "properties": {"Department": {"type": "string"}, "Region": {"type": "string"}, "Position": {"type": "string"}, "Name": {"type": "string"}, "\u0414\u0435\u043a\u043b\u0430\u0440\u0430\u0446\u0456\u0457 2013": {"type": "string"}, "\u0414\u0435\u043a\u043b\u0430\u0440\u0430\u0446\u0456\u0457 2014": {"ty...
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "qualified_name": {"type": "string"}, "examine": {"type": "string"}, "members": {"type": "boolean"}, "release_date": {"type": "string"}, "quest": {"type": "boolean"}, "w...
{"id" : 9941, "name" : "Pink balloon", "qualified_name" : "Origami balloon (Pink)", "examine" : "An origami balloon.", "members" : true, "release_date" : "2006-11-06", "quest" : true, "weight" : 0.001, "value" : 1, "tradeable" : false, "stackable" : false, "noteable" : false, "equipable" : false, "tradeable_ge" : false...
json_instruct
{"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "qualified_name": {"type": "string"}, "examine": {"type": "string"}, "members": {"type": "boolean"}, "release_date": {"type": "string"}, "quest": {"type": "boolean"}, "weight": {"type": "number"}, "value": {"type": "integer"}, "tra...
Create an example JSON object that satisfies this schema: {"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" : "1204040001", "district_id" : "1204040", "name" : "TAPIAN NAULI I"}
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#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"appeal": {"type": "integer"}, "effect_entries": {"type": "array", "items": {"type": "object", "properties": {"effect": {"type": "string"}, "language": {"type": "object", "properties": {"name": {"type": "string"...
{"appeal" : 2, "effect_entries" : [{"effect" : "Attempts to jam all Pok\u00e9mon that have appealed this turn.", "language" : {"name" : "en", "url" : "/api/v2/language/9/"}}], "flavor_text_entries" : [{"flavor_text" : "Startles all Pok\u00e9mon that have done their appeals.", "language" : {"name" : "en", "url" : "/api/...
json_instruct
{"type": "object", "properties": {"appeal": {"type": "integer"}, "effect_entries": {"type": "array", "items": {"type": "object", "properties": {"effect": {"type": "string"}, "language": {"type": "object", "properties": {"name": {"type": "string"}, "url": {"type": "string"}}, "required": ["name", "url"]}}, "required": [...
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"n_dim": {"type": "integer"}, "n_trials": {"type": "integer"}, "objective": {"type": "string"}, "white": {"type": "string"}, "black": {"type": "string"}, "traceback": {"type": "array", "items": {"type": "strin...
{"n_dim" : 5, "n_trials" : 130, "objective" : "markowitz_realized_on_cube", "white" : "hyperopt_tpe", "black" : "ultraopt_gbrt", "traceback" : ["passing", "passing"], "best_val" : [-0.03725103727746114, -0.04786145885010051], "best_x" : [[0.10118536454088999, 0.27791729832113843, 0.20325539016400274, 0.2277291797690883...
json_instruct
{"type": "object", "properties": {"n_dim": {"type": "integer"}, "n_trials": {"type": "integer"}, "objective": {"type": "string"}, "white": {"type": "string"}, "black": {"type": "string"}, "traceback": {"type": "array", "items": {"type": "string"}}, "best_val": {"type": "array", "items": {"type": "number"}}, "best_x": {...
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"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": "i...
{"id" : 101809273, "type" : "Feature", "properties" : {"src:alt_label" : "quattroshapes_pg", "src:geom" : "quattroshapes_pg", "wof:geomhash" : "966981092a52a27c4202b8703c8460ac", "wof:id" : 101809273, "wof:repo" : "whosonfirst-data-admin-be"}, "bbox" : [2.82024, 50.85485, 2.82024, 50.85485], "geometry" : {"coordinates"...
json_instruct
{"type": "object", "properties": {"id": {"type": "integer"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"src:alt_label": {"type": "string"}, "src:geom": {"type": "string"}, "wof:geomhash": {"type": "string"}, "wof:id": {"type": "integer"}, "wof:repo": {"type": "string"}}, "required": ["...
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"copyright": {"type": "string"}, "url": {"type": "string"}, "email": {"type": "string"}, "format": {"type": "string"}, "gravatar": {"type": "boolean"}, "theme": {"type": "string"}}, "required": ["copyright", "url", "e...
{"copyright" : "Dhaval Kapil", "url" : "https://dhavalkapil.com", "email" : "me@dhavalkapil.com", "format" : "html", "gravatar" : true, "theme" : "rokkitt"}
json_instruct
{"type": "object", "properties": {"copyright": {"type": "string"}, "url": {"type": "string"}, "email": {"type": "string"}, "format": {"type": "string"}, "gravatar": {"type": "boolean"}, "theme": {"type": "string"}}, "required": ["copyright", "url", "email", "format", "gravatar", "theme"], "$schema": "http://json-schema...
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"approvals_before_merge": {"type": "integer"}, "reset_approvals_on_push": {"type": "boolean"}, "disable_overriding_approvers_per_merge_request": {"type": "boolean"}, "merge_requests_author_approval": {"type": "boolean"}, "merge...
{"approvals_before_merge" : 2, "reset_approvals_on_push" : true, "disable_overriding_approvers_per_merge_request" : false, "merge_requests_author_approval" : false, "merge_requests_disable_committers_approval" : false}
json_instruct
{"type": "object", "properties": {"approvals_before_merge": {"type": "integer"}, "reset_approvals_on_push": {"type": "boolean"}, "disable_overriding_approvers_per_merge_request": {"type": "boolean"}, "merge_requests_author_approval": {"type": "boolean"}, "merge_requests_disable_committers_approval": {"type": "boolean"}...
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"regexes": {"type": "object", "properties": {"operand": {"type": "string"}, "operator": {"type": "string"}, "expression": {"type": "string"}}, "required": ["operand", "operator", "expression"]}, "command_words":...
{"regexes" : {"operand" : "\\d+", "operator" : "(?:times|x|\\*|divided by|\\/|mod(?:ul(?:o|us))?|\\%|plus|\\+|minus|\\-|to the power of|\\^)", "expression" : "\\d+(?:\\s*(?:times|x|\\*|divided by|\\/|mod(?:ul(?:e|o|us))?|\\%|plus|\\+|minus|\\-|to the power of|\\^)\\s*\\d+)*"}, "command_words" : ["what(?:'| i)?s {expres...
json_instruct
{"type": "object", "properties": {"regexes": {"type": "object", "properties": {"operand": {"type": "string"}, "operator": {"type": "string"}, "expression": {"type": "string"}}, "required": ["operand", "operator", "expression"]}, "command_words": {"type": "array", "items": {"type": "string"}}}, "required": ["regexes", "...
Generate a valid JSON object that conforms to the following schema: {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "text": {"type": "string"}}, "required": ["id", "text"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"id" : "131025108201", "text" : "\u5317\u9b4f\u6751\u59d4\u4f1a"}, {"id" : "131025108202", "text" : "\u5317\u826f\u6751\u59d4\u4f1a"}, {"id" : "131025108203", "text" : "\u5357\u9b4f\u6751\u59d4\u4f1a"}, {"id" : "131025108204", "text" : "\u9b4f\u5409\u6751\u59d4\u4f1a"}, {"id" : "131025108205", "text" : "\u53cc\u5e99\...
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#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"name": {"type": "string"}, "reason": {"type": "object", "properties": {"react-jsx": {"type": "integer"}}, "required": ["react-jsx"]}, "sources": {"type": "object", "properties": {"dir": {"type": "string"}, "subdirs...
{"name" : "1BackGestionCours", "reason" : {"react-jsx" : 3}, "sources" : {"dir" : "src", "subdirs" : true}, "bsc-flags" : ["-bs-super-errors", "-bs-no-version-header"], "package-specs" : [{"module" : "commonjs", "in-source" : true}], "suffix" : ".bs.js", "namespace" : true, "bs-dependencies" : ["bs-express", "bs-axios"...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "reason": {"type": "object", "properties": {"react-jsx": {"type": "integer"}}, "required": ["react-jsx"]}, "sources": {"type": "object", "properties": {"dir": {"type": "string"}, "subdirs": {"type": "boolean"}}, "required": ["dir", "subdirs"]}, "bsc-flags": ...
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"parent": {"type": "string"}, "name": {"type": "string"}, "flags": {"type": "integer"}, "props": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "name": {"type": "string"}, "flags": {"type...
{"parent" : "effectTrackBase", "name" : "effectTrack", "flags" : 2, "props" : [{"type" : "array:handle:effectTrackItem", "name" : "items", "flags" : 6627016704}]}
json_instruct
{"type": "object", "properties": {"parent": {"type": "string"}, "name": {"type": "string"}, "flags": {"type": "integer"}, "props": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "name": {"type": "string"}, "flags": {"type": "integer"}}, "required": ["type", "name", "flags"]}}},...
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"ta_runs": {"type": "integer"}, "n_configs": {"type": "integer"}, "wallclock_time_used": {"type": "number"}, "ta_time_used": {"type": "number"}, "inc_changed": {"type": "integer"}, "_n_configs_per_intensify": {"type": "integer"...
{"ta_runs" : 158, "n_configs" : 43, "wallclock_time_used" : 1044.5444946289062, "ta_time_used" : 3.7022880000000007, "inc_changed" : 3, "_n_configs_per_intensify" : 0, "_n_calls_of_intensify" : 22, "_ema_n_configs_per_intensifiy" : 0.0, "_EMA_ALPHA" : 0.2}
json_instruct
{"type": "object", "properties": {"ta_runs": {"type": "integer"}, "n_configs": {"type": "integer"}, "wallclock_time_used": {"type": "number"}, "ta_time_used": {"type": "number"}, "inc_changed": {"type": "integer"}, "_n_configs_per_intensify": {"type": "integer"}, "_n_calls_of_intensify": {"type": "integer"}, "_ema_n_co...
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"author": {"type": "string"}, "version": {"type": "string"}, "server_scripts": {"type": "array", "items": {"type": "string"}}, "client_scripts": {"type": "array", "items": {"type": "string"}}, "files": {"type": "array", "items"...
{"author" : "Alexandre M. - AlexMog", "version" : "1.0.0a", "server_scripts" : ["server.lua"], "client_scripts" : ["client.lua"], "files" : []}
json_instruct
{"type": "object", "properties": {"author": {"type": "string"}, "version": {"type": "string"}, "server_scripts": {"type": "array", "items": {"type": "string"}}, "client_scripts": {"type": "array", "items": {"type": "string"}}, "files": {"type": "array", "items": {}}}, "required": ["author", "version", "server_scripts",...
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"0-17": {"type": "string"}, "18-44": {"type": "string"}, "45-64": {"type": "string"}, "65-74": {"type": "string"}, "75+": {"type": "string"}}, "required": ["0-17", "18-44", "45-64", "65-74", "75+"], "$schema": "htt...
{"0-17" : "11", "18-44" : "682", "45-64" : "3873", "65-74" : "4336", "75+" : "8448"}
json_instruct
{"type": "object", "properties": {"0-17": {"type": "string"}, "18-44": {"type": "string"}, "45-64": {"type": "string"}, "65-74": {"type": "string"}, "75+": {"type": "string"}}, "required": ["0-17", "18-44", "45-64", "65-74", "75+"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"relation": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}, "pageTitle": {"type": "string"}, "title": {"type": "string"}, "url": {"type": "string"}, "hasHeader": {"type": "boolean"}, "headerPosition": ...
{"relation" : [["", "1", "2", "3", "4", "5", "6", "7", "8", "9"], ["Name", "Sternklang", "They Are Watching Through My Eyes", "Skeletons of Steel", "Neuropol Underground Infrastructure", "Cryogenic Ceremonies", "Among the Tormented", "Tiefe - Floating Corpses Odor", "Becoming (Segmented Minds)", "When All Hope Was Dyin...
json_instruct
{"type": "object", "properties": {"relation": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}, "pageTitle": {"type": "string"}, "title": {"type": "string"}, "url": {"type": "string"}, "hasHeader": {"type": "boolean"}, "headerPosition": {"type": "string"}, "tableType": {"type": "string"}, "tab...
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {"type": "integer"}}, "productReviews": {"type": "array", "items": {"type": "object", "properties": {"prod...
{"userId" : 96515, "cartId" : "5dc554aa-d40d-419d-a768-c042122fbeac", "preferredProducts" : [4833, 1797], "productReviews" : [{"productId" : 4326, "reviewText" : "It only works when I'm Chad.", "reviewDate" : "2019-03-05T02:51:31.2181539+02:00"}, {"productId" : 2647, "reviewText" : "This Handmade works so well. It hung...
json_instruct
{"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {"type": "integer"}}, "productReviews": {"type": "array", "items": {"type": "object", "properties": {"productId": {"type": "integer"}, "reviewText": {"type": "string"}, "reviewD...
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"h": {"type": "array", "items": {"type": "object", "properties": {"d": {"type": "array", "items": {"type": "object", "properties": {"e": {"type": "array", "items": {"type": "string"}}, "f": {"type": "string"}}, "required": ["e"...
{"h" : [{"d" : [{"e" : ["\ufff9`Sapikalonaaw~ `no~ `posi~ `to~ `'edo~.\ufffa\ufffb\u8c93\u60f3\u6349\u5f04\u8001\u9f20\u3002"], "f" : "\u60f3\u6349\u5f04\u3001\u8abf\u6232\u4ed6\u4eba\u3002"}]}], "stem" : "kalona", "t" : "sapikalonaaw"}
json_instruct
{"type": "object", "properties": {"h": {"type": "array", "items": {"type": "object", "properties": {"d": {"type": "array", "items": {"type": "object", "properties": {"e": {"type": "array", "items": {"type": "string"}}, "f": {"type": "string"}}, "required": ["e", "f"]}}}, "required": ["d"]}}, "stem": {"type": "string"},...
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "engines": {"type": "object", "properties": {"node": {"type": "string"}, "npm": {"type"...
{"name" : "appointment_api", "version" : "1.0.0", "description" : "* appointment booking system API that will allow user's to book their appointment ahead of time before going to the service provider.", "main" : "index.js", "engines" : {"node" : "17.4.0", "npm" : "8.3.1"}, "scripts" : {"test" : "echo \"Error: no test s...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "engines": {"type": "object", "properties": {"node": {"type": "string"}, "npm": {"type": "string"}}, "required": ["node", "npm"]}, "scripts": {"type": "object", "pr...
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"build": {"type": "string"}, "watch": {"type": "s...
{"name" : "gb", "version" : "1.0.0", "description" : "", "main" : "dist/bundle.js", "scripts" : {"build" : "webpack", "watch" : "webpack --watch"}, "author" : "Matt Walsh <walsh9@gmail.com> (https://walsh9.net)", "license" : "MIT", "devDependencies" : {"babel-cli" : "^6.16.0", "babel-loader" : "^6.2.5", "babel-preset-e...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"build": {"type": "string"}, "watch": {"type": "string"}}, "required": ["build", "watch"]}, "author": {"type": "string"...
Please provide a valid JSON object following this schema: {"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": {"typ...
{"cam/image_array" : "407_cam-image_array_.jpg", "user/angle" : 0.828, "user/throttle" : 0.724, "user/mode" : "user", "pos/pos_x" : 81.21429, "pos/pos_y" : 0.5546423, "pos/pos_z" : -10.66234, "pos/speed" : 9.458962, "pos/cte" : -7.011063, "milliseconds" : 23942}
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": {"parent": {"type": "string"}}, "required": ["parent"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"parent" : "conquest:block/oak_platform_sphere"}
json_instruct
{"type": "object", "properties": {"parent": {"type": "string"}}, "required": ["parent"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"name": {"type": "string"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"annotations": {"type": "array", "items": {}}, "type": {"type": "string"}, "typeProperties": {"type": "object"...
{"name" : "FileServer1", "type" : "Microsoft.DataFactory/factories/linkedservices", "properties" : {"annotations" : [], "type" : "FileServer", "typeProperties" : {"host" : "\\\\DESKTOP-I2LC4VQ\\Users\\Ayush\\OneDrive", "userId" : "ayush", "encryptedCredential" : "eyJDcmVkZW50aWFsSWQiOiI0NDcxMzgxYS02YjdlLTRiMjktOWM0NS01...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"annotations": {"type": "array", "items": {}}, "type": {"type": "string"}, "typeProperties": {"type": "object", "properties": {"host": {"type": "string"}, "userId": {"type": "string"...
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "object", "properties": {"en": {"type": "string"}}, "required": ["en"]}, "country": {"type": "string"}, "region": {"type": "string"}, "identifiers": {"type": "object", "pro...
{"id" : "02984", "name" : {"en" : "Bagaskar"}, "country" : "FI", "region" : "ES", "identifiers" : {"wmo" : "02984", "usaf" : "029840"}, "location" : {"latitude" : 59.9333, "longitude" : 24.0167, "elevation" : 10}, "timezone" : "Europe/Helsinki"}
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "object", "properties": {"en": {"type": "string"}}, "required": ["en"]}, "country": {"type": "string"}, "region": {"type": "string"}, "identifiers": {"type": "object", "properties": {"wmo": {"type": "string"}, "usaf": {"type": "string"}}, "req...
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"inp1": {"type": "array", "items": {"type": "object", "properties": {"instr": {"type": "string"}}, "required": ["instr"]}}, "inp2": {"type": "array", "items": {"type": "string"}}}, "required": ["inp1", "inp2"], "$schema": "h...
{"inp1" : [{"instr" : "one"}, {"instr" : "two"}], "inp2" : ["three", "four"]}
json_instruct
{"type": "object", "properties": {"inp1": {"type": "array", "items": {"type": "object", "properties": {"instr": {"type": "string"}}, "required": ["instr"]}}, "inp2": {"type": "array", "items": {"type": "string"}}}, "required": ["inp1", "inp2"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"latest_version": {"type": "array", "items": {"type": "string"}}, "meta": {"type": "object", "properties": {"homepage": {"type": "string"}, "license": {"type": "string"}}, "required": ["homepage", "license"]}, "versions": {"typ...
{"latest_version" : ["0.5.post1"], "meta" : {"homepage" : "https://github.com/cfobel/ipython-helpers", "license" : "LGPL-3.0"}, "versions" : {"0.1" : {"sha256" : "dd6dc5d2cd6d60f44adac2fd87d81d7d752b629b2016d249e4d5e27cd270c9f1", "url" : "https://files.pythonhosted.org/packages/50/ed/ba6899f2864a0ab3de541eeaf4ae384a407...
json_instruct
{"type": "object", "properties": {"latest_version": {"type": "array", "items": {"type": "string"}}, "meta": {"type": "object", "properties": {"homepage": {"type": "string"}, "license": {"type": "string"}}, "required": ["homepage", "license"]}, "versions": {"type": "object", "properties": {"0.1": {"type": "object", "pro...
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"header": {"type": "object", "properties": {"protoclVersion": {"type": "object", "properties": {"protocolVersion": {"type": "string"}}, "required": ["protocolVersion"]}}, "required": ["protoclVersion"]}, "body": {"...
{"header" : {"protoclVersion" : {"protocolVersion" : "0.0.2"}}, "body" : {"rx_obcTime" : "512739", "rx_recvCnt" : "67", "rx_gpsDate" : "100319", "rx_gpsTime" : "61301", "rx_lat" : 35.71066, "rx_long" : 139.752496, "rx_alt" : "22", "rx_temp" : "30.33", "rx_airP" : "101632", "rx_bSize" : "33", "tx_id" : "23", "tx_cnt" : ...
json_instruct
{"type": "object", "properties": {"header": {"type": "object", "properties": {"protoclVersion": {"type": "object", "properties": {"protocolVersion": {"type": "string"}}, "required": ["protocolVersion"]}}, "required": ["protoclVersion"]}, "body": {"type": "object", "properties": {"rx_obcTime": {"type": "string"}, "rx_re...
Create a JSON structure that matches this schema definition: {"type": "array", "items": {"type": "object", "properties": {"namaKab": {"type": "string"}, "originalFilename": {"type": "string"}, "namaPartai": {"type": "string"}, "id": {"type": "integer"}, "noUrut": {"type": "integer"}, "nama": {"type": "string"}, "strin...
[{"namaKab" : "KOTA PONTIANAK", "originalFilename" : "pas foto haris.jpg", "namaPartai" : "Partai Bulan Bintang", "id" : 56110, "noUrut" : 1, "nama" : "ABDUL HARITS, S.Kom", "stringJenisKelamin" : "Laki-Laki"}, {"namaKab" : "KOTA PONTIANAK", "originalFilename" : "Pas Foto Ahmaddin nawawi 2.jpg", "namaPartai" : "Partai ...
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", "...
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"900026851": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900026852": {"type": "object", "properties...
{"900026851" : {"nama" : "TPS 1", "dapil" : [1201, 11203, 2120703]}, "900026852" : {"nama" : "TPS 2", "dapil" : [1201, 11203, 2120703]}, "900026853" : {"nama" : "TPS 3", "dapil" : [1201, 11203, 2120703]}}
json_instruct
{"type": "object", "properties": {"900026851": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900026852": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": ...
Based on the schema below, produce a valid JSON object: {"type": "array", "items": {"type": "object", "properties": {"year": {"type": "integer"}, "sex": {"type": "string"}, "n": {"type": "integer"}, "prop": {"type": "number"}}, "required": ["year", "sex", "n", "prop"]}, "$schema": "http://json-schema.org/draft-07/sche...
[{"year" : 1971, "sex" : "F", "n" : 8, "prop" : 4.57e-06}, {"year" : 1977, "sex" : "F", "n" : 5, "prop" : 3.04e-06}, {"year" : 1979, "sex" : "F", "n" : 5, "prop" : 2.9e-06}, {"year" : 1980, "sex" : "F", "n" : 8, "prop" : 4.49e-06}, {"year" : 1981, "sex" : "F", "n" : 13, "prop" : 7.27e-06}, {"year" : 1982, "sex" : "F", ...
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"year": {"type": "integer"}, "sex": {"type": "string"}, "n": {"type": "integer"}, "prop": {"type": "number"}}, "required": ["year", "sex", "n", "prop"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"website": {"type": "string"}, "dbmodel": {"type": "array", "items": {"type": "string"}}, "name": {"type": "string"}, "license": {"type": "array", "items": {"type": "string"}}}, "required": ["website", "dbmodel", "name", "license...
{"website" : "http://www.aelius.com/njh/redstore/", "dbmodel" : ["RDF store"], "name" : "RedStore", "license" : ["Open Source"]}
json_instruct
{"type": "object", "properties": {"website": {"type": "string"}, "dbmodel": {"type": "array", "items": {"type": "string"}}, "name": {"type": "string"}, "license": {"type": "array", "items": {"type": "string"}}}, "required": ["website", "dbmodel", "name", "license"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"variables": {"type": "object", "properties": {"iso_url_local": {"type": "string"}, "iso_url_remote": {"type": "string"}, "iso_checksum": {"type": "string"}}, "required": ["iso_url_local", "iso_url_remote", "iso_che...
{"variables" : {"iso_url_local" : "{{user `download_directory`}}/19042.508.200927-1902.20h2_release_svc_refresh_CLIENTENTERPRISEEVAL_OEMRET_x64FRE_en-us.iso", "iso_url_remote" : "https://software-download.microsoft.com/download/pr/19042.508.200927-1902.20h2_release_svc_refresh_CLIENTENTERPRISEEVAL_OEMRET_x64FRE_en-us.i...
json_instruct
{"type": "object", "properties": {"variables": {"type": "object", "properties": {"iso_url_local": {"type": "string"}, "iso_url_remote": {"type": "string"}, "iso_checksum": {"type": "string"}}, "required": ["iso_url_local", "iso_url_remote", "iso_checksum"]}}, "required": ["variables"], "$schema": "http://json-schema.or...
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"region": {"type": "array", "items": {"type": "object", "properties": {"regionCode": {"type": "string"}, "region": {"type": "string"}, "area": {"type": "string"}, "Country": {"type": "string"}}, "required": ["regio...
{"region" : [{"regionCode" : "1", "region" : "San Francisco", "area" : "California", "Country" : "USA"}, {"regionCode" : "2", "region" : "Los Angeles", "area" : "California", "Country" : "USA"}, {"regionCode" : "3", "region" : "New York City", "area" : "New York", "Country" : "USA"}, {"regionCode" : "4", "region" : "Hu...
json_instruct
{"type": "object", "properties": {"region": {"type": "array", "items": {"type": "object", "properties": {"regionCode": {"type": "string"}, "region": {"type": "string"}, "area": {"type": "string"}, "Country": {"type": "string"}}, "required": ["regionCode", "region", "area", "Country"]}}}, "required": ["region"], "$schem...
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"id": {"type": "string"}}, "required": ["id"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : "323ac7d1f9b6a5dc9983ec985bc8b68b5a1cfdc8"}
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}}, "required": ["id"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"id": {"type": "integer"}, "category": {"type": "object", "properties": {"name": {"type": "string"}, "subset": {"type": "string"}}, "required": ["name", "subset"]}, "help": {"type": "object", "properties": {"de": {"type": "stri...
{"id" : 1907, "category" : {"name" : "Items", "subset" : "Collectables"}, "help" : {"de" : "5.000 Sammlerst\u00fccke gefunden oder gefangen.", "en" : "Gather or catch 5,000 collectables.", "fr" : "R\u00e9colter 5 000 objets collectionnables.", "jp" : "\u8490\u96c6\u54c1\u3092\u8a085,000\u56de\u63a1\u96c6\u3059\u308b"},...
json_instruct
{"type": "object", "properties": {"id": {"type": "integer"}, "category": {"type": "object", "properties": {"name": {"type": "string"}, "subset": {"type": "string"}}, "required": ["name", "subset"]}, "help": {"type": "object", "properties": {"de": {"type": "string"}, "en": {"type": "string"}, "fr": {"type": "string"}, "...
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"hash": {"type": "string"}, "parentHash": {"type": "string"}, "number": {"type": "integer"}, "timestamp": {"type": "integer"}, "nonce": {"type": "string"}, "difficulty": {"type": "integer"}, "gasLimit": {"type": "obje...
{"hash" : "0x581ed1d5cd646daed4bde7c2af4dae701aa379f77eca35019610a52ca8db7950", "parentHash" : "0x29f482502446ba618184f8e0f0ddaa14854cf62679033f8e7e6ab123a49baafb", "number" : 56581, "timestamp" : 1439089451, "nonce" : "0x08140cf14f0cf0ce", "difficulty" : 1668221149322, "gasLimit" : {"_hex" : "0x2fefd8"}, "gasUsed" : {...
json_instruct
{"type": "object", "properties": {"hash": {"type": "string"}, "parentHash": {"type": "string"}, "number": {"type": "integer"}, "timestamp": {"type": "integer"}, "nonce": {"type": "string"}, "difficulty": {"type": "integer"}, "gasLimit": {"type": "object", "properties": {"_hex": {"type": "string"}}, "required": ["_hex"]...
Construct a JSON document that adheres to this schema specification: {"type": "array", "items": {"type": "object", "properties": {"namaKab": {"type": "string"}, "originalFilename": {"type": "string"}, "namaPartai": {"type": "string"}, "id": {"type": "integer"}, "noUrut": {"type": "integer"}, "nama": {"type": "string"}...
[{"namaKab" : "KOTAWARINGIN BARAT", "originalFilename" : "ZAINUDIN.jpg", "namaPartai" : "Partai Persatuan pembangunan", "id" : 20006, "noUrut" : 1, "nama" : "ZAINUDIN", "stringJenisKelamin" : "Laki-Laki"}, {"namaKab" : "KOTAWARINGIN BARAT", "originalFilename" : "SYAHRUL HB.jpg", "namaPartai" : "Partai Persatuan pembang...
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", "...
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"content": {"type": "string"}, "entities": {"type": "array", "items": {"type": "object", "properties": {"offset": {"type": "integer"}, "type": {"type": "string"}, "id": {"type": "integer"}, "entity": {"type": "string"}}, "requi...
{"content" : "@ScotlandTonight @NicolaSturgeon Pretty satisfactory. Rule out #fracking and #TTIP for good and I'll be a happy man! @theSNP #GE2015", "entities" : [{"offset" : 0, "type" : "ne", "id" : 2, "entity" : "@ScotlandTonight"}, {"offset" : 78, "type" : "ne", "id" : 3, "entity" : "ttip"}, {"offset" : 17, "type" :...
json_instruct
{"type": "object", "properties": {"content": {"type": "string"}, "entities": {"type": "array", "items": {"type": "object", "properties": {"offset": {"type": "integer"}, "type": {"type": "string"}, "id": {"type": "integer"}, "entity": {"type": "string"}}, "required": ["offset", "type", "id", "entity"]}}, "topics": {"typ...
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"word" : "instanter", "definition" : "Immediately; instantly; at once; as, he left instanter."}
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": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "array", "items": {"type": "array", "items": {}...
{"contract" : "0xd9efb77fd4041a28f0108eb8726de2505817c6d1", "tool" : "manticore", "start" : 1564024600.0383017, "end" : 1564026402.0307994, "duration" : 1801.9924976825714, "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": {"type": "array", "items": {}}}}, "required": ["contract", "tool", "start", "end", "duration", "ana...
Please provide a valid JSON object following this schema: {"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", "...
{"contract" : "0xb55283fb3a40ecdc33e32caeb8e56ed8cdbb31be", "tool" : "oyente", "start" : 1563505680.6977987, "end" : 1563505684.752592, "duration" : 4.054793357849121, "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://...
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"IconPath": {"type": "string"}}, "required": ["IconPath"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"IconPath" : "cmd\\sqspurge\\sqspurge.ico"}
json_instruct
{"type": "object", "properties": {"IconPath": {"type": "string"}}, "required": ["IconPath"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"letter": {"type": "string"}, "thai": {"type": "string"}, "rtgs": {"type": "string"}, "meaning": {"type": "string"}, "pronunciation": {"type": "object", "properties": {"initial": {"type": "string"}, "final": {"type...
{"letter" : "\u0e27", "thai" : "\u0e27 \u0e41\u0e2b\u0e27\u0e19", "rtgs" : "wo waen", "meaning" : "ring", "pronunciation" : {"initial" : "w", "final" : "w"}, "class" : "low", "similar" : ["ds-3"]}
json_instruct
{"type": "object", "properties": {"letter": {"type": "string"}, "thai": {"type": "string"}, "rtgs": {"type": "string"}, "meaning": {"type": "string"}, "pronunciation": {"type": "object", "properties": {"initial": {"type": "string"}, "final": {"type": "string"}}, "required": ["initial", "final"]}, "class": {"type": "str...
Create a JSON structure that matches this 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": "string"}, "seve...
{"schema_version" : "1.2.0", "id" : "GHSA-p7mv-x2rc-847f", "modified" : "2022-01-04T00:01:25Z", "published" : "2021-12-21T00:00:22Z", "aliases" : ["CVE-2021-3860"], "details" : "JFrog Artifactory before 7.25.4 (Enterprise+ deployments only), is vulnerable to Blind SQL Injection by a low privileged authenticated user du...
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...
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"name": {"type": "string"}, "author": {"type": "string"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}}, "required": ["start"]}, "version": {"type": "string"}, "dependencies": {"type"...
{"name" : "nodeapps-socket.io", "author" : "Nodejitsu Inc. <support@nodejitsu.com>", "scripts" : {"start" : "node server.js"}, "version" : "0.1.3", "dependencies" : {"socket.io" : "0.9.x", "express" : "3.0.x"}, "engines" : {"node" : "0.8.x"}, "analyze" : false}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "author": {"type": "string"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}}, "required": ["start"]}, "version": {"type": "string"}, "dependencies": {"type": "object", "properties": {"socket.io": {"type": "string"}, "express": {"ty...
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "type": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "homepage": {"type": "string"}, "license": {"type": "string"...
{"name" : "theus77/aperture_connector", "description" : "CakePHP Aperture Plugin/Connector", "type" : "cakephp-plugin", "keywords" : ["cakephp", "aperture", "connector"], "homepage" : "https://github.com/theus77/aperture_connector", "license" : "MIT", "authors" : [{"name" : "Mathieu De Keyzer", "homepage" : "http://mat...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "type": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "homepage": {"type": "string"}, "license": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {...
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"authors": {"type": "array", "items": {}}, "doi": {"type": "string"}, "publication_date": {"type": "string"}, "id": {"type": "string"}, "url": {"type": "string"}, "source": {"type": "string"}, "source_url": {"type": "string"}, "l...
{"authors" : [], "doi" : "", "publication_date" : "2019-MM-DD", "id" : "IT102266", "url" : "https://esame.miur.it/pdf/2019/IIsessione/Area_Clinica.pdf", "source" : "Miur", "source_url" : "https://www.miur.gov.it", "licence" : "CC-BY", "language" : "it", "type" : "other", "description" : "State exams for medical profess...
json_instruct
{"type": "object", "properties": {"authors": {"type": "array", "items": {}}, "doi": {"type": "string"}, "publication_date": {"type": "string"}, "id": {"type": "string"}, "url": {"type": "string"}, "source": {"type": "string"}, "source_url": {"type": "string"}, "licence": {"type": "string"}, "language": {"type": "string...
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"hash": {"type": "string"}, "parentHash": {"type": "string"}, "number": {"type": "integer"}, "timestamp": {"type": "integer"}, "nonce": {"type": "string"}, "difficulty": {"type": "integer"}, "gasLimit": {"type": "obj...
{"hash" : "0x5ff71297754655426e77941be9ddd670b0d200daaa305d7031fb99147480d354", "parentHash" : "0xbd5e5a15aa8aa1eb793f4f7921141c53b198c2a6958338fd693c210604c87cb8", "number" : 76384, "timestamp" : 1439419529, "nonce" : "0xb6a18c741cca0a1c", "difficulty" : 2229723682674, "gasLimit" : {"_hex" : "0x2fefd8"}, "gasUsed" : {...
json_instruct
{"type": "object", "properties": {"hash": {"type": "string"}, "parentHash": {"type": "string"}, "number": {"type": "integer"}, "timestamp": {"type": "integer"}, "nonce": {"type": "string"}, "difficulty": {"type": "integer"}, "gasLimit": {"type": "object", "properties": {"_hex": {"type": "string"}}, "required": ["_hex"]...
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "bin": {"type": "object", "properties": {"seqsolve": {"type": "string"}}, "required": ["seqsolve"]}, "dep...
{"name" : "seqsolve", "version" : "0.0.2", "description" : "generate an algebraic formula for a sequence", "main" : "index.js", "bin" : {"seqsolve" : "bin/solve.js"}, "dependencies" : {"optimist" : "~0.5.2", "gcd" : "~0.0.0"}, "devDependencies" : {"tape" : "~1.0.4"}, "scripts" : {"test" : "tape test/*.js"}, "testling" ...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "bin": {"type": "object", "properties": {"seqsolve": {"type": "string"}}, "required": ["seqsolve"]}, "dependencies": {"type": "object", "properties": {"optimist": {...
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"ip": {"type": "string"}, "country_code": {"type": "string"}, "country_name": {"type": "string"}, "region_code": {"type": "string"}, "region_name": {"type": "string"}, "city": {"type": "string"}, "zip_code": {"type...
{"ip" : "122.118.110.222", "country_code" : "TW", "country_name" : "Taiwan", "region_code" : "MIA", "region_name" : "Miaoli", "city" : "Toufen Township", "zip_code" : "", "time_zone" : "Asia/Taipei", "latitude" : 24.6875, "longitude" : 120.9094, "metro_code" : 0}
json_instruct
{"type": "object", "properties": {"ip": {"type": "string"}, "country_code": {"type": "string"}, "country_name": {"type": "string"}, "region_code": {"type": "string"}, "region_name": {"type": "string"}, "city": {"type": "string"}, "zip_code": {"type": "string"}, "time_zone": {"type": "string"}, "latitude": {"type": "num...
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" : ["Combine the water, ham hock, and lard in a large pot over medium-high heat. Season with seasoning salt, salt, pepper, garlic powder, and onion powder. Bring to a boil, then reduce heat to medium-low, and add green beans. Simmer covered for about 2 hours."], "ingredients" : ["6 cups water", "1 ham hock...
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 sample JSON data that conforms to the following schema definition: {"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...
{"ast" : null, "code" : "// Copyright 2017-2021 @polkadot/types authors & contributors\n// SPDX-License-Identifier: Apache-2.0\n// order important in structs... :)\n\n/* eslint-disable sort-keys */\nexport default {\n rpc: {\n genSyncSpec: {\n endpoint: 'sync_state_genSyncSpec',\n description: 'Returns th...
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...
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"word": {"type": "string"}, "definitions": {"type": "array", "items": {"type": "string"}}, "parts-of-speech": {"type": "string"}}, "required": ["word", "definitions", "parts-of-speech"], "$schema": "http://json-schema.org/draft-0...
{"word" : "Different", "definitions" : ["Not the same as another or each other; unlike in nature, form, or quality.", "Novel and unusual.", "Distinct; separate."], "parts-of-speech" : "Adjective"}
json_instruct
{"type": "object", "properties": {"word": {"type": "string"}, "definitions": {"type": "array", "items": {"type": "string"}}, "parts-of-speech": {"type": "string"}}, "required": ["word", "definitions", "parts-of-speech"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"ConfigVersion": {"type": "string"}, "PackageVersion": {"type": "string"}, "PrereleaseInfo": {"type": "string"}, "Resources": {"type": "object", "properties": {"Include": {"type": "string"}}, "required": ["Include"]}}, "requ...
{"ConfigVersion" : "0.9", "PackageVersion" : "0.0.1", "PrereleaseInfo" : "snapshot", "Resources" : {"Include" : "*.service"}}
json_instruct
{"type": "object", "properties": {"ConfigVersion": {"type": "string"}, "PackageVersion": {"type": "string"}, "PrereleaseInfo": {"type": "string"}, "Resources": {"type": "object", "properties": {"Include": {"type": "string"}}, "required": ["Include"]}}, "required": ["ConfigVersion", "PackageVersion", "PrereleaseInfo", "...
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "homepage": {"type": "string"}, "repository": {"type": "string"}, "license": {"type": "string"}, "directories": {"t...
{"name" : "data-science-tech-radar", "version" : "2018.5.0", "description" : "Visualizing data science technology decisions", "homepage" : "https://github.com/matdoering/tech-radar", "repository" : "https://github.com/matdoering/tech-radar", "license" : "MIT", "directories" : {"doc" : "docs"}, "dependencies" : {"browse...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "homepage": {"type": "string"}, "repository": {"type": "string"}, "license": {"type": "string"}, "directories": {"type": "object", "properties": {"doc": {"type": "string"}}, "required": ["doc"...
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"id": {"type": "string"}, "lines": {"type": "object", "properties": {"68": {"type": "string"}, "1980": {"type": "string"}, "1990": {"type": "string"}}, "required": ["68", "1980", "1990"]}}, "required": ["id", "lines"], "$sch...
{"id" : "88635700", "lines" : {"68" : "/**/private static BitField fProtEnabled = new BitField(0x02);\n", "1980" : " field_7_docinfo2 = (byte)fProtEnabled.setBoolean(field_7_docinfo2, value);\n", "1990" : " return fProtEnabled.isSet(field_7_docinfo2);\n"}}
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "lines": {"type": "object", "properties": {"68": {"type": "string"}, "1980": {"type": "string"}, "1990": {"type": "string"}}, "required": ["68", "1980", "1990"]}}, "required": ["id", "lines"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"minutes": {"type": "integer"}, "pubdate": {"type": "string"}, "tags": {"type": "array", "items": {"type": "string"}}, "title": {"type": "string"}}, "required": ["minutes", "pubdate", "tags", "title"], "$schema": "...
{"minutes" : 10, "pubdate" : "2019-04-23T22:17:14+09:00", "tags" : ["programming"], "title" : "bouzuya/purescript-fixdeps 0.1.0 \u7b49"}
json_instruct
{"type": "object", "properties": {"minutes": {"type": "integer"}, "pubdate": {"type": "string"}, "tags": {"type": "array", "items": {"type": "string"}}, "title": {"type": "string"}}, "required": ["minutes", "pubdate", "tags", "title"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"AMSF": {"type": "number"}, "EIG": {"type": "number"}, "PROS": {"type": "number"}, "JRVR": {"type": "number"}, "TIG": {"type": "number"}, "TRRSF": {"type": "number"}, "FACO": {"type": "number"}, "TIPT": {"type":...
{"AMSF" : 1.0, "EIG" : 0.2839496056334165, "PROS" : 0.2501818297921486, "JRVR" : 0.24109100518455978, "TIG" : 0.2339276908295968, "TRRSF" : 0.2271263746203343, "FACO" : 0.22221085215896222, "TIPT" : 0.2121534265677598, "MMMM" : 0.1983581931598118, "ITIC" : 0.19735688321338066, "ICCH" : 0.19574816181675403, "FAF" : 0.19...
json_instruct
{"type": "object", "properties": {"AMSF": {"type": "number"}, "EIG": {"type": "number"}, "PROS": {"type": "number"}, "JRVR": {"type": "number"}, "TIG": {"type": "number"}, "TRRSF": {"type": "number"}, "FACO": {"type": "number"}, "TIPT": {"type": "number"}, "MMMM": {"type": "number"}, "ITIC": {"type": "number"}, "ICCH":...
Construct a JSON document that adheres to this schema specification: {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "nama": {"type": "string"}}, "required": ["id", "nama"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"id" : "3522052001", "nama" : "Bubulan"}, {"id" : "3522052002", "nama" : "Cancung"}, {"id" : "3522052003", "nama" : "Clebung"}, {"id" : "3522052004", "nama" : "Sumberbendo"}, {"id" : "3522052005", "nama" : "Ngorogunung"}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "nama": {"type": "string"}}, "required": ["id", "nama"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"template": {"type": "object", "properties": {"small": {"type": "string"}, "medium": {"type": "string"}, "large": {"type": "string"}}, "required": ["small", "medium", "large"]}, "channels": {"type": "object", "prop...
{"template" : {"small" : "https://static-cdn.jtvnw.net/emoticons/v1/{image_id}/1.0", "medium" : "https://static-cdn.jtvnw.net/emoticons/v1/{image_id}/2.0", "large" : "https://static-cdn.jtvnw.net/emoticons/v1/{image_id}/3.0"}, "channels" : {"stormyrise" : {"title" : "StormyRise", "channel_id" : 57651682, "link" : "http...
json_instruct
{"type": "object", "properties": {"template": {"type": "object", "properties": {"small": {"type": "string"}, "medium": {"type": "string"}, "large": {"type": "string"}}, "required": ["small", "medium", "large"]}, "channels": {"type": "object", "properties": {"stormyrise": {"type": "object", "properties": {"title": {"typ...
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"Logging": {"type": "object", "properties": {"LogLevel": {"type": "object", "properties": {"Default": {"type": "string"}, "Hippo": {"type": "string"}}, "required": ["Default", "Hippo"]}}, "required": ["LogLevel"]}, "Jwt": {"...
{"Logging" : {"LogLevel" : {"Default" : "Warning", "Hippo" : "Information"}}, "Jwt" : {"Key" : "CHANGEME", "Issuer" : "example.com", "Audience" : "example.com"}, "Nomad" : {"Datacenters" : ["dc1"], "Url" : "http://localhost:4646/v1", "Secret" : ""}, "Database" : {"Driver" : "postgresql"}, "ConnectionStrings" : {"Databa...
json_instruct
{"type": "object", "properties": {"Logging": {"type": "object", "properties": {"LogLevel": {"type": "object", "properties": {"Default": {"type": "string"}, "Hippo": {"type": "string"}}, "required": ["Default", "Hippo"]}}, "required": ["LogLevel"]}, "Jwt": {"type": "object", "properties": {"Key": {"type": "string"}, "Is...
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "private": {"type": "boolean"}, "devDependencies": {"type": "object", "properties": {"typescript": {"type": "string"}, "ts-node-dev": {"type": "string"}, "ts...
{"name" : "issue-template", "version" : "1.6.0", "private" : true, "devDependencies" : {"typescript" : "^4.6.3", "ts-node-dev" : "^1.1.8", "ts-node" : "^10.7.0"}, "dependencies" : {"@graphql-yoga/node" : "^2.6.0", "graphql" : "^16.3.0"}, "scripts" : {"dev" : "ts-node-dev src/main.ts", "start" : "ts-node src/main.ts", "...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "private": {"type": "boolean"}, "devDependencies": {"type": "object", "properties": {"typescript": {"type": "string"}, "ts-node-dev": {"type": "string"}, "ts-node": {"type": "string"}}, "required": ["typescript", "ts-node-dev",...
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"2661": {"type": "string"}, "2659": {"type": "string"}}, "required": ["2661", "2659"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"2661" : "2662", "2659" : "2660"}
json_instruct
{"type": "object", "properties": {"2661": {"type": "string"}, "2659": {"type": "string"}}, "required": ["2661", "2659"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"id": {"type": "string"}, "provinceId": {"type": "string"}, "regencyId": {"type": "string"}, "districtId": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "provinceId", "regencyId", "districtId", "name"],...
{"id" : "1016", "provinceId" : "12", "regencyId" : "17", "districtId" : "01", "name" : "Tuktuk Siadong"}
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "provinceId": {"type": "string"}, "regencyId": {"type": "string"}, "districtId": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "provinceId", "regencyId", "districtId", "name"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "array", "items": {"type": "object", "properties": {"event": {"type": "string"}}, "required": ["event"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"event" : "\u5f00\u59cb\u6d4f\u89c8"}, {"event" : "\u8d2d\u4e70"}, {"event" : "\u6dfb\u52a0\u6807\u7b7e"}, {"event" : "\u652f\u4ed8"}, {"event" : "\u5b8c\u6210"}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"event": {"type": "string"}}, "required": ["event"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"DESCRIPTION": {"type": "string"}, "USAGE": {"type": "string"}, "EXAMPLES": {"type": "string"}, "LYRICS_OF": {"type": "string"}, "AND_MORE": {"type": "string"}, "REST": {"type": "string"}, "MISSING_SONG_NAME": {"type...
{"DESCRIPTION" : "Memperlihatkan lirik lagu", "USAGE" : "{{prefix}}lyrics [nama-lagu]", "EXAMPLES" : "{{prefix}}lyrics Skyfall", "LYRICS_OF" : "\ud83c\udfa4 lirik {{songName}}", "AND_MORE" : "\n**Dan lainnya...**", "REST" : "Perluas", "MISSING_SONG_NAME" : "Harap tentukan nama lagu!", "NO_LYRICS_FOUND" : "Tidak ada lir...
json_instruct
{"type": "object", "properties": {"DESCRIPTION": {"type": "string"}, "USAGE": {"type": "string"}, "EXAMPLES": {"type": "string"}, "LYRICS_OF": {"type": "string"}, "AND_MORE": {"type": "string"}, "REST": {"type": "string"}, "MISSING_SONG_NAME": {"type": "string"}, "NO_LYRICS_FOUND": {"type": "string"}}, "required": ["DE...
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"Time": {"type": "string"}, "Temp": {"type": "number"}, "RelHum": {"type": "integer"}, "WindSpeed": {"type": "number"}, "WindDir": {"type": "integer"}}, "required": ["Time", "Temp", "RelHum", "WindSpeed", "WindD...
{"Time" : "2021-05-23T11:00:00Z", "Temp" : 27.3, "RelHum" : 45, "WindSpeed" : 6.1, "WindDir" : 278}
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#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"count": {"type": "integer"}, "411011": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}, "359031": {"type": "object", "properties": {"count": {"type": "integer"}}, "required":...
{"count" : 7, "411011" : {"count" : 1}, "359031" : {"count" : 1}, "533030" : {"count" : 1}, "434051" : {"count" : 1}, "N.A.//" : {"count" : 3}}
json_instruct
{"type": "object", "properties": {"count": {"type": "integer"}, "411011": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}, "359031": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}, "533030": {"type": "object", "properties": {"count": {"typ...
Generate sample JSON data that conforms to the following schema definition: {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "text": {"type": "string"}}, "required": ["id", "text"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"id" : "220822401598", "text" : "\u4e09\u5bb6\u5b50\u79cd\u725b\u573a\u865a\u62df\u751f\u6d3b\u533a"}]
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#"}
Create an example JSON object that satisfies this schema: {"type": "array", "items": {"type": "object", "properties": {"code": {"type": "string"}, "name": {"type": "string"}, "name_kana": {"type": "string"}}, "required": ["code", "name", "name_kana"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"code" : "001", "name" : "\u672c\u5e97", "name_kana" : "\uff8e\uff9d\uff83\uff9d"}, {"code" : "301", "name" : "\u5185\u7058", "name_kana" : "\uff73\uff81\uff85\uff80\uff9e"}, {"code" : "305", "name" : "\u6d25\u5e61", "name_kana" : "\uff82\uff8a\uff9e\uff80"}, {"code" : "311", "name" : "\u6d25\u5e61\u6771", "name_kana...
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"code": {"type": "string"}, "name": {"type": "string"}, "name_kana": {"type": "string"}}, "required": ["code", "name", "name_kana"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"Id": {"type": "string"}, "IsStatic": {"type": "boolean"}, "useGravity": {"type": "boolean"}, "randomRotation": {"type": "boolean"}, "Position": {"type": "object", "properties": {"x": {"type": "integer"}, "y":...
{"Id" : "Lootable_00010", "IsStatic" : true, "useGravity" : true, "randomRotation" : false, "Position" : {"x" : 0, "y" : 0, "z" : 0}, "Rotation" : {"x" : 0, "y" : 0, "z" : 0}, "IsGroupPosition" : false, "GroupPositions" : [], "Root" : "5e68b28e86f77406711e5f20", "Items" : [{"_id" : "5e68b28e86f77406711e5f20", "_tpl" : ...
json_instruct
{"type": "object", "properties": {"Id": {"type": "string"}, "IsStatic": {"type": "boolean"}, "useGravity": {"type": "boolean"}, "randomRotation": {"type": "boolean"}, "Position": {"type": "object", "properties": {"x": {"type": "integer"}, "y": {"type": "integer"}, "z": {"type": "integer"}}, "required": ["x", "y", "z"]}...
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"textures": {"type": "object", "properties": {"particle": {"type": "string"}}, "required": ["particle"]}}, "required": ["textures"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"textures" : {"particle" : "mekanism:liquid/liquid"}}
json_instruct
{"type": "object", "properties": {"textures": {"type": "object", "properties": {"particle": {"type": "string"}}, "required": ["particle"]}}, "required": ["textures"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"hash": {"type": "string"}, "parentHash": {"type": "string"}, "number": {"type": "integer"}, "timestamp": {"type": "integer"}, "nonce": {"type": "string"}, "difficulty": {"type": "integer"}, "gasLimit": {"type...
{"hash" : "0xe6b709a31a37686b588ae2b2a54f4aff94c4927e7a771b292da109b81085077b", "parentHash" : "0x4489bb88bc81a77ed348665d811121f3e39d12c4ae822b74fff24b97a6142498", "number" : 62145, "timestamp" : 1439183900, "nonce" : "0xd3e0d984c9bf36e0", "difficulty" : 1772902511390, "gasLimit" : {"_hex" : "0x2fefd8"}, "gasUsed" : {...
json_instruct
{"type": "object", "properties": {"hash": {"type": "string"}, "parentHash": {"type": "string"}, "number": {"type": "integer"}, "timestamp": {"type": "integer"}, "nonce": {"type": "string"}, "difficulty": {"type": "integer"}, "gasLimit": {"type": "object", "properties": {"_hex": {"type": "string"}}, "required": ["_hex"]...
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"name": {"type": "string"}, "type": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "license": {"type": "string"}, "description": {"type": "string"}, "authors": {"type": "array", "items": {"type": ...
{"name" : "coderstephen/robo-ftp", "type" : "library", "keywords" : ["robo", "ftp", "ftps"], "license" : "MIT", "description" : "FTP(S) task for Robo", "authors" : [{"name" : "Stephen Coakley", "email" : "me@stephencoakley.com", "homepage" : "http://stephencoakley.com"}], "require" : {"php" : ">=5.4.0", "dg/ftp-php" : ...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "type": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "license": {"type": "string"}, "description": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "ema...
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}}, "required": ["name", "version"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "@umijs/preset-2", "version" : "1"}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}}, "required": ["name", "version"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"directions": {"type": "array", "items": {"type": "string"}}, "ingredients": {"type": "array", "items": {"type": "string"}}, "language": {"type": "string"}, "source": {"type": "string"}, "tags": {"type": "array", "ite...
{"directions" : ["To Marinate: Combine the wine, garlic, oregano, salt, pepper, bay leaves, and cumin in a nonporous glass dish or bowl. Mix together. Add pork and toss to coat. Cover dish or bowl and refrigerate to marinate for 2 to 3 hours.", "Heat oil in a large skillet over medium heat. Add onion and saute until so...
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": {"brief": {"type": "string"}, "long": {"type": "string"}}, "required": ["brief", "long"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"brief" : "I take up, abolish, murder", "long" : "I take up, take away the life of, make an end of, murder."}
json_instruct
{"type": "object", "properties": {"brief": {"type": "string"}, "long": {"type": "string"}}, "required": ["brief", "long"], "$schema": "http://json-schema.org/draft-07/schema#"}