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": {"type": "string"}}, "required": ["Element"]}}, "required": ["Attributes"]}}, "required": ["Sample", "MainRules"]}}, "required": ["Highlighter"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"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"]}}, "required": ["Sample", "MainRules"]}}, "required": ["Highlighter"], "$schema": "http://json-schema.org/draft-07/schema#"}
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": "boolean"}}, "required": ["name", "about_url", "license_url", "author", "assets", "component"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"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", "assets", "component"], "$schema": "http://json-schema.org/draft-07/schema#"}
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"}, "main": {"type": "string"}, "description": {"type": "string"}, "icon": {"type": "string"}}, "required": ["id", "main", "description", "icon"]}}, "base": {"type": "string"}, "main": {"type": "object", "properties": {"temp": {"type": "number"}, "feels_like": {"type": "number"}, "temp_min": {"type": "number"}, "temp_max": {"type": "integer"}, "pressure": {"type": "integer"}, "humidity": {"type": "integer"}}, "required": ["temp", "feels_like", "temp_min", "temp_max", "pressure", "humidity"]}, "visibility": {"type": "integer"}, "wind": {"type": "object", "properties": {"speed": {"type": "number"}, "deg": {"type": "integer"}}, "required": ["speed", "deg"]}, "clouds": {"type": "object", "properties": {"all": {"type": "integer"}}, "required": ["all"]}, "dt": {"type": "integer"}, "sys": {"type": "object", "properties": {"type": {"type": "integer"}, "id": {"type": "integer"}, "country": {"type": "string"}, "sunrise": {"type": "integer"}, "sunset": {"type": "integer"}}, "required": ["type", "id", "country", "sunrise", "sunset"]}, "timezone": {"type": "integer"}, "id": {"type": "integer"}, "name": {"type": "string"}, "cod": {"type": "integer"}}, "required": ["coord", "weather", "base", "main", "visibility", "wind", "clouds", "dt", "sys", "timezone", "id", "name", "cod"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"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" : 2.6, "deg" : 50}, "clouds" : {"all" : 1}, "dt" : 1591704554, "sys" : {"type" : 1, "id" : 4541, "country" : "US", "sunrise" : 1591698699, "sunset" : 1591753173}, "timezone" : -18000, "id" : 4862034, "name" : "Iowa City", "cod" : 200}
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"}, "icon": {"type": "string"}}, "required": ["id", "main", "description", "icon"]}}, "base": {"type": "string"}, "main": {"type": "object", "properties": {"temp": {"type": "number"}, "feels_like": {"type": "number"}, "temp_min": {"type": "number"}, "temp_max": {"type": "integer"}, "pressure": {"type": "integer"}, "humidity": {"type": "integer"}}, "required": ["temp", "feels_like", "temp_min", "temp_max", "pressure", "humidity"]}, "visibility": {"type": "integer"}, "wind": {"type": "object", "properties": {"speed": {"type": "number"}, "deg": {"type": "integer"}}, "required": ["speed", "deg"]}, "clouds": {"type": "object", "properties": {"all": {"type": "integer"}}, "required": ["all"]}, "dt": {"type": "integer"}, "sys": {"type": "object", "properties": {"type": {"type": "integer"}, "id": {"type": "integer"}, "country": {"type": "string"}, "sunrise": {"type": "integer"}, "sunset": {"type": "integer"}}, "required": ["type", "id", "country", "sunrise", "sunset"]}, "timezone": {"type": "integer"}, "id": {"type": "integer"}, "name": {"type": "string"}, "cod": {"type": "integer"}}, "required": ["coord", "weather", "base", "main", "visibility", "wind", "clouds", "dt", "sys", "timezone", "id", "name", "cod"], "$schema": "http://json-schema.org/draft-07/schema#"}
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": "null"}, "countrylevel_id": {"type": "string"}, "census_data": {"type": "object", "properties": {"COUNTYNS": {"type": "string"}, "AFFGEOID": {"type": "string"}, "LSAD": {"type": "string"}, "ALAND": {"type": "integer"}, "AWATER": {"type": "integer"}}, "required": ["COUNTYNS", "AFFGEOID", "LSAD", "ALAND", "AWATER"]}}, "required": ["name", "fips", "state_code", "county_code", "population", "countrylevel_id", "census_data"]}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["type", "coordinates"]}}, "required": ["type", "properties", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"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" : {"type" : "Polygon", "coordinates" : [[[-66.296086, 18.257545], [-66.278076, 18.329974999999997], [-66.217179, 18.334194], [-66.204734, 18.316035], [-66.206135, 18.27666], [-66.227884, 18.254206], [-66.266466, 18.245269999999998], [-66.313299, 18.249323999999998], [-66.296086, 18.257545]]]}}
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": {"type": "object", "properties": {"COUNTYNS": {"type": "string"}, "AFFGEOID": {"type": "string"}, "LSAD": {"type": "string"}, "ALAND": {"type": "integer"}, "AWATER": {"type": "integer"}}, "required": ["COUNTYNS", "AFFGEOID", "LSAD", "ALAND", "AWATER"]}}, "required": ["name", "fips", "state_code", "county_code", "population", "countrylevel_id", "census_data"]}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["type", "coordinates"]}}, "required": ["type", "properties", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"}
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"}}, "required": ["description", "homepage", "license"]}, "versions": {"type": "object", "properties": {"0.3.0": {"type": "object", "properties": {"sha256": {"type": "string"}, "url": {"type": "string"}}, "required": ["sha256", "url"]}, "0.3.1": {"type": "object", "properties": {"sha256": {"type": "string"}, "url": {"type": "string"}}, "required": ["sha256", "url"]}, "0.3.2": {"type": "object", "properties": {"sha256": {"type": "string"}, "url": {"type": "string"}}, "required": ["sha256", "url"]}}, "required": ["0.3.0", "0.3.1", "0.3.2"]}}, "required": ["latest_version", "meta", "versions"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"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" : "de535e4a1bc1ff31eff82ff499f57b12cdefd3b4ff40552b26741d03ee58fea5", "url" : "https://files.pythonhosted.org/packages/ad/e2/137eeba2197ea20f74691f1a3797913dae659396dc1c1a2c9668b9176af8/StringConvert-0.3.0.tar.gz"}, "0.3.1" : {"sha256" : "65f6beaf203fa31ad85e16cd370be65bafda2941d5193f0f4c82f85aee7300ed", "url" : "https://files.pythonhosted.org/packages/19/7e/1a53dc0e22c77568df86e003594e75183efaeaf26d381cd75f2a294cb77d/StringConvert-0.3.1.tar.gz"}, "0.3.2" : {"sha256" : "1291d009f34c7b173fe8136c1e57a04f8393835ab376b1299e81e63d26de7f47", "url" : "https://files.pythonhosted.org/packages/2e/50/bed5025c7824edd7e44318e462123a6eeaa3b90b3dda0f6ce77fab28abba/StringConvert-0.3.2.tar.gz"}}}
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": "object", "properties": {"0.3.0": {"type": "object", "properties": {"sha256": {"type": "string"}, "url": {"type": "string"}}, "required": ["sha256", "url"]}, "0.3.1": {"type": "object", "properties": {"sha256": {"type": "string"}, "url": {"type": "string"}}, "required": ["sha256", "url"]}, "0.3.2": {"type": "object", "properties": {"sha256": {"type": "string"}, "url": {"type": "string"}}, "required": ["sha256", "url"]}}, "required": ["0.3.0", "0.3.1", "0.3.2"]}}, "required": ["latest_version", "meta", "versions"], "$schema": "http://json-schema.org/draft-07/schema#"}
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"}, "wof:id": {"type": "integer"}, "wof:repo": {"type": "string"}}, "required": ["src:alt_label", "src:geom", "wof:geomhash", "wof:id", "wof:repo"]}, "bbox": {"type": "array", "items": {"type": "number"}}, "geometry": {"type": "object", "properties": {"coordinates": {"type": "array", "items": {"type": "number"}}, "type": {"type": "string"}}, "required": ["coordinates", "type"]}}, "required": ["id", "type", "properties", "bbox", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"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.32751], "type" : "Point"}}
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": ["src:alt_label", "src:geom", "wof:geomhash", "wof:id", "wof:repo"]}, "bbox": {"type": "array", "items": {"type": "number"}}, "geometry": {"type": "object", "properties": {"coordinates": {"type": "array", "items": {"type": "number"}}, "type": {"type": "string"}}, "required": ["coordinates", "type"]}}, "required": ["id", "type", "properties", "bbox", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"}
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": {"type": "string"}}, "\uc81c\uc548\uc790": {"type": "array", "items": {"type": "string"}}, "\ubb38\uc11c": {"type": "array", "items": {"type": "string"}}, "\uc81c\uc548\ud68c\uae30": {"type": "array", "items": {"type": "string"}}}, "required": ["\uc758\uc548\ubc88\ud638", "\uc81c\uc548\uc77c\uc790", "\uc81c\uc548\uc790", "\ubb38\uc11c", "\uc81c\uc548\ud68c\uae30"]}, "\ubcf8\ud68c\uc758 \uc2ec\uc758\uc815\ubcf4": {"type": "object", "properties": {"\uc0c1\uc815\uc77c": {"type": "array", "items": {"type": "string"}}, "\uc758\uacb0\uc77c": {"type": "array", "items": {"type": "string"}}, "\ud68c\uc758\uba85": {"type": "array", "items": {"type": "string"}}, "\ud68c\uc758\uacb0\uacfc": {"type": "array", "items": {"type": "string"}}, "\ud68c\uc758\ub85d": {"type": "array", "items": {"type": "string"}}}, "required": ["\uc0c1\uc815\uc77c", "\uc758\uacb0\uc77c", "\ud68c\uc758\uba85", "\ud68c\uc758\uacb0\uacfc", "\ud68c\uc758\ub85d"]}, "parsed_date": {"type": "string"}}, "required": ["\uc758\uc548\uc811\uc218\uc815\ubcf4", "\ubcf8\ud68c\uc758 \uc2ec\uc758\uc815\ubcf4", "parsed_date"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"\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"]}, "\ubcf8\ud68c\uc758 \uc2ec\uc758\uc815\ubcf4" : {"\uc0c1\uc815\uc77c" : [""], "\uc758\uacb0\uc77c" : ["1960-09-06"], "\ud68c\uc758\uba85" : ["\uc81c37\ud68c\uc81c4\ucc28"], "\ud68c\uc758\uacb0\uacfc" : ["\uc6d0\uc548\uac00\uacb0"], "\ud68c\uc758\ub85d" : [""]}, "parsed_date" : "2021-02-17"}
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": "string"}}, "\ubb38\uc11c": {"type": "array", "items": {"type": "string"}}, "\uc81c\uc548\ud68c\uae30": {"type": "array", "items": {"type": "string"}}}, "required": ["\uc758\uc548\ubc88\ud638", "\uc81c\uc548\uc77c\uc790", "\uc81c\uc548\uc790", "\ubb38\uc11c", "\uc81c\uc548\ud68c\uae30"]}, "\ubcf8\ud68c\uc758 \uc2ec\uc758\uc815\ubcf4": {"type": "object", "properties": {"\uc0c1\uc815\uc77c": {"type": "array", "items": {"type": "string"}}, "\uc758\uacb0\uc77c": {"type": "array", "items": {"type": "string"}}, "\ud68c\uc758\uba85": {"type": "array", "items": {"type": "string"}}, "\ud68c\uc758\uacb0\uacfc": {"type": "array", "items": {"type": "string"}}, "\ud68c\uc758\ub85d": {"type": "array", "items": {"type": "string"}}}, "required": ["\uc0c1\uc815\uc77c", "\uc758\uacb0\uc77c", "\ud68c\uc758\uba85", "\ud68c\uc758\uacb0\uacfc", "\ud68c\uc758\ub85d"]}, "parsed_date": {"type": "string"}}, "required": ["\uc758\uc548\uc811\uc218\uc815\ubcf4", "\ubcf8\ud68c\uc758 \uc2ec\uc758\uc815\ubcf4", "parsed_date"], "$schema": "http://json-schema.org/draft-07/schema#"}
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": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["type", "coordinates"]}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"cartodb_id": {"type": "integer"}}, "required": ["cartodb_id"]}}, "required": ["geometry", "type", "properties"]}}}, "required": ["type", "features"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"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], [-81.002829, 34.003325], [-81.004345, 33.987424], [-81.00727, 33.986681], [-81.011861, 33.990632], [-81.01591, 33.998891]]]}, "type" : "Feature", "properties" : {"cartodb_id" : 57692}}]}
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": "number"}}}}}, "required": ["type", "coordinates"]}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"cartodb_id": {"type": "integer"}}, "required": ["cartodb_id"]}}, "required": ["geometry", "type", "properties"]}}}, "required": ["type", "features"], "$schema": "http://json-schema.org/draft-07/schema#"}
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"}, "town": {"type": "string"}, "longitude": {"type": "number"}, "latitude": {"type": "number"}, "status": {"type": "integer"}}, "required": ["stationId", "stationGroupId", "name", "lineId", "zipCode", "pref", "city", "town", "longitude", "latitude", "status"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"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"}, "latitude": {"type": "number"}, "status": {"type": "integer"}}, "required": ["stationId", "stationGroupId", "name", "lineId", "zipCode", "pref", "city", "town", "longitude", "latitude", "status"], "$schema": "http://json-schema.org/draft-07/schema#"}
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": ["syntax", "tsx", "decorators", "dynamicImport"]}, "target": {"type": "string"}}, "required": ["parser", "target"]}}, "required": ["jsc"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"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"]}, "target": {"type": "string"}}, "required": ["parser", "target"]}}, "required": ["jsc"], "$schema": "http://json-schema.org/draft-07/schema#"}
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": "http://json-schema.org/draft-07/schema#"}
{"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_REDIRECT_PENDING": {"type": "string"}}, "required": ["FIELD_HEADER_ID_TOKEN", "INFO_OID_REDIRECT_PENDING"]}}, "required": ["DATA_SOURCE_OPENID", "LOGIN"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"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", "INFO_OID_REDIRECT_PENDING"]}}, "required": ["DATA_SOURCE_OPENID", "LOGIN"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "array", "items": {"type": "object", "properties": {"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#"}
[{"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", "n" : 10, "prop" : 5.01e-06}, {"year" : 1998, "sex" : "M", "n" : 14, "prop" : 6.91e-06}, {"year" : 1999, "sex" : "M", "n" : 6, "prop" : 2.94e-06}, {"year" : 2000, "sex" : "M", "n" : 7, "prop" : 3.35e-06}, {"year" : 2001, "sex" : "M", "n" : 5, "prop" : 2.42e-06}, {"year" : 2002, "sex" : "M", "n" : 5, "prop" : 2.42e-06}, {"year" : 2003, "sex" : "M", "n" : 8, "prop" : 3.81e-06}, {"year" : 2004, "sex" : "M", "n" : 6, "prop" : 2.84e-06}, {"year" : 2005, "sex" : "M", "n" : 7, "prop" : 3.29e-06}, {"year" : 2006, "sex" : "M", "n" : 13, "prop" : 5.93e-06}, {"year" : 2007, "sex" : "M", "n" : 9, "prop" : 4.07e-06}, {"year" : 2008, "sex" : "M", "n" : 13, "prop" : 5.97e-06}, {"year" : 2009, "sex" : "M", "n" : 9, "prop" : 4.25e-06}, {"year" : 2010, "sex" : "M", "n" : 7, "prop" : 3.41e-06}, {"year" : 2011, "sex" : "M", "n" : 12, "prop" : 5.92e-06}, {"year" : 2012, "sex" : "M", "n" : 7, "prop" : 3.46e-06}, {"year" : 2013, "sex" : "M", "n" : 8, "prop" : 3.97e-06}, {"year" : 2014, "sex" : "M", "n" : 7, "prop" : 3.42e-06}, {"year" : 2015, "sex" : "M", "n" : 10, "prop" : 4.91e-06}, {"year" : 2016, "sex" : "M", "n" : 14, "prop" : 6.94e-06}, {"year" : 2017, "sex" : "M", "n" : 13, "prop" : 6.62e-06}]
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", "\\.ica", "\\.inf", "\\.ini", "\\.java", "\\.json", "\\.key", "\\.log", "\\.lst", "\\.mai", "\\.mbox", "\\.mbx", "\\.md", "\\.mdb", "\\.nsf", "\\.old", "\\.ora", "\\.pac", "\\.passwd", "\\.pcf", "\\.pdf", "\\.pem", "\\.pgp", "\\.pl", " plist", "\\.pwd", "\\.rdp", "\\.reg", "\\.rtf", "\\.skr", "\\.sql", "\\.swf", "\\.tpl", "\\.txt", "\\.url", "\\.wml", "\\.xls", "\\.xlsx", "\\.xml", "\\.xsd", "\\.yml"]}
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"}, "immutable": {"type": "string"}, "js-cookie": {"type": "string"}, "rc-tween-one": {"type": "string"}, "react": {"type": "string"}, "react-app-rewire-less": {"type": "string"}, "react-dom": {"type": "string"}, "react-scripts": {"type": "string"}, "webpack": {"type": "string"}}, "required": ["antd", "axios", "events", "immutable", "js-cookie", "rc-tween-one", "react", "react-app-rewire-less", "react-dom", "react-scripts", "webpack"]}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}, "build": {"type": "string"}, "test": {"type": "string"}, "eject": {"type": "string"}}, "required": ["start", "build", "test", "eject"]}, "devDependencies": {"type": "object", "properties": {"babel-plugin-import": {"type": "string"}, "react-app-rewired": {"type": "string"}}, "required": ["babel-plugin-import", "react-app-rewired"]}}, "required": ["name", "version", "private", "dependencies", "scripts", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"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", "webpack" : "^3.10.0"}, "scripts" : {"start" : "set PORT=3000&&react-app-rewired start", "build" : "react-app-rewired build", "test" : "react-app-rewired test --env=jsdom", "eject" : "react-app-rewired eject"}, "devDependencies" : {"babel-plugin-import" : "^1.6.3", "react-app-rewired" : "^1.4.1"}}
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": "string"}, "rc-tween-one": {"type": "string"}, "react": {"type": "string"}, "react-app-rewire-less": {"type": "string"}, "react-dom": {"type": "string"}, "react-scripts": {"type": "string"}, "webpack": {"type": "string"}}, "required": ["antd", "axios", "events", "immutable", "js-cookie", "rc-tween-one", "react", "react-app-rewire-less", "react-dom", "react-scripts", "webpack"]}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}, "build": {"type": "string"}, "test": {"type": "string"}, "eject": {"type": "string"}}, "required": ["start", "build", "test", "eject"]}, "devDependencies": {"type": "object", "properties": {"babel-plugin-import": {"type": "string"}, "react-app-rewired": {"type": "string"}}, "required": ["babel-plugin-import", "react-app-rewired"]}}, "required": ["name", "version", "private", "dependencies", "scripts", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
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": "integer"}, "exp": {"type": "integer"}, "res": {"type": "array", "items": {"type": "object", "properties": {"nuance": {"type": "string"}, "nom": {"type": "string"}, "voix": {"type": "integer"}}, "required": ["nuance", "nom", "voix"]}}}, "required": ["nom", "circ", "dpt", "inscrits", "abs", "votants", "blancs", "nuls", "exp", "res"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"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}, {"nuance" : "FN", "nom" : "Mme Christine BISSON", "voix" : 93}, {"nuance" : "DVG", "nom" : "Mme Isabelle ATTARD", "voix" : 86}, {"nuance" : "ECO", "nom" : "M. Christophe SADY", "voix" : 9}, {"nuance" : "EXG", "nom" : "Mme Isabelle PELTRE", "voix" : 6}, {"nuance" : "DLF", "nom" : "M. Eric BEAUDOIN", "voix" : 5}, {"nuance" : "DIV", "nom" : "M. Simon GERVAIS", "voix" : 4}, {"nuance" : "DVG", "nom" : "M. Yves ROUILL\u00c9", "voix" : 1}]}
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", "items": {"type": "object", "properties": {"nuance": {"type": "string"}, "nom": {"type": "string"}, "voix": {"type": "integer"}}, "required": ["nuance", "nom", "voix"]}}}, "required": ["nom", "circ", "dpt", "inscrits", "abs", "votants", "blancs", "nuls", "exp", "res"], "$schema": "http://json-schema.org/draft-07/schema#"}
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-schema.org/draft-07/schema#"}
{"*" : {"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": "string"}, "532530207": {"type": "string"}, "532530208": {"type": "string"}, "532530209": {"type": "string"}, "532530210": {"type": "string"}, "532530211": {"type": "string"}, "532530212": {"type": "string"}}, "required": ["532530101", "532530102", "532530202", "532530203", "532530204", "532530205", "532530206", "532530207", "532530208", "532530209", "532530210", "532530211", "532530212"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"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\u4e61", "532530208" : "\u5927\u5be8\u4e61", "532530209" : "\u9a6c\u978d\u5e95\u4e61", "532530210" : "\u52d0\u6865\u4e61", "532530211" : "\u8425\u76d8\u4e61", "532530212" : "\u8001\u52d0\u4e61"}
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": "string"}, "532530209": {"type": "string"}, "532530210": {"type": "string"}, "532530211": {"type": "string"}, "532530212": {"type": "string"}}, "required": ["532530101", "532530102", "532530202", "532530203", "532530204", "532530205", "532530206", "532530207", "532530208", "532530209", "532530210", "532530211", "532530212"], "$schema": "http://json-schema.org/draft-07/schema#"}
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"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"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": "string"}}, "frameworks": {"type": "string"}, "keywords": {"type": "string"}, "name": {"type": "string"}, "platforms": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}}, "required": ["authors", "description", "examples", "frameworks", "keywords", "name", "platforms", "repository"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"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/austinterrell/code/GT511C3/"], "frameworks" : "mbed", "keywords" : "GT511C3", "name" : "GT511C3", "platforms" : "*", "repository" : {"type" : "hg", "url" : "https://os.mbed.com/users/beanmachine44/code/GT511C3/"}}
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": "string"}, "name": {"type": "string"}, "platforms": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}}, "required": ["authors", "description", "examples", "frameworks", "keywords", "name", "platforms", "repository"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "license": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"browser-sync": {"type": "string"}, "css-mqpacker": {"type": "string"}, "del": {"type": "string"}, "gulp": {"type": "string"}, "gulp-file-include": {"type": "string"}, "gulp-ftp": {"type": "string"}, "gulp-imagemin": {"type": "string"}, "gulp-inline-css": {"type": "string"}, "gulp-jade": {"type": "string"}, "gulp-plumber": {"type": "string"}, "gulp-postcss": {"type": "string"}, "gulp-replace": {"type": "string"}, "gulp-sass": {"type": "string"}, "require-dir": {"type": "string"}, "run-sequence": {"type": "string"}}, "required": ["browser-sync", "css-mqpacker", "del", "gulp", "gulp-file-include", "gulp-ftp", "gulp-imagemin", "gulp-inline-css", "gulp-jade", "gulp-plumber", "gulp-postcss", "gulp-replace", "gulp-sass", "require-dir", "run-sequence"]}}, "required": ["name", "version", "description", "repository", "license", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"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" : "^2.4.0", "gulp-inline-css" : "^3.1.0", "gulp-jade" : "^1.1.0", "gulp-plumber" : "^1.1.0", "gulp-postcss" : "^6.1.0", "gulp-replace" : "^0.5.4", "gulp-sass" : "^2.2.0", "require-dir" : "^0.3.0", "run-sequence" : "^1.1.5"}}
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": "object", "properties": {"browser-sync": {"type": "string"}, "css-mqpacker": {"type": "string"}, "del": {"type": "string"}, "gulp": {"type": "string"}, "gulp-file-include": {"type": "string"}, "gulp-ftp": {"type": "string"}, "gulp-imagemin": {"type": "string"}, "gulp-inline-css": {"type": "string"}, "gulp-jade": {"type": "string"}, "gulp-plumber": {"type": "string"}, "gulp-postcss": {"type": "string"}, "gulp-replace": {"type": "string"}, "gulp-sass": {"type": "string"}, "require-dir": {"type": "string"}, "run-sequence": {"type": "string"}}, "required": ["browser-sync", "css-mqpacker", "del", "gulp", "gulp-file-include", "gulp-ftp", "gulp-imagemin", "gulp-inline-css", "gulp-jade", "gulp-plumber", "gulp-postcss", "gulp-replace", "gulp-sass", "require-dir", "run-sequence"]}}, "required": ["name", "version", "description", "repository", "license", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
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 synthase": {"type": "string"}, "gltA": {"type": "string"}, "Q9RH43": {"type": "string"}, "RPOB_RICMA": {"type": "string"}, "DNA-directed RNA polymerase subunit beta": {"type": "string"}, "rpoB": {"type": "string"}}, "required": ["RNA polymerase subunit beta", "Transcriptase subunit beta", "RNAP subunit beta", "Q59748", "CISY_RICMA", "Citrate synthase", "gltA", "Q9RH43", "RPOB_RICMA", "DNA-directed RNA polymerase subunit beta", "rpoB"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"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" : "Q9RH43"}
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": {"type": "string"}, "RPOB_RICMA": {"type": "string"}, "DNA-directed RNA polymerase subunit beta": {"type": "string"}, "rpoB": {"type": "string"}}, "required": ["RNA polymerase subunit beta", "Transcriptase subunit beta", "RNAP subunit beta", "Q59748", "CISY_RICMA", "Citrate synthase", "gltA", "Q9RH43", "RPOB_RICMA", "DNA-directed RNA polymerase subunit beta", "rpoB"], "$schema": "http://json-schema.org/draft-07/schema#"}
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": "string"}}, "extensions": {"type": "object", "properties": {"website": {"type": "string"}, "twitter": {"type": "string"}}, "required": ["website", "twitter"]}}, "required": ["name", "symbol", "logoURI", "decimals", "address", "chainId", "tags", "extensions"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"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://twitter.com/ManiakNFT1"}}
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": {"website": {"type": "string"}, "twitter": {"type": "string"}}, "required": ["website", "twitter"]}}, "required": ["name", "symbol", "logoURI", "decimals", "address", "chainId", "tags", "extensions"], "$schema": "http://json-schema.org/draft-07/schema#"}
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/css/select2.css", "/assets/js/scripts.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"/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-schema.org/draft-07/schema#"}
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", "items": {"type": "string"}}, "title": {"type": "string"}, "year": {"type": "string"}}, "required": ["author", "classification", "keywords", "period", "reference", "region", "text", "title", "year"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"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", "to talk with the clock by tapping a wall", "in the solitary confinement of the universe."], "title" : "To converse with the greats", "year" : ""}
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"}, "year": {"type": "string"}}, "required": ["author", "classification", "keywords", "period", "reference", "region", "text", "title", "year"], "$schema": "http://json-schema.org/draft-07/schema#"}
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\u0442\u043e\u0440 \u043d\u0430\u0447\u0430\u043b\u044c\u043d\u043e\u0433\u043e \u0437\u043d\u0430\u0447\u0435\u043d\u0438\u044f", "status" : "check"}, {"name" : "type-modifier.md", "label" : "<b style='color: brown'>type</b>: \u041c\u043e\u0434\u0438\u0444\u0438\u043a\u0430\u0442\u043e\u0440 \u0442\u0438\u043f\u0430", "status" : "check"}, {"name" : "reflect-to-attribute-modifier.md", "label" : "<b style='color: brown'>reflectToAttribute</b>: \u041c\u043e\u0434\u0438\u0444\u0438\u043a\u0430\u0442\u043e\u0440 \u0430\u0442\u0440\u0438\u0431\u0443\u0442\u043e\u0432 \u0445\u043e\u0441\u0442\u0430", "status" : "check"}, {"name" : "reactive-modifier.md", "label" : "<b style='color: brown'>reactive</b>: \u041c\u043e\u0434\u0438\u0444\u0438\u043a\u0430\u0442\u043e\u0440 \u0440\u0435\u0430\u043a\u0442\u0438\u0432\u043d\u043e\u0441\u0442\u0438", "status" : "edit"}, {"name" : "freeze-modifier.md", "label" : "<b style='color: brown'>freeze</b>: \u041c\u043e\u0434\u0438\u0444\u0438\u043a\u0430\u0442\u043e\u0440 \u0431\u043b\u043e\u043a\u0438\u0440\u043e\u0432\u043a\u0438 \u0440\u0435\u0430\u043a\u0442\u0438\u0432\u043d\u043e\u0441\u0442\u0438", "status" : "edit"}, {"name" : "label-modifier.md", "label" : "<b style='color: brown'>label</b>: \u041c\u043e\u0434\u0438\u0444\u0438\u043a\u0430\u0442\u043e\u0440 \u0438\u043c\u0435\u043d\u0438", "status" : "check"}, {"name" : "category-modifier.md", "label" : "<b style='color: brown'>category</b>: \u041c\u043e\u0434\u0438\u0444\u0438\u043a\u0430\u0442\u043e\u0440 \u0433\u0440\u0443\u043f\u043f\u044b", "status" : "check"}, {"name" : "list-modifier.md", "label" : "<b style='color: brown'>list</b>: \u041c\u043e\u0434\u0438\u0444\u0438\u043a\u0430\u0442\u043e\u0440 \u0441\u043f\u0438\u0441\u043a\u0430 \u0437\u043d\u0430\u0447\u0435\u043d\u0438\u0439", "status" : "check"}, {"name" : "shared-modifier.md", "label" : "<b style='color: brown'>shared</b>: \u041c\u043e\u0434\u0438\u0444\u0438\u043a\u0430\u0442\u043e\u0440 \u0441\u043a\u0432\u043e\u0437\u043d\u043e\u0433\u043e \u0431\u0438\u043d\u0434\u0438\u043d\u0433\u0430", "status" : "check"}]
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": "string"}, "vending": {"type": "string"}, "website": {"type": "string"}, "id": {"type": "string"}}, "required": ["amenity", "note", "operator", "payment:coins", "vending", "website", "id"]}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "number"}}}, "required": ["type", "coordinates"]}}, "required": ["type", "id", "properties", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"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" : {"type" : "Point", "coordinates" : [9.959296, 49.8529321]}}
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": "string"}, "id": {"type": "string"}}, "required": ["amenity", "note", "operator", "payment:coins", "vending", "website", "id"]}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "number"}}}, "required": ["type", "coordinates"]}}, "required": ["type", "id", "properties", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"}
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", "properties": {"type": {"type": "string"}, "description": {"type": "string"}, "items": {"type": "object", "properties": {"$ref": {"type": "string"}}, "required": ["$ref"]}}, "required": ["type", "description", "items"]}, "sort_orders": {"type": "object", "properties": {"type": {"type": "string"}, "description": {"type": "string"}, "items": {"type": "object", "properties": {"$ref": {"type": "string"}}, "required": ["$ref"]}}, "required": ["type", "description", "items"]}, "page_size": {"type": "object", "properties": {"type": {"type": "string"}, "description": {"type": "string"}}, "required": ["type", "description"]}, "current_page": {"type": "object", "properties": {"type": {"type": "string"}, "description": {"type": "string"}}, "required": ["type", "description"]}}, "required": ["request_name", "filter_groups", "sort_orders", "page_size", "current_page"]}, "required": {"type": "array", "items": {"type": "string"}}, "$schema": {"type": "string"}}, "required": ["type", "description", "properties", "required", "$schema"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"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" : "array", "description" : "Sort order.", "items" : {"$ref" : "_definitions.json#/definitions/framework-sort-order"}}, "page_size" : {"type" : "integer", "description" : "Page size."}, "current_page" : {"type" : "integer", "description" : "Current page."}}, "required" : ["request_name", "filter_groups"], "$schema" : "http://json-schema.org/schema#"}
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": "string"}, "description": {"type": "string"}, "items": {"type": "object", "properties": {"$ref": {"type": "string"}}, "required": ["$ref"]}}, "required": ["type", "description", "items"]}, "sort_orders": {"type": "object", "properties": {"type": {"type": "string"}, "description": {"type": "string"}, "items": {"type": "object", "properties": {"$ref": {"type": "string"}}, "required": ["$ref"]}}, "required": ["type", "description", "items"]}, "page_size": {"type": "object", "properties": {"type": {"type": "string"}, "description": {"type": "string"}}, "required": ["type", "description"]}, "current_page": {"type": "object", "properties": {"type": {"type": "string"}, "description": {"type": "string"}}, "required": ["type", "description"]}}, "required": ["request_name", "filter_groups", "sort_orders", "page_size", "current_page"]}, "required": {"type": "array", "items": {"type": "string"}}, "$schema": {"type": "string"}}, "required": ["type", "description", "properties", "required", "$schema"], "$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"}, "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"]}}, "autoload": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"ImportDetection\\": {"type": "string"}}, "required": ["ImportDetection\\"]}}, "required": ["psr-4"]}, "minimum-stability": {"type": "string"}, "prefer-stable": {"type": "boolean"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "require": {"type": "object", "properties": {"php": {"type": "string"}, "squizlabs/php_codesniffer": {"type": "string"}}, "required": ["php", "squizlabs/php_codesniffer"]}, "require-dev": {"type": "object", "properties": {"sirbrillig/phpcs-variable-analysis": {"type": "string"}, "dealerdirect/phpcodesniffer-composer-installer": {"type": "string"}, "phpunit/phpunit": {"type": "string"}, "limedeck/phpunit-detailed-printer": {"type": "string"}}, "required": ["sirbrillig/phpcs-variable-analysis", "dealerdirect/phpcodesniffer-composer-installer", "phpunit/phpunit", "limedeck/phpunit-detailed-printer"]}}, "required": ["name", "description", "type", "license", "authors", "autoload", "minimum-stability", "prefer-stable", "scripts", "require", "require-dev"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"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\\" : "ImportDetection/"}}, "minimum-stability" : "dev", "prefer-stable" : true, "scripts" : {"test" : "./vendor/bin/phpunit"}, "require" : {"php" : "^7.0", "squizlabs/php_codesniffer" : "^3.3.0"}, "require-dev" : {"sirbrillig/phpcs-variable-analysis" : "^2.0.1", "dealerdirect/phpcodesniffer-composer-installer" : "^0.6", "phpunit/phpunit" : "^6.4", "limedeck/phpunit-detailed-printer" : "^3.1"}}
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"]}}, "autoload": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"ImportDetection\\": {"type": "string"}}, "required": ["ImportDetection\\"]}}, "required": ["psr-4"]}, "minimum-stability": {"type": "string"}, "prefer-stable": {"type": "boolean"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "require": {"type": "object", "properties": {"php": {"type": "string"}, "squizlabs/php_codesniffer": {"type": "string"}}, "required": ["php", "squizlabs/php_codesniffer"]}, "require-dev": {"type": "object", "properties": {"sirbrillig/phpcs-variable-analysis": {"type": "string"}, "dealerdirect/phpcodesniffer-composer-installer": {"type": "string"}, "phpunit/phpunit": {"type": "string"}, "limedeck/phpunit-detailed-printer": {"type": "string"}}, "required": ["sirbrillig/phpcs-variable-analysis", "dealerdirect/phpcodesniffer-composer-installer", "phpunit/phpunit", "limedeck/phpunit-detailed-printer"]}}, "required": ["name", "description", "type", "license", "authors", "autoload", "minimum-stability", "prefer-stable", "scripts", "require", "require-dev"], "$schema": "http://json-schema.org/draft-07/schema#"}
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": "string"}, "public_updated_at": {"type": "string"}, "details": {"type": "object", "properties": {"facets": {"type": "array", "items": {}}, "document_noun": {"type": "string"}, "filter": {"type": "object", "properties": {"document_type": {"type": "string"}}, "required": ["document_type"]}, "format_name": {"type": "string"}, "show_summaries": {"type": "boolean"}}, "required": ["facets", "document_noun", "filter", "format_name", "show_summaries"]}, "links": {"type": "object", "properties": {"available_translations": {"type": "array", "items": {"type": "object", "properties": {"content_id": {"type": "string"}, "title": {"type": "string"}, "api_path": {"type": "string"}, "base_path": {"type": "string"}, "description": {"type": "string"}, "api_url": {"type": "string"}, "web_url": {"type": "string"}, "locale": {"type": "string"}}, "required": ["content_id", "title", "api_path", "base_path", "description", "api_url", "web_url", "locale"]}}}, "required": ["available_translations"]}, "schema_name": {"type": "string"}, "document_type": {"type": "string"}}, "required": ["content_id", "base_path", "title", "description", "need_ids", "locale", "updated_at", "public_updated_at", "details", "links", "schema_name", "document_type"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"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", "details" : {"facets" : [], "document_noun" : "report", "filter" : {"document_type" : "service_standard_report"}, "format_name" : "Service Standard Report", "show_summaries" : true}, "links" : {"available_translations" : [{"content_id" : "da025a9f-8293-4fef-869c-12445d364696", "title" : "Service Standard Reports", "api_path" : "/api/content/service-standard-reports", "base_path" : "/service-standard-reports", "description" : "A list of service standard reports", "api_url" : "https://www.gov.uk/api/content/service-standard-reports", "web_url" : "https://www.gov.uk/service-assessments", "locale" : "en"}]}, "schema_name" : "finder", "document_type" : "finder"}
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"}, "details": {"type": "object", "properties": {"facets": {"type": "array", "items": {}}, "document_noun": {"type": "string"}, "filter": {"type": "object", "properties": {"document_type": {"type": "string"}}, "required": ["document_type"]}, "format_name": {"type": "string"}, "show_summaries": {"type": "boolean"}}, "required": ["facets", "document_noun", "filter", "format_name", "show_summaries"]}, "links": {"type": "object", "properties": {"available_translations": {"type": "array", "items": {"type": "object", "properties": {"content_id": {"type": "string"}, "title": {"type": "string"}, "api_path": {"type": "string"}, "base_path": {"type": "string"}, "description": {"type": "string"}, "api_url": {"type": "string"}, "web_url": {"type": "string"}, "locale": {"type": "string"}}, "required": ["content_id", "title", "api_path", "base_path", "description", "api_url", "web_url", "locale"]}}}, "required": ["available_translations"]}, "schema_name": {"type": "string"}, "document_type": {"type": "string"}}, "required": ["content_id", "base_path", "title", "description", "need_ids", "locale", "updated_at", "public_updated_at", "details", "links", "schema_name", "document_type"], "$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"}, "rarity": {"type": "array", "items": {}}, "1pc": {"type": "string"}, "circlet": {"type": "object", "properties": {"name": {"type": "string"}, "relictype": {"type": "string"}, "description": {"type": "string"}}, "required": ["name", "relictype", "description"]}}, "required": ["name", "rarity", "1pc", "circlet"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"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. En el pasado, el viento sol\u00eda pasar a trav\u00e9s de los espacios vac\u00edos de la corona."}}
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"]}}, "required": ["name", "rarity", "1pc", "circlet"], "$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"}, "description": {"type": "string"}, "dependencies": {"type": "object", "properties": {"bootstrap": {"type": "string"}, "font-awesome": {"type": "string"}, "chosen": {"type": "string"}, "bootstrap-chosen": {"type": "string"}, "clockpicker": {"type": "string"}, "fontawesome-iconpicker": {"type": "string"}, "bootstrap-growl": {"type": "string"}}, "required": ["bootstrap", "font-awesome", "chosen", "bootstrap-chosen", "clockpicker", "fontawesome-iconpicker", "bootstrap-growl"]}, "authors": {"type": "array", "items": {"type": "string"}}, "license": {"type": "string"}}, "required": ["name", "description", "dependencies", "authors", "license"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"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@gmail.com>"], "license" : "MIT"}
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"}, "fontawesome-iconpicker": {"type": "string"}, "bootstrap-growl": {"type": "string"}}, "required": ["bootstrap", "font-awesome", "chosen", "bootstrap-chosen", "clockpicker", "fontawesome-iconpicker", "bootstrap-growl"]}, "authors": {"type": "array", "items": {"type": "string"}}, "license": {"type": "string"}}, "required": ["name", "description", "dependencies", "authors", "license"], "$schema": "http://json-schema.org/draft-07/schema#"}
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"}}, "location": {"type": "string"}, "wayto": {"type": "object", "properties": {"4740": {"type": "string"}}, "required": ["4740"]}, "timeto": {"type": "object", "properties": {"4740": {"type": "number"}}, "required": ["4740"]}, "image": {"type": "string"}, "image_coords": {"type": "array", "items": {"type": "integer"}}}, "required": ["id", "title", "description", "paths", "location", "wayto", "timeto", "image", "image_coords"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"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 leaves as if infected with a foul contagion. The area around the base of the young oak is raised slightly, as if the small tree had been placed on a pedestal as a thing of some importance."], "paths" : ["Obvious paths: west"], "location" : "Gyldemar Forest", "wayto" : {"4740" : "west"}, "timeto" : {"4740" : 0.2}, "image" : "en-gyldemar-1264234799.png", "image_coords" : [754, 1195, 764, 1205]}
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": {"type": "string"}}, "required": ["4740"]}, "timeto": {"type": "object", "properties": {"4740": {"type": "number"}}, "required": ["4740"]}, "image": {"type": "string"}, "image_coords": {"type": "array", "items": {"type": "integer"}}}, "required": ["id", "title", "description", "paths", "location", "wayto", "timeto", "image", "image_coords"], "$schema": "http://json-schema.org/draft-07/schema#"}
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", "items": {}}, "title": {"type": "string"}, "url": {"type": "string"}}, "required": ["directions", "ingredients", "language", "source", "tags", "title", "url"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"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 on each tortilla, and fold tortillas in half over contents to form quesadillas. Brush the outsides of the quesadillas with remaining oil.", "Place the quesadillas in a skillet over medium-low heat, and cook 3 minutes on each side, or until lightly browned. Cut in half and garnish with cilantro to serve."], "ingredients" : ["2 tablespoons extra virgin olive oil, divided", "1/2 pound fresh asparagus, cut into 1 1/2 inch pieces", "salt and pepper to taste", "2 (10 inch) flour tortillas", "4 ounces herbed goat cheese", "1/4 cup chopped fresh cilantro", "fresh cilantro sprigs, for garnish"], "language" : "en-US", "source" : "allrecipes.com", "tags" : [], "title" : "Asparagus and Goat Cheese Quesadillas", "url" : "http://allrecipes.com/recipe/72227/asparagus-and-goat-cheese-quesadillas/"}
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"}}, "required": ["directions", "ingredients", "language", "source", "tags", "title", "url"], "$schema": "http://json-schema.org/draft-07/schema#"}
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": "object", "properties": {"site": {"type": "string"}, "name": {"type": "string"}, "organisation": {"type": "string"}, "planning-permission-status": {"type": "string"}, "site-address": {"type": "string"}, "point": {"type": "string"}, "hectares": {"type": "string"}, "slug": {"type": "string"}, "entity": {"type": "integer"}, "entry-date": {"type": "string"}}, "required": ["site", "name", "organisation", "planning-permission-status", "site-address", "point", "hectares", "slug", "entity", "entry-date"]}}, "required": ["type", "geometry", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"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)", "hectares" : "0.032182", "slug" : "/brownfield-land/local-authority-eng/LIV/6313", "entity" : 486592, "entry-date" : "2019-11-30"}}
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": {"type": "string"}, "organisation": {"type": "string"}, "planning-permission-status": {"type": "string"}, "site-address": {"type": "string"}, "point": {"type": "string"}, "hectares": {"type": "string"}, "slug": {"type": "string"}, "entity": {"type": "integer"}, "entry-date": {"type": "string"}}, "required": ["site", "name", "organisation", "planning-permission-status", "site-address", "point", "hectares", "slug", "entity", "entry-date"]}}, "required": ["type", "geometry", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"}
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"}, "REDIS_CACHE_HOST_PORT": {"type": "string"}}, "required": ["FUNCTIONS_WORKER_RUNTIME", "DOTNET_CLI_TELEMETRY_OPTOUT", "REDIS_CACHE_HOST_NAME", "REDIS_CACHE_HOST_PORT"]}}, "required": ["IsEncrypted", "Values"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"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": ["FUNCTIONS_WORKER_RUNTIME", "DOTNET_CLI_TELEMETRY_OPTOUT", "REDIS_CACHE_HOST_NAME", "REDIS_CACHE_HOST_PORT"]}}, "required": ["IsEncrypted", "Values"], "$schema": "http://json-schema.org/draft-07/schema#"}
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": ["d"]}}, "stem": {"type": "string"}}, "required": ["t", "h", "stem"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"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"], "$schema": "http://json-schema.org/draft-07/schema#"}
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": "string"}, "url": {"type": "string"}, "source": {"type": "string"}, "source_url": {"type": "string"}, "licence": {"type": "string"}, "language": {"type": "string"}, "type": {"type": "string"}, "description": {"type": "string"}, "text": {"type": "string"}}, "required": ["authors", "doi", "publication_date", "id", "url", "source", "source_url", "licence", "language", "type", "description", "text"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"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" : "en", "type" : "pubmed", "description" : "", "text" : "A 60-year-old man presented with obstructive airway symptoms due to recurrent tracheal schwannoma. Due the recurrence, size of the tumor and low surgical risk, the patient was treated with tracheal resection."}
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_url": {"type": "string"}, "licence": {"type": "string"}, "language": {"type": "string"}, "type": {"type": "string"}, "description": {"type": "string"}, "text": {"type": "string"}}, "required": ["authors", "doi", "publication_date", "id", "url", "source", "source_url", "licence", "language", "type", "description", "text"], "$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"}, "displayName": {"type": "string"}, "description": {"type": "string"}, "version": {"type": "string"}, "publisher": {"type": "string"}, "engines": {"type": "object", "properties": {"vscode": {"type": "string"}}, "required": ["vscode"]}, "categories": {"type": "array", "items": {"type": "string"}}, "galleryBanner": {"type": "object", "properties": {"color": {"type": "string"}, "theme": {"type": "string"}}, "required": ["color", "theme"]}, "icon": {"type": "string"}, "homepage": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "license": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "extensionDependencies": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "displayName", "description", "version", "publisher", "engines", "categories", "galleryBanner", "icon", "homepage", "bugs", "license", "repository", "extensionDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"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/Microsoft/vscode-extension-samples/blob/master/README.md", "bugs" : {"url" : "https://github.com/Microsoft/vscode-extension-samples/issues"}, "license" : "SEE LICENSE IN LICENSE.md", "repository" : {"type" : "git", "url" : "https://github.com/Microsoft/vscode-extension-samples"}, "extensionDependencies" : ["sandy081.999-pack3", "lukehoban.Go", "dbaeumer.vscode-eslint", "eg2.tslint"]}
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": "array", "items": {"type": "string"}}, "galleryBanner": {"type": "object", "properties": {"color": {"type": "string"}, "theme": {"type": "string"}}, "required": ["color", "theme"]}, "icon": {"type": "string"}, "homepage": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "license": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "extensionDependencies": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "displayName", "description", "version", "publisher", "engines", "categories", "galleryBanner", "icon", "homepage", "bugs", "license", "repository", "extensionDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
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-schema.org/draft-07/schema#"}
{"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/draft-07/schema#"}
{"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": {"type": "integer"}, "date": {"type": "string"}, "Summary": {"type": "string"}, "text": {"type": "string"}}, "required": ["Id", "ProductId", "UserId", "ProfileName", "HelpfulnessNumerator", "HelpfulnessDenominator", "Score", "date", "Summary", "text"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"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 price, not for the name. But both my husband and I were surprised that we really did enjoy the flavor and aroma without noticing a bitter after-taste. We are by no means coffee experts, we just drink our morning cup to get us going. We've tried different brands and don't usually give much care either way, except for flavored coffees which we usually avoid due to bitterness. They always smell so nice, but the taste, yuck. So maybe there is something to the Starbucks brand, it was good coffee, and I'll have to try some other flavors to see if they stand up to our taste testing as well.<br /><br />I should note that we make our coffee using an aero press which helps in taking much of the bitter taste out of coffee and we usually drink our coffee with just skim milk."}
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": {"type": "string"}, "text": {"type": "string"}}, "required": ["Id", "ProductId", "UserId", "ProfileName", "HelpfulnessNumerator", "HelpfulnessDenominator", "Score", "date", "Summary", "text"], "$schema": "http://json-schema.org/draft-07/schema#"}
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": {"type": "string"}, "an3.152:2.3": {"type": "string"}}, "required": ["an3.152:0.1", "an3.152:0.2", "an3.152:0.3", "an3.152:1.1", "an3.152:1.2", "an3.152:2.1", "an3.152:2.2", "an3.152:2.3"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"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'>{}</p></article>"}
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"}}, "required": ["an3.152:0.1", "an3.152:0.2", "an3.152:0.3", "an3.152:1.1", "an3.152:1.2", "an3.152:2.1", "an3.152:2.2", "an3.152:2.3"], "$schema": "http://json-schema.org/draft-07/schema#"}
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_timedate_stamp": {"type": "integer"}, "pe_timedate_human": {"type": "string"}, "ImageDLLImports": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "imports": {"type": "integer"}, "functions": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "imports", "functions"]}}, "ImageDLLExports": {"type": "object", "properties": {"exports": {"type": "integer"}, "functions": {"type": "array", "items": {}}}, "required": ["exports", "functions"]}, "ImageHashSignatures": {"type": "object", "properties": {"md5": {"type": "string"}, "sha2": {"type": "string"}}, "required": ["md5", "sha2"]}}, "required": ["pe_name", "pe_type", "pe_size", "pe_subsystem", "pe_subsystem_caption", "pe_path", "pe_timedate_stamp", "pe_timedate_human", "ImageDLLImports", "ImageDLLExports", "ImageHashSignatures"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"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\\Microsoft.Windows.Diagnosis.SDHost.dll", "pe_timedate_stamp" : 3215762103, "pe_timedate_human" : "2071-11-26T11:15:03.000Z", "ImageDLLImports" : [{"name" : "mscoree.dll", "imports" : 1, "functions" : ["_CorDllMain"]}], "ImageDLLExports" : {"exports" : 0, "functions" : []}, "ImageHashSignatures" : {"md5" : "411c85fa231c6c6210607755e549de2b", "sha2" : "37080ee2e19ccf739132725c0d743e8e752d78b90ba90e9f5e7088697da9a80e"}}
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"}, "ImageDLLImports": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "imports": {"type": "integer"}, "functions": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "imports", "functions"]}}, "ImageDLLExports": {"type": "object", "properties": {"exports": {"type": "integer"}, "functions": {"type": "array", "items": {}}}, "required": ["exports", "functions"]}, "ImageHashSignatures": {"type": "object", "properties": {"md5": {"type": "string"}, "sha2": {"type": "string"}}, "required": ["md5", "sha2"]}}, "required": ["pe_name", "pe_type", "pe_size", "pe_subsystem", "pe_subsystem_caption", "pe_path", "pe_timedate_stamp", "pe_timedate_human", "ImageDLLImports", "ImageDLLExports", "ImageHashSignatures"], "$schema": "http://json-schema.org/draft-07/schema#"}
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", "text" : "\u674f\u6cc9\u6751\u59d4\u4f1a"}, {"id" : "141130202205", "text" : "\u90ed\u5bb6\u638c\u6751\u59d4\u4f1a"}, {"id" : "141130202206", "text" : "\u767d\u5151\u5e84\u6751\u59d4\u4f1a"}, {"id" : "141130202207", "text" : "\u54cd\u4e49\u6751\u59d4\u4f1a"}, {"id" : "141130202209", "text" : "\u960e\u5bb6\u5c71\u6751\u59d4\u4f1a"}, {"id" : "141130202210", "text" : "\u524d\u52a1\u57ce\u6751\u59d4\u4f1a"}, {"id" : "141130202211", "text" : "\u77f3\u5cad\u540e\u6751\u59d4\u4f1a"}]
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"}}, "required": ["jquery.imagemapster.js", "jquery.imagemapster.min.js", "jquery.imagemapster.zepto.js", "jquery.imagemapster.zepto.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"jquery.imagemapster.js" : "sha512-cpMx2tMC8g9QilwXFVFqVT5TWkvfq/xEaOspfF1FUUUJy5mL6As50+uh3yOoVlu1bKwsJrUthuEzC1m6WquRKw==", "jquery.imagemapster.min.js" : "sha512-RsXNh99DGEzAhsjz5toI7hsVEYqGtDLCd0oC8BYAFTPAYT7bv47uqKIPU4bn8PWV+dbYI1TXz4bpUghS85p7Vw==", "jquery.imagemapster.zepto.js" : "sha512-jygF5ijlMlwJWei7MlsEDj8QnAvxQZI4zHw/lekYr3Q0t9bq7rw6ZALvN7fCf3Ux75rSphs9Ly+HgcHWoKk9Jg==", "jquery.imagemapster.zepto.min.js" : "sha512-xjXOY8yXkp1oD2Ksnrtp6a8Go614YJ73LXhtiwpEIn+cq//zZKIuIxWneA6HGQfoBllsTPCgW49SNWxkNaFyrQ=="}
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.imagemapster.zepto.js", "jquery.imagemapster.zepto.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
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", "items": {"type": "string"}}, "conf": {"type": "string"}, "authors": {"type": "array", "items": {"type": "string"}}, "pages": {"type": "integer"}}, "required": ["title", "fields", "abstract", "citation", "year", "departments", "conf", "authors", "pages"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"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 query results with lots of tuples to users in more informative ways. We present QAGView (Quick AGgregate View), which provides a holistic overview of high-valued aggregate query answers to the user in the form of summaries (showing high-level properties that emerge from subsets of answers) with coverage guarantee (for a user-specified number of top-valued answers) that is both diverse (avoiding overlapping or similar summaries) and relevant (focusing on high-valued aggregate answers). QAGView allows users to view the high-level summaries as clusters, and to expand individual clusters for their constituent result tuples. Users can fine-tune the behavior of QAGView by specifying a number of parameters according their preference. To help users choose appropriate parameters interactively, QAGView employ a suite of optimizations that enable quick preview of how the quality of the summaries changes over wide ranges of parameter settings, as well as real-time visualization of how the summaries evolve in response to parameter updates.", "citation" : "Not cited", "year" : "2018", "departments" : ["Duke University", "Duke University", "Duke University", "Duke University"], "conf" : "sigmod", "authors" : ["Yuhao Wen.....http://dblp.org/pers/hd/w/Wen:Yuhao", "Xiaodan Zhu.....http://dblp.org/pers/hd/z/Zhu:Xiaodan", "Sudeepa Roy.....http://dblp.org/pers/hd/r/Roy:Sudeepa", "Jun Yang.....http://dblp.org/pers/hd/y/Yang_0001:Jun"], "pages" : 4}
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": {"type": "array", "items": {"type": "string"}}, "pages": {"type": "integer"}}, "required": ["title", "fields", "abstract", "citation", "year", "departments", "conf", "authors", "pages"], "$schema": "http://json-schema.org/draft-07/schema#"}
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://json-schema.org/draft-07/schema#"}
{"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"}}, "required": ["start", "rebuild"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "dependencies": {"type": "object", "properties": {"node-pty": {"type": "string"}, "xterm": {"type": "string"}, "xterm-addon-fit": {"type": "string"}}, "required": ["node-pty", "xterm", "xterm-addon-fit"]}, "devDependencies": {"type": "object", "properties": {"electron": {"type": "string"}, "electron-rebuild": {"type": "string"}}, "required": ["electron", "electron-rebuild"]}}, "required": ["name", "version", "description", "main", "scripts", "repository", "keywords", "author", "license", "bugs", "homepage", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"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" : ["electron", "electron app", "xterm", "electron terminal"], "author" : "DroidXrX <droidxrx@gmail.com> (https://github.com/droidxrx)", "license" : "MIT", "bugs" : {"url" : "https://github.com/droidxrx/electron-terminal/issues"}, "homepage" : "https://github.com/droidxrx/electron-terminal#readme", "dependencies" : {"node-pty" : "^0.10.1", "xterm" : "^4.13.0", "xterm-addon-fit" : "^0.5.0"}, "devDependencies" : {"electron" : "^13.1.7", "electron-rebuild" : "^2.3.5"}}
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": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "dependencies": {"type": "object", "properties": {"node-pty": {"type": "string"}, "xterm": {"type": "string"}, "xterm-addon-fit": {"type": "string"}}, "required": ["node-pty", "xterm", "xterm-addon-fit"]}, "devDependencies": {"type": "object", "properties": {"electron": {"type": "string"}, "electron-rebuild": {"type": "string"}}, "required": ["electron", "electron-rebuild"]}}, "required": ["name", "version", "description", "main", "scripts", "repository", "keywords", "author", "license", "bugs", "homepage", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
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": "number"}, "length": {"type": "number"}, "angle": {"type": "number"}, "object_id": {"type": "string"}}, "required": ["center", "width", "length", "angle", "object_id"]}}}, "required": ["bounding boxes"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"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.479622506783362, "angle" : -4.700359429975049, "object_id" : "1d3"}, {"center" : {"x" : 31.983600594703987, "y" : -21.512281432840506}, "width" : 2.7628802460793067, "length" : 6.007610316470284, "angle" : 95.75941580316582, "object_id" : "1d4"}, {"center" : {"x" : 15.479570826858266, "y" : -36.49047141905713}, "width" : 2.602374371356907, "length" : 4.61061165830741, "angle" : -3.1469330140589755, "object_id" : "1d5"}]}
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"}, "object_id": {"type": "string"}}, "required": ["center", "width", "length", "angle", "object_id"]}}}, "required": ["bounding boxes"], "$schema": "http://json-schema.org/draft-07/schema#"}
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": ["name", "email", "designation", "mobile"]}}, "guideStarURL": {"type": "string"}, "name": {"type": "string"}, "primaryEmail": {"type": "string"}, "organisationType": {"type": "array", "items": {"type": "string"}}, "telephone": {"type": "array", "items": {"type": "string"}}, "mainAddrress": {"type": "object", "properties": {"state": {"type": "string"}, "address": {"type": "array", "items": {"type": "string"}}}, "required": ["state", "address"]}, "regiseredAddrress": {"type": "object", "properties": {"state": {"type": "string"}, "address": {"type": "array", "items": {"type": "string"}}}, "required": ["state", "address"]}}, "required": ["contacts", "guideStarURL", "name", "primaryEmail", "organisationType", "telephone", "mainAddrress", "regiseredAddrress"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"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"], "telephone" : ["919849746674"], "mainAddrress" : {"state" : "Andhra Pradesh", "address" : ["flat no.7-731,KAMAL HOUSE,ABM COMPOUND,NELLORE -524002,ANDHRA PRADESH-INDIA-", "NELLORE,NELLORE MANDAL,", "Sri Potti Sriramulu Nellore", "Andhra Pradesh", "524002"]}, "regiseredAddrress" : {"state" : "Andhra Pradesh", "address" : ["not provided", "NELLORE,NELLORE MANDAL,", "Sri Potti Sriramulu Nellore", "Andhra Pradesh", "524002"]}}
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": {"type": "string"}, "name": {"type": "string"}, "primaryEmail": {"type": "string"}, "organisationType": {"type": "array", "items": {"type": "string"}}, "telephone": {"type": "array", "items": {"type": "string"}}, "mainAddrress": {"type": "object", "properties": {"state": {"type": "string"}, "address": {"type": "array", "items": {"type": "string"}}}, "required": ["state", "address"]}, "regiseredAddrress": {"type": "object", "properties": {"state": {"type": "string"}, "address": {"type": "array", "items": {"type": "string"}}}, "required": ["state", "address"]}}, "required": ["contacts", "guideStarURL", "name", "primaryEmail", "organisationType", "telephone", "mainAddrress", "regiseredAddrress"], "$schema": "http://json-schema.org/draft-07/schema#"}
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.1", "patthana16.77:3.1", "patthana16.77:4.1"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"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-schema.org/draft-07/schema#"}
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"}, "AddressInfo": {"type": "object", "properties": {"ID": {"type": "integer"}, "Title": {"type": "string"}, "AddressLine1": {"type": "string"}, "Town": {"type": "string"}, "StateOrProvince": {"type": "string"}, "Postcode": {"type": "string"}, "CountryID": {"type": "integer"}, "Latitude": {"type": "number"}, "Longitude": {"type": "number"}, "AccessComments": {"type": "string"}, "DistanceUnit": {"type": "integer"}}, "required": ["ID", "Title", "AddressLine1", "Town", "StateOrProvince", "Postcode", "CountryID", "Latitude", "Longitude", "AccessComments", "DistanceUnit"]}, "Connections": {"type": "array", "items": {"type": "object", "properties": {"ID": {"type": "integer"}, "ConnectionTypeID": {"type": "integer"}, "Reference": {"type": "string"}, "LevelID": {"type": "integer"}, "Amps": {"type": "integer"}, "Voltage": {"type": "integer"}, "PowerKW": {"type": "integer"}, "CurrentTypeID": {"type": "integer"}, "Comments": {"type": "string"}}, "required": ["ID", "ConnectionTypeID", "Reference", "LevelID", "Amps", "Voltage", "PowerKW", "CurrentTypeID", "Comments"]}}, "NumberOfPoints": {"type": "integer"}, "StatusTypeID": {"type": "integer"}, "DateLastStatusUpdate": {"type": "string"}, "DataQualityLevel": {"type": "integer"}, "DateCreated": {"type": "string"}, "SubmissionStatusTypeID": {"type": "integer"}}, "required": ["IsRecentlyVerified", "ID", "UUID", "DataProviderID", "OperatorID", "UsageTypeID", "AddressInfo", "Connections", "NumberOfPoints", "StatusTypeID", "DateLastStatusUpdate", "DataQualityLevel", "DateCreated", "SubmissionStatusTypeID"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"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\u00d6TLAND", "Postcode" : "58330", "CountryID" : 216, "Latitude" : 58.394991, "Longitude" : 15.559265, "AccessComments" : "", "DistanceUnit" : 0}, "Connections" : [{"ID" : 221751, "ConnectionTypeID" : 25, "Reference" : "1", "LevelID" : 3, "Amps" : 32, "Voltage" : 400, "PowerKW" : 22, "CurrentTypeID" : 30, "Comments" : "Mode 3"}, {"ID" : 221752, "ConnectionTypeID" : 25, "Reference" : "2", "LevelID" : 3, "Amps" : 32, "Voltage" : 400, "PowerKW" : 22, "CurrentTypeID" : 30, "Comments" : "Mode 3"}, {"ID" : 221753, "ConnectionTypeID" : 25, "Reference" : "3", "LevelID" : 3, "Amps" : 32, "Voltage" : 400, "PowerKW" : 22, "CurrentTypeID" : 30, "Comments" : "Mode 3"}, {"ID" : 221754, "ConnectionTypeID" : 25, "Reference" : "4", "LevelID" : 3, "Amps" : 32, "Voltage" : 400, "PowerKW" : 22, "CurrentTypeID" : 30, "Comments" : "Mode 3"}], "NumberOfPoints" : 8, "StatusTypeID" : 0, "DateLastStatusUpdate" : "2020-10-16T15:35:00Z", "DataQualityLevel" : 2, "DateCreated" : "2020-05-26T08:22:00Z", "SubmissionStatusTypeID" : 100}
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"}, "Title": {"type": "string"}, "AddressLine1": {"type": "string"}, "Town": {"type": "string"}, "StateOrProvince": {"type": "string"}, "Postcode": {"type": "string"}, "CountryID": {"type": "integer"}, "Latitude": {"type": "number"}, "Longitude": {"type": "number"}, "AccessComments": {"type": "string"}, "DistanceUnit": {"type": "integer"}}, "required": ["ID", "Title", "AddressLine1", "Town", "StateOrProvince", "Postcode", "CountryID", "Latitude", "Longitude", "AccessComments", "DistanceUnit"]}, "Connections": {"type": "array", "items": {"type": "object", "properties": {"ID": {"type": "integer"}, "ConnectionTypeID": {"type": "integer"}, "Reference": {"type": "string"}, "LevelID": {"type": "integer"}, "Amps": {"type": "integer"}, "Voltage": {"type": "integer"}, "PowerKW": {"type": "integer"}, "CurrentTypeID": {"type": "integer"}, "Comments": {"type": "string"}}, "required": ["ID", "ConnectionTypeID", "Reference", "LevelID", "Amps", "Voltage", "PowerKW", "CurrentTypeID", "Comments"]}}, "NumberOfPoints": {"type": "integer"}, "StatusTypeID": {"type": "integer"}, "DateLastStatusUpdate": {"type": "string"}, "DataQualityLevel": {"type": "integer"}, "DateCreated": {"type": "string"}, "SubmissionStatusTypeID": {"type": "integer"}}, "required": ["IsRecentlyVerified", "ID", "UUID", "DataProviderID", "OperatorID", "UsageTypeID", "AddressInfo", "Connections", "NumberOfPoints", "StatusTypeID", "DateLastStatusUpdate", "DataQualityLevel", "DateCreated", "SubmissionStatusTypeID"], "$schema": "http://json-schema.org/draft-07/schema#"}
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": {"type": "string"}}, "required": ["derivation", "pron", "outline", "kjv_def", "lemma", "frequency", "strongs_def", "xlit"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"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" : "\u05de\u05b7\u05d3", "frequency" : 11, "strongs_def" : "properly, extent, i.e. height; also a measure; by implication, a vesture (as measured); also a carpet", "xlit" : "mad"}
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", "outline", "kjv_def", "lemma", "frequency", "strongs_def", "xlit"], "$schema": "http://json-schema.org/draft-07/schema#"}
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": {"type": "string"}, "suffix": {"type": "string"}, "id": {"type": "integer"}, "url": {"type": "string"}}, "required": ["pic_title", "suffix", "id", "url"]}}}, "required": ["e_id", "title", "content", "picNo", "picUrl"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"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\u5c3c\u4e9a\u3002\n\t\n\n\t\u7279\u5170\u897f\u74e6\u5c3c\u4e9a\uff0c\u65e7\u5730\u533a\u540d\uff0c\u9762\u79ef\u8fd1103\uff0c600\u5e73\u65b9\u516c\u91cc\uff0c\u8d85\u8fc7\u4e86\u7f57\u9a6c\u5c3c\u4e9a\u603b\u9762\u79ef\u7684\u4e00\u534a\u3002\u6307\u7f57\u9a6c\u5c3c\u4e9a\u4e2d\u897f\u90e8\u5730\u533a\u3002\u4f4d\u4e8e\u6b27\u6d32\u4e1c\u5357\u90e8\uff0c\u4e1c\u5580\u5c14\u5df4\u9621\u5c71\u4ee5\u897f\uff0c\u591a\u7459\u6cb3\u652f\u6d41\u8482\u8428\u6cb3\u6d41\u57df\u3002\u5c45\u6c11\u9664\u7f57\u9a6c\u5c3c\u4e9a\u4eba\u5916\uff0c\u5176\u4f59\u591a\u4e3a\u9a6c\u624e\u5c14\u4eba\u3002\u4e2d\u4e16\u7eaa\u65f6\u7279\u5170\u897f\u74e6\u5c3c\u4e9a\u66fe\u662f\u4e00\u4e2a\u516c\u56fd\u3002\u5341\u4e00\u4e16\u7eaa\u672b\uff0c\u5e76\u5165\u5308\u7259\u5229\u738b\u56fd\u30021867\u5e74\u540e\uff0c\u6210\u4e3a\u5965\u5308\u5e1d\u56fd\u7684\u5c5e\u9886\u3002\u7b2c\u4e00\u6b21\u4e16\u754c\u5927\u6218\u540e\uff0c\u5965\u5308\u5e1d\u56fd\u74e6\u89e3\uff0c\u6839\u636e\u300a\u51e1\u5c14\u8d5b\u6761\u7ea6\u300b\u4e3a\u7f57\u9a6c\u5c3c\u4e9a\u6240\u9886\u6709\u3002\n\n\t\u7279\u5170\u897f\u74e6\u5c3c\u4e9a\u539f\u4e3a\u5308\u7259\u5229\u738b\u56fd\u4e4b\u9886\u571f\uff0c\u5728\u571f\u8033\u5176\u653b\u5360\u5e03\u8fbe\u4f69\u65af\u540e\uff0c\u6210\u4e3a\u5308\u7259\u5229\u8d35\u65cf\u7684\u907f\u96be\u6240\uff0c\u6297\u62d2\u571f\u8033\u5176\u6587\u5316\u5165\u4fb5\uff0c\u5728\u4e00\u6218\u540e\uff0c1919\u5e74\u4e3e\u884c\u5168\u6c11\u516c\u6295\uff0c\u6b63\u6210\u6210\u7f57\u9a6c\u5c3c\u4e9a\u4e00\u90e8\u4efd\u3002", "picNo" : "1", "picUrl" : [{"pic_title" : "", "suffix" : "jpeg", "id" : 1, "url" : "https://aimgs.oss-cn-shenzhen.aliyuncs.com/history_2021/462_1.jpeg"}]}]
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": {"type": "integer"}, "url": {"type": "string"}}, "required": ["pic_title", "suffix", "id", "url"]}}}, "required": ["e_id", "title", "content", "picNo", "picUrl"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
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": "integer"}, "columns": {"type": "array", "items": {"type": "string"}}, "delim": {"type": "string"}, "truncate": {"type": "boolean"}}, "required": ["bucket", "source", "destination", "directory", "doc", "dbtable", "column_count", "columns", "delim", "truncate"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"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"}}, "delim": {"type": "string"}, "truncate": {"type": "boolean"}}, "required": ["bucket", "source", "destination", "directory", "doc", "dbtable", "column_count", "columns", "delim", "truncate"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "array", "items": {"type": "object", "properties": {"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#"}
[{"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": ["eslint"]}, "author": {"type": "string"}, "license": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"eslint": {"type": "string"}, "eslint-config-airbnb": {"type": "string"}, "eslint-config-airbnb-base": {"type": "string"}, "eslint-plugin-import": {"type": "string"}, "eslint-plugin-jsx-a11y": {"type": "string"}, "eslint-plugin-react": {"type": "string"}}, "required": ["eslint", "eslint-config-airbnb", "eslint-config-airbnb-base", "eslint-plugin-import", "eslint-plugin-jsx-a11y", "eslint-plugin-react"]}, "dependencies": {"type": "object", "properties": {"box-node-sdk": {"type": "string"}, "express": {"type": "string"}, "pug": {"type": "string"}}, "required": ["box-node-sdk", "express", "pug"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}}, "required": ["name", "version", "description", "main", "scripts", "author", "license", "devDependencies", "dependencies", "repository"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"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-airbnb" : "^15.1.0", "eslint-config-airbnb-base" : "^11.3.1", "eslint-plugin-import" : "^2.7.0", "eslint-plugin-jsx-a11y" : "^5.1.1", "eslint-plugin-react" : "^7.1.0"}, "dependencies" : {"box-node-sdk" : "^1.24.1", "express" : "^4.15.3", "pug" : "^2.0.0-rc.2"}, "repository" : {"type" : "git", "url" : "https://github.com/jcleblanc/box-examples"}}
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"}, "devDependencies": {"type": "object", "properties": {"eslint": {"type": "string"}, "eslint-config-airbnb": {"type": "string"}, "eslint-config-airbnb-base": {"type": "string"}, "eslint-plugin-import": {"type": "string"}, "eslint-plugin-jsx-a11y": {"type": "string"}, "eslint-plugin-react": {"type": "string"}}, "required": ["eslint", "eslint-config-airbnb", "eslint-config-airbnb-base", "eslint-plugin-import", "eslint-plugin-jsx-a11y", "eslint-plugin-react"]}, "dependencies": {"type": "object", "properties": {"box-node-sdk": {"type": "string"}, "express": {"type": "string"}, "pug": {"type": "string"}}, "required": ["box-node-sdk", "express", "pug"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}}, "required": ["name", "version", "description", "main", "scripts", "author", "license", "devDependencies", "dependencies", "repository"], "$schema": "http://json-schema.org/draft-07/schema#"}
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"}}, "required": ["test", "build"]}, "keywords": {"type": "array", "items": {}}, "author": {"type": "string"}, "license": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"@types/jest": {"type": "string"}, "@types/node": {"type": "string"}, "jest": {"type": "string"}, "nodemon": {"type": "string"}, "prettier": {"type": "string"}, "ts-jest": {"type": "string"}, "ttypescript": {"type": "string"}, "typescript-transform-paths": {"type": "string"}}, "required": ["@types/jest", "@types/node", "jest", "nodemon", "prettier", "ts-jest", "ttypescript", "typescript-transform-paths"]}, "private": {"type": "boolean"}, "types": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}}, "required": ["name", "version", "description", "main", "scripts", "keywords", "author", "license", "devDependencies", "private", "types", "repository", "bugs", "homepage"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"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" : "16.11.6", "jest" : "27.3.1", "nodemon" : "2.0.14", "prettier" : "2.4.1", "ts-jest" : "27.0.7", "ttypescript" : "1.5.12", "typescript-transform-paths" : "3.3.1"}, "private" : false, "types" : "./dist/index.d.ts", "repository" : {"type" : "git", "url" : "git+https://github.com/mck-p/async-iterables.git"}, "bugs" : {"url" : "https://github.com/mck-p/async-iterables/issues"}, "homepage" : "https://github.com/mck-p/async-iterables#readme"}
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", "items": {}}, "author": {"type": "string"}, "license": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"@types/jest": {"type": "string"}, "@types/node": {"type": "string"}, "jest": {"type": "string"}, "nodemon": {"type": "string"}, "prettier": {"type": "string"}, "ts-jest": {"type": "string"}, "ttypescript": {"type": "string"}, "typescript-transform-paths": {"type": "string"}}, "required": ["@types/jest", "@types/node", "jest", "nodemon", "prettier", "ts-jest", "ttypescript", "typescript-transform-paths"]}, "private": {"type": "boolean"}, "types": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}}, "required": ["name", "version", "description", "main", "scripts", "keywords", "author", "license", "devDependencies", "private", "types", "repository", "bugs", "homepage"], "$schema": "http://json-schema.org/draft-07/schema#"}
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": "string"}, "properties": {"type": "object", "properties": {"other_cities": {"type": "string"}, "city": {"type": "string"}, "state": {"type": "string"}, "county": {"type": "string"}}, "required": ["other_cities", "city", "state", "county"]}}, "required": ["geometry", "type", "id", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"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_cities": {"type": "string"}, "city": {"type": "string"}, "state": {"type": "string"}, "county": {"type": "string"}}, "required": ["other_cities", "city", "state", "county"]}}, "required": ["geometry", "type", "id", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"}
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": "integer"}, "last": {"type": "integer"}}, "required": ["limit", "name", "value", "highalch", "id", "lowalch", "name_pt", "price", "last"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"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": ["limit", "name", "value", "highalch", "id", "lowalch", "name_pt", "price", "last"], "$schema": "http://json-schema.org/draft-07/schema#"}
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": "string"}}, "required": ["id", "queryName", "severity", "category", "descriptionText", "descriptionUrl", "platform"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"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" : "https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-securityconfiguration.html", "platform" : "CloudFormation"}
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", "descriptionText", "descriptionUrl", "platform"], "$schema": "http://json-schema.org/draft-07/schema#"}
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"}, "paymentCurrencyExchangeRate": {"type": "integer"}, "paymentCurrencySymbol": {"type": "string"}}, "required": ["paymentCurrencyAmount", "paymentCurrencyCode", "paymentCurrencyExchangeRate", "paymentCurrencySymbol"]}, "totalPrice": {"type": "object", "properties": {"basePayoutCurrencyCode": {"type": "string"}, "basePayoutPrice": {"type": "integer"}, "convenienceFee": {"type": "integer"}, "currencyCode": {"type": "string"}, "discount": {"type": "integer"}, "discountPrice": {"type": "integer"}, "originalPrice": {"type": "integer"}, "originalUnitPrice": {"type": "null"}, "unitPrice": {"type": "null"}, "vat": {"type": "integer"}, "voucherDiscount": {"type": "integer"}}, "required": ["basePayoutCurrencyCode", "basePayoutPrice", "convenienceFee", "currencyCode", "discount", "discountPrice", "originalPrice", "originalUnitPrice", "unitPrice", "vat", "voucherDiscount"]}}, "required": ["totalPaymentPrice", "totalPrice"]}}, "required": ["id", "price"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : "60926f292d7c44f89ce2893164336f96", "price" : {"totalPaymentPrice" : {"paymentCurrencyAmount" : 131990, "paymentCurrencyCode" : "CZK", "paymentCurrencyExchangeRate" : 1, "paymentCurrencySymbol" : "K\u010d"}, "totalPrice" : {"basePayoutCurrencyCode" : "USD", "basePayoutPrice" : 4955, "convenienceFee" : 0, "currencyCode" : "CZK", "discount" : 65010, "discountPrice" : 131990, "originalPrice" : 197000, "originalUnitPrice" : null, "unitPrice" : null, "vat" : 22907, "voucherDiscount" : 0}}}
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"}, "paymentCurrencySymbol": {"type": "string"}}, "required": ["paymentCurrencyAmount", "paymentCurrencyCode", "paymentCurrencyExchangeRate", "paymentCurrencySymbol"]}, "totalPrice": {"type": "object", "properties": {"basePayoutCurrencyCode": {"type": "string"}, "basePayoutPrice": {"type": "integer"}, "convenienceFee": {"type": "integer"}, "currencyCode": {"type": "string"}, "discount": {"type": "integer"}, "discountPrice": {"type": "integer"}, "originalPrice": {"type": "integer"}, "originalUnitPrice": {"type": "null"}, "unitPrice": {"type": "null"}, "vat": {"type": "integer"}, "voucherDiscount": {"type": "integer"}}, "required": ["basePayoutCurrencyCode", "basePayoutPrice", "convenienceFee", "currencyCode", "discount", "discountPrice", "originalPrice", "originalUnitPrice", "unitPrice", "vat", "voucherDiscount"]}}, "required": ["totalPaymentPrice", "totalPrice"]}}, "required": ["id", "price"], "$schema": "http://json-schema.org/draft-07/schema#"}
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", "Tooltip"]}}, "required": ["Description", "Name", "com.elgato.foxcouncil.boner.action"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"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.foxcouncil.boner.action"], "$schema": "http://json-schema.org/draft-07/schema#"}
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", "f"]}}}, "required": ["d"]}}, "stem": {"type": "string"}, "t": {"type": "string"}}, "required": ["h", "stem", "t"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"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"}, "t": {"type": "string"}}, "required": ["h", "stem", "t"], "$schema": "http://json-schema.org/draft-07/schema#"}
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": "string"}}, "required": ["name", "cwd", "build_dir", "doc_dir", "grunt_dir", "source_dir", "test_dir"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"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", "source_dir", "test_dir"], "$schema": "http://json-schema.org/draft-07/schema#"}
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-random": {"type": "string"}, "purescript-affjax": {"type": "string"}, "purescript-css": {"type": "string"}, "purescript-halogen-css": {"type": "string"}, "purescript-d3": {"type": "string"}}, "required": ["purescript-halogen", "purescript-random", "purescript-affjax", "purescript-css", "purescript-halogen-css", "purescript-d3"]}, "devDependencies": {"type": "object", "properties": {"purescript-psci-support": {"type": "string"}}, "required": ["purescript-psci-support"]}}, "required": ["private", "name", "ignore", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"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", "purescript-d3" : "https://github.com/checkraiser/purescript-d3"}, "devDependencies" : {"purescript-psci-support" : "3.0.0"}}
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": "string"}, "purescript-css": {"type": "string"}, "purescript-halogen-css": {"type": "string"}, "purescript-d3": {"type": "string"}}, "required": ["purescript-halogen", "purescript-random", "purescript-affjax", "purescript-css", "purescript-halogen-css", "purescript-d3"]}, "devDependencies": {"type": "object", "properties": {"purescript-psci-support": {"type": "string"}}, "required": ["purescript-psci-support"]}}, "required": ["private", "name", "ignore", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
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", "properties": {"php": {"type": "string"}, "altorouter/altorouter": {"type": "string"}, "kint-php/kint": {"type": "string"}, "gettext/gettext": {"type": "string"}, "propel/propel": {"type": "string"}}, "required": ["php", "altorouter/altorouter", "kint-php/kint", "gettext/gettext", "propel/propel"]}, "config": {"type": "object", "properties": {"vendor-dir": {"type": "string"}}, "required": ["vendor-dir"]}, "minimum-stability": {"type": "string"}}, "required": ["name", "type", "description", "keywords", "license", "require", "config", "minimum-stability"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"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/gettext" : "4.*", "propel/propel" : "~2.0@dev"}, "config" : {"vendor-dir" : "app/vendor"}, "minimum-stability" : "stable"}
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": "string"}, "kint-php/kint": {"type": "string"}, "gettext/gettext": {"type": "string"}, "propel/propel": {"type": "string"}}, "required": ["php", "altorouter/altorouter", "kint-php/kint", "gettext/gettext", "propel/propel"]}, "config": {"type": "object", "properties": {"vendor-dir": {"type": "string"}}, "required": ["vendor-dir"]}, "minimum-stability": {"type": "string"}}, "required": ["name", "type", "description", "keywords", "license", "require", "config", "minimum-stability"], "$schema": "http://json-schema.org/draft-07/schema#"}
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": "string"}, "subtype": {"type": "string"}, "actors": {"type": "array", "items": {}}, "sentences": {"type": "array", "items": {"type": "string"}}, "enb_url": {"type": "string"}, "enb_long_title": {"type": "string"}, "type": {"type": "string"}, "id": {"type": "string"}, "enb_end_date": {"type": "string"}}, "required": ["countries", "topics", "section_title", "enb_start_date", "enb_short_title", "subtype", "actors", "sentences", "enb_url", "enb_long_title", "type", "id", "enb_end_date"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"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 to implement the IAC Review recommendations as part of a broader package of updates to procedures and guidance notes; requested the WG Co-Chairs to present the final document for adoption by the Panel at IPCC-33; noted the document should provide more detail on traceable accounts and explain how each of the recommendations in the IAC Review is addressed; and urged the WG Co-Chairs to take any necessary steps to ensure that the guidance is implemented in the development of their work."], "enb_url" : "http://www.iisd.ca/vol12/enb12486e.html", "enb_long_title" : "Thirty-second Session of the Intergovernmental Panel on Climate Change (IPCC)", "type" : "", "id" : "enb12486e_38", "enb_end_date" : "14-Oct-10"}
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": {}}, "sentences": {"type": "array", "items": {"type": "string"}}, "enb_url": {"type": "string"}, "enb_long_title": {"type": "string"}, "type": {"type": "string"}, "id": {"type": "string"}, "enb_end_date": {"type": "string"}}, "required": ["countries", "topics", "section_title", "enb_start_date", "enb_short_title", "subtype", "actors", "sentences", "enb_url", "enb_long_title", "type", "id", "enb_end_date"], "$schema": "http://json-schema.org/draft-07/schema#"}
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": ["ja364:1.1", "ja364:2.1", "ja364:3.1", "ja364:4.1", "ja364:5.1", "ja364:6.1"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"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.1"], "$schema": "http://json-schema.org/draft-07/schema#"}
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", "properties": {"startLines": {"type": "string"}, "startColumns": {"type": "string"}, "startOffsets": {"type": "string"}, "endColumns": {"type": "string"}, "endOffsets": {"type": "string"}}, "required": ["startLines", "startColumns", "startOffsets", "endColumns", "endOffsets"]}, "to": {"type": "object", "properties": {"startLines": {"type": "string"}, "startColumns": {"type": "string"}, "startOffsets": {"type": "string"}, "endColumns": {"type": "string"}, "endOffsets": {"type": "string"}}, "required": ["startLines", "startColumns", "startOffsets", "endColumns", "endOffsets"]}}, "required": ["source", "from", "to"]}}}, "required": ["outputFile", "map"]}}}, "required": ["logs"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"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\\values-vi\\values-vi.xml", "from" : {"startLines" : "4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,22", "startColumns" : "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", "startOffsets" : "161,262,381,474,542,611,672,741,816,910,986,1062,1160,1263,1325,1392,1661", "endColumns" : "100,118,92,67,68,60,68,74,93,75,75,97,102,61,66,145,58", "endOffsets" : "257,376,469,537,606,667,736,811,905,981,1057,1155,1258,1320,1387,1533,1715"}, "to" : {"startLines" : "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18", "startColumns" : "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", "startOffsets" : "55,156,275,368,436,505,566,635,710,804,880,956,1054,1157,1219,1286,1432", "endColumns" : "100,118,92,67,68,60,68,74,93,75,75,97,102,61,66,145,58", "endOffsets" : "151,270,363,431,500,561,630,705,799,875,951,1049,1152,1214,1281,1427,1486"}}]}]}
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"}, "startColumns": {"type": "string"}, "startOffsets": {"type": "string"}, "endColumns": {"type": "string"}, "endOffsets": {"type": "string"}}, "required": ["startLines", "startColumns", "startOffsets", "endColumns", "endOffsets"]}, "to": {"type": "object", "properties": {"startLines": {"type": "string"}, "startColumns": {"type": "string"}, "startOffsets": {"type": "string"}, "endColumns": {"type": "string"}, "endOffsets": {"type": "string"}}, "required": ["startLines", "startColumns", "startOffsets", "endColumns", "endOffsets"]}}, "required": ["source", "from", "to"]}}}, "required": ["outputFile", "map"]}}}, "required": ["logs"], "$schema": "http://json-schema.org/draft-07/schema#"}
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": "string"}}, "required": ["body", "attachments", "created_by_name", "created_at", "created_by", "parent_id", "id"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"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<sup>Automatically generated content from [radiance mailing-list](https://radiance-online.org/pipermail/radiance-general/2009-April/005879.html).</sup>", "attachments" : [], "created_by_name" : "Greg Ward", "created_at" : "April 06, 2009 at 07:52AM", "created_by" : "Greg_Ward", "parent_id" : "radiance-general_005862", "id" : "radiance-general_005879"}
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_by_name", "created_at", "created_by", "parent_id", "id"], "$schema": "http://json-schema.org/draft-07/schema#"}
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"}, "FirefoxCantLoadWebFont": {"type": "string"}, "CantFindFontUsing": {"type": "string"}, "WebFontsNotAvailable": {"type": "string"}}, "required": ["@metadata", "LoadWebFont", "CantLoadWebFont", "FirefoxCantLoadWebFont", "CantFindFontUsing", "WebFontsNotAvailable"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"@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 d\u00eetin bi $1", "WebFontsNotAvailable" : "Font\u00ean web\u00ea n\u00eenin. Font\u00ean s\u00fbret\u00ee bi kar b\u00eane"}
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": "string"}, "WebFontsNotAvailable": {"type": "string"}}, "required": ["@metadata", "LoadWebFont", "CantLoadWebFont", "FirefoxCantLoadWebFont", "CantFindFontUsing", "WebFontsNotAvailable"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "private": {"type": "boolean"}, "dependencies": {"type": "object", "properties": {"material-ui": {"type": "string"}, "react": {"type": "string"}, "react-dom": {"type": "string"}, "react-scripts": {"type": "string"}, "socket.io-client": {"type": "string"}}, "required": ["material-ui", "react", "react-dom", "react-scripts", "socket.io-client"]}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}, "build": {"type": "string"}, "test": {"type": "string"}, "eject": {"type": "string"}}, "required": ["start", "build", "test", "eject"]}, "description": {"type": "string"}, "main": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}}, "required": ["name", "version", "private", "dependencies", "scripts", "description", "main", "repository", "keywords", "author", "license", "bugs", "homepage"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"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 --env=jsdom", "eject" : "react-scripts eject"}, "description" : "Alternative to the application", "main" : "index.js", "repository" : {"type" : "git", "url" : "git+https://github.com/dream-io/braille-embosser.git"}, "keywords" : ["react", "reactjs", "material-ui", "websocket"], "author" : "KeziahMoselle", "license" : "MIT", "bugs" : {"url" : "https://github.com/dream-io/braille-embosser/issues"}, "homepage" : "https://github.com/dream-io/braille-embosser#readme"}
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-client": {"type": "string"}}, "required": ["material-ui", "react", "react-dom", "react-scripts", "socket.io-client"]}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}, "build": {"type": "string"}, "test": {"type": "string"}, "eject": {"type": "string"}}, "required": ["start", "build", "test", "eject"]}, "description": {"type": "string"}, "main": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}}, "required": ["name", "version", "private", "dependencies", "scripts", "description", "main", "repository", "keywords", "author", "license", "bugs", "homepage"], "$schema": "http://json-schema.org/draft-07/schema#"}
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": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}, "outputs": {"type": "array", "items": {"type": "number"}}, "weight_range": {"type": "integer"}, "bias_range": {"type": "integer"}, "tc_min": {"type": "integer"}, "tc_max": {"type": "integer"}, "inv_time_constants": {"type": "array", "items": {"type": "number"}}}, "required": ["size", "voltages", "time_constants", "biases", "inner_weights", "outputs", "weight_range", "bias_range", "tc_min", "tc_max", "inv_time_constants"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"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, "inv_time_constants" : [1.0, 1.0]}
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": {"type": "number"}}}, "outputs": {"type": "array", "items": {"type": "number"}}, "weight_range": {"type": "integer"}, "bias_range": {"type": "integer"}, "tc_min": {"type": "integer"}, "tc_max": {"type": "integer"}, "inv_time_constants": {"type": "array", "items": {"type": "number"}}}, "required": ["size", "voltages", "time_constants", "biases", "inner_weights", "outputs", "weight_range", "bias_range", "tc_min", "tc_max", "inv_time_constants"], "$schema": "http://json-schema.org/draft-07/schema#"}
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": {"type": "string"}, "unknown_authorize_url_generation": {"type": "string"}}, "required": ["already_setup", "authorize_url_timeout", "external_setup", "no_flows", "unknown_authorize_url_generation"]}, "create_entry": {"type": "object", "properties": {"default": {"type": "string"}}, "required": ["default"]}, "error": {"type": "object", "properties": {"follow_link": {"type": "string"}, "no_token": {"type": "string"}}, "required": ["follow_link", "no_token"]}, "step": {"type": "object", "properties": {"auth": {"type": "object", "properties": {"description": {"type": "string"}, "title": {"type": "string"}}, "required": ["description", "title"]}, "user": {"type": "object", "properties": {"data": {"type": "object", "properties": {"flow_impl": {"type": "string"}}, "required": ["flow_impl"]}, "description": {"type": "string"}, "title": {"type": "string"}}, "required": ["data", "description", "title"]}}, "required": ["auth", "user"]}}, "required": ["abort", "create_entry", "error", "step"]}}, "required": ["config"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"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 est\u00e1 configurado. Por favor, siga a documenta\u00e7\u00e3o.\nVoc\u00ea precisa configurar o Point antes de ser capaz de autenticar com ele. [Por favor, leia as instru\u00e7\u00f5es](https://www.home-assistant.io/components/point/).", "unknown_authorize_url_generation" : "Erro desconhecido ao gerar um URL de autoriza\u00e7\u00e3o."}, "create_entry" : {"default" : "Autenticado com sucesso"}, "error" : {"follow_link" : "Por favor, siga o link e autentique antes de pressionar Enviar", "no_token" : "Token de acesso inv\u00e1lido"}, "step" : {"auth" : {"description" : "Siga o link abaixo e **Aceite** o acesso \u00e0 sua conta Minut, depois volte e pressione **Enviar**. \n\n [Link]({authorization_url})", "title" : "Autenticar Ponto"}, "user" : {"data" : {"flow_impl" : "Provedor"}, "description" : "Deseja iniciar a configura\u00e7\u00e3o?", "title" : "Escolha o m\u00e9todo de autentica\u00e7\u00e3o"}}}}
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": "string"}}, "required": ["already_setup", "authorize_url_timeout", "external_setup", "no_flows", "unknown_authorize_url_generation"]}, "create_entry": {"type": "object", "properties": {"default": {"type": "string"}}, "required": ["default"]}, "error": {"type": "object", "properties": {"follow_link": {"type": "string"}, "no_token": {"type": "string"}}, "required": ["follow_link", "no_token"]}, "step": {"type": "object", "properties": {"auth": {"type": "object", "properties": {"description": {"type": "string"}, "title": {"type": "string"}}, "required": ["description", "title"]}, "user": {"type": "object", "properties": {"data": {"type": "object", "properties": {"flow_impl": {"type": "string"}}, "required": ["flow_impl"]}, "description": {"type": "string"}, "title": {"type": "string"}}, "required": ["data", "description", "title"]}}, "required": ["auth", "user"]}}, "required": ["abort", "create_entry", "error", "step"]}}, "required": ["config"], "$schema": "http://json-schema.org/draft-07/schema#"}
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": "integer"}, "country_reference": {"type": "integer"}, "country_name": {"type": "string"}, "region_id": {"type": "string"}, "region_reference": {"type": "string"}, "region_name": {"type": "string"}, "province_id": {"type": "string"}, "province_reference": {"type": "string"}, "province_name": {"type": "string"}, "city_id": {"type": "string"}, "city_reference": {"type": "string"}, "city_name": {"type": "string"}, "barangay_id": {"type": "string"}, "barangay_reference": {"type": "string"}, "barangay_name": {"type": "string"}}, "required": ["type", "level", "label", "locale", "country_id", "country_reference", "country_name", "region_id", "region_reference", "region_name", "province_id", "province_reference", "province_name", "city_id", "city_reference", "city_name", "barangay_id", "barangay_reference", "barangay_name"]}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}}, "required": ["type", "coordinates"]}}, "required": ["type", "properties", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"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_reference" : "42", "region_name" : "MIMAROPA (Region IV-B)", "province_id" : "65", "province_reference" : "65", "province_name" : "Romblon", "city_id" : "27", "city_reference" : "1348", "city_name" : "Alcantara", "barangay_id" : "590", "barangay_reference" : "34913", "barangay_name" : "Poblacion"}, "geometry" : {"type" : "MultiPolygon", "coordinates" : [[[[122.058258, 12.26326], [122.057777, 12.26278], [122.057777, 12.26194], [122.057503, 12.26167], [122.057503, 12.26083], [122.05722, 12.26056], [122.05722, 12.25972], [122.056541, 12.25949], [122.056389, 12.25944], [122.056107, 12.25917], [122.056107, 12.25778], [122.056427, 12.25746], [122.056664, 12.25722], [122.056664, 12.25667], [122.056641, 12.25664], [122.056389, 12.25639], [122.056664, 12.25611], [122.056664, 12.25583], [122.056953, 12.25556], [122.056953, 12.25528], [122.05722, 12.255], [122.05722, 12.25472], [122.057777, 12.25444], [122.058327, 12.25389], [122.058891, 12.25361], [122.05925, 12.25325], [122.059723, 12.25278], [122.059723, 12.25222], [122.05899, 12.25149], [122.058891, 12.25139], [122.058449, 12.25117], [122.05117, 12.25346], [122.047287, 12.26929], [122.054588, 12.2654], [122.055344, 12.26495], [122.05674, 12.26417], [122.057426, 12.26374], [122.057587, 12.26365], [122.058258, 12.26326]]]]}}
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": {"type": "string"}, "region_id": {"type": "string"}, "region_reference": {"type": "string"}, "region_name": {"type": "string"}, "province_id": {"type": "string"}, "province_reference": {"type": "string"}, "province_name": {"type": "string"}, "city_id": {"type": "string"}, "city_reference": {"type": "string"}, "city_name": {"type": "string"}, "barangay_id": {"type": "string"}, "barangay_reference": {"type": "string"}, "barangay_name": {"type": "string"}}, "required": ["type", "level", "label", "locale", "country_id", "country_reference", "country_name", "region_id", "region_reference", "region_name", "province_id", "province_reference", "province_name", "city_id", "city_reference", "city_name", "barangay_id", "barangay_reference", "barangay_name"]}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}}, "required": ["type", "coordinates"]}}, "required": ["type", "properties", "geometry"], "$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": "integer"}, "RelHum": {"type": "integer"}, "WindSpeed": {"type": "number"}, "WindDir": {"type": "integer"}}, "required": ["Time", "Temp", "RelHum", "WindSpeed", "WindDir"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"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"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"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": {}}, "title": {"type": "string"}, "url": {"type": "string"}}, "required": ["directions", "ingredients", "language", "source", "tags", "title", "url"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"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 of meat, patting to combine both halves.", "Bake for 1 hour and 45 minutes, or until done. Internal temperature should measure 160 degrees F (70 degrees C) when done."], "ingredients" : ["2 pounds lean ground beef", "1/2 pound fresh mushrooms, all minced except for 6", "3/4 cup fresh bread crumbs", "1/2 cup minced onion", "1/2 cup ketchup", "2 eggs, beaten", "1 1/2 teaspoons salt", "1/2 teaspoon ground black pepper"], "language" : "en-US", "source" : "allrecipes.com", "tags" : [], "title" : "Mushroom Meatloaf", "url" : "http://allrecipes.com/recipe/14629/mushroom-meatloaf/"}
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"}}, "required": ["directions", "ingredients", "language", "source", "tags", "title", "url"], "$schema": "http://json-schema.org/draft-07/schema#"}
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/draft-07/schema#"}
{"_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": ["color"]}, "category": {"type": "integer"}}, "required": ["name", "value", "itemStyle", "category"]}}, "links": {"type": "array", "items": {"type": "object", "properties": {"source": {"type": "string"}, "target": {"type": "string"}, "value": {"type": "number"}}, "required": ["source", "target", "value"]}}}, "required": ["nodes", "links"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"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" : "blue", "borderType" : "dotted"}, "category" : 1}, {"name" : "\u53a6\u95e8\u4e1c\u65b9\u4e07\u91cc\u539f\u77f3\u6709\u9650\u516c\u53f8", "value" : 412.76, "itemStyle" : {"color" : "blue", "borderType" : "dotted"}, "category" : 1}, {"name" : "FINSTONEAG", "value" : 453.79, "itemStyle" : {"color" : "blue", "borderType" : "dotted"}, "category" : 1}], "links" : [{"source" : "\u53a6\u95e8\u4e07\u91cc\u77f3\u80a1\u4efd\u6709\u9650\u516c\u53f8", "target" : "\u53a6\u95e8\u77f3\u6750\u5546\u54c1\u8fd0\u8425\u4e2d\u5fc3\u6709\u9650\u516c\u53f8", "value" : 1.3963871102381388e-06}, {"source" : "\u53a6\u95e8\u4e07\u91cc\u77f3\u80a1\u4efd\u6709\u9650\u516c\u53f8", "target" : "\u53a6\u95e8\u4e1c\u65b9\u4e07\u91cc\u539f\u77f3\u6709\u9650\u516c\u53f8", "value" : 3.0964641672185523e-07}, {"source" : "\u53a6\u95e8\u4e07\u91cc\u77f3\u80a1\u4efd\u6709\u9650\u516c\u53f8", "target" : "FINSTONEAG", "value" : 3.4042651285059285e-07}]}
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", "value", "itemStyle", "category"]}}, "links": {"type": "array", "items": {"type": "object", "properties": {"source": {"type": "string"}, "target": {"type": "string"}, "value": {"type": "number"}}, "required": ["source", "target", "value"]}}}, "required": ["nodes", "links"], "$schema": "http://json-schema.org/draft-07/schema#"}