input
stringlengths
159
2.05k
output
stringlengths
5
10.3k
task
stringclasses
1 value
schema
stringlengths
100
1.99k
Generate sample JSON data that conforms to the following schema definition: {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "nama": {"type": "string"}}, "required": ["id", "nama"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"id" : "7407010001", "nama" : "TAIPABU"}, {"id" : "7407010006", "nama" : "WALI"}, {"id" : "7407010007", "nama" : "LAGONGGA"}, {"id" : "7407010008", "nama" : "KAMPO-KAMPO"}, {"id" : "7407010009", "nama" : "PALAHIDU"}, {"id" : "7407010010", "nama" : "MAKORO"}, {"id" : "7407010011", "nama" : "PALAHIDU BARAT"}, {"id" : "7407010012", "nama" : "RUKUWA"}, {"id" : "7407010013", "nama" : "JAYA MAKMUR"}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "nama": {"type": "string"}}, "required": ["id", "nama"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"feedstocks": {"type": "array", "items": {"type": "string"}}}, "required": ["feedstocks"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"feedstocks" : ["ray-packages"]}
json_instruct
{"type": "object", "properties": {"feedstocks": {"type": "array", "items": {"type": "string"}}}, "required": ["feedstocks"], "$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" : "Samsung", "market_name" : "Galaxy Core Prime", "codename" : "core33g", "model" : "SM-G360H"}, {"manufacturer" : "Samsung", "market_name" : "Galaxy Core Prime", "codename" : "core33g", "model" : "SM-G360HU"}]
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 sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"Tween.js": {"type": "string"}, "Tween.min.js": {"type": "string"}}, "required": ["Tween.js", "Tween.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"Tween.js" : "sha256-TPqe1gIXYwtfHcJpCoAiNKcYNoX5hnYQOUvLVXCEieQ=", "Tween.min.js" : "sha256-9cUqcR0//51vn4h90HA2jkJs1TfVUkG6xsGr+mH/fSo="}
json_instruct
{"type": "object", "properties": {"Tween.js": {"type": "string"}, "Tween.min.js": {"type": "string"}}, "required": ["Tween.js", "Tween.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"company_name": {"type": "string"}, "company_number": {"type": "string"}, "item_options": {"type": "object", "properties": {"certificate_type": {"type": "string"}, "company_status": {"type": "string"}, "company_type": {"type": "string"}}, "required": ["certificate_type", "company_status", "company_type"]}, "quantity": {"type": "integer"}}, "required": ["company_name", "company_number", "item_options", "quantity"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"company_name" : "ACME LIMITED", "company_number" : "12345678", "item_options" : {"certificate_type" : "incorporation-with-all-name-changes", "company_status" : "active", "company_type" : "ltd"}, "quantity" : 1}
json_instruct
{"type": "object", "properties": {"company_name": {"type": "string"}, "company_number": {"type": "string"}, "item_options": {"type": "object", "properties": {"certificate_type": {"type": "string"}, "company_status": {"type": "string"}, "company_type": {"type": "string"}}, "required": ["certificate_type", "company_status", "company_type"]}, "quantity": {"type": "integer"}}, "required": ["company_name", "company_number", "item_options", "quantity"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"devDependencies": {"type": "object", "properties": {"babel": {"type": "string"}, "babel-core": {"type": "string"}, "babel-eslint": {"type": "string"}, "babel-loader": {"type": "string"}, "babel-plugin-add-module-exports": {"type": "string"}, "babel-preset-es2015": {"type": "string"}, "babel-plugin-transform-class-properties": {"type": "string"}, "babel-preset-stage-1": {"type": "string"}, "chai": {"type": "string"}, "chai-things": {"type": "string"}, "eslint": {"type": "string"}, "eslint-loader": {"type": "string"}, "eslint-plugin-react": {"type": "string"}, "eslint-plugin-import": {"type": "string"}, "eslint-plugin-jsx-a11y": {"type": "string"}, "hamjest": {"type": "string"}, "lerna": {"type": "string"}, "sinon": {"type": "string"}, "sinon-chai": {"type": "string"}, "webpack": {"type": "string"}}, "required": ["babel", "babel-core", "babel-eslint", "babel-loader", "babel-plugin-add-module-exports", "babel-preset-es2015", "babel-plugin-transform-class-properties", "babel-preset-stage-1", "chai", "chai-things", "eslint", "eslint-loader", "eslint-plugin-react", "eslint-plugin-import", "eslint-plugin-jsx-a11y", "hamjest", "lerna", "sinon", "sinon-chai", "webpack"]}}, "required": ["devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"devDependencies" : {"babel" : "6.5.2", "babel-core" : "6.22.1", "babel-eslint" : "7.1.1", "babel-loader" : "6.2.10", "babel-plugin-add-module-exports" : "0.1.2", "babel-preset-es2015" : "6.22.0", "babel-plugin-transform-class-properties" : "^6.22.0", "babel-preset-stage-1" : "6.16.0", "chai" : "3.4.1", "chai-things" : "^0.2.0", "eslint" : "^3.18.0", "eslint-loader" : "1.6.1", "eslint-plugin-react" : "6.8.0", "eslint-plugin-import" : "2.2.0", "eslint-plugin-jsx-a11y" : "3.0.2", "hamjest" : "^2.13.0", "lerna" : "^2.0.0-rc.1", "sinon" : "^1.4.0", "sinon-chai" : "^2.8.0", "webpack" : "2.2.1"}}
json_instruct
{"type": "object", "properties": {"devDependencies": {"type": "object", "properties": {"babel": {"type": "string"}, "babel-core": {"type": "string"}, "babel-eslint": {"type": "string"}, "babel-loader": {"type": "string"}, "babel-plugin-add-module-exports": {"type": "string"}, "babel-preset-es2015": {"type": "string"}, "babel-plugin-transform-class-properties": {"type": "string"}, "babel-preset-stage-1": {"type": "string"}, "chai": {"type": "string"}, "chai-things": {"type": "string"}, "eslint": {"type": "string"}, "eslint-loader": {"type": "string"}, "eslint-plugin-react": {"type": "string"}, "eslint-plugin-import": {"type": "string"}, "eslint-plugin-jsx-a11y": {"type": "string"}, "hamjest": {"type": "string"}, "lerna": {"type": "string"}, "sinon": {"type": "string"}, "sinon-chai": {"type": "string"}, "webpack": {"type": "string"}}, "required": ["babel", "babel-core", "babel-eslint", "babel-loader", "babel-plugin-add-module-exports", "babel-preset-es2015", "babel-plugin-transform-class-properties", "babel-preset-stage-1", "chai", "chai-things", "eslint", "eslint-loader", "eslint-plugin-react", "eslint-plugin-import", "eslint-plugin-jsx-a11y", "hamjest", "lerna", "sinon", "sinon-chai", "webpack"]}}, "required": ["devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"objects": {"type": "object", "properties": {"vectile": {"type": "object", "properties": {"type": {"type": "string"}, "geometries": {"type": "array", "items": {"type": "object", "properties": {"arcs": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"id": {"type": "integer"}}, "required": ["id"]}, "clipped": {"type": "boolean"}, "id": {"type": "string"}}, "required": ["arcs", "type", "properties", "clipped", "id"]}}}, "required": ["type", "geometries"]}}, "required": ["vectile"]}, "type": {"type": "string"}, "transform": {"type": "object", "properties": {"translate": {"type": "array", "items": {"type": "number"}}, "scale": {"type": "array", "items": {"type": "number"}}}, "required": ["translate", "scale"]}, "arcs": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}}}, "required": ["objects", "type", "transform", "arcs"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"objects" : {"vectile" : {"type" : "GeometryCollection", "geometries" : [{"arcs" : [[0]], "type" : "Polygon", "properties" : {"id" : 24}, "clipped" : true, "id" : "b645b301b2"}, {"arcs" : [[1]], "type" : "Polygon", "properties" : {"id" : 33}, "clipped" : true, "id" : "b2ebd78d6e"}, {"arcs" : [[2]], "type" : "Polygon", "properties" : {"id" : 34}, "clipped" : true, "id" : "bae85f1db0"}]}}, "type" : "Topology", "transform" : {"translate" : [12.656249999999961, 49.38237278700955], "scale" : [0.0001716613769531198, 0.00011162279341884324]}, "arcs" : [[[918, 1024], [106, -284], [0, -218], [-196, -522], [-828, 0], [0, 1024], [918, 0]], [[828, 0], [196, 522], [0, -522], [-196, 0]], [[1024, 740], [-106, 284], [106, 0], [0, -284]]]}
json_instruct
{"type": "object", "properties": {"objects": {"type": "object", "properties": {"vectile": {"type": "object", "properties": {"type": {"type": "string"}, "geometries": {"type": "array", "items": {"type": "object", "properties": {"arcs": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"id": {"type": "integer"}}, "required": ["id"]}, "clipped": {"type": "boolean"}, "id": {"type": "string"}}, "required": ["arcs", "type", "properties", "clipped", "id"]}}}, "required": ["type", "geometries"]}}, "required": ["vectile"]}, "type": {"type": "string"}, "transform": {"type": "object", "properties": {"translate": {"type": "array", "items": {"type": "number"}}, "scale": {"type": "array", "items": {"type": "number"}}}, "required": ["translate", "scale"]}, "arcs": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}}}, "required": ["objects", "type", "transform", "arcs"], "$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"}, "name_long": {"type": "string"}, "fips": {"type": "string"}, "state_code_int": {"type": "integer"}, "state_code_postal": {"type": "string"}, "state_code_iso": {"type": "string"}, "county_code": {"type": "integer"}, "population": {"type": "integer"}, "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"]}, "center_lat": {"type": "number"}, "center_lon": {"type": "number"}, "area_m2": {"type": "integer"}, "timezone": {"type": "string"}}, "required": ["name", "name_long", "fips", "state_code_int", "state_code_postal", "state_code_iso", "county_code", "population", "countrylevel_id", "census_data", "center_lat", "center_lon", "area_m2", "timezone"]}, "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" : "Jackson County", "name_long" : "Jackson County, AL", "fips" : "01071", "state_code_int" : 1, "state_code_postal" : "AL", "state_code_iso" : "US-AL", "county_code" : 71, "population" : 51626, "countrylevel_id" : "fips:01071", "census_data" : {"COUNTYNS" : "00161561", "AFFGEOID" : "0500000US01071", "LSAD" : "06", "ALAND" : 2791974056, "AWATER" : 126334709}, "center_lat" : 34.78, "center_lon" : -86.0, "area_m2" : 2918308765, "timezone" : "America/Chicago"}, "geometry" : {"type" : "Polygon", "coordinates" : [[[-86.358, 34.735], [-86.342, 34.744], [-86.338, 34.763], [-86.344, 34.817], [-86.327, 34.831], [-86.347, 34.858], [-86.351, 34.874], [-86.329, 34.901], [-86.311, 34.915], [-86.326, 34.937], [-86.311, 34.935], [-86.296, 34.945], [-86.282, 34.938], [-86.272, 34.924], [-86.257, 34.926], [-86.257, 34.938], [-86.259, 34.945], [-86.287, 34.958], [-86.289, 34.969], [-86.306, 34.975], [-86.311, 34.991], [-86.062, 34.99], [-85.864, 34.988], [-85.829, 34.988], [-85.824, 34.988], [-85.605, 34.985], [-85.599, 34.952], [-85.599, 34.945], [-85.595, 34.924], [-85.595, 34.924], [-85.583, 34.86], [-85.627, 34.832], [-85.634, 34.799], [-85.66, 34.755], [-85.673, 34.745], [-85.693, 34.744], [-85.785, 34.625], [-85.881, 34.562], [-85.939, 34.525], [-85.957, 34.507], [-85.957, 34.506], [-85.96, 34.503], [-85.96, 34.502], [-85.961, 34.501], [-85.962, 34.5], [-85.964, 34.5], [-85.966, 34.499], [-86.004, 34.48], [-86.016, 34.482], [-86.035, 34.473], [-86.058, 34.476], [-86.083, 34.465], [-86.096, 34.489], [-86.098, 34.513], [-86.098, 34.522], [-86.126, 34.533], [-86.148, 34.521], [-86.149, 34.588], [-86.148, 34.599], [-86.183, 34.599], [-86.316, 34.6], [-86.318, 34.6], [-86.327, 34.6], [-86.327, 34.599], [-86.331, 34.607], [-86.326, 34.61], [-86.354, 34.629], [-86.358, 34.735]]]}}
json_instruct
{"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"name": {"type": "string"}, "name_long": {"type": "string"}, "fips": {"type": "string"}, "state_code_int": {"type": "integer"}, "state_code_postal": {"type": "string"}, "state_code_iso": {"type": "string"}, "county_code": {"type": "integer"}, "population": {"type": "integer"}, "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"]}, "center_lat": {"type": "number"}, "center_lon": {"type": "number"}, "area_m2": {"type": "integer"}, "timezone": {"type": "string"}}, "required": ["name", "name_long", "fips", "state_code_int", "state_code_postal", "state_code_iso", "county_code", "population", "countrylevel_id", "census_data", "center_lat", "center_lon", "area_m2", "timezone"]}, "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#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"countries": {"type": "array", "items": {"type": "string"}}, "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": {"type": "string"}}, "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" : ["United Kingdom", "United Arab Emirates", "Saudi Arabia", "China", "Micronesia"], "topics" : ["Financial Mechanisms and Funds", "Vulnerabilities and Impacts"], "section_title" : "PROGRESS ON IMPLEMENTATION OF DECISION 5/CP.7", "enb_start_date" : "06-Dec-03", "enb_short_title" : "UNFCCC COP-9", "subtype" : "", "actors" : ["European Union", "Group of 77", "Alliance of Small Island States"], "sentences" : ["Delegates in this contact group, co-chaired by Rob Mason (UK) and Al Waleed Al-Malik (United Arab Emirates), reviewed Parties\u0092 perspectives on progress on the implementation of activities under decision 5/CP.7.", "Underlining the linkages of adaptation with other issues, the EU said decision 5/CP.7 enables important activities to be developed further.", "The G-77/CHINA said there is a need for substantive discussions on implementation of the decision, with a view to building on existing work.", "Noting that, in terms of the UNFCCC, adaptation is the priority, MICRONESIA, for AOSIS, stressed the vulnerability of SIDS and underlined, inter alia, the need for building capacity, addressing insurance challenges, and improving access to funding.", "SAUDI ARABIA underscored the need to take immediate action, support developing countries in the technical development of non-energy uses of fossil fuels, and exchange information on win-win P&Ms that reduce greenhouse gas emissions, while minimizing adverse impacts on developing countries."], "enb_url" : "http://www.iisd.ca/vol12/enb12226e.html", "enb_long_title" : "Ninth Conference of the Parties to the UN Framework Convention on Climate Change", "type" : "", "id" : "enb12226e_5", "enb_end_date" : "06-Dec-03"}
json_instruct
{"type": "object", "properties": {"countries": {"type": "array", "items": {"type": "string"}}, "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": {"type": "string"}}, "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#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "is_illegal": {"type": "boolean"}, "is_custom": {"type": "boolean"}, "text": {"type": "string"}, "images": {"type": "array", "items": {"type": "string"}}, "type": {"type": "string"}, "spell_type": {"type": "string"}}, "required": ["id", "name", "is_illegal", "is_custom", "text", "images", "type", "spell_type"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : 33302407, "name" : "Poison Chain", "is_illegal" : false, "is_custom" : false, "text" : "During the End Phase of your turn, if you did not attack, you can make your opponent send cards equal to the number of face-up \"Iron Chain\" monsters you control from the top of their Deck to the Graveyard.", "images" : ["https://storage.googleapis.com/ygoprodeck.com/pics/33302407.jpg"], "type" : "Spell", "spell_type" : "Continuous"}
json_instruct
{"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "is_illegal": {"type": "boolean"}, "is_custom": {"type": "boolean"}, "text": {"type": "string"}, "images": {"type": "array", "items": {"type": "string"}}, "type": {"type": "string"}, "spell_type": {"type": "string"}}, "required": ["id", "name", "is_illegal", "is_custom", "text", "images", "type", "spell_type"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"name": {"type": "string"}, "assets": {"type": "array", "items": {"type": "object", "properties": {"files": {"type": "array", "items": {"type": "string"}}, "version": {"type": "string"}, "mainfile": {"type": "string"}}, "required": ["files", "version", "mainfile"]}}, "versions": {"type": "array", "items": {"type": "string"}}, "zip": {"type": "string"}, "mainfile": {"type": "string"}, "author": {"type": "string"}, "lastversion": {"type": "string"}, "homepage": {"type": "null"}, "description": {"type": "string"}, "github": {"type": "string"}}, "required": ["name", "assets", "versions", "zip", "mainfile", "author", "lastversion", "homepage", "description", "github"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "jquery.ns-autogrow", "assets" : [{"files" : ["jquery.ns-autogrow.js", "jquery.ns-autogrow.min.js"], "version" : "1.1.2", "mainfile" : "jquery.ns-autogrow.min.js"}, {"files" : ["jquery.ns-autogrow.js", "jquery.ns-autogrow.min.js"], "version" : "1.1.3", "mainfile" : "jquery.ns-autogrow.min.js"}, {"files" : ["jquery.ns-autogrow.js", "jquery.ns-autogrow.min.js"], "version" : "1.1.4", "mainfile" : "jquery.ns-autogrow.min.js"}, {"files" : ["jquery.ns-autogrow.js", "jquery.ns-autogrow.min.js"], "version" : "1.1.5", "mainfile" : "jquery.ns-autogrow.min.js"}, {"files" : ["jquery.ns-autogrow.js", "jquery.ns-autogrow.min.js"], "version" : "1.1.6", "mainfile" : "jquery.ns-autogrow.min.js"}], "versions" : ["1.1.6", "1.1.5", "1.1.4", "1.1.3", "1.1.2"], "zip" : "jquery.ns-autogrow.zip", "mainfile" : "jquery.ns-autogrow.min.js", "author" : "Roman Pushkin <roman.pushkin@gmail.com>", "lastversion" : "1.1.6", "homepage" : null, "description" : "Automatically adjust textarea height based on user input. Non-sucking version.", "github" : "https://github.com/ro31337/jquery.ns-autogrow.git"}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "assets": {"type": "array", "items": {"type": "object", "properties": {"files": {"type": "array", "items": {"type": "string"}}, "version": {"type": "string"}, "mainfile": {"type": "string"}}, "required": ["files", "version", "mainfile"]}}, "versions": {"type": "array", "items": {"type": "string"}}, "zip": {"type": "string"}, "mainfile": {"type": "string"}, "author": {"type": "string"}, "lastversion": {"type": "string"}, "homepage": {"type": "null"}, "description": {"type": "string"}, "github": {"type": "string"}}, "required": ["name", "assets", "versions", "zip", "mainfile", "author", "lastversion", "homepage", "description", "github"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"files": {"type": "object", "properties": {"main.css": {"type": "string"}, "main.js": {"type": "string"}, "static/js/787.d8c6ec95.chunk.js": {"type": "string"}, "static/media/logo-text.svg": {"type": "string"}, "static/media/logo.svg": {"type": "string"}, "index.html": {"type": "string"}, "main.202d54d0.css.map": {"type": "string"}, "main.6556bfc6.js.map": {"type": "string"}, "787.d8c6ec95.chunk.js.map": {"type": "string"}}, "required": ["main.css", "main.js", "static/js/787.d8c6ec95.chunk.js", "static/media/logo-text.svg", "static/media/logo.svg", "index.html", "main.202d54d0.css.map", "main.6556bfc6.js.map", "787.d8c6ec95.chunk.js.map"]}, "entrypoints": {"type": "array", "items": {"type": "string"}}}, "required": ["files", "entrypoints"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"files" : {"main.css" : "/static/css/main.202d54d0.css", "main.js" : "/static/js/main.6556bfc6.js", "static/js/787.d8c6ec95.chunk.js" : "/static/js/787.d8c6ec95.chunk.js", "static/media/logo-text.svg" : "/static/media/logo-text.fe8e443ef79ca7b8079361f26216beef.svg", "static/media/logo.svg" : "/static/media/logo.f41ea7d84683be6a9878b9290883ac58.svg", "index.html" : "/index.html", "main.202d54d0.css.map" : "/static/css/main.202d54d0.css.map", "main.6556bfc6.js.map" : "/static/js/main.6556bfc6.js.map", "787.d8c6ec95.chunk.js.map" : "/static/js/787.d8c6ec95.chunk.js.map"}, "entrypoints" : ["static/css/main.202d54d0.css", "static/js/main.6556bfc6.js"]}
json_instruct
{"type": "object", "properties": {"files": {"type": "object", "properties": {"main.css": {"type": "string"}, "main.js": {"type": "string"}, "static/js/787.d8c6ec95.chunk.js": {"type": "string"}, "static/media/logo-text.svg": {"type": "string"}, "static/media/logo.svg": {"type": "string"}, "index.html": {"type": "string"}, "main.202d54d0.css.map": {"type": "string"}, "main.6556bfc6.js.map": {"type": "string"}, "787.d8c6ec95.chunk.js.map": {"type": "string"}}, "required": ["main.css", "main.js", "static/js/787.d8c6ec95.chunk.js", "static/media/logo-text.svg", "static/media/logo.svg", "index.html", "main.202d54d0.css.map", "main.6556bfc6.js.map", "787.d8c6ec95.chunk.js.map"]}, "entrypoints": {"type": "array", "items": {"type": "string"}}}, "required": ["files", "entrypoints"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"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.1.1": {"type": "object", "properties": {"sha256": {"type": "string"}, "url": {"type": "string"}}, "required": ["sha256", "url"]}, "0.1.2": {"type": "object", "properties": {"sha256": {"type": "string"}, "url": {"type": "string"}}, "required": ["sha256", "url"]}, "0.2": {"type": "object", "properties": {"sha256": {"type": "string"}, "url": {"type": "string"}}, "required": ["sha256", "url"]}, "0.3": {"type": "object", "properties": {"sha256": {"type": "string"}, "url": {"type": "string"}}, "required": ["sha256", "url"]}}, "required": ["0.1.1", "0.1.2", "0.2", "0.3"]}}, "required": ["latest_version", "meta", "versions"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"latest_version" : ["0.3"], "meta" : {"description" : "tools for machine learning and data mining in Astronomy", "homepage" : "http://astroML.github.com", "license" : "BSD"}, "versions" : {"0.1.1" : {"sha256" : "229c6765edafedab1d10e6557a772181231e34e0fa517561e2f45800d17cb084", "url" : "https://files.pythonhosted.org/packages/bd/08/f4a38d8c7b5b00d044864da7d77528fed42d9308263d619ed2b7f99be7a3/astroML-0.1.1.tar.gz"}, "0.1.2" : {"sha256" : "59ded1f5ea47ca012efb13226e80a471b86188b01a233afb489fe3dada03340a", "url" : "https://files.pythonhosted.org/packages/c3/de/2fc7d97e77d8c5878342d73758a51f47c20ace521bbc94713dc8ee44e064/astroML-0.1.2.tar.gz"}, "0.2" : {"sha256" : "d243b96b7d898f4cf0cb8b6ef6e37d08b6439e4a8461aaa8b20ee412112c2c09", "url" : "https://files.pythonhosted.org/packages/ba/5b/ab0f1043c6654f65c5c15b5efda4eba0a1e9c38ff4122a7ab3cfe6df22d3/astroML-0.2.tar.gz"}, "0.3" : {"sha256" : "ea6d0119593aed0e0dadc79c613ac0bddad95e6f12151237562a4fd67552b2b8", "url" : "https://files.pythonhosted.org/packages/08/8f/3d54d0c6b618bf3c19f9aeba5faf0fe6dd5be61bcc3d81174c8f6ab2e660/astroML-0.3.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.1.1": {"type": "object", "properties": {"sha256": {"type": "string"}, "url": {"type": "string"}}, "required": ["sha256", "url"]}, "0.1.2": {"type": "object", "properties": {"sha256": {"type": "string"}, "url": {"type": "string"}}, "required": ["sha256", "url"]}, "0.2": {"type": "object", "properties": {"sha256": {"type": "string"}, "url": {"type": "string"}}, "required": ["sha256", "url"]}, "0.3": {"type": "object", "properties": {"sha256": {"type": "string"}, "url": {"type": "string"}}, "required": ["sha256", "url"]}}, "required": ["0.1.1", "0.1.2", "0.2", "0.3"]}}, "required": ["latest_version", "meta", "versions"], "$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"}, "url": {"type": "string"}, "year": {"type": "integer"}, "venue": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"]}}, "id": {"type": "string"}}, "required": ["title", "url", "year", "venue", "authors", "id"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"title" : "Bitcoin-NG: A Scalable Blockchain Protocol", "url" : "http://arxiv.org/pdf/1510.02037.pdf", "year" : 2015, "venue" : "arXiv", "authors" : [{"name" : "Ittay Eyal"}, {"name" : "Adem Efe Gencer"}, {"name" : "Emin Gun Sirer"}, {"name" : "Robbert van Renesse"}], "id" : "eyal2015bitcoinng"}
json_instruct
{"type": "object", "properties": {"title": {"type": "string"}, "url": {"type": "string"}, "year": {"type": "integer"}, "venue": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"]}}, "id": {"type": "string"}}, "required": ["title", "url", "year", "venue", "authors", "id"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"window.zoomLevel": {"type": "integer"}, "editor.fontSize": {"type": "integer"}, "editor.fontLigatures": {"type": "boolean"}, "editor.formatOnSave": {"type": "boolean"}, "editor.formatOnPaste": {"type": "boolean"}, "editor.tabSize": {"type": "integer"}, "editor.renderWhitespace": {"type": "string"}}, "required": ["window.zoomLevel", "editor.fontSize", "editor.fontLigatures", "editor.formatOnSave", "editor.formatOnPaste", "editor.tabSize", "editor.renderWhitespace"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"window.zoomLevel" : 0, "editor.fontSize" : 12, "editor.fontLigatures" : true, "editor.formatOnSave" : true, "editor.formatOnPaste" : true, "editor.tabSize" : 2, "editor.renderWhitespace" : "all"}
json_instruct
{"type": "object", "properties": {"window.zoomLevel": {"type": "integer"}, "editor.fontSize": {"type": "integer"}, "editor.fontLigatures": {"type": "boolean"}, "editor.formatOnSave": {"type": "boolean"}, "editor.formatOnPaste": {"type": "boolean"}, "editor.tabSize": {"type": "integer"}, "editor.renderWhitespace": {"type": "string"}}, "required": ["window.zoomLevel", "editor.fontSize", "editor.fontLigatures", "editor.formatOnSave", "editor.formatOnPaste", "editor.tabSize", "editor.renderWhitespace"], "$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" : ["anvil_falling:tick"]}
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#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"ast": {"type": "null"}, "code": {"type": "string"}, "map": {"type": "object", "properties": {"version": {"type": "integer"}, "sources": {"type": "array", "items": {"type": "string"}}, "names": {"type": "array", "items": {"type": "string"}}, "mappings": {"type": "string"}, "sourcesContent": {"type": "array", "items": {"type": "string"}}}, "required": ["version", "sources", "names", "mappings", "sourcesContent"]}, "metadata": {"type": "object", "properties": {}, "required": []}, "sourceType": {"type": "string"}}, "required": ["ast", "code", "map", "metadata", "sourceType"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"ast" : null, "code" : "var theme={color:{primary:'#5ABE93',secondary:'#59AEA6',tertiary:'#B2D9B7',accent:'#FA885E',accentHover:'#E87E57',background:{primary:'#94D3C0',secondary:'#FEFFF6'},text:{primary:'#07234E'}},padding:{},margin:{},height:{navBarMobile:'88px',navBarDesktop:'4.8em'},bp:{xs:\"(min-width: 425px)\",sm:\"(min-width: 768px)\",md:\"(min-width: 1024px)\",lg:\"(min-width: 1280px)\",xl:\"(min-width: 1440px)\"}};export default theme;", "map" : {"version" : 3, "sources" : ["/home/sam/Documents/mern-app/front-end/src/components/Theme/theme.js"], "names" : ["theme", "color", "primary", "secondary", "tertiary", "accent", "accentHover", "background", "text", "padding", "margin", "height", "navBarMobile", "navBarDesktop", "bp", "xs", "sm", "md", "lg", "xl"], "mappings" : "AAAA,GAAMA,CAAAA,KAAK,CAAG,CACbC,KAAK,CAAE,CACNC,OAAO,CAAE,SADH,CAENC,SAAS,CAAE,SAFL,CAGNC,QAAQ,CAAE,SAHJ,CAINC,MAAM,CAAE,SAJF,CAKNC,WAAW,CAAE,SALP,CAMNC,UAAU,CAAE,CACXL,OAAO,CAAE,SADE,CAEXC,SAAS,CAAE,SAFA,CANN,CAUNK,IAAI,CAAE,CACLN,OAAO,CAAE,SADJ,CAVA,CADM,CAebO,OAAO,CAAE,EAfI,CAgBbC,MAAM,CAAE,EAhBK,CAiBbC,MAAM,CAAE,CACPC,YAAY,CAAE,MADP,CAEPC,aAAa,CAAE,OAFR,CAjBK,CAqBbC,EAAE,CAAE,CACHC,EAAE,qBADC,CAEHC,EAAE,qBAFC,CAGHC,EAAE,sBAHC,CAIHC,EAAE,sBAJC,CAKHC,EAAE,sBALC,CArBS,CAAd,CA8BA,cAAenB,CAAAA,KAAf", "sourcesContent" : ["const theme = {\n\tcolor: {\n\t\tprimary: '#5ABE93',\n\t\tsecondary: '#59AEA6',\n\t\ttertiary: '#B2D9B7',\n\t\taccent: '#FA885E',\n\t\taccentHover: '#E87E57',\n\t\tbackground: {\n\t\t\tprimary: '#94D3C0',\n\t\t\tsecondary: '#FEFFF6',\n\t\t},\n\t\ttext: {\n\t\t\tprimary: '#07234E',\n\t\t},\n\t},\n\tpadding: {},\n\tmargin: {},\n\theight: {\n\t\tnavBarMobile: '88px',\n\t\tnavBarDesktop: '4.8em',\n\t},\n\tbp: {\n\t\txs: `(min-width: 425px)`,\n\t\tsm: `(min-width: 768px)`,\n\t\tmd: `(min-width: 1024px)`,\n\t\tlg: `(min-width: 1280px)`,\n\t\txl: `(min-width: 1440px)`,\n\t},\n};\n\nexport default theme;\n"]}, "metadata" : {}, "sourceType" : "module"}
json_instruct
{"type": "object", "properties": {"ast": {"type": "null"}, "code": {"type": "string"}, "map": {"type": "object", "properties": {"version": {"type": "integer"}, "sources": {"type": "array", "items": {"type": "string"}}, "names": {"type": "array", "items": {"type": "string"}}, "mappings": {"type": "string"}, "sourcesContent": {"type": "array", "items": {"type": "string"}}}, "required": ["version", "sources", "names", "mappings", "sourcesContent"]}, "metadata": {"type": "object", "properties": {}, "required": []}, "sourceType": {"type": "string"}}, "required": ["ast", "code", "map", "metadata", "sourceType"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"place_name": {"type": "string"}, "state_name": {"type": "string"}, "state_abbrv": {"type": "string"}, "lat": {"type": "string"}, "long": {"type": "string"}}, "required": ["place_name", "state_name", "state_abbrv", "lat", "long"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"place_name" : "Southbridge", "state_name" : "Massachusetts", "state_abbrv" : "MA", "lat" : "42.075", "long" : "-72.0353"}
json_instruct
{"type": "object", "properties": {"place_name": {"type": "string"}, "state_name": {"type": "string"}, "state_abbrv": {"type": "string"}, "lat": {"type": "string"}, "long": {"type": "string"}}, "required": ["place_name", "state_name", "state_abbrv", "lat", "long"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"name": {"type": "string"}, "pkg_version": {"type": "string"}, "rebuild": {"type": "integer"}, "bottles": {"type": "object", "properties": {"catalina": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "mojave": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "high_sierra": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "sierra": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "el_capitan": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "yosemite": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}}, "required": ["catalina", "mojave", "high_sierra", "sierra", "el_capitan", "yosemite"]}, "dependencies": {"type": "array", "items": {}}}, "required": ["name", "pkg_version", "rebuild", "bottles", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "fondu", "pkg_version" : "060102", "rebuild" : 1, "bottles" : {"catalina" : {"url" : "https://ghcr.io/v2/homebrew/core/fondu/blobs/sha256:3c8abb65351f0b4d1399234918154035f62ddcceed533f95a286fac1d1e91a87"}, "mojave" : {"url" : "https://ghcr.io/v2/homebrew/core/fondu/blobs/sha256:475674b5832a56db833ddf7fd01a4c16ff848dfc43dcca726ddfca86d42afdec"}, "high_sierra" : {"url" : "https://ghcr.io/v2/homebrew/core/fondu/blobs/sha256:00619e7b8f11378041a50cfcb557bebdfb542fbd7f1d5eda85d756537b9c34d9"}, "sierra" : {"url" : "https://ghcr.io/v2/homebrew/core/fondu/blobs/sha256:a4e10488264a8c28c06aa2f517e1937b3375462b4c44dcfb2ed50a8742298821"}, "el_capitan" : {"url" : "https://ghcr.io/v2/homebrew/core/fondu/blobs/sha256:c4fadd6744370dc946b7dde1ec8329335146257ad60b829f9f4024912859d7db"}, "yosemite" : {"url" : "https://ghcr.io/v2/homebrew/core/fondu/blobs/sha256:dfeddb29a48dcf4db6aaf8170b54137fb329e216a4f83f47ddf262a984ab469e"}}, "dependencies" : []}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "pkg_version": {"type": "string"}, "rebuild": {"type": "integer"}, "bottles": {"type": "object", "properties": {"catalina": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "mojave": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "high_sierra": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "sierra": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "el_capitan": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "yosemite": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}}, "required": ["catalina", "mojave", "high_sierra", "sierra", "el_capitan", "yosemite"]}, "dependencies": {"type": "array", "items": {}}}, "required": ["name", "pkg_version", "rebuild", "bottles", "dependencies"], "$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"}, "version": {"type": "string"}, "description": {"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", "description", "repository", "keywords", "author", "license", "bugs", "homepage"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "atom-svg-icon-snippets", "version" : "0.3.3", "description" : "Simple snippets for adding SVGs in HTML using Atom", "repository" : {"type" : "git", "url" : "git+https://github.com/iainspad/atom-svg-icon-snippets.git"}, "keywords" : ["html", "svg", "snippets", "icons"], "author" : "Simon Owen, Iain", "license" : "MIT", "bugs" : {"url" : "https://github.com/iainspad/atom-svg-icon-snippets/issues"}, "homepage" : "https://github.com/iainspad/atom-svg-icon-snippets#readme"}
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"]}, "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", "description", "repository", "keywords", "author", "license", "bugs", "homepage"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
[[1969, 5], [1970, 5], [1973, 8], [1974, 11], [1975, 10], [1976, 7], [1977, 7], [1978, 12], [1979, 10], [1980, 11], [1981, 12], [1982, 7], [1983, 10], [1984, 11], [1985, 7], [1986, 12], [1987, 8]]
json_instruct
{"type": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$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"}, "version": {"type": "string"}, "private": {"type": "boolean"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}, "test": {"type": "string"}}, "required": ["start", "test"]}, "dependencies": {"type": "object", "properties": {"body-parser": {"type": "string"}, "compression": {"type": "string"}, "config": {"type": "string"}, "cookie-parser": {"type": "string"}, "debug": {"type": "string"}, "ect": {"type": "string"}, "express": {"type": "string"}, "fluent-logger": {"type": "string"}, "forever": {"type": "string"}, "log4js": {"type": "string"}, "moment": {"type": "string"}, "mongoose": {"type": "string"}, "mongoose-auto-increment": {"type": "string"}, "node-dev": {"type": "string"}, "static-favicon": {"type": "string"}, "synchronize": {"type": "string"}, "underscore": {"type": "string"}}, "required": ["body-parser", "compression", "config", "cookie-parser", "debug", "ect", "express", "fluent-logger", "forever", "log4js", "moment", "mongoose", "mongoose-auto-increment", "node-dev", "static-favicon", "synchronize", "underscore"]}, "main": {"type": "string"}, "repository": {"type": "string"}, "license": {"type": "string"}}, "required": ["name", "version", "private", "scripts", "dependencies", "main", "repository", "license"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "mws-db-webapp", "version" : "1.0.0", "private" : true, "scripts" : {"start" : "set NODE_ENV=production&& node-dev ./bin/www", "test" : "set NODE_ENV=development&& node-dev ./bin/www"}, "dependencies" : {"body-parser" : "~1.0.0", "compression" : "*", "config" : "*", "cookie-parser" : "~1.0.1", "debug" : "~0.7.4", "ect" : "^0.5.9", "express" : "~4.2.0", "fluent-logger" : "*", "forever" : "*", "log4js" : "2.5.2", "moment" : "*", "mongoose" : "~4.2.5", "mongoose-auto-increment" : "*", "node-dev" : "*", "static-favicon" : "~1.0.0", "synchronize" : "*", "underscore" : "*"}, "main" : "apps.js", "repository" : "https://github.com/siekeuk/mws-db-webapp.git", "license" : "MIT"}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "private": {"type": "boolean"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}, "test": {"type": "string"}}, "required": ["start", "test"]}, "dependencies": {"type": "object", "properties": {"body-parser": {"type": "string"}, "compression": {"type": "string"}, "config": {"type": "string"}, "cookie-parser": {"type": "string"}, "debug": {"type": "string"}, "ect": {"type": "string"}, "express": {"type": "string"}, "fluent-logger": {"type": "string"}, "forever": {"type": "string"}, "log4js": {"type": "string"}, "moment": {"type": "string"}, "mongoose": {"type": "string"}, "mongoose-auto-increment": {"type": "string"}, "node-dev": {"type": "string"}, "static-favicon": {"type": "string"}, "synchronize": {"type": "string"}, "underscore": {"type": "string"}}, "required": ["body-parser", "compression", "config", "cookie-parser", "debug", "ect", "express", "fluent-logger", "forever", "log4js", "moment", "mongoose", "mongoose-auto-increment", "node-dev", "static-favicon", "synchronize", "underscore"]}, "main": {"type": "string"}, "repository": {"type": "string"}, "license": {"type": "string"}}, "required": ["name", "version", "private", "scripts", "dependencies", "main", "repository", "license"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {"type": "integer"}}, "productReviews": {"type": "array", "items": {"type": "object", "properties": {"productId": {"type": "integer"}, "reviewText": {"type": "string"}, "reviewDate": {"type": "string"}}, "required": ["productId", "reviewText", "reviewDate"]}}}, "required": ["userId", "cartId", "preferredProducts", "productReviews"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"userId" : 71046, "cartId" : "cac78635-a778-45bc-b12e-6003f7391a56", "preferredProducts" : [1757], "productReviews" : [{"productId" : 2687, "reviewText" : "The box this comes in is 3 yard by 6 light-year and weights 11 megaton!!", "reviewDate" : "2017-09-29T15:56:00.656313+03:00"}, {"productId" : 4236, "reviewText" : "The box this comes in is 4 light-year by 5 inch and weights 11 megaton!!", "reviewDate" : "2016-06-17T16:53:52.6073599+03:00"}, {"productId" : 2959, "reviewText" : "i use it once a week when i'm in my firetruck.", "reviewDate" : "2019-02-26T05:42:21.8992722+02:00"}, {"productId" : 4972, "reviewText" : "one of my hobbies is hiking. and when i'm hiking this works great.", "reviewDate" : "2017-08-27T09:57:04.6041569+03:00"}, {"productId" : 4215, "reviewText" : "It only works when I'm Norway.", "reviewDate" : "2016-07-30T03:23:06.933326+03:00"}]}
json_instruct
{"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {"type": "integer"}}, "productReviews": {"type": "array", "items": {"type": "object", "properties": {"productId": {"type": "integer"}, "reviewText": {"type": "string"}, "reviewDate": {"type": "string"}}, "required": ["productId", "reviewText", "reviewDate"]}}}, "required": ["userId", "cartId", "preferredProducts", "productReviews"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"python": {"type": "string"}, "version": {"type": "string"}}, "required": ["python", "version"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"python" : "3.8", "version" : "1.2.3"}
json_instruct
{"type": "object", "properties": {"python": {"type": "string"}, "version": {"type": "string"}}, "required": ["python", "version"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"appService.zipIgnorePattern": {"type": "array", "items": {"type": "string"}}, "appService.defaultWebAppToDeploy": {"type": "string"}, "appService.deploySubpath": {"type": "string"}}, "required": ["appService.zipIgnorePattern", "appService.defaultWebAppToDeploy", "appService.deploySubpath"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"appService.zipIgnorePattern" : ["node_modules{,/**}", ".vscode{,/**}"], "appService.defaultWebAppToDeploy" : "/subscriptions/de831a78-8f23-4165-883f-3d52f5bea2a1/resourceGroups/appsvc_linux_centralus/providers/Microsoft.Web/sites/teambbhackathonheatmap", "appService.deploySubpath" : "."}
json_instruct
{"type": "object", "properties": {"appService.zipIgnorePattern": {"type": "array", "items": {"type": "string"}}, "appService.defaultWebAppToDeploy": {"type": "string"}, "appService.deploySubpath": {"type": "string"}}, "required": ["appService.zipIgnorePattern", "appService.defaultWebAppToDeploy", "appService.deploySubpath"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"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" : "2007", "provinceId" : "91", "regencyId" : "09", "districtId" : "06", "name" : "Jengkon"}
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": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "object", "properties": {"error": {"type": "null"}, "issues": {"type": "array", "items": {}}, "success": {"type": "boolean"}}, "required": ["error", "issues", "success"]}}, "required": ["contract", "tool", "start", "end", "duration", "analysis"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"contract" : "0x2a0f5a9515a4c4579d1613e047a8c380b5994339", "tool" : "mythril", "start" : 1563681779.3417616, "end" : 1563681783.5081756, "duration" : 4.166414022445679, "analysis" : {"error" : null, "issues" : [], "success" : true}}
json_instruct
{"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "object", "properties": {"error": {"type": "null"}, "issues": {"type": "array", "items": {}}, "success": {"type": "boolean"}}, "required": ["error", "issues", "success"]}}, "required": ["contract", "tool", "start", "end", "duration", "analysis"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"id": {"type": "string"}}, "required": ["id"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : "3dd647728c275326f8ce4b300c92a119ee8333ec"}
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}}, "required": ["id"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"viewBox": {"type": "string"}, "font": {"type": "string"}, "code": {"type": "string"}, "ref": {"type": "string"}, "path": {"type": "string"}}, "required": ["viewBox", "font", "code", "ref", "path"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"viewBox" : "0 0 1024 1024", "font" : "devopicons", "code" : "e62c", "ref" : "techcrunch", "path" : "M0 427h171v341h170V427h171v341h512V597H683V427h341V256H683v171H512V256H0v171z"}
json_instruct
{"type": "object", "properties": {"viewBox": {"type": "string"}, "font": {"type": "string"}, "code": {"type": "string"}, "ref": {"type": "string"}, "path": {"type": "string"}}, "required": ["viewBox", "font", "code", "ref", "path"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"version": {"type": "number"}, "people": {"type": "array", "items": {"type": "object", "properties": {"person_id": {"type": "array", "items": {"type": "integer"}}, "pose_keypoints_2d": {"type": "array", "items": {"type": "number"}}, "face_keypoints_2d": {"type": "array", "items": {}}, "hand_left_keypoints_2d": {"type": "array", "items": {}}, "hand_right_keypoints_2d": {"type": "array", "items": {}}, "pose_keypoints_3d": {"type": "array", "items": {}}, "face_keypoints_3d": {"type": "array", "items": {}}, "hand_left_keypoints_3d": {"type": "array", "items": {}}, "hand_right_keypoints_3d": {"type": "array", "items": {}}}, "required": ["person_id", "pose_keypoints_2d", "face_keypoints_2d", "hand_left_keypoints_2d", "hand_right_keypoints_2d", "pose_keypoints_3d", "face_keypoints_3d", "hand_left_keypoints_3d", "hand_right_keypoints_3d"]}}}, "required": ["version", "people"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"version" : 1.3, "people" : [{"person_id" : [-1], "pose_keypoints_2d" : [147.379, 63.6521, 0.264389, 151.634, 69.8616, 0.658043, 150.465, 69.8669, 0.596868, 0, 0, 0, 0, 0, 0, 153.582, 69.8583, 0.724063, 156.671, 77.2273, 0.58861, 156.673, 85.7535, 0.606069, 154.739, 85.3774, 0.556231, 153.948, 85.7478, 0.562337, 156.293, 98.1484, 0.441938, 160.547, 110.153, 0.338211, 156.652, 85.3699, 0.620556, 156.297, 97.7619, 0.655042, 162.484, 110.167, 0.571585, 147.378, 62.5017, 0.0610654, 147.783, 62.1174, 0.264451, 0, 0, 0, 150.488, 63.6496, 0.375376, 157.836, 112.886, 0.506604, 159.783, 113.268, 0.567827, 164.042, 110.57, 0.483852, 157.445, 112.873, 0.169898, 157.063, 111.333, 0.187707, 162.884, 110.557, 0.175682], "face_keypoints_2d" : [], "hand_left_keypoints_2d" : [], "hand_right_keypoints_2d" : [], "pose_keypoints_3d" : [], "face_keypoints_3d" : [], "hand_left_keypoints_3d" : [], "hand_right_keypoints_3d" : []}]}
json_instruct
{"type": "object", "properties": {"version": {"type": "number"}, "people": {"type": "array", "items": {"type": "object", "properties": {"person_id": {"type": "array", "items": {"type": "integer"}}, "pose_keypoints_2d": {"type": "array", "items": {"type": "number"}}, "face_keypoints_2d": {"type": "array", "items": {}}, "hand_left_keypoints_2d": {"type": "array", "items": {}}, "hand_right_keypoints_2d": {"type": "array", "items": {}}, "pose_keypoints_3d": {"type": "array", "items": {}}, "face_keypoints_3d": {"type": "array", "items": {}}, "hand_left_keypoints_3d": {"type": "array", "items": {}}, "hand_right_keypoints_3d": {"type": "array", "items": {}}}, "required": ["person_id", "pose_keypoints_2d", "face_keypoints_2d", "hand_left_keypoints_2d", "hand_right_keypoints_2d", "pose_keypoints_3d", "face_keypoints_3d", "hand_left_keypoints_3d", "hand_right_keypoints_3d"]}}}, "required": ["version", "people"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"objects": {"type": "object", "properties": {"vectile": {"type": "object", "properties": {"type": {"type": "string"}, "geometries": {"type": "array", "items": {"type": "object", "properties": {"arcs": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"id": {"type": "integer"}, "nazev": {"type": "string"}}, "required": ["id", "nazev"]}, "clipped": {"type": "boolean"}, "id": {"type": "string"}}, "required": ["arcs", "type", "properties", "clipped", "id"]}}}, "required": ["type", "geometries"]}}, "required": ["vectile"]}, "type": {"type": "string"}, "transform": {"type": "object", "properties": {"translate": {"type": "array", "items": {"type": "number"}}, "scale": {"type": "array", "items": {"type": "number"}}}, "required": ["translate", "scale"]}, "arcs": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}}}, "required": ["objects", "type", "transform", "arcs"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"objects" : {"vectile" : {"type" : "GeometryCollection", "geometries" : [{"arcs" : [[0]], "type" : "Polygon", "properties" : {"id" : 24, "nazev" : "Plze\ufffd-jih"}, "clipped" : true, "id" : "c50e821896"}, {"arcs" : [[1]], "type" : "Polygon", "properties" : {"id" : 21, "nazev" : "Doma\ufffdlice"}, "clipped" : true, "id" : "a614e1ba40"}]}}, "type" : "Topology", "transform" : {"translate" : [12.96386718749997, 49.5822260446217], "scale" : [4.29153442382639e-05, 2.781630219973047e-05]}, "arcs" : [[[1024, 715], [-93, 178], [83, 131], [10, 0], [0, -309]], [[1014, 1024], [-83, -131], [93, -178], [0, -715], [-1024, 0], [0, 1024], [1014, 0]]]}
json_instruct
{"type": "object", "properties": {"objects": {"type": "object", "properties": {"vectile": {"type": "object", "properties": {"type": {"type": "string"}, "geometries": {"type": "array", "items": {"type": "object", "properties": {"arcs": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"id": {"type": "integer"}, "nazev": {"type": "string"}}, "required": ["id", "nazev"]}, "clipped": {"type": "boolean"}, "id": {"type": "string"}}, "required": ["arcs", "type", "properties", "clipped", "id"]}}}, "required": ["type", "geometries"]}}, "required": ["vectile"]}, "type": {"type": "string"}, "transform": {"type": "object", "properties": {"translate": {"type": "array", "items": {"type": "number"}}, "scale": {"type": "array", "items": {"type": "number"}}}, "required": ["translate", "scale"]}, "arcs": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}}}, "required": ["objects", "type", "transform", "arcs"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "array", "items": {"type": "object", "properties": {"results": {"type": "array", "items": {"type": "object", "properties": {"tech": {"type": "integer"}, "pts": {"type": "integer"}, "connections": {"type": "integer"}, "capacity": {"type": "integer"}, "investments": {"type": "integer"}}, "required": ["tech", "pts", "connections", "capacity", "investments"]}}}, "required": ["results"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"results" : [{"tech" : 3, "pts" : 457, "connections" : 85012, "capacity" : 204289, "investments" : 1123646}, {"tech" : 1, "pts" : 119, "connections" : 56281, "capacity" : 46901, "investments" : 6577423}]}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"results": {"type": "array", "items": {"type": "object", "properties": {"tech": {"type": "integer"}, "pts": {"type": "integer"}, "connections": {"type": "integer"}, "capacity": {"type": "integer"}, "investments": {"type": "integer"}}, "required": ["tech", "pts", "connections", "capacity", "investments"]}}}, "required": ["results"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"react-data-grid.js": {"type": "string"}, "react-data-grid.min.js": {"type": "string"}}, "required": ["react-data-grid.js", "react-data-grid.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"react-data-grid.js" : "sha256-MoT1qNPJwfha3qBJeskrHO5aCML6pC0fI9EH9auGoGw=", "react-data-grid.min.js" : "sha256-acnPrzxF2dI9HvqdnBIAuBLcys3icq8jxkJ1pvh7l4k="}
json_instruct
{"type": "object", "properties": {"react-data-grid.js": {"type": "string"}, "react-data-grid.min.js": {"type": "string"}}, "required": ["react-data-grid.js", "react-data-grid.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"name": {"type": "string"}, "id": {"type": "string"}, "address": {"type": "string"}, "school_type": {"type": "string"}, "fax": {"type": "string"}, "phone": {"type": "string"}, "website": {"type": "string"}, "email": {"type": "string"}, "state": {"type": "string"}, "programs": {"type": "object", "properties": {"programs": {"type": "array", "items": {}}}, "required": ["programs"]}, "full_time_school": {"type": "boolean"}, "lon": {"type": "number"}, "lat": {"type": "number"}}, "required": ["name", "id", "address", "school_type", "fax", "phone", "website", "email", "state", "programs", "full_time_school", "lon", "lat"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "Gem. Grundschule Lohberg", "id" : "NRW-106124", "address" : "Lohbergstra\u00dfe 70, 46537 Dinslaken", "school_type" : "Grundschule", "fax" : "02064 398638", "phone" : "02064 30347", "website" : "", "email" : " 106124@schule.nrw.de ", "state" : "NRW", "programs" : {"programs" : []}, "full_time_school" : false, "lon" : 6.754308, "lat" : 51.583268}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "id": {"type": "string"}, "address": {"type": "string"}, "school_type": {"type": "string"}, "fax": {"type": "string"}, "phone": {"type": "string"}, "website": {"type": "string"}, "email": {"type": "string"}, "state": {"type": "string"}, "programs": {"type": "object", "properties": {"programs": {"type": "array", "items": {}}}, "required": ["programs"]}, "full_time_school": {"type": "boolean"}, "lon": {"type": "number"}, "lat": {"type": "number"}}, "required": ["name", "id", "address", "school_type", "fax", "phone", "website", "email", "state", "programs", "full_time_school", "lon", "lat"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}, "preferGlobal": {"type": "boolean"}, "dependencies": {"type": "object", "properties": {"prompt": {"type": "string"}, "q": {"type": "string"}}, "required": ["prompt", "q"]}, "bin": {"type": "object", "properties": {"fallouthacking": {"type": "string"}}, "required": ["fallouthacking"]}}, "required": ["name", "version", "description", "repository", "scripts", "keywords", "author", "license", "preferGlobal", "dependencies", "bin"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "fallouthacking", "version" : "0.1.0", "description" : "Fallut series style hacking game.", "repository" : {"type" : "git", "url" : "https://github.com/drewwyatt/fallouthacking.git"}, "scripts" : {"test" : "echo \"Error: no test specified\" && exit 1"}, "keywords" : ["fallout", "hacking", "reddit", "dailyprogrammer"], "author" : "Drew Wyatt", "license" : "MIT", "preferGlobal" : true, "dependencies" : {"prompt" : "^0.2.14", "q" : "^1.4.1"}, "bin" : {"fallouthacking" : "index.js"}}
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"]}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}, "preferGlobal": {"type": "boolean"}, "dependencies": {"type": "object", "properties": {"prompt": {"type": "string"}, "q": {"type": "string"}}, "required": ["prompt", "q"]}, "bin": {"type": "object", "properties": {"fallouthacking": {"type": "string"}}, "required": ["fallouthacking"]}}, "required": ["name", "version", "description", "repository", "scripts", "keywords", "author", "license", "preferGlobal", "dependencies", "bin"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"\u5de5\u5ee0\u540d\u7a31": {"type": "string"}, "\u5de5\u5ee0\u767b\u8a18\u7de8\u865f": {"type": "string"}, "\u5de5\u5ee0\u8a2d\u7acb\u8a31\u53ef\u6848\u865f": {"type": "string"}, "\u5de5\u5ee0\u5730\u5740": {"type": "string"}, "\u5de5\u5ee0\u5e02\u93ae\u9109\u6751\u91cc": {"type": "string"}, "\u5de5\u5ee0\u8ca0\u8cac\u4eba\u59d3\u540d": {"type": "string"}, "\u71df\u5229\u4e8b\u696d\u7d71\u4e00\u7de8\u865f": {"type": "string"}, "\u5de5\u5ee0\u7d44\u7e54\u578b\u614b": {"type": "string"}, "\u5de5\u5ee0\u8a2d\u7acb\u6838\u51c6\u65e5\u671f": {"type": "string"}, "\u5de5\u5ee0\u767b\u8a18\u6838\u51c6\u65e5\u671f": {"type": "string"}, "\u5de5\u5ee0\u767b\u8a18\u72c0\u614b": {"type": "string"}, "\u7522\u696d\u985e\u5225": {"type": "array", "items": {"type": "string"}}, "\u4e3b\u8981\u7522\u54c1": {"type": "array", "items": {"type": "string"}}}, "required": ["\u5de5\u5ee0\u540d\u7a31", "\u5de5\u5ee0\u767b\u8a18\u7de8\u865f", "\u5de5\u5ee0\u8a2d\u7acb\u8a31\u53ef\u6848\u865f", "\u5de5\u5ee0\u5730\u5740", "\u5de5\u5ee0\u5e02\u93ae\u9109\u6751\u91cc", "\u5de5\u5ee0\u8ca0\u8cac\u4eba\u59d3\u540d", "\u71df\u5229\u4e8b\u696d\u7d71\u4e00\u7de8\u865f", "\u5de5\u5ee0\u7d44\u7e54\u578b\u614b", "\u5de5\u5ee0\u8a2d\u7acb\u6838\u51c6\u65e5\u671f", "\u5de5\u5ee0\u767b\u8a18\u6838\u51c6\u65e5\u671f", "\u5de5\u5ee0\u767b\u8a18\u72c0\u614b", "\u7522\u696d\u985e\u5225", "\u4e3b\u8981\u7522\u54c1"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"\u5de5\u5ee0\u540d\u7a31" : "\u62dc\u5be7\u751f\u7269\u79d1\u6280\u80a1\u4efd\u6709\u9650\u516c\u53f8\u5b9c\u862d\u4e00\u5ee0", "\u5de5\u5ee0\u767b\u8a18\u7de8\u865f" : "99721074", "\u5de5\u5ee0\u8a2d\u7acb\u8a31\u53ef\u6848\u865f" : "", "\u5de5\u5ee0\u5730\u5740" : "\u5b9c\u862d\u7e23\u5b9c\u862d\u5e02\u6885\u6d32\u91cc\u6885\u6d32\u4e00\u8def\uff12\uff12\u865f", "\u5de5\u5ee0\u5e02\u93ae\u9109\u6751\u91cc" : "\u5b9c\u862d\u7e23\u5b9c\u862d\u5e02\u6885\u6d32\u91cc", "\u5de5\u5ee0\u8ca0\u8cac\u4eba\u59d3\u540d" : "\u9673\u5efa\u5dde", "\u71df\u5229\u4e8b\u696d\u7d71\u4e00\u7de8\u865f" : "28345906", "\u5de5\u5ee0\u7d44\u7e54\u578b\u614b" : "\u80a1\u4efd\u6709\u9650\u516c\u53f8", "\u5de5\u5ee0\u8a2d\u7acb\u6838\u51c6\u65e5\u671f" : "", "\u5de5\u5ee0\u767b\u8a18\u6838\u51c6\u65e5\u671f" : "0990902", "\u5de5\u5ee0\u767b\u8a18\u72c0\u614b" : "\u751f\u7522\u4e2d", "\u7522\u696d\u985e\u5225" : ["19\u5316\u5b78\u88fd\u54c1\u88fd\u9020\u696d"], "\u4e3b\u8981\u7522\u54c1" : ["194\u5316\u7ca7\u54c1"]}
json_instruct
{"type": "object", "properties": {"\u5de5\u5ee0\u540d\u7a31": {"type": "string"}, "\u5de5\u5ee0\u767b\u8a18\u7de8\u865f": {"type": "string"}, "\u5de5\u5ee0\u8a2d\u7acb\u8a31\u53ef\u6848\u865f": {"type": "string"}, "\u5de5\u5ee0\u5730\u5740": {"type": "string"}, "\u5de5\u5ee0\u5e02\u93ae\u9109\u6751\u91cc": {"type": "string"}, "\u5de5\u5ee0\u8ca0\u8cac\u4eba\u59d3\u540d": {"type": "string"}, "\u71df\u5229\u4e8b\u696d\u7d71\u4e00\u7de8\u865f": {"type": "string"}, "\u5de5\u5ee0\u7d44\u7e54\u578b\u614b": {"type": "string"}, "\u5de5\u5ee0\u8a2d\u7acb\u6838\u51c6\u65e5\u671f": {"type": "string"}, "\u5de5\u5ee0\u767b\u8a18\u6838\u51c6\u65e5\u671f": {"type": "string"}, "\u5de5\u5ee0\u767b\u8a18\u72c0\u614b": {"type": "string"}, "\u7522\u696d\u985e\u5225": {"type": "array", "items": {"type": "string"}}, "\u4e3b\u8981\u7522\u54c1": {"type": "array", "items": {"type": "string"}}}, "required": ["\u5de5\u5ee0\u540d\u7a31", "\u5de5\u5ee0\u767b\u8a18\u7de8\u865f", "\u5de5\u5ee0\u8a2d\u7acb\u8a31\u53ef\u6848\u865f", "\u5de5\u5ee0\u5730\u5740", "\u5de5\u5ee0\u5e02\u93ae\u9109\u6751\u91cc", "\u5de5\u5ee0\u8ca0\u8cac\u4eba\u59d3\u540d", "\u71df\u5229\u4e8b\u696d\u7d71\u4e00\u7de8\u865f", "\u5de5\u5ee0\u7d44\u7e54\u578b\u614b", "\u5de5\u5ee0\u8a2d\u7acb\u6838\u51c6\u65e5\u671f", "\u5de5\u5ee0\u767b\u8a18\u6838\u51c6\u65e5\u671f", "\u5de5\u5ee0\u767b\u8a18\u72c0\u614b", "\u7522\u696d\u985e\u5225", "\u4e3b\u8981\u7522\u54c1"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"hash": {"type": "string"}, "parentHash": {"type": "string"}, "number": {"type": "integer"}, "timestamp": {"type": "integer"}, "nonce": {"type": "string"}, "difficulty": {"type": "integer"}, "gasLimit": {"type": "object", "properties": {"_hex": {"type": "string"}}, "required": ["_hex"]}, "gasUsed": {"type": "object", "properties": {"_hex": {"type": "string"}}, "required": ["_hex"]}, "miner": {"type": "string"}, "extraData": {"type": "string"}, "transactions": {"type": "array", "items": {}}}, "required": ["hash", "parentHash", "number", "timestamp", "nonce", "difficulty", "gasLimit", "gasUsed", "miner", "extraData", "transactions"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"hash" : "0x447024902a812205ee373d829b1076a5ba18e15692db42a6cdd6b263e038b827", "parentHash" : "0xa78d93c544410e4076116968335578d4a977cbc418f523a73a289bcc2286aef2", "number" : 22762, "timestamp" : 1438533854, "nonce" : "0x05982aafd5e80205", "difficulty" : 1040514353878, "gasLimit" : {"_hex" : "0x1388"}, "gasUsed" : {"_hex" : "0x0"}, "miner" : "0xf927a40C8B7F6E07c5af7FA2155B4864a4112B13", "extraData" : "0x476574682f76312e302e302f6c696e75782f676f312e342e32", "transactions" : []}
json_instruct
{"type": "object", "properties": {"hash": {"type": "string"}, "parentHash": {"type": "string"}, "number": {"type": "integer"}, "timestamp": {"type": "integer"}, "nonce": {"type": "string"}, "difficulty": {"type": "integer"}, "gasLimit": {"type": "object", "properties": {"_hex": {"type": "string"}}, "required": ["_hex"]}, "gasUsed": {"type": "object", "properties": {"_hex": {"type": "string"}}, "required": ["_hex"]}, "miner": {"type": "string"}, "extraData": {"type": "string"}, "transactions": {"type": "array", "items": {}}}, "required": ["hash", "parentHash", "number", "timestamp", "nonce", "difficulty", "gasLimit", "gasUsed", "miner", "extraData", "transactions"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"}
["./b.json", "./b.json"]
json_instruct
{"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"status": {"type": "integer"}, "startTimes": {"type": "array", "items": {"type": "integer"}}, "objectiveValue": {"type": "number"}, "solverRuntimeInMilliseconds": {"type": "integer"}, "optional": {"type": "object", "properties": {}, "required": []}}, "required": ["status", "startTimes", "objectiveValue", "solverRuntimeInMilliseconds", "optional"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"status" : 3, "startTimes" : [34, 50, 20, 134, 149, 66, 41, 87, 159, 117, 102, 128, 231, 209, 255, 268, 299, 223, 284, 392, 314, 348, 400, 375, 338, 381, 416, 453, 473, 402, 403, 550, 532, 491, 481, 538, 526, 605, 583, 525, 551, 598, 674, 660, 639, 719, 620, 689, 823, 704, 805, 732, 700, 685, 728, 744, 835, 882, 853, 887, 889, 902, 857, 867, 841, 1085, 990, 1035, 892, 974, 1153, 1123, 1138, 1062, 1050, 1169, 1223, 1020, 1005, 1037, 1246, 1199, 1110, 1144, 1184, 1243, 1187, 1276, 1283, 1265, 1297, 1379, 1425, 1309, 1325, 1315, 1412, 1409, 1364, 1386], "objectiveValue" : 33576.0, "solverRuntimeInMilliseconds" : 0, "optional" : {}}
json_instruct
{"type": "object", "properties": {"status": {"type": "integer"}, "startTimes": {"type": "array", "items": {"type": "integer"}}, "objectiveValue": {"type": "number"}, "solverRuntimeInMilliseconds": {"type": "integer"}, "optional": {"type": "object", "properties": {}, "required": []}}, "required": ["status", "startTimes", "objectiveValue", "solverRuntimeInMilliseconds", "optional"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"dependencies": {"type": "object", "properties": {"bluebird": {"type": "string"}}, "required": ["bluebird"]}}, "required": ["dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"dependencies" : {"bluebird" : "3.4.7"}}
json_instruct
{"type": "object", "properties": {"dependencies": {"type": "object", "properties": {"bluebird": {"type": "string"}}, "required": ["bluebird"]}}, "required": ["dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"208489": {"type": "object", "properties": {"success": {"type": "boolean"}}, "required": ["success"]}}, "required": ["208489"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"208489" : {"success" : false}}
json_instruct
{"type": "object", "properties": {"208489": {"type": "object", "properties": {"success": {"type": "boolean"}}, "required": ["success"]}}, "required": ["208489"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"name": {"type": "string"}, "alt_name": {"type": "string"}, "country": {"type": "string"}, "state": {"type": "null"}, "address": {"type": "object", "properties": {"street": {"type": "string"}, "city": {"type": "string"}, "province": {"type": "string"}, "postal_code": {"type": "string"}}, "required": ["street", "city", "province", "postal_code"]}, "contact": {"type": "object", "properties": {"telephone": {"type": "string"}, "website": {"type": "string"}, "email": {"type": "string"}, "fax": {"type": "string"}}, "required": ["telephone", "website", "email", "fax"]}, "funding": {"type": "string"}, "languages": {"type": "null"}, "academic_year": {"type": "string"}, "accrediting_agency": {"type": "string"}}, "required": ["name", "alt_name", "country", "state", "address", "contact", "funding", "languages", "academic_year", "accrediting_agency"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "Kielce University of Technology", "alt_name" : "Politechnika \u015awi\u0119tokrzyska (P\u015aK)", "country" : "Poland", "state" : null, "address" : {"street" : "al. Tysi\u0105clecia Pa\u0144stwa Polskiego 7", "city" : "Kielce", "province" : "\u015bwi\u0119tokrzyskie", "postal_code" : "25-314"}, "contact" : {"telephone" : "+48(41) 342-44-44", "website" : "http://www.tu.kielce.pl", "email" : "promocja@tu.kielce.pl", "fax" : "+48(41) 344-29-97"}, "funding" : "Public", "languages" : null, "academic_year" : "October to June (October-February; February-June)", "accrediting_agency" : "Ministry of Science and Higher Education; Polish Accreditation Committee"}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "alt_name": {"type": "string"}, "country": {"type": "string"}, "state": {"type": "null"}, "address": {"type": "object", "properties": {"street": {"type": "string"}, "city": {"type": "string"}, "province": {"type": "string"}, "postal_code": {"type": "string"}}, "required": ["street", "city", "province", "postal_code"]}, "contact": {"type": "object", "properties": {"telephone": {"type": "string"}, "website": {"type": "string"}, "email": {"type": "string"}, "fax": {"type": "string"}}, "required": ["telephone", "website", "email", "fax"]}, "funding": {"type": "string"}, "languages": {"type": "null"}, "academic_year": {"type": "string"}, "accrediting_agency": {"type": "string"}}, "required": ["name", "alt_name", "country", "state", "address", "contact", "funding", "languages", "academic_year", "accrediting_agency"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"name": {"type": "string"}, "require": {"type": "object", "properties": {"phpunit/phpunit": {"type": "string"}, "kalessil/kalessil": {"type": "string"}}, "required": ["phpunit/phpunit", "kalessil/kalessil"]}, "extra": {"type": "object", "properties": {"production-dependencies-guard": {"type": "array", "items": {"type": "string"}}}, "required": ["production-dependencies-guard"]}}, "required": ["name", "require", "extra"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "package/featured", "require" : {"phpunit/phpunit" : "*", "kalessil/kalessil" : "*"}, "extra" : {"production-dependencies-guard" : ["check-description", "check-license", "check-abandoned"]}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "require": {"type": "object", "properties": {"phpunit/phpunit": {"type": "string"}, "kalessil/kalessil": {"type": "string"}}, "required": ["phpunit/phpunit", "kalessil/kalessil"]}, "extra": {"type": "object", "properties": {"production-dependencies-guard": {"type": "array", "items": {"type": "string"}}}, "required": ["production-dependencies-guard"]}}, "required": ["name", "require", "extra"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"date": {"type": "string"}, "id": {"type": "integer"}, "time": {"type": "string"}, "source": {"type": "string"}, "title": {"type": "string"}, "passage": {"type": "string"}, "duration": {"type": "string"}, "speaker": {"type": "string"}}, "required": ["date", "id", "time", "source", "title", "passage", "duration", "speaker"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"date" : "2013-09-23", "id" : 448, "time" : "7:45:00", "source" : "http://rs0796.freeconferencecall.com/fcc/cgi-bin/play.mp3/6054754850-611287-448.mp3", "title" : "448 Title", "passage" : "448 Passage", "duration" : "448 Duration", "speaker" : "448 Speaker"}
json_instruct
{"type": "object", "properties": {"date": {"type": "string"}, "id": {"type": "integer"}, "time": {"type": "string"}, "source": {"type": "string"}, "title": {"type": "string"}, "passage": {"type": "string"}, "duration": {"type": "string"}, "speaker": {"type": "string"}}, "required": ["date", "id", "time", "source", "title", "passage", "duration", "speaker"], "$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"}, "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" : "Calumpang, Tayabas City, Quezon, CALABARZON (Region IV-A), PH", "locale" : "ph.calabarzon-region-iv-a.quezon.tayabas-city.calumpang", "country_id" : 177, "country_reference" : 177, "country_name" : "Philippines", "region_id" : "4", "region_reference" : "41", "region_name" : "CALABARZON (Region IV-A)", "province_id" : "62", "province_reference" : "62", "province_name" : "Quezon", "city_id" : "1335", "city_reference" : "1325", "city_name" : "Tayabas City", "barangay_id" : "39342", "barangay_reference" : "34470", "barangay_name" : "Calumpang"}, "geometry" : {"type" : "MultiPolygon", "coordinates" : [[[[121.554321, 13.99688], [121.555397, 13.99696], [121.556442, 13.99628], [121.557373, 13.9966], [121.558357, 13.99497], [121.559776, 13.99404], [121.560944, 13.99335], [121.561653, 13.99265], [121.561897, 13.99123], [121.564011, 13.99125], [121.565247, 13.99037], [121.566437, 13.98998], [121.567947, 13.98881], [121.56913, 13.98814], [121.57045, 13.98832], [121.57148, 13.98795], [121.573601, 13.98817], [121.574959, 13.98767], [121.5746, 13.98708], [121.575241, 13.98364], [121.575233, 13.98118], [121.575287, 13.97955], [121.573883, 13.97841], [121.572632, 13.9769], [121.571663, 13.97468], [121.56974, 13.9737], [121.568314, 13.97287], [121.566833, 13.97159], [121.564842, 13.9698], [121.563187, 13.96797], [121.561913, 13.96728], [121.55867, 13.96612], [121.551086, 13.9646], [121.550529, 13.96683], [121.548668, 13.97235], [121.548103, 13.97452], [121.547073, 13.97757], [121.545883, 13.97976], [121.544228, 13.98333], [121.542038, 13.98636], [121.545837, 13.9881], [121.54953, 13.9898], [121.55291, 13.9934], [121.554321, 13.99688]]]]}}
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#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"@metadata": {"type": "object", "properties": {"authors": {"type": "array", "items": {"type": "string"}}}, "required": ["authors"]}, "googlelogin": {"type": "string"}, "googlelogin-manage-notlinked": {"type": "string"}, "googlelogin-manage-addlabel": {"type": "string"}, "googlelogin-desc-authmanager": {"type": "string"}, "googlelogin-link-same": {"type": "string"}, "googlelogin-loginbutton-help": {"type": "string"}, "googlelogin-link-help": {"type": "string"}, "googlelogin-param-error-label": {"type": "string"}, "googlelogin-param-error-help": {"type": "string"}, "googlelogin-auth-service-unknown-account": {"type": "string"}, "googlelogin-access-denied": {"type": "string"}}, "required": ["@metadata", "googlelogin", "googlelogin-manage-notlinked", "googlelogin-manage-addlabel", "googlelogin-desc-authmanager", "googlelogin-link-same", "googlelogin-loginbutton-help", "googlelogin-link-help", "googlelogin-param-error-label", "googlelogin-param-error-help", "googlelogin-auth-service-unknown-account", "googlelogin-access-denied"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"@metadata" : {"authors" : ["Eduardo Martinez", "Medol"]}, "googlelogin" : "Inicieu la sessi\u00f3 amb Google", "googlelogin-manage-notlinked" : "El compte no est\u00e0 enlla\u00e7at amb cap compte de Google.", "googlelogin-manage-addlabel" : "Afegir la ID de Google", "googlelogin-desc-authmanager" : "Permetre als usuaris que accedeixin amb el seu compte de Google.", "googlelogin-link-same" : "El vostre compte de Google ja est\u00e0 enlla\u00e7at al vostre usuari, aix\u00ed que no es pot enlla\u00e7ar un altre cop.", "googlelogin-loginbutton-help" : "L'autentificaci\u00f3 ha de ser amb el teu compte de Google.", "googlelogin-link-help" : "Enlla\u00e7a el teu compte wiki amb el teu compte de Google.", "googlelogin-param-error-label" : "Codi d'error retornat de Google", "googlelogin-param-error-help" : "Si fracassa l'autentificaci\u00f3, el codi d'error de Google retorna.", "googlelogin-auth-service-unknown-account" : "Aquest compte de Google \u00e9s desconegut", "googlelogin-access-denied" : "No pots entrar. S'ha denegat l'acc\u00e9s a la informaci\u00f3 del vostre compte de Google."}
json_instruct
{"type": "object", "properties": {"@metadata": {"type": "object", "properties": {"authors": {"type": "array", "items": {"type": "string"}}}, "required": ["authors"]}, "googlelogin": {"type": "string"}, "googlelogin-manage-notlinked": {"type": "string"}, "googlelogin-manage-addlabel": {"type": "string"}, "googlelogin-desc-authmanager": {"type": "string"}, "googlelogin-link-same": {"type": "string"}, "googlelogin-loginbutton-help": {"type": "string"}, "googlelogin-link-help": {"type": "string"}, "googlelogin-param-error-label": {"type": "string"}, "googlelogin-param-error-help": {"type": "string"}, "googlelogin-auth-service-unknown-account": {"type": "string"}, "googlelogin-access-denied": {"type": "string"}}, "required": ["@metadata", "googlelogin", "googlelogin-manage-notlinked", "googlelogin-manage-addlabel", "googlelogin-desc-authmanager", "googlelogin-link-same", "googlelogin-loginbutton-help", "googlelogin-link-help", "googlelogin-param-error-label", "googlelogin-param-error-help", "googlelogin-auth-service-unknown-account", "googlelogin-access-denied"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"changes": {"type": "array", "items": {"type": "object", "properties": {"packageName": {"type": "string"}, "comment": {"type": "string"}, "type": {"type": "string"}}, "required": ["packageName", "comment", "type"]}}, "packageName": {"type": "string"}}, "required": ["changes", "packageName"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"changes" : [{"packageName" : "@cadl-lang/rest", "comment" : "Fix issue with empty routes in namespace/interface and operation causing path with '//'", "type" : "patch"}], "packageName" : "@cadl-lang/rest"}
json_instruct
{"type": "object", "properties": {"changes": {"type": "array", "items": {"type": "object", "properties": {"packageName": {"type": "string"}, "comment": {"type": "string"}, "type": {"type": "string"}}, "required": ["packageName", "comment", "type"]}}, "packageName": {"type": "string"}}, "required": ["changes", "packageName"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"id": {"type": "string"}, "tableId": {"type": "string"}, "tableType": {"type": "string"}, "name": {"type": "string"}, "chapters": {"type": "array", "items": {"type": "string"}}, "entries": {"type": "array", "items": {"type": "object", "properties": {"value": {"type": "string"}, "description": {"type": "string"}, "comment": {"type": "null"}}, "required": ["value", "description", "comment"]}}}, "required": ["id", "tableId", "tableType", "name", "chapters", "entries"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : "0778", "tableId" : "0778", "tableType" : "User", "name" : "Item Type", "chapters" : ["CH_17"], "entries" : [{"value" : "EQP", "description" : "Equipment", "comment" : null}, {"value" : "IMP", "description" : "Implant", "comment" : null}, {"value" : "MED", "description" : "Medication", "comment" : null}, {"value" : "SUP", "description" : "Supply", "comment" : null}, {"value" : "TDC", "description" : "Tubes, Drains, and Catheters", "comment" : null}]}
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "tableId": {"type": "string"}, "tableType": {"type": "string"}, "name": {"type": "string"}, "chapters": {"type": "array", "items": {"type": "string"}}, "entries": {"type": "array", "items": {"type": "object", "properties": {"value": {"type": "string"}, "description": {"type": "string"}, "comment": {"type": "null"}}, "required": ["value", "description", "comment"]}}}, "required": ["id", "tableId", "tableType", "name", "chapters", "entries"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"id": {"type": "string"}}, "required": ["id"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : "775a9ba2b9eb5f66822e2d325b66dd9df105ce02"}
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}}, "required": ["id"], "$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"}, "displayName": {"type": "string"}}, "required": ["name", "displayName"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "demo1", "displayName" : "demo1"}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "displayName": {"type": "string"}}, "required": ["name", "displayName"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"chapter": {"type": "string"}}, "required": ["chapter"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"chapter" : "Chapter 21 - RETAIL OR SERVICE ESTABLISHMENT EXEMPTIONS FROM SECS 6 AND 7"}
json_instruct
{"type": "object", "properties": {"chapter": {"type": "string"}}, "required": ["chapter"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"title": {"type": "string"}, "author": {"type": "string"}, "description": {"type": "string"}, "thumb": {"type": "string"}, "download": {"type": "string"}, "origin": {"type": "string"}}, "required": ["title", "author", "description", "thumb", "download", "origin"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"title" : "[MMD 4k] \u521d\u97f3\u30df\u30af - Systematic Love \u30b7\u30b9\u30c6\u30de\u30c6\u30a3\u30c3\u30af\u30e9\u30f4 [Project DIVA Arcade]", "author" : "Ley Line Walker", "description" : "R18undefinedversionundefinedincl.undefined4kundefineddownloadundefinedhere:undefined<aundefinedhref='https://ecchi.iwara.tv/videos/v7j0lskl0se3rlgj'>https://ecchi.iwara.tv/videos/v7j0lskl0se3rlgj</a><br>PleaseundefinedreadundefinedtheundefinedfullundefineddescriptionundefinedonundefinedYoutubeundefinedandundefineddon&apos;tundefinedbeundefinedshyundefinedtoundefinedcomment!undefined^w^", "thumb" : "//i.iwara.tv/sites/default/files/styles/thumbnail/public/video_embed_field_thumbnails/youtube/OQkSenH7YU4.jpg?itok=LsnQxIA9", "download" : "https://www.iwara.tv/api/video/yxy3nh2zyh0zgjvk", "origin" : "https://www.iwara.tv/videos/yxy3nh2zyh0zgjvk"}
json_instruct
{"type": "object", "properties": {"title": {"type": "string"}, "author": {"type": "string"}, "description": {"type": "string"}, "thumb": {"type": "string"}, "download": {"type": "string"}, "origin": {"type": "string"}}, "required": ["title", "author", "description", "thumb", "download", "origin"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies 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": {"organisation": {"type": "string"}, "hectares": {"type": "string"}, "planning-permission-date": {"type": "string"}, "notes": {"type": "string"}, "minimum-net-dwellings": {"type": "string"}, "planning-permission-status": {"type": "string"}, "maximum-net-dwellings": {"type": "string"}, "ownership-status": {"type": "string"}, "site-address": {"type": "string"}, "site": {"type": "string"}, "point": {"type": "string"}, "start-date": {"type": "string"}, "planning-permission-type": {"type": "string"}, "deliverable": {"type": "string"}, "name": {"type": "string"}, "site-plan-url": {"type": "string"}, "slug": {"type": "string"}, "entity": {"type": "integer"}, "entry-date": {"type": "string"}}, "required": ["organisation", "hectares", "planning-permission-date", "notes", "minimum-net-dwellings", "planning-permission-status", "maximum-net-dwellings", "ownership-status", "site-address", "site", "point", "start-date", "planning-permission-type", "deliverable", "name", "site-plan-url", "slug", "entity", "entry-date"]}}, "required": ["type", "geometry", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"type" : "Feature", "geometry" : {"type" : "Point", "coordinates" : [-2.450393, 50.602172]}, "properties" : {"organisation" : "local-authority-eng:WEY", "hectares" : "4.6", "planning-permission-date" : "2016-08-01", "notes" : "https://webapps.westdorset-weymouth.gov.uk/ShelaaWebsite/pages/Site.aspx?i=376", "minimum-net-dwellings" : "195", "planning-permission-status" : "permissioned", "maximum-net-dwellings" : "195", "ownership-status" : "not owned by a public authority", "site-address" : "Former QinetiQ Site, Bincleaves", "site" : "WP/WEYE/001", "point" : "POINT(-2.450393 50.602172)", "start-date" : "2017-12-31", "planning-permission-type" : "full planning permission", "deliverable" : "yes", "name" : "WP/WEYE/001", "site-plan-url" : "https://westdorsetdc.maps.arcgis.com/apps/webappviewer/index.html?id=9c2ae08ea4bf4b47b1aaa284d709b407&level=19&center=368222,78147,27700", "slug" : "/brownfield-land/local-authority-eng/WEY/WP-WEYE-001", "entity" : 497557, "entry-date" : "2017-12-15"}}
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": {"organisation": {"type": "string"}, "hectares": {"type": "string"}, "planning-permission-date": {"type": "string"}, "notes": {"type": "string"}, "minimum-net-dwellings": {"type": "string"}, "planning-permission-status": {"type": "string"}, "maximum-net-dwellings": {"type": "string"}, "ownership-status": {"type": "string"}, "site-address": {"type": "string"}, "site": {"type": "string"}, "point": {"type": "string"}, "start-date": {"type": "string"}, "planning-permission-type": {"type": "string"}, "deliverable": {"type": "string"}, "name": {"type": "string"}, "site-plan-url": {"type": "string"}, "slug": {"type": "string"}, "entity": {"type": "integer"}, "entry-date": {"type": "string"}}, "required": ["organisation", "hectares", "planning-permission-date", "notes", "minimum-net-dwellings", "planning-permission-status", "maximum-net-dwellings", "ownership-status", "site-address", "site", "point", "start-date", "planning-permission-type", "deliverable", "name", "site-plan-url", "slug", "entity", "entry-date"]}}, "required": ["type", "geometry", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"text": {"type": "string"}, "historical": {"type": "string"}, "credits": {"type": "string"}, "sections": {"type": "array", "items": {}}, "division": {"type": "object", "properties": {"identifier": {"type": "string"}, "text": {"type": "string"}}, "required": ["identifier", "text"]}, "title": {"type": "object", "properties": {"identifier": {"type": "string"}, "text": {"type": "string"}}, "required": ["identifier", "text"]}, "chapter": {"type": "object", "properties": {"identifier": {"type": "string"}, "text": {"type": "string"}}, "required": ["identifier", "text"]}, "subchapter": {"type": "object", "properties": {"identifier": {"type": "string"}, "text": {"type": "string"}}, "required": ["identifier", "text"]}, "part": {"type": "object", "properties": {"identifier": {"type": "string"}, "text": {"type": "string"}}, "required": ["identifier", "text"]}, "heading": {"type": "object", "properties": {"title": {"type": "string"}, "chaptersection": {"type": "string"}, "identifier": {"type": "string"}, "catch_text": {"type": "string"}}, "required": ["title", "chaptersection", "identifier", "catch_text"]}}, "required": ["text", "historical", "credits", "sections", "division", "title", "chapter", "subchapter", "part", "heading"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"text" : "The Attorney General, Chief Deputy Attorney General, Deputy Attorneys General, and Assistant Attorneys General are authorized to administer oaths and affirmations in the discharge of their official duties within the District of Columbia.", "historical" : "Legislative History of Laws\n\nFor Law 18-160, see notes following \u00a7 1-301.81.\n\nDC CODE \u00a7 1-301.88\n\nCurrent through December 11, 2012", "credits" : "(May 27, 2010, D.C. Law 18-160, \u00a7 108, 57 DCR 3012.)", "sections" : [], "division" : {"identifier" : "I", "text" : "Government of District."}, "title" : {"identifier" : "1", "text" : "Government Organization. (Refs & Annos)"}, "chapter" : {"identifier" : "3", "text" : "Specified Governmental Authority."}, "subchapter" : {"identifier" : "I", "text" : "Additional Governmental Powers and Responsibilities."}, "part" : {"identifier" : "D-I", "text" : "Attorney General for the District of Columbia."}, "heading" : {"title" : "1", "chaptersection" : "301", "identifier" : "1-301.88", "catch_text" : "Authority to administer oaths."}}
json_instruct
{"type": "object", "properties": {"text": {"type": "string"}, "historical": {"type": "string"}, "credits": {"type": "string"}, "sections": {"type": "array", "items": {}}, "division": {"type": "object", "properties": {"identifier": {"type": "string"}, "text": {"type": "string"}}, "required": ["identifier", "text"]}, "title": {"type": "object", "properties": {"identifier": {"type": "string"}, "text": {"type": "string"}}, "required": ["identifier", "text"]}, "chapter": {"type": "object", "properties": {"identifier": {"type": "string"}, "text": {"type": "string"}}, "required": ["identifier", "text"]}, "subchapter": {"type": "object", "properties": {"identifier": {"type": "string"}, "text": {"type": "string"}}, "required": ["identifier", "text"]}, "part": {"type": "object", "properties": {"identifier": {"type": "string"}, "text": {"type": "string"}}, "required": ["identifier", "text"]}, "heading": {"type": "object", "properties": {"title": {"type": "string"}, "chaptersection": {"type": "string"}, "identifier": {"type": "string"}, "catch_text": {"type": "string"}}, "required": ["title", "chaptersection", "identifier", "catch_text"]}}, "required": ["text", "historical", "credits", "sections", "division", "title", "chapter", "subchapter", "part", "heading"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"translation-revision-date": {"type": "string"}, "generator": {"type": "string"}, "domain": {"type": "string"}, "locale_data": {"type": "object", "properties": {"messages": {"type": "object", "properties": {"": {"type": "object", "properties": {"domain": {"type": "string"}, "plural-forms": {"type": "string"}, "lang": {"type": "string"}}, "required": ["domain", "plural-forms", "lang"]}, "Error while saving the changes.": {"type": "array", "items": {"type": "string"}}, "Changes saved.": {"type": "array", "items": {"type": "string"}}}, "required": ["", "Error while saving the changes.", "Changes saved."]}}, "required": ["messages"]}, "comment": {"type": "object", "properties": {"reference": {"type": "string"}}, "required": ["reference"]}}, "required": ["translation-revision-date", "generator", "domain", "locale_data", "comment"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"translation-revision-date" : "2021-05-28 16:42:59+0000", "generator" : "GlotPress/3.0.0-alpha.2", "domain" : "messages", "locale_data" : {"messages" : {"" : {"domain" : "messages", "plural-forms" : "nplurals=2; plural=n != 1;", "lang" : "he_IL"}, "Error while saving the changes." : ["\u05e9\u05d2\u05d9\u05d0\u05d4 \u05d1\u05de\u05d4\u05dc\u05da \u05e9\u05de\u05d9\u05e8\u05ea \u05d4\u05e9\u05d9\u05e0\u05d5\u05d9\u05d9\u05dd."], "Changes saved." : ["\u05d4\u05e9\u05d9\u05e0\u05d5\u05d9\u05d9\u05dd \u05e0\u05e9\u05de\u05e8\u05d5."]}}, "comment" : {"reference" : "wp-admin/js/inline-edit-tax.js"}}
json_instruct
{"type": "object", "properties": {"translation-revision-date": {"type": "string"}, "generator": {"type": "string"}, "domain": {"type": "string"}, "locale_data": {"type": "object", "properties": {"messages": {"type": "object", "properties": {"": {"type": "object", "properties": {"domain": {"type": "string"}, "plural-forms": {"type": "string"}, "lang": {"type": "string"}}, "required": ["domain", "plural-forms", "lang"]}, "Error while saving the changes.": {"type": "array", "items": {"type": "string"}}, "Changes saved.": {"type": "array", "items": {"type": "string"}}}, "required": ["", "Error while saving the changes.", "Changes saved."]}}, "required": ["messages"]}, "comment": {"type": "object", "properties": {"reference": {"type": "string"}}, "required": ["reference"]}}, "required": ["translation-revision-date", "generator", "domain", "locale_data", "comment"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"localities": {"type": "array", "items": {"type": "string"}}, "state": {"type": "string"}, "postal_code": {"type": "string"}, "locality": {"type": "string"}, "lat": {"type": "number"}, "region": {"type": "object", "properties": {"fips": {"type": "string"}, "abbr": {"type": "string"}, "name": {"type": "string"}}, "required": ["fips", "abbr", "name"]}, "city": {"type": "string"}, "type": {"type": "string"}, "lng": {"type": "number"}, "counties": {"type": "array", "items": {"type": "object", "properties": {"fips": {"type": "string"}, "name": {"type": "string"}}, "required": ["fips", "name"]}}}, "required": ["localities", "state", "postal_code", "locality", "lat", "region", "city", "type", "lng", "counties"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"localities" : ["Chelsea, IA"], "state" : "IA", "postal_code" : "52215", "locality" : "Chelsea, IA", "lat" : 41.913527, "region" : {"fips" : "19", "abbr" : "IA", "name" : "Iowa"}, "city" : "Chelsea", "type" : "STANDARD", "lng" : -92.405288, "counties" : [{"fips" : "157", "name" : "Poweshiek County"}, {"fips" : "171", "name" : "Tama County"}]}
json_instruct
{"type": "object", "properties": {"localities": {"type": "array", "items": {"type": "string"}}, "state": {"type": "string"}, "postal_code": {"type": "string"}, "locality": {"type": "string"}, "lat": {"type": "number"}, "region": {"type": "object", "properties": {"fips": {"type": "string"}, "abbr": {"type": "string"}, "name": {"type": "string"}}, "required": ["fips", "abbr", "name"]}, "city": {"type": "string"}, "type": {"type": "string"}, "lng": {"type": "number"}, "counties": {"type": "array", "items": {"type": "object", "properties": {"fips": {"type": "string"}, "name": {"type": "string"}}, "required": ["fips", "name"]}}}, "required": ["localities", "state", "postal_code", "locality", "lat", "region", "city", "type", "lng", "counties"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"brief": {"type": "string"}, "long": {"type": "string"}}, "required": ["brief", "long"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"brief" : "I command, order", "long" : "I command, order, direct, bid."}
json_instruct
{"type": "object", "properties": {"brief": {"type": "string"}, "long": {"type": "string"}}, "required": ["brief", "long"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"keywords": {"type": "array", "items": {"type": "string"}}}, "required": ["keywords"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"keywords" : ["Sauternes"]}
json_instruct
{"type": "object", "properties": {"keywords": {"type": "array", "items": {"type": "string"}}}, "required": ["keywords"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"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" : "2015", "provinceId" : "73", "regencyId" : "08", "districtId" : "15", "name" : "Panyili"}
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#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"version": {"type": "number"}, "people": {"type": "array", "items": {"type": "object", "properties": {"pose_keypoints_2d": {"type": "array", "items": {"type": "number"}}, "face_keypoints_2d": {"type": "array", "items": {"type": "integer"}}, "hand_left_keypoints_2d": {"type": "array", "items": {"type": "integer"}}, "hand_right_keypoints_2d": {"type": "array", "items": {"type": "number"}}, "pose_keypoints_3d": {"type": "array", "items": {}}, "face_keypoints_3d": {"type": "array", "items": {}}, "hand_left_keypoints_3d": {"type": "array", "items": {}}, "hand_right_keypoints_3d": {"type": "array", "items": {}}}, "required": ["pose_keypoints_2d", "face_keypoints_2d", "hand_left_keypoints_2d", "hand_right_keypoints_2d", "pose_keypoints_3d", "face_keypoints_3d", "hand_left_keypoints_3d", "hand_right_keypoints_3d"]}}}, "required": ["version", "people"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"version" : 1.2, "people" : [{"pose_keypoints_2d" : [227.134, 84.0608, 0.16931, 199.041, 99.4334, 0.609667, 208.405, 104.771, 0.576076, 240.485, 120.829, 0.686675, 238.494, 114.134, 0.315005, 189.022, 94.1244, 0.554852, 0, 0, 0, 0, 0, 0, 166.291, 150.917, 0.123397, 174.319, 158.264, 0.125582, 231.799, 134.199, 0.091889, 0, 0, 0, 156.262, 143.56, 0.10447, 0, 0, 0, 0, 0, 0, 225.115, 79.3923, 0.208407, 0, 0, 0, 217.098, 82.7008, 0.46886, 197.713, 78.7199, 0.0605482, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "face_keypoints_2d" : [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "hand_left_keypoints_2d" : [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "hand_right_keypoints_2d" : [241.916, 121.531, 0.00690287, 239.811, 108.239, 0.00652432, 239.153, 107.976, 0.00779349, 239.021, 107.581, 0.00730665, 238.363, 106.66, 0.00378297, 239.021, 108.634, 0.00554634, 238.758, 109.029, 0.006008, 238.889, 108.897, 0.00523676, 242.443, 115.477, 0.00282173, 238.363, 109.029, 0.00429873, 238.231, 109.292, 0.00328512, 239.284, 111.266, 0.00389402, 242.443, 115.346, 0.00131976, 238.231, 109.16, 0.00434625, 238.231, 109.292, 0.0042326, 239.153, 111.529, 0.00503297, 236.915, 115.346, 0.00360419, 238.1, 109.292, 0.00530007, 238.231, 109.423, 0.00484474, 237.178, 115.214, 0.00493644, 237.047, 115.609, 0.0042028], "pose_keypoints_3d" : [], "face_keypoints_3d" : [], "hand_left_keypoints_3d" : [], "hand_right_keypoints_3d" : []}]}
json_instruct
{"type": "object", "properties": {"version": {"type": "number"}, "people": {"type": "array", "items": {"type": "object", "properties": {"pose_keypoints_2d": {"type": "array", "items": {"type": "number"}}, "face_keypoints_2d": {"type": "array", "items": {"type": "integer"}}, "hand_left_keypoints_2d": {"type": "array", "items": {"type": "integer"}}, "hand_right_keypoints_2d": {"type": "array", "items": {"type": "number"}}, "pose_keypoints_3d": {"type": "array", "items": {}}, "face_keypoints_3d": {"type": "array", "items": {}}, "hand_left_keypoints_3d": {"type": "array", "items": {}}, "hand_right_keypoints_3d": {"type": "array", "items": {}}}, "required": ["pose_keypoints_2d", "face_keypoints_2d", "hand_left_keypoints_2d", "hand_right_keypoints_2d", "pose_keypoints_3d", "face_keypoints_3d", "hand_left_keypoints_3d", "hand_right_keypoints_3d"]}}}, "required": ["version", "people"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "patternId": {"type": "string"}, "severity": {"type": "integer"}, "line": {"type": "integer"}, "column": {"type": "integer"}, "content": {"type": "string"}}, "required": ["name", "patternId", "severity", "line", "column", "content"]}}}, "required": ["contract", "tool", "start", "end", "duration", "analysis"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"contract" : "0x83076f026b72df648673f9a81c771ae9c7446f21", "tool" : "smartcheck", "start" : 1563498495.2070692, "end" : 1563498503.2029912, "duration" : 7.995922088623047, "analysis" : [{"name" : "SOLIDITY_FUNCTIONS_RETURNS_TYPE_AND_NO_RETURN", "patternId" : "47acc2", "severity" : 1, "line" : 104, "column" : 4, "content" : "functionkill()publicownerOnly()returns(bool){selfdestruct(msg.sender);}"}, {"name" : "SOLIDITY_GAS_LIMIT_IN_LOOPS", "patternId" : "f6f853", "severity" : 2, "line" : 83, "column" : 8, "content" : "for(uinti=0;i<arrayLength;i++){ret=string(abi.encodePacked(ret,'{'));ret=string(abi.encodePacked(ret,'\"GpsLongitude\": \"',Mensurations[eventId][runnerId][i].Longitude,'\", '));ret=string(abi.encodePacked(ret,'\"GpsLatitude\": \"',Mensurations[eventId][runnerId][i].Latitude,'\", '));ret=string(abi.encodePacked(ret,'\"GpsElevation\": \"',Mensurations[eventId][runnerId][i].Elevatio,'\"'));ret=string(abi.encodePacked(ret,'\"GpsDatetime\": \"',uint2str(Mensurations[eventId][runnerId][i].GpsDatetime),'\"'));ret=string(abi.encodePacked(ret,'\"DeviceDatetime\": \"',uint2str(Mensurations[eventId][runnerId][i].DeviceDatetime),'\"'));ret=string(abi.encodePacked(ret,'}'));if(i<arrayLength-1&&arrayLength>1)ret=string(abi.encodePacked(ret,', '));}"}, {"name" : "SOLIDITY_PRAGMAS_VERSION", "patternId" : "23fc32", "severity" : 1, "line" : 1, "column" : 16, "content" : "^"}]}
json_instruct
{"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "patternId": {"type": "string"}, "severity": {"type": "integer"}, "line": {"type": "integer"}, "column": {"type": "integer"}, "content": {"type": "string"}}, "required": ["name", "patternId", "severity", "line", "column", "content"]}}}, "required": ["contract", "tool", "start", "end", "duration", "analysis"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"schema_version": {"type": "string"}, "id": {"type": "string"}, "modified": {"type": "string"}, "published": {"type": "string"}, "aliases": {"type": "array", "items": {"type": "string"}}, "details": {"type": "string"}, "severity": {"type": "array", "items": {}}, "affected": {"type": "array", "items": {}}, "references": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}}, "database_specific": {"type": "object", "properties": {"cwe_ids": {"type": "array", "items": {}}, "severity": {"type": "string"}, "github_reviewed": {"type": "boolean"}}, "required": ["cwe_ids", "severity", "github_reviewed"]}}, "required": ["schema_version", "id", "modified", "published", "aliases", "details", "severity", "affected", "references", "database_specific"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"schema_version" : "1.2.0", "id" : "GHSA-mhq8-h8mw-8cgr", "modified" : "2022-04-30T18:11:50Z", "published" : "2022-04-30T18:11:50Z", "aliases" : ["CVE-1999-1110"], "details" : "Windows Media Player ActiveX object as used in Internet Explorer 5.0 returns a specific error code when a file does not exist, which allows remote malicious web sites to determine the existence of files on the client.", "severity" : [], "affected" : [], "references" : [{"type" : "ADVISORY", "url" : "https://nvd.nist.gov/vuln/detail/CVE-1999-1110"}, {"type" : "WEB", "url" : "http://www.securityfocus.com/archive/1/34675"}, {"type" : "WEB", "url" : "http://www.securityfocus.com/bid/793"}], "database_specific" : {"cwe_ids" : [], "severity" : "MODERATE", "github_reviewed" : false}}
json_instruct
{"type": "object", "properties": {"schema_version": {"type": "string"}, "id": {"type": "string"}, "modified": {"type": "string"}, "published": {"type": "string"}, "aliases": {"type": "array", "items": {"type": "string"}}, "details": {"type": "string"}, "severity": {"type": "array", "items": {}}, "affected": {"type": "array", "items": {}}, "references": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}}, "database_specific": {"type": "object", "properties": {"cwe_ids": {"type": "array", "items": {}}, "severity": {"type": "string"}, "github_reviewed": {"type": "boolean"}}, "required": ["cwe_ids", "severity", "github_reviewed"]}}, "required": ["schema_version", "id", "modified", "published", "aliases", "details", "severity", "affected", "references", "database_specific"], "$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"}, "description": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "type": {"type": "string"}, "license": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}}, "minimum-stability": {"type": "string"}, "require": {"type": "object", "properties": {"laravel/ui": {"type": "string"}}, "required": ["laravel/ui"]}, "autoload": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"CabinetOffice\\Laravel\\GOVUKFrontendPreset\\": {"type": "string"}}, "required": ["CabinetOffice\\Laravel\\GOVUKFrontendPreset\\"]}}, "required": ["psr-4"]}, "extra": {"type": "object", "properties": {"laravel": {"type": "object", "properties": {"providers": {"type": "array", "items": {"type": "string"}}}, "required": ["providers"]}}, "required": ["laravel"]}}, "required": ["name", "description", "keywords", "type", "license", "authors", "minimum-stability", "require", "autoload", "extra"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "cabinetoffice/laravel-govuk-frontend-preset", "description" : "A Laravel (7.0+) preset for https://github.com/alphagov/govuk-frontend. It comes with basic and Auth (optional) scaffolding.", "keywords" : ["laravel", "laravel preset", "govuk", "govuk frontend", "gov.uk", "government", "design system"], "type" : "preset", "license" : "MIT", "authors" : [{"name" : "Digital Communication, Cabinet Office and Number 10 Digital", "email" : "webmaster@cabinetoffice.gov.uk"}], "minimum-stability" : "stable", "require" : {"laravel/ui" : "^2.0"}, "autoload" : {"psr-4" : {"CabinetOffice\\Laravel\\GOVUKFrontendPreset\\" : "src/"}}, "extra" : {"laravel" : {"providers" : ["CabinetOffice\\Laravel\\GOVUKFrontendPreset\\GOVUKFrontendPresetServiceProvider"]}}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "type": {"type": "string"}, "license": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}}, "minimum-stability": {"type": "string"}, "require": {"type": "object", "properties": {"laravel/ui": {"type": "string"}}, "required": ["laravel/ui"]}, "autoload": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"CabinetOffice\\Laravel\\GOVUKFrontendPreset\\": {"type": "string"}}, "required": ["CabinetOffice\\Laravel\\GOVUKFrontendPreset\\"]}}, "required": ["psr-4"]}, "extra": {"type": "object", "properties": {"laravel": {"type": "object", "properties": {"providers": {"type": "array", "items": {"type": "string"}}}, "required": ["providers"]}}, "required": ["laravel"]}}, "required": ["name", "description", "keywords", "type", "license", "authors", "minimum-stability", "require", "autoload", "extra"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"id": {"type": "string"}, "district_id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "district_id", "name"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : "3518100008", "district_id" : "3518100", "name" : "PATIANROWO"}
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "district_id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "district_id", "name"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"cytoscape.esm.js": {"type": "string"}, "cytoscape.min.js": {"type": "string"}, "cytoscape.umd.js": {"type": "string"}}, "required": ["cytoscape.esm.js", "cytoscape.min.js", "cytoscape.umd.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"cytoscape.esm.js" : "sha256-jjnqv3HFOcyQXKj/fDUQpjbQoQFdjf9pUkgRJo2WRZo=", "cytoscape.min.js" : "sha256-HgRxZ68Pv1B9Wg0gNq2cx7ZeLa/smAPQ5xIoLUCcCxI=", "cytoscape.umd.js" : "sha256-MJRiQRlOgWxjMkb0wKNDIMVU7zq/gyi6vEWEJC/aWjc="}
json_instruct
{"type": "object", "properties": {"cytoscape.esm.js": {"type": "string"}, "cytoscape.min.js": {"type": "string"}, "cytoscape.umd.js": {"type": "string"}}, "required": ["cytoscape.esm.js", "cytoscape.min.js", "cytoscape.umd.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" : ["charm:refined_obsidian"]}
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#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "dependencies": {"type": "object", "properties": {"bcrypt": {"type": "string"}, "bignumber.js": {"type": "string"}, "body-parser": {"type": "string"}, "cookie-parser": {"type": "string"}, "express": {"type": "string"}, "express-recaptcha": {"type": "string"}, "moment": {"type": "string"}, "mysql": {"type": "string"}, "nconf": {"type": "string"}, "node-schedule": {"type": "string"}, "request": {"type": "string"}, "sthjs": {"type": "string"}, "sthjs-wrapper": {"type": "string"}, "uuid": {"type": "string"}}, "required": ["bcrypt", "bignumber.js", "body-parser", "cookie-parser", "express", "express-recaptcha", "moment", "mysql", "nconf", "node-schedule", "request", "sthjs", "sthjs-wrapper", "uuid"]}, "devDependencies": {"type": "object", "properties": {}, "required": []}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "author": {"type": "string"}, "license": {"type": "string"}}, "required": ["name", "version", "description", "main", "dependencies", "devDependencies", "scripts", "repository", "author", "license"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "SmartHoldemFaucet", "version" : "1.0.1", "description" : "SmartHoldem Faucet", "main" : "index.js", "dependencies" : {"bcrypt" : "^2.0.1", "bignumber.js" : "^4.0.2", "body-parser" : "^1.18.3", "cookie-parser" : "^1.4.3", "express" : "^4.15.3", "express-recaptcha" : "^3.0.0", "moment" : "^2.18.1", "mysql" : "^2.13.0", "nconf" : "^0.8.5", "node-schedule" : "^1.2.5", "request" : "^2.86.0", "sthjs" : "git+https://github.com/smartholdem/sth-js.git", "sthjs-wrapper" : "^0.1.5", "uuid" : "^3.1.0"}, "devDependencies" : {}, "scripts" : {"test" : "echo \"Error: no test specified\" && exit 1"}, "repository" : {"type" : "git", "url" : "git+https://github.com/smartholdem/faucet.git"}, "author" : "Developers", "license" : "MIT"}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "dependencies": {"type": "object", "properties": {"bcrypt": {"type": "string"}, "bignumber.js": {"type": "string"}, "body-parser": {"type": "string"}, "cookie-parser": {"type": "string"}, "express": {"type": "string"}, "express-recaptcha": {"type": "string"}, "moment": {"type": "string"}, "mysql": {"type": "string"}, "nconf": {"type": "string"}, "node-schedule": {"type": "string"}, "request": {"type": "string"}, "sthjs": {"type": "string"}, "sthjs-wrapper": {"type": "string"}, "uuid": {"type": "string"}}, "required": ["bcrypt", "bignumber.js", "body-parser", "cookie-parser", "express", "express-recaptcha", "moment", "mysql", "nconf", "node-schedule", "request", "sthjs", "sthjs-wrapper", "uuid"]}, "devDependencies": {"type": "object", "properties": {}, "required": []}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "author": {"type": "string"}, "license": {"type": "string"}}, "required": ["name", "version", "description", "main", "dependencies", "devDependencies", "scripts", "repository", "author", "license"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"etp.js": {"type": "string"}, "etp.min.js": {"type": "string"}}, "required": ["etp.js", "etp.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"etp.js" : "sha256-L/5+0mCD+vRaf+LUJAhMCN9iee08KARErNC4IsB6Zhg=", "etp.min.js" : "sha256-e1kIw3Xmyj00LBHhMuhAZB3w20Ua3y8Vh9YgFmKwyIU="}
json_instruct
{"type": "object", "properties": {"etp.js": {"type": "string"}, "etp.min.js": {"type": "string"}}, "required": ["etp.js", "etp.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}, "test": {"type": "string"}, "lint": {"type": "string"}, "prod": {"type": "string"}, "dev": {"type": "string"}}, "required": ["start", "test", "lint", "prod", "dev"]}, "dependencies": {"type": "object", "properties": {"better-sqlite-pool": {"type": "string"}, "common-tags": {"type": "string"}, "discord.js": {"type": "string"}, "dotenv-flow": {"type": "string"}, "enmap": {"type": "string"}, "moment": {"type": "string"}, "moment-duration-format": {"type": "string"}, "moment-timezone": {"type": "string"}, "sqlite": {"type": "string"}, "sqlite3": {"type": "string"}}, "required": ["better-sqlite-pool", "common-tags", "discord.js", "dotenv-flow", "enmap", "moment", "moment-duration-format", "moment-timezone", "sqlite", "sqlite3"]}, "devDependencies": {"type": "object", "properties": {"babel-eslint": {"type": "string"}, "eslint": {"type": "string"}}, "required": ["babel-eslint", "eslint"]}}, "required": ["name", "version", "description", "main", "scripts", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "discord.js-template", "version" : "1.0.0", "description" : "A template for a Discord.js bot created by acollierr17.", "main" : "app.js", "scripts" : {"start" : "node .", "test" : "eslint .", "lint" : "eslint --fix .", "prod" : "SET NODE_ENV=production&&npm start", "dev" : "SET NODE_ENV=development&&nodemon"}, "dependencies" : {"better-sqlite-pool" : "^0.3.0", "common-tags" : "^1.8.0", "discord.js" : "^12.0.0", "dotenv-flow" : "^0.1.0", "enmap" : "^4.3.2", "moment" : "^2.22.2", "moment-duration-format" : "^2.2.2", "moment-timezone" : "^0.5.21", "sqlite" : "^4.0.7", "sqlite3" : "^4.1.1"}, "devDependencies" : {"babel-eslint" : "^10.0.1", "eslint" : "^5.6.1"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}, "test": {"type": "string"}, "lint": {"type": "string"}, "prod": {"type": "string"}, "dev": {"type": "string"}}, "required": ["start", "test", "lint", "prod", "dev"]}, "dependencies": {"type": "object", "properties": {"better-sqlite-pool": {"type": "string"}, "common-tags": {"type": "string"}, "discord.js": {"type": "string"}, "dotenv-flow": {"type": "string"}, "enmap": {"type": "string"}, "moment": {"type": "string"}, "moment-duration-format": {"type": "string"}, "moment-timezone": {"type": "string"}, "sqlite": {"type": "string"}, "sqlite3": {"type": "string"}}, "required": ["better-sqlite-pool", "common-tags", "discord.js", "dotenv-flow", "enmap", "moment", "moment-duration-format", "moment-timezone", "sqlite", "sqlite3"]}, "devDependencies": {"type": "object", "properties": {"babel-eslint": {"type": "string"}, "eslint": {"type": "string"}}, "required": ["babel-eslint", "eslint"]}}, "required": ["name", "version", "description", "main", "scripts", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"name": {"type": "string"}, "appId": {"type": "string"}, "version": {"type": "string"}, "node-main": {"type": "string"}, "main": {"type": "string"}, "node-remote": {"type": "string"}, "build": {"type": "object", "properties": {"nwVersion": {"type": "string"}, "output": {"type": "string"}, "mac": {"type": "object", "properties": {"copyright": {"type": "string"}, "icon": {"type": "string"}}, "required": ["copyright", "icon"]}, "win": {"type": "object", "properties": {"copyright": {"type": "string"}, "icon": {"type": "string"}}, "required": ["copyright", "icon"]}}, "required": ["nwVersion", "output", "mac", "win"]}, "window": {"type": "object", "properties": {"resizable": {"type": "boolean"}, "fullscreen": {"type": "boolean"}, "kiosk": {"type": "boolean"}}, "required": ["resizable", "fullscreen", "kiosk"]}, "NRnwjs": {"type": "object", "properties": {"editable": {"type": "boolean"}, "flowFile": {"type": "string"}}, "required": ["editable", "flowFile"]}}, "required": ["name", "appId", "version", "node-main", "main", "node-remote", "build", "window", "NRnwjs"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "Node-RED NW.js", "appId" : "com.nwjs.node-red", "version" : "0.2.1", "node-main" : "./main.js", "main" : "http://localhost:18880/red", "node-remote" : "<all_urls>", "build" : {"nwVersion" : "0.50.2", "output" : "../dist", "mac" : {"copyright" : "Copyright \u00a9 2020 Hiroyuki Okada", "icon" : "./assets/icon.icns"}, "win" : {"copyright" : "Copyright \u00a9 2020 Hiroyuki Okada", "icon" : "./assets/icon.ico"}}, "window" : {"resizable" : true, "fullscreen" : false, "kiosk" : false}, "NRnwjs" : {"editable" : false, "flowFile" : "nwjsflow.json"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "appId": {"type": "string"}, "version": {"type": "string"}, "node-main": {"type": "string"}, "main": {"type": "string"}, "node-remote": {"type": "string"}, "build": {"type": "object", "properties": {"nwVersion": {"type": "string"}, "output": {"type": "string"}, "mac": {"type": "object", "properties": {"copyright": {"type": "string"}, "icon": {"type": "string"}}, "required": ["copyright", "icon"]}, "win": {"type": "object", "properties": {"copyright": {"type": "string"}, "icon": {"type": "string"}}, "required": ["copyright", "icon"]}}, "required": ["nwVersion", "output", "mac", "win"]}, "window": {"type": "object", "properties": {"resizable": {"type": "boolean"}, "fullscreen": {"type": "boolean"}, "kiosk": {"type": "boolean"}}, "required": ["resizable", "fullscreen", "kiosk"]}, "NRnwjs": {"type": "object", "properties": {"editable": {"type": "boolean"}, "flowFile": {"type": "string"}}, "required": ["editable", "flowFile"]}}, "required": ["name", "appId", "version", "node-main", "main", "node-remote", "build", "window", "NRnwjs"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"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,\n\n\nthank you for the reply. I will try to use more than one host-line per \nmachine, I guess that ranimate won't catch that and will start one \nprocess per host-line, without giving -PP to rpiece. So the processes \nwill be started via ssh on the localhost. Hope this works... I am \ndesperatly needing a way to speed up rendering times at the moment... \n;-)\n\n\nCU Lars.\n___\n<sup>Automatically generated content from [radiance mailing-list](https://radiance-online.org/pipermail/radiance-general/2005-October/003016.html).</sup>", "attachments" : [], "created_by_name" : "Lars O. Grobe", "created_at" : "October 14, 2005 at 05:26PM", "created_by" : "Lars_O._Grobe", "parent_id" : "radiance-general_003014", "id" : "radiance-general_003016"}
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#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"latest_version": {"type": "array", "items": {"type": "string"}}, "meta": {"type": "object", "properties": {"description": {"type": "string"}, "homepage": {"type": "string"}}, "required": ["description", "homepage"]}, "versions": {"type": "object", "properties": {"1.0.1": {"type": "object", "properties": {"sha256": {"type": "string"}, "url": {"type": "string"}}, "required": ["sha256", "url"]}, "1.0.1.1": {"type": "object", "properties": {"sha256": {"type": "string"}, "url": {"type": "string"}}, "required": ["sha256", "url"]}, "1.0.1b": {"type": "object", "properties": {"sha256": {"type": "string"}, "url": {"type": "string"}}, "required": ["sha256", "url"]}, "1.0b": {"type": "object", "properties": {"sha256": {"type": "string"}, "url": {"type": "string"}}, "required": ["sha256", "url"]}}, "required": ["1.0.1", "1.0.1.1", "1.0.1b", "1.0b"]}}, "required": ["latest_version", "meta", "versions"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"latest_version" : ["1.0.1.1"], "meta" : {"description" : "ASCII-ART Data Analysis Pipeline Manager", "homepage" : "www.francesconapolitano.it/leaf/downloads/pyleaf-1.0.1.tar.gz"}, "versions" : {"1.0.1" : {"sha256" : "abbb9810630335ec5153158e8f2241db0b872d8ab513c6daf2d6fee2b7cfc9de", "url" : "https://files.pythonhosted.org/packages/51/72/5725777780fc667a0167a184f06b0bb778fb8ed16cac64f429e967e20ed4/pyleaf-1.0.1.tar.gz"}, "1.0.1.1" : {"sha256" : "1ff361391de35f43227b9b78e1c28881e6af37adcf4060c73eadf4752685a3a5", "url" : "https://files.pythonhosted.org/packages/7b/d4/766596601aa1dcb97984522891bf7f1783992918f2bdfde0a15d41e4d941/pyleaf-1.0.1.1.tar.gz"}, "1.0.1b" : {"sha256" : "68850678fe95b38dddf2f3ec7eb27d23933526f4e4b2b4e588dbc28d390ba989", "url" : "https://files.pythonhosted.org/packages/16/f0/6aaac4eb97eb1dcc5d719e5fd8531c79325184e1e979de15c659629a2bf3/pyleaf-1.0.1b.tar.gz"}, "1.0b" : {"sha256" : "aa4754e3097176ee023541cc0c5b838989a887459dcb31d9569c61e39fb47275", "url" : "https://files.pythonhosted.org/packages/91/d8/dc164ac68d26a0cb9ce13719ca1ee847115bfe676273f85af0db484f2f41/pyleaf-1.0b.tar.gz"}}}
json_instruct
{"type": "object", "properties": {"latest_version": {"type": "array", "items": {"type": "string"}}, "meta": {"type": "object", "properties": {"description": {"type": "string"}, "homepage": {"type": "string"}}, "required": ["description", "homepage"]}, "versions": {"type": "object", "properties": {"1.0.1": {"type": "object", "properties": {"sha256": {"type": "string"}, "url": {"type": "string"}}, "required": ["sha256", "url"]}, "1.0.1.1": {"type": "object", "properties": {"sha256": {"type": "string"}, "url": {"type": "string"}}, "required": ["sha256", "url"]}, "1.0.1b": {"type": "object", "properties": {"sha256": {"type": "string"}, "url": {"type": "string"}}, "required": ["sha256", "url"]}, "1.0b": {"type": "object", "properties": {"sha256": {"type": "string"}, "url": {"type": "string"}}, "required": ["sha256", "url"]}}, "required": ["1.0.1", "1.0.1.1", "1.0.1b", "1.0b"]}}, "required": ["latest_version", "meta", "versions"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"alexa": {"type": "integer"}, "class": {"type": "boolean"}, "links": {"type": "object", "properties": {}, "required": []}, "points": {"type": "array", "items": {"type": "string"}}, "pointsData": {"type": "object", "properties": {"XWJFKNMq0b4": {"type": "object", "properties": {"discussion": {"type": "string"}, "id": {"type": "string"}, "needModeration": {"type": "boolean"}, "services": {"type": "array", "items": {"type": "string"}}, "set": {"type": "string"}, "title": {"type": "string"}, "topics": {"type": "array", "items": {"type": "string"}}, "tosdr": {"type": "object", "properties": {"binding": {"type": "boolean"}, "case": {"type": "string"}, "point": {"type": "string"}, "score": {"type": "integer"}, "tldr": {"type": "string"}}, "required": ["binding", "case", "point", "score", "tldr"]}}, "required": ["discussion", "id", "needModeration", "services", "set", "title", "topics", "tosdr"]}}, "required": ["XWJFKNMq0b4"]}}, "required": ["alexa", "class", "links", "points", "pointsData"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"alexa" : 1000000, "class" : false, "links" : {}, "points" : ["XWJFKNMq0b4"], "pointsData" : {"XWJFKNMq0b4" : {"discussion" : "https://groups.google.com/d/topic/tosdr/XWJFKNMq0b4/discussion", "id" : "XWJFKNMq0b4", "needModeration" : false, "services" : ["coursera"], "set" : "set+service+and+topic", "title" : "Coursera can change Terms of Service without notice and with immediate effect.", "topics" : ["changes-notice"], "tosdr" : {"binding" : true, "case" : "user needs to rely on tosback.org", "point" : "bad", "score" : 70, "tldr" : "Coursera reserve the right to change or modify the Terms of Use at their sole discretion at any time."}}}}
json_instruct
{"type": "object", "properties": {"alexa": {"type": "integer"}, "class": {"type": "boolean"}, "links": {"type": "object", "properties": {}, "required": []}, "points": {"type": "array", "items": {"type": "string"}}, "pointsData": {"type": "object", "properties": {"XWJFKNMq0b4": {"type": "object", "properties": {"discussion": {"type": "string"}, "id": {"type": "string"}, "needModeration": {"type": "boolean"}, "services": {"type": "array", "items": {"type": "string"}}, "set": {"type": "string"}, "title": {"type": "string"}, "topics": {"type": "array", "items": {"type": "string"}}, "tosdr": {"type": "object", "properties": {"binding": {"type": "boolean"}, "case": {"type": "string"}, "point": {"type": "string"}, "score": {"type": "integer"}, "tldr": {"type": "string"}}, "required": ["binding", "case", "point", "score", "tldr"]}}, "required": ["discussion", "id", "needModeration", "services", "set", "title", "topics", "tosdr"]}}, "required": ["XWJFKNMq0b4"]}}, "required": ["alexa", "class", "links", "points", "pointsData"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"schema_version": {"type": "string"}, "id": {"type": "string"}, "modified": {"type": "string"}, "published": {"type": "string"}, "aliases": {"type": "array", "items": {"type": "string"}}, "details": {"type": "string"}, "severity": {"type": "array", "items": {}}, "affected": {"type": "array", "items": {}}, "references": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}}, "database_specific": {"type": "object", "properties": {"cwe_ids": {"type": "array", "items": {}}, "severity": {"type": "string"}, "github_reviewed": {"type": "boolean"}}, "required": ["cwe_ids", "severity", "github_reviewed"]}}, "required": ["schema_version", "id", "modified", "published", "aliases", "details", "severity", "affected", "references", "database_specific"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"schema_version" : "1.2.0", "id" : "GHSA-x3p7-g646-9j92", "modified" : "2022-05-01T02:27:39Z", "published" : "2022-05-01T02:27:39Z", "aliases" : ["CVE-2005-4470"], "details" : "Heap-based buffer overflow in the get_bhead function in readfile.c in Blender BlenLoader 2.0 through 2.40pre allows remote attackers to cause a denial of service (application crash) and possibly execute arbitrary code via a .blend file with a negative bhead.len value, which causes less memory to be allocated than expected, possibly due to an integer overflow.", "severity" : [], "affected" : [], "references" : [{"type" : "ADVISORY", "url" : "https://nvd.nist.gov/vuln/detail/CVE-2005-4470"}, {"type" : "WEB", "url" : "https://usn.ubuntu.com/238-2/"}, {"type" : "WEB", "url" : "http://secunia.com/advisories/18176"}, {"type" : "WEB", "url" : "http://secunia.com/advisories/18178"}, {"type" : "WEB", "url" : "http://secunia.com/advisories/18452"}, {"type" : "WEB", "url" : "http://secunia.com/advisories/19754"}, {"type" : "WEB", "url" : "http://www.debian.org/security/2006/dsa-1039"}, {"type" : "WEB", "url" : "http://www.gentoo.org/security/en/glsa/glsa-200601-08.xml"}, {"type" : "WEB", "url" : "http://www.overflow.pl/adv/blenderinteger.txt"}, {"type" : "WEB", "url" : "http://www.securityfocus.com/archive/1/419907/100/0/threaded"}, {"type" : "WEB", "url" : "http://www.securityfocus.com/bid/15981"}, {"type" : "WEB", "url" : "http://www.vupen.com/english/advisories/2005/3032"}], "database_specific" : {"cwe_ids" : [], "severity" : "HIGH", "github_reviewed" : false}}
json_instruct
{"type": "object", "properties": {"schema_version": {"type": "string"}, "id": {"type": "string"}, "modified": {"type": "string"}, "published": {"type": "string"}, "aliases": {"type": "array", "items": {"type": "string"}}, "details": {"type": "string"}, "severity": {"type": "array", "items": {}}, "affected": {"type": "array", "items": {}}, "references": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}}, "database_specific": {"type": "object", "properties": {"cwe_ids": {"type": "array", "items": {}}, "severity": {"type": "string"}, "github_reviewed": {"type": "boolean"}}, "required": ["cwe_ids", "severity", "github_reviewed"]}}, "required": ["schema_version", "id", "modified", "published", "aliases", "details", "severity", "affected", "references", "database_specific"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"name": {"type": "string"}, "main": {"type": "string"}, "license": {"type": "string"}}, "required": ["name", "main", "license"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "edge-runtime", "main" : "index.js", "license" : "MPLv2"}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "main": {"type": "string"}, "license": {"type": "string"}}, "required": ["name", "main", "license"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "array", "items": {"type": "array", "items": {"type": "string"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
[["130925104201", "\u4e1c\u8857\u6751\u59d4\u4f1a", "121", "0"], ["130925104202", "\u5317\u8857\u6751\u59d4\u4f1a", "122", "0"], ["130925104203", "\u897f\u8857\u6751\u59d4\u4f1a", "122", "0"], ["130925104204", "\u897f\u5357\u9662\u6751\u59d4\u4f1a", "122", "0"], ["130925104205", "\u5357\u8857\u6751\u59d4\u4f1a", "122", "0"], ["130925104206", "\u540e\u97e9\u6751\u59d4\u4f1a", "220", "0"], ["130925104207", "\u524d\u97e9\u6751\u59d4\u4f1a", "220", "0"], ["130925104208", "\u9648\u5e84\u6751\u59d4\u4f1a", "220", "0"], ["130925104209", "\u5c0f\u6cb3\u5218\u6751\u59d4\u4f1a", "220", "0"], ["130925104210", "\u897f\u8363\u6751\u59d4\u4f1a", "220", "0"], ["130925104211", "\u4e2d\u8363\u6751\u59d4\u4f1a", "220", "0"], ["130925104212", "\u4e1c\u8363\u6751\u59d4\u4f1a", "220", "0"], ["130925104213", "\u9ec4\u5e84\u6751\u59d4\u4f1a", "220", "0"], ["130925104214", "\u6768\u5e84\u6751\u59d4\u4f1a", "220", "0"], ["130925104215", "\u5218\u543e\u6751\u59d4\u4f1a", "220", "0"], ["130925104216", "\u5c0f\u97e9\u6751\u59d4\u4f1a", "220", "0"], ["130925104217", "\u5b59\u5e84\u6751\u59d4\u4f1a", "220", "0"], ["130925104218", "\u674e\u68a6\u98de\u6751\u59d4\u4f1a", "220", "0"], ["130925104219", "\u53f2\u5e84\u6751\u59d4\u4f1a", "220", "0"], ["130925104220", "\u5218\u5e84\u6751\u59d4\u4f1a", "220", "0"], ["130925104221", "\u738b\u6734\u6751\u59d4\u4f1a", "220", "0"], ["130925104222", "\u5218\u5b85\u6751\u59d4\u4f1a", "220", "0"], ["130925104223", "\u5c0f\u5415\u5b85\u6751\u59d4\u4f1a", "220", "0"], ["130925104224", "\u9a6c\u676f\u6751\u59d4\u4f1a", "220", "0"], ["130925104225", "\u5be8\u5b50\u6751\u59d4\u4f1a", "220", "0"], ["130925104226", "\u848b\u5143\u6751\u59d4\u4f1a", "220", "0"], ["130925104227", "\u515a\u6cb3\u6751\u59d4\u4f1a", "220", "0"], ["130925104228", "\u803f\u5eb5\u6751\u59d4\u4f1a", "220", "0"], ["130925104229", "\u9a6c\u5143\u5b50\u6751\u59d4\u4f1a", "220", "0"]]
json_instruct
{"type": "array", "items": {"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": {"rustc": {"type": "integer"}, "features": {"type": "string"}, "target": {"type": "integer"}, "profile": {"type": "integer"}, "path": {"type": "integer"}, "deps": {"type": "array", "items": {}}, "local": {"type": "array", "items": {"type": "object", "properties": {"CheckDepInfo": {"type": "object", "properties": {"dep_info": {"type": "string"}}, "required": ["dep_info"]}}, "required": ["CheckDepInfo"]}}, "rustflags": {"type": "array", "items": {}}, "metadata": {"type": "integer"}, "config": {"type": "integer"}}, "required": ["rustc", "features", "target", "profile", "path", "deps", "local", "rustflags", "metadata", "config"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"rustc" : 2399776480655235991, "features" : "[]", "target" : 8970651664771902856, "profile" : 10803726696109476711, "path" : 10958491665737711597, "deps" : [], "local" : [{"CheckDepInfo" : {"dep_info" : "release/.fingerprint/feature-probe-0994cf99a56b3935/dep-lib-feature-probe"}}], "rustflags" : [], "metadata" : 10842935418023998640, "config" : 0}
json_instruct
{"type": "object", "properties": {"rustc": {"type": "integer"}, "features": {"type": "string"}, "target": {"type": "integer"}, "profile": {"type": "integer"}, "path": {"type": "integer"}, "deps": {"type": "array", "items": {}}, "local": {"type": "array", "items": {"type": "object", "properties": {"CheckDepInfo": {"type": "object", "properties": {"dep_info": {"type": "string"}}, "required": ["dep_info"]}}, "required": ["CheckDepInfo"]}}, "rustflags": {"type": "array", "items": {}}, "metadata": {"type": "integer"}, "config": {"type": "integer"}}, "required": ["rustc", "features", "target", "profile", "path", "deps", "local", "rustflags", "metadata", "config"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"nested-array-exclude": {"type": "object", "properties": {"properties": {"type": "object", "properties": {"foo": {"type": "object", "properties": {"type": {"type": "string"}}, "required": ["type"]}, "nested": {"type": "object", "properties": {"properties": {"type": "object", "properties": {"bar": {"type": "object", "properties": {"properties": {"type": "object", "properties": {"date": {"type": "object", "properties": {"type": {"type": "string"}, "format": {"type": "string"}}, "required": ["type", "format"]}, "scores": {"type": "object", "properties": {"type": {"type": "string"}}, "required": ["type"]}}, "required": ["date", "scores"]}}, "required": ["properties"]}, "what": {"type": "object", "properties": {"type": {"type": "string"}}, "required": ["type"]}}, "required": ["bar", "what"]}}, "required": ["properties"]}}, "required": ["foo", "nested"]}}, "required": ["properties"]}}, "required": ["nested-array-exclude"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"nested-array-exclude" : {"properties" : {"foo" : {"type" : "long"}, "nested" : {"properties" : {"bar" : {"properties" : {"date" : {"type" : "date", "format" : "strict_date_optional_time||epoch_millis"}, "scores" : {"type" : "long"}}}, "what" : {"type" : "string"}}}}}}
json_instruct
{"type": "object", "properties": {"nested-array-exclude": {"type": "object", "properties": {"properties": {"type": "object", "properties": {"foo": {"type": "object", "properties": {"type": {"type": "string"}}, "required": ["type"]}, "nested": {"type": "object", "properties": {"properties": {"type": "object", "properties": {"bar": {"type": "object", "properties": {"properties": {"type": "object", "properties": {"date": {"type": "object", "properties": {"type": {"type": "string"}, "format": {"type": "string"}}, "required": ["type", "format"]}, "scores": {"type": "object", "properties": {"type": {"type": "string"}}, "required": ["type"]}}, "required": ["date", "scores"]}}, "required": ["properties"]}, "what": {"type": "object", "properties": {"type": {"type": "string"}}, "required": ["type"]}}, "required": ["bar", "what"]}}, "required": ["properties"]}}, "required": ["foo", "nested"]}}, "required": ["properties"]}}, "required": ["nested-array-exclude"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "version": {"type": "string"}, "repository": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "author": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}, "url": {"type": "string"}}, "required": ["name", "email", "url"]}, "main": {"type": "string"}, "engines": {"type": "object", "properties": {"node": {"type": "string"}}, "required": ["node"]}, "_id": {"type": "string"}, "_engineSupported": {"type": "boolean"}, "_npmVersion": {"type": "string"}, "_nodeVersion": {"type": "string"}, "directories": {"type": "object", "properties": {"lib": {"type": "string"}}, "required": ["lib"]}, "files": {"type": "array", "items": {"type": "string"}}, "_defaultsLoaded": {"type": "boolean"}, "dist": {"type": "object", "properties": {"shasum": {"type": "string"}, "tarball": {"type": "string"}}, "required": ["shasum", "tarball"]}, "_etag": {"type": "string"}}, "required": ["name", "description", "version", "repository", "author", "main", "engines", "_id", "_engineSupported", "_npmVersion", "_nodeVersion", "directories", "files", "_defaultsLoaded", "dist", "_etag"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "qs", "description" : "querystring parser", "version" : "0.1.0", "repository" : {"url" : ""}, "author" : {"name" : "TJ Holowaychuk", "email" : "tj@vision-media.ca", "url" : "http://tjholowaychuk.com"}, "main" : "index", "engines" : {"node" : "*"}, "_id" : "qs@0.1.0", "_engineSupported" : true, "_npmVersion" : "0.3.18", "_nodeVersion" : "v0.4.5", "directories" : {"lib" : "./lib"}, "files" : [""], "_defaultsLoaded" : true, "dist" : {"shasum" : "9a0d2d70d01f63d3401ea4b050822601b462ee6b", "tarball" : "http://registry.npmjs.org/qs/-/qs-0.1.0.tgz"}, "_etag" : "\"7URS2QVZUY8YSPSH7Y606DOIH\""}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "version": {"type": "string"}, "repository": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "author": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}, "url": {"type": "string"}}, "required": ["name", "email", "url"]}, "main": {"type": "string"}, "engines": {"type": "object", "properties": {"node": {"type": "string"}}, "required": ["node"]}, "_id": {"type": "string"}, "_engineSupported": {"type": "boolean"}, "_npmVersion": {"type": "string"}, "_nodeVersion": {"type": "string"}, "directories": {"type": "object", "properties": {"lib": {"type": "string"}}, "required": ["lib"]}, "files": {"type": "array", "items": {"type": "string"}}, "_defaultsLoaded": {"type": "boolean"}, "dist": {"type": "object", "properties": {"shasum": {"type": "string"}, "tarball": {"type": "string"}}, "required": ["shasum", "tarball"]}, "_etag": {"type": "string"}}, "required": ["name", "description", "version", "repository", "author", "main", "engines", "_id", "_engineSupported", "_npmVersion", "_nodeVersion", "directories", "files", "_defaultsLoaded", "dist", "_etag"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"version": {"type": "integer"}, "license": {"type": "string"}, "copyright": {"type": "string"}, "size": {"type": "object", "properties": {"x": {"type": "integer"}, "y": {"type": "integer"}}, "required": ["x", "y"]}, "states": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"]}}}, "required": ["version", "license", "copyright", "size", "states"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"version" : 1, "license" : "CC-BY-SA-3.0", "copyright" : "Taken from skyrat-tg at commit https://github.com/Skyrat-SS13/Skyrat-tg/commit/f9e3b58ecd64fa061f83420689bd90bfa3a4c185", "size" : {"x" : 32, "y" : 32}, "states" : [{"name" : "full"}, {"name" : "twindow0", "directions" : 4}, {"name" : "twindow1", "directions" : 4}, {"name" : "twindow2", "directions" : 4}, {"name" : "twindow3", "directions" : 4}, {"name" : "twindow4", "directions" : 4}, {"name" : "twindow5", "directions" : 4}, {"name" : "twindow6", "directions" : 4}, {"name" : "twindow7", "directions" : 4}]}
json_instruct
{"type": "object", "properties": {"version": {"type": "integer"}, "license": {"type": "string"}, "copyright": {"type": "string"}, "size": {"type": "object", "properties": {"x": {"type": "integer"}, "y": {"type": "integer"}}, "required": ["x", "y"]}, "states": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"]}}}, "required": ["version", "license", "copyright", "size", "states"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "array", "items": {"type": "object", "properties": {"namaKab": {"type": "string"}, "originalFilename": {"type": "string"}, "namaPartai": {"type": "string"}, "id": {"type": "integer"}, "noUrut": {"type": "integer"}, "nama": {"type": "string"}, "stringJenisKelamin": {"type": "string"}}, "required": ["namaKab", "originalFilename", "namaPartai", "id", "noUrut", "nama", "stringJenisKelamin"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"namaKab" : "HALMAHERA SELATAN", "originalFilename" : "11 FOTO.JPG", "namaPartai" : "PARTAI DEMOKRASI INDONESIA PERJUANGAN", "id" : 225626, "noUrut" : 1, "nama" : "BUNYAMIN HI.DAUD, S.IP", "stringJenisKelamin" : "Laki-Laki"}, {"namaKab" : "HALMAHERA SELATAN", "originalFilename" : "8 FOTO.JPG", "namaPartai" : "PARTAI DEMOKRASI INDONESIA PERJUANGAN", "id" : 225921, "noUrut" : 2, "nama" : "HAMAJAN LAMITIRA", "stringJenisKelamin" : "Laki-Laki"}, {"namaKab" : "HALMAHERA SELATAN", "originalFilename" : "8 FOTO.jpg", "namaPartai" : "PARTAI DEMOKRASI INDONESIA PERJUANGAN", "id" : 226018, "noUrut" : 3, "nama" : "NURAENI A.RAHMAN, S.Pi", "stringJenisKelamin" : "Perempuan"}, {"namaKab" : "HALMAHERA SELATAN", "originalFilename" : "9 FOTO.JPG", "namaPartai" : "PARTAI DEMOKRASI INDONESIA PERJUANGAN", "id" : 226204, "noUrut" : 4, "nama" : "KAMARUDIN, S.E", "stringJenisKelamin" : "Laki-Laki"}, {"namaKab" : "HALMAHERA SELATAN", "originalFilename" : "4 FOTO.JPG", "namaPartai" : "PARTAI DEMOKRASI INDONESIA PERJUANGAN", "id" : 226390, "noUrut" : 5, "nama" : "HAJIJA RAJAB, S.Pd", "stringJenisKelamin" : "Perempuan"}, {"namaKab" : "HALMAHERA SELATAN", "originalFilename" : "9 FOTO.JPG", "namaPartai" : "PARTAI DEMOKRASI INDONESIA PERJUANGAN", "id" : 226497, "noUrut" : 6, "nama" : "SUNARIA CENDRA, S.Pd.I.", "stringJenisKelamin" : "Perempuan"}, {"namaKab" : "HALMAHERA SELATAN", "originalFilename" : "12 FOTO.JPG", "namaPartai" : "PARTAI DEMOKRASI INDONESIA PERJUANGAN", "id" : 226644, "noUrut" : 7, "nama" : "MOHTAR S.BASRAH, S.H.", "stringJenisKelamin" : "Laki-Laki"}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"namaKab": {"type": "string"}, "originalFilename": {"type": "string"}, "namaPartai": {"type": "string"}, "id": {"type": "integer"}, "noUrut": {"type": "integer"}, "nama": {"type": "string"}, "stringJenisKelamin": {"type": "string"}}, "required": ["namaKab", "originalFilename", "namaPartai", "id", "noUrut", "nama", "stringJenisKelamin"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"description": {"type": "string"}, "duration": {"type": "integer"}, "language": {"type": "string"}, "recorded": {"type": "string"}, "speakers": {"type": "array", "items": {"type": "string"}}, "thumbnail_url": {"type": "string"}, "title": {"type": "string"}, "videos": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}}}, "required": ["description", "duration", "language", "recorded", "speakers", "thumbnail_url", "title", "videos"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"description" : "Python + ESP8266 + Cloud = automate anything.\n\nIntroduction of Python friendly IoT HW + Cloud (Azure) services", "duration" : 1850, "language" : "eng", "recorded" : "2016-10-29", "speakers" : ["Jan Posp\u00ed\u0161il"], "thumbnail_url" : "https://i.ytimg.com/vi/FyeCIRdNRVY/hqdefault.jpg", "title" : "PyIoT", "videos" : [{"type" : "youtube", "url" : "https://www.youtube.com/watch?v=FyeCIRdNRVY"}]}
json_instruct
{"type": "object", "properties": {"description": {"type": "string"}, "duration": {"type": "integer"}, "language": {"type": "string"}, "recorded": {"type": "string"}, "speakers": {"type": "array", "items": {"type": "string"}}, "thumbnail_url": {"type": "string"}, "title": {"type": "string"}, "videos": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}}}, "required": ["description", "duration", "language", "recorded", "speakers", "thumbnail_url", "title", "videos"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"changepoint": {"type": "string"}, "country": {"type": "object", "properties": {"code": {"type": "string"}, "group": {"type": "string"}, "name": {"type": "string"}}, "required": ["code", "group", "name"]}, "topics": {"type": "array", "items": {"type": "object", "properties": {"diff": {"type": "number"}, "topic": {"type": "string"}}, "required": ["diff", "topic"]}}}, "required": ["changepoint", "country", "topics"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"changepoint" : "2020-03-05", "country" : {"code" : "LUX", "group" : "lb", "name" : "Luxembourg"}, "topics" : [{"diff" : 793.0, "topic" : "Geography"}, {"diff" : 746.0, "topic" : "Populated places"}, {"diff" : 680.0, "topic" : "France"}, {"diff" : 523.0, "topic" : "History"}, {"diff" : 463.0, "topic" : "Time"}, {"diff" : 456.0, "topic" : "Centuries"}, {"diff" : 455.0, "topic" : "Period"}, {"diff" : 247.0, "topic" : "Departments"}, {"diff" : 213.0, "topic" : "Europe"}, {"diff" : 157.0, "topic" : "Earth sciences"}, {"diff" : 149.0, "topic" : "Late antiquity"}, {"diff" : 142.0, "topic" : "Departments of hauts-de-france"}, {"diff" : 123.0, "topic" : "Geography by second-level administrative country subdivision"}, {"diff" : 105.0, "topic" : "Places"}, {"diff" : 101.0, "topic" : "Maintenance"}, {"diff" : 98.0, "topic" : "Departments of auvergne-rh\u00f4ne-alpes"}, {"diff" : 98.0, "topic" : "Decade"}, {"diff" : 95.0, "topic" : "Establishments"}, {"diff" : 90.0, "topic" : "Categories"}, {"diff" : 81.0, "topic" : "Countries"}]}
json_instruct
{"type": "object", "properties": {"changepoint": {"type": "string"}, "country": {"type": "object", "properties": {"code": {"type": "string"}, "group": {"type": "string"}, "name": {"type": "string"}}, "required": ["code", "group", "name"]}, "topics": {"type": "array", "items": {"type": "object", "properties": {"diff": {"type": "number"}, "topic": {"type": "string"}}, "required": ["diff", "topic"]}}}, "required": ["changepoint", "country", "topics"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"ast": {"type": "null"}, "code": {"type": "string"}, "map": {"type": "object", "properties": {"version": {"type": "integer"}, "sources": {"type": "array", "items": {"type": "string"}}, "names": {"type": "array", "items": {"type": "string"}}, "mappings": {"type": "string"}, "sourcesContent": {"type": "array", "items": {"type": "string"}}}, "required": ["version", "sources", "names", "mappings", "sourcesContent"]}, "metadata": {"type": "object", "properties": {}, "required": []}, "sourceType": {"type": "string"}}, "required": ["ast", "code", "map", "metadata", "sourceType"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"ast" : null, "code" : "import { a as appGlobalScript } from \"./ionic-global-9d5c8ee3.js\";\nvar globalScripts = appGlobalScript;\nexport { globalScripts as g };", "map" : {"version" : 3, "sources" : ["/Users/zahra/Desktop/repository/local_shops_mobile/node_modules/@ionic/core/dist/esm-es5/app-globals-af880846.js"], "names" : ["a", "appGlobalScript", "globalScripts", "g"], "mappings" : "AAAA,SAAOA,CAAC,IAAIC,eAAZ,QAAgC,4BAAhC;AAA6D,IAAIC,aAAa,GAACD,eAAlB;AAAkC,SAAOC,aAAa,IAAIC,CAAxB", "sourcesContent" : ["import{a as appGlobalScript}from\"./ionic-global-9d5c8ee3.js\";var globalScripts=appGlobalScript;export{globalScripts as g};"]}, "metadata" : {}, "sourceType" : "module"}
json_instruct
{"type": "object", "properties": {"ast": {"type": "null"}, "code": {"type": "string"}, "map": {"type": "object", "properties": {"version": {"type": "integer"}, "sources": {"type": "array", "items": {"type": "string"}}, "names": {"type": "array", "items": {"type": "string"}}, "mappings": {"type": "string"}, "sourcesContent": {"type": "array", "items": {"type": "string"}}}, "required": ["version", "sources", "names", "mappings", "sourcesContent"]}, "metadata": {"type": "object", "properties": {}, "required": []}, "sourceType": {"type": "string"}}, "required": ["ast", "code", "map", "metadata", "sourceType"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"id_3564": {"type": "object", "properties": {"publicdate": {"type": "string"}, "title": {"type": "string"}}, "required": ["publicdate", "title"]}}, "required": ["id_3564"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id_3564" : {"publicdate" : "2009-12-16 20:05:10", "title" : "Cleek: The Man of the Forty Faces"}}
json_instruct
{"type": "object", "properties": {"id_3564": {"type": "object", "properties": {"publicdate": {"type": "string"}, "title": {"type": "string"}}, "required": ["publicdate", "title"]}}, "required": ["id_3564"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "array", "items": {"type": "object", "properties": {"VideoId": {"type": "string"}, "DataApi": {"type": "string"}, "VideoPageLink": {"type": "string"}, "VideoPageThumb": {"type": "null"}, "ShowName": {"type": "null"}, "VideoLength": {"type": "string"}, "VideoTitle": {"type": "null"}, "Author": {"type": "null"}, "UtcDateTimePublished": {"type": "string"}, "ActualVideoFileLink": {"type": "null"}, "Description": {"type": "null"}}, "required": ["VideoId", "DataApi", "VideoPageLink", "VideoPageThumb", "ShowName", "VideoLength", "VideoTitle", "Author", "UtcDateTimePublished", "ActualVideoFileLink", "Description"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"VideoId" : "7f09c0d4-17fe-404f-8f09-a5e901443f6d", "DataApi" : "/Entries(guid'7f09c0d4-17fe-404f-8f09-a5e901443f6d')/", "VideoPageLink" : "/Shows/Learn-From-The-Geeks/Learn-From-the-Geeks", "VideoPageThumb" : null, "ShowName" : null, "VideoLength" : "00:00:00", "VideoTitle" : null, "Author" : null, "UtcDateTimePublished" : "0001-01-01T00:00:00", "ActualVideoFileLink" : null, "Description" : null}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"VideoId": {"type": "string"}, "DataApi": {"type": "string"}, "VideoPageLink": {"type": "string"}, "VideoPageThumb": {"type": "null"}, "ShowName": {"type": "null"}, "VideoLength": {"type": "string"}, "VideoTitle": {"type": "null"}, "Author": {"type": "null"}, "UtcDateTimePublished": {"type": "string"}, "ActualVideoFileLink": {"type": "null"}, "Description": {"type": "null"}}, "required": ["VideoId", "DataApi", "VideoPageLink", "VideoPageThumb", "ShowName", "VideoLength", "VideoTitle", "Author", "UtcDateTimePublished", "ActualVideoFileLink", "Description"]}, "$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"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"dev": {"type": "string"}, "build": {"type": "string"}, "preforrest": {"type": "string"}, "forrest": {"type": "string"}, "postforrest": {"type": "string"}, "test": {"type": "string"}}, "required": ["dev", "build", "preforrest", "forrest", "postforrest", "test"]}, "keywords": {"type": "array", "items": {}}, "author": {"type": "string"}, "license": {"type": "string"}}, "required": ["name", "version", "description", "main", "scripts", "keywords", "author", "license"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "1.2.2", "version" : "1.0.0", "description" : "", "main" : "index.js", "scripts" : {"dev" : "./scripts.sh dev", "build" : "./scripts.sh build", "preforrest" : "echo 'Antes'", "forrest" : "echo 'Run, Forrest, run!'", "postforrest" : "echo 'Depois'", "test" : "./scripts.sh test"}, "keywords" : [], "author" : "William Bruno <wbrunom@gmail.com> (http://wbruno.com.br)", "license" : "ISC"}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"dev": {"type": "string"}, "build": {"type": "string"}, "preforrest": {"type": "string"}, "forrest": {"type": "string"}, "postforrest": {"type": "string"}, "test": {"type": "string"}}, "required": ["dev", "build", "preforrest", "forrest", "postforrest", "test"]}, "keywords": {"type": "array", "items": {}}, "author": {"type": "string"}, "license": {"type": "string"}}, "required": ["name", "version", "description", "main", "scripts", "keywords", "author", "license"], "$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": {"startDate": {"type": "string"}, "endDate": {"type": "string"}, "location": {"type": "string"}, "weekday": {"type": "string"}}, "required": ["startDate", "endDate", "location", "weekday"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"startDate" : "10:00", "endDate" : "12:30", "location" : "G.2.1", "weekday" : "MO"}, {"startDate" : "10:00", "endDate" : "12:30", "location" : "G.2.4", "weekday" : "WE"}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"startDate": {"type": "string"}, "endDate": {"type": "string"}, "location": {"type": "string"}, "weekday": {"type": "string"}}, "required": ["startDate", "endDate", "location", "weekday"]}, "$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"}, "repository": {"type": "string"}, "author": {"type": "string"}, "license": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "engines": {"type": "object", "properties": {"node": {"type": "string"}, "npm": {"type": "string"}}, "required": ["node", "npm"]}, "dependencies": {"type": "object", "properties": {"zapier-platform-core": {"type": "string"}}, "required": ["zapier-platform-core"]}, "devDependencies": {"type": "object", "properties": {"mocha": {"type": "string"}, "nock": {"type": "string"}, "should": {"type": "string"}}, "required": ["mocha", "nock", "should"]}}, "required": ["name", "version", "description", "repository", "author", "license", "main", "scripts", "engines", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "lifx-zap", "version" : "0.0.1", "description" : "An Zapier integration for Lifx lights.", "repository" : "codealchemy/lifx-zap", "author" : "Alex Schmitt <alex@alchemist.codes>", "license" : "MIT", "main" : "index.js", "scripts" : {"test" : "node node_modules/mocha/bin/mocha --recursive"}, "engines" : {"node" : "10.19.0", "npm" : ">=5.6.10"}, "dependencies" : {"zapier-platform-core" : "11.0.1"}, "devDependencies" : {"mocha" : "^7.2.0", "nock" : "10.0.6", "should" : "13.1.3"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "repository": {"type": "string"}, "author": {"type": "string"}, "license": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "engines": {"type": "object", "properties": {"node": {"type": "string"}, "npm": {"type": "string"}}, "required": ["node", "npm"]}, "dependencies": {"type": "object", "properties": {"zapier-platform-core": {"type": "string"}}, "required": ["zapier-platform-core"]}, "devDependencies": {"type": "object", "properties": {"mocha": {"type": "string"}, "nock": {"type": "string"}, "should": {"type": "string"}}, "required": ["mocha", "nock", "should"]}}, "required": ["name", "version", "description", "repository", "author", "license", "main", "scripts", "engines", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"name": {"type": "string"}, "title": {"type": "string"}, "description": {"type": "string"}, "permission": {"type": "integer"}, "basicModule": {"type": "string"}}, "required": ["name", "title", "description", "permission", "basicModule"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "Router", "title" : "Router", "description" : "url \uc8fc\uc18c\ucc98\ub9ac\ub97c \ub2f4\ub2f9\ud558\ub294 \ubaa8\ub4c8\uc785\ub2c8\ub2e4.", "permission" : 0, "basicModule" : "Intro"}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "title": {"type": "string"}, "description": {"type": "string"}, "permission": {"type": "integer"}, "basicModule": {"type": "string"}}, "required": ["name", "title", "description", "permission", "basicModule"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"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": {"documentation-url": {"type": "string"}, "point": {"type": "string"}, "listed-building": {"type": "string"}, "listed-building-grade": {"type": "string"}, "name": {"type": "string"}, "start-date": {"type": "string"}, "slug": {"type": "string"}, "entry-date": {"type": "string"}}, "required": ["documentation-url", "point", "listed-building", "listed-building-grade", "name", "start-date", "slug", "entry-date"]}}, "required": ["type", "geometry", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"type" : "Feature", "geometry" : {"type" : "Point", "coordinates" : [-0.871402, 50.769862]}, "properties" : {"documentation-url" : "https://historicengland.org.uk/listing/the-list/list-entry/1026108", "point" : "POINT (-0.871402 50.769862)", "listed-building" : "1026108", "listed-building-grade" : "II", "name" : "EAST WITTERING WINDMILL", "start-date" : "1986-01-28", "slug" : "/listed-building/1026108", "entry-date" : "2021-05-28"}}
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": {"documentation-url": {"type": "string"}, "point": {"type": "string"}, "listed-building": {"type": "string"}, "listed-building-grade": {"type": "string"}, "name": {"type": "string"}, "start-date": {"type": "string"}, "slug": {"type": "string"}, "entry-date": {"type": "string"}}, "required": ["documentation-url", "point", "listed-building", "listed-building-grade", "name", "start-date", "slug", "entry-date"]}}, "required": ["type", "geometry", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "engines": {"type": "object", "properties": {"node": {"type": "string"}}, "required": ["node"]}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "readme": {"type": "string"}, "repository": {"type": "string"}, "author": {"type": "string"}, "license": {"type": "string"}}, "required": ["name", "version", "description", "main", "engines", "scripts", "keywords", "readme", "repository", "author", "license"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "console.oof", "version" : "0.1.13", "description" : "Colorful console.log messages for when console.log doesn't quite capture your rage", "main" : "index.js", "engines" : {"node" : ">=0.10.0"}, "scripts" : {"test" : "echo \"Error: no test specified\" && exit 1"}, "keywords" : ["console.log", "error", "funny", "joke"], "readme" : "README.md", "repository" : "git://github.com/henrym2/console.oof", "author" : "Matthew Henry", "license" : "GLWT"}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "engines": {"type": "object", "properties": {"node": {"type": "string"}}, "required": ["node"]}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "readme": {"type": "string"}, "repository": {"type": "string"}, "author": {"type": "string"}, "license": {"type": "string"}}, "required": ["name", "version", "description", "main", "engines", "scripts", "keywords", "readme", "repository", "author", "license"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"id": {"type": "string"}, "text": {"type": "string"}}, "required": ["id", "text"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : "d1004-157", "text" : "PROGRAM 17. JANUARY 4, 1956\n\"WHEN KNIGHTHOOD WAS IN FLOWER\"\nPart I of the well-known historical romance of 16th\nCentury England starring Richard Todd, Glynis Johns.\nPROGRAM 18. JANUARY 11, 1956\n\"WHEN KNIGHTHOOD WAS IN FLOWER\"\nPart II of this live-action version of the literary classic.\nPROGRAM 19. JANUARY 18, 1956\n\"UNCLE REMUS\" A special cartoon biography of\nJoel Chandler Harris introduces some of the famous\nRemus tales.\nPROGRAM 20. JANUARY 25, 1956\n\"DAVY CROCKETT AND THE KEELBOAT RACE\"\nThe remarkable race between Davy and Mike Fink and\ntheir river cargo boats."}
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "text": {"type": "string"}}, "required": ["id", "text"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"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" : ["Pour rice, cinnamon, and 3 cups water in a blender; blend until rice begins to break up, about 1 minute.", "Transfer rice mixture to a large bowl and stir in remaining 1 1/2 cups water; let stand for at least 3 hours, whisking occasionally.", "Strain rice mixture with a fine sieve into a large pitcher and discard rice.", "Stir coconut milk, sugar, and vanilla extract into the pitcher. Chill completely and stir before serving over ice."], "ingredients" : ["1 cup uncooked white rice", "1/2 teaspoon ground cinnamon", "4 1/2 cups water, divided", "2/3 cup light coconut milk", "1/3 cup superfine sugar", "1 teaspoon vanilla extract"], "language" : "en-US", "source" : "allrecipes.com", "tags" : [], "title" : "Linda's Coconut Horchata", "url" : "http://allrecipes.com/recipe/221317/lindas-coconut-horchata/"}
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#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"PRODUCT_NAME": {"type": "string"}, "MANUFACTURER": {"type": "string"}, "BRANDNAME": {"type": "string"}, "WEIGHT": {"type": "string"}}, "required": ["PRODUCT_NAME", "MANUFACTURER", "BRANDNAME", "WEIGHT"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"PRODUCT_NAME" : "Dish Washing Liquid", "MANUFACTURER" : "The Paper Boys Enterprises", "BRANDNAME" : "Lemon Fresh", "WEIGHT" : "900ml"}
json_instruct
{"type": "object", "properties": {"PRODUCT_NAME": {"type": "string"}, "MANUFACTURER": {"type": "string"}, "BRANDNAME": {"type": "string"}, "WEIGHT": {"type": "string"}}, "required": ["PRODUCT_NAME", "MANUFACTURER", "BRANDNAME", "WEIGHT"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"textAngular-rangy.min.js": {"type": "string"}, "textAngular-sanitize.js": {"type": "string"}, "textAngular-sanitize.min.js": {"type": "string"}, "textAngular.css": {"type": "string"}, "textAngular.js": {"type": "string"}, "textAngular.min.css": {"type": "string"}, "textAngular.min.js": {"type": "string"}, "textAngular.umd.js": {"type": "string"}, "textAngular.umd.min.js": {"type": "string"}, "textAngularSetup.js": {"type": "string"}, "textAngularSetup.min.js": {"type": "string"}}, "required": ["textAngular-rangy.min.js", "textAngular-sanitize.js", "textAngular-sanitize.min.js", "textAngular.css", "textAngular.js", "textAngular.min.css", "textAngular.min.js", "textAngular.umd.js", "textAngular.umd.min.js", "textAngularSetup.js", "textAngularSetup.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"textAngular-rangy.min.js" : "sha512-6EvKicCALHQfWxdQ49dH9CJ6FhnTnARz2R4AyAmc3S1gUIt0asC1X/SEnftley7v3Y/5oejr+VBrkjNjLzhzZQ==", "textAngular-sanitize.js" : "sha512-PdVpdpTXeQpMcqbon+0IDNSLT3p2JxftjY0E85QHf5bFtCJuacWdIBA6AliKtcIqu58eZ4UkTT0ewaRJjX2kXQ==", "textAngular-sanitize.min.js" : "sha512-D6ZUSmtaR1JRB2Vfx2up4PrO0M5TS5UHALpO7G9vPJChqjbxB4ObyiHyoCQmBIrh4K8k3zYUV5ME0mxp6DJUkg==", "textAngular.css" : "sha512-hn+9FIayE6g+0ngRnAMcVtjMaXNynmbGkA8iSf33LXY/tK9d1fonlwZLAqQjDFCqplUsRpXwuOhqDVEqW6VjVA==", "textAngular.js" : "sha512-lFNneq8fe8tbWid2Qhk1j+pqmt3KfQ5s6D+8Zxv/14tF4m66iiH3WXpSjb0BYp2ZAUdI0XakZMgkeozMS1b6Dg==", "textAngular.min.css" : "sha512-2L/8fZDeXvLFGVsbmLGekFwL6zzywBWw8xzlRYmaEDqbWSw13HXfLacw0YqgacsU3tytA0FulHJYFywp3Ecz/A==", "textAngular.min.js" : "sha512-rLatJQ2WJ9Y7FoAJScp8y2iXPhz5YPxf2CaEl6xcU45wjbEJNaBxY1pVyvJh7rJSeZjHoBaXsmSJKm26ypmn+A==", "textAngular.umd.js" : "sha512-qneoo2J/4VPGb/WhAeRDSm/II7T0nQgVJ+0Jnu6KO2wDBbGMopsao8zA2I8FlAXrQRtzlXzDtkI3jnVH1HhWEg==", "textAngular.umd.min.js" : "sha512-H7GGOc1zUikt27ZnCP5i7hY2G4H7316eVddb8J8h6LxulFxDUWEEHkCreOsOsDY33RFw6I6s1KMKshOymolpLg==", "textAngularSetup.js" : "sha512-dbWJpreboIW0+sD9n+T2chKM0WGP9bdHR9dAIVaQzjVtHpWLoP/0kruAY3R14tdEFnqiLCdUcb4JEamXXdJncQ==", "textAngularSetup.min.js" : "sha512-VYbqs82S5hefuE6wnF7iiXmA2jd7NC1iD+AsbVw2A0J4Vsog3qWgtMz3yHmMt+LNM3pM8bHURTzX8YibVjSuog=="}
json_instruct
{"type": "object", "properties": {"textAngular-rangy.min.js": {"type": "string"}, "textAngular-sanitize.js": {"type": "string"}, "textAngular-sanitize.min.js": {"type": "string"}, "textAngular.css": {"type": "string"}, "textAngular.js": {"type": "string"}, "textAngular.min.css": {"type": "string"}, "textAngular.min.js": {"type": "string"}, "textAngular.umd.js": {"type": "string"}, "textAngular.umd.min.js": {"type": "string"}, "textAngularSetup.js": {"type": "string"}, "textAngularSetup.min.js": {"type": "string"}}, "required": ["textAngular-rangy.min.js", "textAngular-sanitize.js", "textAngular-sanitize.min.js", "textAngular.css", "textAngular.js", "textAngular.min.css", "textAngular.min.js", "textAngular.umd.js", "textAngular.umd.min.js", "textAngularSetup.js", "textAngularSetup.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"prefix": {"type": "string"}, "sahip": {"type": "string"}, "token": {"type": "string"}}, "required": ["prefix", "sahip", "token"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"prefix" : "prefix", "sahip" : "botun sahibi", "token" : "botun tokeni"}
json_instruct
{"type": "object", "properties": {"prefix": {"type": "string"}, "sahip": {"type": "string"}, "token": {"type": "string"}}, "required": ["prefix", "sahip", "token"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"id": {"type": "integer"}, "surahNumber": {"type": "string"}, "ayatNumber": {"type": "string"}, "arabic": {"type": "string"}, "english": {"type": "string"}, "bengali": {"type": "string"}}, "required": ["id", "surahNumber", "ayatNumber", "arabic", "english", "bengali"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : 482, "surahNumber" : "003", "ayatNumber" : "189", "arabic" : "\u0648\u064e\u0644\u0650\u0644\u0651\u064e\u0647\u0650 \u0645\u064f\u0644\u0652\u0643\u064f \u0627\u0644\u0633\u0651\u064e\u0645\u064e\u0627\u0648\u064e\u0627\u062a\u0650 \u0648\u064e\u0627\u0644\u0652\u0623\u064e\u0631\u0652\u0636\u0650 \u06d7 \u0648\u064e\u0627\u0644\u0644\u0651\u064e\u0647\u064f \u0639\u064e\u0644\u064e\u0649\u0670 \u0643\u064f\u0644\u0651\u0650 \u0634\u064e\u064a\u0652\u0621\u064d \u0642\u064e\u062f\u0650\u064a\u0631\u064c", "english" : "And to Allah belongs the dominion of the heavens and the earth, and Allah has power over all things.", "bengali" : "\u0986\u09b0 \u0986\u09b2\u09cd\u09b2\u09be\u09b9\u09b0 \u099c\u09a8\u09cd\u09af\u0987 \u09b9\u09b2 \u0986\u09b8\u09ae\u09be\u09a8 \u0993 \u09af\u09ae\u09bf\u09a8\u09c7\u09b0 \u09ac\u09be\u09a6\u09b6\u09be\u09b9\u09c0\u0964 \u0986\u09b2\u09cd\u09b2\u09be\u09b9\u0987 \u09b8\u09b0\u09cd\u09ac \u09ac\u09bf\u09b7\u09df\u09c7 \u0995\u09cd\u09b7\u09ae\u09a4\u09be\u09b0 \u0985\u09a7\u09bf\u0995\u09be\u09b0\u09c0\u0964"}
json_instruct
{"type": "object", "properties": {"id": {"type": "integer"}, "surahNumber": {"type": "string"}, "ayatNumber": {"type": "string"}, "arabic": {"type": "string"}, "english": {"type": "string"}, "bengali": {"type": "string"}}, "required": ["id", "surahNumber", "ayatNumber", "arabic", "english", "bengali"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"os": {"type": "string"}, "architecture": {"type": "null"}, "name": {"type": "string"}, "version": {"type": "string"}, "identifier": {"type": "string"}, "id_like": {"type": "string"}, "version_codename": {"type": "null"}, "version_id": {"type": "string"}, "pretty_name": {"type": "string"}, "cpe_name": {"type": "string"}, "home_url": {"type": "string"}, "documentation_url": {"type": "null"}, "support_url": {"type": "null"}, "bug_report_url": {"type": "string"}, "privacy_policy_url": {"type": "null"}, "build_id": {"type": "null"}, "variant": {"type": "null"}, "variant_id": {"type": "null"}, "logo": {"type": "null"}, "extra_data": {"type": "object", "properties": {"REDHAT_BUGZILLA_PRODUCT": {"type": "string"}, "REDHAT_BUGZILLA_PRODUCT_VERSION": {"type": "string"}, "REDHAT_SUPPORT_PRODUCT": {"type": "string"}, "REDHAT_SUPPORT_PRODUCT_VERSION": {"type": "string"}}, "required": ["REDHAT_BUGZILLA_PRODUCT", "REDHAT_BUGZILLA_PRODUCT_VERSION", "REDHAT_SUPPORT_PRODUCT", "REDHAT_SUPPORT_PRODUCT_VERSION"]}}, "required": ["os", "architecture", "name", "version", "identifier", "id_like", "version_codename", "version_id", "pretty_name", "cpe_name", "home_url", "documentation_url", "support_url", "bug_report_url", "privacy_policy_url", "build_id", "variant", "variant_id", "logo", "extra_data"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"os" : "linux", "architecture" : null, "name" : "Scientific Linux", "version" : "7.1 (Nitrogen)", "identifier" : "rhel", "id_like" : "fedora", "version_codename" : null, "version_id" : "7.1", "pretty_name" : "Scientific Linux 7.1 (Nitrogen)", "cpe_name" : "cpe:/o:redhat:enterprise_linux:7.1:GA", "home_url" : "http://www.scientificlinux.org//", "documentation_url" : null, "support_url" : null, "bug_report_url" : "scientific-linux-devel@listserv.fnal.gov", "privacy_policy_url" : null, "build_id" : null, "variant" : null, "variant_id" : null, "logo" : null, "extra_data" : {"REDHAT_BUGZILLA_PRODUCT" : "Scientific Linux 7", "REDHAT_BUGZILLA_PRODUCT_VERSION" : "7.1", "REDHAT_SUPPORT_PRODUCT" : "Scientific Linux", "REDHAT_SUPPORT_PRODUCT_VERSION" : "7.1"}}
json_instruct
{"type": "object", "properties": {"os": {"type": "string"}, "architecture": {"type": "null"}, "name": {"type": "string"}, "version": {"type": "string"}, "identifier": {"type": "string"}, "id_like": {"type": "string"}, "version_codename": {"type": "null"}, "version_id": {"type": "string"}, "pretty_name": {"type": "string"}, "cpe_name": {"type": "string"}, "home_url": {"type": "string"}, "documentation_url": {"type": "null"}, "support_url": {"type": "null"}, "bug_report_url": {"type": "string"}, "privacy_policy_url": {"type": "null"}, "build_id": {"type": "null"}, "variant": {"type": "null"}, "variant_id": {"type": "null"}, "logo": {"type": "null"}, "extra_data": {"type": "object", "properties": {"REDHAT_BUGZILLA_PRODUCT": {"type": "string"}, "REDHAT_BUGZILLA_PRODUCT_VERSION": {"type": "string"}, "REDHAT_SUPPORT_PRODUCT": {"type": "string"}, "REDHAT_SUPPORT_PRODUCT_VERSION": {"type": "string"}}, "required": ["REDHAT_BUGZILLA_PRODUCT", "REDHAT_BUGZILLA_PRODUCT_VERSION", "REDHAT_SUPPORT_PRODUCT", "REDHAT_SUPPORT_PRODUCT_VERSION"]}}, "required": ["os", "architecture", "name", "version", "identifier", "id_like", "version_codename", "version_id", "pretty_name", "cpe_name", "home_url", "documentation_url", "support_url", "bug_report_url", "privacy_policy_url", "build_id", "variant", "variant_id", "logo", "extra_data"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
[[1957, 5], [1958, 6], [1959, 7], [1960, 5], [1961, 12], [1962, 5], [1963, 16], [1964, 22], [1965, 22], [1966, 27], [1967, 28], [1968, 36], [1969, 33], [1970, 35], [1971, 38], [1972, 40], [1973, 38], [1974, 26], [1975, 27], [1976, 20], [1977, 14], [1978, 20], [1979, 14], [1980, 24], [1981, 10], [1982, 14], [1983, 8], [1984, 22], [1985, 8], [1986, 6], [1987, 9], [1988, 6], [1989, 6], [1990, 8], [1991, 8], [1992, 7]]
json_instruct
{"type": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$schema": "http://json-schema.org/draft-07/schema#"}