input
stringlengths
159
2.05k
output
stringlengths
5
10.3k
task
stringclasses
1 value
schema
stringlengths
100
1.99k
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"Highlighter": {"type": "object", "properties": {"Sample": {"type": "array", "items": {"type": "string"}}, "MainRules": {"type": "object", "properties": {"Attributes": {"type": "object", "properties": {"Element": {"t...
{"Highlighter" : {"Sample" : ["Simple text file"], "MainRules" : {"Attributes" : {"Element" : "Editor"}}}}
json_instruct
{"type": "object", "properties": {"Highlighter": {"type": "object", "properties": {"Sample": {"type": "array", "items": {"type": "string"}}, "MainRules": {"type": "object", "properties": {"Attributes": {"type": "object", "properties": {"Element": {"type": "string"}}, "required": ["Element"]}}, "required": ["Attributes"...
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"name": {"type": "string"}, "about_url": {"type": "string"}, "license_url": {"type": "string"}, "author": {"type": "string"}, "assets": {"type": "object", "properties": {}, "required": []}, "component": {"type": "boo...
{"name" : "discourse-elementary-layout", "about_url" : "", "license_url" : "https://github.com/MeghnaAJ/discourse-elementary-layout/blob/master/LICENSE", "author" : "Meghna", "assets" : {}, "component" : true}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "about_url": {"type": "string"}, "license_url": {"type": "string"}, "author": {"type": "string"}, "assets": {"type": "object", "properties": {}, "required": []}, "component": {"type": "boolean"}}, "required": ["name", "about_url", "license_url", "author", "a...
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"coord": {"type": "object", "properties": {"lon": {"type": "number"}, "lat": {"type": "number"}}, "required": ["lon", "lat"]}, "weather": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "...
{"coord" : {"lon" : -91.53, "lat" : 41.66}, "weather" : [{"id" : 800, "main" : "Clear", "description" : "clear sky", "icon" : "01d"}], "base" : "stations", "main" : {"temp" : 22.34, "feels_like" : 21.49, "temp_min" : 21.67, "temp_max" : 23, "pressure" : 1005, "humidity" : 56}, "visibility" : 16093, "wind" : {"speed" : ...
json_instruct
{"type": "object", "properties": {"coord": {"type": "object", "properties": {"lon": {"type": "number"}, "lat": {"type": "number"}}, "required": ["lon", "lat"]}, "weather": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "main": {"type": "string"}, "description": {"type": "string"...
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"name": {"type": "string"}, "fips": {"type": "string"}, "state_code": {"type": "integer"}, "county_code": {"type": "integer"}, "population": {"type": "nu...
{"type" : "Feature", "properties" : {"name" : "Naranjito Municipio", "fips" : "72105", "state_code" : 72, "county_code" : 105, "population" : null, "countrylevel_id" : "fips:72105", "census_data" : {"COUNTYNS" : "01804533", "AFFGEOID" : "0500000US72105", "LSAD" : "13", "ALAND" : 70969183, "AWATER" : 898340}}, "geometry...
json_instruct
{"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"name": {"type": "string"}, "fips": {"type": "string"}, "state_code": {"type": "integer"}, "county_code": {"type": "integer"}, "population": {"type": "null"}, "countrylevel_id": {"type": "string"}, "census_data...
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"latest_version": {"type": "array", "items": {"type": "string"}}, "meta": {"type": "object", "properties": {"description": {"type": "string"}, "homepage": {"type": "string"}, "license": {"type": "string"}}, "req...
{"latest_version" : ["0.3.2"], "meta" : {"description" : "Convert common objects to and from Python strings using ConversionKit", "homepage" : "http://jimmyg.org/work/code/stringconvert/index.html", "license" : "GNU AGPLv3"}, "versions" : {"0.3.0" : {"sha256" : "de535e4a1bc1ff31eff82ff499f57b12cdefd3b4ff40552b26741d03e...
json_instruct
{"type": "object", "properties": {"latest_version": {"type": "array", "items": {"type": "string"}}, "meta": {"type": "object", "properties": {"description": {"type": "string"}, "homepage": {"type": "string"}, "license": {"type": "string"}}, "required": ["description", "homepage", "license"]}, "versions": {"type": "obje...
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "main": {"type": "string"}}, "required": ["name", "version", "main"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "@kanety/jquery-simple-tree", "version" : "0.4.0", "main" : "dist/jquery-simple-tree.js"}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "main": {"type": "string"}}, "required": ["name", "version", "main"], "$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"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"src:alt_label": {"type": "string"}, "src:geom": {"type": "string"}, "wof:geomhash": {"type": "string"}, "...
{"id" : 1125798169, "type" : "Feature", "properties" : {"src:alt_label" : "qs_pg", "src:geom" : "qs_pg", "wof:geomhash" : "a10f5ff3587764834646df0715bd647b", "wof:id" : 1125798169, "wof:repo" : "whosonfirst-data-admin-fr"}, "bbox" : [5.42815, 46.32751, 5.42815, 46.32751], "geometry" : {"coordinates" : [5.42815, 46.3275...
json_instruct
{"type": "object", "properties": {"id": {"type": "integer"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"src:alt_label": {"type": "string"}, "src:geom": {"type": "string"}, "wof:geomhash": {"type": "string"}, "wof:id": {"type": "integer"}, "wof:repo": {"type": "string"}}, "required": ["...
Create an example JSON object that satisfies this schema: {"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" : 9007200894520742000, "key" : "/static/f18bce0746b3ecc8ae7b403a7801ac8a/d3f6a/CypressLogo2.png", "val" : "1671053a780bdefb86f5d0e3e98f684e"}
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#"}
Generate sample JSON data that conforms to the following schema definition: {"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": {"ty...
{"\uc758\uc548\uc811\uc218\uc815\ubcf4" : {"\uc758\uc548\ubc88\ud638" : ["050497"], "\uc81c\uc548\uc77c\uc790" : ["1960-09-16"], "\uc81c\uc548\uc790" : ["\ub958\uccad\uc758\uc6d0\uc67814\uc778"], "\ubb38\uc11c" : ["\uc758\uc548\uc6d0\ubb38"], "\uc81c\uc548\ud68c\uae30" : ["\uc81c5\ub300(1960~1961)\uc81c37\ud68c"]}, "\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...
The schema below describes a JSON structure. Generate a valid example: {"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" : [[[-81.01591, 33.998891], [-81.01442, 34.000064], [-81.015364, 34.00069], [-81.014412, 34.001879], [-81.012107, 34.003359], [-81.011861, 34.002262], [-81.007761, 34.004449], [-81.006742, 34.003912], [-81.0065, 34.004606], [-...
json_instruct
{"type": "object", "properties": {"type": {"type": "string"}, "features": {"type": "array", "items": {"type": "object", "properties": {"geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "numbe...
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"stationId": {"type": "integer"}, "stationGroupId": {"type": "integer"}, "name": {"type": "string"}, "lineId": {"type": "integer"}, "zipCode": {"type": "string"}, "pref": {"type": "string"}, "city": {"type": "string"}...
{"stationId" : 1131203, "stationGroupId" : 1131203, "name" : "\u5fa1\u8336\u30ce\u6c34", "lineId" : 11312, "zipCode" : "101-0062", "pref" : "\u6771\u4eac\u90fd", "city" : "\u5343\u4ee3\u7530\u533a", "town" : "\u795e\u7530\u99ff\u6cb3\u53f0", "longitude" : 139.764955, "latitude" : 35.699605, "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...
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"jsc": {"type": "object", "properties": {"parser": {"type": "object", "properties": {"syntax": {"type": "string"}, "tsx": {"type": "boolean"}, "decorators": {"type": "boolean"}, "dynamicImport": {"type": "boolean"}}, "required"...
{"jsc" : {"parser" : {"syntax" : "typescript", "tsx" : false, "decorators" : false, "dynamicImport" : false}, "target" : "es2022"}}
json_instruct
{"type": "object", "properties": {"jsc": {"type": "object", "properties": {"parser": {"type": "object", "properties": {"syntax": {"type": "string"}, "tsx": {"type": "boolean"}, "decorators": {"type": "boolean"}, "dynamicImport": {"type": "boolean"}}, "required": ["syntax", "tsx", "decorators", "dynamicImport"]}, "targe...
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"id": {"type": "string"}, "database": {"type": "string"}, "admin": {"type": "string"}, "key": {"type": "string"}, "batch": {"type": "string"}}, "required": ["id", "database", "admin", "key", "batch"], "$schema": "htt...
{"id" : "passwords", "database" : "database-password", "admin" : "admin-password", "key" : "key", "batch" : "batch"}
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "database": {"type": "string"}, "admin": {"type": "string"}, "key": {"type": "string"}, "batch": {"type": "string"}}, "required": ["id", "database", "admin", "key", "batch"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"DATA_SOURCE_OPENID": {"type": "object", "properties": {"NAME": {"type": "string"}}, "required": ["NAME"]}, "LOGIN": {"type": "object", "properties": {"FIELD_HEADER_ID_TOKEN": {"type": "string"}, "INFO_OID_RED...
{"DATA_SOURCE_OPENID" : {"NAME" : "OpenID SSO Backend"}, "LOGIN" : {"FIELD_HEADER_ID_TOKEN" : "", "INFO_OID_REDIRECT_PENDING" : "Espereu, redirigint al prove\u00efdor d'identitat ..."}}
json_instruct
{"type": "object", "properties": {"DATA_SOURCE_OPENID": {"type": "object", "properties": {"NAME": {"type": "string"}}, "required": ["NAME"]}, "LOGIN": {"type": "object", "properties": {"FIELD_HEADER_ID_TOKEN": {"type": "string"}, "INFO_OID_REDIRECT_PENDING": {"type": "string"}}, "required": ["FIELD_HEADER_ID_TOKEN", "I...
The schema below describes a JSON structure. Generate a valid example: {"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.or...
[{"year" : 1992, "sex" : "M", "n" : 6, "prop" : 2.86e-06}, {"year" : 1993, "sex" : "M", "n" : 5, "prop" : 2.42e-06}, {"year" : 1994, "sex" : "M", "n" : 11, "prop" : 5.4e-06}, {"year" : 1995, "sex" : "M", "n" : 13, "prop" : 6.46e-06}, {"year" : 1996, "sex" : "M", "n" : 10, "prop" : 4.99e-06}, {"year" : 1997, "sex" : "M"...
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#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"flags": {"type": "string"}, "patterns": {"type": "array", "items": {"type": "string"}}}, "required": ["flags", "patterns"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"flags" : "-iE", "patterns" : ["\\.action", "\\.adr", "\\.ascx", "\\.asmx", "\\.axd", "\\.backup", "\\.bak", "\\.bkf", "\\.bkp", "\\.bok", "\\.achee", "\\.cfg", "\\.cfm", "\\.cgi", "\\.cnf", "\\.conf", "\\.config", "\\.crt", "\\.csr", "\\.csv", "\\.dat", "\\.doc", "\\.docx", "\\.eml", "\\.env", "\\.exe", "\\.gz", "\\....
json_instruct
{"type": "object", "properties": {"flags": {"type": "string"}, "patterns": {"type": "array", "items": {"type": "string"}}}, "required": ["flags", "patterns"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "private": {"type": "boolean"}, "dependencies": {"type": "object", "properties": {"antd": {"type": "string"}, "axios": {"type": "string"}, "events": {"type": "string"},...
{"name" : "ui", "version" : "0.1.0", "private" : true, "dependencies" : {"antd" : "^3.2.0", "axios" : "^0.17.1", "events" : "^2.0.0", "immutable" : "3.7.4", "js-cookie" : "^2.2.0", "rc-tween-one" : "^1.7.3", "react" : "^16.2.0", "react-app-rewire-less" : "^2.1.0", "react-dom" : "^16.2.0", "react-scripts" : "1.1.0", "we...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "private": {"type": "boolean"}, "dependencies": {"type": "object", "properties": {"antd": {"type": "string"}, "axios": {"type": "string"}, "events": {"type": "string"}, "immutable": {"type": "string"}, "js-cookie": {"type": "st...
Based on the schema below, produce a valid JSON object: {"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": "integ...
{"nom" : "Balleroy-sur-Dr\u00f4me", "circ" : "5\u00e8me circonscription", "dpt" : "Calvados", "inscrits" : 947, "abs" : 485, "votants" : 462, "blancs" : 9, "nuls" : 0, "exp" : 453, "res" : [{"nuance" : "REM", "nom" : "M. Bertrand BOUYX", "voix" : 152}, {"nuance" : "LR", "nom" : "M. C\u00e9dric NOUVELOT", "voix" : 97}, ...
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"...
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"repoId": {"type": "string"}, "lastSync": {"type": "integer"}}, "required": ["repoId", "lastSync"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"repoId" : "e720af2c-242c-49b0-b978-edf99e6f16cb", "lastSync" : 0}
json_instruct
{"type": "object", "properties": {"repoId": {"type": "string"}, "lastSync": {"type": "integer"}}, "required": ["repoId", "lastSync"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"*": {"type": "object", "properties": {"theme": {"type": "object", "properties": {"sidebar": {"type": "boolean"}}, "required": ["sidebar"]}}, "required": ["theme"]}}, "required": ["*"], "$schema": "http://json...
{"*" : {"theme" : {"sidebar" : false}}}
json_instruct
{"type": "object", "properties": {"*": {"type": "object", "properties": {"theme": {"type": "object", "properties": {"sidebar": {"type": "boolean"}}, "required": ["sidebar"]}}, "required": ["theme"]}}, "required": ["*"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"532530101": {"type": "string"}, "532530102": {"type": "string"}, "532530202": {"type": "string"}, "532530203": {"type": "string"}, "532530204": {"type": "string"}, "532530205": {"type": "string"}, "532530206": {"type": "str...
{"532530101" : "\u91d1\u6cb3\u9547", "532530102" : "\u91d1\u6c34\u6cb3\u9547", "532530202" : "\u94dc\u5382\u4e61", "532530203" : "\u52d0\u62c9\u4e61", "532530204" : "\u8001\u96c6\u5be8\u4e61", "532530205" : "\u8005\u7c73\u62c9\u795c\u4e61", "532530206" : "\u963f\u5f97\u535a\u4e61", "532530207" : "\u6c99\u4f9d\u5761\u4e...
json_instruct
{"type": "object", "properties": {"532530101": {"type": "string"}, "532530102": {"type": "string"}, "532530202": {"type": "string"}, "532530203": {"type": "string"}, "532530204": {"type": "string"}, "532530205": {"type": "string"}, "532530206": {"type": "string"}, "532530207": {"type": "string"}, "532530208": {"type": ...
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"addCreateNote": {"type": "string"}}, "required": ["addCreateNote"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"addCreateNote" : "Please select a note or add a new one."}
json_instruct
{"type": "object", "properties": {"addCreateNote": {"type": "string"}}, "required": ["addCreateNote"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies 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" : "2006", "provinceId" : "11", "regencyId" : "01", "districtId" : "12", "name" : "Blang Baru"}
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "provinceId": {"type": "string"}, "regencyId": {"type": "string"}, "districtId": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "provinceId", "regencyId", "districtId", "name"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"authors": {"type": "object", "properties": {"name": {"type": "string"}, "url": {"type": "string"}}, "required": ["name", "url"]}, "description": {"type": "string"}, "examples": {"type": "array", "items": {"type": "st...
{"authors" : {"name" : "Eugene Gonzalez", "url" : "https://os.mbed.com/users/beanmachine44/"}, "description" : "Same library as tosihisa, but with extensions for SetTemplate, DeleteAllIDs, and SendData.", "examples" : ["https://os.mbed.com/users/beanmachine44/code/GT511C3_demo/", "https://os.mbed.com/users/austinterrel...
json_instruct
{"type": "object", "properties": {"authors": {"type": "object", "properties": {"name": {"type": "string"}, "url": {"type": "string"}}, "required": ["name", "url"]}, "description": {"type": "string"}, "examples": {"type": "array", "items": {"type": "string"}}, "frameworks": {"type": "string"}, "keywords": {"type": "stri...
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["ty...
{"name" : "email-build-system", "version" : "1.0.0", "description" : "", "repository" : {"type" : "", "url" : ""}, "license" : "MIT", "devDependencies" : {"browser-sync" : "^2.11.1", "css-mqpacker" : "^4.0.0", "del" : "^2.2.0", "gulp" : "^3.9.1", "gulp-file-include" : "^0.13.7", "gulp-ftp" : "^1.1.0", "gulp-imagemin" :...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "license": {"type": "string"}, "devDependencies": {"type":...
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"DBHost": {"type": "string"}}, "required": ["DBHost"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"DBHost" : "mongodb+srv://admin:abcd12345@moviedatabase.s44w8.mongodb.net/netflix"}
json_instruct
{"type": "object", "properties": {"DBHost": {"type": "string"}}, "required": ["DBHost"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"RNA polymerase subunit beta": {"type": "string"}, "Transcriptase subunit beta": {"type": "string"}, "RNAP subunit beta": {"type": "string"}, "Q59748": {"type": "string"}, "CISY_RICMA": {"type": "string"}, "Citrate sy...
{"RNA polymerase subunit beta" : "Q9RH43", "Transcriptase subunit beta" : "Q9RH43", "RNAP subunit beta" : "Q9RH43", "Q59748" : "Q59748", "CISY_RICMA" : "Q59748", "Citrate synthase" : "Q59748", "gltA" : "Q59748", "Q9RH43" : "Q9RH43", "RPOB_RICMA" : "Q9RH43", "DNA-directed RNA polymerase subunit beta" : "Q9RH43", "rpoB" ...
json_instruct
{"type": "object", "properties": {"RNA polymerase subunit beta": {"type": "string"}, "Transcriptase subunit beta": {"type": "string"}, "RNAP subunit beta": {"type": "string"}, "Q59748": {"type": "string"}, "CISY_RICMA": {"type": "string"}, "Citrate synthase": {"type": "string"}, "gltA": {"type": "string"}, "Q9RH43": {"...
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"name": {"type": "string"}, "symbol": {"type": "string"}, "logoURI": {"type": "string"}, "decimals": {"type": "integer"}, "address": {"type": "string"}, "chainId": {"type": "integer"}, "tags": {"type": "array", "items": {"type"...
{"name" : "Maniak NFT", "symbol" : "MANIAK", "logoURI" : "https://github.com/OmiCodez/maniaktoken/raw/main/logo.png", "decimals" : 9, "address" : "8yiekaUUidqA8bQ5QuWGNgrSDCnZVf5te6ZykGeY8roa", "chainId" : 101, "tags" : ["utility-token", "NFT"], "extensions" : {"website" : "https://maniak-nft.space", "twitter" : "https...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "symbol": {"type": "string"}, "logoURI": {"type": "string"}, "decimals": {"type": "integer"}, "address": {"type": "string"}, "chainId": {"type": "integer"}, "tags": {"type": "array", "items": {"type": "string"}}, "extensions": {"type": "object", "properties"...
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"/js/app.js": {"type": "string"}, "/css/app.css": {"type": "string"}, "/assets/css/select2.css": {"type": "string"}, "/assets/js/scripts.js": {"type": "string"}}, "required": ["/js/app.js", "/css/app.css", "/assets...
{"/js/app.js" : "/js/app.js", "/css/app.css" : "/css/app.css", "/assets/css/select2.css" : "/assets/css/select2.css", "/assets/js/scripts.js" : "/assets/js/scripts.js"}
json_instruct
{"type": "object", "properties": {"/js/app.js": {"type": "string"}, "/css/app.css": {"type": "string"}, "/assets/css/select2.css": {"type": "string"}, "/assets/js/scripts.js": {"type": "string"}}, "required": ["/js/app.js", "/css/app.css", "/assets/css/select2.css", "/assets/js/scripts.js"], "$schema": "http://json-sch...
Generate a valid JSON object that conforms to the following 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" : ["minecraft:cobblestone", "thehallow:tainted_cobblestone"]}
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#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"author": {"type": "string"}, "classification": {"type": "string"}, "keywords": {"type": "array", "items": {}}, "period": {"type": "string"}, "reference": {"type": "string"}, "region": {"type": "string"}, "text": {"type": "array"...
{"author" : "Vera Pavlova", "classification" : "", "keywords" : [], "period" : "", "reference" : "http://www.poetryfoundation.org/poetrymagazine/poem/238380", "region" : "", "text" : ["by trying their blindfolds on;", "to correspond with books", "by rewriting them;", "to edit holy edicts,", "and at the midnight hour", ...
json_instruct
{"type": "object", "properties": {"author": {"type": "string"}, "classification": {"type": "string"}, "keywords": {"type": "array", "items": {}}, "period": {"type": "string"}, "reference": {"type": "string"}, "region": {"type": "string"}, "text": {"type": "array", "items": {"type": "string"}}, "title": {"type": "string...
Construct a JSON document that adheres to this schema specification: {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "label": {"type": "string"}, "status": {"type": "string"}}, "required": ["name", "label", "status"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"name" : "list-props-modifiers.md", "label" : "\u0421\u043f\u0438\u0441\u043e\u043a \u043c\u043e\u0434\u0438\u0444\u0438\u043a\u0430\u0442\u043e\u0440\u043e\u0432", "status" : "check"}, {"name" : "default-modifier.md", "label" : "<b style='color: brown'>default</b>: \u041c\u043e\u0434\u0438\u0444\u0438\u043a\u0430\u0...
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "label": {"type": "string"}, "status": {"type": "string"}}, "required": ["name", "label", "status"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"type": {"type": "string"}, "id": {"type": "string"}, "properties": {"type": "object", "properties": {"amenity": {"type": "string"}, "note": {"type": "string"}, "operator": {"type": "string"}, "payment:coins": {"type...
{"type" : "Feature", "id" : "node/2941109344", "properties" : {"amenity" : "vending_machine", "note" : "Eggs, Honey, Noodles", "operator" : "Vogler's Hofprodukte GbR", "payment:coins" : "yes", "vending" : "food", "website" : "http://www.mapillary.com/map/im/UJh-zi9AmJ1PmfIyhAl-qA", "id" : "node/2941109344"}, "geometry"...
json_instruct
{"type": "object", "properties": {"type": {"type": "string"}, "id": {"type": "string"}, "properties": {"type": "object", "properties": {"amenity": {"type": "string"}, "note": {"type": "string"}, "operator": {"type": "string"}, "payment:coins": {"type": "string"}, "vending": {"type": "string"}, "website": {"type": "stri...
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"type": {"type": "string"}, "description": {"type": "string"}, "properties": {"type": "object", "properties": {"request_name": {"type": "object", "properties": {"type": {"type": "string"}}, "required": ["type"]}, "filter_groups...
{"type" : "object", "description" : "Interface SearchCriteriaInterface", "properties" : {"request_name" : {"type" : "string"}, "filter_groups" : {"type" : "array", "description" : "A list of filter groups.", "items" : {"$ref" : "_definitions.json#/definitions/framework-search-filter-group"}}, "sort_orders" : {"type" : ...
json_instruct
{"type": "object", "properties": {"type": {"type": "string"}, "description": {"type": "string"}, "properties": {"type": "object", "properties": {"request_name": {"type": "object", "properties": {"type": {"type": "string"}}, "required": ["type"]}, "filter_groups": {"type": "object", "properties": {"type": {"type": "stri...
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "type": {"type": "string"}, "license": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type"...
{"name" : "sirbrillig/phpcs-import-detection", "description" : "A set of phpcs sniffs to look for unused or unimported symbols.", "type" : "phpcodesniffer-standard", "license" : "MIT", "authors" : [{"name" : "Payton Swick", "email" : "payton@foolord.com"}], "autoload" : {"psr-4" : {"ImportDetection\\" : "ImportDetectio...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "type": {"type": "string"}, "license": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}}, "...
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"content_id": {"type": "string"}, "base_path": {"type": "string"}, "title": {"type": "string"}, "description": {"type": "string"}, "need_ids": {"type": "array", "items": {}}, "locale": {"type": "string"}, "updated_at": {"type":...
{"content_id" : "da025a9f-8293-4fef-869c-12445d364696", "base_path" : "/service-standard-reports", "title" : "Service Standard Reports", "description" : "A list of service standard reports", "need_ids" : [], "locale" : "en", "updated_at" : "2015-07-21T12:45:18.202Z", "public_updated_at" : "2015-04-29T09:22:41.000+00:00...
json_instruct
{"type": "object", "properties": {"content_id": {"type": "string"}, "base_path": {"type": "string"}, "title": {"type": "string"}, "description": {"type": "string"}, "need_ids": {"type": "array", "items": {}}, "locale": {"type": "string"}, "updated_at": {"type": "string"}, "public_updated_at": {"type": "string"}, "detai...
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"name": {"type": "string"}, "rarity": {"type": "array", "items": {}}, "1pc": {"type": "string"}, "circlet": {"type": "object", "properties": {"name": {"type": "string"}, "relictype": {"type": "string"}, "description":...
{"name" : "Ritual del Firmamento", "rarity" : [], "1pc" : "Los efectos de Anemo causados sobre ti duran un 40% menos.", "circlet" : {"name" : "Diadema de la Tempestad", "relictype" : "Tiara de Logos", "description" : "Una corona ceremonial portada por sacerdotes de tiempos antiguos al ofrecer un sacrificio a los dioses...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "rarity": {"type": "array", "items": {}}, "1pc": {"type": "string"}, "circlet": {"type": "object", "properties": {"name": {"type": "string"}, "relictype": {"type": "string"}, "description": {"type": "string"}}, "required": ["name", "relictype", "description"...
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "dependencies": {"type": "object", "properties": {"bootstrap": {"type": "string"}, "font-awesome": {"type": "string"}, "chosen": {"type": "string"...
{"name" : "CakeBootstrap", "description" : "A CakePHP plugin with helpers for Twitter bootstrap", "dependencies" : {"bootstrap" : "*", "font-awesome" : "*", "chosen" : "*", "bootstrap-chosen" : "master", "clockpicker" : "*", "fontawesome-iconpicker" : "*", "bootstrap-growl" : "*"}, "authors" : ["George Mponos <gmponos@...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "dependencies": {"type": "object", "properties": {"bootstrap": {"type": "string"}, "font-awesome": {"type": "string"}, "chosen": {"type": "string"}, "bootstrap-chosen": {"type": "string"}, "clockpicker": {"type": "string"},...
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"id": {"type": "integer"}, "title": {"type": "array", "items": {"type": "string"}}, "description": {"type": "array", "items": {"type": "string"}}, "paths": {"type": "array", "items": {"type": "string"}}, "locati...
{"id" : 10792, "title" : ["[Gyldemar Forest, Young Oak]"], "description" : ["This small circular clearing in the otherwise dense woods contains a single oak sapling, its trunk only the length of a human hand in width. Nearly half a dozen branches reach out from the tree, but their ends are withered and devoid of leave...
json_instruct
{"type": "object", "properties": {"id": {"type": "integer"}, "title": {"type": "array", "items": {"type": "string"}}, "description": {"type": "array", "items": {"type": "string"}}, "paths": {"type": "array", "items": {"type": "string"}}, "location": {"type": "string"}, "wayto": {"type": "object", "properties": {"4740":...
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"directions": {"type": "array", "items": {"type": "string"}}, "ingredients": {"type": "array", "items": {"type": "string"}}, "language": {"type": "string"}, "source": {"type": "string"}, "tags": {"type": "array", "...
{"directions" : ["Heat 1 tablespoon olive oil in a skillet over medium-low heat, and cook the asparagus, stirring occasionally, until tender and lightly browned. Season with salt and pepper, and remove from heat.", "Spread one side of each tortilla with 1/2 the goat cheese. Place 1/2 the asparagus and 1/2 the cilantro ...
json_instruct
{"type": "object", "properties": {"directions": {"type": "array", "items": {"type": "string"}}, "ingredients": {"type": "array", "items": {"type": "string"}}, "language": {"type": "string"}, "source": {"type": "string"}, "tags": {"type": "array", "items": {}}, "title": {"type": "string"}, "url": {"type": "string"}}, "r...
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"type": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "number"}}}, "required": ["type", "coordinates"]}, "properties": {"type": ...
{"type" : "Feature", "geometry" : {"type" : "Point", "coordinates" : [-2.949237, 53.383147]}, "properties" : {"site" : "6313", "name" : "6313", "organisation" : "local-authority-eng:LIV", "planning-permission-status" : "permissioned", "site-address" : "13a MANNERING ROAD", "point" : "POINT(-2.949237 53.383147)", "hecta...
json_instruct
{"type": "object", "properties": {"type": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "number"}}}, "required": ["type", "coordinates"]}, "properties": {"type": "object", "properties": {"site": {"type": "string"}, "name"...
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"IsEncrypted": {"type": "boolean"}, "Values": {"type": "object", "properties": {"FUNCTIONS_WORKER_RUNTIME": {"type": "string"}, "DOTNET_CLI_TELEMETRY_OPTOUT": {"type": "string"}, "REDIS_CACHE_HOST_NAME": {"type": "string"}, "REDI...
{"IsEncrypted" : false, "Values" : {"FUNCTIONS_WORKER_RUNTIME" : "node", "DOTNET_CLI_TELEMETRY_OPTOUT" : "1", "REDIS_CACHE_HOST_NAME" : "localhost", "REDIS_CACHE_HOST_PORT" : "6379"}}
json_instruct
{"type": "object", "properties": {"IsEncrypted": {"type": "boolean"}, "Values": {"type": "object", "properties": {"FUNCTIONS_WORKER_RUNTIME": {"type": "string"}, "DOTNET_CLI_TELEMETRY_OPTOUT": {"type": "string"}, "REDIS_CACHE_HOST_NAME": {"type": "string"}, "REDIS_CACHE_HOST_PORT": {"type": "string"}}, "required": ["FU...
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"t": {"type": "string"}, "h": {"type": "array", "items": {"type": "object", "properties": {"d": {"type": "array", "items": {"type": "object", "properties": {"f": {"type": "string"}}, "required": ["f"]}}}, "required"...
{"t" : "mihafekodan", "h" : [{"d" : [{"f" : "\u628a\u2026\u78b0\u649e\u4e86\u3001\u649e\u8457\u4e86\u3002"}, {"f" : "\u6307\u6240\u78b0\u649e\u3001\u649e\u8457\u7684\uff08\u5c0d\u8c61\u3001\u969c\u7919\u7269\uff09 \uff1b\u7d46\u5012\u3002", "s" : ["`mihafikodan~"]}]}], "stem" : "fekod"}
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"}}, "required": ["f"]}}}, "required": ["d"]}}, "stem": {"type": "string"}}, "required": ["t", "h", "stem"],...
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"authors": {"type": "array", "items": {"type": "object", "properties": {"author": {"type": "string"}}, "required": ["author"]}}, "doi": {"type": "string"}, "publication_date": {"type": "string"}, "id": {"type": "st...
{"authors" : [{"author" : "Shadi Hamouri"}, {"author" : "Nathan M Novotny"}], "doi" : "10.1186/s13019-017-0677-2", "publication_date" : "2017-12-01", "id" : "EN113668", "url" : "https://pubmed.ncbi.nlm.nih.gov/29183345", "source" : "Journal of cardiothoracic surgery", "source_url" : "", "licence" : "CC BY", "language" ...
json_instruct
{"type": "object", "properties": {"authors": {"type": "array", "items": {"type": "object", "properties": {"author": {"type": "string"}}, "required": ["author"]}}, "doi": {"type": "string"}, "publication_date": {"type": "string"}, "id": {"type": "string"}, "url": {"type": "string"}, "source": {"type": "string"}, "source...
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"name": {"type": "string"}, "displayName": {"type": "string"}, "description": {"type": "string"}, "version": {"type": "string"}, "publisher": {"type": "string"}, "engines": {"type": "object", "properties": {"v...
{"name" : "999-pack2", "displayName" : "999-pack2", "description" : "Test extension pack 2", "version" : "0.9.0", "publisher" : "vscode-samples", "engines" : {"vscode" : "^1.0.0"}, "categories" : ["Other"], "galleryBanner" : {"color" : "#f0efe7", "theme" : "light"}, "icon" : "", "homepage" : "https://github.com/Microso...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "displayName": {"type": "string"}, "description": {"type": "string"}, "version": {"type": "string"}, "publisher": {"type": "string"}, "engines": {"type": "object", "properties": {"vscode": {"type": "string"}}, "required": ["vscode"]}, "categories": {"type": ...
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"utterance": {"type": "string"}, "expected_response": {"type": "string"}}, "required": ["utterance", "expected_response"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"utterance" : "My name is Conny", "expected_response" : "(Nice to meet you, Conny)|(Nice to meet ya, Conny)|(Hi, Conny, i'm *)|(Conny, that's a nice name:D)|(I like your name, Conny:3)"}
json_instruct
{"type": "object", "properties": {"utterance": {"type": "string"}, "expected_response": {"type": "string"}}, "required": ["utterance", "expected_response"], "$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-string": {"type": "string"}, "dependencies": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "version-string", "dependencies"], "$schema": "http://json-sche...
{"name" : "auto-generated-vcpkg-json", "version-string" : "unversioned", "dependencies" : ["functions-framework-cpp"]}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version-string": {"type": "string"}, "dependencies": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "version-string", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "icon": {"type": "string"}, "sortnum": {"type": "integer"}}, "required": ["name", "description", "icon", "sortnum"], "$schema": "http://json-schema.org/...
{"name" : "Greater Demons", "description" : "As demons mostly operate under a pseudo-feudalistic system, there are of course equivalents to infernal kings and queens.", "icon" : "bewitchment:demon_heart", "sortnum" : 3}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "icon": {"type": "string"}, "sortnum": {"type": "integer"}}, "required": ["name", "description", "icon", "sortnum"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"networkCallRecords": {"type": "array", "items": {}}, "variables": {"type": "array", "items": {"type": "string"}}}, "required": ["networkCallRecords", "variables"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"networkCallRecords" : [], "variables" : ["bca83544bca8354402908105b3cf6e7b3d1c438fb8"]}
json_instruct
{"type": "object", "properties": {"networkCallRecords": {"type": "array", "items": {}}, "variables": {"type": "array", "items": {"type": "string"}}}, "required": ["networkCallRecords", "variables"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"Id": {"type": "string"}, "ProductId": {"type": "string"}, "UserId": {"type": "string"}, "ProfileName": {"type": "string"}, "HelpfulnessNumerator": {"type": "integer"}, "HelpfulnessDenominator": {"type": "integer"}, "Score":...
{"Id" : "132980", "ProductId" : "B0090X8IPM", "UserId" : "A15ZRSJYUSQQ9N", "ProfileName" : "Melissa Lindley", "HelpfulnessNumerator" : 0, "HelpfulnessDenominator" : 0, "Score" : 5, "date" : "2011-01-11", "Summary" : "The first flavored coffee we really like! Will buy again.", "text" : "I ordered this coffee at at good ...
json_instruct
{"type": "object", "properties": {"Id": {"type": "string"}, "ProductId": {"type": "string"}, "UserId": {"type": "string"}, "ProfileName": {"type": "string"}, "HelpfulnessNumerator": {"type": "integer"}, "HelpfulnessDenominator": {"type": "integer"}, "Score": {"type": "integer"}, "date": {"type": "string"}, "Summary": {...
Please provide a valid JSON object following this schema: {"type": "array", "items": {"type": "number"}, "$schema": "http://json-schema.org/draft-07/schema#"}
[7.058395481305533, 7.334613738170178, 6.247523723015681, 7.216414273177916, 7.1246943372612215, 6.6595986234817115, 4.704079486504344, 6.250153234624515, 7.483592084297866, 6.9943903805988965]
json_instruct
{"type": "array", "items": {"type": "number"}, "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"an3.152:0.1": {"type": "string"}, "an3.152:0.2": {"type": "string"}, "an3.152:0.3": {"type": "string"}, "an3.152:1.1": {"type": "string"}, "an3.152:1.2": {"type": "string"}, "an3.152:2.1": {"type": "string"}, "an3.152:2.2": {"...
{"an3.152:0.1" : "<article id='an3.152'><header><ul><li class='division'>{}</li>", "an3.152:0.2" : "<li>{}</li></ul>", "an3.152:0.3" : "<h1 class='sutta-title'>{}</h1></header>", "an3.152:1.1" : "<p>{}", "an3.152:1.2" : "{}</p>", "an3.152:2.1" : "<p>{}", "an3.152:2.2" : "{}</p>", "an3.152:2.3" : "<p class='endsection'>...
json_instruct
{"type": "object", "properties": {"an3.152:0.1": {"type": "string"}, "an3.152:0.2": {"type": "string"}, "an3.152:0.3": {"type": "string"}, "an3.152:1.1": {"type": "string"}, "an3.152:1.2": {"type": "string"}, "an3.152:2.1": {"type": "string"}, "an3.152:2.2": {"type": "string"}, "an3.152:2.3": {"type": "string"}}, "requ...
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"pe_name": {"type": "string"}, "pe_type": {"type": "integer"}, "pe_size": {"type": "integer"}, "pe_subsystem": {"type": "integer"}, "pe_subsystem_caption": {"type": "string"}, "pe_path": {"type": "string"}, "pe_...
{"pe_name" : "Microsoft.Windows.Diagnosis.SDHost.dll", "pe_type" : 267, "pe_size" : 13312, "pe_subsystem" : 3, "pe_subsystem_caption" : "The Windows character (Cosole UI) subsystem", "pe_path" : "c:\\Windows\\Microsoft.NET\\assembly\\GAC_MSIL\\Microsoft.Windows.Diagnosis.SDHost\\v4.0_10.0.0.0__31bf3856ad364e35\\Microso...
json_instruct
{"type": "object", "properties": {"pe_name": {"type": "string"}, "pe_type": {"type": "integer"}, "pe_size": {"type": "integer"}, "pe_subsystem": {"type": "integer"}, "pe_subsystem_caption": {"type": "string"}, "pe_path": {"type": "string"}, "pe_timedate_stamp": {"type": "integer"}, "pe_timedate_human": {"type": "string...
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" : "141130202200", "text" : "\u57ce\u5317\u6c9f\u6751\u59d4\u4f1a"}, {"id" : "141130202201", "text" : "\u5e9e\u5b50\u7ab3\u6751\u59d4\u4f1a"}, {"id" : "141130202202", "text" : "\u66f9\u5bb6\u793e\u6751\u59d4\u4f1a"}, {"id" : "141130202203", "text" : "\u6a0a\u5bb6\u6cbf\u6751\u59d4\u4f1a"}, {"id" : "141130202204",...
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "text": {"type": "string"}}, "required": ["id", "text"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "array", "items": {"type": "object", "properties": {"line": {"type": "integer"}, "column": {"type": "integer"}, "msg": {"type": "string"}}, "required": ["line", "column", "msg"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"line" : 2, "column" : 7, "msg" : "Cannot find name 'A'."}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"line": {"type": "integer"}, "column": {"type": "integer"}, "msg": {"type": "string"}}, "required": ["line", "column", "msg"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"jquery.imagemapster.js": {"type": "string"}, "jquery.imagemapster.min.js": {"type": "string"}, "jquery.imagemapster.zepto.js": {"type": "string"}, "jquery.imagemapster.zepto.min.js": {"type": "string"}}, "req...
{"jquery.imagemapster.js" : "sha512-cpMx2tMC8g9QilwXFVFqVT5TWkvfq/xEaOspfF1FUUUJy5mL6As50+uh3yOoVlu1bKwsJrUthuEzC1m6WquRKw==", "jquery.imagemapster.min.js" : "sha512-RsXNh99DGEzAhsjz5toI7hsVEYqGtDLCd0oC8BYAFTPAYT7bv47uqKIPU4bn8PWV+dbYI1TXz4bpUghS85p7Vw==", "jquery.imagemapster.zepto.js" : "sha512-jygF5ijlMlwJWei7MlsEDj...
json_instruct
{"type": "object", "properties": {"jquery.imagemapster.js": {"type": "string"}, "jquery.imagemapster.min.js": {"type": "string"}, "jquery.imagemapster.zepto.js": {"type": "string"}, "jquery.imagemapster.zepto.min.js": {"type": "string"}}, "required": ["jquery.imagemapster.js", "jquery.imagemapster.min.js", "jquery.imag...
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"title": {"type": "string"}, "fields": {"type": "array", "items": {"type": "string"}}, "abstract": {"type": "string"}, "citation": {"type": "string"}, "year": {"type": "string"}, "departments": {"type": "array", "i...
{"title" : "QAGView: Interactively Summarizing High-Valued Aggregate Query Answers.", "fields" : ["visualization", "data mining", "cluster analysis", "computer science", "tuple"], "abstract" : "Methods for summarizing and diversifying query results have drawn significant attention recently, because they help present qu...
json_instruct
{"type": "object", "properties": {"title": {"type": "string"}, "fields": {"type": "array", "items": {"type": "string"}}, "abstract": {"type": "string"}, "citation": {"type": "string"}, "year": {"type": "string"}, "departments": {"type": "array", "items": {"type": "string"}}, "conf": {"type": "string"}, "authors": {"typ...
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"description": {"type": "string"}, "dependencies": {"type": "object", "properties": {"azure-sas-token": {"type": "string"}}, "required": ["azure-sas-token"]}}, "required": ["description", "dependencies"], "$schema": "http://...
{"description" : "example how to use azure-sas-token", "dependencies" : {"azure-sas-token" : "^0.0.46"}}
json_instruct
{"type": "object", "properties": {"description": {"type": "string"}, "dependencies": {"type": "object", "properties": {"azure-sas-token": {"type": "string"}}, "required": ["azure-sas-token"]}}, "required": ["description", "dependencies"], "$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"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}, "rebuild": {"type": "string"}},...
{"name" : "electron-terminal", "version" : "1.0.0", "description" : "My first Electron Terminal with XtermJS", "main" : "index.js", "scripts" : {"start" : "electron .", "rebuild" : "electron-rebuild"}, "repository" : {"type" : "git", "url" : "git+https://github.com/droidxrx/electron-terminal.git"}, "keywords" : ["elect...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}, "rebuild": {"type": "string"}}, "required": ["start", "rebuild"]}, "repository": {"type": ...
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"reactstrap.min.js": {"type": "string"}}, "required": ["reactstrap.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"reactstrap.min.js" : "sha512-tAy9rmagTz4TsQsI2CsbeOgVcSuR7Nl0I84uwwpwfyVHonq4oM0SZhm+Ft/3mBBOBHDyFHIHFSI03+8+Tw+LBA=="}
json_instruct
{"type": "object", "properties": {"reactstrap.min.js": {"type": "string"}}, "required": ["reactstrap.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"bounding boxes": {"type": "array", "items": {"type": "object", "properties": {"center": {"type": "object", "properties": {"x": {"type": "number"}, "y": {"type": "number"}}, "required": ["x", "y"]}, "width": {"type"...
{"bounding boxes" : [{"center" : {"x" : 18.66923475556461, "y" : -34.988109600449405}, "width" : 2.612055433486738, "length" : 4.933878519918524, "angle" : -3.1492955359812713, "object_id" : "1d2"}, {"center" : {"x" : -5.216960537773734, "y" : -21.872225545707153}, "width" : 2.8451900025256283, "length" : 5.47962250678...
json_instruct
{"type": "object", "properties": {"bounding boxes": {"type": "array", "items": {"type": "object", "properties": {"center": {"type": "object", "properties": {"x": {"type": "number"}, "y": {"type": "number"}}, "required": ["x", "y"]}, "width": {"type": "number"}, "length": {"type": "number"}, "angle": {"type": "number"},...
Construct a JSON document that adheres to this schema specification: {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
[[2000, 11], [2001, 16], [2002, 8], [2003, 5], [2004, 6], [2005, 6], [2006, 8], [2007, 11], [2008, 7], [2009, 11], [2011, 8], [2012, 7], [2013, 12], [2014, 8]]
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": {"contacts": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}, "designation": {"type": "string"}, "mobile": {"type": "array", "items": {}}}, "required...
{"contacts" : [{"name" : "MANIKYARAO.J", "email" : "spandana1962@gmail.com", "designation" : "President", "mobile" : []}], "guideStarURL" : "http://www.guidestarindia.org/Summary.aspx?CCReg=5110", "name" : "SPANDANA EDUCATIONAL SOCIETY", "primaryEmail" : "spandana1962@gmail.com", "organisationType" : ["Direct Service"]...
json_instruct
{"type": "object", "properties": {"contacts": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}, "designation": {"type": "string"}, "mobile": {"type": "array", "items": {}}}, "required": ["name", "email", "designation", "mobile"]}}, "guideStarURL": {"ty...
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"patthana16.77:1.1": {"type": "string"}, "patthana16.77:2.1": {"type": "string"}, "patthana16.77:3.1": {"type": "string"}, "patthana16.77:4.1": {"type": "string"}}, "required": ["patthana16.77:1.1", "patthana16.77:2....
{"patthana16.77:1.1" : "ms40P16_304, msdiv126, vri124.322", "patthana16.77:2.1" : "ms40P16_305", "patthana16.77:3.1" : "ms40P16_306, msdiv127", "patthana16.77:4.1" : "ms40P16_307"}
json_instruct
{"type": "object", "properties": {"patthana16.77:1.1": {"type": "string"}, "patthana16.77:2.1": {"type": "string"}, "patthana16.77:3.1": {"type": "string"}, "patthana16.77:4.1": {"type": "string"}}, "required": ["patthana16.77:1.1", "patthana16.77:2.1", "patthana16.77:3.1", "patthana16.77:4.1"], "$schema": "http://json...
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"IsRecentlyVerified": {"type": "boolean"}, "ID": {"type": "integer"}, "UUID": {"type": "string"}, "DataProviderID": {"type": "integer"}, "OperatorID": {"type": "integer"}, "UsageTypeID": {"type": "integer"}, "...
{"IsRecentlyVerified" : false, "ID" : 156762, "UUID" : "9B9F3B48-4A17-41C6-9C1B-CC7B79BA7630", "DataProviderID" : 1, "OperatorID" : 1, "UsageTypeID" : 5, "AddressInfo" : {"ID" : 157116, "Title" : "Mj\u00e4rdevi Center", "AddressLine1" : "Datalinjen 2", "Town" : "LINK\u00d6PING", "StateOrProvince" : "\u00d6STERG\u00d6TL...
json_instruct
{"type": "object", "properties": {"IsRecentlyVerified": {"type": "boolean"}, "ID": {"type": "integer"}, "UUID": {"type": "string"}, "DataProviderID": {"type": "integer"}, "OperatorID": {"type": "integer"}, "UsageTypeID": {"type": "integer"}, "AddressInfo": {"type": "object", "properties": {"ID": {"type": "integer"}, "T...
Construct a JSON document that adheres to this schema specification: {"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"}
["musefind-babel-preset-react-app"]
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": "array", "items": {"type": "object", "properties": {"Script": {"type": "string"}, "Bindings": {"type": "object", "properties": {}, "required": []}}, "required": ["Script", "Bindings"]}, "$schema": "http://json-schema.org/draft-07/schema#"} ...
[{"Script" : "V().limit(0).fold().range(local, 0, 2)", "Bindings" : {}}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"Script": {"type": "string"}, "Bindings": {"type": "object", "properties": {}, "required": []}}, "required": ["Script", "Bindings"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"derivation": {"type": "string"}, "pron": {"type": "string"}, "outline": {"type": "string"}, "kjv_def": {"type": "string"}, "lemma": {"type": "string"}, "frequency": {"type": "integer"}, "strongs_def": {"type": "string"}, "xlit":...
{"derivation" : "or \u05de\u05b5\u05d3; from H4058 (\u05de\u05b8\u05d3\u05b7\u05d3);", "pron" : "mad", "outline" : "<ol><li> measure, cloth garment<ol><li> measure</li><li> cloth, carpet</li><li> garment (outer)</li></ol></li></ol>", "kjv_def" : "armour, clothes, garment, judgment, measure, raiment, stature.", "lemma" ...
json_instruct
{"type": "object", "properties": {"derivation": {"type": "string"}, "pron": {"type": "string"}, "outline": {"type": "string"}, "kjv_def": {"type": "string"}, "lemma": {"type": "string"}, "frequency": {"type": "integer"}, "strongs_def": {"type": "string"}, "xlit": {"type": "string"}}, "required": ["derivation", "pron", ...
Based on the schema below, produce a valid JSON object: {"type": "array", "items": {"type": "object", "properties": {"e_id": {"type": "string"}, "title": {"type": "string"}, "content": {"type": "string"}, "picNo": {"type": "string"}, "picUrl": {"type": "array", "items": {"type": "object", "properties": {"pic_title": {...
[{"e_id" : "462", "title" : "\u7f57\u9a6c\u5c3c\u4e9a\u5e76\u541e\u7279\u5170\u897f\u74e6\u5c3c\u4e9a", "content" : "\n\u00a0\u00a0\u00a0\u00a0\u5728102\u5e74\u524d\u7684\u4eca\u5929\uff0c1919\u5e741\u670811\u65e5(\u519c\u53861918\u5e7412\u670810\u65e5)\uff0c\u7f57\u9a6c\u5c3c\u4e9a\u5e76\u541e\u7279\u5170\u897f\u74e6\...
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"e_id": {"type": "string"}, "title": {"type": "string"}, "content": {"type": "string"}, "picNo": {"type": "string"}, "picUrl": {"type": "array", "items": {"type": "object", "properties": {"pic_title": {"type": "string"}, "suffix": {"type": "string"}, "id": {"...
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"bucket": {"type": "string"}, "source": {"type": "string"}, "destination": {"type": "string"}, "directory": {"type": "string"}, "doc": {"type": "string"}, "dbtable": {"type": "string"}, "column_count": {"type"...
{"bucket" : "sp-ca-bc-gov-131565110619-12-microservices", "source" : "client", "destination" : "processed", "directory" : "cfms_sbc", "doc" : "bad_clientids.*.csv", "dbtable" : "servicebc.bad_clientids", "column_count" : 1, "columns" : ["client_id"], "delim" : ",", "truncate" : true}
json_instruct
{"type": "object", "properties": {"bucket": {"type": "string"}, "source": {"type": "string"}, "destination": {"type": "string"}, "directory": {"type": "string"}, "doc": {"type": "string"}, "dbtable": {"type": "string"}, "column_count": {"type": "integer"}, "columns": {"type": "array", "items": {"type": "string"}}, "del...
The schema below describes a JSON structure. Generate a valid example: {"type": "array", "items": {"type": "object", "properties": {"manufacturer": {"type": "string"}, "market_name": {"type": "string"}, "codename": {"type": "string"}, "model": {"type": "string"}}, "required": ["manufacturer", "market_name", "codename"...
[{"manufacturer" : "bq", "market_name" : "BQ-6016L Mercury", "codename" : "BQru-6016L", "model" : "BQ-6016L"}]
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#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"eslint": {"type": "string"}}, "required": ["eslin...
{"name" : "box-elements-sample", "version" : "1.0.0", "description" : "Box UI Elements sample integration", "main" : "sample_sdk.js", "scripts" : {"eslint" : "./node_modules/eslint/bin/eslint.js sample_sdk.js"}, "author" : "Jonathan LeBlanc", "license" : "ISC", "devDependencies" : {"eslint" : "^4.3.0", "eslint-config-a...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"eslint": {"type": "string"}}, "required": ["eslint"]}, "author": {"type": "string"}, "license": {"type": "string"}, "d...
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "build": {"type": "string"}}, "req...
{"name" : "@mck-p/async-iterables", "version" : "0.0.1-ALPHA-3", "description" : "A way to deal with everything as async iterables", "main" : "dist/index.js", "scripts" : {"test" : "jest", "build" : "ttsc"}, "keywords" : [], "author" : "", "license" : "MIT", "devDependencies" : {"@types/jest" : "27.0.2", "@types/node" ...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "build": {"type": "string"}}, "required": ["test", "build"]}, "keywords": {"type": "array",...
Generate sample JSON data that conforms to the following schema definition: {"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"}
["\\[foo]\n\n[foo]: /url \"title\"", "<p>[foo]</p>"]
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": {"geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "number"}}}, "required": ["type", "coordinates"]}, "type": {"type": "string"}, "id": {"type...
{"geometry" : {"type" : "Point", "coordinates" : [-104.36, 32.99]}, "type" : "Feature", "id" : "88253", "properties" : {"other_cities" : "", "city" : "Lake Arthur", "state" : "NM", "county" : "Chaves County"}}
json_instruct
{"type": "object", "properties": {"geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "number"}}}, "required": ["type", "coordinates"]}, "type": {"type": "string"}, "id": {"type": "string"}, "properties": {"type": "object", "properties": {"other_c...
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"limit": {"type": "integer"}, "name": {"type": "string"}, "value": {"type": "integer"}, "highalch": {"type": "integer"}, "id": {"type": "integer"}, "lowalch": {"type": "integer"}, "name_pt": {"type": "string"}, "price": {"type"...
{"limit" : 1000, "name" : "Jade bakriminel bolts (e)", "value" : 144, "highalch" : 86, "id" : 41625, "lowalch" : 57, "name_pt" : "Setas de bakriminel de jade (e)", "price" : 1431, "last" : 1431}
json_instruct
{"type": "object", "properties": {"limit": {"type": "integer"}, "name": {"type": "string"}, "value": {"type": "integer"}, "highalch": {"type": "integer"}, "id": {"type": "integer"}, "lowalch": {"type": "integer"}, "name_pt": {"type": "string"}, "price": {"type": "integer"}, "last": {"type": "integer"}}, "required": ["l...
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"id": {"type": "string"}, "queryName": {"type": "string"}, "severity": {"type": "string"}, "category": {"type": "string"}, "descriptionText": {"type": "string"}, "descriptionUrl": {"type": "string"}, "platform": {"type": "st...
{"id" : "5b033ec8-f079-4323-b5c8-99d4620433a9", "queryName" : "EMR Security Configuration Encryptions Enabled", "severity" : "MEDIUM", "category" : "Encryption and Key Management", "descriptionText" : "EMR SecurityConfiguration should enable and properly configure encryption at rest and in transit.", "descriptionUrl" :...
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "queryName": {"type": "string"}, "severity": {"type": "string"}, "category": {"type": "string"}, "descriptionText": {"type": "string"}, "descriptionUrl": {"type": "string"}, "platform": {"type": "string"}}, "required": ["id", "queryName", "severity", "category...
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"source": {"type": "string"}, "country": {"type": "string"}, "subdivisions": {"type": "array", "items": {}}}, "required": ["source", "country", "subdivisions"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"source" : "http://www.geonames.org/KY/administrative-division-cayman-islands.html", "country" : "Cayman Islands", "subdivisions" : []}
json_instruct
{"type": "object", "properties": {"source": {"type": "string"}, "country": {"type": "string"}, "subdivisions": {"type": "array", "items": {}}}, "required": ["source", "country", "subdivisions"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"id": {"type": "string"}, "price": {"type": "object", "properties": {"totalPaymentPrice": {"type": "object", "properties": {"paymentCurrencyAmount": {"type": "integer"}, "paymentCurrencyCode": {"type": "string"}, "pay...
{"id" : "60926f292d7c44f89ce2893164336f96", "price" : {"totalPaymentPrice" : {"paymentCurrencyAmount" : 131990, "paymentCurrencyCode" : "CZK", "paymentCurrencyExchangeRate" : 1, "paymentCurrencySymbol" : "K\u010d"}, "totalPrice" : {"basePayoutCurrencyCode" : "USD", "basePayoutPrice" : 4955, "convenienceFee" : 0, "curre...
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "price": {"type": "object", "properties": {"totalPaymentPrice": {"type": "object", "properties": {"paymentCurrencyAmount": {"type": "integer"}, "paymentCurrencyCode": {"type": "string"}, "paymentCurrencyExchangeRate": {"type": "integer"}, "paymentCurrencySymbo...
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"Description": {"type": "string"}, "Name": {"type": "string"}, "com.elgato.foxcouncil.boner.action": {"type": "object", "properties": {"Name": {"type": "string"}, "Tooltip": {"type": "string"}}, "required": ["Name"...
{"Description" : "A box of Fox's StreamDeck tools.", "Name" : "FoxBox", "com.elgato.foxcouncil.boner.action" : {"Name" : "Boner", "Tooltip" : "How many times did you get a bonber today? Keep track with this counter."}}
json_instruct
{"type": "object", "properties": {"Description": {"type": "string"}, "Name": {"type": "string"}, "com.elgato.foxcouncil.boner.action": {"type": "object", "properties": {"Name": {"type": "string"}, "Tooltip": {"type": "string"}}, "required": ["Name", "Tooltip"]}}, "required": ["Description", "Name", "com.elgato.foxcounc...
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"h": {"type": "array", "items": {"type": "object", "properties": {"d": {"type": "array", "items": {"type": "object", "properties": {"e": {"type": "array", "items": {"type": "string"}}, "f": {"type": "string"}}, "required": ["e"...
{"h" : [{"d" : [{"e" : ["\ufff9`Sapitongihaw~ `no~ `wawa~ `to~ `toron~.\ufffa\ufffb\u5b69\u5b50\u60f3\u54ac\u4e00\u584a\u9905\u3002"], "f" : "\u60f3\u54ac\u4e00\u53e3\u3002"}]}], "stem" : "tongih", "t" : "sapitongihaw"}
json_instruct
{"type": "object", "properties": {"h": {"type": "array", "items": {"type": "object", "properties": {"d": {"type": "array", "items": {"type": "object", "properties": {"e": {"type": "array", "items": {"type": "string"}}, "f": {"type": "string"}}, "required": ["e", "f"]}}}, "required": ["d"]}}, "stem": {"type": "string"},...
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"name": {"type": "string"}, "cwd": {"type": "string"}, "build_dir": {"type": "string"}, "doc_dir": {"type": "string"}, "grunt_dir": {"type": "string"}, "source_dir": {"type": "string"}, "test_dir": {"type": "str...
{"name" : "workout", "cwd" : "./", "build_dir" : "build", "doc_dir" : "docs", "grunt_dir" : "grunt", "source_dir" : "src", "test_dir" : "test"}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "cwd": {"type": "string"}, "build_dir": {"type": "string"}, "doc_dir": {"type": "string"}, "grunt_dir": {"type": "string"}, "source_dir": {"type": "string"}, "test_dir": {"type": "string"}}, "required": ["name", "cwd", "build_dir", "doc_dir", "grunt_dir", "s...
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"private": {"type": "boolean"}, "name": {"type": "string"}, "ignore": {"type": "array", "items": {"type": "string"}}, "dependencies": {"type": "object", "properties": {"purescript-halogen": {"type": "string"}, "purescript-ra...
{"private" : true, "name" : "purescript-halogen-template", "ignore" : ["**/.*", "node_modules", "bower_components", "output", "dist"], "dependencies" : {"purescript-halogen" : "1.2.1", "purescript-random" : "2.0.0", "purescript-affjax" : "3.0.2", "purescript-css" : "2.1.0", "purescript-halogen-css" : "5.0.0", "purescri...
json_instruct
{"type": "object", "properties": {"private": {"type": "boolean"}, "name": {"type": "string"}, "ignore": {"type": "array", "items": {"type": "string"}}, "dependencies": {"type": "object", "properties": {"purescript-halogen": {"type": "string"}, "purescript-random": {"type": "string"}, "purescript-affjax": {"type": "stri...
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"name": {"type": "string"}, "type": {"type": "string"}, "description": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "license": {"type": "string"}, "require": {"type": "object", "pro...
{"name" : "vorujov/phpone", "type" : "project", "description" : "Simple and flexible PHP 5.6+ MVC micro-framework.", "keywords" : ["application", "website", "development", "framework", "PHP", "PHP7"], "license" : "MIT", "require" : {"php" : ">=5.6.0", "altorouter/altorouter" : "1.*", "kint-php/kint" : "*", "gettext/get...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "type": {"type": "string"}, "description": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "license": {"type": "string"}, "require": {"type": "object", "properties": {"php": {"type": "string"}, "altorouter/altorouter": {"type"...
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"countries": {"type": "array", "items": {}}, "topics": {"type": "array", "items": {"type": "string"}}, "section_title": {"type": "string"}, "enb_start_date": {"type": "string"}, "enb_short_title": {"type": "stri...
{"countries" : [], "topics" : ["IPCC Governance"], "section_title" : "IPCC Decision", "enb_start_date" : "11-Oct-10", "enb_short_title" : "IPCC 32", "subtype" : "", "actors" : [], "sentences" : ["In its decision, the IPCC: decided to improve the IPCC guidance on evaluation of evidence and treatment of uncertainty and t...
json_instruct
{"type": "object", "properties": {"countries": {"type": "array", "items": {}}, "topics": {"type": "array", "items": {"type": "string"}}, "section_title": {"type": "string"}, "enb_start_date": {"type": "string"}, "enb_short_title": {"type": "string"}, "subtype": {"type": "string"}, "actors": {"type": "array", "items": {...
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"ja364:1.1": {"type": "string"}, "ja364:2.1": {"type": "string"}, "ja364:3.1": {"type": "string"}, "ja364:4.1": {"type": "string"}, "ja364:5.1": {"type": "string"}, "ja364:6.1": {"type": "string"}}, "required": ["j...
{"ja364:1.1" : "ms22J_1235, msdiv75, pts-vp-pli3.197, sc1", "ja364:2.1" : "ms22J_1236, msdiv76, sc2", "ja364:3.1" : "ms22J_1237, msdiv77, sc3", "ja364:4.1" : "ms22J_1238, msdiv78, sc4", "ja364:5.1" : "ms22J_1239, msdiv79, sc5, sya27.177", "ja364:6.1" : "ms22J_1240, sc6"}
json_instruct
{"type": "object", "properties": {"ja364:1.1": {"type": "string"}, "ja364:2.1": {"type": "string"}, "ja364:3.1": {"type": "string"}, "ja364:4.1": {"type": "string"}, "ja364:5.1": {"type": "string"}, "ja364:6.1": {"type": "string"}}, "required": ["ja364:1.1", "ja364:2.1", "ja364:3.1", "ja364:4.1", "ja364:5.1", "ja364:6....
Please provide a valid JSON object following 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" : "E:\\ProProjects\\Android\\ARHome\\app\\build\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-vi\\values-vi.xml", "map" : [{"source" : "C:\\Users\\adari\\.gradle\\caches\\transforms-1\\files-1.1\\facebook-android-sdk-4.6.0.aar\\b5388b3bff44b938e39620fde1a0fbbf\\res\\value...
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...
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"body": {"type": "string"}, "attachments": {"type": "array", "items": {}}, "created_by_name": {"type": "string"}, "created_at": {"type": "string"}, "created_by": {"type": "string"}, "parent_id": {"type": "string"}, "id": {"type...
{"body" : "Hi Sung,\n\n\nThis then explains the discrepancies you were seeing with your \nprevious comparisons between simulations (Radiance) and measurements.\n\n\nYou could use the new rsensor program to replicate your UV sensors \nresponse to get a match that way if you cannot modify the sensor.\n\n\n-Greg\n___\n<...
json_instruct
{"type": "object", "properties": {"body": {"type": "string"}, "attachments": {"type": "array", "items": {}}, "created_by_name": {"type": "string"}, "created_at": {"type": "string"}, "created_by": {"type": "string"}, "parent_id": {"type": "string"}, "id": {"type": "string"}}, "required": ["body", "attachments", "created...
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"@metadata": {"type": "object", "properties": {"authors": {"type": "array", "items": {"type": "string"}}}, "required": ["authors"]}, "LoadWebFont": {"type": "string"}, "CantLoadWebFont": {"type": "string"}, "Firefox...
{"@metadata" : {"authors" : ["Guherto"]}, "LoadWebFont" : "Fonta web\u00ea ya $1 t\u00ea barkirin", "CantLoadWebFont" : "Fonta web\u00ea ya $1 nikar\u00ea wer\u00ea barkirin", "FirefoxCantLoadWebFont" : "Firefox nikar\u00ea font\u00ean web\u00ea ji malpereke d\u00ee bar bik\u00ea", "CantFindFontUsing" : "Fontek nehate ...
json_instruct
{"type": "object", "properties": {"@metadata": {"type": "object", "properties": {"authors": {"type": "array", "items": {"type": "string"}}}, "required": ["authors"]}, "LoadWebFont": {"type": "string"}, "CantLoadWebFont": {"type": "string"}, "FirefoxCantLoadWebFont": {"type": "string"}, "CantFindFontUsing": {"type": "st...
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "private": {"type": "boolean"}, "dependencies": {"type": "object", "properties": {"material-ui": {"type": "string"}, "react": {"type": "string"}, "react-dom":...
{"name" : "website", "version" : "0.1.0", "private" : true, "dependencies" : {"material-ui" : "1.0.0-beta.30", "react" : "16.2.0", "react-dom" : "16.2.0", "react-scripts" : "1.1.0", "socket.io-client" : "2.0.4"}, "scripts" : {"start" : "react-scripts start", "build" : "react-scripts build", "test" : "react-scripts test...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "private": {"type": "boolean"}, "dependencies": {"type": "object", "properties": {"material-ui": {"type": "string"}, "react": {"type": "string"}, "react-dom": {"type": "string"}, "react-scripts": {"type": "string"}, "socket.io-...
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"userId": {"type": "integer"}, "mutual": {"type": "boolean"}, "_constructor": {"type": "string"}}, "required": ["userId", "mutual", "_constructor"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"userId" : 0, "mutual" : true, "_constructor" : "contact#f911c994"}
json_instruct
{"type": "object", "properties": {"userId": {"type": "integer"}, "mutual": {"type": "boolean"}, "_constructor": {"type": "string"}}, "required": ["userId", "mutual", "_constructor"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"size": {"type": "integer"}, "voltages": {"type": "array", "items": {"type": "number"}}, "time_constants": {"type": "array", "items": {"type": "number"}}, "biases": {"type": "array", "items": {"type": "number"}}, "inner_weights":...
{"size" : 2, "voltages" : [0.0, 0.0], "time_constants" : [1.0, 1.0], "biases" : [-12.274441498670999, 3.323702046362019], "inner_weights" : [[-7.970444040161915, -14.524933738476424], [5.658119715537868, -14.608976459367934]], "outputs" : [0.0, 0.0], "weight_range" : 16, "bias_range" : 16, "tc_min" : 1, "tc_max" : 1, "...
json_instruct
{"type": "object", "properties": {"size": {"type": "integer"}, "voltages": {"type": "array", "items": {"type": "number"}}, "time_constants": {"type": "array", "items": {"type": "number"}}, "biases": {"type": "array", "items": {"type": "number"}}, "inner_weights": {"type": "array", "items": {"type": "array", "items": {"...
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"dependencies": {"type": "object", "properties": {"my-sql": {"type": "string"}}, "required": ["my-sql"]}}, "required": ["dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"dependencies" : {"my-sql" : "1.1.14"}}
json_instruct
{"type": "object", "properties": {"dependencies": {"type": "object", "properties": {"my-sql": {"type": "string"}}, "required": ["my-sql"]}}, "required": ["dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"config": {"type": "object", "properties": {"abort": {"type": "object", "properties": {"already_setup": {"type": "string"}, "authorize_url_timeout": {"type": "string"}, "external_setup": {"type": "string"}, "no_flows...
{"config" : {"abort" : {"already_setup" : "J\u00e1 configurado. Apenas uma configura\u00e7\u00e3o \u00e9 poss\u00edvel.", "authorize_url_timeout" : "Tempo limite gerando URL de autoriza\u00e7\u00e3o.", "external_setup" : "Point configurado com \u00eaxito a partir de outro fluxo.", "no_flows" : "O componente n\u00e3o es...
json_instruct
{"type": "object", "properties": {"config": {"type": "object", "properties": {"abort": {"type": "object", "properties": {"already_setup": {"type": "string"}, "authorize_url_timeout": {"type": "string"}, "external_setup": {"type": "string"}, "no_flows": {"type": "string"}, "unknown_authorize_url_generation": {"type": "s...
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"type": {"type": "string"}, "level": {"type": "string"}, "label": {"type": "string"}, "locale": {"type": "string"}, "country_id": {"type": "...
{"type" : "Feature", "properties" : {"type" : "barangay", "level" : "4", "label" : "Poblacion, Alcantara, Romblon, MIMAROPA (Region IV-B), PH", "locale" : "ph.mimaropa-region-iv-b.romblon.alcantara.poblacion", "country_id" : 177, "country_reference" : 177, "country_name" : "Philippines", "region_id" : "13", "region_ref...
json_instruct
{"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"type": {"type": "string"}, "level": {"type": "string"}, "label": {"type": "string"}, "locale": {"type": "string"}, "country_id": {"type": "integer"}, "country_reference": {"type": "integer"}, "country_name": {...
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"Time": {"type": "string"}, "Temp": {"type": "integer"}, "RelHum": {"type": "integer"}, "WindSpeed": {"type": "number"}, "WindDir": {"type": "integer"}}, "required": ["Time", "Temp", "RelHum", "WindSpeed", "WindDir"], "$sche...
{"Time" : "2021-01-25T16:00:00Z", "Temp" : 11, "RelHum" : 84, "WindSpeed" : 1.5, "WindDir" : 305}
json_instruct
{"type": "object", "properties": {"Time": {"type": "string"}, "Temp": {"type": "integer"}, "RelHum": {"type": "integer"}, "WindSpeed": {"type": "number"}, "WindDir": {"type": "integer"}}, "required": ["Time", "Temp", "RelHum", "WindSpeed", "WindDir"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "array", "items": {"type": "object", "properties": {"manufacturer": {"type": "string"}, "market_name": {"type": "string"}, "codename": {"type": "string"}, "model": {"type": "string"}}, "required": ["manufacturer", "market_name", "codename", "model"]}, ...
[{"manufacturer" : "Compal", "market_name" : "", "codename" : "penguin", "model" : "AX 8.6"}]
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#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"directions": {"type": "array", "items": {"type": "string"}}, "ingredients": {"type": "array", "items": {"type": "string"}}, "language": {"type": "string"}, "source": {"type": "string"}, "tags": {"type": "array", "items": {}}, ...
{"directions" : ["Preheat oven to 350 degrees F (175 degrees C).", "In a large mixing bowl, combine ground meat, minced mushrooms, bread crumbs, onion, ketchup, eggs, and salt and pepper. Mix well. Spread 1/2 of the mixture into the bottom of a loaf pan. Arrange 6 whole mushrooms stem down into meat. Top with rest...
json_instruct
{"type": "object", "properties": {"directions": {"type": "array", "items": {"type": "string"}}, "ingredients": {"type": "array", "items": {"type": "string"}}, "language": {"type": "string"}, "source": {"type": "string"}, "tags": {"type": "array", "items": {}}, "title": {"type": "string"}, "url": {"type": "string"}}, "r...
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"_id": {"type": "string"}, "name": {"type": "string"}, "abbreviation": {"type": "string"}, "schema": {"type": "array", "items": {}}}, "required": ["_id", "name", "abbreviation", "schema"], "$schema": "http://json-schema.org/dra...
{"_id" : "4f651de6", "name" : "Emilia yellow vein virus-associated DNA beta", "abbreviation" : "", "schema" : []}
json_instruct
{"type": "object", "properties": {"_id": {"type": "string"}, "name": {"type": "string"}, "abbreviation": {"type": "string"}, "schema": {"type": "array", "items": {}}}, "required": ["_id", "name", "abbreviation", "schema"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"nodes": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "value": {"type": "number"}, "itemStyle": {"type": "object", "properties": {"color": {"type": "string"}}, "required": [...
{"nodes" : [{"name" : "\u53a6\u95e8\u4e07\u91cc\u77f3\u80a1\u4efd\u6709\u9650\u516c\u53f8\n002785.SZ", "value" : 1333004283.95, "itemStyle" : {"color" : "red"}, "category" : 0}, {"name" : "\u53a6\u95e8\u77f3\u6750\u5546\u54c1\u8fd0\u8425\u4e2d\u5fc3\u6709\u9650\u516c\u53f8", "value" : 1861.39, "itemStyle" : {"color" : ...
json_instruct
{"type": "object", "properties": {"nodes": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "value": {"type": "number"}, "itemStyle": {"type": "object", "properties": {"color": {"type": "string"}}, "required": ["color"]}, "category": {"type": "integer"}}, "required": ["name", "va...