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": {"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_...
{"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" : "Observation recorded from EHR", "COUNT_VALUE" : 16}, "AGE_AT_FIRST_DI...
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...
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"id": {"type": "string"}, "variable1": {"type": "number"}, "variable2": {"type": "number"}, "variable3": {"type": "string"}}, "required": ["id", "variable1", "variable2", "variable3"], "$schema": "http://json-schem...
{"id" : "010100060203", "variable1" : 0.2011, "variable2" : -1.2393, "variable3" : "C"}
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "variable1": {"type": "number"}, "variable2": {"type": "number"}, "variable3": {"type": "string"}}, "required": ["id", "variable1", "variable2", "variable3"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"$schema": {"type": "string"}, "type": {"type": "string"}, "required": {"type": "array", "items": {"type": "string"}}, "properties": {"type": "object", "properties": {"id": {"type": "object", "properties": {"typ...
{"$schema" : "http://json-schema.org/draft-04/schema#", "type" : "object", "required" : ["id", "price"], "properties" : {"id" : {"type" : "string"}, "data" : {"type" : "object", "properties" : {"img" : {"type" : "string"}, "text" : {"type" : "string"}, "app_url" : {"type" : "string"}}}, "price" : {"type" : "number"}, "...
json_instruct
{"type": "object", "properties": {"$schema": {"type": "string"}, "type": {"type": "string"}, "required": {"type": "array", "items": {"type": "string"}}, "properties": {"type": "object", "properties": {"id": {"type": "object", "properties": {"type": {"type": "string"}}, "required": ["type"]}, "data": {"type": "object", ...
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"name": {"type": "string"}, "n": {"type": "integer"}, "m": {"type": "integer"}, "succ": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}}, "required": ["name", "n", "m", "succ"], "$schema": ...
{"name" : "50_5_rand0122", "n" : 50, "m" : 5, "succ" : [[36, 44, 47], [17, 22, 45], [16], [30], [22, 32], [35, 45], [26, 31], [20, 38, 46], [32, 33], [22], [47], [43], [39, 46], [24, 25, 41, 47], [48], [37], [19, 26], [20], [26, 42], [46], [], [24, 34], [47], [], [], [26], [31, 40], [], [38, 43], [48], [34], [], [36], ...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "n": {"type": "integer"}, "m": {"type": "integer"}, "succ": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}}, "required": ["name", "n", "m", "succ"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"id": {"type": "string"}, "selector": {"type": "string"}, "matches": {"type": "string"}, "excludeHidden": {"type": "boolean"}, "tags": {"type": "array", "items": {"type": "string"}}, "metadata": {"type": "object", "...
{"id" : "link-in-text-block", "selector" : "a[href], [role=link]", "matches" : "link-in-text-block-matches", "excludeHidden" : false, "tags" : ["cat.color", "experimental", "wcag2a", "wcag141"], "metadata" : {"description" : "Links can be distinguished without relying on color", "help" : "Links must be distinguished fr...
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "selector": {"type": "string"}, "matches": {"type": "string"}, "excludeHidden": {"type": "boolean"}, "tags": {"type": "array", "items": {"type": "string"}}, "metadata": {"type": "object", "properties": {"description": {"type": "string"}, "help": {"type": "stri...
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "image": {"type": "string"}}, "required": ["name", "description", "image"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "#2", "description" : "Esta este es un ejemplo de descripci\u00f3n", "image" : "https://raw.githubusercontent.com/jkike0310/NftCollectionEx/main/artwork2.jpg"}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "image": {"type": "string"}}, "required": ["name", "description", "image"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following 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" : "3324010001", "district_id" : "3324010", "name" : "BLUMAH"}
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "district_id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "district_id", "name"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"parent": {"type": "string"}}, "required": ["parent"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"parent" : "earlydays:block/thatch"}
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": {"title": {"type": "string"}, "author": {"type": "string"}, "description": {"type": "string"}, "thumb": {"type": "string"}, "download": {"type": "string"}, "origin": {"type": "string"}}, "required": ["title", "author", "descript...
{"title" : "Crime Miku - Undead Enemy ", "author" : "rebellionmarch", "description" : "Modelundefined-undefined<aundefinedhref='https://ecchi.iwara.tv/images/crime-miku-21-model-dl'>https://ecchi.iwara.tv/images/crime-miku-21-model-dl</a>", "thumb" : "//i.iwara.tv/sites/default/files/styles/thumbnail/public/videos/thum...
json_instruct
{"type": "object", "properties": {"title": {"type": "string"}, "author": {"type": "string"}, "description": {"type": "string"}, "thumb": {"type": "string"}, "download": {"type": "string"}, "origin": {"type": "string"}}, "required": ["title", "author", "description", "thumb", "download", "origin"], "$schema": "http://js...
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"ffdA": {"type": "string"}, "Coenzyme F420-dependent N(5),N(10)-methylenetetrahydromethanopterin reductase": {"type": "string"}, "Methylene-H(4)MPT reductase": {"type": "string"}, "NAD(+) diphosphorylase": {"type": "string"}, "...
{"ffdA" : "Q9UXP0", "Coenzyme F420-dependent N(5),N(10)-methylenetetrahydromethanopterin reductase" : "Q9UXP0", "Methylene-H(4)MPT reductase" : "Q9UXP0", "NAD(+) diphosphorylase" : "Q9UXN8", "NAD(+) pyrophosphorylase" : "Q9UXN8", "NMN adenylyltransferase" : "Q9UXN8", "Q9UXP0" : "Q9UXP0", "MER_METTI" : "Q9UXP0", "5,10-m...
json_instruct
{"type": "object", "properties": {"ffdA": {"type": "string"}, "Coenzyme F420-dependent N(5),N(10)-methylenetetrahydromethanopterin reductase": {"type": "string"}, "Methylene-H(4)MPT reductase": {"type": "string"}, "NAD(+) diphosphorylase": {"type": "string"}, "NAD(+) pyrophosphorylase": {"type": "string"}, "NMN adenyly...
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"new_version": {"type": "string"}}, "required": ["new_version"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"new_version" : "1.1.19"}
json_instruct
{"type": "object", "properties": {"new_version": {"type": "string"}}, "required": ["new_version"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"logs": {"type": "array", "items": {"type": "object", "properties": {"outputFile": {"type": "string"}, "map": {"type": "array", "items": {"type": "object", "properties": {"source": {"type": "string"}, "from": {"type": "object",...
{"logs" : [{"outputFile" : "D:\\DATA\\DOWNLOADS\\nhom16_my_money\\app\\build\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-gl-rES\\values-gl-rES.xml", "map" : [{"source" : "C:\\Users\\trant\\.gradle\\caches\\transforms-1\\files-1.1\\library-0.2.0.aar\\09ba60168deea86f10dd6c68cf786dd2\\res\\values...
json_instruct
{"type": "object", "properties": {"logs": {"type": "array", "items": {"type": "object", "properties": {"outputFile": {"type": "string"}, "map": {"type": "array", "items": {"type": "object", "properties": {"source": {"type": "string"}, "from": {"type": "object", "properties": {"startLines": {"type": "string"}, "startCol...
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"layout": {"type": "string"}, "permalink": {"type": "string"}, "tags": {"type": "array", "items": {"type": "string"}}}, "required": ["layout", "permalink", "tags"], "$schema": "http://json-schema.org/draft-07/...
{"layout" : "layouts/episode.njk", "permalink" : "/podcast/episodes/{{ page.fileSlug }}/index.html", "tags" : ["episodes"]}
json_instruct
{"type": "object", "properties": {"layout": {"type": "string"}, "permalink": {"type": "string"}, "tags": {"type": "array", "items": {"type": "string"}}}, "required": ["layout", "permalink", "tags"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"copyright_text": {"type": "string"}, "description": {"type": "string"}, "duration": {"type": "integer"}, "language": {"type": "string"}, "recorded": {"type": "string"}, "related_urls": {"type": "array", "items": {"type": "s...
{"copyright_text" : "Standard YouTube License", "description" : "PyData DC 2016\n\nGithub: https://github.com/gapatino/Doing-frequentist-statistics-with-Scipy\nSlides: http://www.slideshare.net/PyData/doing-frequentist-statistics-with-scipy\n\nFrequentist statistical tests are still very common, and in some fields they...
json_instruct
{"type": "object", "properties": {"copyright_text": {"type": "string"}, "description": {"type": "string"}, "duration": {"type": "integer"}, "language": {"type": "string"}, "recorded": {"type": "string"}, "related_urls": {"type": "array", "items": {"type": "string"}}, "speakers": {"type": "array", "items": {"type": "str...
Construct a JSON document that adheres to this schema specification: {"type": "array", "items": {"type": "object", "properties": {"ArchStdEvent": {"type": "string"}}, "required": ["ArchStdEvent"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"ArchStdEvent" : "MEM_ACCESS_RD"}, {"ArchStdEvent" : "MEM_ACCESS_WR"}, {"ArchStdEvent" : "UNALIGNED_LD_SPEC"}, {"ArchStdEvent" : "UNALIGNED_ST_SPEC"}, {"ArchStdEvent" : "UNALIGNED_LDST_SPEC"}, {"ArchStdEvent" : "MEM_ACCESS"}, {"PublicDescription" : "This event counts any correctable or uncorrectable memory error (ECC...
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"ArchStdEvent": {"type": "string"}}, "required": ["ArchStdEvent"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"em": {"type": "array", "items": {"type": "object", "properties": {"location": {"type": "object", "properties": {"latitude": {"type": "number"}, "longitude": {"type": "number"}}, "required": ["latitude", "longitude"]}...
{"em" : [{"location" : {"latitude" : 52.84, "longitude" : 5.93}}, {"location" : {"latitude" : 51.99, "longitude" : 4.32}}], "bites" : [{"location" : {"latitude" : 53.4, "longitude" : 6.23}}, {"location" : {"latitude" : 53.14, "longitude" : 6.71}}, {"location" : {"latitude" : 52.86, "longitude" : 6.88}}, {"location" : {...
json_instruct
{"type": "object", "properties": {"em": {"type": "array", "items": {"type": "object", "properties": {"location": {"type": "object", "properties": {"latitude": {"type": "number"}, "longitude": {"type": "number"}}, "required": ["latitude", "longitude"]}}, "required": ["location"]}}, "bites": {"type": "array", "items": {"...
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"0": {"type": "string"}, "11000": {"type": "string"}, "10000": {"type": "string"}, "30000": {"type": "string"}}, "required": ["0", "11000", "10000", "30000"], "$schema": "http://json-schema.org/draft-07/schema...
{"0" : "\u6210\u529f", "11000" : "\u5e94\u7528\u9519\u8bef", "10000" : "\u8fd9\u662f\u4e2d\u6587\u6d4b\u8bd5 '%s'", "30000" : "\u9ed8\u8ba4\u7684\u9519\u8bef"}
json_instruct
{"type": "object", "properties": {"0": {"type": "string"}, "11000": {"type": "string"}, "10000": {"type": "string"}, "30000": {"type": "string"}}, "required": ["0", "11000", "10000", "30000"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "engines": {"type": "object", "properties": {"node": {"type": "string"}}, "required": ["node"...
{"name" : "multiplayer-snake", "version" : "0.0.1", "description" : "A snake game that supports many players.", "main" : "app.js", "engines" : {"node" : "6.2.1"}, "dependencies" : {"express" : "^4.10.2", "socket.io" : "^1.4.8"}, "scripts" : {"start" : "node app.js"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "engines": {"type": "object", "properties": {"node": {"type": "string"}}, "required": ["node"]}, "dependencies": {"type": "object", "properties": {"express": {"type...
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"stationId": {"type": "integer"}, "stationGroupId": {"type": "integer"}, "name": {"type": "string"}, "lineId": {"type": "integer"}, "zipCode": {"type": "string"}, "pref": {"type": "string"}, "city": {"type": "...
{"stationId" : 2600411, "stationGroupId" : 2600411, "name" : "\u4e5d\u54c1\u4ecf", "lineId" : 26004, "zipCode" : "158-0083", "pref" : "\u6771\u4eac\u90fd", "city" : "\u4e16\u7530\u8c37\u533a", "town" : "\u5965\u6ca2", "longitude" : 139.660992, "latitude" : 35.60538, "status" : 0}
json_instruct
{"type": "object", "properties": {"stationId": {"type": "integer"}, "stationGroupId": {"type": "integer"}, "name": {"type": "string"}, "lineId": {"type": "integer"}, "zipCode": {"type": "string"}, "pref": {"type": "string"}, "city": {"type": "string"}, "town": {"type": "string"}, "longitude": {"type": "number"}, "latit...
Following the schema specification below, generate a valid JSON instance: {"type": "array", "items": {"type": "object", "properties": {"namaKab": {"type": "string"}, "originalFilename": {"type": "string"}, "namaPartai": {"type": "string"}, "id": {"type": "integer"}, "noUrut": {"type": "integer"}, "nama": {"type": "str...
[{"namaKab" : "KUDUS", "originalFilename" : "1.H. ARIS SULIYONO.jpg", "namaPartai" : "PARTAI DEMOKRASI INDONESIA PERJUANGAN", "id" : 35795, "noUrut" : 1, "nama" : "H. ARIS SULIYONO, S.H. M.H.", "stringJenisKelamin" : "Laki-Laki"}, {"namaKab" : "KUDUS", "originalFilename" : "2.AGUS IMAKUDIN.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", "...
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"user": {"type": "string"}, "value": {"type": "string"}, "type": {"type": "string"}, "time": {"type": "integer"}, "data": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "list...
{"user" : "Edouard DUPIN", "value" : "Q", "type" : "hand", "time" : 1470116924942377216, "data" : [{"type" : "type::finger", "list" : [[380.314514, 732.192627], [371.772034, 725.294556], [366.096313, 719.995483], [357.713837, 708.765381], [349.020782, 690.396484], [338.119141, 664.007324], [322.644409, 614.012329], [31...
json_instruct
{"type": "object", "properties": {"user": {"type": "string"}, "value": {"type": "string"}, "type": {"type": "string"}, "time": {"type": "integer"}, "data": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "list": {"type": "array", "items": {"type": "array", "items": {"type": "num...
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"displayName": {"type": "string"}, "description": {"type": "string"}, "createSeparatePackage": {"type": "boolean"}}, "required": ["displayName", "description", "createSeparatePackage"], "$schema": "http://json-sche...
{"displayName" : "UIWidgetSample", "description" : "Sample usage of UI Wideget", "createSeparatePackage" : false}
json_instruct
{"type": "object", "properties": {"displayName": {"type": "string"}, "description": {"type": "string"}, "createSeparatePackage": {"type": "boolean"}}, "required": ["displayName", "description", "createSeparatePackage"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"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"}...
[{"province" : "\u798f\u5efa\u7701", "city" : "\u5357\u5e73\u5e02", "area" : "\u6d66\u57ce\u53bf", "name" : "\u6d66\u57ce\u53bf\u5c71\u4e0b\u90ae\u653f\u652f\u5c40", "code" : "353408", "address" : "\u798f\u5efa\u7701\u6d66\u57ce\u53bf\u5c71\u4e0b\u4e61\u5c71\u4e0b\u6751\u5c71\u4e0b\u885781\u53f7", "phone" : "0599-26636...
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...
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "license": {"type": "string"}, "type": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "e...
{"name" : "cc/framework", "description" : "Framework MVC com PHP", "license" : "MIT", "type" : "project", "authors" : [{"name" : "Jean Gabriel", "email" : "codecerto00@gmail.com"}], "autoload" : {"psr-4" : {"App\\" : "app/", "Core\\" : "core/"}}, "require" : {"php" : "^7.2.5", "illuminate/database" : "^7.24"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "license": {"type": "string"}, "type": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}}, "...
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"champ": {"type": "integer"}, "item": {"type": "integer"}, "kills": {"type": "string"}, "deaths": {"type": "string"}, "assists": {"type": "string"}, "gold": {"type": "string"}, "cs": {"type": "string"}, "total": {"ty...
{"champ" : 21, "item" : -1, "kills" : "7.282983970406905", "deaths" : "6.23612823674476", "assists" : "6.94019728729963", "gold" : "11588.040073982738", "cs" : "155.10604192355117", "total" : "11354", "wins" : "5523", "losses" : "5831"}
json_instruct
{"type": "object", "properties": {"champ": {"type": "integer"}, "item": {"type": "integer"}, "kills": {"type": "string"}, "deaths": {"type": "string"}, "assists": {"type": "string"}, "gold": {"type": "string"}, "cs": {"type": "string"}, "total": {"type": "string"}, "wins": {"type": "string"}, "losses": {"type": "string...
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"base_version": {"type": "integer"}, "uuid": {"type": "string"}, "info": {"type": "object", "properties": {"app_name": {"type": "string"}, "config_version": {"type": "integer"}, "url": {"type": "string"}}, "required": ["app_name"...
{"base_version" : 2, "uuid" : "61cc1a9a-cf38-4fc2-a6a8-6baddab376f6", "info" : {"app_name" : "Blokada 4", "config_version" : 2, "url" : "https://github.com/blokadaorg/blokada"}, "app_config" : {"hub_info" : {"hub_uuid" : "fd9b2602-62c5-4d55-bd1e-0d6537714ca0"}, "target_checker" : {"api" : "App_Package", "extra_string" ...
json_instruct
{"type": "object", "properties": {"base_version": {"type": "integer"}, "uuid": {"type": "string"}, "info": {"type": "object", "properties": {"app_name": {"type": "string"}, "config_version": {"type": "integer"}, "url": {"type": "string"}}, "required": ["app_name", "config_version", "url"]}, "app_config": {"type": "obje...
Please provide a valid JSON object following this schema: {"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"}
["voxel-chest", "voxel-furnace", "voxel-inventory-crafting", "voxel-inventory-creative", "voxel-inventory-dialog", "voxel-inventory-hotbar", "voxel-workbench", "web-minecraft-crafter"]
json_instruct
{"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"id": {"type": "integer"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"src:alt_label": {"type": "string"}, "src:geom": {"type": "string"}, "wof:geomhash": {"type": "string"}, "wof:id": {"type...
{"id" : 404378021, "type" : "Feature", "properties" : {"src:alt_label" : "quattroshapes", "src:geom" : "quattroshapes", "wof:geomhash" : "4a0ccffc0344948945eacb96ebd59db6", "wof:id" : 404378021, "wof:repo" : "whosonfirst-data-admin-fr"}, "bbox" : [3.63833987247352, 49.28677103759127, 3.72003191479021, 49.32860668421505...
json_instruct
{"type": "object", "properties": {"id": {"type": "integer"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"src:alt_label": {"type": "string"}, "src:geom": {"type": "string"}, "wof:geomhash": {"type": "string"}, "wof:id": {"type": "integer"}, "wof:repo": {"type": "string"}}, "required": ["...
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"station": {"type": "array", "items": {"type": "object", "properties": {"pref_cd": {"type": "integer"}, "line_cd": {"type": "integer"}, "line_name": {"type": "string"}, "station_cd": {"type": "integer"}, "statio...
{"station" : [{"pref_cd" : 45, "line_cd" : 11907, "line_name" : "JR\u65e5\u8c4a\u672c\u7dda(\u4f50\u4f2f\uff5e\u9e7f\u5150\u5cf6\u4e2d\u592e)", "station_cd" : 1190729, "station_g_cd" : 1190729, "station_name" : "\u5bae\u5d0e", "lon" : 131.431975, "lat" : 31.915742}]}
json_instruct
{"type": "object", "properties": {"station": {"type": "array", "items": {"type": "object", "properties": {"pref_cd": {"type": "integer"}, "line_cd": {"type": "integer"}, "line_name": {"type": "string"}, "station_cd": {"type": "integer"}, "station_g_cd": {"type": "integer"}, "station_name": {"type": "string"}, "lon": {"...
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {"type": "integer"}}, "productReviews": {"type": "array", "items": {"type": "object", "properties": ...
{"userId" : 29015, "cartId" : "39d64640-5ed9-44b0-9ee9-e8343a43050b", "preferredProducts" : [650, 3193, 4357, 179, 4368, 3180, 3172, 519, 4355, 213], "productReviews" : [{"productId" : 1265, "reviewText" : "My tiger loves to play with it.", "reviewDate" : "2018-05-13T01:30:05.9818827+03:00"}, {"productId" : 298, "revie...
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": {"componentChunkName": {"type": "string"}, "path": {"type": "string"}, "result": {"type": "object", "properties": {"pageContext": {"type": "object", "properties": {"id": {"type": "string"}, "slug": {"type": "string"}, "params": ...
{"componentChunkName" : "component---src-templates-category-index-js", "path" : "/category/than-kinh", "result" : {"pageContext" : {"id" : "11ll9m52sYmTjPg9153nCb", "slug" : "/category/than-kinh", "params" : {"id" : "11ll9m52sYmTjPg9153nCb", "displayName" : "Th\u1ea7n kinh", "avatarUrl" : null, "slug" : "than-kinh", "i...
json_instruct
{"type": "object", "properties": {"componentChunkName": {"type": "string"}, "path": {"type": "string"}, "result": {"type": "object", "properties": {"pageContext": {"type": "object", "properties": {"id": {"type": "string"}, "slug": {"type": "string"}, "params": {"type": "object", "properties": {"id": {"type": "string"},...
Following the schema specification below, generate a valid JSON instance: {"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" : "\u8fbd\u5b81\u7701", "city" : "\u6c88\u9633\u5e02", "area" : "\u6c88\u6cb3\u533a", "name" : "\u6c88\u9633\u5e02\u6cc9\u56ed\u652f\u5c40", "code" : "110015", "address" : "\u6c88\u9633\u5e02\u6c88\u6cb3\u533a\u5bcc\u6c11\u885711\u53f7", "phone" : "024-24823596"}, {"province" : "\u8fbd\u5b81\u7701", "city"...
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...
Create a JSON structure that matches this schema definition: {"type": "array", "items": {"type": "object", "properties": {"manufacturer": {"type": "string"}, "market_name": {"type": "string"}, "codename": {"type": "string"}, "model": {"type": "string"}}, "required": ["manufacturer", "market_name", "codename", "model"]...
[{"manufacturer" : "Oppo", "market_name" : "A51", "codename" : "A51", "model" : "A51"}, {"manufacturer" : "Oppo", "market_name" : "A51", "codename" : "A51", "model" : "Lava A51"}, {"manufacturer" : "Oppo", "market_name" : "A51f", "codename" : "A51", "model" : "A51f"}, {"manufacturer" : "Oppo", "market_name" : "A51fa", ...
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"manufacturer": {"type": "string"}, "market_name": {"type": "string"}, "codename": {"type": "string"}, "model": {"type": "string"}}, "required": ["manufacturer", "market_name", "codename", "model"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"id": {"type": "object", "properties": {"national": {"type": "integer"}, "galar_swsh": {"type": "integer"}}, "required": ["national", "galar_swsh"]}, "name": {"type": "object", "properties": {"en": {"type": "string...
{"id" : {"national" : 881, "galar_swsh" : 375}, "name" : {"en" : "Arctozolt", "jp" : "\u30d1\u30c3\u30c1\u30eb\u30c9\u30f3", "chs" : "", "cht" : ""}, "baby" : false, "default" : {"desc" : "Fossil Pok\u00e9mon", "type_id" : [7, 11], "type" : ["electric", "ice"], "abilities" : {"ability_1" : "Volt Absorb", "ability_2" : ...
json_instruct
{"type": "object", "properties": {"id": {"type": "object", "properties": {"national": {"type": "integer"}, "galar_swsh": {"type": "integer"}}, "required": ["national", "galar_swsh"]}, "name": {"type": "object", "properties": {"en": {"type": "string"}, "jp": {"type": "string"}, "chs": {"type": "string"}, "cht": {"type":...
Construct a JSON document that adheres to this schema specification: {"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" : "FeatureCollection", "features" : [{"geometry" : {"type" : "Polygon", "coordinates" : [[[-73.899681, 41.157295], [-73.869458, 41.161316], [-73.86601, 41.165322], [-73.863912, 41.169537], [-73.861811, 41.165962], [-73.860847, 41.159451], [-73.860887, 41.158679], [-73.863798, 41.159153], [-73.864047, 41.155646]...
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 sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"translation-revision-date": {"type": "string"}, "generator": {"type": "string"}, "source": {"type": "string"}, "domain": {"type": "string"}, "locale_data": {"type": "object", "properties": {"hds-wp": {"type":...
{"translation-revision-date" : "2021-12-03 08:57+0000", "generator" : "Loco https://localise.biz/", "source" : "src/admin/js/blocks/accordion.js", "domain" : "hds-wp", "locale_data" : {"hds-wp" : {"" : {"domain" : "hds-wp", "lang" : "fi", "plural-forms" : "nplurals=2; plural=n != 1;"}, "Helsinki - Accordion" : ["Helsin...
json_instruct
{"type": "object", "properties": {"translation-revision-date": {"type": "string"}, "generator": {"type": "string"}, "source": {"type": "string"}, "domain": {"type": "string"}, "locale_data": {"type": "object", "properties": {"hds-wp": {"type": "object", "properties": {"": {"type": "object", "properties": {"domain": {"t...
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"latency": {"type": "integer"}, "true_latency": {"type": "integer"}, "cost_info": {"type": "object", "properties": {"bram": {"type": "number"}, "dsp": {"type": "number"}, "ff": {"type": "number"}, "lut": {"type": "number"}, ...
{"latency" : 5218348, "true_latency" : 5218348, "cost_info" : {"bram" : 0.016666666666666666, "dsp" : 0.05175438596491228, "ff" : 0.013548010556232237, "lut" : 0.028336885911490053, "uram" : 0.025, "total" : 0.13530594909930124}, "subfunctions" : [{"name" : "tdf5_accum_1", "latency" : 10}, {"name" : "tdf5_accum_2", "la...
json_instruct
{"type": "object", "properties": {"latency": {"type": "integer"}, "true_latency": {"type": "integer"}, "cost_info": {"type": "object", "properties": {"bram": {"type": "number"}, "dsp": {"type": "number"}, "ff": {"type": "number"}, "lut": {"type": "number"}, "uram": {"type": "number"}, "total": {"type": "number"}}, "req...
Please provide a valid JSON object following this schema: {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "provinceId": {"type": "string"}, "regencyId": {"type": "string"}, "districtId": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "provinceId", "regencyId"...
[{"id" : "2001", "provinceId" : "33", "regencyId" : "26", "districtId" : "02", "name" : "Werdi"}, {"id" : "2002", "provinceId" : "33", "regencyId" : "26", "districtId" : "02", "name" : "Winduaji"}, {"id" : "2003", "provinceId" : "33", "regencyId" : "26", "districtId" : "02", "name" : "Krandegan"}, {"id" : "2004", "prov...
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "provinceId": {"type": "string"}, "regencyId": {"type": "string"}, "districtId": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "provinceId", "regencyId", "districtId", "name"]}, "$schema": "http://json-schema.or...
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"citations": {"type": "array", "items": {"type": "object", "properties": {"textCitation": {"type": "string"}}, "required": ["textCitation"]}}, "names": {"type": "array", "items": {"type": "string"}}, "language": {"t...
{"citations" : [{"textCitation" : "[See funcnv3 on Metamath](http://us.metamath.org/mpegif/funcnv3.html)"}], "names" : ["funcnv3"], "language" : "METAMATH_SET_MM", "lookupTerms" : ["#T_wfun", "#T_ccnv", "#T_cA", "#T_wb", "#T_wral--1", "#T_vy", "#T_wral--2", "#T_crn", "#T_cA", "#T_wreu--1", "#T_vx", "#T_wreu--2", "#T_cd...
json_instruct
{"type": "object", "properties": {"citations": {"type": "array", "items": {"type": "object", "properties": {"textCitation": {"type": "string"}}, "required": ["textCitation"]}}, "names": {"type": "array", "items": {"type": "string"}}, "language": {"type": "string"}, "lookupTerms": {"type": "array", "items": {"type": "st...
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "private": {"type": "boolean"}, "watch": {"type": "object", "properties": {"start": {"type": "string"}}, "required": ["start"]}, "scripts": {"type": "object", "prope...
{"name" : "mockapi", "version" : "0.0.0", "private" : true, "watch" : {"start" : "{bin,public,routes,views}/*.js"}, "scripts" : {"watch" : "npm-watch", "start" : "node ./bin/www"}, "dependencies" : {"cookie-parser" : "^1.4.3", "debug" : "^2.6.9", "express" : "^4.16.0", "http-errors" : "^1.6.2", "lightship" : "^4.3.1", ...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "private": {"type": "boolean"}, "watch": {"type": "object", "properties": {"start": {"type": "string"}}, "required": ["start"]}, "scripts": {"type": "object", "properties": {"watch": {"type": "string"}, "start": {"type": "strin...
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"description": {"type": "string"}, "duration": {"type": "integer"}, "recorded": {"type": "string"}, "speakers": {"type": "array", "items": {"type": "string"}}, "thumbnail_url": {"type": "string"}, "title": {"type": "...
{"description" : "Learning how to contribute is the first fundamental step in joining the open source community. This talk will be based upon my own personal experience in creating my first PyPI package. As a seasoned developer, the task of uploading a package to PyPI seemed extremely complicated. But, in reality it is...
json_instruct
{"type": "object", "properties": {"description": {"type": "string"}, "duration": {"type": "integer"}, "recorded": {"type": "string"}, "speakers": {"type": "array", "items": {"type": "string"}}, "thumbnail_url": {"type": "string"}, "title": {"type": "string"}, "videos": {"type": "array", "items": {"type": "object", "pro...
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"annihilation_operation_loaded_flag": {"type": "object", "properties": {"location": {"type": "array", "items": {"type": "number"}}, "resolution": {"type": "array", "items": {"type": "integer"}}, "path": {"type":...
{"annihilation_operation_loaded_flag" : {"location" : [86.5, 969.0], "resolution" : [1920, 1080], "path" : "navigate/annihilation/annihilation_operation_loaded_flag.png", "size" : [105, 104], "timestamp" : "2021-05-21-23:34:03"}, "annihilation_panel_loaded_flag" : {"location" : [444.5, 353.5], "resolution" : [1920, 108...
json_instruct
{"type": "object", "properties": {"annihilation_operation_loaded_flag": {"type": "object", "properties": {"location": {"type": "array", "items": {"type": "number"}}, "resolution": {"type": "array", "items": {"type": "integer"}}, "path": {"type": "string"}, "size": {"type": "array", "items": {"type": "integer"}}, "times...
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"availableLanguages": {"type": "object", "properties": {"Bahasa Indonesia": {"type": "string"}, "\u65e5\u672c\u8a9e": {"type": "string"}, "English": {"type": "string"}, "Bahasa Melayu": {"type": "string"}, "\u4e2d\u...
{"availableLanguages" : {"Bahasa Indonesia" : "id-ID", "\u65e5\u672c\u8a9e" : "ja-JP", "English" : "en-US", "Bahasa Melayu" : "ms-MY", "\u4e2d\u6587 (\u7b80\u4f53)" : "zh-CN", "\u4e2d\u6587 (\u7e41\u9ad4)" : "zh-TW"}}
json_instruct
{"type": "object", "properties": {"availableLanguages": {"type": "object", "properties": {"Bahasa Indonesia": {"type": "string"}, "\u65e5\u672c\u8a9e": {"type": "string"}, "English": {"type": "string"}, "Bahasa Melayu": {"type": "string"}, "\u4e2d\u6587 (\u7b80\u4f53)": {"type": "string"}, "\u4e2d\u6587 (\u7e41\u9ad4)"...
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"train_feature_multi": {"type": "string"}, "train_time_multi": {"type": "string"}, "train_status_multi": {"type": "string"}, "train_feature_target": {"type": "string"}, "train_time_target": {"type": "string"}, "...
{"train_feature_multi" : "sample_data/pretrainPanCan/feature_train.csv", "train_time_multi" : "sample_data/pretrainPanCan/ytime_train.csv", "train_status_multi" : "sample_data/pretrainPanCan/ystatus_train.csv", "train_feature_target" : "sample_data/finetuneTarget/feature_train.csv", "train_time_target" : "sample_data/f...
json_instruct
{"type": "object", "properties": {"train_feature_multi": {"type": "string"}, "train_time_multi": {"type": "string"}, "train_status_multi": {"type": "string"}, "train_feature_target": {"type": "string"}, "train_time_target": {"type": "string"}, "train_status_target": {"type": "string"}, "test_feature": {"type": "string"...
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"n_dim": {"type": "integer"}, "n_trials": {"type": "integer"}, "objective": {"type": "string"}, "white": {"type": "string"}, "black": {"type": "string"}, "traceback": {"type": "array", "items": {"type": "string"}}, "best_val...
{"n_dim" : 8, "n_trials" : 130, "objective" : "risk_on_cube", "white" : "platypus_moead", "black" : "optuna_random_clone_1", "traceback" : ["passing", "Black took 131 function evals when instructed to use 131"], "best_val" : [6.856013574246922, 2.734453773390661], "best_x" : [[0.10286679432303714, 0.6491523037668477, 0...
json_instruct
{"type": "object", "properties": {"n_dim": {"type": "integer"}, "n_trials": {"type": "integer"}, "objective": {"type": "string"}, "white": {"type": "string"}, "black": {"type": "string"}, "traceback": {"type": "array", "items": {"type": "string"}}, "best_val": {"type": "array", "items": {"type": "number"}}, "best_x": {...
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "bin": {"type": "object", "properties": {"un": {"type": "string"}}, "required": ["un"]}, "repository": {"type": "object", "properties":...
{"name" : "@untool/yargs", "version" : "1.0.0-rc.11", "description" : "untool yargs mixin", "bin" : {"un" : "./index.js"}, "repository" : {"type" : "git", "url" : "git+ssh://git@github.com/untool/untool.git"}, "author" : "dmbch <daniel@dmbch.net>", "license" : "MIT", "publishConfig" : {"access" : "public"}, "bugs" : {"...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "bin": {"type": "object", "properties": {"un": {"type": "string"}}, "required": ["un"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}},...
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"token": {"type": "string"}, "owner": {"type": "array", "items": {"type": "string"}}, "name": {"type": "string"}, "version": {"type": "string"}, "status": {"type": "string"}, "ServerData": {"type": "object", "prope...
{"token" : " bot token ", "owner" : [" owner id "], "name" : "Sweeper Bot", "version" : "0.1.0", "status" : "Try .help | DMing me DMs the mods", "ServerData" : {"assignmentChannelId" : "Channel ID", "serverId" : "Server ID", "modChannelId" : "Channel ID", "logChannelId" : "Channel ID", "botDMServerId" : "Separate Serve...
json_instruct
{"type": "object", "properties": {"token": {"type": "string"}, "owner": {"type": "array", "items": {"type": "string"}}, "name": {"type": "string"}, "version": {"type": "string"}, "status": {"type": "string"}, "ServerData": {"type": "object", "properties": {"assignmentChannelId": {"type": "string"}, "serverId": {"type":...
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {...
{"name" : "p5.wasm", "version" : "0.3.1", "description" : "Addon library for p5.js written in Rust and compiled to WebAssembly. Reimplements common functions found in p5.js.", "keywords" : ["p5.js", "canvas", "wasm", "webassembly"], "main" : "index.js", "scripts" : {"test" : "cd rust && wasm-pack test --firefox --headl...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "preinstall": {"type": "string"...
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"_SUPPORT_FRAMEWORKS_": {"type": "string"}, "_WELCOME_": {"type": "string"}}, "required": ["_SUPPORT_FRAMEWORKS_", "_WELCOME_"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"_SUPPORT_FRAMEWORKS_" : "Podr\u017eavamo sljede\u0107e CSS okvire", "_WELCOME_" : "Dobrodo\u0161li"}
json_instruct
{"type": "object", "properties": {"_SUPPORT_FRAMEWORKS_": {"type": "string"}, "_WELCOME_": {"type": "string"}}, "required": ["_SUPPORT_FRAMEWORKS_", "_WELCOME_"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"result": {"type": "object", "properties": {"line": {"type": "number"}}, "required": ["line"]}}, "required": ["result"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"result" : {"line" : 66.1}}
json_instruct
{"type": "object", "properties": {"result": {"type": "object", "properties": {"line": {"type": "number"}}, "required": ["line"]}}, "required": ["result"], "$schema": "http://json-schema.org/draft-07/schema#"}
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": "array", "items": {"type": "array", "items": {"type": "number"}...
{"type" : "Feature", "geometry" : {"type" : "Polygon", "coordinates" : [[[140.0, 20.916666666666668], [140.0, 21.0], [140.125, 21.0], [140.125, 20.916666666666668], [140.0, 20.916666666666668]]]}, "properties" : {"code" : 314030, "url" : "http://madefor.github.io/0410/api/v1/314030.geojson", "view" : "https://github.co...
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...
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "array", "items": {"type": "object", "properties": {"file": ...
{"contract" : "0x7f59069b7a01385c14d390c8b7680230464f4a5f", "tool" : "solhint", "start" : 1563611546.9222152, "end" : 1563611549.4975123, "duration" : 2.5752971172332764, "analysis" : [{"file" : "/unique_chucks/20/0x7f59069b7a01385c14d390c8b7680230464f4a5f.sol", "line" : "12", "column" : "1", "message" : "Expected inde...
json_instruct
{"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "array", "items": {"type": "object", "properties": {"file": {"type": "string"}, "line": {"type": "string"}, "column":...
Create a JSON structure that matches this schema definition: {"type": "array", "items": {"type": "array", "items": {"type": "string"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
[["510722143001", "\u573a\u9547\u793e\u533a\u5c45\u6c11\u59d4\u5458\u4f1a", "121", "0"], ["510722143201", "\u4e0a\u6e38\u6751\u6c11\u59d4\u5458\u4f1a", "122", "0"], ["510722143202", "\u4e09\u5c16\u6751\u6c11\u59d4\u5458\u4f1a", "220", "0"], ["510722143203", "\u4e09\u91cc\u6751\u6c11\u59d4\u5458\u4f1a", "220", "0"], ["5...
json_instruct
{"type": "array", "items": {"type": "array", "items": {"type": "string"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "homepage": {"type": "string"}, "scripts": {"type": "object", "properties": {"dev": {"type": "string"}...
{"name" : "movies-app", "version" : "1.0.0", "description" : "Movies Application", "main" : "index.js", "homepage" : "https://hari-krushna.github.io/movies", "scripts" : {"dev" : "webpack-dev-server", "prod" : "npm run clean && NODE_ENV=production webpack -p", "clean" : "rimraf ./dist/*", "deploy" : "npm run prod && gh...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "homepage": {"type": "string"}, "scripts": {"type": "object", "properties": {"dev": {"type": "string"}, "prod": {"type": "string"}, "clean": {"type": "string"}, "de...
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"Identifier": {"type": "string"}, "Guardrail": {"type": "string"}, "Rationale": {"type": "string"}, "Remediation": {"type": "string"}, "References": {"type": "array", "items": {"type": "string"}}, "Policy": {"type": "string"}, "I...
{"Identifier" : "IAM-SECRETSMANAGER-2", "Guardrail" : "Check that only authorized principals are able to retrieve a secret value.", "Rationale" : "Sensitive or confidential information (e.g., credentials) would be expected to be stored in AWS Secrets Manager. Ensuring only authorized access reduces the risk of unauthor...
json_instruct
{"type": "object", "properties": {"Identifier": {"type": "string"}, "Guardrail": {"type": "string"}, "Rationale": {"type": "string"}, "Remediation": {"type": "string"}, "References": {"type": "array", "items": {"type": "string"}}, "Policy": {"type": "string"}, "IAM Actions": {"type": "string"}, "Authorized Principals":...
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"nom": {"type": "string"}, "dpt": {"type": "string"}, "inscrits": {"type": "integer"}, "abs": {"type": "integer"}, "votants": {"type": "integer"}, "blancs": {"type": "integer"}, "nuls": {"type": "integer"}, "exp": ...
{"nom" : "Saint-Loup", "dpt" : "Charente-Maritime", "inscrits" : 257, "abs" : 58, "votants" : 199, "blancs" : 1, "nuls" : 3, "exp" : 195, "res" : [{"panneau" : "2", "voix" : 64}, {"panneau" : "11", "voix" : 45}, {"panneau" : "1", "voix" : 29}, {"panneau" : "9", "voix" : 27}, {"panneau" : "3", "voix" : 22}, {"panneau" :...
json_instruct
{"type": "object", "properties": {"nom": {"type": "string"}, "dpt": {"type": "string"}, "inscrits": {"type": "integer"}, "abs": {"type": "integer"}, "votants": {"type": "integer"}, "blancs": {"type": "integer"}, "nuls": {"type": "integer"}, "exp": {"type": "integer"}, "res": {"type": "array", "items": {"type": "object"...
Create an example JSON object that satisfies this schema: {"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"}
["generator-esnext-generator", "generator-gowento", "generator-mnm", "generator-mo", "generator-prepare-git-repo", "generator-rise", "generator-risebrigand", "generator-tiny-es-nm", "generator-zen"]
json_instruct
{"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"word" : "yellow-covered", "definition" : "Covered or bound in yellow paper. Yellow-covered literature, cheap sensational novels and trashy magazines; -- formerly so called from the usual color of their covers. [Colloq. U. S.] Bartlett."}
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": "object", "properties": {"category": {"type": "string"}, "copyright_text": {"type": "string"}, "description": {"type": "string"}, "duration": {"type": "integer"}, "id": {"type": "integer"}, "language": {"type": "string"}, "quality_notes": {"type": "str...
{"category" : "DjangoCon 2014", "copyright_text" : "", "description" : "", "duration" : 2155, "id" : 4813, "language" : "eng", "quality_notes" : "", "recorded" : "2014-09-19", "related_urls" : ["http://amara.org/v/FPWl/"], "slug" : "rest-its-not-just-for-servers", "speakers" : ["Mark Lavin"], "summary" : "Have you ever...
json_instruct
{"type": "object", "properties": {"category": {"type": "string"}, "copyright_text": {"type": "string"}, "description": {"type": "string"}, "duration": {"type": "integer"}, "id": {"type": "integer"}, "language": {"type": "string"}, "quality_notes": {"type": "string"}, "recorded": {"type": "string"}, "related_urls": {"ty...
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"nom": {"type": "string"}, "dpt": {"type": "string"}, "inscrits": {"type": "integer"}, "abs": {"type": "integer"}, "votants": {"type": "integer"}, "blancs": {"type": "integer"}, "nuls": {"type": "integer"}, "exp": {...
{"nom" : "Saint-Amand-Montrond", "dpt" : "Cher", "inscrits" : 7490, "abs" : 2136, "votants" : 5354, "blancs" : 95, "nuls" : 56, "exp" : 5203, "res" : [{"panneau" : "2", "voix" : 1192}, {"panneau" : "3", "voix" : 1186}, {"panneau" : "11", "voix" : 1088}, {"panneau" : "9", "voix" : 948}, {"panneau" : "4", "voix" : 295}, ...
json_instruct
{"type": "object", "properties": {"nom": {"type": "string"}, "dpt": {"type": "string"}, "inscrits": {"type": "integer"}, "abs": {"type": "integer"}, "votants": {"type": "integer"}, "blancs": {"type": "integer"}, "nuls": {"type": "integer"}, "exp": {"type": "integer"}, "res": {"type": "array", "items": {"type": "object"...
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"_id": {"type": "string"}, "pid": {"type": "string"}, "rs": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}}, "required": ["id", "name"]}}}, "required": ["_i...
{"_id" : "none", "pid" : "8718300057120", "rs" : [{"id" : 5400101055766, "name" : "Thon Salade Sandwich"}, {"id" : 8718300057809, "name" : "Mini Bouchees"}, {"id" : 5400112203668, "name" : "Karotten Sticks"}]}
json_instruct
{"type": "object", "properties": {"_id": {"type": "string"}, "pid": {"type": "string"}, "rs": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}}, "required": ["id", "name"]}}}, "required": ["_id", "pid", "rs"], "$schema": "http://json-schema.org/draft-07/...
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" : "211322118200", "text" : "\u5b8b\u5bb6\u6e7e\u6751\u59d4\u4f1a"}, {"id" : "211322118201", "text" : "\u5c71\u5480\u6751\u59d4\u4f1a"}, {"id" : "211322118202", "text" : "\u897f\u5927\u6756\u5b50\u6751\u59d4\u4f1a"}, {"id" : "211322118203", "text" : "\u5efa\u660c\u6c9f\u6751\u59d4\u4f1a"}, {"id" : "211322118204",...
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#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"resourceType": {"type": "string"}, "id": {"type": "string"}, "meta": {"type": "object", "properties": {"lastUpdated": {"type": "string"}}, "required": ["lastUpdated"]}, "url": {"type": "string"}, "status": {"ty...
{"resourceType" : "DataElement", "id" : "Binary", "meta" : {"lastUpdated" : "2017-04-19T07:44:43.294+10:00"}, "url" : "http://hl7.org/fhir/DataElement/Binary", "status" : "draft", "experimental" : true, "stringency" : "fully-specified", "element" : [{"id" : "Binary", "path" : "Binary", "short" : "Pure binary content de...
json_instruct
{"type": "object", "properties": {"resourceType": {"type": "string"}, "id": {"type": "string"}, "meta": {"type": "object", "properties": {"lastUpdated": {"type": "string"}}, "required": ["lastUpdated"]}, "url": {"type": "string"}, "status": {"type": "string"}, "experimental": {"type": "boolean"}, "stringency": {"type":...
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {"type": "integer"}}, "productReviews": {"type": "array", "items": {"type": "object", "properties": {"productId": {"ty...
{"userId" : 67793, "cartId" : "48082166-006c-4354-a397-a6633eb0e9bb", "preferredProducts" : [451, 2273, 978, 1037, 611], "productReviews" : [{"productId" : 2518, "reviewText" : "My co-worker Tyron has one of these. He says it looks stout.", "reviewDate" : "2018-11-04T03:11:40.9383769+02:00"}, {"productId" : 3345, "revi...
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...
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "scripts": {"type": "object", "properties": {"watch": {"type": "string"}, "build": {"type": "string"}, "server": {"type": "string"}, "clean": {"type":...
{"name" : "netlify-cljs", "version" : "0.0.1", "scripts" : {"watch" : "shadow-cljs watch app;", "build" : "shadow-cljs release app;", "server" : "shadow-cljs server;", "clean" : "rm -rf target; rm -rf public/js/compiled"}, "devDependencies" : {"autoprefixer" : "^10.4.2", "postcss-cli" : "^9.1.0", "shadow-cljs" : "2.17....
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "scripts": {"type": "object", "properties": {"watch": {"type": "string"}, "build": {"type": "string"}, "server": {"type": "string"}, "clean": {"type": "string"}}, "required": ["watch", "build", "server", "clean"]}, "devDependen...
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-8g48-5w7p-5hg3", "modified" : "2022-05-01T02:20:32Z", "published" : "2022-05-01T02:20:32Z", "aliases" : ["CVE-2005-3724"], "details" : "Zyxel P2000W Version 1 VOIP WIFI Phone Wj.00.10 allows remote attackers to obtain sensitive information and possibly cause a denial of service...
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...
Based on the schema below, produce a valid JSON object: {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
[[2000, 6], [2001, 5], [2002, 5], [2003, 9], [2005, 13], [2006, 10], [2007, 15], [2008, 9], [2009, 13], [2010, 5], [2012, 7]]
json_instruct
{"type": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"code": {"type": "integer"}, "parent": {"type": "integer"}, "name": {"type": "string"}, "latitude": {"type": "null"}, "longitude": {"type": "null"}, "postal": {"type": "array", "items": {"type": "integer"}}, "child...
{"code" : 9426022003, "parent" : 9426022, "name" : "URATO", "latitude" : null, "longitude" : null, "postal" : [98272, 98672], "children" : []}
json_instruct
{"type": "object", "properties": {"code": {"type": "integer"}, "parent": {"type": "integer"}, "name": {"type": "string"}, "latitude": {"type": "null"}, "longitude": {"type": "null"}, "postal": {"type": "array", "items": {"type": "integer"}}, "children": {"type": "array", "items": {}}}, "required": ["code", "parent", "n...
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"pathParameters": {"type": "object", "properties": {"id": {"type": "string"}}, "required": ["id"]}, "requestContext": {"type": "object", "properties": {"identity": {"type": "object", "properties": {"cognitoIdentityI...
{"pathParameters" : {"id" : "6ad97bf0-7244-11e7-bf13-83a8daefc893"}, "requestContext" : {"identity" : {"cognitoIdentityId" : "a51d358d-fcf7-4faf-a2cc-940213fdc92f"}}}
json_instruct
{"type": "object", "properties": {"pathParameters": {"type": "object", "properties": {"id": {"type": "string"}}, "required": ["id"]}, "requestContext": {"type": "object", "properties": {"identity": {"type": "object", "properties": {"cognitoIdentityId": {"type": "string"}}, "required": ["cognitoIdentityId"]}}, "required...
The schema below describes a JSON structure. Generate a valid example: {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
[[1990, 7], [1992, 8], [1993, 5], [1994, 11], [1995, 14], [1996, 20], [1997, 14], [1998, 19], [1999, 26], [2000, 20], [2001, 35], [2002, 41], [2003, 32], [2004, 34], [2005, 41], [2006, 55], [2007, 52], [2008, 35], [2009, 44], [2010, 39], [2011, 48], [2012, 48], [2013, 51], [2014, 53]]
json_instruct
{"type": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"version": {"type": "string"}}, "required": ["version"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"version" : "v0.0.1"}
json_instruct
{"type": "object", "properties": {"version": {"type": "string"}}, "required": ["version"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"compilerOptions": {"type": "object", "properties": {"target": {"type": "string"}, "lib": {"type": "array", "items": {"type": "string"}}, "module": {"type": "string"}, "allowJs": {"type": "boolean"}, "sourceMap": {"type": "boolea...
{"compilerOptions" : {"target" : "es6", "lib" : ["dom", "es6", "dom.iterable", "scripthost"], "module" : "commonjs", "allowJs" : true, "sourceMap" : true, "noEmitOnError" : false, "declaration" : false, "removeComments" : false, "experimentalDecorators" : true, "forceConsistentCasingInFileNames" : true, "noImplicitAny"...
json_instruct
{"type": "object", "properties": {"compilerOptions": {"type": "object", "properties": {"target": {"type": "string"}, "lib": {"type": "array", "items": {"type": "string"}}, "module": {"type": "string"}, "allowJs": {"type": "boolean"}, "sourceMap": {"type": "boolean"}, "noEmitOnError": {"type": "boolean"}, "declaration":...
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"citations": {"type": "array", "items": {"type": "object", "properties": {"textCitation": {"type": "string"}}, "required": ["textCitation"]}}, "names": {"type": "array", "items": {"type": "string"}}, "language": {"type": "strin...
{"citations" : [{"textCitation" : "[See isneip on Metamath](http://us.metamath.org/mpegif/isneip.html)"}], "names" : ["isneip"], "language" : "METAMATH_SET_MM", "lookupTerms" : ["#T_cX", "#T_wceq", "#T_cuni", "#T_cJ", "#T_cJ", "#T_wcel", "#T_ctop", "#T_wa", "#T_cP", "#T_wcel", "#T_cX", "#T_wi", "#T_cN", "#T_wcel", "#T_...
json_instruct
{"type": "object", "properties": {"citations": {"type": "array", "items": {"type": "object", "properties": {"textCitation": {"type": "string"}}, "required": ["textCitation"]}}, "names": {"type": "array", "items": {"type": "string"}}, "language": {"type": "string"}, "lookupTerms": {"type": "array", "items": {"type": "st...
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "private": {"type": "string"}, "description": {"type": "string"}, "repository": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "string"}, "homepage...
{"name" : "@types/flipper-custom-typings", "version" : "0.0.0", "private" : "true", "description" : "Custom typings for untyped Flipper dependencies", "repository" : "facebook/flipper", "license" : "MIT", "bugs" : "https://github.com/facebook/flipper/issues", "homepage" : "https://github.com/facebook/flipper", "keyword...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "private": {"type": "string"}, "description": {"type": "string"}, "repository": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "string"}, "homepage": {"type": "string"}, "keywords": {"type": "array", "items...
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"type": {"type": "string"}, "id": {"type": "string"}, "melting": {"type": "integer"}, "boiling": {"type": "integer"}, "item": {"type": "string"}, "fluid": {"type": "object", "properties": {"fluid": {"type": "string"},...
{"type" : "crossroads:reagents", "id" : "gold", "melting" : 1100, "boiling" : 3000, "item" : "forge:nuggets/gold", "fluid" : {"fluid" : "crossroads:molten_gold", "amount" : 16}, "color" : "FFFF00"}
json_instruct
{"type": "object", "properties": {"type": {"type": "string"}, "id": {"type": "string"}, "melting": {"type": "integer"}, "boiling": {"type": "integer"}, "item": {"type": "string"}, "fluid": {"type": "object", "properties": {"fluid": {"type": "string"}, "amount": {"type": "integer"}}, "required": ["fluid", "amount"]}, "c...
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "summary": {"type": "string"}, "description": {"type": "string"}, "homepage": {"type": "string"}, "screenshots": {"type": "string"}, "license": {"type": "string"}, "aut...
{"name" : "SUImageComparisonView", "version" : "0.0.1", "summary" : "An iOS View that let you swipe to reveal portions of two images like http://imgur.com/eyxNQM9", "description" : "An iOS View that let you swipe to reveal portions of two images like http://imgur.com/eyxNQM9 \n Features\n Support 2 UIImages\n Th...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "summary": {"type": "string"}, "description": {"type": "string"}, "homepage": {"type": "string"}, "screenshots": {"type": "string"}, "license": {"type": "string"}, "authors": {"type": "object", "properties": {"Soravis Prakkamak...
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"ast": {"type": "null"}, "code": {"type": "string"}, "map": {"type": "null"}, "metadata": {"type": "object", "properties": {}, "required": []}, "sourceType": {"type": "string"}}, "required": ["ast", "code", "map", "metadata", "so...
{"ast" : null, "code" : "\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nvar CarryOutTwoTone = {\n name: 'carry-out',\n theme: 'twotone',\n icon: function (primaryColor, secondaryColor) {\n return {\n tag: 'svg',\n attrs: {\n viewBox: '64 64 896 896',\n ...
json_instruct
{"type": "object", "properties": {"ast": {"type": "null"}, "code": {"type": "string"}, "map": {"type": "null"}, "metadata": {"type": "object", "properties": {}, "required": []}, "sourceType": {"type": "string"}}, "required": ["ast", "code", "map", "metadata", "sourceType"], "$schema": "http://json-schema.org/draft-07/s...
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"resourceName": {"type": "string"}, "serviceType": {"type": "string"}}, "required": ["resourceName", "serviceType"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"resourceName" : "newdemonsproject32ec58ee", "serviceType" : "imported"}
json_instruct
{"type": "object", "properties": {"resourceName": {"type": "string"}, "serviceType": {"type": "string"}}, "required": ["resourceName", "serviceType"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"texture_data": {"type": "object", "properties": {"toko_spawn": {"type": "object", "properties": {"textures": {"type": "array", "items": {"type": "string"}}}, "required": ["textures"]}}, "required": ["toko_spawn"]}}, ...
{"texture_data" : {"toko_spawn" : {"textures" : ["textures/icon/k", "textures/icon/s", "textures/icon/n", "textures/icon/p"]}}}
json_instruct
{"type": "object", "properties": {"texture_data": {"type": "object", "properties": {"toko_spawn": {"type": "object", "properties": {"textures": {"type": "array", "items": {"type": "string"}}}, "required": ["textures"]}}, "required": ["toko_spawn"]}}, "required": ["texture_data"], "$schema": "http://json-schema.org/draf...
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"page": {"type": "object", "properties": {"title": {"type": "string"}, "meta": {"type": "string"}, "base": {"type": "string"}, "lang": {"type": "string"}}, "required": ["title", "meta", "base", "lang"]}}, "required": ["page"], "$...
{"page" : {"title" : "Blockstrap Documentation | Framework | Modules | Widgets", "meta" : "widgets module meta description", "base" : "../../../../", "lang" : "en"}}
json_instruct
{"type": "object", "properties": {"page": {"type": "object", "properties": {"title": {"type": "string"}, "meta": {"type": "string"}, "base": {"type": "string"}, "lang": {"type": "string"}}, "required": ["title", "meta", "base", "lang"]}}, "required": ["page"], "$schema": "http://json-schema.org/draft-07/schema#"}
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" : 45417, "cartId" : "90ab9733-71db-42a4-9725-996c1a28b4e4", "preferredProducts" : [3827, 2022, 3523, 4502, 1421, 4528, 343, 3910, 2204], "productReviews" : [{"productId" : 1601, "reviewText" : "one of my hobbies is baking. and when i'm baking this works great.", "reviewDate" : "2018-06-13T08:13:18.7654+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...
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"SCREENS": {"type": "object", "properties": {"home": {"type": "string"}, "profile": {"type": "string"}, "bookmarks": {"type": "string"}, "search": {"type": "string"}}, "required": ["home", "profile", "bookmarks", "search"]}, "GLO...
{"SCREENS" : {"home" : "Home", "profile" : "Profile", "bookmarks" : "Bookmarks", "search" : "Search"}, "GLOBALS" : {}, "LABELS" : {"search_box_example" : "Ex. BTC, ETH, LTh", "roi_data" : "Return on Investment", "last_weekly" : "Last Week", "last_monthly" : "Last Monthly", "last_yearly" : "Last Year", "price" : "Price"...
json_instruct
{"type": "object", "properties": {"SCREENS": {"type": "object", "properties": {"home": {"type": "string"}, "profile": {"type": "string"}, "bookmarks": {"type": "string"}, "search": {"type": "string"}}, "required": ["home", "profile", "bookmarks", "search"]}, "GLOBALS": {"type": "object", "properties": {}, "required": [...
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"341722100": {"type": "string"}, "341722101": {"type": "string"}, "341722102": {"type": "string"}, "341722103": {"type": "string"}, "341722104": {"type": "string"}, "341722105": {"type": "string"}, "341722200": {"type": "string...
{"341722100" : "\u4ec1\u91cc\u9547", "341722101" : "\u4e03\u90fd\u9547", "341722102" : "\u4ed9\u5bd3\u9547", "341722103" : "\u4e01\u9999\u9547", "341722104" : "\u5c0f\u6cb3\u9547", "341722105" : "\u6a2a\u6e21\u9547", "341722200" : "\u5927\u6f14\u4e61", "341722201" : "\u77f6\u6ee9\u4e61"}
json_instruct
{"type": "object", "properties": {"341722100": {"type": "string"}, "341722101": {"type": "string"}, "341722102": {"type": "string"}, "341722103": {"type": "string"}, "341722104": {"type": "string"}, "341722105": {"type": "string"}, "341722200": {"type": "string"}, "341722201": {"type": "string"}}, "required": ["3417221...
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" : "thoria", "definition" : "A rare white earthy substance, consisting of the oxide of thorium; -- formerly called also thorina."}
json_instruct
{"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"Resources/app.js": {"type": "integer"}, "Resources/CreateAccount.js": {"type": "integer"}, "Resources/ViewFull.js": {"type": "integer"}}, "required": ["Resources/app.js", "Resources/CreateAccount.js", "Resources/ViewFull.js"],...
{"Resources/app.js" : 1, "Resources/CreateAccount.js" : 1, "Resources/ViewFull.js" : 1}
json_instruct
{"type": "object", "properties": {"Resources/app.js": {"type": "integer"}, "Resources/CreateAccount.js": {"type": "integer"}, "Resources/ViewFull.js": {"type": "integer"}}, "required": ["Resources/app.js", "Resources/CreateAccount.js", "Resources/ViewFull.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"id": {"type": "string"}, "text": {"type": "string"}}, "required": ["id", "text"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : "d796-73", "text" : "MEMORANDUM\n1'IAEB HEA25QWARTERS\n13^6 CoBuecticut Avenue, W.W.\nWashington 6, D,C\u00bb\nTO: NAEB Beard of tractors\nFROM: Harold E. Hill\nBATE: torch 5* 19^2\nBE: WASB Board Meeting at Columbus (XSRT)\nScbbb changes have been cade this year la the IER3? schedule which result in a shortene...
json_instruct
{"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": {"hash": {"type": "string"}, "parentHash": {"type": "string"}, "number": {"type": "integer"}, "timestamp": {"type": "integer"}, "nonce": {"type": "string"}, "difficulty": {"type": "integer"}, "gasLimit": {"type": "ob...
{"hash" : "0xb17363034bbe9ec435b4e9fdf50732161ebad3c791fba672ee35dc5083901a01", "parentHash" : "0x271442dd8b1d360ec457262d902784423ce83b1290d46524c57bf1bd6c61a3f9", "number" : 95571, "timestamp" : 1439725887, "nonce" : "0x446f61ee78e1f208", "difficulty" : 3641028584818, "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": {"id": {"type": "integer"}, "info": {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "additionalInfo": {"type": "null"}, "format": {"type": "string"}, "category": {"type": "string"},...
{"id" : 165336, "info" : {"name" : "Roblox Baseplate Background", "description" : "Yeah, the title explains it.", "additionalInfo" : null, "format" : "uso", "category" : "roblox", "createdAt" : "2018-10-27T12:52:57.000Z", "updatedAt" : "2018-10-27T13:09:56.000Z", "license" : "NO-REDISTRIBUTION", "author" : {"id" : 7411...
json_instruct
{"type": "object", "properties": {"id": {"type": "integer"}, "info": {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "additionalInfo": {"type": "null"}, "format": {"type": "string"}, "category": {"type": "string"}, "createdAt": {"type": "string"}, "updatedAt": {"type": "...
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"type": {"type": "string"}, "id": {"type": "string"}, "properties": {"type": "object", "properties": {"amenity": {"type": "string"}, "name": {"type": "string"}, "name:hsb": {"type": "string"}, "id": {"type": "string...
{"type" : "Feature", "id" : "way/27580025", "properties" : {"amenity" : "marketplace", "name" : "Markt", "name:hsb" : "Mark", "id" : "way/27580025"}, "geometry" : {"type" : "Point", "coordinates" : [14.4108304, 51.8585507]}}
json_instruct
{"type": "object", "properties": {"type": {"type": "string"}, "id": {"type": "string"}, "properties": {"type": "object", "properties": {"amenity": {"type": "string"}, "name": {"type": "string"}, "name:hsb": {"type": "string"}, "id": {"type": "string"}}, "required": ["amenity", "name", "name:hsb", "id"]}, "geometry": {"...
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "type": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "stri...
{"name" : "dezsidog/cyt-sdk", "description" : "", "type" : "library", "authors" : [{"name" : "zed", "email" : "zedsmail@163.com"}], "license" : "WTFPL", "require" : {"ext-json" : "*", "ext-simplexml" : "*", "ext-curl" : "*", "nesbot/carbon" : "^2.19", "illuminate/support" : "^5.8", "monolog/monolog" : "^1.24"}, "requir...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "type": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}}, "license": {"type": "string"}, "...
Based on the schema below, produce a valid JSON object: {"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" : "6106050005", "district_id" : "6106050", "name" : "MAHAWA"}
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": {"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" : [[[-84.462393, 42.751189], [-84.462355, 42.755209], [-84.447497, 42.75531], [-84.447611, 42.759132], [-84.449318, 42.76254], [-84.449317, 42.769584], [-84.432691, 42.769593], [-84.432528, 42.755374], [-84.427628, 42.7554], [...
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...
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"ChristmasElves": {"type": "array", "items": {"type": "string"}}}, "required": ["ChristmasElves"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"ChristmasElves" : ["SantaClaus", "MouseWorld", "OurDwarvesAreAllTheSame", "ReallySevenHundredYearsOld", "SantaClaus", "JustifiedTrope", "OurElvesAreDifferent", "LittlePeople", "Leprechaun", "OurElvesAreDifferent", "LittlePeople", "SecretPolice", "EverythingsBetterWithPenguins", "BonusMaterial", "CloudCuckooLander", "...
json_instruct
{"type": "object", "properties": {"ChristmasElves": {"type": "array", "items": {"type": "string"}}}, "required": ["ChristmasElves"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"resourceType": {"type": "string"}, "id": {"type": "string"}, "meta": {"type": "object", "properties": {"lastUpdated": {"type": "string"}}, "required": ["lastUpdated"]}, "contentType": {"type": "string"}, "data"...
{"resourceType" : "Binary", "id" : "1e404af3-077f-4bee-b7a6-a9be97e1ce32", "meta" : {"lastUpdated" : "2013-07-01T13:11:33Z"}, "contentType" : "text/plain", "data" : "YXNkYXNkYXNkYXNkYXNk"}
json_instruct
{"type": "object", "properties": {"resourceType": {"type": "string"}, "id": {"type": "string"}, "meta": {"type": "object", "properties": {"lastUpdated": {"type": "string"}}, "required": ["lastUpdated"]}, "contentType": {"type": "string"}, "data": {"type": "string"}}, "required": ["resourceType", "id", "meta", "contentT...
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"caip-19": {"type": "string"}, "symbol": {"type": "string"}, "trustwallet-uid": {"type": "string"}}, "required": ["caip-19", "symbol", "trustwallet-uid"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"caip-19" : "cosmos:iov-mainnet-2/slip44:234", "symbol" : "IOV", "trustwallet-uid" : "c234"}
json_instruct
{"type": "object", "properties": {"caip-19": {"type": "string"}, "symbol": {"type": "string"}, "trustwallet-uid": {"type": "string"}}, "required": ["caip-19", "symbol", "trustwallet-uid"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"template": {"type": "object", "properties": {"small": {"type": "string"}, "medium": {"type": "string"}, "large": {"type": "string"}}, "required": ["small", "medium", "large"]}, "channels": {"type": "object", "properties": {...
{"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" : {"egstephano" : {"title" : "EGStephano", "channel_id" : 66545660, "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": {"egstephano": {"type": "object", "properties": {"title": {"typ...
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"towns": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "url": {"type": "string"}}, "required": ["name", "url"]}}}, "required": ["towns"], "$schema": "http://json-schema.org/draft-07/sc...
{"towns" : [{"name" : "Mahala", "url" : "mahala"}]}
json_instruct
{"type": "object", "properties": {"towns": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "url": {"type": "string"}}, "required": ["name", "url"]}}}, "required": ["towns"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"}
["we-plugin-event"]
json_instruct
{"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "homepage": {"type": "string"}, "license": {"type": "string"}}, "required": ["name", "version", "description", "homepage"...
{"name" : "grunt-jquery-toolbox-sample", "version" : "0.0.0", "description" : "sample project for grunt-jquery-toolbox", "homepage" : "https://github.com/Jimdo/grunt-jquery-toolbox/tree/master/sample_project", "license" : "MIT"}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "homepage": {"type": "string"}, "license": {"type": "string"}}, "required": ["name", "version", "description", "homepage", "license"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"nome": {"type": "string"}, "codice": {"type": "string"}, "zona": {"type": "object", "properties": {"codice": {"type": "string"}, "nome": {"type": "string"}}, "required": ["codice", "nome"]}, "regione": {"type...
{"nome" : "Calasetta", "codice" : "111008", "zona" : {"codice" : "5", "nome" : "Isole"}, "regione" : {"codice" : "20", "nome" : "Sardegna"}, "provincia" : {"codice" : "111", "nome" : "Sud Sardegna"}, "sigla" : "SU", "codiceCatastale" : "B383", "cap" : ["09011"], "popolazione" : 2822}
json_instruct
{"type": "object", "properties": {"nome": {"type": "string"}, "codice": {"type": "string"}, "zona": {"type": "object", "properties": {"codice": {"type": "string"}, "nome": {"type": "string"}}, "required": ["codice", "nome"]}, "regione": {"type": "object", "properties": {"codice": {"type": "string"}, "nome": {"type": "s...