input
stringlengths
159
2.05k
output
stringlengths
5
10.3k
task
stringclasses
1 value
schema
stringlengths
100
1.99k
Following the schema specification below, generate a valid JSON instance: {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "frequency": {"type": "integer"}, "males": {"type": "string"}, "females": {"type": "string"}}, "required": ["name", "frequency", "males", "females"]}, "$sch...
[{"name" : "KANARI", "frequency" : 43, "males" : "55.81395348837209 %", "females" : "44.18604651162791 %"}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "frequency": {"type": "integer"}, "males": {"type": "string"}, "females": {"type": "string"}}, "required": ["name", "frequency", "males", "females"]}, "$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"}, "district_id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "district_id", "name"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : "1118050004", "district_id" : "1118050", "name" : "COT SEUTUI"}
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": {"average_learning_time": {"type": "number"}, "average_test_LL": {"type": "number"}, "folds": {"type": "object", "properties": {"fold_1": {"type": "object", "properties": {"learning_time": {"type": "number"}, "test_LL"...
{"average_learning_time" : 9.849887768554687, "average_test_LL" : -133.77574024856614, "folds" : {"fold_1" : {"learning_time" : 13613.214111328125, "test_LL" : -109.50884177314502}, "fold_10" : {"learning_time" : 8990.187255859375, "test_LL" : 43.6991245762255}, "fold_2" : {"learning_time" : 8302.945068359375, "test_LL...
json_instruct
{"type": "object", "properties": {"average_learning_time": {"type": "number"}, "average_test_LL": {"type": "number"}, "folds": {"type": "object", "properties": {"fold_1": {"type": "object", "properties": {"learning_time": {"type": "number"}, "test_LL": {"type": "number"}}, "required": ["learning_time", "test_LL"]}, "fo...
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"Id": {"type": "string"}, "ParentId": {"type": "string"}, "Price": {"type": "integer"}}, "required": ["Id", "ParentId", "Price"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"Id" : "5a5f1ce64f39f90b401987bc", "ParentId" : "5b5f737886f774093e6cb4fb", "Price" : 17919}
json_instruct
{"type": "object", "properties": {"Id": {"type": "string"}, "ParentId": {"type": "string"}, "Price": {"type": "integer"}}, "required": ["Id", "ParentId", "Price"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"status": {"type": "integer"}, "message": {"type": "string"}}, "required": ["status", "message"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"status" : 400, "message" : "Something went wrong"}
json_instruct
{"type": "object", "properties": {"status": {"type": "integer"}, "message": {"type": "string"}}, "required": ["status", "message"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"name": {"type": "string"}, "friends_count": {"type": "integer"}, "followers_count": {"type": "integer"}, "followers_ids": {"type": "array", "items": {"type": "integer"}}, "id": {"type": "integer"}, "screen_name": {"type": "str...
{"name" : "J0cl0d0ff", "friends_count" : 256, "followers_count" : 54, "followers_ids" : [2468284117, 4201722688, 4097104007, 3989025921, 108320230, 613241612, 132555372, 3585100697, 3394613577, 632813388, 3176292861, 847286640, 1630548445, 3296152936, 26982595, 20581153, 2701186685, 552412659, 52421188, 3075439447, 166...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "friends_count": {"type": "integer"}, "followers_count": {"type": "integer"}, "followers_ids": {"type": "array", "items": {"type": "integer"}}, "id": {"type": "integer"}, "screen_name": {"type": "string"}}, "required": ["name", "friends_count", "followers_co...
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"ENTRY": {"type": "string"}, "NUMBER_OF_CACHE_ENTRIES": {"type": "integer"}, "CBMCFLAGS": {"type": "array", "items": {}}, "OBJS": {"type": "array", "items": {"type": "string"}}, "INSTFLAGS": {"type": "array", "items": {}}, "...
{"ENTRY" : "ulARPRemoveCacheEntryByMac", "NUMBER_OF_CACHE_ENTRIES" : 6, "CBMCFLAGS" : [], "OBJS" : ["$(ENTRY)_harness.goto", "$(FREERTOS_PLUS_TCP)/source/FreeRTOS_ARP.goto"], "INSTFLAGS" : [], "DEF" : ["ipconfigUSE_ARP_REMOVE_ENTRY=1", "ipconfigARP_CACHE_ENTRIES={NUMBER_OF_CACHE_ENTRIES}"], "INC" : ["$(FREERTOS_PLUS_TC...
json_instruct
{"type": "object", "properties": {"ENTRY": {"type": "string"}, "NUMBER_OF_CACHE_ENTRIES": {"type": "integer"}, "CBMCFLAGS": {"type": "array", "items": {}}, "OBJS": {"type": "array", "items": {"type": "string"}}, "INSTFLAGS": {"type": "array", "items": {}}, "DEF": {"type": "array", "items": {"type": "string"}}, "INC": {...
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"builtin": {"type": "object", "properties": {"__set__": {"type": "boolean"}, "elements": {"type": "array", "items": {"type": "string"}}}, "required": ["__set__", "elements"]}, "questionable": {"type": "object", "prop...
{"builtin" : {"__set__" : true, "elements" : ["array", "atexit", "base64", "builtins", "calendar", "codecs", "collections", "colorsys", "contextlib", "copy", "ctypes", "datetime", "distutils", "doctest", "filecmp", "fractions", "functools", "glob", "io", "itertools", "locale", "logging", "math", "mmap", "numbers", "ope...
json_instruct
{"type": "object", "properties": {"builtin": {"type": "object", "properties": {"__set__": {"type": "boolean"}, "elements": {"type": "array", "items": {"type": "string"}}}, "required": ["__set__", "elements"]}, "questionable": {"type": "object", "properties": {"__set__": {"type": "boolean"}, "elements": {"type": "array"...
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "dependencies": {"type": "object", "properties": {"pkg-m": {"type": "string"}, "@pkg-m/m": {"type": "string"}}, "required": ["pkg-m", "@pkg-m/m"]}, "license"...
{"name" : "with-css-modules", "version" : "1.0.0", "dependencies" : {"pkg-m" : "^1.2.3", "@pkg-m/m" : "^1.2.3"}, "license" : "Apache-2.0"}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "dependencies": {"type": "object", "properties": {"pkg-m": {"type": "string"}, "@pkg-m/m": {"type": "string"}}, "required": ["pkg-m", "@pkg-m/m"]}, "license": {"type": "string"}}, "required": ["name", "version", "dependencies",...
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"text": {"type": "string"}, "url": {"type": "string"}}, "required": ["text", "url"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"text" : " How to Solve a System of Equations Using Elimination\n\n\\begin{array}{r}\\n2 x-y=-4 \\\\\\n-4 x+2 y=6\\n\\end{array}[imath]2 x-y=-4 [/imath] [imath]-4 x+2 y=6[/imath] \n\n\n", "url" : "https://www.youtube.com/watch?v=siYIpiRYScY"}
json_instruct
{"type": "object", "properties": {"text": {"type": "string"}, "url": {"type": "string"}}, "required": ["text", "url"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "id": {"type": "integer"}, "image_url": {"type": "string"}, "updated_at": {"type": "string"}, "deleted_at": {"type": "null"}, "recipe_type": {"type": "integer"}, "r...
{"name" : "mlNikon's Peach Cobbler a la Mode", "description" : "A delicious peach cobbler just swimming in an ocean of vanilla ice cream. I used cap sugar cookie to give the peach pie and cream some more bakery goodness and I used TFA Nectarine to boost the peachyness of peach pie and cream. This is very simple yet ver...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "id": {"type": "integer"}, "image_url": {"type": "string"}, "updated_at": {"type": "string"}, "deleted_at": {"type": "null"}, "recipe_type": {"type": "integer"}, "recipe_flavors": {"type": "array", "items": {"type": "object...
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"body": {"type": "string"}, "user": {"type": "string"}, "url": {"type": "string"}, "updated_at": {"type": "string"}, "created_at": {"type": "string"}, "closed_at": {"type": "string"}, "state": {"type": "string"}, "...
{"body" : "Also makes the following changes:\r\n\r\n- [x] Convert from `Package` to `AutotoolsPackage`\r\n- [x] Update the description\r\n- [x] Update the homepage, old one was a 404\r\n- [x] Add a guile variant and dependency\r\n\r\nBuilds fine for me on CentOS 6. Even passes all the tests!", "user" : "adamjstewart", ...
json_instruct
{"type": "object", "properties": {"body": {"type": "string"}, "user": {"type": "string"}, "url": {"type": "string"}, "updated_at": {"type": "string"}, "created_at": {"type": "string"}, "closed_at": {"type": "string"}, "state": {"type": "string"}, "title": {"type": "string"}, "number": {"type": "integer"}, "milestone": ...
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"index": {"type": "integer"}, "hash": {"type": "integer"}, "blacklisted": {"type": "boolean"}, "damageType": {"type": "integer"}, "redacted": {"type": "boolean"}, "isDisplayable": {"type": "boolean"}, "displayProper...
{"index" : 707, "hash" : 2726629970, "blacklisted" : false, "damageType" : 0, "redacted" : false, "isDisplayable" : true, "displayProperties" : {"icon" : "/common/destiny2_content/icons/20a98feac60e5acda919781f50ee69f1.png", "hasIcon" : true, "description" : "Melee abilities deal more damage and recharge much faster.",...
json_instruct
{"type": "object", "properties": {"index": {"type": "integer"}, "hash": {"type": "integer"}, "blacklisted": {"type": "boolean"}, "damageType": {"type": "integer"}, "redacted": {"type": "boolean"}, "isDisplayable": {"type": "boolean"}, "displayProperties": {"type": "object", "properties": {"icon": {"type": "string"}, "h...
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"station_g": {"type": "array", "items": {"type": "object", "properties": {"pref_cd": {"type": "integer"}, "line_cd": {"type": "integer"}, "line_name": {"type": "string"}, "station_cd": {"type": "integer"}, "station_na...
{"station_g" : [{"pref_cd" : 13, "line_cd" : 11311, "line_name" : "JR\u4e2d\u592e\u672c\u7dda(\u6771\u4eac\uff5e\u5869\u5c3b)", "station_cd" : 1131106, "station_name" : "\u56fd\u5206\u5bfa"}, {"pref_cd" : 13, "line_cd" : 11312, "line_name" : "JR\u4e2d\u592e\u7dda(\u5feb\u901f)", "station_cd" : 1131224, "station_name" :...
json_instruct
{"type": "object", "properties": {"station_g": {"type": "array", "items": {"type": "object", "properties": {"pref_cd": {"type": "integer"}, "line_cd": {"type": "integer"}, "line_name": {"type": "string"}, "station_cd": {"type": "integer"}, "station_name": {"type": "string"}}, "required": ["pref_cd", "line_cd", "line_na...
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"replace": {"type": "boolean"}, "values": {"type": "array", "items": {"type": "string"}}}, "required": ["replace", "values"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"replace" : false, "values" : ["twigs:stripped_bamboo_slab"]}
json_instruct
{"type": "object", "properties": {"replace": {"type": "boolean"}, "values": {"type": "array", "items": {"type": "string"}}}, "required": ["replace", "values"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "version": {"type": "string"}, "author": {"type": "string"}, "contributors": {"type": "array"...
{"name" : "xvtree", "description" : "Parses XML to VTree", "keywords" : ["xml", "vtree", "vnode", "virtual dom"], "version" : "0.1.3", "author" : "Wouter Hager <wshager@gmail.com> (https://lagua.nl)", "contributors" : [], "main" : "./lib/xvtree", "files" : ["lib"], "directories" : {"lib" : "./lib"}, "scripts" : {}, "re...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "version": {"type": "string"}, "author": {"type": "string"}, "contributors": {"type": "array", "items": {}}, "main": {"type": "string"}, "files": {"type": "array",...
Following the schema specification below, generate a valid JSON instance: {"type": "array", "items": {"type": "object", "properties": {"e_id": {"type": "string"}, "title": {"type": "string"}, "content": {"type": "string"}, "picNo": {"type": "string"}, "picUrl": {"type": "array", "items": {}}}, "required": ["e_id", "ti...
[{"e_id" : "1789", "title" : "\u4e1c\u5317\u89e3\u653e\u519b\u653b\u514b\u56db\u5e73", "content" : "\n\u00a0\u00a0\u00a0\u00a0\u572873\u5e74\u524d\u7684\u4eca\u5929\uff0c1948\u5e742\u67086\u65e5(\u519c\u53861947\u5e7412\u670827\u65e5)\uff0c\u4e1c\u5317\u89e3\u653e\u519b\u653b\u514b\u56db\u5e73\u30021948\u5e742\u67086\u...
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"e_id": {"type": "string"}, "title": {"type": "string"}, "content": {"type": "string"}, "picNo": {"type": "string"}, "picUrl": {"type": "array", "items": {}}}, "required": ["e_id", "title", "content", "picNo", "picUrl"]}, "$schema": "http://json-schema.org/dr...
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"courseCode": {"type": "string"}, "courseCredit": {"type": "string"}, "description": {"type": "string"}, "faculty": {"type": "string"}, "preclusion": {"type": "string"}, "title": {"type": "string"}}, "required": ["cou...
{"courseCode" : "LL5321", "courseCredit" : "4", "description" : "This course applies economic concepts to the practice of structuring business transactions. The materials consist of case studies of actual transactions. We will use those case studies to analyze the economics challenges that parties to a deal must addres...
json_instruct
{"type": "object", "properties": {"courseCode": {"type": "string"}, "courseCredit": {"type": "string"}, "description": {"type": "string"}, "faculty": {"type": "string"}, "preclusion": {"type": "string"}, "title": {"type": "string"}}, "required": ["courseCode", "courseCredit", "description", "faculty", "preclusion", "ti...
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"tld": {"type": "string"}, "ns": {"type": "array", "items": {"type": "string"}}}, "required": ["tld", "ns"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"tld" : "warzone.kneate", "ns" : ["ns1.nic.kneate", "ns2.nic.kneate"]}
json_instruct
{"type": "object", "properties": {"tld": {"type": "string"}, "ns": {"type": "array", "items": {"type": "string"}}}, "required": ["tld", "ns"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"name": {"type": "string"}, "author": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}, "repository": {"type": "object", "properties": ...
{"name" : "vuepress-plugin-giscus-comment", "author" : {"name" : "PresentKim", "email" : "debe3721@gmail.com"}, "repository" : {"type" : "git", "url" : "https://github.com/PresentKim/vuepress-plugin-giscus-comment"}, "version" : "2.0.0", "main" : "lib/node/index.js", "types" : "lib/node/index.d.ts", "license" : "MIT", ...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "author": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type",...
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"time_fct_id": {"type": "integer"}, "time_fct": {"type": "string"}, "affiliate_fct_id": {"type": "integer"}, "affiliate_fct": {"type": "string"}, "affiliate_fct_occurrence": {"type": "integer"}, "affiliates": {"type...
{"time_fct_id" : 54, "time_fct" : "time_39700", "affiliate_fct_id" : 23930, "affiliate_fct" : "private Sammlung (Mainz)", "affiliate_fct_occurrence" : 2, "affiliates" : [{"affiliate_fct_id" : 23930, "affiliate_fct" : "private Sammlung (Mainz)", "affiliate_fct_occurrence" : 2}]}
json_instruct
{"type": "object", "properties": {"time_fct_id": {"type": "integer"}, "time_fct": {"type": "string"}, "affiliate_fct_id": {"type": "integer"}, "affiliate_fct": {"type": "string"}, "affiliate_fct_occurrence": {"type": "integer"}, "affiliates": {"type": "array", "items": {"type": "object", "properties": {"affiliate_fct_i...
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"forge_marker": {"type": "integer"}, "variants": {"type": "object", "properties": {"inventory": {"type": "object", "properties": {"model": {"type": "string"}, "textures": {"type": "object", "properties": {"base": {"...
{"forge_marker" : 1, "variants" : {"inventory" : {"model" : "forge:forgebucket", "textures" : {"base" : "extracells:items/fluid.pattern", "fluid" : "extracells:items/fluid.pattern.contents"}, "transform" : "forge:default-item"}}}
json_instruct
{"type": "object", "properties": {"forge_marker": {"type": "integer"}, "variants": {"type": "object", "properties": {"inventory": {"type": "object", "properties": {"model": {"type": "string"}, "textures": {"type": "object", "properties": {"base": {"type": "string"}, "fluid": {"type": "string"}}, "required": ["base", "f...
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"name": {"type": "string"}, "private": {"type": "boolean"}, "version": {"type": "string"}, "description": {"type": "string"}, "repository": {"type": "string"}, "license": {"type": "string"}, "devDependencies": {"type": "object"...
{"name" : "angular-seed", "private" : true, "version" : "0.0.0", "description" : "A starter project for AngularJS", "repository" : "https://github.com/angular/angular-seed", "license" : "MIT", "devDependencies" : {"bower" : "^1.3.1", "serve" : "^6.5.2"}, "scripts" : {"postinstall" : "bower install", "serve" : "serve ./...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "private": {"type": "boolean"}, "version": {"type": "string"}, "description": {"type": "string"}, "repository": {"type": "string"}, "license": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"bower": {"type": "string"}, "serve": {"ty...
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"files": {"type": "object", "properties": {"main.css": {"type": "string"}, "main.js": {"type": "string"}, "main.js.map": {"type": "string"}, "runtime-main.js": {"type": "string"}, "runtime-main.js.map": {"type": "string"}, "stati...
{"files" : {"main.css" : "/math-magicians/static/css/main.5d7a3be2.chunk.css", "main.js" : "/math-magicians/static/js/main.9aad9c31.chunk.js", "main.js.map" : "/math-magicians/static/js/main.9aad9c31.chunk.js.map", "runtime-main.js" : "/math-magicians/static/js/runtime-main.acda56ed.js", "runtime-main.js.map" : "/math-...
json_instruct
{"type": "object", "properties": {"files": {"type": "object", "properties": {"main.css": {"type": "string"}, "main.js": {"type": "string"}, "main.js.map": {"type": "string"}, "runtime-main.js": {"type": "string"}, "runtime-main.js.map": {"type": "string"}, "static/css/2.27dd871e.chunk.css": {"type": "string"}, "static/...
Please provide a valid JSON object following this schema: {"type": "array", "items": {"type": "object", "properties": {"w": {"type": "integer"}, "v": {"type": "string"}}, "required": ["w", "v"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"w" : 25, "v" : "{$hair+brown }"}, {"w" : 20, "v" : "{$hair+auburn }"}, {"w" : 12, "v" : "{$hair+blond }"}, {"w" : 14, "v" : "{$hair+red }"}, {"w" : 8, "v" : "{$hair+golden }"}, {"w" : 5, "v" : "{$hair+silver }"}, {"w" : 16, "v" : "{$hair+gray }"}, {"w" : 8, "v" : "{$hair+white }"}, {"w" : 20, "v" : "{$hair+black }"}...
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"w": {"type": "integer"}, "v": {"type": "string"}}, "required": ["w", "v"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"type": {"type": "string"}, "pattern": {"type": "array", "items": {"type": "string"}}, "key": {"type": "object", "properties": {"I": {"type": "object", "properties": {"item": {"type": "string"}}, "required": ["item"]...
{"type" : "minecraft:crafting_shaped", "pattern" : ["TBC", "IMI"], "key" : {"I" : {"item" : "rs_ctr2:item_io"}, "M" : {"item" : "rs_ctr2:item_mover"}, "B" : {"item" : "rs_ctr2:and_filter"}, "T" : {"item" : "minecraft:crafting_table"}, "C" : {"item" : "minecraft:chest"}}, "result" : {"item" : "rs_ctr2:autocraft"}}
json_instruct
{"type": "object", "properties": {"type": {"type": "string"}, "pattern": {"type": "array", "items": {"type": "string"}}, "key": {"type": "object", "properties": {"I": {"type": "object", "properties": {"item": {"type": "string"}}, "required": ["item"]}, "M": {"type": "object", "properties": {"item": {"type": "string"}},...
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"patthana15.23:1.1": {"type": "string"}, "patthana15.23:2.1": {"type": "string"}, "patthana15.23:3.1": {"type": "string"}}, "required": ["patthana15.23:1.1", "patthana15.23:2.1", "patthana15.23:3.1"], "$schema...
{"patthana15.23:1.1" : "csp2ed40.223, ms40P15_83, msdiv30, sc1", "patthana15.23:2.1" : "ms40P15_84, sc2", "patthana15.23:3.1" : "ms40P15_85, sc3"}
json_instruct
{"type": "object", "properties": {"patthana15.23:1.1": {"type": "string"}, "patthana15.23:2.1": {"type": "string"}, "patthana15.23:3.1": {"type": "string"}}, "required": ["patthana15.23:1.1", "patthana15.23:2.1", "patthana15.23:3.1"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"id": {"type": "integer"}, "info": {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "additionalInfo": {"type": "null"}, "format": {"type": "string"}, "category":...
{"id" : 173384, "info" : {"name" : "Clickup - Remove yellow warning", "description" : "Remove the upgrade warning with (UPGRADE) info from Clickup app when you hit storage limit", "additionalInfo" : null, "format" : "uso", "category" : "clickup", "createdAt" : "2019-07-09T17:12:13.000Z", "updatedAt" : "2019-07-10T20:33...
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": "...
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "homepage": {"type": "string"}, "type": {"type": "string"}, "license": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "pr...
{"name" : "nostadt/terminal-helper", "description" : "Helper stuff I like to use when working with a terminal.", "homepage" : "https://github.com/nostadt/terminal-helper", "type" : "library", "license" : "MIT", "authors" : [{"name" : "Alexander Nostadt"}], "support" : {"issues" : "https://github.com/nostadt/terminal-he...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "homepage": {"type": "string"}, "type": {"type": "string"}, "license": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"]}}, "suppor...
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {"type": "integer"}}, "productReviews": {"type": "array", "items": {"type": "object", "properties": {"pro...
{"userId" : 34200, "cartId" : "29f75709-58cf-4103-a664-f1039830741e", "preferredProducts" : [1952, 2095, 1711, 3446, 1618, 4596, 444], "productReviews" : [{"productId" : 3396, "reviewText" : "heard about this on new jersey hip hop radio, decided to give it a try.", "reviewDate" : "2018-03-05T18:25:10.9196985+02:00"}, {...
json_instruct
{"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {"type": "integer"}}, "productReviews": {"type": "array", "items": {"type": "object", "properties": {"productId": {"type": "integer"}, "reviewText": {"type": "string"}, "reviewD...
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"git_hash": {"type": "string"}, "historical_id": {"type": "string"}, "historical_name": {"type": "string"}, "historical_parameters": {"type": "object", "properties": {"title": {"type": "string"}, "interval_date_start"...
{"git_hash" : "", "historical_id" : "V2.0", "historical_name" : "card_reader", "historical_parameters" : {"title" : "card_reader historical analysis", "interval_date_start" : "2021-01-13", "interval_date_end" : "2021-04-13 23:00:00"}, "uuid" : "synthetic_card_reader"}
json_instruct
{"type": "object", "properties": {"git_hash": {"type": "string"}, "historical_id": {"type": "string"}, "historical_name": {"type": "string"}, "historical_parameters": {"type": "object", "properties": {"title": {"type": "string"}, "interval_date_start": {"type": "string"}, "interval_date_end": {"type": "string"}}, "requ...
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"type": {"type": "string"}, "pattern": {"type": "array", "items": {"type": "string"}}, "key": {"type": "object", "properties": {"#": {"type": "array", "items": {"type": "object", "properties": {"item": {"type": "strin...
{"type" : "minecraft:crafting_shaped", "pattern" : ["###"], "key" : {"#" : [{"item" : "sand_dust:smooth_light_gray_stained_sandstone"}]}, "result" : {"item" : "sand_dust:smooth_light_gray_stained_sandstone_slab", "count" : 6}}
json_instruct
{"type": "object", "properties": {"type": {"type": "string"}, "pattern": {"type": "array", "items": {"type": "string"}}, "key": {"type": "object", "properties": {"#": {"type": "array", "items": {"type": "object", "properties": {"item": {"type": "string"}}, "required": ["item"]}}}, "required": ["#"]}, "result": {"type":...
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"id": {"type": "integer"}, "title": {"type": "string"}, "title_en": {"type": "string"}, "title_jp": {"type": "string"}, "picture": {"type": "string"}, "synopsis": {"type": "string"}, "type": {"type": "string"}, "epis...
{"id" : 25519, "title" : "Yuuki Yuuna wa Yuusha de Aru", "title_en" : "Yuki Yuna is a Hero", "title_jp" : "\u7d50\u57ce\u53cb\u5948\u306f\u52c7\u8005\u3067\u3042\u308b", "picture" : "http://cdn.myanimelist.net/images/anime/8/77057.jpg", "synopsis" : "What does it mean to be a hero? Yuuki Yuuna thinks she knows. As part...
json_instruct
{"type": "object", "properties": {"id": {"type": "integer"}, "title": {"type": "string"}, "title_en": {"type": "string"}, "title_jp": {"type": "string"}, "picture": {"type": "string"}, "synopsis": {"type": "string"}, "type": {"type": "string"}, "episodes": {"type": "integer"}, "tags": {"type": "array", "items": {"type"...
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"nom": {"type": "string"}, "circ": {"type": "string"}, "dpt": {"type": "string"}, "inscrits": {"type": "integer"}, "abs": {"type": "integer"}, "votants": {"type": "integer"}, "blancs": {"type": "integer"}, "nuls": {"...
{"nom" : "Bagnizeau", "circ" : "3\u00e8me circonscription", "dpt" : "Charente-Maritime", "inscrits" : 157, "abs" : 71, "votants" : 86, "blancs" : 14, "nuls" : 1, "exp" : 71, "res" : [{"nuance" : "REM", "nom" : "M. Jean-Philippe ARDOUIN", "voix" : 49}, {"nuance" : "LR", "nom" : "M. Frederic NEVEU", "voix" : 22}]}
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"...
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"user/angle": {"type": "number"}, "cam/image_array": {"type": "string"}, "user/throttle": {"type": "number"}, "user/mode": {"type": "string"}}, "required": ["user/angle", "cam/image_array", "user/throttle", "user/mode"], "$schema...
{"user/angle" : -0.7935494838690516, "cam/image_array" : "1655_cam-image_array_.jpg", "user/throttle" : 0.9, "user/mode" : "user"}
json_instruct
{"type": "object", "properties": {"user/angle": {"type": "number"}, "cam/image_array": {"type": "string"}, "user/throttle": {"type": "number"}, "user/mode": {"type": "string"}}, "required": ["user/angle", "cam/image_array", "user/throttle", "user/mode"], "$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"}, "type": {"type": "string"}, "nodeRestart": {"type": "object", "properties": {"enabled": {"type": "boolean"}, "schedule": {"type": "string"}}, "required": ["enabled", "schedule"]}, "nodes": ...
{"name" : "testnet5", "type" : "local", "nodeRestart" : {"enabled" : true, "schedule" : "50 * * * *"}, "nodes" : 6, "image" : {"repo" : "parity/polkadot", "tag" : "v0.7.20"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "type": {"type": "string"}, "nodeRestart": {"type": "object", "properties": {"enabled": {"type": "boolean"}, "schedule": {"type": "string"}}, "required": ["enabled", "schedule"]}, "nodes": {"type": "integer"}, "image": {"type": "object", "properties": {"repo...
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "nodes": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "id": {"type": "integer"}, "lat": {"type": "number"}, "lon": {...
{"id" : "61506831", "name" : "Lower Meadow Court", "nodes" : [{"type" : "node", "id" : 767528024, "lat" : 52.2696113, "lon" : -0.8377089}, {"type" : "node", "id" : 767528025, "lat" : 52.2694734, "lon" : -0.8374407}, {"type" : "node", "id" : 767528026, "lat" : 52.2693093, "lon" : -0.8372154}, {"type" : "node", "id" : 76...
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "nodes": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "id": {"type": "integer"}, "lat": {"type": "number"}, "lon": {"type": "number"}}, "required": ["type", "id", "lat", "lon"]}}, "volunte...
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"name": {"type": "string"}, "dependencies": {"type": "object", "properties": {"coffee-script": {"type": "string"}}, "required": ["coffee-script"]}}, "required": ["name", "dependencies"], "$schema": "http://json-schema.org/draft...
{"name" : "coursera-downloaderm", "dependencies" : {"coffee-script" : ""}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "dependencies": {"type": "object", "properties": {"coffee-script": {"type": "string"}}, "required": ["coffee-script"]}}, "required": ["name", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"author": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "name"]}, "date": {"type": "object", "properties": {"day": {"type": "integer"}, "full": {"type": "integer"}, ...
{"author" : {"id" : "t2_2razpjnz", "name" : "_PogS_"}, "date" : {"day" : 1591315200, "full" : 1591355753, "month" : 1590969600, "week" : 1590883200}, "id" : "t3_gx2mal", "misc" : {"postHint" : "image"}, "picture" : {"filesize" : 256113, "fullUrl" : "https://preview.redd.it/wo1rf8g0s2351.png?auto=webp&s=a97e7fc3bc70fff7...
json_instruct
{"type": "object", "properties": {"author": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "name"]}, "date": {"type": "object", "properties": {"day": {"type": "integer"}, "full": {"type": "integer"}, "month": {"type": "integer"}, "week": {"type": "integer"}},...
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "private": {"type": "boolean"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"},...
{"name" : "what-is-faster", "version" : "0.0.1", "description" : "JS benchmarks", "private" : true, "main" : "index.js", "scripts" : {"start" : "node index", "test" : "jshint ./lib"}, "repository" : {"type" : "git", "url" : "git+https://github.com/AlexanderMac/what-is-faster.git"}, "keywords" : ["benchmark", "benchmark...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "private": {"type": "boolean"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}, "test": {"type": "string"}}, "required": ["start", "test"]...
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"vendor": {"type": "string"}, "filename": {"type": "string"}, "release_type": {"type": "string"}, "version": {"type": "string"}, "java_version": {"type": "string"}, "jvm_impl": {"type": "string"}, "os": {"type": "string"}, "archi...
{"vendor" : "sapmachine", "filename" : "sapmachine-jdk-11.0.13-ea.8_linux-ppc64le_bin.tar.gz", "release_type" : "ea", "version" : "11.0.13-ea.8", "java_version" : "11.0.13-ea.8", "jvm_impl" : "hotspot", "os" : "linux", "architecture" : "ppc64le", "file_type" : "tar.gz", "image_type" : "jdk", "features" : [], "url" : "h...
json_instruct
{"type": "object", "properties": {"vendor": {"type": "string"}, "filename": {"type": "string"}, "release_type": {"type": "string"}, "version": {"type": "string"}, "java_version": {"type": "string"}, "jvm_impl": {"type": "string"}, "os": {"type": "string"}, "architecture": {"type": "string"}, "file_type": {"type": "stri...
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"\uc758\uc548\uc811\uc218\uc815\ubcf4": {"type": "object", "properties": {"\uc758\uc548\ubc88\ud638": {"type": "array", "items": {"type": "string"}}, "\uc81c\uc548\uc77c\uc790": {"type": "array", "items": {"type": "...
{"\uc758\uc548\uc811\uc218\uc815\ubcf4" : {"\uc758\uc548\ubc88\ud638" : ["1909950"], "\uc81c\uc548\uc77c\uc790" : ["2014-03-31"], "\uc81c\uc548\uc790" : ["\ucd5c\uacbd\ud658\uc758\uc6d0\u318d\uc804\ubcd1\ud5cc\uc758\uc6d0\uc678284\uc778"], "\ubb38\uc11c" : ["\uc758\uc548\uc6d0\ubb38"], "\uc81c\uc548\ud68c\uae30" : ["\u...
json_instruct
{"type": "object", "properties": {"\uc758\uc548\uc811\uc218\uc815\ubcf4": {"type": "object", "properties": {"\uc758\uc548\ubc88\ud638": {"type": "array", "items": {"type": "string"}}, "\uc81c\uc548\uc77c\uc790": {"type": "array", "items": {"type": "string"}}, "\uc81c\uc548\uc790": {"type": "array", "items": {"type": "s...
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"name": {"type": "string"}, "abv": {"type": "number"}, "ibu": {"type": "number"}, "srm": {"type": "number"}, "upc": {"type": "integer"}, "type": {"type": "string"}, "brewery_id": {"type": "string"}, "updated": {"typ...
{"name" : "Madrugada Obscura", "abv" : 8.1, "ibu" : 0.0, "srm" : 0.0, "upc" : 0, "type" : "beer", "brewery_id" : "jolly_pumpkin_artisan_ales", "updated" : "2010-07-22 20:00:20", "description" : "A Belgian inspired stout that is as dark as a moonless midnight, brimming of roasted malts and bitter hops. It will keep you ...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "abv": {"type": "number"}, "ibu": {"type": "number"}, "srm": {"type": "number"}, "upc": {"type": "integer"}, "type": {"type": "string"}, "brewery_id": {"type": "string"}, "updated": {"type": "string"}, "description": {"type": "string"}, "style": {"type": "st...
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"data": {"type": "object", "properties": {"id": {"type": "integer"}, "title": {"type": "string"}, "primoId": {"type": "string"}, "slug": {"type": "string"}, "shortcode": {"type": "string"}, "imageUrl": {"type": "str...
{"data" : {"id" : 29650, "title" : "Miss P. Farman", "primoId" : "ADLIB110041786", "slug" : "adlib110041786", "shortcode" : "", "imageUrl" : "https://dxlab.sl.nsw.gov.au/images-newselfwales/selfie1525329785738.jpg", "content" : "interiors, portraits, girls", "imageType" : "portrait", "date" : "2018-05-03 06:43:05", "da...
json_instruct
{"type": "object", "properties": {"data": {"type": "object", "properties": {"id": {"type": "integer"}, "title": {"type": "string"}, "primoId": {"type": "string"}, "slug": {"type": "string"}, "shortcode": {"type": "string"}, "imageUrl": {"type": "string"}, "content": {"type": "string"}, "imageType": {"type": "string"}, ...
Generate sample JSON data that conforms to the following schema definition: {"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-sche...
[{"year" : 1948, "sex" : "F", "n" : 5, "prop" : 2.87e-06}, {"year" : 1957, "sex" : "F", "n" : 5, "prop" : 2.38e-06}, {"year" : 1962, "sex" : "F", "n" : 5, "prop" : 2.47e-06}, {"year" : 1981, "sex" : "F", "n" : 7, "prop" : 3.91e-06}, {"year" : 1982, "sex" : "F", "n" : 6, "prop" : 3.31e-06}, {"year" : 1983, "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#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"canScale": {"type": "boolean"}, "canPosition": {"type": "boolean"}, "canEditSource": {"type": "boolean"}, "gizmo": {"type": "object", "properties": {"title": {"type": "string"}, "description": {"type": "string"}, "ic...
{"canScale" : true, "canPosition" : true, "canEditSource" : true, "gizmo" : {"title" : "Micro copy-heading", "description" : "small call to action / attention that acts as a heading too", "icon" : "icons:android", "color" : "green", "groups" : ["Copy"], "handles" : [{"type" : "todo:read-the-docs-for-usage"}], "meta" : ...
json_instruct
{"type": "object", "properties": {"canScale": {"type": "boolean"}, "canPosition": {"type": "boolean"}, "canEditSource": {"type": "boolean"}, "gizmo": {"type": "object", "properties": {"title": {"type": "string"}, "description": {"type": "string"}, "icon": {"type": "string"}, "color": {"type": "string"}, "groups": {"typ...
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"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}}, "required": ["star...
{"name" : "bundle-browserify", "version" : "1.0.0", "description" : "Bundle js-ipfs-http-client with Browserify", "main" : "index.js", "scripts" : {"start" : "browserify index.js > bundle.js && http-server -a 127.0.0.1 -p 8888"}, "keywords" : [], "author" : "Friedel Ziegelmayer", "license" : "MIT", "devDependencies" : ...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}}, "required": ["start"]}, "keywords": {"type": "array", "items": {}}, "author": {"type": "s...
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"baseObjects": {"type": "array", "items": {"type": "string"}}, "returnObjects": {"type": "array", "items": {"type": "string"}}, "callbackArgs": {"type": "array", "items": {"type": "string"}}}, "required": ["baseObject...
{"baseObjects" : ["[\" p\",59,\"O\",100]", "[\" p\",59,\"O\",100]", "[\" p\",59,\"O\",100]", "[\" p\",59,\"O\",100]"], "returnObjects" : ["\"Error\"", "\"Error\"", "\" pNaNNaNNaN\"", "\"Error\""], "callbackArgs" : ["{\"0\":\" p\",\"1\":59,\"2\":1,\"3\":[\" p\",59,\"O\",100]}", "{\"0\":\" pNaN\",\"1\":\"O\",\"2\":2,\"3\...
json_instruct
{"type": "object", "properties": {"baseObjects": {"type": "array", "items": {"type": "string"}}, "returnObjects": {"type": "array", "items": {"type": "string"}}, "callbackArgs": {"type": "array", "items": {"type": "string"}}}, "required": ["baseObjects", "returnObjects", "callbackArgs"], "$schema": "http://json-schema....
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"title": {"type": "string"}, "description": {"type": "string"}, "author": {"type": "string"}, "language": {"type": "string"}, "plugins": {"type": "array", "items": {"type": "string"}}, "pluginsConfig": {"type": "object", "prope...
{"title" : "SPA \u5bcc\u5e94\u7528\u5f00\u53d1", "description" : "SPA \u5bcc\u5e94\u7528\u5f00\u53d1\u8bfe\u7a0b\u8d44\u6599", "author" : "\u738b\u9876", "language" : "zh-hans", "plugins" : ["-lunr", "-search", "-highlight", "-sharing", "bsz", "gtalk"], "pluginsConfig" : {"bsz" : {"copyright" : "2018&nbsp;-&nbsp;<span ...
json_instruct
{"type": "object", "properties": {"title": {"type": "string"}, "description": {"type": "string"}, "author": {"type": "string"}, "language": {"type": "string"}, "plugins": {"type": "array", "items": {"type": "string"}}, "pluginsConfig": {"type": "object", "properties": {"bsz": {"type": "object", "properties": {"copyrigh...
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "bin": {"type": "object", "properties": {"git-jc": {"type": "string"}}, "required": ["git-jc"]}, "description": {"type": "string"}, "main": {"type": "string...
{"name" : "git-jira-cli", "version" : "0.1.0", "bin" : {"git-jc" : "bin/git-jira"}, "description" : "", "main" : "index.js", "scripts" : {"test" : "echo \"Error: no test specified\" && exit 1"}, "keywords" : [], "author" : "", "license" : "ISC", "dependencies" : {"execa" : "^0.7.0", "git-branch" : "^1.0.0", "yargs" : "...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "bin": {"type": "object", "properties": {"git-jc": {"type": "string"}}, "required": ["git-jc"]}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "stri...
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"COIII": {"type": "string"}, "COXIII": {"type": "string"}, "MTCO3": {"type": "string"}, "Cytochrome c oxidase polypeptide III": {"type": "string"}, "O47709": {"type": "string"}, "COX3_GAZLE": {"type": "string"}, "C...
{"COIII" : "O47709", "COXIII" : "O47709", "MTCO3" : "O47709", "Cytochrome c oxidase polypeptide III" : "O47709", "O47709" : "O47709", "COX3_GAZLE" : "O47709", "Cytochrome c oxidase subunit 3" : "O47709", "MT-CO3" : "O47709"}
json_instruct
{"type": "object", "properties": {"COIII": {"type": "string"}, "COXIII": {"type": "string"}, "MTCO3": {"type": "string"}, "Cytochrome c oxidase polypeptide III": {"type": "string"}, "O47709": {"type": "string"}, "COX3_GAZLE": {"type": "string"}, "Cytochrome c oxidase subunit 3": {"type": "string"}, "MT-CO3": {"type": "...
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"expireTime": {"type": "integer"}, "key": {"type": "string"}, "val": {"type": "string"}}, "required": ["expireTime", "key", "val"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"expireTime" : 9007200884883494000, "key" : "/static/817bc40442b38b1928e4c01d97eaf83d/a41d1/charles-deluvio-695732-unsplash.jpg", "val" : "d9021bce871cb5bc8aa53a45dfaf2496"}
json_instruct
{"type": "object", "properties": {"expireTime": {"type": "integer"}, "key": {"type": "string"}, "val": {"type": "string"}}, "required": ["expireTime", "key", "val"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"appid": {"type": "integer"}, "name": {"type": "string"}, "windows": {"type": "boolean"}, "mac": {"type": "boolean"}, "linux": {"type": "boolean"}, "early_access": {"type": "boolean"}, "lookup_time": {"type": "inte...
{"appid" : 378630, "name" : "Shadows on the Vatican - Act II: Wrath", "windows" : true, "mac" : false, "linux" : false, "early_access" : false, "lookup_time" : 1490984439}
json_instruct
{"type": "object", "properties": {"appid": {"type": "integer"}, "name": {"type": "string"}, "windows": {"type": "boolean"}, "mac": {"type": "boolean"}, "linux": {"type": "boolean"}, "early_access": {"type": "boolean"}, "lookup_time": {"type": "integer"}}, "required": ["appid", "name", "windows", "mac", "linux", "early_...
Create an example JSON object that satisfies this 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" : "360827109001", "text" : "\u79be\u6e90\u5c45\u59d4\u4f1a"}, {"id" : "360827109200", "text" : "\u79be\u6e90\u6751\u59d4\u4f1a"}, {"id" : "360827109201", "text" : "\u5bcc\u6eaa\u6751\u59d4\u4f1a"}, {"id" : "360827109202", "text" : "\u4e09\u6eaa\u6751\u59d4\u4f1a"}, {"id" : "360827109203", "text" : "\u5c0f\u9ec4\...
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 a JSON structure that matches this schema definition: {"type": "object", "properties": {"replace": {"type": "boolean"}, "values": {"type": "array", "items": {"type": "string"}}}, "required": ["replace", "values"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"replace" : false, "values" : ["#forge:magma", "#tconstruct:blood", "#tconstruct:molten_ender", "#tconstruct:slime"]}
json_instruct
{"type": "object", "properties": {"replace": {"type": "boolean"}, "values": {"type": "array", "items": {"type": "string"}}}, "required": ["replace", "values"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"name": {"type": "string"}, "title": {"type": "string"}, "description": {"type": "string"}, "version": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "object", "properties"...
{"name" : "fijs", "title" : "Flight Indicators JS", "description" : "This module allows you to display high quality flight indicators using html, css and SVG images.", "version" : "1.0.0", "keywords" : ["flight", "indicator", "artificial", "horizon", "instrument", "gauge", "turn", "altitude", "attitude", "monitoring", ...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "title": {"type": "string"}, "description": {"type": "string"}, "version": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "object", "properties": {"name": {"type": "string"}, "url": {"type": "string"}}, "re...
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"type": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "number"}}}, "required": ["type", "coordinates"]}, "properties": {"type": "o...
{"type" : "Feature", "geometry" : {"type" : "Point", "coordinates" : [-1.916381, 52.68268]}, "properties" : {"site-address" : "Former Greyhound Public House, Boney Hay Road, Burntwood", "site-plan-url" : "http://lichfielddc.maps.arcgis.com/home/webmap/viewer.html?webmap=f95b5e5ecb4d4a938a89f64a5344eaef", "notes" : "Dev...
json_instruct
{"type": "object", "properties": {"type": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "number"}}}, "required": ["type", "coordinates"]}, "properties": {"type": "object", "properties": {"site-address": {"type": "string"}...
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"tab": {"type": "array", "items": {"type": "object", "properties": {"buttons": {"type": "array", "items": {"type": "object", "properties": {"action": {"type": "string"}, "label": {"type": "string"}}, "required": ["ac...
{"tab" : [{"buttons" : [{"action" : "\\n", "label" : "\u6c7a\u5b9a"}, {"action" : "\\t", "label" : "\u30bf\u30d6"}], "label" : "\u30e1\u30a4\u30f3"}, {"buttons" : [{"action" : "/beckon\\n", "label" : "\u624b\u62db\u304d"}, {"action" : "/bow\\n", "label" : "\u304a\u8f9e\u5100"}], "label" : "\u30a8\u30e2\u30fc\u30c8"}]}
json_instruct
{"type": "object", "properties": {"tab": {"type": "array", "items": {"type": "object", "properties": {"buttons": {"type": "array", "items": {"type": "object", "properties": {"action": {"type": "string"}, "label": {"type": "string"}}, "required": ["action", "label"]}}, "label": {"type": "string"}}, "required": ["buttons...
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"scripts": {"type": "object", "properties": {"prewatch": {"type": "string"}, "watch": {"type": "string"}, "bower": {"type": "string"}, "pulp": {"type": "string"}, "surge": {"type": "string"}, "parcel": {"type": ...
{"scripts" : {"prewatch" : "pulp --watch build &", "watch" : "parcel serve --hmr-port 44332 src/index.html", "bower" : "bower", "pulp" : "pulp", "surge" : "surge", "parcel" : "parcel", "test" : "pulp test", "test:watch" : "pulp --watch test"}, "devDependencies" : {"bower" : "^1.8.8", "bs-platform" : "^4.0.18", "bsb-js"...
json_instruct
{"type": "object", "properties": {"scripts": {"type": "object", "properties": {"prewatch": {"type": "string"}, "watch": {"type": "string"}, "bower": {"type": "string"}, "pulp": {"type": "string"}, "surge": {"type": "string"}, "parcel": {"type": "string"}, "test": {"type": "string"}, "test:watch": {"type": "string"}}, "...
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"900348498": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900348499": {"type": "object", "properties": {"...
{"900348498" : {"nama" : "TPS 1", "dapil" : [3306, 13309, 2330702]}, "900348499" : {"nama" : "TPS 2", "dapil" : [3306, 13309, 2330702]}, "900348500" : {"nama" : "TPS 3", "dapil" : [3306, 13309, 2330702]}, "900348501" : {"nama" : "TPS 4", "dapil" : [3306, 13309, 2330702]}, "900348502" : {"nama" : "TPS 5", "dapil" : [330...
json_instruct
{"type": "object", "properties": {"900348498": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900348499": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": ...
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"type": {"type": "string"}, "id": {"type": "string"}, "properties": {"type": "object", "properties": {"amenity": {"type": "string"}, "name": {"type": "string"}, "vending": {"type": "string"}, "id": {"type": "string"}}, "required"...
{"type" : "Feature", "id" : "node/4057341521", "properties" : {"amenity" : "vending_machine", "name" : "Wurst- und Hausschlachterei", "vending" : "meat", "id" : "node/4057341521"}, "geometry" : {"type" : "Point", "coordinates" : [9.8078899, 53.1169051]}}
json_instruct
{"type": "object", "properties": {"type": {"type": "string"}, "id": {"type": "string"}, "properties": {"type": "object", "properties": {"amenity": {"type": "string"}, "name": {"type": "string"}, "vending": {"type": "string"}, "id": {"type": "string"}}, "required": ["amenity", "name", "vending", "id"]}, "geometry": {"ty...
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"data": {"type": "object", "properties": {"site": {"type": "object", "properties": {"siteMetadata": {"type": "object", "properties": {"defaultTitle": {"type": "string"}, "titleTemplate": {"type": "string"}, "defaultDescription"...
{"data" : {"site" : {"siteMetadata" : {"defaultTitle" : "\u9e7f\u5150\u5cf6\u30aa\u30fc\u30c0\u30fc\u30b9\u30fc\u30c4", "titleTemplate" : "%s | #IL:MALE", "defaultDescription" : "\u9e7f\u5150\u5cf6\u770c\u9e7f\u5150\u5cf6\u5e02\u306e\u51fa\u5f35\u8a2a\u554f\u3092\u30e1\u30a4\u30f3\u306b\u3057\u305f\u5b89\u3044\u30aa\u3...
json_instruct
{"type": "object", "properties": {"data": {"type": "object", "properties": {"site": {"type": "object", "properties": {"siteMetadata": {"type": "object", "properties": {"defaultTitle": {"type": "string"}, "titleTemplate": {"type": "string"}, "defaultDescription": {"type": "string"}, "siteUrl": {"type": "string"}, "defau...
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-mg2r-4rx2-mxx6", "modified" : "2022-05-02T03:26:37Z", "published" : "2022-05-02T03:26:37Z", "aliases" : ["CVE-2009-1588"], "details" : "Cross-site scripting (XSS) vulnerability in CGI RESCUE MiniBBS 8t before 8.95t, 8 before 8.95, 9 before 9.08, and 10 before 10.32 allows remot...
json_instruct
{"type": "object", "properties": {"schema_version": {"type": "string"}, "id": {"type": "string"}, "modified": {"type": "string"}, "published": {"type": "string"}, "aliases": {"type": "array", "items": {"type": "string"}}, "details": {"type": "string"}, "severity": {"type": "array", "items": {}}, "affected": {"type": "a...
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"id": {"type": "integer"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"src:alt_label": {"type": "string"}, "src:geom": {"type": "string"}, "wof:geomhash": {"type": "string"}, "wof:id": {"type": ...
{"id" : 404414693, "type" : "Feature", "properties" : {"src:alt_label" : "quattroshapes", "src:geom" : "quattroshapes", "wof:geomhash" : "c7f3258a413207282d31659d5d7a69d8", "wof:id" : 404414693, "wof:repo" : "whosonfirst-data-admin-fr"}, "bbox" : [0.61514478229419, 43.10043687271987, 0.65377253949093, 43.14793860506313...
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": {"config": {"type": "object", "properties": {"xFlip": {"type": "boolean"}, "yFlip": {"type": "boolean"}, "zFlip": {"type": "boolean"}}, "required": ["xFlip", "yFlip", "zFlip"]}}, "required": ["config"], "$schema": "htt...
{"config" : {"xFlip" : false, "yFlip" : false, "zFlip" : true}}
json_instruct
{"type": "object", "properties": {"config": {"type": "object", "properties": {"xFlip": {"type": "boolean"}, "yFlip": {"type": "boolean"}, "zFlip": {"type": "boolean"}}, "required": ["xFlip", "yFlip", "zFlip"]}}, "required": ["config"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"index": {"type": "integer"}, "hash": {"type": "integer"}, "artDyeHash": {"type": "integer"}, "redacted": {"type": "boolean"}, "dyeManifestHash": {"type": "integer"}, "blacklisted": {"type": "boolean"}}, "required": ["index", "ha...
{"index" : 7757, "hash" : 2860130270, "artDyeHash" : 2860130270, "redacted" : false, "dyeManifestHash" : 2445324766, "blacklisted" : false}
json_instruct
{"type": "object", "properties": {"index": {"type": "integer"}, "hash": {"type": "integer"}, "artDyeHash": {"type": "integer"}, "redacted": {"type": "boolean"}, "dyeManifestHash": {"type": "integer"}, "blacklisted": {"type": "boolean"}}, "required": ["index", "hash", "artDyeHash", "redacted", "dyeManifestHash", "blackl...
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "lint": {"type": "string"}, "...
{"name" : "range-converter", "version" : "1.0.2", "description" : "Simple range converter", "main" : "index.js", "scripts" : {"test" : "NODE_ENV=test mocha --exit test/*", "lint" : "eslint --fix --ignore-pattern './node_modules/*' .", "coverage" : "NODE_ENV=test nyc --reporter=text --reporter=html --check-coverage --li...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "lint": {"type": "string"}, "coverage": {"type": "string"}}, "required": ["test", "lint", "...
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"pages": {"type": "array", "items": {"type": "string"}}, "window": {"type": "object", "properties": {"backgroundTextStyle": {"type": "string"}, "navigationBarBackgroundColor": {"type": "string"}, "navigationBa...
{"pages" : ["pages/index/index", "pages/category/category"], "window" : {"backgroundTextStyle" : "dark", "navigationBarBackgroundColor" : "#00ff00", "navigationBarTitleText" : "\u6211\u7684\u5c0f\u7a0b\u5e8f", "navigationBarTextStyle" : "white", "enablePullDownRefresh" : true, "backgroundColor" : "#000000"}, "tabBar" :...
json_instruct
{"type": "object", "properties": {"pages": {"type": "array", "items": {"type": "string"}}, "window": {"type": "object", "properties": {"backgroundTextStyle": {"type": "string"}, "navigationBarBackgroundColor": {"type": "string"}, "navigationBarTitleText": {"type": "string"}, "navigationBarTextStyle": {"type": "string"}...
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": {}}}, "required": ["contract", "tool", "st...
{"contract" : "0xb29aa0a90aad10d8807f76ae83d754a133a20ee0", "tool" : "osiris", "start" : 1564619191.0002775, "end" : 1564619194.027967, "duration" : 3.0276894569396973, "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://...
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"@metadata": {"type": "object", "properties": {"authors": {"type": "array", "items": {"type": "string"}}}, "required": ["authors"]}, "wikieditor-toolbar-help-heading-description": {"type": "string"}}, "require...
{"@metadata" : {"authors" : ["Amire80"]}, "wikieditor-toolbar-help-heading-description" : "Descreeption"}
json_instruct
{"type": "object", "properties": {"@metadata": {"type": "object", "properties": {"authors": {"type": "array", "items": {"type": "string"}}}, "required": ["authors"]}, "wikieditor-toolbar-help-heading-description": {"type": "string"}}, "required": ["@metadata", "wikieditor-toolbar-help-heading-description"], "$schema": ...
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"development": {"type": "object", "properties": {"username": {"type": "string"}, "password": {"type": "string"}, "database": {"type": "string"}, "host": {"type": "string"}, "dialect": {"type": "string"}}, "required": ...
{"development" : {"username" : "root", "password" : "", "database" : "adax_db", "host" : "127.0.0.1", "dialect" : "mysql"}, "staging" : {"username" : "admin", "password" : "AyKWf6BPkARjmzUj", "database" : "adax_payment_db", "host" : "payment-gateway-test.cqymopq3dffb.ap-southeast-1.rds.amazonaws.com", "dialect" : "mysq...
json_instruct
{"type": "object", "properties": {"development": {"type": "object", "properties": {"username": {"type": "string"}, "password": {"type": "string"}, "database": {"type": "string"}, "host": {"type": "string"}, "dialect": {"type": "string"}}, "required": ["username", "password", "database", "host", "dialect"]}, "staging": ...
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"actors": {"type": "array", "items": {"type": "string"}}, "countries": {"type": "array", "items": {}}, "enb_end_date": {"type": "string"}, "enb_long_title": {"type": "string"}, "enb_short_title": {"type": "string"}, "enb_start_da...
{"actors" : ["Organization of Petroleum Exporting Countries", "Organisation for Economic Co.operation and Development"], "countries" : [], "enb_end_date" : "11-Dec-03", "enb_long_title" : "Ninth Conference of the Parties to the UN Framework Convention on Climate Change", "enb_short_title" : "UNFCCC COP-9", "enb_start_d...
json_instruct
{"type": "object", "properties": {"actors": {"type": "array", "items": {"type": "string"}}, "countries": {"type": "array", "items": {}}, "enb_end_date": {"type": "string"}, "enb_long_title": {"type": "string"}, "enb_short_title": {"type": "string"}, "enb_start_date": {"type": "string"}, "enb_url": {"type": "string"}, "...
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"id": {"type": "string"}, "district_id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "district_id", "name"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : "9401032001", "district_id" : "9401032", "name" : "SENEGI"}
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#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "SycCategorizeAllUnclassifiedMethodsCommand"}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"version": {"type": "number"}, "people": {"type": "array", "items": {"type": "object", "properties": {"pose_keypoints_2d": {"type": "array", "items": {"type": "number"}}, "face_keypoints_2d": {"type": "array", "ite...
{"version" : 1.2, "people" : [{"pose_keypoints_2d" : [1058.67, 220.597, 1, 1089.95, 241.306, 1, 1080.02, 241.273, 1, 1085.67, 293.249, 1, 289.215, 332.097, 0, 1103.78, 240.261, 1, 1116.02, 293.842, 1, 1101.99, 342.744, 1, 1071.4, 336.62, 1, 1070.61, 400.702, 1, 1073.08, 468.181, 1, 1087.4, 336.967, 1, 1105.49, 401.163,...
json_instruct
{"type": "object", "properties": {"version": {"type": "number"}, "people": {"type": "array", "items": {"type": "object", "properties": {"pose_keypoints_2d": {"type": "array", "items": {"type": "number"}}, "face_keypoints_2d": {"type": "array", "items": {}}, "hand_left_keypoints_2d": {"type": "array", "items": {}}, "han...
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" : "3673010010", "district_id" : "3673010", "name" : "CILAKU"}
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#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"}
["cdn-server", "vue-sui-demo"]
json_instruct
{"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "version": {"type": "string"}, "homepage": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type"...
{"name" : "screenChunk", "description" : "Another Webpack/React/Flux starter kit.", "version" : "0.0.7", "homepage" : "https://github.com/darul75/web-react", "repository" : {"type" : "git", "url" : "https://github.com/darul75/web-react.git"}, "bin" : {"videostream" : "./bin/video-streamer.js"}, "scripts" : {"test" : "e...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "version": {"type": "string"}, "homepage": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "bin": {"type": "object", ...
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"@metadata": {"type": "object", "properties": {"authors": {"type": "array", "items": {"type": "string"}}}, "required": ["authors"]}, "button_next": {"type": "string"}, "button_wikilink": {"type": "string"}, "category_filter_pla...
{"@metadata" : {"authors" : ["Eleassar", "HairyFotr", "Pickle12"]}, "button_next" : "Naprej!", "button_wikilink" : "Razumem!", "category_filter_placeholder" : "Kaj te zanima?", "edits" : "Urejanja", "github_link_title" : "Hej! Moj vir je na GitHub-u!", "in_page" : "Na strani %s:", "instructions_details" : "Kliknite %s,...
json_instruct
{"type": "object", "properties": {"@metadata": {"type": "object", "properties": {"authors": {"type": "array", "items": {"type": "string"}}}, "required": ["authors"]}, "button_next": {"type": "string"}, "button_wikilink": {"type": "string"}, "category_filter_placeholder": {"type": "string"}, "edits": {"type": "string"},...
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": {"test": {"type": "string"}}, "required": ["test"]...
{"name" : "screwdriver-raptor", "version" : "1.0.0", "description" : "Screwdriver load testing library", "main" : "index.js", "scripts" : {"test" : "echo \"Error: no test specified\" && exit 1"}, "repository" : {"type" : "git", "url" : "git+https://github.com/screwdriver-cd/raptor.git"}, "author" : "Pritam Paul <pritam...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "repository": {"type": "object", "properties": {"type": {"type": "s...
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "description": {"type": "string"}, "user": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "email": {"type": "string"}, "paypal_...
{"id" : 119278, "name" : "fastmail-calendar-squared", "description" : "Move towards a more all-squared calendar like Google Calendar", "user" : {"id" : 300059, "name" : "cwill747", "email" : "redacted", "paypal_email" : null, "homepage" : null, "about" : null, "license" : null}, "updated" : "2015-09-29T19:10:57.000Z", ...
json_instruct
{"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "description": {"type": "string"}, "user": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "email": {"type": "string"}, "paypal_email": {"type": "null"}, "homepage": {"type": "null"}, "about...
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"t": {"type": "string"}, "h": {"type": "array", "items": {"type": "object", "properties": {"d": {"type": "array", "items": {"type": "object", "properties": {"f": {"type": "string"}, "e": {"type": "array", "items": {"type": "strin...
{"t" : "pafakong", "h" : [{"d" : [{"f" : "\u7a2e\u8707\u87f9\u82b1\uff0c\u7a2e\u6587\u6b8a\u862d\u3002", "e" : ["\ufff9`Pa~`fakong~ `to~ `ngangan~ `no~ `omah~.\ufffa\ufffb\u7a2e\u6587\u6b8a\u862d\u6210\u70ba\u5730\u754c\u3002"]}]}], "stem" : "fakong"}
json_instruct
{"type": "object", "properties": {"t": {"type": "string"}, "h": {"type": "array", "items": {"type": "object", "properties": {"d": {"type": "array", "items": {"type": "object", "properties": {"f": {"type": "string"}, "e": {"type": "array", "items": {"type": "string"}}}, "required": ["f", "e"]}}}, "required": ["d"]}}, "s...
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" : "500238210200", "text" : "\u83ca\u82b1\u6751\u6751\u6c11\u59d4\u5458\u4f1a"}, {"id" : "500238210201", "text" : "\u9ec4\u6728\u6751\u6751\u6c11\u59d4\u5458\u4f1a"}, {"id" : "500238210202", "text" : "\u9ec4\u82b1\u6751\u6751\u6c11\u59d4\u5458\u4f1a"}, {"id" : "500238210203", "text" : "\u91d1\u6842\u6751\u6751\u6...
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#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"h": {"type": "string"}, "c": {"type": "object", "properties": {"0": {"type": "boolean"}}, "required": ["0"]}}, "required": ["h", "c"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"h" : "9b6a85300f3090e88fa6", "c" : {"0" : true}}
json_instruct
{"type": "object", "properties": {"h": {"type": "string"}, "c": {"type": "object", "properties": {"0": {"type": "boolean"}}, "required": ["0"]}}, "required": ["h", "c"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"parent": {"type": "string"}}, "required": ["parent"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"parent" : "simple:block/copper_ore"}
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": {"request": {"type": "object", "properties": {"name": {"type": "string"}, "correlationID": {"type": "integer"}, "parameters": {"type": "object", "properties": {"cancelID": {"type": "integer"}, "functionID": {"type": "integer"}},...
{"request" : {"name" : "CancelInteraction", "correlationID" : 554, "parameters" : {"cancelID" : 6052, "functionID" : 12}}, "response" : {"name" : "CancelInteractionResponse", "correlationID" : 554}}
json_instruct
{"type": "object", "properties": {"request": {"type": "object", "properties": {"name": {"type": "string"}, "correlationID": {"type": "integer"}, "parameters": {"type": "object", "properties": {"cancelID": {"type": "integer"}, "functionID": {"type": "integer"}}, "required": ["cancelID", "functionID"]}}, "required": ["na...
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"feedstocks": {"type": "array", "items": {"type": "string"}}}, "required": ["feedstocks"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"feedstocks" : ["feature_engine"]}
json_instruct
{"type": "object", "properties": {"feedstocks": {"type": "array", "items": {"type": "string"}}}, "required": ["feedstocks"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "author": {"type": "string"}, "summary": {"type": "string"}, "license": {"type": "string"}, "source": {"type": "string"}, "dependencies": {"type": "array", "items": {}}...
{"name" : "gernox-bareos", "version" : "0.1.0", "author" : "gernox", "summary" : "", "license" : "Apache-2.0", "source" : "", "dependencies" : [], "operatingsystem_support" : [{"operatingsystem" : "Debian", "operatingsystemrelease" : ["9"]}, {"operatingsystem" : "Ubuntu", "operatingsystemrelease" : ["18.04"]}], "requir...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "author": {"type": "string"}, "summary": {"type": "string"}, "license": {"type": "string"}, "source": {"type": "string"}, "dependencies": {"type": "array", "items": {}}, "operatingsystem_support": {"type": "array", "items": {"t...
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"replace": {"type": "boolean"}, "values": {"type": "array", "items": {"type": "string"}}}, "required": ["replace", "values"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"replace" : false, "values" : ["oreganized:yellow_crystal_glass_pane"]}
json_instruct
{"type": "object", "properties": {"replace": {"type": "boolean"}, "values": {"type": "array", "items": {"type": "string"}}}, "required": ["replace", "values"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"videoUploadOnPasses": {"type": "boolean"}, "chromeWebSecurity": {"type": "boolean"}, "testFiles": {"type": "array", "items": {"type": "string"}}}, "required": ["videoUploadOnPasses", "chromeWebSecurity", "tes...
{"videoUploadOnPasses" : false, "chromeWebSecurity" : false, "testFiles" : ["never.js", "functions.js", "static.js"]}
json_instruct
{"type": "object", "properties": {"videoUploadOnPasses": {"type": "boolean"}, "chromeWebSecurity": {"type": "boolean"}, "testFiles": {"type": "array", "items": {"type": "string"}}}, "required": ["videoUploadOnPasses", "chromeWebSecurity", "testFiles"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"text": {"type": "string"}, "user_id": {"type": "integer"}, "screen_name": {"type": "string"}, "id": {"type": "integer"}, "bid": {"type": "string"}, "article_url": {"type": "string"}, "pics": {"type": "string"},...
{"text" : "#\u6297\u6218\u88c5\u5907#\u610f\u5927\u5229\u9020MAS431\u578b\u9c7c\u96f7\u5feb\u8247\uff08\u4e0b\uff09\uff1a\u5e7f\u4e1c\u6d77\u519b\u5c062\u8258MAS\u9c7c\u96f7\u8247\u547d\u540d\u4e3a\u201c\u4e09\u53f7\u96f7\u8247\u201d\u548c\u201c\u56db\u53f7\u96f7\u8247\u201d\uff0c\u96c7\u4f632\u540d\u610f\u5927\u5229\u...
json_instruct
{"type": "object", "properties": {"text": {"type": "string"}, "user_id": {"type": "integer"}, "screen_name": {"type": "string"}, "id": {"type": "integer"}, "bid": {"type": "string"}, "article_url": {"type": "string"}, "pics": {"type": "string"}, "video_url": {"type": "string"}, "location": {"type": "string"}, "created_...
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"nom": {"type": "string"}, "dpt": {"type": "string"}, "inscrits": {"type": "integer"}, "abs": {"type": "integer"}, "votants": {"type": "integer"}, "blancs": {"type": "integer"}, "nuls": {"type": "integer"}, "e...
{"nom" : "Saint-Aubin-des-Pr\u00e9aux", "dpt" : "Manche", "inscrits" : 362, "abs" : 41, "votants" : 321, "blancs" : 6, "nuls" : 4, "exp" : 311, "res" : [{"panneau" : "3", "voix" : 94}, {"panneau" : "11", "voix" : 73}, {"panneau" : "2", "voix" : 52}, {"panneau" : "9", "voix" : 36}, {"panneau" : "4", "voix" : 24}, {"pann...
json_instruct
{"type": "object", "properties": {"nom": {"type": "string"}, "dpt": {"type": "string"}, "inscrits": {"type": "integer"}, "abs": {"type": "integer"}, "votants": {"type": "integer"}, "blancs": {"type": "integer"}, "nuls": {"type": "integer"}, "exp": {"type": "integer"}, "res": {"type": "array", "items": {"type": "object"...
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"path": {"type": "string"}}, "required": ["path"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"path" : "http://upload.p2pguancha.com/article/2016/03/201603221803252KvPgXdjA7.jpg"}
json_instruct
{"type": "object", "properties": {"path": {"type": "string"}}, "required": ["path"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"Time": {"type": "string"}, "Temp": {"type": "number"}, "RelHum": {"type": "integer"}, "WindSpeed": {"type": "number"}, "WindDir": {"type": "integer"}}, "required": ["Time", "Temp", "RelHum", "WindSpeed", "WindDir"], "$schem...
{"Time" : "2020-10-24T04:00:00Z", "Temp" : 19.6, "RelHum" : 38, "WindSpeed" : 1.7, "WindDir" : 359}
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#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"site_name": {"type": "string"}, "contact_email": {"type": "string"}, "seo_description": {"type": "string"}, "seo_keyword": {"type": "string"}}, "required": ["site_name", "contact_email", "seo_description", "seo...
{"site_name" : "CharkBBS - Powered by LaraBBS", "contact_email" : "chark@qq.com", "seo_description" : "CharkBBS \u4ea4\u6d41\u8bba\u575b", "seo_keyword" : "\u8bba\u575b,\u793e\u533a,\u5f00\u53d1\u8005"}
json_instruct
{"type": "object", "properties": {"site_name": {"type": "string"}, "contact_email": {"type": "string"}, "seo_description": {"type": "string"}, "seo_keyword": {"type": "string"}}, "required": ["site_name", "contact_email", "seo_description", "seo_keyword"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"411671011": {"type": "string"}, "411671012": {"type": "string"}}, "required": ["411671011", "411671012"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"411671011" : "\u592a\u660a\u8def\u8857\u9053", "411671012" : "\u6dee\u6cb3\u8def\u8857\u9053"}
json_instruct
{"type": "object", "properties": {"411671011": {"type": "string"}, "411671012": {"type": "string"}}, "required": ["411671011", "411671012"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"entities": {"type": "array", "items": {"type": "object", "properties": {"class": {"type": "array", "items": {"type": "string"}}, "rel": {"type": "array", "items": {"type": "string"}}, "href": {"type": "string"}}, "...
{"entities" : [{"class" : ["enrollment"], "rel" : ["https://api.brightspace.com/rels/user-enrollment"], "href" : "../data/base/enrollment.json"}, {"class" : ["enrollment"], "rel" : ["https://api.brightspace.com/rels/user-enrollment"], "href" : "../data/base/enrollment.json"}], "links" : [{"rel" : ["self"], "href" : ".....
json_instruct
{"type": "object", "properties": {"entities": {"type": "array", "items": {"type": "object", "properties": {"class": {"type": "array", "items": {"type": "string"}}, "rel": {"type": "array", "items": {"type": "string"}}, "href": {"type": "string"}}, "required": ["class", "rel", "href"]}}, "links": {"type": "array", "item...
Please provide a valid JSON object following this schema: {"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" : "1003", "provinceId" : "74", "regencyId" : "02", "districtId" : "21", "name" : "Laosu"}
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#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"name": {"type": "string"}, "path": {"type": "string"}, "state": {"type": "string"}, "version": {"type": "string"}, "organization": {"type": "string"}, "clientOrganizations": {"type": "array", "items": {"type": "string"}}}, "re...
{"name" : "Samples OrgsAndApps AllOrgs", "path" : "/samples/orgsAndApps/AllOrgs/v1/api", "state" : "published", "version" : "1.0.0", "organization" : "API Development", "clientOrganizations" : ["ALL"]}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "path": {"type": "string"}, "state": {"type": "string"}, "version": {"type": "string"}, "organization": {"type": "string"}, "clientOrganizations": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "path", "state", "version", "organization...
Construct a JSON document that adheres to this schema specification: {"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" : 404369803, "type" : "Feature", "properties" : {"src:alt_label" : "quattroshapes", "src:geom" : "quattroshapes", "wof:geomhash" : "fdafecb804b498898267ea528dd9030f", "wof:id" : 404369803, "wof:repo" : "whosonfirst-data-admin-fr"}, "bbox" : [5.22719456249772, 43.40107871309571, 5.27493520975186, 43.42308599959287...
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": ["...